@charset "UTF-8";
body {
	background: #dcdbdb url(images/body_bg.gif) no-repeat center top;
	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;
	font-family: "Lucida Sans", Arial, sans-serif;
}
.small {
	font-size: 80%;
}
h1 {
	color: #838388;
	font-size: 140%;
	font-weight: bold;
	margin-top: 20px;
	text-transform: uppercase;
}
h2 {
	color: #ce1b22;
	font-weight: bold;
}
a {
	color: #A81823;
	text-decoration: underline;
	background: none;
}
a:hover, a:active, a:focus {
	color: #A81823;
	text-decoration: underline;
}
a img {
}
#container {
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-right-width: 10px;
	border-left-width: 10px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #fff;
	border-left-color: #fff;
}
#header {
	padding: 0;  /* 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. */
	height: 117px;
}
#services {
	height: 25px;
	margin-bottom: 10px;
}
#banner {
	padding: 0;  /* 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. */
	height: 118px;
	background-image: url(images/banner.jpg);
	background-repeat: no-repeat;
}

#menucontainer {
	float: left;
	width: 100%;
	font-family: "Lucida Sans", Arial, sans-serif;
	font-size: 70%;
	text-transform: uppercase;
	background-color: #f6f6f6;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d9d9d9;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #d9d9d9;
	border-left-color: #d9d9d9;
}

#navcontainer ul {
	padding-left: 0;
	margin-left: 0;
	color: #333333;
	float: left;
	width: 100%;
	font-family: "Lucida Sans", Arial, sans-serif;
	margin-top: 3px;
	margin-bottom: 3px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 0px;
	background-image: url(images/menu_bg.gif);
	background-repeat: repeat-x;
	font-size: 80%;
	text-transform: uppercase;
}
#navcontainer ul li {
	display: inline;
}
#navcontainer ul li a {
	padding: 0.3em .8em;
	color: #333333;
	text-decoration: none;
	float: left;
	background-image: url(images/menu_bg.gif);
	background-repeat: repeat-x;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #fff;
}
#navcontainer ul li a:hover{
	color: #fff;
	text-decoration: none;
	background-image: url(images/menu_bg_over.gif);
	background-repeat: repeat-x;
}
#links a {
	color: #A81823;
	text-decoration: underline;
	background: none;
	font-size: 90%;
}
#links a:hover, a:active, a:focus {
	color: #A81823;
	text-decoration: underline;
}

#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 */
}
#content {
	width: 750px;
	text-align: justify;
	font-size: 90%;
	line-height: 1.3em;
	float: left;
}
#mainContent {
	font-size: 90%;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 220px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#mainContent table.ask {
	font-size: 85%;
}
#mainContent table.ask tr td {
	background-color: #f2f2f2;
	padding: 6px;
	margin-top: 0px;
}
#boxes {
	padding: 8px;
	border: 1px solid #E6E6E6;
	margin-right: 8px;
	margin-bottom: 8px;
}
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 211px; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 15px;
}
#strapline {
	width: 100%;
	height: 48px;
}
#follow {
	width: 100%;
	height: 48px;
	margin-bottom: 5px;
}
#straplineAds {
	width: 100%;
}
#video {
	text-align: center;
}
.subHead {
	font-weight: bold;
	font-size: 120%;
}
#footer {
	background:#ebebeb;
	border-bottom-width: 15px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
	width: 730px;
	margin-top: 15px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 20px;
}
#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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 70%;
	letter-spacing: .1em;
}
.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;
}
.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;
}
#subscribe {
	margin-bottom: 5px;
	font-size: 80%;
	border: 1px solid #CCCCCC;
	padding: 4px;
}
