@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #c4cdd2;
	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;
}
h3 {
	font-family: Tahoma, "Tahoma Bold", Helvetica, Arial;
	font-size: 25px;
	color: #999999;
	padding-left: 30px;
}

/* 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.
*/
.oneColElsCtrHdr #container {
	width: 720px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(mainImages/bkgd.gif);
	background-repeat: repeat-y;
	height: 1450px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
}
.oneColElsCtrHdr #header {
} 
#header img {
	padding: 0;
	margin: 0px 0px 0px 9px;
	float: left;
}
.oneColElsCtrHdr #mainContent {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	margin: 0px;
	padding: 0px;
	float: left;
}
#mainContent #rotation {
	float: left;
	border: 3px solid #666666;
	width: 300px;
	padding: 0;
	margin: 0px 0px 0px 20px;
}
#mainContent #mainText {
	float: left;
	padding: 60px 10px 10px 20px;
	width: 310px;
	background-image: url(mainImages/textBkgd.gif);
	background-repeat: no-repeat;
	height: 340px;
	margin: 0px 0px 0px 15px;
}
#mainContent #nav {
	background-image: url(mainImages/nav.gif);
	background-repeat: no-repeat;
	width: 200px;
	height: 185px;
	float: left;
	padding: 10px 0px 10px 10px;
	margin-left: 10px;
	margin-top: 20px;
}
#mainContent #nav ul {
	list-style-type: none;
	padding: 20px;
	margin: 0;
}
#mainContent #nav li {
	padding-bottom: 20px;
}
#mainContent #nav li a {
	font-family: Tahoma, "Tahoma Bold", Helvetica, Arial;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
}
#mainContent #nav li a:hover {
	color: #303193;
}
#mainContent  #nav #buy {
	width: 202px;
	height: 64px;
}
#mainContent #slideContent {
	float: left;
	margin-top: 15px;
	margin-right: 20px;
	width: 438px;
	padding: 0px;
}
.SlidingPanelsContentGroup #p4 p {
	margin-left: 50px;
}
.SlidingPanelsContentGroup  p {
	padding: 0px 20px 0px 10px;
}
.SlidingPanelsContentGroup ul {
	list-style-position: outside;
	list-style-image: url(mainImages/bullet.gif);
	line-height: 1.7em;
	padding-right: 5px;
}
.SlidingPanelsContentGroup  #p2 p img  {
	border: 3px solid #FFFFFF;
	margin: 5px;
}
.oneColElsCtrHdr #footer {
	padding: 0 10px;
	float: left;
	clear: both;
	width: 640px;
	height: 50px;
	margin-top: 10px;
	background-color: #DDDDDD;
	background-image: url(mainImages/footer.gif);
	background-repeat: no-repeat;
} 
.oneColElsCtrHdr #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: 20px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Tahoma, "Tahoma Bold", Helvetica, Arial;
	font-size: 10px;
	color: #333333;
}
