/* =============================================================================
   Input's
   ========================================================================== */

/* =============================================================================
   General Styles
   ========================================================================== */
input[type="text"], input[type="search"], input[type="password"], textarea {
   background: #fff;
   border: solid 1px #cecece;
   padding: 5px 10px;
   font: 12px Verdana, sans-serif;
   color: #444;
   
   -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
   -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
   box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
   
   -webkit-border-radius: 2px;
   -moz-border-radius: 2px;
   border-radius: 2px;
   
   -webkit-appearance: none;
}
input[type="text"]:focus, input[type="search"]:focus, input[type="password"]:focus, textarea:focus {
   background: #fefefe;
   border-color: #cfcfcf;
   outline: none;
   -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
   -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
   box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
input[type="text"], input[type="search"], input[type="password"] {
   width: 200px;
}
textarea {
   width: 200px;
   height: 50px;
}
   .placeholder {
      color: #bbb;
   }
      ::-webkit-input-placeholder {
	 color: #bbb;
      }
      :-moz-placeholder {
	 color: #bbb;
      }
   input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
      display: none;
   }
   input[type="text"]:focus::-webkit-input-placeholder{
      text-indent: -9999px;
   }
button {
   color: #fff;
   font: 12px 'Tahoma', sans-serif;
   text-shadow: 0 1px 0 #4c6271;
   
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   border-radius: 3px;
   
   -webkit-box-shadow: 0 5px 5px #666666;
   -moz-box-shadow: 0 5px 5px #666666;
   box-shadow: 0 5px 5px #666666;
   
   background: #81b2d5;
   background: -webkit-gradient(linear, 0 0, 0 bottom, from(#81b2d5), to(#5a9cc8));
   background: -webkit-linear-gradient(#81b2d5, #5a9cc8);
   background: -moz-linear-gradient(#81b2d5, #5a9cc8);
   background: -ms-linear-gradient(#81b2d5, #5a9cc8);
   background: -o-linear-gradient(#81b2d5, #5a9cc8);
   background: linear-gradient(#81b2d5, #5a9cc8);
   -pie-background: linear-gradient(#81b2d5, #5a9cc8);
   
   position: relative;
   behavior: url(css/PIE/PIE.htc);
}


/* =============================================================================
   END CSS Autor: Kharitonov Alexandr
   ========================================================================== */