@charset "utf-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CCCCCC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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;
}
.body1 #container1 {
	width: 800px; 
	background: #CCCCCC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.body1 #mainContent {
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}



/*  The total width/height of the square elements below is 150px:
width:100px;
padding:15px;
border:0px
margin:10px;

100 (width/height)
+ 30 (left and right padding)
+ 0 (left and right border)
+ 20 (left and right margin)
= 150 
*/



.body1 .subContent1, .subContent2, .subContentImg {
    
	float:left;

	width:100px;
	height:100px;
    padding:15px;
    border:0px;
    margin:10px;
	
	background-color:#666666;
	color:#FFFFFF;
	font-size:14px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}



/* adjust width of .subContent2 to double */
.subContent2 {width:250px;}



/* adjust BG of .subContentImg */
.subContentImg { background-color:transparent; }



/* link formatting for .subContent1 */
.subContent1 a:link { text-decoration:none; color:#ffffff;  }
.subContent1 a:visited { text-decoration:none; color:#ffffff;  }
.subContent1 a:active { text-decoration:none; color:#ffffff; }
.subContent1 a:hover { text-decoration:none; color:#ffffff; background-color:#42b0b0;  }


/* link formatting for .subContent2 */
.subContent2 a:link { text-decoration:none; color:#ffffff;  }
.subContent2 a:visited { text-decoration:none; color:#ffffff;  }
.subContent2 a:active { text-decoration:none; color:#ffffff;  }
.subContent2 a:hover { text-decoration:none; color:#ffffff; background-color:#cc6600;  }


/* .lines4 positioning */
.lines4 
{ 
position:relative;
top:17px;
}

/* .lines4 link formatting */
.lines4 a:link { text-decoration:none; color:#ffffff; }
.lines4 a:visited { text-decoration:none; color:#ffffff; }
.lines4 a:active { text-decoration:none; color:#ffffff; }
.lines4 a:hover { text-decoration:none; color:#ffffff; background-color:#42b0b0; }

/* .lines3 positioning */
.lines3 
{ 
position:relative;
top:36px;
}

/* .lines3 link formatting */
.lines3 a:link { text-decoration:none; color:#ffffff; }
.lines3 a:visited { text-decoration:none; color:#ffffff; }
.lines3 a:active { text-decoration:none; color:#ffffff; }
.lines3 a:hover { text-decoration:none; color:#ffffff; background-color:#42b0b0; }

/* .lines2 positioning */
.lines2 
{ 
position:relative;
top:53px;
}

/* .lines2 link formatting */
.lines2 a:link { text-decoration:none; color:#ffffff; }
.lines2 a:visited { text-decoration:none; color:#ffffff; }
.lines2 a:active { text-decoration:none; color:#ffffff; }
.lines2 a:hover { text-decoration:none; color:#ffffff; background-color:#cc6600; }








/* clear float */
.clear { clear:both; }





/*  The total width/height of the footer below is 750px:
width:100px;
padding:15px;
border:0px
margin:10px;

700 (width/height)
+ 30 (left and right padding)
+ 0 (left and right border)
+ 20 (left and right margin)
= 750 
*/


/* footer */
.footer1 {
    
	width:700px;
	height:100px;
    padding:15px;
    border:0px;
    margin:10px;
	
	background-color:transparent;
	color:#666666;
	font-size:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* .footer1 link formatting */
.footer1 a:link { text-decoration:none; color:#666666; }
.footer1 a:visited { text-decoration:none; color:#666666; }
.footer1 a:active { text-decoration:none; color:#666666; }
.footer1 a:hover { text-decoration:none; color:#ffffff; background-color:#cc6600; }




/* header & text formatting attributes */

h1 {
color:#666666; 
font-size:18px;
font-weight:400;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

h2 {
padding:0px;
margin:0px;
color:#FFFFFF; 
font-size:18px;
font-weight:200;
font-family:Verdana, Arial, Helvetica, sans-serif;
}


/* smaller text */

.smallerText {
padding:0px;
margin:0px;
color:#FFFFFF; 
font-size:10px;
font-weight:200;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* smallerText link formatting */
.smallerText a:link, a:visited, a:active { text-decoration:none; color:#ffffff; padding:0px; }
.smallerText a:hover { text-decoration:none; color:#ffffff; background-color:#cc6600; padding:0px; }




