/*
	CSS for cascading menu
	Valid on Windows XP/Vista IE6 IE7, FF1.5, FF2, FF3, Opera 9, Safari 3, Chrome
	Valid on Linux (Ubuntu) FF3
 */
 
 .menu_container {
	background-image: url('/img/menu.jpg');
	position:relative;
	text-align:center;
	font-family : Arial, sans-serif;
	padding:0;
	margin:0;
	height: 63px;
	width: 1000px;
	background-position: center;
	background-repeat: no-repeat;
	z-index : 100;
}

.top_menu {
	position:absolute;
	font-family : Arial, sans-serif;
	padding:0;
	margin:0;
	z-index : 100;
	left: 40px;
	top: 13px;
	height: 36px;
	font-weight: bold;
}

/* container UL start here */
ul.menu {
	list-style-type : none;
	padding : 0;
	margin : 0;
	z-index : 100;
}

/* menu separator */
ul.menu li.separator {
	height: 36px;
	float: left;
	position: relative;
	border-right: solid 2px #1D5582;
}

ul.menu a:link, ul.menu a:visited {
	color: #1D5582;
}

ul.menu a, ul.menu a:hover {
	text-decoration:none;
	font-size : 14px;
}
/* define LI tags */
ul.menu li.level-one, ul.menu li.has-submenu, ul.menu li.active {
	float : left;
	line-height : 30px;
	z-index : 100;
	position: relative;	
	width: 120px;
	/*border-right: solid 2px #1D5582;*/
}

ul.menu li.level-one {
	/*border-left: solid 2px #1D5582;*/
}

ul.menu li.active {
	background-color: #1D5582;
	color: #fff;
}

ul.menu li.active:hover {
	background-color: #1D5582;
}
/* define all tags A in LI */
ul.menu li.level-one a {
	line-height : 30px;
	display : block;
	padding : 2px 15px 4px;
}

ul.menu li.active a:link, ul.menu li.active a:visited {
	color : #fff;
	font-weight: bold;
}

ul.menu li.level-one a:hover {
	padding-top : 2px;
	padding-bottom : 4px;
	color : #E2001A;
	font-weight: bold;
}

/* define UL submenu in first level LI */
ul.menu li.level-one dl {
	/*background-color: #006AB2;
	color: #fff;*/
	background-color: #ffffff;
	color: #006AB2;
	display : none;
	width : 155px;
	list-style-type : none;
	padding : 5px 0 0;
	margin : 0;
	text-align: left;
	border-left: solid 1px #E2001A;
}

/* define link color for sub menu level one */
ul.menu li.level-one:hover dl dd a {
	color : #1D5582;
	font-weight: normal;
}

/* delete inherited properties for next level LI */
ul.menu li.level-one dd {
	position : relative;
	margin : 0;
	line-height : 21px;
	width : 100%;
}
ul.menu li.level-one dd a {
	line-height : 21px;
	padding : 0 10px !important;
	margin : 0 1px;
	width : 100%;
	display : block;
	float : none;
	background-image : none;
	background-color : transparent;
}

ul.menu li.level-one dl dd:hover {
	background-color: #1D5582;
}

ul.menu li.level-one dl dd a:hover {
	font-weight: normal;
	color: #fff;
}

/* add properties for "standard" browsers (not IE6) */
ul.menu li.level-one dl dd > a {
	display : block;
	width : auto;
}
/* on mouse hover, show sub menu UL */
ul.menu li.level-one:hover dl {
	display : block;
}

