/*html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
	blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
	em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
	b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
	details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
	output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
} /* HTML5 display-role reset for older browsers */
/*article, aside, details, figcaption, figure, footer, header, hgroup,
	menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
*/
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*html{overflow-y: scroll;}*/

body {
	font-family: 'Open Sans', sans-serif, Arial;
}

a {
	text-decoration: none;
	outline: none;
	color: #000;
}

.clr {
	margin: 0px;
	padding: 0px;
	clear: both;
}

.flat_ui {
	width: 970px;
	margin: 0 auto;
	padding: 0px 10px;
}

.drop_down_con {
	margin-left : 20px;
	position: relative;
	cursor: pointer;
	display: inline-block;
}

.drop_down_con i {
	transform: rotate(0deg);
	transition: transform 0.3s ease 0s;
	background: url('../images/header.png') -97px -6px no-repeat;
	width: 10px;
	height: 5px;
	display: inline-block;
	margin: 0px 0px 2px 10px;
}

.drop_down_con b {
	font-size: 14px;
	color: #000000;
	font-weight: 600;
	text-transform: uppercase;
}

.drop_down_con:hover .drop_down_li {
	display: block;
}

.drop_down_con:hover i {
	transform: rotate(180deg);
}

.drop_down_con .drop_down_li {
	white-space: nowrap;
	display: none;
	position: absolute;
	left: 0;
	top: 18px;
	background-color: #fff;
	border: 1px solid #e8e8e8;
	z-index: 1010;
	padding: 5px;
}

.drop_down_con .drop_down_li ol {
	margin: 0px;
	padding: 0px;
}

.drop_down_con .drop_down_li ol li {
	padding: 5px;
}

.drop_down_con .drop_down_li ol li a {
	white-space: nowrap;
	color: #393939;
	font-size: 11px;
	margin-left: 2px;
	text-transform: uppercase;
	position: relative;
	top: -1px;
}

.drop_down_con .drop_down_li ol li:hover {
	color: #57bf84;
}

.requiredInput{
	border-color: red;
	border-style: ridge;
	border-width: 1px;
}

.black_layer{
    background-color: #000;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101010;
}

.loading_box{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 12px;
    left: 45%;
    padding: 35px;
    position: absolute;
    top: 40%;
    z-index: 101011;
    display: none;
}	