/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.

Modified 2010 by Christian Athletic Association.
=================================================================== */

.menu {
		position: absolute;
		top: 235px;
		left: 10px;
		width: 920px;
		height: 26px;
		margin-top:50px;
		margin-bottom:10px;
    z-index:100;
		float:left;
	}

.menu ul {
		margin: 0px;
		padding: 0px;
		list-style-type: none;
		width: 920px;
		height: 26px;
	}

.menu ul li {
		float: left;
		width: 85px;
		height: 26px;
		font: 12px/26px Gerogia, Century Gothic, Helvetica, Arial, sans-serif;
		font-weight: bold;
		color: #ffffff;
		background: url("images/header_menu.gif") no-repeat;
		text-align: center;
	}

.menu ul li a {
		color: #ffffff;
		text-decoration: none;
		display: block;
	}

.menu ul li a:hover {
		color: #4a97bb;
		background: url("images/header_menu_hover.gif") no-repeat;
	}

  		/* Header - Menu - Active */

.menu ul li a.current_parent,
.menu ul li a.current_page_link {
			background: url("images/header_menu_hover.gif") no-repeat;
		}
.menu ul ul li a.current_page_link {
			background: url("images/header_submenu_hover.gif") no-repeat;
		}
.menu ul ul ul li a.current_page_link {
			background: url("images/header_submenu_hover.gif") no-repeat;
		}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul ul li {width:85px; font: 10px/26px Gerogia, Century Gothic, Helvetica, Arial, sans-serif; font-weight: normal;}

/* style the second level links */
.menu ul ul a {background:url("images/header_submenu.gif") no-repeat; height:26px; width:85px;}
.menu ul ul a:hover {background:url("images/header_submenu_hover.gif") no-repeat; height:26px; width:85px;}

/* style the third level links */
.menu ul ul ul a {background:url("images/header_submenu.gif") no-repeat; height:26px; width:85px;}
.menu ul ul ul a:hover {background:url("images/header_submenu_hover.gif") no-repeat; height:26px; width:85px;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden; position:relative; height:0; top:0px; left:0; width:85px;}

/* position the third level flyout menu */
.menu ul ul ul {position:relative; left:85px; top:-26px; width:85px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-85px;}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {visibility:visible;}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul { visibility:visible;}

