@charset "UTF-8";
/* CSS Document */

/* ------------ colors ------------

Yellow: #FC0
Red: #BE1E2D
Dark Gray: #333
Light Gray: #CCC
White: #FFF
Black: #000

*/


/* ------------ body ------------ */
		
		html, body {
		    background-image: url("images/bg.gif");
   			background-repeat: repeat-x;
			background-position: top;
			background-color: #CCC;
			margin: 0;
			padding: 0;
			height: 100%;
		}
		
/* ------------ headers ------------ */
		
		h1 {
			font-family: Georgia, "Times New Roman", Times, serif;
			font-size: 15px;
			letter-spacing: 6px;
			color: #FFF;
			margin: 0;
			padding: 0 5px 0 10px;
			float: left;
		}
		
		h2 {
			font-family: Georgia, "Times New Roman", Times, serif;
			font-size: 10px;
			letter-spacing: 3px;
			color: #FFF;
			margin: 0;
			padding: 4px 5px 0 5px;
			float: left;
		}
		
		h3 {
			font-family: Arial, Helvetica, sans-serif;
			font-size: 1em;
			letter-spacing: 0;
			color: #333333;
			margin: 8px 0 10px 0;
		}
		
/* ------------ links/text ------------ */

		p {
			font-family: Arial, Helvetica, sans-serif;
			font-size: 11px;
			color: #000;
			text-align: left;
			margin: 0 0 10px 0;
			line-height: 1.4em;
			letter-spacing: .05em;
		}
				
		a {
			font-weight: bold;
			color: #333;
			margin: 0;
		}
		
		a:hover {
			color: #990000;
		}
		
		.thumb {
			border: solid;
			border-color: #333;
			border-width: 2px;
			margin: 0;
		}
		
		.thumb:hover {
			border: solid;
			border-color: #990000;
			border-width: 2px;
			margin: 0;
		}
		
		
/* ------------ header/nav ------------ */
		
		#header {
			position: absolute;
			width: 100%;
			top: 10px;
			height: 18px;
			padding: 0;
			margin: 0;
		}

		
/* ------------ content ------------ */
		
		#content {
			position: absolute;
			width: auto;
			height: 500px;
			background-color:#CCC;
			text-align: left;
			padding: 0;
			margin: 0;
			border: solid;
			border-color: #333;
			border-width: 5px 0 0 0;
			top: 40px;
		}
		
		td {
			padding: 0 15px 0 15px;
		}
		
		
/* ------------ footer ------------ */
		
		#footer {
			position: absolute;
			width: 4940px;
			bottom: 0;
			height: 20px;
			background-color: #000;
			padding: 0;
			margin: 0;
			border: solid;
			border-color: #333;
			border-width: 5px 0 0 0;
		}
