﻿/* ********************************* */
/* the main menu on top */
/* ********************************** */

#menuButton 
{
    width: 11px;
    height: 11px;
    margin: 0px;
    padding: 0px;
    display: block;
    background: transparent url('/images/menu-button.gif') no-repeat 0 0;
}
#menuButton:hover
{
    background: #111111 url('/images/menu-button-over.gif') no-repeat 0 0;
}
#menu ul 
{
    margin: 0;
	padding: 0;
	list-style: none;
    font-family: 'Verdana';
    font-size: 8pt;
    cursor: default;
}
#menu ul#drop 
{
    width: 11px;
    height: 11px;
    /* background: transparent url('/images/menu-button.gif') no-repeat 0 0;
}
#menu ul#drop:hover
{
    background: transparent url('/images/menu-button.gif') no-repeat 0 0; */
}
#menu ul#drop li 
{
	position: relative;
}
#menu li ul 
{
	position: absolute;
	float: left;
    white-space: nowrap;
    left: 4px;
	top: 1px;
    width: auto;
    height: auto;
	display: none;
    border: 1px solid #222222;
    z-index: 20;
}
#menu ul li a 
{
	display: block;
	padding: 5px 5px 12px 5px;
    height: 8pt;
    font-size: 8pt;
    text-decoration: none;
	color: #ffffff;
    cursor: default;
	background: #1a1a1a;
    filter: alpha(opacity:95);
    opacity: .95;
}
#menu ul li a:hover
{
    background: #141414;
    color: #1d628d;
    filter: alpha(opacity:85);
    opacity: .85;
}
#menu ul:hover li ul, #menu li:hover ul 
{
    display: block;
}

.clearfix:after
{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix
{
    display: inline-block;
}