/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* style the outer div to give it width */
.menu2 {
	float:left;
	position:relative;
	margin:10px 0px 5px 0px;
	width:210px;
	height:auto;
	font-size:11px;
	z-index:100;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu2 ul {
	font-size:11px;
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu2 ul ul {
	width:422px;
	background-color:#e7e3d9;
	border:#000000 1px solid;
	overflow:hidden;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

* html .menu2 ul.li {
	display:block;
	clear:both;
	position:relative;
	float:left;
	margin:0px;
	width:210px;
	w\idth:200px;
}

.menu2 ul li {
	display:block;
	position:relative;
	float:left;
	background:url(images/dottedhorizontal01.gif) left bottom repeat-x;
	width:210px;
	margin:0px;
}

.menu2 ul ul li {
	border-right:#bab6ab 1px solid;
	position:relative;
	float:left;
	width:210px;
}

/* style the links for the top level */
.menu2 a, .menu2 a:visited {
	display:block;
	padding:0px 0px 0px 15px; 
	background:transparent url(images/rs_bltarrow01.gif) 200px 10px no-repeat;
	font-weight:bold;
	text-decoration:none; 
	color:#000000;
	height:auto;
	line-height:26px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu2 a, * html .menu2 a:visited {
	width:209px;
	w\idth:200px;

/*	width:210px;
	w\idth:195px;
*/
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu2 table {
	border-collapse:collapse;
	border:0px;
	position:absolute;
	left:0px;
	bottom:-1px;
}

.menu2 table.up {
	bottom:-1px;
}

.menu2 table.down {
	top:0px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */

.menu2 ul ul {
	visibility:hidden;
	position:absolute;
	left:209px;
}

.menu2 ul ul li {
	float:left;
}

.menu2 ul ul.up {
	bottom:0px;
}
* html .menu2 ul ul.up {
	bottom:0px;
}

.menu2 ul ul.down {
	top:0px;
}
* html .menu2 ul ul.down {
	top:0px;
}

/* style the second level links */
.menu2 ul ul a, .menu2 ul ul a:visited {
	display:block;
	background-color:transparent;
	background-image:none;
	color:#000; 
	height:auto; 
	line-height:1em; 
	padding:7px 0px 7px 10px; 
	font-weight:normal;
/* yet another hack for IE5.5 */
}

* html .menu2 ul ul a, * html .menu2 ul ul a:visited {
	width:209px;
	w\idth:200px;
}

/* style the top level hover */
.menu2 a:hover, .menu2 ul ul a:hover {
	color:#FFFFFF;
	background:#000000 url(images/rs_bltarrow02.gif) 200px 10px no-repeat;
}
.menu2 :hover > a, .menu2 ul ul :hover > a {
	color:#FFFFFF;
	background:#000000 url(images/rs_bltarrow02.gif) 200px 10px no-repeat;
}

/* make the second level visible when hover on first level list OR link */
.menu2 ul li:hover ul, .menu2 ul a:hover ul{
	visibility:visible;
	height:auto;
}

