﻿.StaticMenuItemStyle, .StaticMenuItemStyle a
{
   /* defines look of the main items */ 
   color:White;
   font-size:medium;
   text-decoration:none;
   padding-left:5px;
   padding-right:5px;
   padding-bottom:10px;
   padding-top:4px;
   margin-top:10px;
   margin-bottom:8px;
}

.StaticSelectedStyle
{
  /* defines look of active items */      
   color:#CC6699;
  
}

.StaticHoverStyle
{
     /* defines look of hover items */ 
   
   color:#CC6699;
   background-color:#cc0000;
}

/* This causes menu not to work in Safari */
 .DynamicMenuStyle
{
    
     z-index:1000; 
}  


.DynamicMenuItemStyle
{
     /* defines sub menu items */ 
    color:White;
    background-color:#CC0000;
    border:outset 1px #ffffff;
    padding:3px;
    /* this is critical for IE8 or else the menus will be blank */
    
}

.DynamicHoverStyle
{
     /* defines hover style of sub menu items */ 
     background-color:#b10000;
     color:White;
}

.DynamicHoverStyle a 
{
    /* affects links style in the sub menu */
    text-decoration:none;
}
