/* styles/style1.css
   October 19, 2005
   First attempt at applying CSS to an entire site.
   Let's see how it goes!
 */

body {
	margin: 0;
	padding: 0;
	background-color: #777;
	color: #fff;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}

h1 { 
	line-height: 120%;
}

h3 {
	line-height: 120%;
}

code {
	font-size: small;
}

a:link {
	color: #fff;
	text-decoration: underline; 
	background-color: transparent;
}

a:visited {
        color: #fff;
        text-decoration: underline;
        background-color: transparent;
}

a:hover {
        color: #c00;
        text-decoration: overline;
        background-color: transparent;
}

#banner {
	background-image: url(/images/banner.jpg);
	background-repeat: no-repeat;
	background-position: top left;
	border-style: solid;
	border-color: #444;
	border-width: 1px;
	width: 770px;
	height: 150px;
	margin: 0 auto;
	padding: 0;
}

#textBlock {
	margin-left: 150px;
	margin-right: 150px;
	line-height: 150%;
}

#textBox {
	position: relative;
	width: 25%;
	padding: 10px;
	border-color: #fff;
	border-width: 1px;
	border-style: solid;
}

#navBar {
	color: white;
	font-size: 9px;
	line-height: 16px;
	background-color: #555;
	text-align: center;
	letter-spacing: 6px;
	margin-bottom: 15px;
	height: 16px
}

#footer {
	margin-top: 150px;
        color: white;
        font-size: 9px;
        line-height: 16px;
        background-color: #555;
        text-align: center;
        letter-spacing: 6px;
        margin-bottom: 15px;
        height: 16px
}

#dateText {
	font-weight: bold;
	color: white;
	margin-left: -25px;
}

#headingText {
        font-weight: bold;
        color: white;
        margin-left: -25px;
}

#codeText {
	font-family: "Courier New", Courier, monospace;
	color: white;
	line-height: 100%;
}
