/* Reset all styles */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

a:link {color:#0000FF}      /* unvisited link */
a:visited {color:#FF0000}  /* visited link */
a:hover {color:#0000FF}  /* mouse over link */
a:active {color:#0000FF}  /* selected link */

/* remember to define focus styles! */
:focus {
	outline: 0;
}


/* ################################################################### */
/* ==========  Basic Elements ======================================== */
/* ################################################################### */
body 
{
    background: black url("/images/piper-sunset2.jpg") no-repeat top left;
}

#container
{
    position: relative;
    float: left;
    width: 667;
    top: 200px;
    height: 100%;
    left: 300px;
}

.overlay{
  position: absolute;
  top: 0; /* These positions makes sure that the overlay */
  bottom: 0;  /* will cover the entire parent */
  left: 0;
  width: 100%;
  background: white;
  opacity: 0.75;
  -moz-opacity: 0.75; /* older Gecko-based browsers */
  filter:alpha(opacity=75); /* For IE6&7 */
}

/* Lets use the * html hack so only IE6 reads the rule */
* html #container .overlay {
  height: expression(document.getElementById("container").offsetHeight);
}

/* ------------------------------------------------ */
/* ---------- Content Styles ---------------------- */
/* ------------------------------------------------ */

#content 
{
    width: 667px;
    position: relative;
    float: left;
    padding: 20px;
}

#content p { 
	font: small tahoma, arial, sans-serif;
	margin: 0 0 .5em 0; 
	padding: 5px;
}

#content ul { 
	font: small tahoma, arial, sans-serif;
	margin: 0 0 .5em 0; 
	padding: 5px;
}

#content ul li { 
	margin-left: 3em; 
}

#content ul li strong { 
	font-weight: bold; 
}

#content h3 
{
    font: small-caps 1.3em "trebuchet ms", sans-serif; 
	margin-bottom: 0px;
	padding: 2px 2px 2px 20px;
	border-bottom: solid 2px white;
}

#content blockquote 
{
	font: italic normal .75em "palatino linotype", times, serif;
	letter-spacing: 0.75px;
	margin-bottom: 0px;
	padding-left: 20px;
}

/* ------------------------------------------------ */
/* ---------- Footer Styles ----------------------- */
/* ------------------------------------------------ */

#footer {
    clear: both;
    padding: 20px;
    position:relative;
    float: left;
    border-top: solid 1px white;
    width: 667px;
    }
#footer p {
    font: normal x-small arial, sans-serif;
    color: black;
    }

/* ------------------------------------------------ */
/* ---------- Menu Styles ------------------------- */
/* ------------------------------------------------ */

#menu_container
{
    float: left;
    margin: 0;
    padding: 0 0 0 20px;
    width: 180px;
    text-align: left;
    left: 100px;
    position: absolute;
    top: 310px;
}

#menu p {
	display: none;
	}
#menu .heading {
	font: bold small-caps small "trebuchet ms", sans-serif;
	}
#menu {
	font-family: "trebuchet ms", sans-serif;
	font-size: small;
	font-weight: bold;
	width: 100%;
	padding: 0;
	background-color: Transparent;
	}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	}
#menu ul li {
	margin: 0;
	display: inline;
	}
#menu ul li a { 
	display: block;
	padding: 2px 2px 2px 0.5em;
	color: black;
	text-decoration: none;
	}
#menu ul li a:hover { 
	background-color: #fff;
	color: black;
	}
#menu a:link { 
	font: bold small;
	}
#menu a:visited { 
	font: bold small;
	}
#menu a:hover, a:active { 
	font: bold small;
	}
	
/* ------------------------------------------------ */
/* ---------- Image Styles ------------------------ */
/* ------------------------------------------------ */
	
div.image {  /* You must place an inline style to set the width of the div to that of the image. */
	clear: right;
	float: right;
	font: x-small verdana;
	margin: 10px 0 10px 10px;
	background-color: black;
	color: white;
	padding: 10px;
	position: relative;
	}
div.image img {
	border: 1px solid #fff;
	margin: 0 0 1px 0;
	}
