/*******************************************************************
 * Name:			   CssMenuStyle.css
 * Description:   stylesheet that contains styles for the menus
 *
  * Notes:		   Do not set font-sizes, e.g here; use CssFontSize.css
 *					   instead 
 *
 * *****************************************************************
 * Current site:	THIS IS THE DEFAULT FOR PMPS SITES
 *******************************************************************/ 

/* MENU MAIN APPEARANCE */
.MenuContainer
{
}
.MenuSubMenuContainer
{
   margin-left:5px;
   
}

/* MENU ITEMS (Hyperlinks) */
A.MenuLinkRegular
{
   display: block;
   padding-left: 5px; 
   padding-top: 5px;
   padding-bottom: 5px;   
   color: #8B96A5;
   font-family: Arial Narrow;
   font-size: 120%;
   font-style : normal;
   font-weight: bold;
   text-decoration: none;   

}
A.MenuLinkRegular:link,A.MenuLinkRegular:visited,A.MenuLinkRegular:active
{
   color: #8B96A5;
   /* color: #005033; */
   text-decoration: none;
}
A.MenuLinkRegular:hover
{
   color: #8B96A5; 
   /* color: #339966; */
   text-decoration: none;
}

A.MenuLinkActive
{
   display: block;   
   padding-left: 5px; 
   padding-top: 5px;
   padding-bottom: 5px;

   color: #4176C2;
   font-family: Arial Narrow;
   font-weight: bold ;
   font-size: 130%;
   text-decoration: none;
}
A.MenuLinkActive:link,A.MenuLinkActive:visited,A.MenuLinkActive:active,A.MenuLinkActive:hover
{
   text-decoration: none;   
}

.MenuItemBullet
{   
   list-style-type:square;
   list-style-position:inside;
}
