
body {
margin: 0;
padding: 0;
background-color: gray; 
color: black;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-align: center; }

/*
margin adds space to the outside of body element
margin-top: 1em;(-right, -bottom, -left)

padding adds space inside of body element - between its borders and its contents
padding-top: 1em; (-right, -bottom, -left)

  (margin creates a space between the element to which they are applied and surrounding elements
   padding creates a space inside the element to which it is applied)

adding margins and padding to a fixed-width body element will be added to specified width of body element

background-color makes color for body background

color makes color for body font

font-family makes body font type 


*/



#wrapper {
position:relative;
text-align: left;
width:670px;
margin-right:auto;
margin-left: auto;

/*
padding: 200px 0 0 0;
background-image: url(images/panoramax.jpg);
background-repeat: no-repeat;
*/
background-position: left top;
/*
border-left: 2px solid #722100;
border-right:2px solid #722100;
border-bottom: 2ps solid #722100;}
*/



#table {
width: 67px;
}

#table tr {
width: 180px;
}


#table td td {
width: 490px;
}


#header {
background-image: url(../images/panoramax.jpg);
width:100%;
height: 145px;
color: white;
background-color: transparent;
}


#header h1 {
font: normal 250% chalkdust, verdana, voltage, Times, Broadway, Georgia, "Times New Roman", Times, serif;
color: red;
background-color: transparent;
text-align: center;
margin-top: -60px;
margin-bottom: -5px;
}


h1 {
font: normal 180% Arial, verdana, Times, Broadway, Georgia, "Times New Roman", Times, serif;
color: black;
background-color: transparent;
text-align: left;
}



#content {
background-color: white;
margin-left: 0px;
padding: 20px 10px 0 0; 
text-align: justify;

}


#content p {
font-size: 80%;
line-height: 1.8em;
padding-left: 2em;
margin-top: -2px;
}

<!--
text-indent: 2em;
-->

#content h1 {
font: normal 180% Arial, Veranda, Georgia, "Times New Roman", Times, serif;
color:black;
background-color: transparent;
text-align: center;
margin-top: -15px;
margin-bottom: -12px;
}

#content h2 {
font-size: 120%;
color:#940d1e;
background-color: transparent;
border-bottom: 1px dotted #ff9006;
}

/*
#sideview {
position: absolute;
top: 0px;
left: 0;
width: 180px;
height: 600px:
background-color: orange;
}
*/


#sideview {
background-color: white;
width: 180px;
}


#navi {
font-family: Arial;
font-size: .9em;
}

#navi ul {
list-style: none;
margin: 0;
padding: 0;
padding-top: 4px;
}

#navi li {
display: inline;
}

#navi a:link, #navigation a:visited {
padding: 3px 10px 2px 10px;
background-color: #b51032;
color: #ffffff;
text-decoration: none;
border: 1px solid #711515;

}

#navi a:hover {
background-color: blue;
color: #ffffff;
}


#navigation {
position: absolute;
top: 0px;
left: 0;
width: 180px;
height: 600px:
background-color: orange;
}

#navigation ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#navigation li {
display: inline;
width: 180px;
border-bottom: 1px solid #ed9f9f;
margin: 0;
padding: 0;
font-size:80%;
vertical-align: bottom;
}

#navigation a:link, #navigation a:visited {
display: block;
padding: 5px 5px 5px 0.5em;
border-left: 12px solid #722100;
border-right: 1px solid #722100;
background-color: #b51032;
color: #ffffff;
text-decoration: none;
}

#navigation a:hover {
background-color: #722100;
color: #ffffff;
}

#navigation ul.subnav {
margin-left: 12px;
}

#navigation ul.subnav li {
border-bottom: 1px solid #722100;
width: 168px;
}

#navigation ul.subnav a:link, #navigation ul.subnav a:visited {
background-color; #ed9f9f;
color: #722100;
}


/*
#footer {
padding: 0 0 10px 255px;
font-size: 70%;
<!--
color: #aaaaaa;
-->
color: black;
background-color: transparent;
}
*/


#footer {
position: absolute;
bottom: 0;
left: 0;
width: 670px;
background-color: white;
color: black;
border-top: 1px solid black;
text-align: center;
}


a:link {color: black; background-color: aqua; text-decoration: none; }

a:visited {color: black; background-color: aqua;text-decoration: none; }

a:active {color: black; background-color: aqua;text-decoration: none; }

a:hover {color: orange; background-color: aqua;text-decoration: none; }


