/* CSS Document */
BODY {
	background-color: #FFFFFF;
	margin: 45px;
	background-repeat: repeat;
	margin-top: 20px;
	color: #000000;
	}	
	
ul, li { margin: 0; padding: 0; }
.clear { clear: both; }

.menu { height:25px; position:relative; z-index:100; font-family:"Arial", Helvetica, sansserif; color:#FFF;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;text-align:center;}
.menu ul ul {width:128px;text-align:left;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;position:relative;color:#FFE2A6;}
/* style the links for the top level */
.menu a:link, .menu a:visited, .menu a:active {display:block;font-size:12px;text-decoration:none; padding:0; color:#000000; height:25px; border:1px solid #FFE2A6; border-width:1px 0 1px 1px; background:#FFE2A6; line-height:24px; font-weight:bold;}
.menu a:hover {color:#000; text-decoration:none;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#000;}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#E8E8D1;}
.menu ul ul :hover > a.drop {background:#E8E8D1;}

/* 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:26px;left:0; width:200px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html .menu ul ul {top:26px;t\op:26px;}

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

/* drop downs */
.menu ul ul a:link, .menu ul ul a:visited {background:#FFE2A6; color:#000; height:auto; line-height:1em; padding:5px 10px; width:180px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}

/* drop down rollovers */
.menu a:hover, .menu ul ul a:hover{color:#000; background:#fcfee6;}
.menu :hover > a, .menu ul ul :hover > a {color:#FFE2A6; background:#990000;}

/* 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; }


