/*****     Formatting for common html elements     *****/

body {
	background-color : #F5F5F5;
}

/* paragraphs will highlight links when mouseOver on the paragraph */
p {
	color: #000000;
	font-size: medium;
}

p a {
	color: #333333;
}

p:hover a {
color: blue;
}

p a:hover {
color: red;
}

.basefont, a {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}

.basefontlinks {
	background-color: #0038ff;
}

td {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size: smaller;
}

/*****     Formatting for layout DIV elements     *****/
.navhead {
	font-size : medium;
	font-weight : bold;
}

div.nav {
	font-size : medium;
	margin-left : 10px;
}

div.links {
	top: 10px;
	left: 5px;
	vertical-align : top;
	width: 170px;
}

div.content {
     top: 10px;
     left: 10px;
	width : 600px;
}

div.sectionheader {
	position: relative;
	width: 560px;
	margin: 5px;
	padding: 3px;
	float: left;
	height: 20px;
	font-weight : bold;
	color : White;
	background-color : Blue;
	font-size : medium;
	padding-left : 10px;
}

div.section {
	position: relative;
	width: 560px;
	margin: 2px;
	padding: 2px;
	float: left;
}

/*****     Formatting for footer table element     *****/
div.box {
	border: thin solid Blue; 
	width: 550px; 
	margin-left: 175px;
}

table.footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: smaller;
	color: Black;
	text-align : center;
}

/* Formatting for input text boxes on purchase page */
INPUT.money {
	text-align : right;
}

INPUT.moneytotal{
	text-align : right;
	font-weight : bold;
}

