@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #330033;
	background-color: #CCCCCC;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneCol #container {
	width: 100%;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #330033;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #9999CC;
}
.oneCol #header {
	padding: 17px 10px 0px 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-image: url(../image/topstrip.gif);
	background-repeat: repeat-x;
	height: 155px;
	background-color: #9999CC;
	margin-bottom: 0px;
} 
.oneCol #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneCol  #container #mainContent {
	padding: 5em 2em 2em 2em;
	color: #333366;
	font-size: 0.85em;
	font-weight: 500;
	background-color: #DDDDEE;
}
.oneCol #container #footer {
	padding: 0 ;
	margin: 0;
	background-color: #DDDDEE;
	font-size: 70%;
	font-weight: bold;
	text-align: center;
	height: 9em;
	border-top: dashed thin green;
} 

.oneCol #container #footer td {
	padding: 0px;
	height: 12px;
	font-size: 70%;
	font-weight: bold;
}
.oneCol #container #footer a {
	color: #339944;
}
.oneCol #container #footer h3 {
	font-size: 110%;
	padding: 0;
	margin: 3px;
}

.oneCol #container #header .small {
	margin: 0px 3px 0px 2px;
}
.oneCol #container #header #smallPics {
	position: relative;
	height: auto;
	width: 80%;
	top: 6px;
	left: 15%;
}
.oneCol #container #header #smallPics .subHead {
	float: right;
	margin: 15px 30px 0 0;
}
.oneCol #container #mainContent h1 {
	font-size: 1.6em;
	color: #333366;
	padding: 1em 0 0em 1em;
	font-family: "Times New Roman", Times, serif;
	margin-bottom: 0.2em;
}
.oneCol #container #mainContent .header {
	margin-top: 1em;
	margin-right: 1em;
	margin-bottom: 2em;
	margin-left: 0px;
}
.oneCol #container #mainContent .contentHead {
	margin-top: 1em;
	margin-right: 0em;
	margin-bottom: 2em;
	margin-left: 0px;
}
.oneCol #container #mainContent ul {
	margin-top: 0px;
	margin-bottom: 0px;
	list-style-image: url(../image/bullet.gif);
	margin-left: 1.3em;
	line-height: 0.9em;
	padding-top: 0px;
}
.oneCol #container #mainContent .contentSubHead {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	background-color: #333366;
	padding: .1em 0.5em;
	color: #CCDDEE;
	font-size: 1.8em;
	letter-spacing: 0.1em;
	border: solid 2px #9999cc;
	font-weight: 700;
}
.oneCol #container #mainContent a {
	color: #339944;
	font-weight: bold;
}
.oneCol #container #mainContent  a:hover {
	color: #333366;
}
.oneCol #container #mainContent blockquote {
	line-height: 1.2;
	margin-right: 0.5em;
	margin-left: 3em;
}
.oneCol #container #mainContent h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bold;
}
.oneCol #container #mainContent .exampleRight {
	margin: 1em 0 1em 2em;
	padding: 1em;
	float: right;
	border: 2px solid #AABBDD;
}
.oneCol #container #mainContent .exampleRight h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	text-align: left;
	margin: 0px;
	padding: 0px 0 .4em 0;
}
.oneCol #container #mainContent .exampleLeft {
	margin: 1em 2em 1em 0;
	padding: 1em;
	float: left;
	border: 2px solid #AABBDD;
}
.oneCol #container #mainContent .exampleLeft h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	text-align: left;
	margin: 0px;
	padding: 0px 0 .4em 0;
}
.oneCol #container #rightWide {
	background-color: #9999CC;
	float: right;
	padding: 1em 1em 1em 0;
	margin-left: 2em;
	width: 17em;
}
.oneCol #container #rightWide h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.2em;
	padding: 0;
	margin: 0 0 0 .2em;
}
.oneCol #container #rightWide p {
	font-size: 0.85em;
	font-weight: 500;
	color: #FFFFEE;
}
.oneCol #container #rightWide ul {
	font-size: 0.85em;
	font-weight: normal;
	color: #330033;
	list-style-image: url(../image/bulletDark.gif);
}
.oneCol #container #mainContent .welcome {
	margin-top: 2em;
	margin-right: 3em;
	float: right;
}
.oneCol #container #mainContent .leftIndent {
	margin-left: 4em;
}
.oneCol #container #footer .ipower {
	width: 20em;
	text-align: center;
	font-size: 1.5em;
	
}
.oneCol #container #footer .ipower a{
	text-decoration: none;
	color: #000;
}
.oneCol #container #footer .ipower a .IPow {
color: #0077aa;
	font-family: "Franklin Gothic Book", Verdana, Arial, sans-serif;
	font-weight: 900;
	color: #07a;
	margin-left: .6em;
	letter-spacing: 0.3em;
	font-size: 1.3em;
	text-shadow: 1px 1px 1px #069;
}
