@charset "utf-8";
body  {
	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;
	background-image: url(../home-images/purple_gears.gif);
	background-repeat: no-repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
.twoColFixRtHdr #container	{
	position: relative;
	top: 0px;
	left: 0px;
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	min-height: 100%;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../home-images/cw_bg.png);
	background-repeat: no-repeat;
}
.twoColFixRtHdr #header {
	height: 150px;
	padding-top: 0;
	padding-bottom: 0;
} 

.twoColFixRtHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #header img{
	padding-top: 0px;
	padding-bottom: 0;
	padding-right: 0px;
} 
.twoColFixRtHdr #column1 {
	float: left; /* since this element is floated, a width must be given */
	width: 315px; /* padding keeps the content of the div away from the edges */
	margin-left: 20px;
	margin-top: 0px;
	background-image: url(../home-images/body-box1-slice.gif);
	background-repeat: repeat;
	border: thin inset #cdc1b2;
	min-height:295px;

}
.twoColFixRtHdr #column1 p{
	padding-right: 10px;
	padding-left: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.twoColFixRtHdr #column1 h3{
	/*text-align: center;*/
	padding-left: 20px;
	text-transform: uppercase;
	color: #3e1866;
	font-size: 17px;
	font-family: Helvetica, Arial;
	font-weight: bold;
	
}
.twoColFixRtHdr #column1-header h3{
	background:url(../home-images/body-box1-header.png)
 no-repeat;
	height:61px;
	margin: 0px;
	font-family: Helvetica, Arial;
	font-size: 17px;
	font-weight: bold;
	padding-top: 5px;
 }
.twoColFixRtHdr #column2 {
	float: left;  /*since this element is floated, a width must be given */
	width: 301px; /* padding keeps the content of the div away from the edges */
	margin-top: 0px;
	margin-left: 4px;
	background-color: #FFFFFF;
	min-height:297px;

}
.twoColFixRtHdr #column2 p{
	padding-right: 10px;
	padding-left: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.twoColFixRtHdr #column2 h3{
	/*text-align: center;*/
	padding-left: 20px;
	text-transform: uppercase;
	color: #3e1866;
	font-family: Helvetica, Arial;
	font-size: 17px;
	font-weight: bold; 
	
}
.twoColFixRtHdr #column2-header h3{
	background:url(../home-images/body-box2-header.png)
 no-repeat;
	height:61px;
	margin: 0px;
	font-family: Helvetica, Arial;
	font-size: 17px;
	font-weight: bold;
	padding-top: 5px;

 }
.twoColFixRtHdr #column3 {
	float: right; /* since this element is floated, a width must be given */
	width: 314px; /* padding keeps the content of the div away from the edges */
	background-image: url(../home-images/body-box3-slice.gif);
	background-repeat: repeat;
	margin-right: 20px;
	min-height:484px;
}
.twoColFixRtHdr #column3 p{
	padding-right: 10px;
	padding-left: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.twoColFixRtHdr #column3 h3{
	/*text-align: center;*/
	padding-left: 20px;
	text-transform: uppercase;
	color: #3e1866;
	font-family: Helvetica, Arial;
	font-size: 17px;
	font-weight: bold; 
	
}
.twoColFixRtHdr #column3-header h3{
	background:url(../home-images/body-box3-header.png)
 no-repeat;
	height:61px;
	margin: 0px;
	font-family: Helvetica, Arial;
	font-size: 17px;
	font-weight: bold;
	padding-top: 5px;

 }
 .twoColFixRtHdr #bottom-column1 {
	float: left; /* since this element is floated, a width must be given */
	width: 316px; /* padding keeps the content of the div away from the edges */
	margin-left: 20px;
	margin-top: 0px;
	background-color: #fcf7d4;
	min-height:150px;
	
}
.twoColFixRtHdr #bottom-column1 p{
	padding-right: 0px;
	padding-left: 0px;
}

.twoColFixRtHdr #bottom-column2 {
	float: left;  /*since this element is floated, a width must be given */
	width: 302px; /* padding keeps the content of the div away from the edges */
	margin-top: 0px;
	margin-left: 4px;
	background-color: #fcf7d4;
	min-height:150px;
}
.twoColFixRtHdr #bottom-column2 p{
	padding-right: 10px;
	padding-left: 20px;
}

.twoColFixRtHdr #footer {
	height: 50px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFFFFF;
	font-size: 10px;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.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;
}
#under-nav-space{
	height:11px;
	
}
#jquery {
	height:339px;
}

#under-jquery {
	height:10px;
	margin-top: 0px;
	margin-bottom: 0px;
}

#under-top-boxes1 {
	/*height:44px;*/
	float: left;
	width: 300px;
	margin-left: 20px;
	margin-top:0px;
}
#under-top-boxes1 h1{
	font-family: "Times New Roman", Times, serif;
	font-style: normal;
	font-size: 27px;
	text-align: left;
	color: #fcf7d4;
	font-weight: normal;
	margin-bottom: 3px;
	margin-top: 2px;
	padding-left: 20px;
	text-shadow: 2px 2px 2px #000;	
}
#under-top-boxes2 {
	float: left;  /*since this element is floated, a width must be given */
	width: 301px; /* padding keeps the content of the div away from the edges */
	margin-left: 12px;
	margin-top:0px;
}
#under-top-boxes2 h1{
	font-family: "Times New Roman", Times, serif;
	font-style: normal;
	font-size: 27px;
	text-align: left;
	color: #fcf7d4;
	font-weight: normal;
	margin-bottom: 3px;
	margin-top:2px;
	padding-left: 20px;
	text-shadow: 2px 2px 2px #000;
}
#over-top-boxes1 {
	/*height:44px;*/
	float: left;
	width: 315px;
	margin-left: 20px;
	margin-top:0px;
}
#over-top-boxes1 h1{
	font-family: "Times New Roman", Times, serif;
	font-style: normal;
	font-size: 43px;
	text-align: left;
	color: #fcf7d4;
	margin-bottom: 0px;
	margin-top: 2px;
	padding-left: 20px;
	text-shadow: 2px 2px 2px #000;
	font-weight: normal;	
}
#over-top-boxes2 {
	float: left;  /*since this element is floated, a width must be given */
	width: 301px; /* padding keeps the content of the div away from the edges */
	margin-left: 12px;
	margin-top:0px;
}
#over-top-boxes2 h1{
	font-family: "Times New Roman", Times, serif;
	font-style: normal;
	font-size: 43px;
	text-align: left;
	color: #fcf7d4;
	margin-bottom: 0px;
	margin-top:2px;
	padding-left: 13px;
	text-shadow: 2px 2px 2px #000;
	font-weight: normal;
}
#over-top-boxes3 {
	float: left;
	width: 314px;
	margin-left: 13px;
	margin-top:0px;
}
#over-top-boxes3 h1{
	font-family: "Times New Roman", Times, serif;
	font-style: normal;
	font-size: 43px;
	text-align: left;
	color: #fcf7d4;
	margin-bottom: 0px;
	margin-top:1px;
	margin-left: 7px;
	text-shadow: 2px 2px 2px #000;
	font-weight: normal;
}
#ds-left	{position: absolute; top: 0px; left: -20px; width: 20px; height: 100%; margin-left: auto; margin-right: auto;}
#dsl0, #dsl1, #dsl2, #dsl3, #dsl4, #dsl5, #dsl6, #dsl7, #dsl8, #dsl9	{position: absolute; top: 0px; width: 2px; height: 100%;}	
#dsl0	{
	left: 0px;
	background-image: url(../home-images/shadows/01.png);
	background-repeat: repeat-y;
}
#dsl1	{left: 2px; background-image: url(../home-images/shadows/02.png);
	background-repeat: repeat-y;}
#dsl2	{left: 4px; background-image: url(../home-images/shadows/03.png);
	background-repeat: repeat-y;}
#dsl3	{left: 6px; background-image: url(../home-images/shadows/05.png);
	background-repeat: repeat-y;}
#dsl4	{left: 8px; background-image: url(../home-images/shadows/07.png);
	background-repeat: repeat-y;}
#dsl5	{left: 10px; background-image: url(../home-images/shadows/10.png);
	background-repeat: repeat-y;}
#dsl6	{left: 12px; background-image: url(../home-images/shadows/13.png);
	background-repeat: repeat-y;}
#dsl7	{left: 14px; background-image: url(../home-images/shadows/17.png);
	background-repeat: repeat-y;}
#dsl8	{left: 16px; background-image: url(../home-images/shadows/21.png);
	background-repeat: repeat-y;}
#dsl9	{left: 18px; background-image: url(../home-images/shadows/25.png);
	background-repeat: repeat-y;}
	
#ds-rite	{position: absolute; top: 0px; right: -20px; width: 20px; height: 100%; margin-left: auto; margin-right: auto;}
#dsr0, #dsr1, #dsr2, #dsr3, #dsr4, #dsr5, #dsr6, #dsr7, #dsr8, #dsr9	{position: absolute; top: 0px; width: 2px; height: 100%;}	
#dsr9	{left: 18px; background-image: url(../home-images/shadows/01.png);
	background-repeat: repeat-y;}
#dsr8	{left: 16px; background-image: url(../home-images/shadows/02.png);
	background-repeat: repeat-y;}
#dsr7	{left: 14px; background-image: url(../home-images/shadows/03.png);
	background-repeat: repeat-y;}
#dsr6	{left: 12px; background-image: url(../home-images/shadows/05.png);
	background-repeat: repeat-y;}
#dsr5	{left: 10px; background-image: url(../home-images/shadows/07.png);
	background-repeat: repeat-y;}
#dsr4	{left: 8px; background-image: url(../home-images/shadows/10.png);
	background-repeat: repeat-y;}
#dsr3	{left: 6px; background-image: url(../home-images/shadows/13.png);
	background-repeat: repeat-y;}
#dsr2	{left: 4px; background-image: url(../home-images/shadows/17.png);
	background-repeat: repeat-y;}
#dsr1	{left: 2px; background-image: url(../home-images/shadows/21.png);
	background-repeat: repeat-y;}
#dsr0	{left: 0px; background-image: url(../home-images/shadows/25.png);
	background-repeat: repeat-y;}
