.body {
  font-family : Arial, Verdana, Helvetica, Sans-Serif;
  background-image: url("/media/img/bg/weather.png");
}

a:link {color : #FF4500; text-decoration: none;}
a:visited {color : #FF4500;}
a:hover {color : #FF6347; font-weight : bolder;}
a:active {color : red;}

.textbox {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 150px;
  cursor: text;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2px 10px;
  overflow: hidden;
  border: 1px solid rgb(255,153,0);
  -webkit-border-radius: 21px;
  border-radius: 21px;
  font: normal 16px/normal Arial, Helvetica, sans-serif;
  color: rgb(0, 0, 0);
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: all 502ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  -moz-transition: all 502ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  -o-transition: all 502ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  transition: all 502ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
}

.textbox:hover {
  border: 1px solid darkorange;
  -webkit-transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  -moz-transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  -o-transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  transition: all 500ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
}

.textbox:focus {
  width: 250px;
  cursor: default;
  border: 1px solid rgb(255,153,0);
  -webkit-transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  -moz-transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  -o-transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  transition: all 601ms cubic-bezier(0.68, -0.75, 0.265, 1.75);
  outline: none;
}

.button {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 5px 10px;
  border: none;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font: normal 15px/normal Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(255, 153, 0);
  -webkit-transition: background 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition: background 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition: background 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: background 0.2s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

.button:hover {
  font: normal normal bold 15px/normal Arial, Helvetica, sans-serif;
  background: rgb(255, 0, 0);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.button:active {
  background: rgb(152, 0, 0);
}

.button:disabled {
  background: gray;
}

a.button {
color: white;
cursor: default;
}

a.nolink {
color: black;
}

a:hover.nolink {
text-decoration: underline;
font-weight: bold;
}