/* ########## CSS Document ########## */

/* top center menu styles */
td.top-menu {
	/* ## edit: site-specific ## */
	text-align: center;
	background-color:#505050;
	padding:  5px 10px 5px 0;
	margin:0;
	
}

.top-menu, a.top-menu {
	font-family:Arial, Helvetica, sans-serif; 
	font-size:12px; 
	font-weight: bold;
	/* ## edit: site-specific ## */
	color: #fff; 
	text-decoration:none;
	padding: 0;
	margin: 0 4px 0 4px;
}

a.top-menu:hover {
    /* ## edit: site-specific ## */
	color: #d88080; 
}



#menuads {
    margin-top:35px;
}

#menuwrap {
    background: #6f0606;
}

#menu {
    width: 173px; /* set width of menu */
    background: #6f0606;
	margin-left:15px;
	z-index: 50;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */

#menu a{
	font-family:Arial, Helvetica, sans-serif; 
	font-size:14px; 
    display: block;
    margin: 0;
    padding: 2px 3px;
}

#menu h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size:14px;
    color:#bbb;
	text-align:left;
	padding: 10px 0 6px 5px;
	margin:0;
}

#menu a {
    color: #fff;
    background: #6f0606;
    text-decoration: none;
}

#menu a:hover {
    color: #fff;
    background: #d27b7b;
}

#menu li {
    /* make the list elements a containing block for the nested lists */
    position: relative;
} 

#menu ul ul ul {
    position: absolute;
    top: 0;
    left: 100%; /* to position them to the right of their containing block */
    width: 100%; /* width is based on the containing block */
}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul {
    display: none;
}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul {
    display: block;
}