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

/*this is the styling for the body of the page*/
body {
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	background: #fff;
	color:#666666;
	}
	
/* this is layout*/
#wrap {
	max-width: 1200px;
	}
	
/* this is styling for the header area*/	
#header {
	margin: 0;
	padding: 10px 20px;
	background: #FFFFFF;
	border-bottom:medium;
	border-bottom-style:double;
	}
	
/* this is the styling for the header text*/	
#header h1 {
	margin: 0;
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	}
	
/* this is the styling for the h2 text in the header area*/
#header h2{
	font-style:italic;
	font-size:120%;
	color: #666666;
	}
		
/* this is the styling for the h2 text in the body area*/		
body h2 {	
	color: #6699CC;
	}
		
/*this is layout*/
#navbar {
	float: left;
	width: 25%;
	
	}
#navbar div {
	padding: 30px 10px 0 20px;
	
	}
#rightcontent {
	float: right;
	width: 75%;
	}
#rightcontent div {
	padding: 20px;
	border-left:medium;
	border-left-style:double;
	}
	
/*this is the styling for the footer*/	
#footer {
	clear: both;
	padding: 10px 20px;
	background: #999999;
	color:#ffffff;
	}

/*this is the styling for the links*/	
a {
	text-decoration:none;
	font-weight: bold;
	font-size: 16px;
	font-family:Verdana, Arial, Helvetica, sans-serif}

a:link {
    color:#6699CC;
    	}
a:visited {
	color: #333333;
		}
a:hover {
	color: #6699CC;
		}
a:active {
	color: #993366;
		}
	
