@charset "utf-8";
/**********************************************
form CSS
***********************************************/

#form {
	background: #fff;
	padding: 10px;
	width: 938px;
	border:1px solid #ccc;
}

/****/

.formTable {
	width:100%;
}

.table2 {
	border-top: 1px solid #e0e0e0;
}

.formTable input ,
.formTable textarea {
	padding: 6px;
	background-color: #fff;
	box-shadow:1px 1px 1px rgba(0,0,0,0.2) inset;
	border-radius:4px;
	border-top:1px solid #999;
	border-left:1px solid #999;
	border-bottom:1px solid #bbb;
	border-right:1px solid #bbb;
	margin-right: 3px;
}

.formTable textarea {
	width: 90%;
	height: 100px;
}

.formTable select {
	border-radius:4px;
	padding: 6px 0;
}

.formTable > tbody > tr > th ,
.formTable > tbody > tr > td {
	padding: 10px;
	border-bottom: 1px solid #e0e0e0;
}

.formTable > tbody > tr > td {
	padding: 10px 20px;
}

.formTable > tbody > tr:nth-child(even) > th ,
.formTable > tbody > tr:nth-child(even) > td {
	background: #f8f8f8;
}

.formTable > tbody > tr > th {
	width: 120px;
	border-right: 3px double #ccc;
}

.formTable > tbody > tr > td .example {
	display: block;
	color:#888;
}

/****/

.rateTable table {
	width: 100%;
}

.rateTable table thead {
	border-bottom:1px solid #aaa;
	background-color:#e5e5e5;
}

.rateTable table thead th {
	text-align: center;
}

.rateTable table .delete {
	width: 20px;
	padding: 0;
	text-align: center;
}

.rateTable table .delete a {
	font-family: "icons";
	font-size: 20px;
	position: relative;
	top:9px;
	color:#AA0004;
	text-decoration: none;
}

.rateTable table .delete a:hover {
	color:red;
}

.rateTable table .mini {
	text-align: center;
	letter-spacing:-.40em;
}

.rateTable table .mini span {
	display: inline-block;
	vertical-align: top;
	margin: 0 3px;
	zoom: 1; /* Fix for IE7 */
	*display: inline; /* Fix for IE7 */
	letter-spacing:normal;
}

.rateTable table .mini span input {
	width: 40px;
}

.rateTable table td em {
	font-style: normal;
	color:#666;
	margin-left: 5px;
}


/** button **/

#form button {
	padding: 8px 30px;
	font-size: 14px;
	margin: 10px 0 0 0;
	cursor:pointer;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 30%, #e7e7e7 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#ffffff), color-stop(100%,#e7e7e7)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 30%,#e7e7e7 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 30%,#e7e7e7 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 30%,#e7e7e7 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 30%,#e7e7e7 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 ); /* IE6-9 */
	box-shadow:0 -1px 0 rgba(255,255,255,1) inset;
	border:1px solid #bbb;
	border-radius:4px;
}

#form button:hover {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}

#form button i {
	font-style:normal;
	font-family:"icons";
	margin-right: 6px;
}

/** submit **/

.formBtn {
	clear:both;
	padding: 20px 0 40px;
	text-align: center;
}

.formBtn span {
	display:block;
	margin-bottom: 10px;
}

.formBtn input {
	cursor:pointer;
	padding: 15px 30px;
	font-size: 16px;
}

/*--------------------------------------------------------*/

#loader {
	display:none;
	position:fixed;
	left:0;
	top:0;
	background: url(../images/loading.gif) center center no-repeat rgba(255,255,255,0.5);
	width: 100%;
	height: 100%;
}