/* Start of CMSMS style sheet 'PAHmenu2CSS' */
/* Vertical menu for the CMS CSS Menu Module */
/* by Alexander Endresen and mark and Nuno */
/* The wrapper determines the width of the menu elements */
#menuwrapper {
/* just smaller than it's containing div */
	width: 95%;
	margin-left: 0px;
/* room at bottom */
	margin-bottom: 10px;
        margin-top: 50px;
        line-height: 1em;
}
* html #menuwrapper {
        padding-top: 50px;
}
/* Unless you know what you do, do not touch this */
#primary-nav, #primary-nav ul {
/* remove any default bullets */
	list-style: none;
}

ul#primary-nav li {

}

/* Styling the basic appearance of the menu "a" elements */
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: .8em;
/* make sure we keep the font normal */
	font-weight: bold;
/* set default link colors */
	color: #4f2459;
/* pushes li 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: 4px;
        margin-left: 10px;
/* removes underline from default link setting */
	text-decoration: none;
        display: block;
}

* html ul#primary-nav li a{
        padding: 0;
}
* html ul#primary-nav li ul{
        margin-top: 8px;
}

ul#primary-nav li li {
        margin-left: 30px;
}

ul#primary-nav li a:hover {
        text-decoration: underline;
}

ul#primary-nav li li a.menuactive {
	color: white;
}

/* Fixes IE7 bug */
#primary-nav li, #primary-nav li.menuparent {
	min-height: 1em;
}

/* End of 'PAHmenu2CSS' */

