@charset "UTF-8";

/* CONTAINERS */
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 */
	font-family: Arial, Helvetica, sans-serif; /* LSF 1/24/2012 - was Verdana, Arial, Helvetica, sans-serif; */
	font-size: 100%;
	background: #FFFFFF;
	color: #000000;
}

#container {
	width: 960px;  /* this will create a container 80% of the browser width */
	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. */
}

#header {
	height:100px;
	padding: 0 10px 10px 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
}

#mainContent {
	margin:0 0 50px 0;
	padding: 0 0 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#sidebar {
	width:245px;
	height:500px;
	float:right;
	margin-top:70px;	/* LSF 1/24/2012 was 88 */
}

#sitespublished {
	width:630px;		/* LSF 1/24/2012 - changed from 640 to 630 */
	margin:0;
	padding:0 0 0 60px;
}

.pub {
	height:135px;
	margin-bottom:10px;
}

.sitespublishedCopy {
	width:220px;
	float:right;
	padding-right:105px;
	line-height: 140%;
	font-size:14px;
}

.sitespublishedLogo {
	width:250px;
	float:left;
}

#footer { 
	clear:both;
	padding: 0 0 15px 20px;
	font-size:12px; 
} 

.clearBoth {
	clear:both;
}

/* IMAGES */
.headerImg {
	width: 450px;
	float:left; 
	border:none;
}

.sitespublishedLogo img {
	border:none;
	float:right;
}

/* HEADINGS */
#mainContent h2{
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;	/* LSF 4/12/2011 - change from Georgia, "Times New Roman", Times, serif TO Arial, Helvetica, sans-serif*/
	font-size: 2.2em;	/* LSF 5/3/2011 change from 2.5em to 2.2em - 4/12/2011 change from 16px to 2.5em */
	font-weight: bold;
	color: #333333;
}

#mainContent h3{
	margin-top: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
}

#sidebar h3{
	margin: 0px;
	padding: 0 0 10px 0;
	/*letter-spacing: 1px;*/	/* LSF 1/24/2011 */
}	

/* COPY */
#mainContent p{
	margin-top: 10px;
	padding: 0 350px 10px 70px;
	line-height: 140%;
	font-size: 15px;
}

#sidebar p{
	margin:0;
	padding:0 0 5px 0;
	font-size:14px;
}

#sidebar p.last{
	margin:0;
	padding:0 0 30px 0 ;
}

#sidebar p.bold {
	padding: 0;
	font-weight:bold;
}

/* LINKS */
a:link,
a:visited {
	text-decoration: underline;
}
a:active,
a:hover {
	text-decoration: none;
}

