@charset "UTF-8";
body, html  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background:#CCCCCC;
	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 */
	height:100%;
}
a:link {text-decoration: underline; color: 7b9670 }
a:visited {text-decoration: underline; color: 9ca29a }


#container { 
	width: 61.94em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:10px;
	
} 


#content_container { 
	width: 61.94em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:0px;
	float:left;
	background-image:url(file://///jsd4/home/phildev/PendleVision/images/paleblue.jpg);
		
} 

p {
	color: #666666;
	font-size:85%;
	margin: 0px;
	padding: 0px 0px 5px;
}

h1 {
	color:#66CC00;
	font-size:90%;
}
h2 {
	color:blue;
}
h3 {
	color:#66CC00;
	font-size:80%;
	margin:0;
	padding:0;
}


/* Header */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
#header { 
	background: #FFFFFF;
	padding: 0px;  
} 
	
	#banner { 
		background: #FFFFFF;
		padding: 0px;  
		
	} 	
	#video {
		float:left;
		margin-bottom:10px;
	}
	#video_text {
		float:right;
	}

/* Side Bar */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
#sidebar1 {
	float: right;
	width: 23.8em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 16px 0; /* top and bottom padding create visual space within this div */
	background-image:url(file:../images/paleblue.jpg);
	
}
 #sidebar1 h3,  #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.dotted-line {
	border-bottom:1px dotted #000;
	width:100%;
	height:5px;
}

/* Main Content */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */

#mainContent {
	margin:0;
  	padding: 1em;
	float:left;
	width:36.1em;
	background-image:url(../images/paleyellow.jpg);
	
} 



/* Footer */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF;
	color:#999999;
	font-size:80%;
	border-top:1px dotted #999999;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#footer p.footersmalltext {
	color:#CCCCCC;
	padding:0 0 10px;
	font-size:10px;
}





/* Miscellaneous classes for reuse */
/* -------------------------------------------------------------------------------------------------------------------------------------------- */
.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;
}h4 {
	color:#666666;
	font-size:10px;
	margin:0;
	padding:0;
	font-family: "Trebuchet MS";
}
h5 {
	color:#666666;
	font-size:80%;
	margin:3;
	padding:3;
	font-family: Verdana;
	font-weight: normal;
}