/* 12-column Grid (thanks for Fluid 960 Grid System) */

.grid-1-12 {width: 5.333% !important;}
.grid-2-12 {width: 13.666% !important;}
.grid-3-12 {width: 22% !important;}
.grid-4-12 {width: 30.333% !important;}
.grid-5-12 {width: 38.666% !important;}
.grid-6-12 {width: 47% !important;}
.grid-7-12 {width: 55.333% !important;}
.grid-8-12 {width: 63.666% !important;}
.grid-9-12 {width: 65.6% !important;}
.grid-10-12 {width: 72% !important;}
.grid-11-12 {width: 80.333% !important;}
.grid-12-12 {width: 88.666% !important;}
.grid-13-12 {width: 97% !important;}
.grid-14-12 {width: 100px !important;}

.form
{
	margin:0;
	padding:0;	
	font: normal 12px/1.1em Arial;
}

/* form elements  */

.form label
{
	color:#676767;
	font-size:12px;
	vertical-align:middle;
	display: block;
	height: auto;
	margin: 0.2em 0 0.5em;
}

.form input[type="text"], .form input[type="password"], .form input[type="file"], .form textarea, .form select
{
	background: #ffffff;
	color:#000;
	font-size:12px;
	font-family:inherit;
	vertical-align: middle;
	line-height: 1.1em;
	width:100%;
	padding:5px;
	border:1px solid #cfcfcf;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	height:30px;
}

.form textarea
{
	height: 10em;
}

.form select
{
	border-color:#cfcfcf;
	background: #fafafa;
	color:#999;
	/* gradient */
	background: -moz-linear-gradient(top, #ffffff 40%, #f4f4f4);
	background: -webkit-linear-gradient(top, #ffffff 40%, #f4f4f4);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f4f4f4');
}

.form .form input[type="text"]:hover, .form input[type="password"]:hover, .form input[type="file"]:hover, .form textarea:hover, .form select:hover
{
	color:#666;
	background: #fff none;
	border:1px solid #d8d8d8;
}

.form .formee input[type="text"]:focus, .form input[type="password"]:focus, .form input[type="file"]:focus, .form textarea:focus, .form select:focus
{
	color:#000;
	background: #fff none;
	border:1px solid #d8d8d8;
	outline: 0;
}

/* form elements  */

/* form button  */

.form-button, .form input[type="submit"], .form input[type="button"], .form input[type="reset"]
{
	background-color: #779900;
    border: 1px solid #000000;
    color: #FFFFFF;
	padding:5px 15px 5px 15px;
}

* + html .form input[type="submit"]
{
	padding:4px 15px 4px;
	cursor: pointer;
	text-align: center;
	display:inline-block;
	margin:0;
}

.form-button:hover, .form input[type="submit"]:hover, .form input[type="button"]:hover, .form input[type="reset"]:hover {
  /* gradient */
 background-color: #779900;
    border: 1px solid #000000;
    color: #FFFFFF;
}

/* form button  */

/* form msg status  */

.form-msg-info, .form-msg-warning, .form-msg-error, .form-msg-success {
	padding:20px 20px 15px 38px;
	border: 1px solid #ccc;
	display: block;
	height: auto;
	margin: 0 1.5% 0.8em;
	clear:both;
	color:#2b2b2b;
}
.form-msg-info li, .form-msg-warning li, .form-msg-error li, .form-msg-success li {
	list-style: none;
	padding:0;	
	margin-bottom: .4%;
	font-size:1.4em;
	line-height:1.1em;
	vertical-align: top;
}

.form-msg-info {
	background: #d1ecf7 url(../images/form-ic-info.png) no-repeat 12px 23px;
	border-color:#bcdfef;
}
.form-msg-warning {
	background: #fff6bf url(../images/form-ic-warning.png) no-repeat 12px 23px;
	border-color:#fceb77;
}
.form-msg-error {
	background: #fad0d0 url(../images/form-ic-error.png) no-repeat 12px 23px;
	border-color:#f6abab;
}
.form-msg-success {
	background: #e5f8ce url(../images/form-ic-success.png) no-repeat 12px 23px;
	border-color:#d0f1a6;
}

.formee-msg-success a{color:#62b548;}
.formee-msg-info a {color:#11689e;}
.formee-msg-warning a {color:#957210;}
.formee-msg-error a {color:#b01717;}

/* form msg status  */

/* form validation */

.formee-error
{
	border-color: #FAD0D0 !important;
	color: #b01717 !important;
	/* shadow */
	-moz-box-shadow: 0 0 3px 0 rgba(176,23,23,.4);
	-webkit-box-shadow: 0 0 3px 0 rgba(176,23,23,.4);
	box-shadow: 0 0 3px 0 rgba(176,23,23,.4);
}



