/* Start of CMSMS style sheet 'cpen SimpleVert Neutral' */
/********************
CONTENT STYLING
*********************/

/*
default link styles
*/

/* set all links to have underline and bluish color */
a,
a:link 
a:active
{
	text-decoration: underline;
	/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
	color: #AA9E16;
}

a:visited
{
	text-decoration: underline;
	background-color: inherit;
	color: #D5C72C;
	/* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover
{
	text-decoration: none;
	background-color: inherit;
	color: #395B7D;
}

div#content h2
{
	color: #54544D;
	font-size: 1.3em;
	text-align: left;
	line-height: 2em;
}
p
{
	font-size: 1em;
	margin: 0 0 1.5em 0;
	/* some air around p elements */
	line-height: 1.4em;
	padding: 0;
}

/* HEADINGS */


div#content h3
{
	font-size: 1.2em;
	line-height: 1.75em;
	margin: 0 0 0.5em 0;
}

div#content h4
{
	color: #333;
	font-size: 1.1em;
	line-height: 1.5em;
	margin: 0 0 0.25em 0;
}

div#content h5
{
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
font-weight: normal;
}

div#content h6
{
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
ont-weight: normal;
}

/* END HEADINGS */

/********************
MENU
*********************/

#menu_vert
{
	padding-left: 0;
	margin-left: 0em;
	color: white;
	background-color: #E5E6E1;
	margin-bottom: 2em;
}

h3.hdgbox
{
	text-transform: uppercase;
	padding: .3em 0 .3em 1.5em;
	font-size: 0.9em;
	color: white;
	background-color: #9C9C8C;
	font-weight: normal;
}

/* second level has some padding to have it stand out */
div#menu_vert ul ul
{
	padding-bottom: 0.1em;
	margin: 0;
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul
{
	padding-bottom: 0.1em;
	margin: 0;
}

/* menu li block */
#menu_vert li
{
	list-style: none;
	margin: 0;
	display: block;
}

#menu_vert ul ul li { text-transform: capitalize; }

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; }
* html #menu_vert li hr { height: 1%; }

/** end fix **/
/* first level links */
div#menu_vert a
{
	display: block;
	/* IE has problems with this, fixed above */
	padding: 0.8em 0.5em;
	/* some air for it */
	color: #18507C;
	/* this will be link color for all levels */
	min-height: 1em;
	/* Fixes IE7 whitespace bug */
	text-decoration: none;
	/* no underline for links */
	border-left: 10px solid #BABAAB;
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a
{
	font-size: 90%;
	padding: 0.5em 0 0.5em 1.5em;
	border-bottom: 1px dotted #ACAC9C;
	color: #000;
}

/* third level links, more padding */
div#menu_vert ul ul ul a
{
	padding: 0.5em 0 0.5em 2.5em;
	border-bottom: 1px dotted #ACAC9C;
	background-color: #D0D1C5;
	color: #000;
}

/* hover state for all links */
div#menu_vert a:hover
{
	background-color: #74766E;
	border-left: 10px solid #54544D;
	color: white;
}

div#menu_vert a.activeparent:hover
{
	background-color: #74766E;
	border-left: 10px solid #54544D;
	color: white;
}

div#menu_vert ul ul li a.activeparent
{
	background-color: #828275;
	color: #fff;
	border-left: 10px solid #9C9C8C;
}

/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/

div#menu_vert ul h3
{
	background-color: #4E4E46;
	display: block;
	padding: 0.5em 0 0.5em 1.5em;
	/* some air for it */
	color: #fff;
	/* this will be link color for all levels */
	font-size: 1em;
	/* instead of the normal font size for <h3> */
	margin: 0;
	/* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/

div#menu_vert ul ul h3
{
	font-size: 90%;
	padding: 0.5em 0 0.5em 1.5em;
	background-color: #4E4E46;
	color: #fff;
	border-left: 10px solid #9C9C8C;
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3
{
	padding: 0.5em 0 0.5em 2.5em;
	border-left: 10px solid #9C9C8C;
	background-color: #4E4E46;
}

/* section header */
div#menu_vert li.sectionheader
{
	border-right: none;
	font-size: 130%;
	font-weight: bold;
	padding: 1.5em 0 0.8em 0;
	background-color: #fff;
	line-height: 1em;
	margin: 0;
	text-align: center;
}

/* separator */
div#menu_vert li.separator
{
	height: 1px !important;
	margin-top: -1px;
	margin-bottom: 0;
	padding: 2px 0 2px 0;
	background-color: #000;
	overflow: hidden !important;
	line-height: 1px !important;
	font-size: 1px;
	/* for ie */
}

div#menu_vert li.separator hr
{
	display: none;
	/* this is for accessibility */
}

/* End of 'cpen SimpleVert Neutral' */

