/* End */

#menuv		                                 /* position, size, and font of  menu */
	{
	z-index: 10;
	width: 9em;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: .9em;
	font-family: "Lucida Grande", "Arial", sans-serif;
	color: #FFFFFF;
	text-transform: capitalize;
	}

#menuv a
	{
	width: 100%;
	display:block;		/* adds bottom border */
	white-space:nowrap;
	padding: 0.5em;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: #B18CFF;
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
		/*filter: alpha(opacity=80);
opacity: 0.8;*/

	}

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: #FFFFFF;
	font-weight: normal;
	opacity: 1;
	border-left-width: 2px;
	border-left-style: dotted;
	border-left-color: #9966ff;
	text-decoration: none;
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 8em;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 9em;			              /* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#menuv ul ul, div#menuv ul ul ul, div#menuv ul li:hover ul ul, div#menuv ul li:hover ul ul ul
	{
	display: none;
	}

div#menuv ul li:hover ul, div#menuv ul ul li:hover ul, div#menuv ul ul ul li:hover ul
	{
	display: block;
/*			filter: alpha(opacity=80);
opacity: 0.8;*/
	}











/* right menu*****************************************************************/

#menuvR		                                 /* position, size, and font of  menu */
	{
	z-index: 10;
	width: 9em;						          /* [1] width of menu item (i.e., box) */
	text-align: right;
	font-size: .9em;
	font-family: "Lucida Grande", "Arial", sans-serif;
	color: #FFFFFF;
	float: right;
	text-transform: capitalize;
	}

#menuvR a
	{
	width: 100%;
	display:block;
	padding-top: 0.5em;						/* expands menu box vertically*/
	padding-bottom: 0.5em;		/* adds bottom border */
	white-space:nowrap;
	padding-left: 0em;
	padding-right: 0.5em;
	}

#menuvR a, #menuvR a:visited				/* all menus at rest */
	{
	color: #B18CFF;
	text-decoration:none;				       /* removes underlines from links */
	}

#menuvR a.parent, #menuvR a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
/*			filter: alpha(opacity=60);
opacity: 0.6;*/
	}

#menuvR a:hover				             /* all menus on mouse-over */
	{
	color: #FFFFFF;
	font-weight: bold;
	opacity: 1;
	border-left-width: 0px;
	border-left-style: dotted;
	border-left-color: #9966ff;
	text-decoration: none;
	border-right-width: 2px;
	border-right-style: dotted;
	border-right-color: #9966ff;
	}
	
#menuvR li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuvR ul li
	{
	position:relative;
	}

#menuvR li ul
	{
	position: absolute;
	top: 0;
	left: -9em;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	}

div#menuvR ul, #menuvR ul ul, div#menuvR ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 6em;			              /* era 9em antes. width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#menuvR ul ul, div#menuvR ul ul ul, div#menuvR ul li:hover ul ul, div#menuvR ul li:hover ul ul ul
	{
	display: none;
	}

div#menuvR ul li:hover ul, div#menuvR ul ul li:hover ul, div#menuvR ul ul ul li:hover ul
	{
	display: block;
		
/*			filter: alpha(opacity=60);
opacity: 0.6
;*/
	}
	
