@charset "UTF-8";
/* CSS Document */

/* ssMenu.css */
/* Structure and Design for the Menu as well as Structure for Quicklinks */
/* "Suckerfish Dropdowns" Menu Design - help from website http://www.alistapart.com/articles/dropdowns/ */

/* Navigation Menu */
/*------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------*/

/* Menu Links */
#menubox a {
	font-family: Georgia, Garamond, "Times New Roman", serif;
	font-size: 16px; /* 15 */
	font-weight: bold;
	color: #333333;
	text-decoration: none;
}

/* Element to Define Current Menu Section (Current Location Under a Certain Menu) */
#navigation.home #menu a#home,
#navigation.contact #menu a#contact,
#navigation.info #menu a#info,
#navigation.volunteer #menu a#volunteer,
#navigation.news #menu a#news,
#navigation.media #menu a#media,
#navigation.donate #menu a#donate {
	text-decoration: underline;
}

/* Hover Element to Define Current Menu Section */
#navigation.home #menu a:hover#home,
#navigation.contact #menu a:hover#contact,
#navigation.info #menu a:hover#info,
#navigation.volunteer #menu a:hover#volunteer,
#navigation.news #menu a:hover#news,
#navigation.media #menu a:hover#media,
#navigation.donate #menu a:hover#donate {
	color: #CC0000;
}

/* Top Row - Unordered List Element */
#menubox ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Top Row - Unordered List Link Hover Action */
#menubox ul a:hover {
	color: #CC0000;
}

/* Top Row - List Item Element */
#menubox li {
	float: left;
	position: relative;
	padding: 7px;
	width: auto;
	height: 12px;
	background-color: #fff;
}

/* Menu Dropdown - Unordered List for List Item */
/* Different for IE */
#menubox li > ul {
	display: none;
	position: absolute;
	z-index: 1000;
	width: auto;
	margin-left: -10px;
	top: auto;
	left: 9px;
	background-color: #FCFCFC;
}

/* Menu Dropdown - Unordered List for List Item */
/* Different for IE */
#menubox li > ul > li {
	background-color: #FCFCFC;
}

/* Menu Dropdown - Hover Element to Make Dropdown List Appear & li.over IE Fix */
#menubox li:hover ul, li.over ul{ display: block; }

