CSS
The following code is a simple template for a CSS stylesheet.
/* global style */
BODY
{
overflow:hidden;
font-family:verdana;
margin:0;
padding:0;
}
/* class definition. Will apply to elements like */
a.selected, a.selected:visited
{
text-decoration:none;
color:#555555;
}
/* Object definiton. Will apply to elements like
*/
#header_section
{
position:absolute;
width:100%;
height:100px;
top:0px;
margin-left:13%;
}