/* ================================================================ 
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_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.mainmenu {
	height:16px;
	position:relative;
	z-index:100;
	font-family:arial, sans-serif;
}

/* hack to correct IE5.5 faulty box model */
* html .mainmenu {
	width:800px;
	w\idth:799px;
}

.menu a{
text-decoration:none;
}


.mainmenu a {
	color:#FFFFFF;
}

/* remove all the bullets, borders and padding from the default list styling */
.mainmenu ul { 
	padding:0;
	margin:0;
	list-style-type:none;
}
.mainmenu ul ul {
	width:149px;
	border:1px solid white;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.mainmenu li {
	float:left;
	position:relative;
}
.mainmenu ul ul li {
	width:149px;
}

/* style the links for the top level */
.mainmenu a,
.mainmenu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#fff;
	width:138px;
	height:16px;
	line-height:16px;
	font-weight:bold;
	text-align:center;
	background:#eb1c24 url(/img/blocks/menu_divider.gif) 2px bottom no-repeat;
}

.mainmenu a.menu_home{
	background-image:none;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .mainmenu a,
* html .mainmenu a:visited {
	width:149px; 
	w\idth:138px;
}

/* style the second level background */
.mainmenu ul ul a.drop,
.mainmenu ul ul a.drop:visited {

}

/* style the second level hover */
.mainmenu ul ul a.drop:hover,
.mainmenu ul ul :hover > a.drop {
}

/* style the third level background */
.mainmenu ul ul ul a,
.mainmenu ul ul ul a:visited {
}

/* style the third level hover */
.mainmenu ul ul ul a:hover {
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.mainmenu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:16px;
	left:0;
	width:149px;
}

/* another hack for IE5.5 */
* html .mainmenu ul ul {
	top:16px;
	t\op:17px;
}

/* position the third level flyout menu */
.mainmenu ul ul ul{
	left:180px;
	top:-1px;
	width:180px;
}

/* position the third level flyout menu for a left flyout */
.mainmenu ul ul ul.left {
	left:-149px;
}

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

/* style the second level links */
.mainmenu ul ul a,
.mainmenu ul ul a:visited {
	background:#eb1c24;
	color:#FFF;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:160px;
	text-align:left;
	border-color:white;
	border-style:solid;
	border-width:0 1px 1px 1px;
}

/* yet another hack for IE5.5 */
* html .mainmenu ul ul a,
* html .mainmenu ul ul a:visited {
	width:150px;
	w\idth:128px;
}

/* style the top level hover */
.mainmenu a:hover,
.mainmenu ul ul a:hover{
	color:#fff;
	background-color:#d51a21;
}
.mainmenu :hover > a,
.mainmenu ul ul :hover > a {
	color:#fff;
	background-color:#d51a21;
}

/* make the second level visible when hover on first level list OR link */
.mainmenu ul li:hover ul,
.mainmenu ul a:hover ul{
	visibility:visible;
}

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