/** Form Styles **/
.input {
    width: 300px;
    font-size: 11px;
    padding: 8px 6px;
    font-family: Trebuchet MS;
    margin: 0;
    color: #999999;
    text-shadow: 0 0 1px #FFFFFF;
    border: 1px solid #E6E6E6;
    outline: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left 15, from(#FFFFFF), color-stop(4%, #FBFBFB), to(#FFFFFF));
    background: -moz-linear-gradient(top, #FFFFFF, #f4f4f4 1px, #FFFFFF 15px);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
}
#form-wide {
    width: 910px;
	}


.reply {
    width: 100%;
    margin:10px;
    font-size: 11px;
    padding: 8px 6px;
    font-family: Trebuchet MS;
    color: #999999;
    text-shadow: 0 0 1px #FFFFFF;
    border: 1px solid #E6E6E6;
    outline: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left 15, from(#FFFFFF), color-stop(4%, #FBFBFB), to(#FFFFFF));
    background: -moz-linear-gradient(top, #FFFFFF, #f4f4f4 1px, #FFFFFF 15px);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
}

.selector {
    width: 314px;
    font-size: 11px;
    padding: 8px 6px;
    font-family: Trebuchet MS;
    margin: 0;
    color: #999999;
    text-shadow: 0 0 1px #FFFFFF;
    border: 1px solid #E6E6E6;
    outline: none;
    display: inline-block;
    position: relative;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left 15, from(#FFFFFF), color-stop(4%, #FBFBFB), to(#FFFFFF));
    background: -moz-linear-gradient(top, #FFFFFF, #f4f4f4 1px, #FFFFFF 15px);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
}


.button {
    background: #ef5129;
    border: none;
    border-radius: 5px;
    display: table;
	margin: 0 auto;
    padding: 10px;
    color: #fff;
    font-family: Trebuchet MS;
    text-align: center;
    font-size: 11px;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 0.21) ,0 0 15px rgba(0, 0, 0, 0.12),0 0 30px rgba(255, 255, 255, 0.4);
}

.button-form {
    background: #ef5129;
    border: none;
    border-radius: 5px;
    width: 314px;
    display: table;
    padding: 10px;
    color: #fff;
    font-family: Trebuchet MS;
    text-align: center;
    font-size: 11px;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 0.21) ,0 0 15px rgba(0, 0, 0, 0.12),0 0 30px rgba(255, 255, 255, 0.4);
}


.input:focus {
    -webkit-box-shadow: 0px 0px 5px #ECECEC;
    -moz-box-shadow: 0px 0px 5px #ECECEC;
    box-shadow: 0px 0px 5px #ECECEC;
}



.field {
    margin: 5px 0;
    width: 472px;
}

label {
    display: block;
    width: 94px;
    padding-right: 24px;
    line-height: 3;
    float: left;
    color: #909090;
    text-align: right;
    height: 30px;
    font-size: 11px;
    font-family: Trebuchet MS;
}


/* seo friendly tables */
.table{
	display:table;	/* Defines a Table */
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-bottom:2px solid #dddddd;
	color: #282222;
	margin: 20px;
	width: 96%;
}
.table-head{
	 display: table-header-group; /* Defines a table header group */
}
.table-head .column{ /* Column inside the table-head */
	background: #EF512A;
	color: #FFFFFF;
	border-right: 1px solid #F75F39;
	border-bottom:none;
}
.table-head .column:hover{ /* Column hover inside the table-head */
	background:#222222;
}
.row{
	display:table-row; /* Defines a table row */
}
.row .column:nth-child(1){ /* First column in a row */
	border-left:1px solid #eeeeee;
}
.row:last-child .column{  /* column in a last row */
	border-bottom:none;
}
.column{
	display:table-cell; /* Defines a table cell */
	padding:10px 20px;
	border-bottom:1px solid #eeeeee;
	border-right:1px solid #eeeeee;
}
.column:hover{
	background:#f9f9f9;
}
/* Responsive table */
@media all and (max-width: 640px){
	.table,
	.row,
	.column,
	.column:before{
		display:block;	/* Converts a table, table row, table column and table column:before into a block element */
	}
	.table,
	.row .column:last-child{
		border-bottom:none;
	}
	.table-head{
		position:absolute;	/* Hides table head but not using display none */
		top:-1000em;
		left:-1000em;
	}
	.row{
		border:1px solid #eeeeee;
		border-top:2px solid #dddddd;
		border-bottom:2px solid #dddddd;
		margin:20px 0;
	}
	.row .column:nth-child(1){ /* first column of the row */
		border-left:none;
	}
	.row .column:last-child{ /* last column of the row */
		border-right:none;
	}
	.row:last-child .column,
	.column{ /* Column in the last row and column */
		border-bottom:1px solid #eeeeee;
	}
	.column:before{ /* prints the value of data-label attribute before the column data */
		font-weight:bold;
		padding-right:20px;
		font-size:12px;
		content:" "attr(data-label)" //";	/* call the attribute value of data-label and adds a string // */
	}
}
