/*

THEME DETAILS - use global find/replace to change

Color Scheme:
-----------------------------------------------------
	0000FF - "Blue"
	D1A6E2 - light purple
	EDF5FA - very light blue

Menu Header Image/Color:
-----------------------------------------------------
	background-image: url(../images/panelheadbg.gif); *MUST BE 40px tall
	background-repeat: repeat-x;
	background-color: Blue;

*/

/* The horizonal width is determined by setting the width of the #menu div itself. The #menu div is also floated in order to "contain" it's floated descendants */
#menu
{
	width: 100%;	/* set width of menu */
	/*background: Purple;*/
	/*background-image: url(../images/bar_Header.jpg);*/
	float: left;
	position:relative;
	z-index:102;
}

/* Set the width onto the individual lists, <ul>'s, make them float side by side to make them fit into whatever horizontal space is available to them. */
#menu ul
{
	list-style: none;	/* remove bullets and list indents */
	margin: 0;
	padding: 0;
	width: 98px;
	float: left;
}

#menu ul .Level2_Only, #menu ul .Level2_First, #menu ul .Level2_Last, #menu ul .Level2
{
	list-style: none;	/* remove bullets and list indents */
	margin: 0;
	padding: 0;
	width: 280px;
	float: left;
}

/* [Next 2] Custom Style for Static Main Menu links */
.StaticMenuLink a
{
	font: bold 14px arial, helvetica, sans-serif;
	display: block;
	text-align: center;
	border-right: 1px solid #CCCCCC;
	/*border-width: 1px;*/
	/*border-style: solid;*/
	/*border-color: top right bottom left;*/
	/*border-color: #0000FF #EDF5FA #0000FF #0000FF;*/
	margin: 0;
	padding: 5px 3px;
	/*height: 26px;*/

	color: #FFFFFF;
	/*background: #0000FF;*/
	/*background-image: url(../images/menuheadbg.gif);*/
	/*text-transform: uppercase;*/
	text-decoration: none;
}

.StaticMenuLink a:hover
{
	color: #FFFFFF;
	background: #D1A6E2;
	/*border-color: top right bottom left;*/
	border-color: #D1A6E2 #EDF5FA #D1A6E2 #D1A6E2;
}

/* [Next 2] Custom Style for Static Main Menu right or last link */
.StaticMenuLinkRight a
{
	font: bold 14px arial, helvetica, sans-serif;
	display: block;
	text-align: center;
	border-right: 1px solid #EDF5FA;
	/*border-width: 1px;*/
	/*border-style: solid;*/
	/*border-color: top right bottom left;*/
	/*border-color: #0000FF #EDF5FA #0000FF #0000FF;*/
	margin: 0;
	padding: 5px 3px;
	/*height: 26px;*/

	color: #FFFFFF; /*Yellow font color - same color used on phone number in header = color: #FFF5B7; */
	background-color: #A50433;
	/*background-image: url(../images/menuheadbg.gif);*/
	/*text-transform: uppercase;*/
	text-decoration: none;
}

.StaticMenuLinkRight a:hover
{
	color: #FFFFFF;
	background: #D1A6E2;
	/*border-color: top right bottom left;*/
	border-color: #D1A6E2 #EDF5FA #D1A6E2 #D1A6E2;
}

/* [Next 6] Apply the formatting to the <a> anchors on Level1 and Level2. */
#menu .Level1 a
{
	font: bold 14px arial, helvetica, sans-serif;
	display: block;
	text-align: center;
	border-right: 1px solid #CCCCCC;
	/*border-width: 1px;*/
	/*border-style: solid;*/
	/*border-color: top right bottom left;*/
	/*border-color: #0000FF #EDF5FA #0000FF #0000FF;*/
	margin: 0;
	padding: 5px 3px;
	/*height: 26px;*/
}

#menu .Level2_Only a, #menu .Level2_First a, #menu .Level2_Last a, #menu .Level2 a
{
	font: bold 11px arial, helvetica, sans-serif;
	display: block;
	text-align: left;
	border-width: 1px;
	border-style: solid;
	/*border-color: top right bottom left;*/
	border-color: #FFFFFF #D1A6E2 #D1A6E2 #D1A6E2;
	margin: 0;
	padding: 2px 3px;
	/*height: 10px;*/
}

#menu .Level1 a
{
	color: #FFFFFF;
	/*background: #0000FF;*/
	/*background-image: url(../images/menuheadbg.gif);*/
	/*text-transform: uppercase;*/
	text-decoration: none;
}

#menu .Level2_Only a, #menu .Level2_First a, #menu .Level2_Last a, #menu .Level2 a
{
	color: #000000;
	background: #FFFFFF;
	text-transform: none;
	text-decoration: none;
}

#menu .Level1 a:hover
{
	color: #FFFFFF;
	background: #D1A6E2;
	/*border-color: top right bottom left;*/
	border-color: #D1A6E2 #EDF5FA #D1A6E2 #D1A6E2;
}

#menu .Level2_Only a:hover, #menu .Level2_First a:hover, #menu .Level2_Last a:hover, #menu .Level2 a:hover
{
	color: #FFFFFF;
	background: #D1A6E2;
}

/* [Next 3] Positioning the popout menus and dropdown menus */
#menu li
{
	position: relative;	/* The position: relative on the <li> element establish containing blocks for the descendant <ul> elements */
}

#menu ul ul
{
	position: absolute;	/* All secondary levels and deeper are given position: aboslute; and a high z-index in order to make them appear, drop down above following content. */
	z-index: 500;
}

#menu ul ul ul
{
	position: absolute;
	top: 0;	/* The third level and deeper lists are the ones we want to move so "offset" positioning coordinates only required to be input onto them. */
	left: 100%;
}

/* [Next 2] Hiding and revealing using :hover (Note: Does not work with IE.  IE fix requires using .htc behavior and additional styles in page header) */
div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul,
div#menu ul ul ul li:hover ul ul	/* line added by BGalbraith for fourth level */
{
	display: none;	
}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul,
div#menu ul ul ul ul li:hover ul	/* line added by BGalbraith for fourth level */
{
	display: block;
}
