/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 1px;
	width: 173px;
	list-style: none;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {
	display: none;
	position: absolute;
	top: 0;
	left: 177px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist a.level1 {
	width: 157px !important;
}

.menulist li, .menulist a {
	position: relative;
	display: block;
	width: 172px !important;
}

.menulist a.level1 {
	background: url("../img/bullet-menu-default.gif") left center no-repeat;
	padding-left: 15px;
}

/* Links inside the menu */
.menulist a {
	display: block;
	padding: 3px 0;
	color: rgb(116,117,118);
	text-decoration: none;
	margin: 5px 0;
	font-size: 0.9em;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a.highlighted:hover, .menulist a:hover, .menulist a:focus {
	color: rgb(219,0,22);
	background-color: rgb(202,211,225);
/* 	background-color: rgb(179,191,208); */	
}

.menulist a.level1:hover, .menulist a.level1.highlighted:hover {
	background: url("../img/bullet-menu-hover.gif") rgb(202,211,225) left center no-repeat;
	padding-left: 15px;
}

.menulist a.highlighted {
	color: rgb(0,0,0);
	background-color: rgb(202,211,225);
	padding-right: 0px;
}

.menulist a.level1.highlighted {
	background: url("../img/bullet-menu-active.gif") rgb(202,211,225) left center no-repeat;
	padding-left: 15px;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */

/* Modifications */
ul.level1 a {
	font-weight: bold;
}

ul.level1 a:hover {
	color: rgb(219,0,22);
}

ul.level2 a {
	font-weight: normal;
	font-size: 0.7em;
}

ul.level1 ul {
	background-color: rgb(202, 211, 225);
	border: solid rgb(255,255,255);
	border-width: 2px 2px 1px 2px;
	left: 173px;
}

ul.level2 li {
	border-bottom: 2px solid rgb(255,255,255);
	margin: -1px;
}

ul.level2 a {
	margin: 0;
}

ul.level2 ul {
	left: 177px;
}
/*
.menulist ul.cols {
	width: 519px;
}

.menulist ul.cols li {
	float: left;
	min-height: 2.5em;
}

.menulist ul.cols.short li {
	min-height: 1.3em;
}
*/
