/* Start of CMSMS style sheet 'Canvas Navigation Footer Styles' */
#menu_vert {
        margin: 0;
	padding: 0;
}

.clearb {
/* needed for some browsers */
	clear: both;
}

#menuwrapper {
/* set the background color for the menu here */
	background-color: #000;
/* IE6 Hack */
	height: 1%;
	width: auto;
	margin: 0;
	padding: 0;
}

ul#footer-nav, ul#footer-nav ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul#footer-nav {
/* keeps the first menu item off the left side */
        margin-left: 70px;
}

ul#footer-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
/* same size but different color for each border */
	border-top: 1px solid #36362A;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	border-left: 1px solid #000;
}

ul#footer-nav li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0;
	padding: 0px;
}

/* set the "a" link look here */
ul#footer-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 75%;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #A13904;
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 5px 30px;
	display: block;
/* sets no underline on links */
	text-decoration: none;
}

ul#footer-nav li a:hover {
/* kind of obvious */
	background-color: #DADAA2;
        color: #A13904;
        text-decoration: underline;
}

ul#footer-nav li a.menuactive {
	color: #A13904;
/* bold to set it off from non active */
        text-decoration: underline
}

ul#footer-nav li a.menuactive:hover {
	color: #A13904;
}

/* Styling the appearance of menu items on hover */
#footer-nav li:hover,
#footer-nav li.menuh,
#footer-nav li.menuparenth,
#footer-nav li.menuactiveh {
/* set your image here, dark grey image */
        background-color: #DADAA2;
}
/* End of 'Canvas Navigation Footer Styles' */

