@charset "utf-8";
body {
	font: 0.8em Verdana, Arial, Helvetica, sans-serif;
	background: #F0F0F0;
	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;
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/main-bgd.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999999;
	text-align: left;
	padding: 0px;
}

#container #header {
	background: #DDDDDD url(../images/website-banner.jpg) no-repeat;
	padding: 0 10px 0 20px;  /* 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: 174px;
	width: 870px;
	clear: both;
}
#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: 80px 10px 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 2.0em;
	color: #FFFFFF;
	text-align: right;
}

#container #navbar {
	background: #676E2B;
	padding: 0 10px 0 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: 30px;
	margin: 0px;
}
#container #navbar h1 {
	font-size: 1.2em;
	color: #FFFFFF;
	margin: 0px;
	padding: 5px;
}
#container #navbar #title {
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 30px;
}
#container #navbar #menu {
	float: right;
	width: 19em;
}
#container #sideContent a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#container #mainContent {
	padding: 10px 20px 10px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	width: 630px;
	margin: 0px;
	clear: left;
	float: left;
}
#container #mainContent h1 {
	font-size: 1.6em;
	margin: 0px;
	padding: 1.0em 0px 0em;
	font-weight: normal;
	color: #333333;
}
#container #mainContent h2 {
	font-size: 1.4em;
	margin: 0px;
	padding: 1em 0em 0em;
	font-weight: normal;
	color: #333333;
}
#container #mainContent h3 {
	font-size: 0.96em;
	margin: 0.5em 0px 0px;
	padding: 0px;
	color: #333333;
}
#container #mainContent ul {
	margin: 0px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 1.4em;
	padding-right: 1em;
}

#container #mainContent p {
	font-size: 1em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	margin: 0px;
}

#container #sideContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #D1CCAD;
	width: 180px;
	float: right;
}
#container #sideContent h2 {
	font-size: 1.2em;
	color: #4D5722;
	margin: 0px;
	padding: 1.5em 0px 1em;
}
#container #sideContent h3 {
	font-size: 0.96em;
	color: #4D5722;
	margin: 0px;
	padding: 1.5em 0px 0px;
}
#container #sideContent p {
	margin: 0px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

#footer {
	width: 860px;  /* same as container */
	margin: 0 auto;
	border: none;
	background:#F0F0F0;
	text-align: left;
	clear: both;
	padding: 20px;
}
#footer p {
	margin: 0;
	padding: 10px 0;
	color: #666666;
	font-size: 0.8em;
}
#footer a {
	color: #333333;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}
.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;
}
#container #mainContent .txtsmall,
#container #sideContent .txtsmall {
	font-size: 0.75em;
}
#container #mainContent .img_right {
	padding: 0px;
	float: right;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
	border: 1px solid #D1CCAD;
	font-size: 0.75em;
	color: #999999;
	text-align: center;
}
#container #mainContent .thmb_right {
	padding: 0px;
	float: right;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 5px;
	border: 1px solid #D1CCAD;
	font-size: 0.72em;
	color: #999999;
	text-align: center;
}
#container #mainContent .thmb_right img {
	border: none;
}
#container #mainContent a, 
#container #sideContent a {
	color: #006699;
	text-decoration: none;
}
#container #mainContent a:hover, 
#container #sideContent a:hover {
	color: #006699;
	text-decoration: underline;
}
/* box for movie script to appear in */
div.movie {
	margin-bottom: 2em;
	width: 400px;
	margin-top: 1em;
	margin-right: 0px;
	margin-left: 0px;
	clear: both;
	border: 5px solid #000000;
	height: 300px;
}
