@charset "utf-8";

/* SETTING PAGE DEFAULTS: */
body  
{
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0; 
	padding: 0;
	font-size:12px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/* MAIN PAGE ENCLOSURE */
.virtualWhere #container 
{ 
	width: 800px; 
	background: #B3D670;
	margin: 0 auto 0 0; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/* HEADER AREA */
.virtualWhere #header 
{ 
	padding: 0 10px 0 20px; 
	height:146px; 
	background-image:url(../images/banner.jpg);
	background-repeat:no-repeat;
} 
.virtualWhere #header h1 
{
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
}
/* SIDEBAR / LEFT NAVIGATION AREA */
.virtualWhere #sidebar 
{
	float: left; /* since this element is floated, a width must be given */
	width: 170px;
	background-image:url(../images/nav-base.jpg);
	background-repeat:repeat-y;
	
}
.virtualWhere #sidebarTop
{
	margin:0;
	padding:0;
	background-image:url(../images/nav-top.jpg);
	background-repeat:no-repeat;
	height:48px;
	width:170px;
}
.virtualWhere #sidebarContent
{
	background-image:url(../images/nav-mid.jpg);
	background-repeat:repeat-y;
	padding-bottom:20px;
	margin: 0;
}
.virtualWhere #sidebarContent div.nav-link
{
	background-color:#FFFFFF;
	border-color:#000000;
	border:#000 solid thin;
	height:25px;
	margin-left:15px;
	margin-bottom:15px;
	padding-top:5px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:5px;
	width:135px;
}
.virtualWhere #sidebarContent div.nav-link a:link, .virtualWhere #sidebarContent div.nav-link a:visited
{
	color:#000000;
	text-decoration:none;
}
.virtualWhere #sidebarContent div.nav-link a:hover, .virtualWhere #sidebarContent div.nav-link a:active
{
	color:#0C0;
	text-decoration:none;
}
.virtualWhere #sidebarBase
{
	background-image:url(../images/nav-base.jpg);
	background-repeat:no-repeat;
	width:170px;
	height:100px;
	margin: 0;
}
/* HORIZONTAL NAVIGATION AREA */
.virtualWhere #horizontalNav
{
	background-color:#B3D670;
	height:30px;
	text-align:center;
}
.virtualWhere #horizontalNav span a:link, .virtualWhere #horizontalNav span a:visited
{
	color:#000;
	padding: 0 20px 0 20px;
}
.virtualWhere #horizontalNav span a:hover, .virtualWhere #horizontalNav span a:active
{
	color:#FFF;
	padding: 0 20px 0 20px;
}
/* MAIN CONTENT / BODY AREA */
.virtualWhere #mainContent 
{ 
	margin: 0 0 0 170px; /* the left margin on this div element creates the column down the left side of the page */
	padding: 16px 16px;
	background-image:url(../images/body.jpg);
	background-repeat:no-repeat;
	background-color:#FFF;
} 
.virtualWhere #contentBase 
{ 
	margin: 0 0 0 170px; /* the left margin on this div element creates the column down the left side of the page */
	padding: 16px 16px;
	background-image:url(../images/body-base.jpg);
	background-repeat:no-repeat;
	background-color:#FFF;
} 
/* FOOTER AREA */
.virtualWhere #footer 
{ 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#B3D670;
	text-align:center;
	font-size:10px;
} 
.virtualWhere #footer p 
{
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.virtualWhere #footer p a:link, .virtualWhere #footer p a:visited
{
	color:#000;
	text-decoration:none;
}
.virtualWhere #footer p a:hover, .virtualWhere #footer p a:active
{
	color:#FFF;
	text-decoration:none;
}
.fltrt 
{ /* this class is used to float an element right on the page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft 
{ /* this class can be used to float an element left on the page */
	float: left;
	margin-right: 8px;
}
.clearfloat 
{ /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.green-links {
	color:#669933;
	text-decoration:underline;
}	

.green-links a:link
{
	color:#669933;
	text-decoration:underline;
}
.green-links a:visited
{
	color:#669933;
	text-decoration:underline;
}
.green-links a:hover
{
	color:#669933;
	text-decoration:underline;
}
.green-links a:active
{
	color:#669933;
	text-decoration:underline;
}
.black-links {
	color:#000;
	text-decoration:underline;
}	

.black-links a:link
{
	color:#000;
	text-decoration:underline;
}
.black-links a:visited
{
	color:#000;
	text-decoration:underline;
}
.black-links a:hover
{
	color:#000;
	text-decoration:underline;
}
.black-links a:active
{
	color:#000;
	text-decoration:underline;
}

