
/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0px;
 padding: 0px;
 width: 150px;
 list-style:none;
}

.menuSublist, .menuSublist ul {
 margin: 0px;
 padding: 0px;
 width: 200px;
 list-style: none;
}

/* IE fix because it doesn't support transparent borders */
 html .menulist ul, .menulist {
 border: none;
 margin: 1px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 155px;
}

.menuSublist ul {
 visibility: hidden;
 position: absolute;
 left: 200px;
 top: 5px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
padding: 0px;
margin-right: -1px;
float: left;
position: relative;
}

.menuSublist li {
padding: 0px;
 margin-right: -1px;
 float: left;
 position: relative;
 background-color: #eeefed;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 2px 5px 4px 1px;
 color: #000000;
 text-decoration: none;
 text-align: left;
  font-weight:bold;
}

/* IE fix because it doesn't support transparent borders */


/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 padding: 2px 5px 4px 1px;
 margin: 0;
}
.menulist a.highlighted {
 margin: 0;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 color: #000000;
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */


.menuSublist a {
 display: block;
 padding: 0px;
 width: 200px;
 color: #000000;
 text-decoration:none;
 font-weight:bold;
 text-align:left;
 list-style: none;
 background: #EEEFED;
}

.menuSublist ul li a {
 display: block;
 padding: 0px;
 width: 200px;
 color: #000000;
 text-decoration:none;
 font-size:11px;
 text-align:left;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menuSublist a:hover, .menuSublist a.highlighted:hover, .menuSublist a:focus {
 padding: 0px;
}

.menuSubsublist a {
	display: block;
	padding: 2px 5px 4px 1px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	list-style: none;
	background: #EEEFED;
}

.menuSubsublist ul li a {
	display: block;
	padding: 2px 5px 4px 1px;
	width: 100px;
	color: #000000;
	text-decoration: none;
	font-size: 11px;
	text-align: center;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menuSubsublist a:hover, .menuSubsublist a.highlighted:hover, .menuSubsublist a:focus {
}

