/* Start of CMSMS style sheet 'MainMenu' */
/********************MENU*********************/
/* hack for IE6 */
* html div#menu_horiz {
/* hide ie/mac \*/
	height: 1%;
/* end hide */
}

div#mainmenu ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0px;
        padding: 0px;
}
/* menu list items */
div#mainmenu li {
/* makes the list horizontal */
	float: left;
/* remove any default bullets */
	list-style: none;
/* still no margin */
	margin-right: 2px;
        width: 147px;
        height: 31px;
        padding: 0px;
        background-image: url(images/ccgp/tab_noactive.gif);
        background-repeat: no-repeat;
}

/* the links, that is each list item */
div#mainmenu a {
/* 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: 8px 10px 10px 0px;
/* still no margin */
	margin: 0px;
/* removes default underline */
	text-decoration: none;
/* default link color */
	color: #717171;
/* makes it hold a shape, IE has problems with this, fixed above */
	display: block;
}
/* hover state for links */
div#mainmenu li a:hover {;
/* set your image here, dark grey image with white text set above*/
	background-image: url(images/ccgp/tab_active.gif);
        background-repeat: no-repeat;
        color: #fff;
}
div#mainmenu a span {
/* compensates for no left padding on the "a" */
	padding-left: 10px;
}
div#mainmenu li.parent a span {
}

div#mainmenu li.parent a:hover span {
}

div#mainmenu li.menuactive a span {
	color: #fff;
}

/* active parent, that is the first level parent of a child page that is the current page */
div#mainmenu li.menuactive, div#mainmenu li.menuactive a:hover {
/* set your image here, light image with #000/black text set below*/
	background:  url(images/ccgp/tab_active.gif);
        background-repeat: no-repeat;
	color: #fff;
        font-weight: bold;
}


div#mainmenu li.currentpage {
	background:  url(images/ccgp/tab_active.gif);
        background-repeat: no-repeat;
	color: #fff;
}

div#mainmenu h3{
        font-weight: bold;
        font-size: 12px;
        margin: 0px;
        padding: 8px 10px 10px 10px;
}
/* End of 'MainMenu' */

