
body {
	color: #000000;
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
	text-align: center;
	font-size: 14px;
	font-family: Georgia, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/******* hyperlink and anchor tag styles *******/

a:link, a:visited {
	color: #000099;
	text-decoration: underline;
}

a:hover {
	color: #3366FF;
	text-decoration: underline;;
}

/************** text styles **************/

.header {
	font-size: 16px;
	font-weight:bold;
	padding-left: 30px;
	padding-right: 30px;
}

.text {
	padding-left: 30px;
	padding-right: 30px;
}

.footer {
	font-size: 12px;
}

/********* layout styles *********/

#master {
	position: relative;
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	text-align: left;
}

#sidebar{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 240px;
}


#content{
	position: absolute;
	top: 0px;
	left: 240px;
	width: 740px;
	background-image: url(img/background.jpg);
	background-repeat: repeat-y;
	background-position: left;
}


