@charset "utf-8";
/* CSS Document */

/* Body text and page background */
body{
	margin: 0;
	padding: 0;
	background-color: #9933FF;
	font-family: Georgia, "Times New Roman", Times, serif;
}	
a:link{ /*unvisited links (no underline) */
    color: #6600cc; /*purple*/
    text-decoration: none;
	outline:none;
}
a:visited{ /*visited links (no underline) */
	color: #6600CC; /*black*/
	text-decoration: none;
	outline:none;
}
a:hover{ /*hover links  */
	color: #9933FF; /*lavander*/
	text-decoration: underline;
}
a:active{ /*active links */
    color: #6600cc;
    text-decoration: underline;
	outline:none;
}

.reasonlist{
list-style-image: url('images2009/purpleball.jpg');
}

.reasonlist li{
/* Space between each list item */
margin-bottom:1em;
}
#wrapper {
	/*set layout width */
	width:49em;
	/* center the layout */
	margin:1em auto 5em auto;
	background: #ffffff;
}
#header {
	height: 80px;
	width: 100%;
	border-right-style: none;
	border-left-style: none;
	background: #ffffff;
	margin-bottom: 1em;
}
#sidebar {
	float: left;
	display: inline;
	padding: 0;
	margin: 1em;
	width:9em;
/* Actual width is 10em */
} 
#sidebar img{
    border:solid;
    border-color:#6600cc;
	border-width:thin;
	padding:0.25em;
	margin-bottom:1em;
}
#sidebar p{
    margin-top:2em;
	margin-bottom:1.5em;
}

/* Style for main content column */
#main{
	/* margin-left must equal */
/* total width of right sidebar */
    margin-right: 1em;
	margin-top: 3em;
	margin-bottom: 1em;
	margin-left: 11em;
	padding: 3em;
	background-color: #CC99FF;
	color: #000000;

}
#footer {
	clear: both;
	width: 100%;
	height: 120px;
}

