/*The print stylesheet really only strips out some divs (like the navigation) that we dont need to print */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	color: #003300;
	background-color: #DDDD5F;
	text-align: centre;
	padding: 0px;
	margin: 0px;
	background-image: url(../images/bg.gif);
	background-repeat: repeat-x;
}

p{
	line-height: 1.6em;
}

h1, h2, h3, h4{
	font-family: Arial, Helvetica, sans-serif;
	line-height: normal;
}
h1{
	font-size: 1.6em;
}
h2{
	font-size: 1.3em;
}
h3{
	font-size: 1.1em;
}
h4{
	font-size: 1em;
}

ul, li{
	line-height: normal;
}

a{
	color: #669900;
	text-decoration: underline;
}

a:hover{
	color: #669900;
	text-decoration: none;	
}

blockquote{
   background-color: #EEEEEE;
   padding: 10px;
}


table{
   background-color: #EEEEEE;
   border: 0;
   border-collapse: collapse;
}
th{
  background-color: #DDDDDD;
  font-weight: bold;
  padding: 5px;
  margin: 0;
  text-align: left;
}
td{
  margin: 0;
  text-align: left;
  padding: 5px;
}
caption{
  font-style: italic;
  margin-bottom: 0.5em;
}








/* The first part was generic elements, now we do the layout using floated DIV's */
#daddy {
	background-color: #FFFFFF;
	margin: 0px auto;
	padding: 0px;
	width: 100%;
	text-align: left;
}

#header{
	width: 760px;
	padding: 0px;
	margin: 0px 0px 20px 0px;
}

#nav{
	display: none;	
}


#content{
	/* using the box model hack to support IE 5 */
	width: 90%
}

#content h1{
	margin-top: 0px;
	padding-top: 0px;
}

#footer{
	display: none;
}







