g97

.form{
    width: 300px;
}
 
 
.form-container {
    font-size: 75%;
    color: #222;
    background: #fff;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
 
.form-container h2 {
    font-size: 2em;
    margin-bottom: 0.75em;
    color: #333333;
    font-weight: normal;
}
 
.form-container ul {list-style-type:none;}
/** Field Styles **/
.form .field, #form-title.field {
    padding-top: 12px;
    position: relative;
    clear: both;
}
 
.full-width {
    width: 92%;
    display: inline;
    float: left;
    margin-left: 2%;
    margin-right: 2%; /* jquery ui resize grid hack - not sure why */
}
 
.form input, .form textarea {
    width: 95%;
    font: 14px/24px Helvetica Neue, "Arial", Helvetica, Verdana, sans-serif;
 	 padding: 3px 6px;
	outline: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    background: #EDEDED; /* old browsers */
    background: -moz-linear-gradient(top, #EDEDED 0%, #FCFCFC 10%, #FCFCFC 90%, #EDEDED 100%); /* firefox */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EDEDED), color-stop(10%, #FCFCFC), color-stop(90%, #FCFCFC), color-stop(100%, #EDEDED)); /* webkit */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#EDEDED', endColorstr = '#EDEDED', GradientType = 0); /* ie */
    border: 1px solid rgb(175, 175, 175);
    -moz-border-radius: 3px;
   
}
 
.form input:focus, .form textarea:focus, .form select:focus {
    -webkit-box-shadow: 0px 0px 5px #bfdeff;
    -moz-box-shadow: 0px 0px 5px #bfdeff;
    box-shadow: 0px 0px 5px #bfdeff;
}
 
.form input[type=radio], .form input[type=checkbox] {
    width: 12px;
    margin: 8px 12px;
    top: 3px;
    position: relative;
}
 
.form .option {
    margin: 6px 0;
}
 
.form select {
    padding: 6px 6px;
	display: block;
	font-size: 16px;
}

 
.form textarea {
    overflow: hidden;
}
 
.form label {
    color: #666;
    text-align: left;
    font: 12px/16px Helvetica Neue, "Arial", Helvetica, Verdana, sans-serif;
}
 
.form .submit input, .form .submit a , .form .cancel a {
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    /*text-shadow: 1px 1px 0px #fff; */
    display: block;
    margin: 0px -26px 12px 0;
    text-align: center;
    float: left;
    padding: 6px 3px;
    height: 36px; 
    cursor: pointer;
    min-width: 96px;
    width: auto;
    background: rgb(27, 164, 228); /* old browsers */
    background: -moz-linear-gradient(top, rgb(27, 164, 228) 0%, rgb(31, 97, 236) 99%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(27, 164, 228)), color-stop(99%, rgb(31, 97, 236)));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = 'rgb(27, 164, 228)', endColorstr = 'rgb(31, 97, 236)', GradientType = 0);
    border: 1px solid #cfcfcf;
    font-weight: bold;
    color: rgb(223, 223, 223);
}

.form .submit a.disabled {
    text-shadow: 1px 1px 0px #F7F7F7;
    background: #FBFBFB;
    background: -moz-linear-gradient(top, #D5D2D2 0%, #DBDADA 99%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #D5D2D2), color-stop(99%, #DBDADA));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#D5D2D2', endColorstr = '#DBDADA', GradientType = 0);
    color: #999595;
    opacity: .5;
}


.form .submit a , .form .cancel a {
	height: 18px;
	margin-right:40px;
	
}
 .form .submit, .form .cancel {display:inline;}
 
#form-title {
    padding: 12px;
}
 
#form-title h2 {
    margin-bottom: 0;
}
 
/** Date Input **/
 
#calroot {
    z-index: 10000;
    margin-top: -1px;
    width: 198px;
    padding: 2px;
    background-color: #fff;
    font-size: 11px;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0 0 15px #666;
    -webkit-box-shadow: 0 0 15px #666;
}
 
#calhead {
    padding: 2px 0;
    height: 22px;
}
 
#caltitle {
    font-size: 14px;
    color: #0150D1;
    float: left;
    text-align: center;
    width: 155px;
    line-height: 20px;
    text-shadow: 0 1px 0 #ddd;
}
 
#calnext, #calprev {
    display: block;
    width: 20px;
    height: 20px;
    float: left;
    cursor: pointer;
    background: transparent url(../images/prev.png) no-repeat center center scroll;
}
 
#calnext {
    float: right;
    background: transparent url(../images/next.png) no-repeat center center scroll;
}
 
#calprev.caldisabled, #calnext.caldisabled {
    visibility: hidden;
}
 
#caltitle select {
    font-size: 10px;
}
 
#caldays {
    height: 14px;
    border-bottom: 1px solid #ddd;
}
 
#caldays span {
    display: block;
    float: left;
    width: 28px;
    text-align: center;
}
 
#calweeks {
    background-color: #fff;
    margin-top: 4px;
}
 
.calweek {
    clear: left;
    height: 22px;
}
 
.calweek a {
    display: block;
    float: left;
    width: 27px;
    height: 20px;
    text-decoration: none;
    font-size: 11px;
    margin-left: 1px;
    text-align: center;
    line-height: 20px;
    color: #666;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
 
.calweek a:hover, .calfocus {
    background-color: #ddd;
}
 
a.calsun {
    color: red;
}
 
a.caloff {
    color: #ccc;
}
 
a.caloff:hover {
    background-color: rgb(245, 245, 250);
}
 
a.caldisabled {
    background-color: #efefef !important;
    color: #ccc !important;
    cursor: default;
}
 
#calcurrent {
    background-color: #498CE2;
    color: #fff;
}
 
#caltoday {
    background-color: #333;
    color: #fff;
}
 
/** Range Input **/
 
.slider {
    background: #3C72E6 url(../images/range_gradient.png) repeat-x 0 0;
    height: 9px;
    position: relative;
    cursor: pointer;
    border: 1px solid #333;
    width: 100%;
    float: left;
    clear: right;
    margin-top: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: inset 0 0 8px #000;
}
 
 
.handle {
    background: #fff url(../images/range_gradient.png) repeat-x 0 0;
    height: 28px;
    width: 28px;
    top: -12px;
    position: absolute;
    display: block;
    margin-top: 1px;
    border: 1px solid #000;
    cursor: move;
    -moz-box-shadow: 0 0 6px #000;
    -webkit-box-shadow: 0 0 6px #000;
    -moz-border-radius: 14px;
    -webkit-border-radius: 14px;
 
}
 
.range {
    border: 1px solid #ddd;
    float: left;
    font-size: 20px;
    margin: 0 0 0 15px;
    padding: 3px 0;
    text-align: center;
    width: 50px !important;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
 
/**Error Messages **/
 

.form label.error {
    
    color: #ff0033;
    padding-left: 12px;
    z-index: 999;
    position: relative;
    top: -1px;
}
 
/** Loading Indicator **/
.loading-text {
    position: relative;
    top: -3px;
}
 
/** Clearfix */
.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}
 
#ajax-results {
	padding: 10px 5px;
	background: #F73827 url(/themes/site_themes/lev-gower/img/metrostar/warning.png) no-repeat 5px 3px;
	width: 90%;
	margin-left: 3px;
	border-radius: 5px;
	font-size: 14px;
	color: #F8C6C6;
	font-weight: bold;
	text-indent: 40px;
}

