@charset "utf-8";
body  {
	font: 100% Bodoni MT, Verdana, Times New Roman, Helvetica, serif;
	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;
}
a, img { 
	color:#000;
	text-decoration:none;
	border:none;
}
a.email {text-decoration:underline;
}
#container {
	width: 844px;
	background: #EEEEEE;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #EEEEEE url(../images/header.png) no-repeat;  
	height: 126px;  
	margin: 0;
	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. */
} 
#header h1 {
	position:absolute;
	margin-left:145px;
	margin-top:46px;
	font: 60px "Bodoni MT", "Georgia", "Times New Roman", serif;
}

/***********************  FilmStrip  ********************************/
#slogan   {
	background: #6A7472;
	height:71px;
	color: #FFF;
	font-family: Helvetica, Arial, sans-serif;
	text-align: center;
	position: relative;
}
#slogan h3  {
	float:left;
	width: 170px;
	margin-top:25px;
}

#filmNav {
}

.filmStrip  {
	height: 71px;
	overflow:hidden;
	width:550px;
	float:left;
	margin-left:30px;
}
.filmStrip ul {
}
.filmStrip ul li { 
	list-style:none; 
	display:inline; 
}
#filmNav .next {
	margin-top:20px;
float:right;
margin-right:20px;
}
#filmNav .prev {
	margin-top:20px;
float:left;
margin-left:20px;
}

/***********************  End FilmStrip  ********************************/
#roundTop {
	background: #6A7472	url(../images/contentTopRounded.gif) no-repeat 200px bottom;
	height:21px;
}

/***********************  Navigation  ********************************/
#nav  {
	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: #EEEEEE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px;
	margin: 0px;
}
#nav ul {
	margin:0px;
	padding:0px;
	position: relative;
}
#nav ul li {
	font:bold 1.5em Segoe UI, Helvetica, Arial, sans-serif;
	list-style: none;
	text-align:center;
	width: 150px;
	margin: 0px;
	padding: 15px 0px 0px;
	display: block;
	vertical-align: text-bottom;
	padding-top: 30px;
	height: 45px;
}
#nav ul li.active {
	background: url(../images/bgNavSelected.gif) no-repeat center;
}
#nav ul li a:hover { text-decoration:underline; }

/***********************  End Navigation  ********************************/
#mainContent {
	padding: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFF;
	float: left;
	width: 596px;
	position: relative;
	min-height:375px;
	height: auto !important;  /* Fix for IE not filling content area to the footer*/
	height: 375px;			  /* Fix for IE not filling content area to the footer*/
} 
#contentPhoto {
	position:relative;
	height:250px;
	width:250px;
	overflow:hidden;
}
.loading {
	background: url(../images/ajax-loader.gif) no-repeat center center;
}
/***********************  Footer  ********************************/
#footer {
	padding-top: 25px; 
	background:#6A7472 url(../images/contentBottomRounded.gif) no-repeat 200px top;
	margin: 0;
} 
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer ul {
	margin-left:15px;
	padding:0px;
}
#footer ul li {
	display: inline;
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer ul li span {
	display: none;
}
/***********************  End Footer  ********************************/
#address {
	text-align:center;
	font: 12px Arial, Helvetica, sans-serif;
}

.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;
}


