@charset "UTF-8";
body  {
	background: #CCC;
	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;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
}

.twoColFixLtHdr #container { 
	width: 955px;  /* 10px less than a full 1002px width allows for browser chrome and avoids a horizontal scroll bar at 1024 x 768 screen resolution */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	border: 1px solid #333;
} 

.twoColFixLtHdr #container #header { 
	background: #00008B;
	padding: 0;
	height: 12px;
	border: 1px solid #00008B;
} 

.twoColFixLtHdr #container #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 */
}

.twoColFixLtHdr #container #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #B0C4DE; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0;
	padding: 0;
}

.twoColFixLtHdr #container #sidebar1 h3, #sidebar1 p {
	margin-right: 10px;
	margin-left: 10px;
	text-align: center;
}

.twoColFixLtHdr #container #mainContent {
	margin-top: 0;
	margin-right: 22px;
	margin-bottom: 0;
	margin-left: 192px;
	padding: 0;
}

.twoColFixLtHdr #container #mainContent #logo {
	padding: 18px 20px 6px 3px;
	margin-bottom: 14px;
}

.twoColFixLtHdr #container #mainContent #logo #webbtn {
	float: right;
	border-left: 4px solid #C0C0C0;
	padding-left: 24px;
}

#contentFrame {
	border: 4px solid #DE3831;
}

#contentInner {
	padding: 14px 18px 14px 18px;
}

#contentFrame2 {
	border: 4px solid #DE3831;
	height: 450px;
}

#contentInner2 {
	padding: 14px 18px;
	height: 407px;
}

.twoColFixLtHdr #container #mainContent #contentFrame #contentInner #redPanel {
	height: 360px;
	width: 480px;
	border-top: 10px solid #DE3831;
	border-right: 50px solid #DE3831;
	border-bottom: 10px solid #DE3831;
	border-left: 10px solid #DE3831;
}

#formBorder {
	border: 2px solid #BE0000;
	background: #B0C4DE;
	text-align: center;
	width: 420px;
	height: 320px;
}

.formBGColour {
	background: #CCCCCC;
}

#video1 {
	padding: 0px;
	float: right;
	height: 264px;
	width: 352px;
	border: 2px solid #333333;
}

.twoColFixLtHdr #container #footer { 
	font: normal 10px/14px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-align: center;
	background: #00008B; 
	margin: 0;
	padding: 5px; 
} 

.backtotop {
	font-size: 10px;
	text-align: right;
	line-height: 12px;
}

.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
