/*Dreamweaver Cascading Style Sheet - COP 2823
maindw4a9.css to use with maindw4a9.html*/

/* Styles*/ 

/*Tag selector, exported from dreamweaver file -- sets font (family, size, color) and sets background color for page*/
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #334641;
	background-color: #62887D;
}
/*Tag selector, exported from dreamweaver file - sets text size, color, and aligns left*/
p {
font-size: 12px;
color: #000000;
text-decoration: none;
text-align: left;
}

/* These are Pseudo-Class Selectors */
a:link {
	color: #62887D;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

a:visited {
	text-decoration: none;
	color: #62887D;
}

a:hover {
	text-decoration: none;
	color: #000000;
	background-color: #D9DFDD;
}

a:active {
	text-decoration: none;
	color: #466259;
}

/*These are Tag Selectors */

h1 {
	font-size: 18px;
	color: #334641;
}

h2 {
	font-size: 16px;
	color: #334641;
	font-weight: bold;
}

h3 {
	font-size: 14px;
	color: #334641;
}

/* This is an ID Selector */
/*sets table layout with background and border and width*/
#tablelayout {
	background-color: #D9DFDD;
	width: 800px;
	border: 5px solid #d9dfdd;
}

/*This is a Tag Selctor for the Table */
/*sets the table borders inside to 1px, solid, purple and gives 5px of padding all around, and collapses border (which apparently does not work in Netscap Nav 6.0)*/
table, th, td {
	border: 1px solid #d9dfdd;
	border-collapse: collapse;
	padding: 5px 5px 5px 5px;
}
/*This is an ID selector*/

#topnav {
	color: #62887D;
	font-size: small;
	font-variant: small-caps;
	font-weight: bold;
}
