@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.thrColFixHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 
.thrColFixHdr #header {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: small;
	color: #03C;
	text-align: center;
	background-color: #FFF;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColFixHdr #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 */
	font-family: Tahoma, Geneva, sans-serif;
	color: #03C;
	text-align: center;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	background-color: #FFF;
}

.thrColFixHdr #supplies {
	font-family: Verdana, Geneva, sans-serif;
	font-size: large;
	font-weight: bold;
	color: #000;
	background-color: #FFDA00;
	padding: 10px;
	border: medium solid #F00;
	list-style-type: square;
	text-align: center;
	background-repeat: no-repeat;
	background-position: right top;
}
.thrColFixHdr #supplies h1{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: large;
	font-weight: bolder;
	font-variant: small-caps;
	color: #333;
	text-align:center
}	
.thrColFixHdr #container #sidebar1 #side-navigation a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-decoration: none;
	background-image: url(../film/roll.jpg);
	text-align: center;
	height: 54px;
	width: 120px;
	background-repeat: no-repeat;
	display: block;
	float: none;
	line-height: 50px;
}
.thrColFixHdr #container #sidebar1 #side-navigation a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #0CF;
	text-decoration: none;
}


.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 190px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	color: #000;
} 
.thrColFixHdr #mainContent img{
	border:none;	
}
.thrColFixHdr #container #mainContent h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: xx-large;
	font-weight: bolder;
	font-variant: small-caps;
	color: #333;
	text-align: center
}
.thrColFixHdr #container #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	text-align: left;
}
#galleryNav {
	text-align: center;
	display: block;
	padding-right: 50px;
	padding-left: 10px;
	padding-top: 75px;
	line-height: 30px;
}
.thrColFixHdr #container #sidebar2 #galleryNav a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color: #03F;
	text-decoration: none;
}
.thrColFixHdr #container #sidebar2 #galleryNav a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color: #03F;
	text-decoration: none;
}
.thrColFixHdr #container #sidebar2 #galleryNav a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color: #0FF;
	text-decoration: none;
}
.thrColFixHdr #container #sidebar2 #galleryNav a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color:#666
	text-decoration: none;
}

.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: small;
	color: #FFF;
	background-color: #03C;
	text-align: center;
} 
.thrColFixHdr #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 */
}
.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;
}
.thrColFixHdr #container #mainContent a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style: italic;
	color: #03F;
	text-decoration: none;
	text-align: center;
}
.thrColFixHdr #container #mainContent h2 {
	color: #F00;
	background-color: #FFDA00;
	text-align: center;
}

.thrColFixHdr #container #mainContent a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: italic;
	color: #09F;
	text-decoration: none;
	text-align: center;
}
.thrColFixHdr #container #mainContent #photos {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: italic;
	color: #333;
	text-align: center;
}
.thrColFixHdr #container #mainContent #photos a:link {
	text-decoration: none;
}
.thrColFixHdr #container #mainContent #photos a:visited {
	text-decoration: none;
}
.thrColFixHdr #container #mainContent #photos a:hover {
	text-decoration: none;
}
.thrColFixHdr #container #mainContent #photos a:active {
	text-decoration: none;
}
.thrColFixHdr #container #mainContent #links {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	padding: 20px;
	border: 1px ridge #0FF;
}
.thrColFixHdr #container #mainContent ul{
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-style:italic;
	text-align: left;
}
.thrColFixHdr #container #mainContent #links img {
float:right;	
}
.thrColFixHdr #container #mainContent #links a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color: #03F;
	text-decoration: underline;	
}
