/* Styling for logos at the top of each page. */

#logos {
	margin:  12px 20px 16px 0px;
	overflow: auto;
}

#baalogo {
     display: block;
	float:   left;
}

#baaglogo {
     display: block;
     float:   right;
}

/* Start multi_drop_menu styling */

div.multi_drop_menus *
{
	margin:0;
	padding:0;     /* removes margin and padding off all list elements */
}

/* SET YOUR PREFERENCES!!! */
/* set your menu's font and colors here - the MENU MECHANICS  follow below */

div.multi_drop_menus
{
	behavior:url(../../lib/js_tools/csshover.htc);/* you must link to the hover.htc file for this menu to work in IE6 and earlier */
	/* need a copy? go to http://www.xs4all.nl/~peterned/htc/csshover.htc - copy the code into a text file and save it as csshover.htc */
	font-family: arial, sans-serif;   	/* font family for menu */
	margin:0px 0 20px 0px;
	background-color:transparent;    	/* colors the div - div fills the parent element for a horizontal menu - set to background-color:transparent; if not needed */
}

div.multi_drop_menus > ul
{
 	border-left:1px solid #CCB;		/* creates dividing line to left of level 1's first menu item, revealing div color to left of menu */
	display:inline;						/* fixes margin-doubling bug in IE6 */
}

div.multi_drop_menus > ul > li
{
	background-color:#5480AC;         	/* background color of the level 1 menu items */
		     color:#FFFFFF;
	border-right:1px solid #CCB;      	/* creates dividing lines to right of each horiz level 1 menu item *//* set to 0px to remove */
}

div.multi_drop_menus > ul > li > a
{
	color:#FFFFFF;
	padding: 4px 15px;
	font-family: arial,helvetica,sans-serif;
	font-size: 90%;
	font-weight: bold;
}

div.multi_drop_menus li
{
	border-right:1px solid #CCB;      	/* creates dividing lines to right of each horiz level 1 menu item *//* set to 0px to remove */
}               				    	/* border-right is automatically removed from vert menu below  */


div.multi_drop_menus ul li ul li
{
	background-color:#EAEBD8;         	/* background color of the level 1 menu items */
		     color:green;
}

div.multi_drop_menus a
{
	/* sets the color of all menu type */
      /*creates space top/bottom and left/right respectively around each menu item's text - set vert height in ems   */
      padding: 4px 15px;
	font-family: arial,helvetica,sans-serif;
	font-size: 90%;
	font-weight: normal;
}

div.multi_drop_menus > ul > li:hover > a {
	color:#EDCAD4;                     	/* type color of a hovered menu choice */
      background-color:#5480AC;         
}

div.multi_drop_menus a:hover
{
	/*color:#EDCAD4;			*/	/* type color of a hovered menu choice */
	background-color: #81334B;
	color: #FFF;
}

div.multi_drop_menus ul li ul
{
	/* width:12em;*/   						/* sets the width of menu levels 2 - 4 */
	width:135px;
	position: relative;
	left:0;
	/* border: 1px solid #5480AC;*/
}

div.multi_drop_menus li li
{
 	border-bottom:1px solid #CCB;	/* lines between menu choices - set to 0px if not wanted */
 }

div.multi_drop_menus ul li ul li ul
{
	border-top:1px solid #CCB;	/* set the border-top of levels 3 and 4 of a horizontal menu - set to 0px to remove - for a vertical menu, you will set this for levels 1 - 4 below */
} 

/* Want transparency on your menus? add the class 'transparent' to the multi_drop_menus div */

div.multi_drop_menus.transparent ul ul li
{
 						/* note: the lower the value, the greater the transparency */
	opacity:0.9; 			/* CSS3 - range 0 to 1 */     
	-moz-opacity:0.9; 		/* Firefox- range 0 to 1  */
	filter:alpha(opacity=90);  	/* IE- range 0 to 100  */
}

/* END MENU PREFERENCES */
 
/* YOU ARE STONGLY ADVISED NOT TO MODIFY THE CODE THAT FOLLOWS : ) */
/* the menu mechanics start here */

div.multi_drop_menus
{
	float:left;
 	width:100%;
}

div.multi_drop_menus ul
{
	float:left; /* makes ul wrap li */
}

div.multi_drop_menus li
{
	float:left;  		/* causes the list to align horizontally instead of stack */
	list-style-type:none; 	/* removes the bullet off each list item */
	position:relative; 	/* positioning context for the absolutely positioned drop-down */
}

div.multi_drop_menus a
{
	display:block; 		/* makes link fill li so entire area is "hot" */
	text-decoration:none;  	/* removes the underlining from the links */
}

/* the horizontal menu ends here */

/* the drop-downs starts here */

div.multi_drop_menus ul li ul
{ 
	position:absolute;	/* positions the drop-down ul in relation to its relatively positioned li parent */
	border:0;         	/* stops inheritance from level 1 ul */
	margin-left:0px;        /* stops inheritance from level 1 ul */
}

div.multi_drop_menus ul li ul
{
	display:none;	/* conceals the drop-down when menu not hovered */
}

div.multi_drop_menus ul li:hover ul
{
	display:block; 	/* shows the drop-down when the menu is hovered */
	z-index:1000; 	/* Safari needs this to display menu on top of other page elements */
}

div.multi_drop_menus ul li ul li
{
	width:100%;
	padding:0; 		/* stops inheritance */
	border-left:0; 	/* stops inheritance */
	border-right:0; 	/* stops inheritance */
}

 /* END MENU MECHANICS */
 
/* inevitable hacks for IE6  and < */
* html div.multi_drop_menus
{
	z-index:1;	/* IE6 won't respect high z-index on abs-pos'd child (ul li ul) without this on its parent rel-pos'd element */
}			/* see http://www.last-child.com/conflicting-z-index-in-ie6/ */

* html div.multi_drop_menus ul li ul
{
	z-index:400; /*ensures menu is on top of other page elements */
}

* html div.multi_drop_menus a
{
	/* cannot find a way to get the top level 'a' to fill the unwidthed menu choices without drop-down in IE : ( */
}

* html div.multi_drop_menus.vertical a
{
	/* now hasLayout in IE - works on the vert menu as container has width */
	zoom:100%;
}

* html div.multi_drop_menus ul ul a  /* second level of horiz menu */
{
	zoom:100%;  /* now IE 'haslayout" - IE now makes background hot in horizontal menus */
}

  /* info on haslayout: 
  http://www.sitepoint.com/forums/showpost.php?p=2041209&postcount=24
  http://onhavinglayout.fwpf-webdesign.de/hack_management/
   */

/* END OF LIST-BASED MENU */