@charset "utf-8";
/* CSS Document */


html {
	height: 100%;
}

body {
	background-image: url(../Images/background.jpg);
	background-repeat: repeat;
	font-family: "Trebuchet MS";
	font-size: 13px;
	margin: 0px;
	height: 100%;
	padding: 0px;
}


#wrapper {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
}


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

.menu {
	width:auto;
	position:absolute;
	z-index:100;
	top: 100px;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:746px;
	w\idth:auto;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:150px;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#fff;
	width:140px;
	height:30px;
	padding-left:10px;
	line-height:29px;
	background-color: #0000cc;
	border-top-width: 1px;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #0000CC;
	border-right-color: #0000CC;
	border-bottom-color: #0000CC;
	border-left-color: #0000CC;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:149px;
	w\idth:140px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color: #99FF99;
	background-repeat: no-repeat;
	background-position: right bottom;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background-color: #33FF33;
	background-repeat: no-repeat;
	background-position: right bottom;
}
.menu ul ul :hover > a.drop {
	background-color: #33FF00;
	background-repeat: no-repeat;
	background-position: right bottom;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background-color: #66FFCC;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background-color: #CC0099;
}


/* 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:31px;
	left:0;
	width:150px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #0000cc;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color:#0000CC;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:128px;
	border-width:0 1px 1px 1px;
	background-color: #FFFFFF;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#0000CC;
	background-color: #FFFFFF;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#FF9900;
	background-color: #FFFFFF;
}

/* 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; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}
