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


#cont_menu {
	width:1170px; 
	height:40px;
	margin:0 auto;
	padding:0;
	text-align: left;}

/* style the outer div to give it width */
.menu {
	/*width:1170px; */
	margin: 0;
	padding: 0;
	text-align: left;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	/*width:300px;*/
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	/*width:250px;*/
	position:relative; 
}




/* Menu Level 01 */
.menu a, .menu a:visited {
	color:#c59e59;
	display:block;
	font-size:1.5em; 
	font-weight:300;
	text-decoration:none;
	/*padding:0px 30px 0 0px; */
	margin:0 40px 0 0;
	line-height:44px;
	border-bottom:4px solid #FFF;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	/*width:250px;*/
	w\idth:140px;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#a6751f;
	border-bottom:4px solid #c59e59;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#a6751f;
	border-bottom:4px solid #c59e59;
}






/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#000;
	color:#b9c0c7; 
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#eee; 
	background-image:url(../images_basics/banner_01.jpg); 
	color:#FFFFFF; 
}
.menu ul ul :hover > a.drop {
	background:#eee;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background:#b2ab9b;
}
.menu ul ul ul :hover > a {
	background:#b2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:48px;
	left:0; 
	/*width:150px;*/
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:50px;
	t\op:50px;
}

/* position the third level flyout menu */
.menu ul ul ul{
	left:150px; 
	top:0;
	/*width:150px;*/
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	font-size:140%;
	/*font-weight:normal;*/
	/*background-color:rgba(166,184,203,0.9); */
	background-color:#FFF;
	zoom: 1;
	/*filter: alpha(opacity=90);
	opacity: 0.9;*/
	border-bottom:1px solid #EEE;
	/*color:#666;*/
	height:auto;
	line-height:130%;
	padding:5px 10px 5px 5px;
	width:190px/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
	width:190px;
	w\idth:190px; 
}
.menu ul ul a:hover {
	border-bottom:1px solid #4ba13a;
}



/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul{
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
	visibility:visible;
}



/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop2.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */