/* -- BASICS -------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
}
html, body {
	width: 100%;
	height: 100%;
}
body {
	background: #394534;
	background: #2d481e;
	background: #3D3F43;
	min-width: 1056px;
}
body:before {
	content: "";
	height: 100%;
	float: left;
	width: 0;
	margin-top: -32767px;
}
object, embed {
	border-width: 0;
	display: inline;
}
img {
	border-width: 0;
	display: block;
}
.boxShadow {
	box-shadow: 0px 3px 8px rgba(0, 0, 0, .6);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* -- LOGO ---------------------------------------------------- */

.logo {
	background: url(../images/new_whitehouse_logo.png) no-repeat;
	background-size: contain;
	width: 200px;
	height: 53px;
	position: absolute;
	margin: 26px 0 0 20px;
	z-index: 10;
	box-shadow: 0 2px 0px rgb(36, 38, 40), 0 1px 2px rgba(0, 0, 0, 0.3);
	/* border-radius: 50%; */
}

/* -- HEADER -------------------------------------------------- */

.header_ui {
	/*background: url(../images/ui_header.png);*/
	/*background: linear-gradient(green, darkgreen 60%, #174100 120%);*/
	background: linear-gradient(#45A645, green);
	background-size: auto 100%;
}
.header {
	width: 1056px;
	height: 84px;
	margin: 0 auto;
}

/* -- STICKY FOOTER ------------------------------------------- */

#wrapper {
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
}
#main {
	overflow: auto;
	padding-bottom: 60px;
}
#footer {
	position: relative;
	margin-top: -80px;
	height: 80px;
	clear: both;
}
.footer {
	width: 1056px;
	height: 80px;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}
.footer_ui {
	/*background: url(../images/ui_footer.png);*/
	background: linear-gradient(#000, #242628 4px);
	background-size: auto 100%;
}

/* -- NAVBAR -------------------------------------------------- */

#navlinks {
	width: 1016px;
	height: 52px;
	margin: -52px auto 0;
}
.link1 a { width: 78px; }
.link2 a { width: 112px; }
.link3 a { width: 110px; }
.link4 a { width: 110px; }
.link5 a { width: 130px; }

#cssmenu ul, #cssmenu li, #cssmenu span, #cssmenu a {
	margin: 0;
	padding: 0;
	position: relative;
}
#cssmenu {
	width: 540px;
	height: 52px;
	border-radius: 4px 4px 0 0;
	/*background: url(../images/menu.png);*/
	float: right;
}
#cssmenu:after, #cssmenu ul:after {
	content: '';
	display: block;
	clear: both;
}
#cssmenu a {
	/*background: url(../images/menu.png);*/
	background: linear-gradient(darkgreen, #242628);
	color: #ffffff;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 52px;
	text-align: center;
	text-decoration: none;
	transition: all .2s;
	-moz-transition: all .2s;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
}
#cssmenu ul {
	list-style: none;
}
#cssmenu > ul {
	float: left;
	z-index: 101;
}
#cssmenu > ul > li {
	float: left;
}
/*#cssmenu > ul > li:hover:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	bottom: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #71b00c;
	margin-left: -5px;
}*/
#cssmenu > ul > li:first-child a {
	border-radius: 4px 0 0 0;
}
#cssmenu > ul > li:last-child a {
	border-radius: 0 4px 0 0;
}
#cssmenu > ul > li.active a {
	/*box-shadow: inset 0 0 3px #000000;*/
	/*background: url(../images/hover.png) bottom;*/
	background: linear-gradient(#0F4911, #242628);
}
#cssmenu > ul > li:hover > a {
	/*background: url(../images/hover.png) bottom;*/
	background: linear-gradient(#0F4911, #242628);
}
#cssmenu .has-sub {
	z-index: 1;
}
/* iPhone / mobile webkit */
@media screen and (max-device-width: 480px) {
#cssmenu .has-sub:hover > ul {
	display: block;
	top: 100%;
	/*opacity: 1;
	visibility: visible;*/
}
#cssmenu .has-sub ul {
	display: none; /**/
	position: absolute;
	width: 130px;
	top: 110%;
	left: -10px;
	border-radius: 4px;
	box-shadow: 0px 3px 10px rgba(0,0,0, 0.4);
	
	opacity: 0;
	visibility: hidden;
	/*transition: none;  
	-webkit-transition: none;*/
}
}
#cssmenu .has-sub:hover > ul {
	display: block;
	top: 100%;
	opacity: 1;
	visibility: visible;  
}
#cssmenu .has-sub ul {
	/*display: none; /**/
	position: absolute;
	width: 130px;
	top: 110%;
	left: -10px;
	border-radius: 4px;
	box-shadow: 0px 3px 10px rgba(0,0,0, 0.4);
	/**/
	opacity: 0;
	visibility: hidden;
	transition: all .15s ease-in-out;  
	-moz-transition: all .15s ease-in-out;  
	-webkit-transition: all .15s ease-in-out;  
	-o-transition: all .15s ease-in-out;  
}
#cssmenu .has-sub ul li {
	/*margin-bottom: -1px;*/
}
#cssmenu .has-sub ul li a {
	background: #45A645;
	border-bottom: 1px dotted hsl(120, 41%, 75%);
	filter: none;
	font-size: 11px;
	display: block;
	line-height: 120%;
	padding: 10px;
	transition: all .2s;
	-moz-transition: all .2s;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
}
#cssmenu .has-sub ul li:hover a {
	background: darkgreen;
}
#cssmenu .has-sub .has-sub:hover > ul {
	display: block;
}
#cssmenu .has-sub .has-sub ul {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
}
#cssmenu .has-sub .has-sub ul li a {
	background: #528009;
	border-bottom: 1px dotted #97b36b;
	transition: all .2s;
	-moz-transition: all .2s;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
}
#cssmenu .has-sub .has-sub ul li a:hover {
	background: #345105;
}

/* BORDER RADIUS */

#cssmenu .has-sub ul li:first-child a {
	border-radius: 4px 4px 0 0;
}
#cssmenu .has-sub ul li:last-child a {
	border-radius: 0 0 4px 4px;
	border-bottom: none;
}
#cssmenu .has-sub .has-sub ul li a {
	border-radius: 0;
}
#cssmenu .has-sub .has-sub ul li:first-child a {
	border-radius: 4px 4px 0 0;
}
#cssmenu .has-sub .has-sub ul li:last-child a {
	border-radius: 0 0 4px 4px;
}

/* -- PAGE CONTENT -------------------------------------------- */

.content_ui_1 {
	/*background: url(../images/ui_green.png);
	background-size: auto 100%;*/
	background: linear-gradient(#45A645, green);
}
.content_ui_2 {
	/*background: url(../images/ui_gray.png) repeat-x;
	background-size: auto 100%;*/
	background: linear-gradient(#000, #242628 8px, #3D3F43);
}
.content_ui_3 {
	/*background: url(../images/ui_green_sm.png);*/
	background: linear-gradient(#F8C462, #C68713);
	background-size: auto 100%;
}
.content_ui_4 {
	/*background: url(../images/ui_gray_green.png) repeat-x;*/
	background: linear-gradient(#000, #0F3D0F 8px, #3D3F43);
	background-size: auto 100%;
}
.content-header_ui {
	/* background: url(../images/menu.png) repeat-x; */
	border-radius: 4px 4px 0 0;
}
.content-header_ui:hover > p.h1 {
	/*background: url(../images/hover.png) repeat-x;*/
	background: linear-gradient(#0F4911, #242628 );
	border-radius: 4px 4px 0 0;
}
.content-header_ui > p.h1 {
    background: linear-gradient(darkgreen, #242628 );
    border-radius: 4px 4px 0 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    padding: 14px 0 6px;
	margin-bottom: 0;
	text-align: center;
}
.content-header_ui > img {
	border: 4px solid #242628;
}
.content {
	width: 960px;
	margin: 0 auto;
}
.left {
	position: relative;
	float: left;
}
.middle {
	position: relative;
	float: left;
}
.right {
	position: relative;
	float: right;
}
.vertdiv {
	/*background: url(../images/vertical-divider.png) top center no-repeat;
	background-size: 10px 100%;*/
	width: 30px;
	position: relative;
	float: left;
}
.clear {
	position: relative;
	clear: both;
}
.cleartext {
	position: relative;
	clear: both;
	border-bottom: #aad06d 1px dotted;
	margin: 25px 0;
}

/* -- SPECIAL FX ---------------------------------------------- */

.ui {
	width: 100%;
	height: auto;
	overflow: auto;
	z-index: -1;
}
.shadow {
	width: 1056px;
	position: absolute;
	display: none;
}
.slide-l {
	background: url(../images/slide-shadow-l.png) no-repeat;
	float: left;
	width: 20px;
	height: 436px;
}
.slide-r {
	background: url(../images/slide-shadow-r.png) no-repeat;
	float: right;
	width: 20px;
	height: 436px;
}
.about-l {
	background: url(../images/about-shadow-l.png) no-repeat;
	float: left;
	width: 14px;


	height: 186px;
	margin-left: 6px;
}
.about-r {
	background: url(../images/about-shadow-r.png) no-repeat;
	float: right;
	width: 14px;
	height: 186px;
	margin-right: 6px;
}
.about_ui {
	/*background: url(../images/ui_about_img.png);
	background-size: auto 100%;*/
	/*background: #DADDC0;*/
	background: linear-gradient(#313A31, #daddc0 6px, #F7FAE5);
	height: 186px;
	overflow: hidden;
}
.about_img {
	width: 1056px;
	margin: 0 auto;
}
.about_img > img:not(.blank_img) {
	border: #242628 8px solid;
	margin:0 20px;
}
.services-l {
	background: url(../images/services-shadow-l.png) no-repeat;
	float: left;
	width: 14px;
	height: 276px;
	margin-left: 6px;
}
.services-r {
	background: url(../images/services-shadow-r.png) no-repeat;
	float: right;
	width: 14px;
	height: 276px;
	margin-right: 6px;
}
.services_ui {
	/*background: url(../images/ui_services_img.png);
	background-size: auto 100%;*/
	background: linear-gradient(#313A31, #daddc0 6px, #F7FAE5);
	height: 276px;
	overflow: hidden;
}
.blank_ui {
	background: url(../images/ui_blank_img.png);
	/*background-size: auto 100%;*/
	height: 20px;
	overflow: hidden;
}
.blank_img {
	background: #242628;
	width: 1016px;
	margin: 0 auto;
	border-top: #242628 7px solid;
	box-shadow: 0px 3px 3px rgba(0, 0, 0, .4);
}
.dark_ui {
	/*background: url(../images/ui_blank_img.png);
	background-size: auto 100%;
	height: 20px;
	overflow: hidden;*/
	background: #303235;
	/* border: #480 1px solid; */
	border-radius: 4px;
	margin: -1px;
	box-shadow: inset 0px 3px 3px rgba(0, 0, 0, .4);
}
