/**
 * Navigation
 */
	ul#navigation {
		clear: both;
		width: 758px;				/* 760 - 2 for 1px gutter on each side */
		height: 51px;
		background-image: url(../images/navigation_bg.gif);
		background-repeat: repeat-x;
		margin: 0px 0px 0px 1px;
	}

	ul#navigation li {
		float: left;
		display: block;
		height: 25px; 
		background-color: #a2cb22;
		text-align: center;
		border-right: 1px solid #fff;
	}

	ul#navigation li#contact {
		border-right: none;
	}

	ul#navigation li a {
		float: left;
		height: 25px !important;
		height: 20px;
		padding-top: 5px;
		font-size: 11px;
		color: #fff;
		display: block;
		text-decoration: none;
		text-transform: uppercase;
		border-bottom: none;
	}
	/* hide from IE 6 */
	ul#navigation > li a {
		padding-top: 6px;
	}

	ul#navigation li:hover a,
	ul#navigation li.over a,
	ul#navigation li.active a,
	ul#navigation li a:hover {
		background-color: #1f88af;
		border-bottom: 1px solid #1f88af;
	}

	ul#navigation li#contact.active a,
	ul#navigation li#contact a:hover,
	ul#navigation li#contact.over a {
		border-right: none;
	}

	ul#navigation li#home a { width: 103px; }
	ul#navigation li#about a { width: 114px; }
	ul#navigation li#classes a { width: 135px; }
	ul#navigation li#programs a { width: 147px; }
	ul#navigation li#programs ul li a { width: auto; }
	ul#navigation li#resources a { width: 125px; }
	ul#navigation li#contact a { width: 129px; }

	/**
	 * sub navigation
	 */
	ul#navigation ul.sub_nav {
		position: absolute; 
		top: 132px !important;
		top: 133px;
		left: 0px;
		width: 738px;				/* 760 - 2 for 1px gutter on each side */
		height: 25px;
		display: none;
		overflow: hidden;
		background-color: #1F88AF;
		margin-left: 20px;
	}

	ul#navigation li.over ul.sub_nav {
		display: block;
		z-index: 10;
	}

	ul#navigation ul.sub_nav li {
		float: left;
		color: #fff;
		background-color: #1F88AF;
		float: left;
		height: auto;
		text-align: center;
		border-right: none;
	}


	ul#navigation ul.sub_nav li.seperator {
		font-size: 80%;
		margin: 0px 7px;
		position: relative;
		top: 5px;
	}

	ul#navigation ul.sub_nav li a {
		width: auto;
		height: 10px;
		font-size: 11px;
		color: #fff;
		background-color: #1F88AF;
		display: inline;
		text-decoration: none;
		text-transform: none;
		position: relative;
		top: 5px;
		display: inline;
		padding: 0px;
	}

	/* cancel style inheritance */
	ul#navigation li#home ul.sub_nav a,
	ul#navigation li#about ul.sub_nav a,
	ul#navigation li#classes ul.sub_nav a,
	ul#navigation li#centers ul.sub_nav a,
	ul#navigation li#services ul.sub_nav a,
	ul#navigation li#resources ul.sub_nav a { width: auto; }

	ul#navigation ul.sub_nav li.active a, 
	ul#navigation ul.sub_nav a:hover {
		text-decoration: underline;
	}


	/**
	 * Specialized case for the resources link (last nav item far right)
	 * It is a bit hard to mouse over to the left side of the screen
	 * for these links.
	 * Use this style to float the last nav item's (resources) sub nav
	 * to the right side for easier selection
	ul#navigation li#resources ul.sub_nav {
		margin-left: 0px;
		margin-right: 20px;
	}
	ul#navigation li#resources ul.sub_nav li {
		float: right;
	}
	 */
