@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	border: none;
	list-style-type: none;
}
body {
	font-size: 10px;
	font-family: Arial, sans-serif;
	background: #bfbfbf;
	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: #494949;
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999999;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:0;
}
#header {
	background:url(../images/header_background.jpg) left top no-repeat;
	padding: 0px;
	margin: 0px;  /* 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: 73px;
	position:relative;
}
#header .links {
	position:absolute;
	bottom:0;
	right:0;
	width:300px;
	height:12px;
	text-align:right;
	font-size: 1.1em;
	color:#666666;
	padding: 0px 4px 3px 0px;
}
#header .links a {
	text-decoration:none;
	color:#666666;
	}
#header .links a:hover {
	color: #000000;
	}
#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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	position:relative;
	padding: 0px 35px 0px 35px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent h1 {
	padding: 0px;
	margin: 28px 0px 20px -3px;
	width:100%
}
/* hide hack from Mac-IE5 \*/
* html #mainContent .info { height: 1%; }
/* end hiding */
#mainContent .videoAndInfo {
	padding:0;
	margin:0;
}
#mainContent .videoAndInfo #video {
	float:left;
	margin:0;
	padding:0;
	width:428px;
	height:289px;
	border:solid 1px #ccc;
}
#mainContent .videoAndInfo #video img {
	padding:0px;
	margin:0px;
}
#mainContent .videoAndInfo .info {
	text-align:left;
	vertical-align:top;
	margin:0px 0px 0px 452px;
	padding: 0px;
	display:block;
}
#mainContent .videoAndInfo h2 {
	font-size:2.2em;
	font-weight:bold;
	margin:0px;
	padding:0px;
	color:#ed1c24;
}
#mainContent .videoAndInfo h3 {
	font-weight:normal;
	font-size:1.5em;
	margin:0px;
	padding:0px 0px 10px 0px;
}
#mainContent .videoAndInfo  p {
	font-size: 1.2em;
	line-height:1.8em;
	padding:8px 0px 0px 0px;
	margin:0;
}
#mainContent .videoAndInfo a {
	color:#ed1c24;
	text-decoration:underline;
	padding:0px;
	margin:0px;
	}
#mainContent .videoAndInfo a:hover {
	text-decoration:none;
	}
img {
	border:0;
}
.buttonHolder {
	margin:0;
	text-align:center;
	}
.buttons {
	width:596px;
	margin:60px auto 50px auto;
	padding:0px;
	}
.buttons a {
	float:left;
	overflow:hidden;
}
.button1 {
	width: 164px;
}
.button1:hover {
	text-indent: -189px;
}
.button2 {
	margin-left:52px;
	width: 164px;
}
.button2:hover {
	text-indent:-189px;
}
.button3 {
	margin-left:52px;
	width: 164px;
}
.button3:hover {
	text-indent:-189px;
}
#footer {
	height:13px;
	padding: 5px 2px 4px 2px; 
	background:#999999;
	margin:0;
	text-align:right;
}
#footer p {
	height:13px;
	vertical-align:middle;
	text-align:right;
	margin: 0;
	padding: 0px 5px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#ffffff;
	font-size:10px;
	display:block;
	float:right;
	line-height:13px;
}
#footer img {
float:right;
vertical-align:middle;
padding:0;
}
#footer a {
color:#ffffff;
text-decoration:none;
}
#footer a:hover {
text-decoration:underline;
}
.cleaner {
	font-size: 0;
	line-height: 0;
	height: 0;
	clear: both;
}
