/* VERTICAL FREESTYLE MENU LAYOUT */
/* All ul tags in the menu including the first level */
.left_menu
{

	font-size: 11px;
}

.left_menu, .left_menu ul
{
	position: absolute;
	top: 200px;
	margin: 0;
	padding: 0;
	width: 149px;
	list-style: none;
	float: left;
	color: #29357A;
}

/*
 Submenus 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).
*/

.left_menu ul
{

	float: left;
	position: relative;
	top: 0px;
	width: 100%;
	padding: 0px;
}

/*
 All menu items are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.left_menu li
{
	padding: 0px 0 0px 0 ;
	font-style: normal;
	font-weight: bold;
	width:100%;

	
}

.left_menu li.level0
{
/*	background-color: #29357A;*/

}
.left_menu li.level0 a
{
	background-color: #29357A;
	color: #FFF;

}
.left_menu .level1
{
	padding: 0px 0 0px 0 ;
	
}
.left_menu .level1 a{
	color: #29357A;
	padding-left:8px;
	background-color: #AAAFBE;
}


.left_menu .level2
{
	padding: 0px 0 0px 0 ;
	
}
.left_menu .level2 a{
	font-weight: normal;
	color: #29357A;
	padding-left: 16px;	
	background-color: #CBCFDC;
	width:121px;

}


.left_menu ul>li:last-child
{
	/*	margin-bottom: -1px;*/
	/* Mozilla fix */
}

/* Links inside the menu */
.left_menu a
{
	width:129px;
	display: block;
	padding: 3px 3px 3px 8px;
	text-decoration: none;
	text-align: left;
	border-color: #FFF;
	border-width: 0 0 1px 0;
	border-style: solid;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/

.left_menu a:hover, .left_menu a.highlighted:hover, .left_menu a:focus, .left_menu li.highlighted
{
/*	background-color: #B7E47F;*/
}



/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.left_menu 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 *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/

*+html .left_menu li
{
	float: left;
	height: 1%;
}

*+html .left_menu a { height: 1%; }

* html .left_menu li
{
	float: left;
	height: 1%;
}

* html .left_menu a { height: 1%; }

/* End Hacks */