/* BASIC AND SITE-WIDE PROPERTIES */
body { 	/* controls the basic properties for every content page, unless overridden*/
	background: white url("../graphics/bgblue03.jpg") fixed;*/ 	/* white background with the watermark over it, 'fixed' sets it so the watermark doesn't move when people scroll down*/
	color: #000000;  	/* makes all text black*/
	font-size: medium; 	/* makes all text average sized*/
	margin-top: 0; 	/* margins around all content on the page*/
	margin-left: 15;
	margin-right: 0;
	margin-bottom: 0;
	width: 88%; 	/* keeps the column from getting too wide on wide monitors*/
	}

div { 	/* sets the basic properties for chunks of stuff on the pages*/
	margin-top: 1em; 	/* adds a little extra vertical space*/
	margin-left: 0em;
	margin-right: 0;
	color: #000000; 	/* makes text black*/
	font-weight: 400; 	/* makes text a bit bold*/
	}

div { 	/* sets the basic properties for paragraphs of text on the pages*/
	margin-top: 1em; 	/* adds a little extra vertical space*/
	margin-left: 0em;
	margin-right: 0;
	line-height: 1.1em; 	/* puts a little extra space between lines of text*/
	text-indent: 1em; 	/* indents the first line of text, paragraph-style*/
	color: #000000;
	font-weight: 400;
	}

h2 { 	/* controls properties for the top heading on every content page*/
	margin-left: 3em; 	/* indents it from the left*/
	padding-bottom: 0; 	/* keeps it from putting too much space below*/
	border-bottom: 2px solid #000060; 	/* inserts blue margin from left edge of text to right edge of page*/
	text-align: left;
	letter-spacing: .1em; 	/* sprawls the letters out a bit*/
	color: #000060;
	font-variant: small-caps; 	/* makes the text be... well, small caps*/
*/
	}

h3 { 	/* properties for sub-headings*/
	color: #000060; 	/* makes text dark blue*/
	text-align: left; 	/* sticks it along the left edge*/
	}

/* STYLES TO DEFINE LINKS */

A { 	/* controls the basic look of links: designed to make them look as standard as possible*/
	color: #0000ff; 	/* bright blue*/
	text-decoration: underline; 	/* underlined*/
	}
	
A:hover { 	/* to change them when the mouse hovers over them*/
	color: #ff0000; 	/* they turn red*/
	text-decoration : underline;
	}
   
A:visited { 	/* to make them look the original way after they've been clicked on*/
	color: #0000ff;
	text-decoration: underline;
	}
   
a.email { 	/* properties to make e-mail links (ie, on contact.html) look different*/
	font-weight: bold;
	}

/* DEFAULT STYLES FOR TABLES */
table { 	/* no borders for tables, all centered; other properties to be defined locally*/
	border: 0;
	text-align: center;
	}

td {
	align: left;
	vertical-align: top;
	}

td.wages { 	/* to format wage amounts on wages.html as dollar amounts*/
	width: 30%;
	text-align: right;
	font-weight: 200;
	}
	
th { 	/* controls row and column headings in tables*/
	font-weight: bold; 	/* heavier*/
	color: #000060; 	/* dark blue*/
	}

/* 	MISCELLANEOUS STYLES */
.copyright { 	/* for the copyright statement if moved to the homepage*/
	text-align: center;
	font-size: x-small;
	color: white;
	}

marquee { 	/* controls for the announcement box at the top of the main page*/
	margin: 15 8% 0 8%; 	/* moves it down a little ways and less the 100% wide*/
	padding: 10 2 10 2; 	/* puts some space around the text*/
	border-top: 3 solid #ffffff; 	/* internet explorer didn't seem to render the top margin; this achieves the same effect*/
	background: #000040; 	/* basic background the same dark blue as the navigation frames*/
	color: white; 	/* text to be white*/
	font-weight: bold; 	/* text to be bold*/
	}
marquee.important { 	/* makes the box orange for important announcements*/
	background: orange;
	}
marquee.urgent { 	/* makes the box red for really important announcements*/
	background: red;
	}
	
img a { 	/* properties for images used as links (ie, the map used to link to mapquest)*/
	border: 2px solid black; 	/* puts a border around them*/
	}
	
/* 	PLAIN TAG TO COPY AND PASTE
blah {
	}
	
	*/