/* CSS Document */

html,body {margin:0;padding:0}
body {
	font-family: Tahoma, Verdana, Century Gothic, Arial, Helvetica, sans-serif;
	margin:17px 0;
	color: #000000;
	background-color: #ffffff;
	text-align:center;/* centre for ie*/
	font-size:100%
}
p {margin:0 0 1em 0;padding:0}
#outer {
	width:33em;
	margin-left:auto;/* centre for compliant browsers */
	margin-right:auto;/* centre etc */
	text-align:left;
	position:relative;
	background:red;
}
ul#nav{
	margin:0;
	padding:0;
	list-style:none;
	width:100%;
	height:1.3em;
}
ul#nav li {
	height:1.3em;
	width:5em;
	float:left;
	margin:0;
	padding:0;
	text-align:center;
}

ul#nav li a{
	height:1.3em;
	width:5em;
	display:block;
	text-decoration:none;
	color:#000;
}
ul#nav li a:hover {color:#fff}
/* drop down styling */
ul#nav ul {
	position:absolute;
	top:auto;
	width:33em;
	margin:0;
	padding:0;
	list-style:none;
	overflow:visible;
	left:-999em;
	height:1.3em;
	line-height:1.3em;	
	z-index:2;
}
ul#nav li.current {background:#ffffcc;color:red;}
ul#nav li.current a {color:red;}
ul#nav li.current a:hover {color:pink;}

ul#nav li.current ul{left:0;z-index:1;top:auto;}/* display the submenu for the current page in case js is disabled*/

ul#nav ul li{
	position:relative;
	display:inline;
	width:auto;
	text-align:left;
}
#outer ul#nav ul li a{
	font-size:80%;
	color:#000;
	width:auto;
	height:auto;
	display:inline;
	padding:0 5px;
	border-right:1px solid #000;
}
/* mac hide \*/
* html ul#nav ul li,
#outer ul#nav ul li a
{height:1%}/* for ie5*/
/* end hide*/

#outer ul#nav ul li a.final{border-right:0px solid #000;}/*remove border from last sublist */

#outer ul#nav ul li a:hover{color:red;}/*subnav list text change on hover*/

ul#nav li:hover ul, ul#nav li.over ul { left:0;background:silver; } /* The magic */

/* this subnav just sets the background onto which the subnav is placed */
#subnavbg{
	margin:0px;
	width:100%;
	height:1.3em;
	line-height:1.3em;
	background:silver
}

p{	
	width:35em;
	padding-top:25px;
	margin-left:auto;
	margin-right:auto;
}
/* mac styles \*//*/
ul#nav ul {
	left:0;
	display:none;
}
ul#nav ul li{float:left}

ul#nav li.current ul{display:block;z-index:1;}
ul#nav li:hover ul, ul#nav li.over ul { display:block;background:silver; } 

/* end mac styles */