/* ================================================================ 
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_pullup.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.
=================================================================== */
/* style the outer div to give it width */
.menu_list_footer {
	/*width: 690px;*/
	width: 1006px;
	height: 30px;
	font-size: 0.85em;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu_list_footer ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.menu_list_footer ul ul {
	/*width: 150px;*/
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu_list_footer li {
	float: left;
		/*width: 150px;*/
	position: relative;
	color: #993300;
}

/* style the links for the top level */
.menu_list_footer a,.menu_list_footer a:visited,.menu_list_footer a:hover {
	display: block;
	font-size: 13px;
	font-weight:bold;
	text-decoration: none;
	color: #993300;
	/*width: 139px;*/
	height: 30px;
	/*border-top:3px solid #FFCC66;
	background: #ccc;*/
	padding-left: 8px;
	padding-right: 8px;
	line-height: 29px;
}

.top_link *{
/*color: #993300;*/
color: #fff;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menu_list_footer a,* html .menu_list_footer a:visited {
color: #993300;
	/*width: 150px;*/
	/*w\idth: 139px;*/
}

/* style the second level background */
.menu_list_footer ul ul a.drop,.menu_list_footer ul ul a.drop:visited {
	/*background: #FFCC66;
	border-top:3px solid #ccc;*/
	color: #993300;
	height:25px;
	line-height:25px;
}

/* style the second level hover */
.menu_list_footer ul ul a.drop:hover {
	/*background: #FFCC66;*/
	color: #993300;
}

.menu_list_footer ul ul :hover>a.drop {
	/*background: #FFCC66;*/
	color: #993300;
}

/* style the third level background */
.menu_list_footer ul ul ul a,.menu_list_footer ul ul ul a:visited {
	/*background:#FFFF99;
	border-top:3px solid #ccc;*/
	height:25px;
	line-height:25px;
	color: #993300;
}

/* style the third level hover */
.menu_list_footer ul ul ul a:hover {
	/*background: #ccc;*/
	color:#993300;
}

.menu_list_footer ul ul ul :hover>a {
	/*background: #ccc;*/
	color:#993300;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu_list_footer table {
	border-collapse: collapse;
	border: 0;
	position: absolute;
	left: 0;
	bottom: -1px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu_list_footer ul ul {
	visibility: hidden;
	position: absolute;
	bottom: 33px;
	left: 0;
	width: 150px;
}

* html .menu_list_footer ul ul {
	bottom: 33px;
}

/* position the third level flyout menu */
.menu_list_footer ul ul ul {
	left: 150px;
	bottom: 0;
	width: 150px;
}

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

/* style the second level links */
.menu_list_footer ul ul a,.menu_list_footer ul ul a:visited {
	background: #d4d8bd;
	color: #000;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	width: 129px /* yet another hack for IE5.5 */
}

* html .menu_list_footer ul ul a {
	width: 150px;
	w\idth: 129px;
}

/* style the top level hover */
.menu_list_footer a:hover,.menu_list_footer ul ul a:hover {
	color: #282828;
	/*background: #949e7c;*/
}

.menu_list_footer :hover>a,.menu_list_footer ul ul :hover>a {
	color: #282828;
	/*background: #949e7c;*/
}

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

/* keep the third level hidden when you hover on first level list OR link */
.menu_list_footer ul :hover ul ul {
	display: none;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu_list_footer ul :hover ul :hover ul ul {
	display: none;
}

/* make the third level visible when you hover over second level list OR link */
.menu_list_footer ul :hover ul :hover ul {
	display: block;
	bottom: 0;
}

/* make the fourth level visible when you hover over third level list OR link */
.menu_list_footer ul :hover ul :hover ul :hover ul {
	display: block;
	bottom: 0;
}