/* Start of CMSMS style sheet 'CDMLegal - layout' */
/* MAIN CSS FOR THE SITE */

/*
div {
	border:1px dotted #000099;
}/* uncomment this block of code to help with layout debugging in browsers  */

body, html {
	margin:0;
	padding:0;
}

body {
	background:url(images/site/body_bg.jpg) top center repeat-x;
}

#header {
	width:840px;
	margin:0 auto;
}


#pageContainer {
	width:842px;
	margin:0 auto;
	text-align:left;
	padding:5px;
	
	background:url(images/site/page_bg.jpg) no-repeat top;		
}

.clearer {
	clear:both;
	display:block;
	height:1px;
	margin-bottom:-1px;
	font-size:1px;
	line-height:1px;
}



/*------------------- NAVBAR -------------------*/
#navBar {
	height:22px;
	padding:0 5px;
	background:#ccc;
	margin:0 5px;
	border-bottom:solid 2px #f60;
}

#navRight {
	float:right;
	display:relative;
	color:#05b;
	font-family:"Times New Roman", Times, serif;
	font-weight:bold;
}
#navLeft {
	float:left;
	display:relative;
	width:400px;
}

/*------------------- CONTENT AREAS -------------------*/
#content {
/*	background:url(../images/site/content_bg.jpg) repeat-y top center;*/
}

#mainPhoto {
	text-align:center;
	padding:5px 0;
}

#mainCol {
	width:580px;
	padding:0 20px;
	position:relative;
	display:block;
	text-align:left;
	margin-right:200px;
	padding-bottom:20px;
}

#sideCol {
	width:195px;
	position:relative;
	float:right;
	text-align:left;
	padding:0 10px;
}

#sideColBox {
	border:solid 1px #ccc;
	background:#fff;
	padding:5px;
	position:relative;
	z-index:3px;
}
#sideColBox ul {
	list-style:square;
}

#sideColBox a:link, #sideColBox a:visited {
	text-decoration:none;
}
#sideColBox a:hover {
	text-decoration:underline;
}

/*------------------- FOOTER -------------------*/
#footer {
	width:830px;
	margin:0 auto;
	padding:5px;
	font-size:8pt;
	color:#038;
	font-family:Arial, Helvetica, sans-serif;
	border-top:solid 2px #f60;
}

#footer a:link, #footer a:visited {
	color:#038;
	text-decoration:none;
}

#footer a:hover {
	color:#038;
	text-decoration:underline;
}


/* End of 'CDMLegal - layout' */

/* Start of CMSMS style sheet 'CDMLegal - menu' */
dfn {   /* gets rid of the numbers the CMS adds next to the navigation */
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}

#menu_vert {
   margin-left: 1px;
   margin-right: 1px;
}

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb { clear: both; }
#menuwrapper { 
   /* Fix for Opera 8 */ 
   /*   overflow: hidden;  */ 
   width: 100%;
}

/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li { 
   width: 200px; 
}


/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
}
#primary-nav ul { 
   position: absolute; 
   top: auto; 
   display: none; 
}
#primary-nav ul ul { 
   margin-top: 1px;
   margin-left: -1px;
   left: 100%; 
   top: 0px; 
}
	
#primary-nav li { 
   margin-left: -1px;
   float: left; 
}
#primary-nav li li { 
   margin-left: 0px;
   margin-top: -1px;
   float: none; 
   position: relative; 
}

/* Styling the basic apperance of the menu elements */
#primary-nav a { 
   display: block; 
   margin: 0px; 
   padding: 1px 10px; 
   text-decoration: none; 
   color: #006699;
}
#primary-nav li a { 
   border-right: 1px solid #C0C0C0;
   border-left: 1px solid #C0C0C0;
}
#primary-nav li li a { 
   border: 1px solid #C0C0C0;
   padding: 5px 10px; 
}	
#primary-nav li, #primary-nav li.menuparent { 

}
#primary-nav li li {
   background-color: #ececec; 
}

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

#primary-nav li.menuactive { 
   background-color: #C7C7C7; 
}


/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent, 
#primary-nav ul li.menuparent:hover, 
#primary-nav ul li.menuparenth { 
/* arrow for menuparents */
   background-image: url(images/cms/arrow.gif); 
   background-position: center right; 
   background-repeat: no-repeat; 
}


/* Styling the apperance of menu items on hover */

#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
   background-color: #005; 
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
}

/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul { 
   display: block; 
}

#primary-nav li a:hover { 
  color: #fff; 
}


/* IE Hacks */
#primary-nav li li { 
   float: left; 
   clear: both; 
}
#primary-nav li li a { 
   height: 1%; 
}
/* End of 'CDMLegal - menu' */

