


a.cssmnu_top_select {
	font-size:13px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:white;
	padding-left:0px;
	padding-right:15px;
	font-weight: bold;
	background-color: #8BA787;
	padding-top: 0px;
	padding-bottom: 0px;

}
a.cssmnu_top_select:visited {
	font-size:13px;
	text-decoration:none;
	color: White;
	padding-left:0px;
	padding-right:15px;
	font-weight: bold;
	background-color: #8BA787;

	/*padding-bottom: 25px;*/
}
a.cssmnu_top_select:hover {
	font-size:13px;
	text-decoration:none;
	color:white;
	padding-left:0px;
	padding-right:15px;
	font-weight: bold;
	background-color: #8BA787;

	/*padding-bottom: 25px;*/
}


a.cssmnu_top_noselect {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size:13px;
	text-decoration:none;
	color:white;
	padding-left:0px;
	padding-right:15px;
	font-weight: bold;
	/*padding-bottom: 5px;*/
	background-color: #8BA787;
	padding-top: 0px;
	/*padding-bottom: 25px;*/
	padding-bottom: 0px;

}
a.cssmnu_top_noselect:visited {
	color:white;
	text-decoration:none;
	font-weight: bold;
	padding-top: 0px;
	background-color: #8BA787;
	font-size: 13px;
	padding-top: 0px;
	/*padding-bottom: 25px;*/
	padding-bottom: 0px;

}
a.cssmnu_top_noselect:hover {
	color:white;
	text-decoration:none;
	font-weight: bold;
	background-color: #8BA787;
	font-size: 13px;
	padding-top: 0px;
	/*padding-bottom: 25px;*/
	padding-bottom: 0px;

}


a.cssmnu_sub {
	font-size:11px;
	text-decoration:none;
	font-weight: bold;
	color: white;
	display:block;
	background:#8BA787;
	padding-left:4px;
	padding-right:4px;
	width:100%;
	height:100%;
	border:solid 1px #ffffff;
	padding-top:2px;
	padding-bottom:2px;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
a.cssmnu_sub:visited {
	font-size:11px;
	text-decoration:none;
	font-weight: bold;
	color: white;
	display:block;
	background:#8BA787;
	padding-left:4px;
	padding-right:4px;
	width:100%;
	height:100%;
	border:solid 1px #ffffff;
	padding-top:2px;
	padding-bottom:2px;
}

a.cssmnu_sub:hover {
	font-size:11px;
	text-decoration:none;
	font-weight: bold;
	color: white;
	display:block;
	background:#504F54;
	padding-left:4px;
	padding-right:4px;
	width:100%;
	height:100%;
	border:solid 1px #ffffff;
	padding-top:2px;
	padding-bottom:2px;
}


/* tame the lists */
ul.cssmnu_top_ul, ul.cssmnu_top_ul li {
	margin:0;
	padding:0;
	list-style-type:none;
	font-size:100%; /* fix for win/ie's "non-linear text scaling" bug */
	}


/* navbar list */
ul.cssmnu_top_ul {
	margin: 0 0 0 0;
	padding: 0px;
	position: absolute;
	height: 33px;
	/*left:10px;
	width:100%;*/
	cursor:default;
	z-index:2000;
	top: 8px;
	
	/* navbar top position 
	   this DOES NOT already include 1px compensation 
	   on TOP, for list-item border collapse 
	   (1px defaults to around 0.05em) */
	/*top:4px;*/
	}
* html ul.cssmnu_top_ul {
top: 8px;
}


/* navbar list-items */
ul.cssmnu_top_ul li {
	width:auto;
	float:left;
	position:relative;
	cursor:pointer;
	cursor:hand;
	
	text-align:left;
	
	/* navbar items' left position relative to the container
	   this DOES NOT already include 1px compensation 
	   on LEFT, for list-item border collapse 
	   (1px defaults to around 0.05em) */
	left:0px;

	/* shift list-items to collapse borders cssmnu_top_ully */
	margin:0 0 0 -1px;
	}
	
/* we have to use a different positioning trick for ie, so: 
   - set the two values below to reflect the navbar items' left position,  
   - then reduce the margin-left value by 1px (approx 0.05em)  
     to re-apply the list-item border-collapse */
* html ul.cssmnu_top_ul li {
/*	margin:0 -10.55em 0 10.5em;*/
	margin:0;
	}

/* we also need to use the same trick for safari < 1.2, so 
   - apply the same values again 
   we're also increasing the border-collapse and compensation slightly
   to cover for a float-related rounding-error in mozilla and safari 
   this is using a substring-matching attribute selector 
   which is also visible to safari 1.2, konqueror, mozilla and osx/msn  
   but that's okay, because it still works 
   we can't do that for everybody, because it breaks in opera */
ul[class^="cssmnu_top_ul"] li {
/*	margin:0 -10.55em 0 10.45em;
	left:0.05em;*/
	margin:0px;
	left:0px;
	}


/* menu lists */
ul.cssmnu_top_ul ul {
	z-index:2020;
	padding:0;
	cursor:default;
	position:absolute;
	top:auto;
	
	/* menu width */
	width:10em;
	
	/* menu offset, which already includes 1px compensation 
	   for list-item border collapse */
	margin:0 0 0 0;
	
	/* 
	position menus off the screen to hide 
	because using display, visibility, overflow or clip,  
	would hide them from browser-based screenreaders as well 
	using left this time because top doesn't work correctly in safari
	and using px because left:-Nem causes a cssmnu_top_ul scrollbar in some opera builds
	it also has the advantage that menus which might extend beyond the window
	won't create a cssmnu_top_ul scrollbar unless they're open
	*/
	left:-10000px;
	}
* html ul.cssmnu_top_ul ul{
	position:absolute;
	margin:0 0 0 0;
}
	
/* menu list-items */
ul.cssmnu_top_ul ul li {
	/* duplicate menu width */
	width:10em;
	
	/* compensate for navbar positioning */
	left:auto;
	
	/* shift list-items to collapse borders vertically */
	margin:-1px 0 0 0;
	}


/* you can use <ul> classes to specify different menu widths */
ul.cssmnu_top_ul ul.wider, ul.cssmnu_top_ul ul.wider li {
	width:12.2em;
	}


/* further child-menu offset */
ul.cssmnu_top_ul ul ul {
	/* this DOES NOT already include 1px compensation 
	   on TOP and LEFT, for list-item border collapse 
	   (1px defaults to around 0.05em) */
	margin:0 0 0 9.8em;
	/* overlapping the menus improves usability */
	}


/* menu triggers -- position menus back on the screen to show 
   hide these from safari < 1.2 because of it's "sticky hover" bug 
   and because the menu positioning doesn't work
   using the "@media with Media Type in Mixed Case" hack
   http://www.dithered.com/css_filters/css_only/media_mixed_case.html */
@media Screen, Projection { 
	ul.cssmnu_top_ul li:hover > ul { left:auto; }
	ul.cssmnu_top_ul li:hover > ul { top:0; }
	}


/* links */
/*
ul.horizontal a, ul.horizontal a:visited {
	display:block;
	cursor:pointer;
	cursor:hand;
	
	background:#ffc;
	border:1px solid #edbb85;
	padding:5px 7px;
	font:normal normal bold 0.7em tahoma, verdana, sans-serif;
	color:#008000;
	text-decoration:none;
	letter-spacing:1px;
	}

/* rollover pseudo-classes, and scriptable persistence class */
ul.cssmnu_top_ul a:hover, ul.horizontal a:focus, ul.horizontal a.rollover, ul.horizontal a.rollover:visited {
/*	background:#ffefcf;
	color:#806020;*/
	}

/* opera 5 and 6, and mac/ie5, need float on the links */
ul.cssmnu_top_ul a { float:left; }

/* but it would break other browsers, so we need to negate it
   using a rule that's hidden from them with the "@media with Media Type in Mixed Case" hack
   http://www.dithered.com/css_filters/css_only/media_mixed_case.html */
@media Screen, Projection { ul.cssmnu_top_ul a { float:none; } }

/* msn/osx can see through that, but needs the float as well, 
   so re-apply it using the "not my child" hack
   http://www.jasonkarldavis.com/articles/notmychild/ */
ul.cssmnu_top_ul a:not(:nth-child(n)) { float:left; }

/* compensate submenus, using !important to increase specificity for osx/msn */
ul.horizontal ul a { float:none !important; }

/* hacks for win/ie to cure 'excess hidden margins' and 'double margin float' bugs */
@media screen, projection {
	* html ul.cssmnu_top_ul li {
		/* for ie5.0 */
		display:inline; 
		/* for ie5.5+ */
		f\loat:left; 
		/* this cures 'events fall through the menu' bug in ie6 
		   you can can change the color, but don't remove it or use an image */ 
		background:#000000; 
		}
	}

/* use different comparative positioning for ie, 
   to avoid problems with virtual z-ordering */
* html ul.cssmnu_top_ul li { position:static; }
* html ul.cssmnu_top_ul a { position:relative; }

/* hide menus from konqueror < 3.2 */
ul[class^="cssmnu_top_ul"] ul { display:none; }
ul[class^="cssmnu_top_ul"] ul { displa\y:block; }





/*---------------------- Submenu --------------------------*/


td.axolmnu_noselect_0{
	background-image: url(/file?fle=16);
	background-position: left top;
	background-repeat: no-repeat;
	border-left: 30px solid white;
}
a.axolmnu_noselect_0{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
	padding: 5px 10px 5px 20px;
	/*background-image: url(/file?fle=16);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;*/
	display: block;
	
}
a.axolmnu_noselect_0:visited{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_0:hover{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
td.axolmnu_select_0{
	background-image: url(/file?fle=18);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 30px solid white;
}
a.axolmnu_select_0{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_0:visited{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_0:hover{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}



td.axolmnu_noselect_1{
	background-image: url(/file?fle=19);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 50px solid white;
}
a.axolmnu_noselect_1{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_1:visited{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_1:hover{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
td.axolmnu_select_1{
	background-image: url(/file?fle=20);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 50px solid white;
}
a.axolmnu_select_1{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_1:visited{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_1:hover{
	font-size: 14px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}






td.axolmnu_noselect_2{
	background-image: url(/file?fle=19);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 60px solid white;
}
a.axolmnu_noselect_2{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_2:visited{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_2:hover{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
td.axolmnu_select_2{
	background-image: url(/file?fle=20);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 60px solid white;
}
a.axolmnu_select_2{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_2:visited{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_2:hover{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}







td.axolmnu_noselect_3{
	background-image: url(/file?fle=19);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 65px solid white;
}
a.axolmnu_noselect_3{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_3:visited{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: none;
}
a.axolmnu_noselect_3:hover{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
td.axolmnu_select_3{
	background-image: url(/file?fle=20);
	background-position: left top;
	background-repeat: no-repeat;
	padding: 5px 10px 5px 20px;
	border-left: 65px solid white;
}
a.axolmnu_select_3{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_3:visited{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}
a.axolmnu_select_3:hover{
	font-size: 11px;
	color: #5A5A5A;
	font-family:  Arial, Helvetica, sans-serif;
	font-weight: bolder;
	text-decoration: underline;
}