@charset "utf-8";
/* CSS Document */

<style type="text/css"> 

body  {


	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

 #container {
	width: 1004px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid  #666666;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../new_images/sidebar.jpg);
	background-repeat: repeat-y;
	background-position: right top;
} 
 #containerLftCol{
	width: 1004px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

	background-image: url(../new_images/sidebarlft.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}
 
 #header {
	 height: 130px;
	padding: 10px 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #ffffff;
	background-image: url(../new_images/cmm_logo.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
} 
 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding-left: 400px;
	padding-top: 100px;/* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.login {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.login b{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight:bold;
}
 #subheader {
	height: 23px;
	padding-left: 640px;
	background-color: #f9a62e;
	background-image: url(file:///C|/SitesLocal/cmm-sys/new_images/subheader_bg.gif);
	background-repeat: repeat-x;
	background-position: left top;	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

#picHeader {
	height: 236px;
	background:#ffffff;

}

#picHeader p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#FFFfff;
	line-height: 1.5;
}
#sidebar1 {
	color: white;
	font-size:11px;
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer    will include the padding and border in addition to the width */
	/* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 10px;
	padding: 0px 10px 50px 10px;

}
#sidebar1 ul {
	padding: 10px;
}
#sidebar1 h3 {

	text-align:center;

}

#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer    will include the padding and border in addition to the width */
	/* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 10px;
	padding: 0px 10px 50px 10px;

}

#sidebar2 p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	/*line-height: 1.5;*/
	color: #FFF;	

}
#sidebar2 h3{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #FC0;	/*color: #FC0;*/
}
.whitebg{
	height: 8px;
	background:#FFFFFF;
	position: inherit;
	}

 #mainContent { 
	margin: 10px 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 10px 10px 10px;
	font: 80% Verdana, Arial, Helvetica, sans-serif;/* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align:justify;
} 
#mainContent p.intro .firstletter {

font-size : 400%;
font-weight : bold;
float : left;
color : #000;
margin-top: -12px;

}
#mainContentInd {
		margin: 0 250px 0 180px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font: 80% Verdana, Arial, Helvetica, sans-serif;/* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align:justify;
}
#mainContentInd h1 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 60px;
	margin-top: 0;
}
#mainContentInd p.first {
	margin-top: -10px;
}
 #footer {
	 height:66px;
	padding: 10px 10px 0 20px;
	background-color: #f9a62e;
	background-image: url(../new_images/pvlogo.gif);
	background-repeat: no-repeat;
	background-position: right top;
} 
 #footer p {
	 font-family:Arial, Helvetica, sans-serif;
	 font-size:12px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #f9a62e;
background-image: url(file:///C|/SitesLocal/cmm-sys/new_images/subheader_bg.gif);
background-repeat: repeat-x;
background-position: left top;/*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
	display: block;
	width: 70px; /*Width of top level menu link items*/
	padding: 4px 8px;
	border: 0px solid red;
	border-left: 0px solid red;
	text-decoration: none;
	color: black;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
	text-align: center;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 160px; /*width of sub menu levels*/
color: black;
text-decoration: none;
padding: 1px 5px;
border: 1px solid black;

}

.suckertreemenu ul li a:hover{
background-color: black;
color: white;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: #f9a62e;
background-image: url(file:///C|/SitesLocal/cmm-sys/new_images/subheader_bg.gif);
background-repeat: repeat-x;
background-position: left top; url(media/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #f8c907; url(media/arrow-right.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

.podlft {
	
	float:left;
	width:380px;
	height: 150px;
	padding: 10px;
	margin-bottom: 10px;
	border: thin solid #600;
	background-color: #bd541d;
	color: #FFF;
	line-height: 1.5;
	background-image: url(../new_images/gears.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
}

.podrt {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	float:right;
	width:260px;
	height: 110px;
	padding:20px;  
    margin-left: 10px;
    margin-bottom: 10px;
    border: thin solid #600;
	background-color: #f9a62e;
	text-align:left;
	color:#630;
	font-size: 20px;
	line-height: 1.2;
	
}

.podrt p{
	font-weight:bold;
	color:#000;
	font-size: 13px;
	line-height: 1.0;
	
}
.contact{
	padding: 20px 0 10px 55px;
	font-weight:bold;
	color:red;
	font-size: 18px;
	line-height: 2;
}
h2 {
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
}

h3 {
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
}
.contactHdr {
color: white;
}
</style>
