/********************
MENU
*********************/
#menu_vert
{
	margin: 0 0 15px 0;
	padding: 0;
	width: 180px;
}

#menu_vert ul
{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#menu_vert ul ul
{
	margin: 0;
	padding: 0;
}

/* menu li block */
#menu_vert li
{
	list-style: none;
	padding: 0;
	border-bottom: 1px solid black;
}

#menu_vert ul ul li {
   border-bottom: 1px solid black;
}

/* fix stupid IE6 bug with display:block; */
* html #menu_vert li { height: 1%; }
* html #menu_vert li a { height: 1%; }
* html #menu_vert li hr { height: 1%; }

/** end fix **/

div#menu_vert ul a
{
	/* IE6 has problems with this, fixed above */
	display: block;
	padding-left: 10px;
	height: 22px;
	line-height: 22px;
	font-size: 10px;
	color: #fff;
	background-color: #2F425A;
	min-height: 1em;
	/* Fixes IE7 whitespace bug */
	text-decoration: none;
	text-transform: capitalize;
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul li a
{
	padding-left: 10px;
	height: 22px;
	line-height: 22px;
	font-size: 10px;
	color: #fff;
	background-color: #17212d;
	text-transform: capitalize;
}

/* third level links, more padding */
div#menu_vert ul ul ul li a {
	padding-left: 10px;
	height: 22px;
	line-height: 22px;
	font-size: 10px;
	color: #ccc;
	background-color: #000;
	text-transform: capitalize;
}
/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/

div#menu_vert ul li a.menuactive {
   background-color: #466487;
   color: #fff;
font-weight: bold;
}
div#menu_vert ul ul li a.activeparent {
   background-color: transparent;
   color: #18507C;
}
/* hover state for all links */
div#menu_vert ul li a:hover
{
	color: #fff;
	text-decoration: none;
	background-color: #4b4257;
}

div#menu_vert ul ul li a:hover
{
	color: #fff;
	text-decoration: none;
	background-color: #25212c;
}
div#menu_vert a.activeparent:hover {
   background-color: #466487;
}

div#menu_vert ul h3
{
	display: block;
	/* some air for it */
	height: 22px;
	line-height: 22px;
	/* this will be link color for all levels */
	color: #fff;
	/* instead of the normal font size for <h3> */
	font-size: 11px;
	text-transform: capitalize;
	background: #466487;
	/* as <h3> normally has some margin by default */
	margin: 0;
	padding-left: 10px;
}

/* next level current pages, more padding, smaller font and no background color or bottom border */
div#menu_vert ul ul h3
{
	font-size: 10px;
	height: 22px;
	line-height: 22px;
	text-decoration: none;
	background-color: #9583ae;
	text-transform: capitalize;
	color: #fff;
	padding-left: 10px;
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 0.3em 0.5em 0.3em 4.3em;
   background: url(images/cms/arrow-right-active.gif) no-repeat 2.7em center; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
