/*============ SLIDER DOOR MENU ===========================
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.slidedoormenu{
list-style-type: none;
margin: 0;
padding: 0;
width: 147px; /* width of menu (don't forget to add border with below!) */
/*border-left: 8px solid white; #1c5082;  thick left border of menu */
}

.slidedoormenu li{
border-bottom: 1px solid White; /* White border beneath each menu item link, to add depth */
}

.slidedoormenu li a{
background: white url(../_images/nav/vstrip.gif) repeat-y left top; 
/* Background image positioned to the left(v) top(h) corner initially */
font: bold 13px "Lucida Grande", "Trebuchet MS",Verdana;
color: black;
text-indent: 16px; /*8px;*/
display: block;
width: auto;
padding: 7px 0; /* Vertical (top/bottom) padding for each menu link - effectively sets the height*/
border-bottom: 1px solid #885b5c; /* Gray border beneath each menu item */ 
text-decoration: none;
text-align: left;
}

.slidedoormenu li a:visited, .slidedoormenu li 

a:active{
color: black;
}

.slidedoormenu li a:hover{
background-position: -387px 0; /* Shift background image horizontally 387px, or the start of the 2nd background image */
color: black;
}

.slidedoormenu li.lastitem, .slidedoormenu 

li.lastitem a{
border-bottom-width: 0; /* For last menu item within menu, remove bottom border */
}

.slidedoormenu li.lastitem a{
padding: 4px 0;/* 8px 0;  increase vertical border of last menu link by 2px (default is padding: 7px 0) to account for removed border width */
}
