/* ulhover.css 
**
**   The CSS rules in this file create the list item (LI) element
**   hover effects used in the Home & Services pages of
**   TheSoftwareMaster.com
**
**    paul@thesoftwaremaster.com  2009.12.22 16.19.00 EST
*/
ul 
{
    margin: 0em 2em 0em 4em;
    padding:0px;
    font-size: 12.1px; 
    line-height: 16px; 
/*    border:1px cyan solid; */
}
ul li
{
    font-size: 12.1px; 
    margin:1px;
    padding:3px 0px 3px 0px;
    border:1px solid transparent;    
    vertical-align:middle;
    white-space:nowrap;
    text-align:left;
}
ul li:hover
{
    font-size: 12.1px; 
    background-color:rgb(222,255,255);
    border:1px solid transparent;    
}

