@charset "utf-8";
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color:#f1f5fa;
	background-image:url(prillbeads-bg.jpg);
	background-repeat:repeat-x;
	margin: 0;
	padding: 0;
	color:#333;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0;
	text-align: left; 
} 
#header { 
	background-image:url(prillbeads-header.jpg);
	background-repeat:no-repeat;
	height:44px;
	padding: 170px 10px 0 250px; 
} 
#header h1 {
	margin: 0;
	padding: 20px 0 0;
	font-size:16px;
}
#sidebar1 {
	float: left; 
	width: 200px; 
	padding: 15px 0 15px 0;
}
#sidebar1 a:active, #sidebar1 a:visited, #sidebar1 a:link {
	display:block;
	background-image:url(prillbeads-button-out.jpg);
	background-repeat:no-repeat;
	height:42px;
	width:161px;
	text-decoration:none;
	color:#2c33df;
	font-size:12px;
	font-weight:bold;
	padding:15px 0 0 30px;
}

#sidebar1 a.final {
	height:70px;
}

#sidebar1 a:hover {
	background-image:url(prillbeads-button-over.jpg);
	color:#F00;
}
#mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 0 0 15px;
	width:250px;
} 
#footer p {
	margin: 0; 
	padding: 0;
	font-size:9px;
}

#footer a {
	color:#CCC;
	text-decoration:none;
}
.fltrt { /* this class can be used to float an element right in your 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 in your 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;
}