/**************************************************************************************
   Developed for: Allegiance
   Developed by:  Kevin Scott
   Development date: 06/09/2006
   Description:  This CSS file is responsible for providing the graphics for a dynamic 
   		 drop down list for buttons.
   		 #Atribute is ID
		 .Atribute is Class
   Modified date: 10/17/2006
**************************************************************************************/





/****************
   Global Styles.
****************/
a
{
   font-family: Garamond, "Trebuchet MS";
   font-size: 12px;
   text-decoration: none;
   margin: 0px;
}


/************************
   Items in the Menu Bar.
************************/
div.menuBar
{
   position: relative;
   float: right;
   margin: 0 0 0 0;
   padding: 0 0 4px 0;
   border-style: none;
   text-align:right;
   
}

div.menuBar a
{
   background-color: #EEEEEE;
   padding: 7px;  
   color: #1A3664;
   margin-left: 3px;
   margin-right: 3px;  
}

div.menuBar a:hover
{
	background-color: #666666;
	color: #FFFFFF;
}

div.menuBar a.dropDown
{
	background-image: url(../images/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

div.menuBar a.dropDown:hover
{
	background-image: url(../images/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*************************
   Items in the Menu List.
*************************/
div.menuList 
{
   position: absolute; 
   visibility: hidden;
   padding: 0px;
}

div.menuList a
{
   display: block;
   background-color: #EEEEEE;
   color: #1A3664;
   width: 100%;
   padding: 5px;  
}
div.menuList a:hover
{
	background-color: #666666;
	color: #FFFFFF;
}


