/* Don't steal this without asking me.  I mean it. */
/* Copyright 2007, Craig D. Wilding                */
/* craig@nexusarts.com                             */

* html body { 
	behavior:url("/javascript/csshover.htc");
}
/*Container for the menu*/
#menuwrapper {
	display:block;
	background-color:#fff;
	border-top: 1px solid #C22038;
	border-bottom: 2px solid #C22038;
	background-image: url(/images/v3/menu_bkgd.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	margin: 0;
	padding: 0;
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearfloats {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*The root and Sub-Level Unordered Lists*/
#menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 16px;
	background-color:#fff;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}

#menu ul {
	padding: 0px 4px 4px 4px;
	background-color: #0Aa;
	/*border: solid 1px #0A0;*/
}
/*Root-Level Links*/
#menu a {
	display: block;
	padding: 0 8px 2px 8px;
	color: #000000;
	text-decoration: none;
	text-align: left;
	width: auto; /* IE hack to get the entire area to be hyperlinked */

	/*background-color:#66FF33;*/
}
/*Class assigned to those Root-Level links
that have associated Sub-Menus*/
#menu a.root {
	display: block;
	padding-left:14px;
	background-image: url(/images/v3/menu_bkgd.gif);
	background-repeat: no-repeat;
	background-position: 3px 2px;
/*	width:108px;*/
}

/*The Root-Level list items. Floating allows
them to appear horizontally.
*/
#menu li {
	float:left;
/*	float:right;*/
	display:block;
	margin:0;
	padding:0;
	height: 100%;
}
#menu li#title {
	font-style:italic;
	padding: 0 16px 0 10px;
	margin:0;
}
* html #menu a.root { 
/*	width:108px;*/
	/*width: expression((offsetWidth > 100) ? "auto" : "100px");*/
}

/*Sets width for Sub-Menu List Items
"menubreak" class is used for styling
an element without a link
*/
#menu ul li,
#menu ul li .menubreak {
	width: 190px;
	text-align: left;
	color: #FFFFFF;
	background-color: #C22038;
	background-color: transparent;
	border-top: 1px solid #AD1D32;
}
#menu ul li a,
#menu ul li .menubreak {
	margin: 0;
	display: block; /* corrects for the top-level "inline" that IE needs to get the hyperlinks the full width. */
	padding: 4px 6px;
	border: 0;
	text-align: left;
}
#menu ul li#end {
	padding: 0;
	margin: 0;
	height: 20px;
	border: 0;
}
/* get rid of annoying image borders
and padding
*/
#menu .imgwrapper img {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
}
/* Must devise a trick for using margin,
padding, and border attributes in 
different browsers.  Can't get IE to
make images clickable */
#menu .imgwrapper {
	float:right;
	margin: 3px 0 1px 1px;
	padding: 1px;
	background: #fff;
	border: 1px solid #000;
}
/* Sub-Menu Unordered List. Width must match
Sub-Munu LI rule (#menu ul li). Positioned
Absolutely to allow it to appear below root.
Set to display none to hide it until root is
moused over. Background Color must be set.
*/
#menu li ul {
	width: 190px;
	position: absolute;
	display: none;
	background-color: transparent;
	border: 2px solid #C22038;
	border-top: none;
/*	margin: 0 0 0 -66px;*/
	margin: 0 0 0 -6px;
	font-weight: normal;
	font-size: 10px;
	line-height:11px;
	/*background-image: url(/images/v3/menu_transp.gif);*/
	background-repeat: repeat;
	background-color:#fff;
	z-index: 5000; /* careful, need to overlay on top of EVERYTHING */
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
*/
#menu li:hover a,
#menu a:focus,
#menu a:active {
	color: #FFF;
	background-color: #C22038;
	background-position: 3px -28px;
/*	background-image:*/
}

/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over.
*/
#menu li:hover ul,
#menu li ul#test {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over.
*/
#menu li:hover ul a {
	color: #FFFFFF;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers.
*/
#menu ul a:hover {
	background-color: #DF3C54;
	color: #000000 !important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width. */
/*#menu li {width: auto;}*/
#menu li ul li {
	position:relative;
}


#menu li ul li.hyperlink a {
	padding-right:3em;
}
#menu li ul li.hyperlink a.rsvp {
	position:absolute;
	color:#000;
	top:0;
	right:0;
	height:auto;
	padding:0 3px;
	margin:0;
	font-size:10px;
	line-height:13px;
	border: 1px #AD1D32;
	border-style:none solid solid solid;
	background-color:#FFCC00;
	font-weight:bold;
}
#menu li ul li.hyperlink a.rsvp:hover {
	color:#000 !important;
	background-color:#aaa;
}

