/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{float:left;height:1%;}
* html #menuv ul li a{height:1%;}
/* End */
.scm #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	margin-top: 75px;
	height: 500px;
	background-color: #E9E9E9;
	background-image: url(../assets/IMG006-r.jpg);
	padding-top: 5px;
	padding-right: 2px;
	padding-left: 2px;
}
	
#menuv-container {
	z-index: 300;
	width: 230px;
	float: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 10px;
	margin-left: 10px;
}
#menuv		/* position, size, and font of  menu */
	{
	width: 8.5em;						/* [1] width of menu item (i.e., box) */
	text-align: center;
	font-size: 0.9em;
	font-family: helvetica, arial, geneva, sans-serif;
	height: auto;
	float: left;
	margin-right: 5px;
	margin-left: 5px;
	}
/* CSS Popout menuv */
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#menuv a
	{
	width: 100%;
	display:block;
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-bottom: 0.2em;
	border-bottom:1px solid #555;		/* adds bottom border */
	white-space:nowrap;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: #FFF;
	text-decoration:none;
	z-index: 300;
	font-weight: bold;
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	margin-right: 15px;
	margin-left: 5px;
	z-index: 300;
	}

#menuv a:hover				/* all menus on mouse-over */
	{
	color: #FFF;
	background-color: #DB9A3E;
	z-index: 300;
	}
		
#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: 8em;			/* 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;
	}
