/* CSS Document */

#menu {
	list-style: none;
	color: #fff;
	padding: 0;
	margin: 0;
	height: 40px;
	}
	
#menu li {
	float: left;
	position: relative;
	height: 40px;
	background: #fff url(images/menu_li.gif) no-repeat right bottom;
	padding: 0px;
	}
	
#menu a {
	display: block;
	font-size: 11px;
	color: #02253a;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 40px;
	height: 40px;
	float: left;
	position: relative;
	padding: 0 5px;
	border: none;
	}

#menu a:hover {
	text-decoration: underline;
	color: #fff;
	background: none;
	border: none;
	}
		
#menu a strong {
	display: block;
	padding: 1px 10px;
	font-weight: normal;
	line-height: 20px;
	margin-top: 8px;
	float: left;
	cursor: pointer;
	}
	
#menu a:hover strong {

	}
	
	
* html #menu strong {
	height: 15px;
	}

/** drop down **/

#menu li.over {
	z-index: 10;
	}
	
#menu li.over a
 {
	z-index: 20;	
	}

#menu li.over a strong
 {
	background-color: #3d6599;
	color: #fff;
	border: 1px solid #1f406b;
	padding: 0 9px;
	}
	
* html #menu li.over a strong {
	background-color: #29568f;
	}
	
#menu li.over.has_sub a strong {
	border-bottom: none;
	}
	
#menu li.over li.over a:hover
 {
	background: #508cc7 url(images/menu_ul_a_hover.gif);
	padding: 5px 10px;
	border: none;
	text-decoration: none;
	}

#menu li.over ul {
	display: block;
	}
	
#menu li.over ul ul{
	display: none;
	}
	
#menu ul li.over ul {
	display: block;
	}

#menu ul {
	position: absolute;
	display: none;
	padding: 5px;
	margin: 0;
	top: 28px;
	left: 5px;
	width: 200px;
	background: url(images/background.png);/*#29568f;*/
	border: 1px solid #1f406b;
	}
	
* html #menu ul {
	background: #29568f;
	}

	
#menu ul ul {
	left: 200px;
	background: #dc241f;
	}
	
#menu ul li {
	display: block;
	float: left;
	position: relative;
	width: 200px;
	background: none;
	padding: 0;
	height: auto;
	border-bottom: 1px solid #5f80ab;
	}
	
#menu ul li.last {
	border: none;
	}
	
#menu li.over ul a {
	display: block;
	padding: 5px 10px;
	width: auto;
	position: relative;
	height: auto;
	min-height: 20px;
	line-height: 20px;
	text-align: left;
	font-size: 10px;
	float: none;
	margin: 0;
	border: 1px none;
	color: #fff;
	background: none;
	}
	
* html #menu li.over ul a {
	height: 1px;
	}
	