/* how to comment out a style sheet */

html, body {
margin: 0px;
padding: 0px;
}
/* the above is instead of applying these properties the the body tags on every page, we use the html and body selectors to support Opera browsers here */

img {
border: none;
}
/* the above means we don't have to apply border="0" to each linked image */
#logo {
position: absolute;
left:50%;
width:150px;
top:3px;
margin-left:-375px;
height:81px;
padding:0px;
}
#topnavigation {
position: absolute;
left:50%;
width:450px;
top:3px;
margin-left:-65px;
height:20px;
padding:0px;
text-align: right;
}
#headerwording {
position: absolute;
left:50%;
width:550px;
top:43px;
margin-left:-195px;
height:20px;
padding:0px;
}
#navigation {
position: absolute;
left:50%;
width:760px;
top:95px;
margin-left:-375px;
height:30px;
padding:0px;
}
#headerimage {
position: absolute;
left:50%;
width:760px;
top:125px;
margin-left:-375px;
height:115px;
padding:0px;
z-index: 1;
}
#headertitle {
position: absolute;
left:50%;
width:740px;
top:216px;
margin-left:-365px;
height:15px;
padding:0px;
font-family: Geneva, Arial, Helvetica, sans-serif;
color: #FFFFFF;
font-size: 15px;
font-weight: bold;
z-index: 2;
}
#content {
position: absolute;
left:50%;
width:760px;
top:255px;
margin-left:-375px;
height:auto;
padding:0px;
}
#footer {
position: absolute;
margin-bottom: 0px;
width:760px;
height:44px;
clear: both;
}