@charset "UTF-8";
body {
	font: 100%;
	background: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 20px;
	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;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
.oneColFixCtr #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	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. */
	background-image: url(../images/homeBkgrd.jpg);
	color: #242342;
	background-repeat: no-repeat;
}
.oneColFixCtr #header {
	padding:20px 20px 30px 35px;
}
.oneColFixCtr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtr #mainContent {
	width: 950px;
	height: 425px;
}
.oneColFixCtr #mainContentOne {
	margin: 120px 0 0 35px; /* the left margin on this div element creates the column down the left 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: 0 70px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 400px;
	height: 300px;
	float: left;
}
.oneColFixCtr #mainContentOne h1 {
	color: #b11f24;
	font-size:24px;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight: normal;
}
.oneColFixCtr #mainContentOne p {
	color: #ffeea8;
	font-size: 14px;
	line-height: 26px;
	font-family:Arial, Helvetica, sans-serif;
}
.oneColFixCtr #mainContentTwo {
	margin: 0 0 0 20px; /* the left margin on this div element creates the column down the left 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: 70px 70px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 355px;
}
.oneColFixCtr #mainContentTwo h2 {
	color: #b11f24;
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
}
.oneColFixCtr #mainContentTwo h2 a:link, #mainContentTwo h2 a:visited {
	color: #b11f24;
	text-decoration: none;
}
.oneColFixCtr #mainContentTwo h2 a:hover, #mainContentTwo h2 a:active, #mainContentTwo h2 a:focus {
	color:#ffeea8;
}
.oneColFixCtr #mainContentTwo p {
	color: #669;
	font-size: 15px;
}
.oneColFixCtr #mainContentTwo p a:link, #mainContentTwo p a:visited {
	color: #669;
	text-decoration: none;
}
.oneColFixCtr #mainContentTwo p a:hover, #mainContentTwo p a:active, #mainContentTwo p a:focus {
	color:#669;
}
.quote {
	line-height: 26px;
	font-style: italic;
	font-size: 18px;
}
.oneColFixCtr #footer {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 10px 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.oneColFixCtr #footer p {
	font-size: 13px;
	text-align: center;
	color: #b11f24;
}
.oneColFixCtr #footer p a:link, #footer p a:visited {
	color: #b11f24;
	text-decoration: underline;
}
.oneColFixCtr #footer p a:hover, #footer p a:active, #footer p a:focus {
	color:#ffeea8;
	text-decoration:none;
}
.oneColFixCtr #languages {
	padding:5px 0;
	text-align:center;
	background-color:#000;
}
.oneColFixCtr #copyright {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	background-color:#000;
}
.oneColFixCtr #copyright p {
	font-size: 10px;
	text-align: center;
	color: #666;
}
.oneColFixCtr #copyright p a:link, .oneColFixCtr #copyright p a:visited {
	color: #666;
	text-decoration: underline;
}
.oneColFixCtr #copyright p a:hover, .oneColFixCtr #copyright p a:active, .oneColFixCtr #copyright p a:focus
{
	color:#b11f24;
	text-decoration: none;
}
