/* CSS Document */
/* ================================================================ 
The original version of this menu was adapted from http://www.dynamicdrive.com/ - 
so as a nod of respect to this greater knowledge I include a link to his website where many more CSS wonders await
=================================================================== */


/*============================================================================================================*/
/* top navigation */
/*============================================================================================================*/

.solidblockmenu{
margin: 0;
padding: 0;
float: left;
/*font-family:Arial, Helvetica, sans-serif;
font-size:9px;*/
/*width: 100%;*/
overflow: hidden;
/*margin-bottom: 1em;
border: 1px solid #625e00;
border-width: 1px 0;*/
background: #000000 url(../site/background/nav/blockdefault.gif) center center repeat-x;
}

.solidblockmenu li{
display: inline;

}

.solidblockmenu li a{
float: left;
color: #ffffff;
padding: 4px 8px 5px 8px;
text-decoration: none;
border-right: 1px solid #FF9933;
}

/*.solidblockmenu li a:visited{
color: white;
}
*/
.solidblockmenu li a:hover, .solidblockmenu li .current{
color: #555555;
background: transparent url(../site/background/nav/blockactive.gif) center center repeat-x;
}




/*============================================================================================================*/
/* left menu */
/*============================================================================================================*/



.markermenu{
width: 130px; /*width of menu*/
text-align:left;
}

.markermenu ul{
list-style-type: none;
margin: 10px 0;
padding: 0;

/*border: 1px solid #9A9A9A;*/
}

.markermenu ul li a{
background: #888888 url(../site/background/nav/arrow-list.gif) no-repeat 2px center;
font: 13px Arial, Verdana, Helvetica, sans-serif;
color: #ffffff;
display: block;
width: auto;
padding: 5px 0;
padding-left: 20px;
text-decoration: none;
border-bottom: 0px solid #ffffff;

}


* html .markermenu ul li a{ /*IE only. Actual menu width minus left padding of LINK (20px) */
width: 110px;
}

/*.markermenu ul li a:visited, .markermenu ul li a:active{
color: #white;
}
*/
.markermenu ul li a:hover{
color: white;
background-color: #555555;
background-image:url(../site/background/nav/arrow-list-active.gif); /* onMouseover image change. Remove if none */
}

/* Holly Hack for IE \*/
* html .markermenu ul li { height: 1%; }
* html .markermenu ul li a { height: 1%; }
/* End */



