/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin: 0;
	padding: 0;
	height: 100%; /* needed for container min-height */
	background: #fdf8e3;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:900px;
	background: white;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
	border: ridge;
}

div#header {
	padding:1em;
	height: 137px;
	background-image: url("../images/html/SF_Header.jpg");
	background-repeat: no-repeat;
	border-bottom: 6px double gray;
}

div#navigation {
	width: 900px;
    height: 40px;
    background-image: url('../images/html/navigation.jpg');
    background-repeat: no-repeat;
	background-position: center;
    background-color: #d2dbfb;
}

#navigation ul
{
    width: 900px;
    margin: 0px;
}

#navigation li
{
    list-style: none;
    float: left;
	padding-top: 0px;
}

#navigation li.homeli 
{
    position: absolute;
	top: 183px;
    left: 47px;
}

#navigation li.vansli 
{
   position: absolute;
   top: 183px;
   left: 156px;
}

#navigation li.kiosksli 
{
    position: absolute;
	top: 183px;
	left: 275px;
}

#navigation li.coffeeli 
{
	position: absolute;
    top: 183px;
	left: 395px;
}

#navigation li.wheelli 
{
    position: absolute;
	top: 183px;
	left: 518px;
}

#navigation li.eventsli 
{
    position: absolute;
	top: 183px;
	left: 674px;
}

#navigation li.contactli 
{
    position: absolute;
	top: 183px;
	left: 784px;
}

#navigation li a 
{
    text-decoration: none;
	color: #fff;
	float: left;
	font-family: "Bradley Hand ITC";
	font-size:large;
	font-weight: bold;
}

#navigation li a:hover {
    color: #000;
}

div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
}

div#content h1
{
    font-family: "Comic Sans MS";
    text-align:center;
    color: #000;
}

div#content p {
	font-family: "Comic Sans MS";
	font-size: medium;
    color: #000;
	text-align:center;
	padding:0 1em;
}

div#content li {
	font-family: "Comic Sans MS";
	font-size: medium;
    color: #000;
	text-align:center;
	padding:0 1em;
}

div#content img.mainpic
{
    position: relative;
	top: 0px;
    left: 150px;
}

div#content p.firsttext
{
    position: relative;
	top: 40px;
    width: 350px;
    height: 200px;
}

div#content img.firstpic
{
	position: relative;
	top: -220px;
    left: 400px;
    width: 450px;
    height: 300px 
    
}

div#content p.secondtext
{
    position: relative;
    top: -480px;
    left: 480px;
    width: 350px;
    height: 200px;
}

div#content img.secondpic
{
    position: relative;
	top: -220px;
    left: 0px;
    width: 450px;
    height: 300px 
}

/* Try a table for simplicity */

table.displayT {
	font-family: "Comic Sans MS";
	font-size: medium;
    color: #000;
	text-align:justify;
	width: 870px;
	background-color: white;
	margin-top: 0px;
}

table.displayT td {
	background-color: white;
	text-align: left;
	padding-left: 3px;
	padding:0 1em;
}

table.displayT td.text {
	width: 340px;
	text-align: center;
	valign: top;
}

table.displayT td.picture {
	width: 530px;
	text-align: right;
}

/* Events Table */

table.eventsT {
	font-family: "Comic Sans MS";
	font-size: medium;
    color: #000;
	width: 870px;
	background-color: white;
	margin-top: 0px;
}

table.eventsT td 
{
    width:435px;
	background-color: white;
	text-align: left;
	padding-left: 3px;
	padding:0 1em;
}

/* Contacts Table */

table.contactT {
	font-family: "Comic Sans MS";
	font-size: medium;
    color: #000;
	width: 800px;
	background-color: white;
	margin-top: 0px;
}

table.contactT td 
{
    width:435px;
	background-color: white;
	text-align: center;
	padding-left: 3px;
	padding:0 1em;
	vertical-align:top;
}

/* End of Table Stuff */

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	font-family: "Comic Sans MS";
	font-size: medium;
    color: #000;
	background:#d2dbfb;
	border-top:6px double gray;
}
	div#footer p {
		padding:1em;
		margin:0;
	}
