

/* Place the image behind the menu*/
#bottom
{
position:relative;
bottom:0px;
z-index:-1;

/* for IE */
filter:alpha(opacity=30);
/* CSS3 standard */
opacity:0.3;
}

/* Place the image on the left of the swan*/
#left_bottom
{
position:relative;
bottom:0px;
z-index:-1;

/* for IE */
filter:alpha(opacity=40);
/* CSS3 standard */
opacity:0.4;
}

/* Place swan*/
#swan
{
position:relative;
bottom:0px;
z-index:-1;

/* for IE */
filter:alpha(opacity=70);
/* CSS3 standard */
opacity:0.7;

/* Define border property for the swan */
border: 1px solid #f06;
	border-width: 1px 1px;


}


/* Place the image on the left of the swan*/
#right_bottom
{
position:relative;
bottom:0px;
z-index:-1;

/* for IE */
filter:alpha(opacity=40);
/* CSS3 standard */
opacity:0.4;
}

/* Place the image at the top of the page*/
#top_bottom
{
position:relative;
bottom:0px;
z-index:-1;

/* for IE */
filter:alpha(opacity=30);
/* CSS3 standard */
opacity:0.3;
}


/* Horizontal menu properties */
ul
{
position:relative;
float:none;
width:100%;
margin:0.1em;
list-style-type:none;
padding:0.1em 0.6em;
}

ul li {
position:relative;
width:10em;
padding:1px;

}


/* This setting controls the properties of the block that appears in the sub-links */
a
{
position:relative;
float:none;
width:10em;
text-decoration:none;
color:#999999;
background-color:transparent;
padding:0.1em 0.6em;

}



/* Control the color of the text when you hover over it.  
You can also set the bottom border property using:
a:hover {
border-bottom:3px #d3d3e3 solid; color:#000000;
}
or the text "underline property
*/

a:hover {
/* deep green 
color:#1d8767; */

/* hot pink */
color:#ff0066; 


}



/* This sets properties of the sub-links that appear when hovering */
/*
#nav li li a {
	display: block;
	font-weight: normal;
	color: #060;
	padding: 0.2em 10px;
}
*/


/* *******This sets properties of the sub-links "jog-bars on either side that appear when hovering******* */
/*
#nav li li a:hover {
	padding: 0.2em 5px;
	border: 5px solid #7d6340;
	border-width: 0 5px;
}
*/





/* NO-This is the main menu panel settings - This is required for the horizontal menu layout*/
 li {
	float: left;
	position: relative;
	width: 10em;
	text-align: center;
	cursor: default;
	background-color: transparent;
/*	border:1px solid #999999;
	border-width: 1px 0;  */
}


/* NO- unknown */
/*
li#first {
	border-left-width: 1em;
}

li#last {
	border-right-width: 1em;
}
*/


/* This is the sub-menu control when hovered over */
li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	padding: 0.5em 0 1em 0;

}

li>ul {
	top: auto;
	left: auto;
}


/* NO- This setting adjusts the background for the block that appears when hovered over.  Color is usually set to "transparent" */
li li {
	display: block;
	float: none;
	background-color: transparent;
	border: 0;
}

li:hover ul, li.over ul {
	display: block;
}



/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */