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


#menuMain{
	width:984px;
	background-image:url(../images/navbg.gif);
	background-repeat: repeat-x;
	margin-top: 20px;
	height:34px;
	text-align: center;
	float:left;
	}

.menu {
	width:984px;
	float:left;
	z-index:100;
	
	}

.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	
}
.menu ul ul {
	text-align: left;
}

.menu li {
	float:left;
	position:relative;
	width: auto;
	display:inline;
}

.menu a, .menu a:visited {
	display:block;
	font-size:15px;
	text-decoration:none;
	color:#000;
	width: auto;
	height:34px;
	line-height:29px;
	font-weight:bold;
	padding:0px 24px 0px 25px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width: auto;
	w\idth:39px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #CA2228; 
	}
/* style the second level hover */
.menu ul ul a.drop:hover {
	background:#CA2228 url(../images/hover.gif) repeat-x;
}
.menu ul ul :hover > a.drop {
	background: #CA2228 url(../images/hover.gif) repeat-x;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#CA2228;
}
/* style the third level hover */
.menu ul ul ul a:hover {

	background: url(../images/hover.gif) repeat-x;
}

/* 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:29px;
	left:-1px;
	width:149px;
	z-index:100;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:20px;
	t\op:31px;
}
/* position the third level flyout menu */
.menu ul ul ul {
	visibility:hidden;
	position:absolute;
	left:193px;
	top:0px;
	width:149px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-169px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #CB2429;
	color:#fff;
	font-weight:normal;
	height:auto;
	font-size: 13px;
	border-bottom: 1px dashed #cccccc;
	line-height:1em;
	padding:7px 10px;
	width:173px;

	}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:180px;
	w\idth:173px;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color:#000;
	background: url(../images/hover.gif) repeat-x;
	
}
.menu :hover > a, .menu ul ul :hover > a {
	cursor:pointer;
	color:#000;
	background: url(../images/hover.gif) repeat-x;
}
/* 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;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	visibility:visible;
}


#active{
	background-image:url(../images/onclick.gif);
	background-repeat:repeat-x;
	color:#FFFFFF;
	}

#active a{
	color:#FFFFFF;
	}
	
#active a:hover{
	color:#000;
	}