@charset "UTF-8";

.videoBackground {
	background: #FFFFFF;
	height: 330px;
	width: 335px;
	margin-left: 250px;
}
body {
	font: 1em Georgia, "Times New Roman", Times, serif;
	background: #E5E7C7;
	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: #333333;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
a:link {
	color: #42413C;
	text-decoration: underline; 
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /
	text-decoration: none;
}

.container {
	width: 900px;
	margin: 0 auto;
	background: #9C9822;
	border-top: 5px solid #999933;
}


.header {
	background: #000000 url(../NewGraphics/TitleBanner_Home.jpg) no-repeat;
	height: 165px;
	padding-left: 20px;
	float: none;
}
.menubox {
	background: #930;
	height: 30px;
	border-right: 10px solid #993;
	border-left: 10px solid #993;
	border-bottom: none;
	border-top: 20px none #930;
}


.content {
	padding: 10px 15;
	background: #ffffff;
	border-right: 10px solid #9A9923;
	border-left: 10px solid #9A9923;
	color: #993300;
	height: auto;
}
.MoveRight {
	margin-left: 15px;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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;
	width: 450px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.boxRight {
	padding: 15px;
	float: right;
}
