/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */


/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {
  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */

/* Start of CMSMS style sheet 'Minimal Layout' */
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
	text-align: left;
	font-family: "Lucida Grande", Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.65em;
	margin: 1em;
}
div {
	font-size: 1em;
}
img {
   border: 0;
}
a,
a:link 
a:active {
   text-decoration: none;
   border-bottom: dotted 1px;
   background-color: none; 
   color: #FFF; 
}

a:visited {
	text-decoration: none;
	background-color: none;
	color: #FFF;
}
a:hover {
   text-decoration: none;
   border-bottom: solid 1px;
   background-color: none;
}

img a {
	border: none;
}

/*****************
basic layout 
*****************/
body {
   color: #FFFFFF;
   margin:1em; /* gives some air for the pagewrapper */
}

div#header {
	height: 92px;
	margin-bottom: 50px;
}

div#header h1 a {
	display: block; 
	height: 92px;             /* adjust according your image size */
	text-indent: -999em;  /* this hides the text */
	text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
	border: none;
}

div#menu {
	width: 18%;
	float: left;
}

div#main {
	margin-left: 20%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
	margin-right: 20%; /* and some air on the right */
	padding-right: 10%;
	clear: none;
}
div#main ul {
   margin: 0 0 0 1.25em;
}
div#main ul li {
   padding: 0 0 0 0.5em;
}

div#sidebar {
	width: 18%;
	float: right;
	margin: 4.15em 0 0 0;
}

div#sidebar.hascontent {
	font-size: 85%;
	padding: 15px;
	width: 170px;
	height: 212px;
}

div#sidebar.hascontent p {
	padding-right: 30px;
	width: 170px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
	clear: none;
	margin: 100px 40% 50px 20%;
	font-size: 0.7em;
	line-height: 1.5em;
}

div#footer p {
	margin: 1.5em 0 0 0;
}

/* HEADINGS */

div#main h2 {
	color: #FFFFFF;
	font-size: 1.4em;
	text-align: left;
	padding-bottom: 1px;
	line-height: 1.8em;
	margin: 0 0 0.35em 0;
	font-weight: normal;
}



/*****************
navigation 
*****************/

#menu {
	margin: 0;
	padding: 0;
	width: 150px;
	font-size: 1.05em;
	font-weight: bold;
	height: 600px;
}

/* menu li block */
#menu li {
   list-style: none;
   width: 150px;
   margin: 0;
   padding: 0;
   border: none;
   display: block;
   line-height: 2em;
}
#menu ul {
   margin: 2.7em 0 0 0;
   padding: 0;
}

#menu ul ul {
   margin: 0!important;
   padding: 0 0 0 1em;
   font-size: 10pt;
}
div#menu a {
   text-decoration:none; /* no underline for links */
   border: none;
}
div#menu ul h3 {
   display: block; 
   padding: 0;  /* some air for it */
   color: #fff;                                 /* this will be link color for all levels */
   margin: 0;                                  /* as <h3> normally has some margin by default */
   font-size: 100%;
   text-decoration: underline;
}

/* IE hack */
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }

/* End of 'Minimal Layout' */

/* Start of CMSMS style sheet 'Minimal Colours - 4' */
body {
	background-color: #BC0B3D;
}

a:hover {
   color: #FF3D7C;
}

div#header h1 a {
	background: #BC0B3D url(images/cms/mmw/4_logo.gif) no-repeat 0 0; 
}

div#sidebar.hascontent {
	background: #BC0B3D url(images/cms/mmw/4_box_background.gif) no-repeat 0 0;
}

/* End of 'Minimal Colours - 4' */

