/*
 * HTML5 Forms Fallback for older and unsupporting browsers
 * Using jQuery, jQuery UI, Modernizr, Webforms2, and other jQuery Plugins
 * 
 * 2010 Cristian I. Colceriu
 *
 * www.ghinda.net
 * contact@ghinda.net
 *
 * Stylesheet for demo page
 *
 */


/* Placerholder */
.placeholder {
	color: #aaa;
}

input,  textarea  {
  background-color: #eee;
  background: -webkit-gradient(linear, center top, center bottom, color-stop(0%, #fff), color-stop(100%, #efefef));
  background: -moz-linear-gradient(top, #fff, #efefef);
  background: linear-gradient(#fff, #efefef);
  border-radius: 1px;
  -webkit-border-radius: 1px 1px 1px 1px;
  -moz-border-radius: 1px 1px 1px 1px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.7);
  -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.7);
  -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.7);
  border: solid 1px #efefef;
  padding:8px ;
  text-shadow: 0px 1px 1px white;
  display: block;
  margin: 2px;
  width:350px;
   
}
input:focus, textarea:focus {
  box-shadow: 0px 1px 8px #F48004;
  -webkit-box-shadow: 0px 1px 8px #F48004;
  -moz-box-shadow: 0px 1px 8px #F48004;
}
.roundbutton {
  background: -webkit-gradient(linear, center top, center bottom, color-stop(0%, #fff), color-stop(100%, #efefef));
  background: -moz-linear-gradient(top, #fff, #efefef);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.7);
  -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.7);
  -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.7);
  border: solid 2px white;
  padding: 5px 15px;
  cursor: pointer;
  margin: 8px;
  display:block;
}
.roundbutton:hover {
  background: -webkit-gradient(linear, center top, center bottom, color-stop(100%, #eee), color-stop(0%, #ccc));
  background: -moz-linear-gradient(top, #ccc, #eee);
  box-shadow: 0px 1px 8px #F48004;
  -webkit-box-shadow: 0px 1px 8px #F48004;
  -moz-box-shadow: 0px 1px 8px #F48004;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border: solid 2px white;
  padding: 5px 15px;
  cursor: pointer;
  margin: 8px;
}
label.css3formlabels {
  margin-left: 8px;
}
#css3boxshawdow {
  width: 200px;
  padding: 2px 6px;
}
#css3boxshawdow:hover {
  box-shadow: 0px 1px 8px #F48004;
  -webkit-box-shadow: 0px 1px 8px #F48004;
  -moz-box-shadow: 0px 1px 8px #F48004;
  padding: 2px 6px;
}
