/*Reset styles
====================================================*/

input[type="text"],
input[type="submit"],
input[type="reset"],
input[type="button"],
select,
textarea{
  -webkit-appearance: none;
  border-radius:0;
  -webkit-border-radius:0;
  -moz-border-radius:0;
}

input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 4px 0px 4px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #ccc;
  border-radius:2px;
}

input[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  margin: 5px 1px 3px 0px;
  border: 1px solid rgba(81, 203, 238, 1);
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  background: #ec5e57; 
  color: #fff;
  font-size: 12px;
  text-shadow: 0 -1px 1px #666;
  border:none;
  box-shadow:0 1px 2px #f7f7f7;
  -moz-box-shadow:0 1px 2px #999;
  -webkit-box-shadow:0 1px 2px #999;
  border-radius:2px;
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #fff;
	background: #000; /* Old browsers */
	border:none;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	border: none;
	background: #ec5e57;
}
select{
    margin-top:0px;
	padding:5px;
	width:180px;
	border-radius:2px;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
	background:#fff url(../images/site_icons/dropdown.png) no-repeat 95%;
}

::selection {
    background: #ec5e57;
    color: #fff;
}