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

/* We remove the margin, padding, and list style of UL and LI components  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul, #outerWrapper #contentWrapper #content.relative #menuwrapper ul li {
	margin: 0 !important;
	padding: 0;
	list-style: none !important;
}
#outerWrapper #contentWrapper #content.relative #menuwrapper {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFF;
}
/* We apply background color and border bottom white and width to 160px  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li {
	background-color: #3f402f;
	border-bottom: solid 1px white;
	width: 160px;
	padding: 5px;
	font-weight: bold;
	background: #627d4d;
	background: -moz-linear-gradient(top, #627d4d 0%, #1f3b08 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #627d4d), color-stop(100%, #1f3b08));
	background: -webkit-linear-gradient(top, #627d4d 0%, #1f3b08 100%);
	background: -o-linear-gradient(top, #627d4d 0%, #1f3b08 100%);
	background: -ms-linear-gradient(top, #627d4d 0%, #1f3b08 100%);
	background: linear-gradient(top, #627d4d 0%, #1f3b08 100%);

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#627d4d', endColorstr='#1f3b08', GradientType=0 );
}
/* We apply the background hover color when user hover the mouse over of the li component  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li ul {
	width: 170px;
	-webkit-box-shadow: 3px 3px 5px 0px #999999;
	box-shadow: 3px 3px 5px 0px #999999;
}
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover {
	background-color: #666600;
	position: relative;
}
/* We apply the link style  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li a {
	padding: 5px 15px;
	color: #ffffff !important;
	display: inline-block;
	text-decoration: none;
}
/**** SECOND LEVEL MENU *** */
/* We make the position to absolute for flyout menu and hidden the ul until the user hover the parent li item  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li ul {
	position: absolute;
	display: none;
}
/* When user has hovered the li item, we show the ul list by applying display:block, note: 170px is the individual menu width.   */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul {
	left: 170px;
	top: 0px;
	display: block;
}
/* we apply different background color to 2nd level menu items */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li ul li {
	background-color: #3f604f;
	font-size: 70% !important;
	font-style: normal !important;
	font-weight: bold !important;
	padding: 5px !important;
	background: #a4b357;
	background: -moz-linear-gradient(top, #a4b357 0%, #75890c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a4b357), color-stop(100%, #75890c));
	background: -webkit-linear-gradient(top, #a4b357 0%, #75890c 100%);
	background: -o-linear-gradient(top, #a4b357 0%, #75890c 100%);
	background: -ms-linear-gradient(top, #a4b357 0%, #75890c 100%);
	background: linear-gradient(top, #a4b357 0%, #75890c 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a4b357', endColorstr='#75890c', GradientType=0 );
}
/* We change the background color for the level 2 submenu when hovering the menu  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul li:hover {
	background-color: #336633;
}
/* We style the color of level 2 links  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li ul li a {
	color: #FFFFFF !important;
	display: inline-block;
	padding: 5px !important;
}
/**** THIRD LEVEL MENU *** */
/* We need to hide the 3rd menu, when hovering the first level menu  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul li ul {
	position: absolute;
	display: none;
}
/* We show the third level menu only when they hover the second level menu parent  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul li:hover ul {
	display: block;
	left: 170px;
	top: 0;
}
/* We change the background color for the level 3 submenu */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul li:hover ul li {
	background-color: #3f806f;
	background: #e0dc92;
	background: -moz-linear-gradient(top, #e0dc92 0%, #a9ac8c 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e0dc92), color-stop(100%, #a9ac8c));
	background: -webkit-linear-gradient(top, #e0dc92 0%, #a9ac8c 100%);
	background: -o-linear-gradient(top, #e0dc92 0%, #a9ac8c 100%);
	background: -ms-linear-gradient(top, #e0dc92 0%, #a9ac8c 100%);
	background: linear-gradient(top, #e0dc92 0%, #a9ac8c 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0dc92', endColorstr='#a9ac8c', GradientType=0 );
}
/* We change the background color for the level 3 submenu when hovering the menu  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul li:hover ul li:hover {
	background-color: #669999;
}
/* We change the level 3 link color  */
#outerWrapper #contentWrapper #content.relative #menuwrapper ul li:hover ul li:hover ul li a {
	color: #000000 !important;
}
/* Clear float  */
.clear {
	clear: both;
}
