/* CSS Document */

.menu {
	/*width: 620px;
	margin-left: auto;
	margin-right: auto;*/
	margin-left: 0px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul
{
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu ul ul
{
	width:112px;
}


/* 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:112px;
	position:relative;
}
/* style the links for the top level */

.menu a, .menu a:visited
{
	display:block;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #776c55;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: 1px; 
	width:112px; 
	height:27px; 
	border:0 none;
	line-height:26px;
	text-align: center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited
{
	width:112px;
}

.menu ul ul a
{
	font-weight: normal;
	font-size: 9px;
}


/* 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:27px;
left:0; 
width:112px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:27px;
t\op:28px;
}

/* 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;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#8bb3c5;
color:#fff; 
height:auto; 
line-height:12px; 
padding:5px 10px; 
width:112px;
font-size: 10px;
font-weight: bold;
}




/* style the top level hover */
.menu a:hover {
color:#e5e5c4;
background: none;
}
.menu ul ul a:hover{
color:#776c55;
background:#e5eab6;
}
.menu :hover > a {
color:#e5e5c4;
background: none;
}
.menu ul ul :hover > a {
color:#776c55;
background:#e5eab6;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{
visibility:visible; 
}



