@charset "utf-8";
/* CSS Document */


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.sexypanels{
list-style-type: none;
margin: 0;
padding: 0;
width: 145px; /* width of menu */
}

.sexypanels li{
border-bottom: 0px solid white; /* white border beneath each menu item */

}

.sexypanels li a{
background: url(../_imgs/tab.png) no-repeat right top; /*color of menu by default*/
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 11px;
display: block;
color: white;
width: auto;
height: 20px;
padding: 4px 2px 2px 2px;  /*Vertical (top/bottom) padding for each menu link */
text-indent: 8px;
text-decoration: none;
border-bottom: 0px solid black; /*bottom border of menu link. Should be equal or darker to link's bgcolor*/

}

.sexypanels li a:visited, .sexypanels li a:active{
color: white;
}

.sexypanels li a:hover{
background: url(../_imgs/tab_hover.png) no-repeat right top; /*color of menu onMouseover*/
color: #000000;
border-bottom: 0px solid black; /*bottom border of menu link during hover. Should be equal or darker to link's hover's bgcolor*/
}

#selected{
background: url(../_imgs/tab_hover.png) no-repeat right top; /*color of menu onMouseover*/
color: #000000;
border-bottom: 0px solid black; /*bottom border of menu link during hover. Should be equal or darker to link's hover's bgcolor*/
}




<!--[if IE]>

.sexypanels li a{ /* Menu link width value for IE */
width: 100%;

}

<![endif]-->



