/* CSS Document */

/************ LEFT LINKS HOVER - GREY **************/

#linksGrey ul {
        list-style-type: none;
        width: 210px;
} 

#linksGrey li {
        /*border: 1px dotted #999;*/
        border-width: 1px 0;
        margin: 2px 0;
}

#linksGrey li a { 
        color: #333;
        display: block;
        font: bold 95% Arial, Helvetica, sans-serif;
        padding: 8px;
        text-decoration: none;
        background: #D6D6D6;

}

 * html #linksGrey li a {  /* make hover effect work in IE */
        background: #D6D6D6;
		width: 210px;
}

#linksGrey li a:hover {
        color: #848181;
        background: #E5E5E5; 
}

#linksGrey a em { 
        color: #fff;
        display: block;
        font: normal 80% Verdana, Helvetica, sans-serif;
        line-height: 125%; 
}

#linksGrey a span {
        color: #125F15;
        font: normal 70% Verdana, Helvetica, sans-serif;
        line-height: 150%;
}


/************ LEFT LINKS HOVER - DARK GREY **************/

#linksDarkgrey ul {
        list-style-type: none;
        width: 210px;
} 

#linksDarkgrey li {
        /*border: 1px dotted #999;*/
        border-width: 1px 0;
        margin: 2px 0;
}

#linksDarkgrey li a { 
        color: #EAE8E8;
        display: block;
        font: bold 95% Arial, Helvetica, sans-serif;
        padding: 8px;
        text-decoration: none;
        background: #333;
}

 * html #linksDarkgrey li a {  /* make hover effect work in IE */
        background: #333;
		width: 210px;
}

#linksDarkgrey li a:hover {
        color: #fff;
        background: #464747; 
}

#linksDarkgrey a em { 
        color: #fff;
        display: block;
        font: normal 80% Verdana, Helvetica, sans-serif;
        line-height: 125%; 
}

#linksDarkgrey a span {
        color: #125F15;
        font: normal 70% Verdana, Helvetica, sans-serif;
        line-height: 150%;
}

/*********************************/