@charset "UTF-8";
body  {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#666666;
	font-size:12pt;
	background:url(images/headerBack.jpg) repeat-x;
	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 */
	background-color:#ebe9e9;
	line-height:20pt;
}
.hidden { display: none; }
.unhidden { display: block; }

a {
outline: 0;
} 

.twoColLiqRtHdr #signin {
font-size:10px;
font-weight:bold;
	float: left;
	width: 477px;
	height: 104px;
	padding-top: 5px;
	z-index:3;
	border:none;
}
.twoColLiqRtHdr #signin a{
	color:#7f0880;
text-decoration:none;
display:inline;
width:93px;
height:27px;
padding: 7px;
margin:2px;
background:url(images/SigninBack.jpg) no-repeat center;
	border:none;
}
.twoColLiqRtHdr #signin a:hover{
background:url(images/SigninBackHover.jpg) no-repeat center;	
	border:none;
}
.twoColLiqRtHdr #signin a.long{
color:#7f0880;
text-decoration:none;
display:inline;
width:128px;
height:27px;
padding: 7px 8px 7px 7px;
margin:2px;
background:url(images/SigninBackLONG.jpg) no-repeat center;
	border:none;
}
.twoColLiqRtHdr #signin a:hover.long{
background:url(images/SigninBackHoverLONG.jpg) no-repeat center;	
	border:none;
}
.twoColLiqRtHdr #puzzlehead {
	position:absolute;
	height: 308px;
	width: 871px;
	top: 25px;
	z-index:2; 
}
.twoColLiqRtHdr #container { 
	position:relative; 
	width: 871px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	
/*	width: 80%;   this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqRtHdr #container p { 
	margin:0;
	} 
.twoColLiqRtHdr #header {
	z-index:4;
	position:relative; 
	float:left;
	width:394p;
	height: 109px;
	margin: 0; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColLiqRtHdr #header p{
	position:relative; 
	margin: 0; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColLiqRtHdr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColLiqRtHdr #main_nav {
	z-index: 1000;
	position:relative; 
	margin:-10px 0 0 0; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColLiqRtHdr #main_nav p{
	margin:0; 
} 

.twoColLiqRtHdr #titlebar {
	margin:12px 0 0 0; 
	background:url(images/titleBackground.jpg);
	height: 68px;
} 
.twoColLiqRtHdr #titlebar h3{
	margin:0;
	padding-left: 15px;
	font-size:26pt;
	font-weight:100;
	color:#7f0880;
	line-height:68px;
	}
.twoColLiqRtHdr #pagecontainer {	
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	background-color:#FFFFFF;
	margin:0; 
}
.twoColLiqRtHdr #pagecontainer p{
	margin:0; 
}
 
/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqRtHdr #sidebar1 {
	margin: 0;
	width: 219px;
	padding: 0; /* top and bottom padding create visual space within this div  */
}

.twoColLiqRtHdr #sidebar1 ul {
	list-style:none;
	margin: 0;
	padding: 0;
	}
.twoColLiqRtHdr #sidebar1 li a{
	margin:0;
	padding-top:5px;
	text-indent: 30px;
	background-image:url(images/sidemenuBack.jpg);
	background-repeat:no-repeat;
	text-decoration: none;
	display: block;
	border: 0 none;
	height: 35px;
	font-weight:normal;
	color:#2b68a9;
	text-decoration:none;
}
.twoColLiqRtHdr #sidebar1 li a:hover{
	color:#7f0880;
	text-decoration:underline;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqRtHdr #mainContent { 
	padding: 10px 20px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0; /* the left margin should mirror the margin on the header and footer for proper alignment. */
}
.twoColLiqRtHdr #mainContent p { 
	text-align:left;
	font-weight:normal;
	padding-bottom: 20px;
} 
.twoColLiqRtHdr #mainContent #withicon p{ 
	padding-left: 48px;
	text-align:left;
	font-weight:normal;
}  
.twoColLiqRtHdr #mainContent h1{ 
	margin: 0;
	color:#2b68a9;
	font-size:16pt;
	font-weight:normal;
	padding-top: 20px;
	}
.twoColLiqRtHdr #mainContent h2{ 
	margin: 0;
	color:#2b68a9;
	font-size:14pt;
	font-weight:normal;
	} 
.twoColLiqRtHdr #mainContent h3{ 
	margin: 0;
	color:#7f0880;
	font-size:16pt;
	font-weight:normal;
	}
.twoColLiqRtHdr #mainContent h4{ 
	margin: 0;
	color:#7f0880;
	font-size:14pt;
	font-weight:normal;
	} 
.twoColLiqRtHdr #mainContent h5{ 
	margin: 0;
	color:#2b68a9;
	font-size:16pt;
	font-weight:normal;
	padding-top: 20px;
	}
.twoColLiqRtHdr #mainContent ul {
	margin: 0;
	text-decoration:none;
	padding-left: 60px;
	font-size: 11pt;
}

.twoColLiqRtHdr #mainContent a{ 
	color:#2b68a9;
	text-decoration:none;
	} 
.twoColLiqRtHdr #mainContent a:hover{ 
	color:#7f0880;
	text-decoration:underline;
	}
.twoColLiqRtHdr #mainContent .tablenormal{
	border:none;
	text-align:center;
	height:50px;
	}
.twoColLiqRtHdr #mainContent .tablenormal h1{
	margin:0;
	padding:0;	
	color:#2b68a9;
	text-align:center;
	font-weight:bold;
	font-size:10pt;
	}
.twoColLiqRtHdr #mainContent .tablenormal p{
	margin:0;
	padding:0;
	text-align:center;
	font-size:10pt;
	line-height:10px;
	color:#999999;
	}
.twoColLiqRtHdr #mainContent .tableblue{ 
	background-color:#eff4fa;
	border-style:solid;
	border-color:#CCCCCC;
	text-align:center;
	height:50px;	
	}
.twoColLiqRtHdr #mainContent .tableblue h1{
	margin:0;
	padding:0;	
	color:#2b68a9;
	text-align:center;
	font-weight:bold;
	font-size:	10pt;
	}
.twoColLiqRtHdr #mainContent .tableblue p{
	margin:0;
	padding:0;
	text-align:center;
	font-size:16pt;
	color:#999999;
	}
.twoColLiqRtHdr #mainContent .tablepurple{
	background-color:#f1e3f1;
	border-style:solid;
	border-color:#CCCCCC;
	text-align:center;
	height:50px;
	}
.twoColLiqRtHdr #mainContent .tablepurple h1{
	margin:0;
	padding:0;	
	color:#7f0880;
	text-align:center;
	font-weight:bold;
	font-size:	10pt;
	}
.twoColLiqRtHdr #mainContent .tablepurple h2{
	margin:0;
	padding:0;	
	color:#2b68a9;
	text-align:center;
	font-weight:bold;
	font-size:	10pt;
	line-height: 10px;
	}
.twoColLiqRtHdr #mainContent .tablepurple p{
	margin:0;
	padding:0;
	text-align:center;
	font-size:16pt;
	color:#999999;
	}

.twoColLiqRtHdr #mainContent #price1 .pricetitle{
	margin: 0;
	color:#2b68a9;
	font-size: 22px;
	line-height: 22px;
	font-weight:bold;
	padding: 42px 0 0 50px;	
}
.twoColLiqRtHdr #mainContent #price1 .pricetag{
	margin: 0;
	color:#7f0880;
	font-size: 34px;
	font-weight:bold;
	line-height: 34px;
	padding: 15px 0 0 50px;
}
.twoColLiqRtHdr #mainContent #price1 .line2{
	margin: 0;
	color:#2b68a9;
	font-size: 18px;
	line-height: 18px;
	font-weight:bold;
	padding: 0 0 0 0;

}
.twoColLiqRtHdr #mainContent #price1 .line3{
	margin: 0;
	color:#2b68a9;
	font-size: 14px;
	line-height: 14px;
	padding: 0 0 0 130px;
}
.twoColLiqRtHdr #mainContent #price1 .tagline{
	margin: 0;
	color:#7f0880;
	font-size: 14px;
	padding: 15px 0 0 50px;
	line-height:14px;
}
.twoColLiqRtHdr #mainContent #price1 .actionbutton{
	margin: 0;
	color:#FFFFFF;
	font-size: 18px;
	font-weight: bold;
	padding:15px 0 0 253px;
}
.twoColLiqRtHdr #mainContent #price2 .pricetitle{
	margin: 0;
	color:#2b68a9;
	font-size: 22px;
	line-height: 22px;
	font-weight:bold;
	padding: 42px 0 0 50px;	
}
.twoColLiqRtHdr #mainContent #price2 .pricetag{
	margin: 0;
	color:#7f0880;
	font-size: 34px;
	font-weight:bold;
	line-height: 34px;
	padding: 15px 0 0 50px;
}
.twoColLiqRtHdr #mainContent #price2 .line2{
	margin: 0;
	color:#2b68a9;
	font-size: 18px;
	line-height: 18px;
	font-weight:bold;
	padding: 0 0 0 0;

}
.twoColLiqRtHdr #mainContent #price2 .line3{
	margin: 0;
	color:#2b68a9;
	font-size: 14px;
	line-height: 14px;
	padding: 0 0 0 130px;
}
.twoColLiqRtHdr #mainContent #price2 .tagline{
	margin: 0;
	color:#7f0880;
	font-size: 14px;
	padding: 15px 0 0 50px;
	line-height:14px;
}
.twoColLiqRtHdr #mainContent #price2 .actionbutton{
	margin: 0;
	color:#FFFFFF;
	font-size: 18px;
	font-weight: bold;
	padding:0 0 0 255px;
}
.twoColLiqRtHdr #mainContent #pricetext {
	margin: 0;
	padding:20px 0 20px 30px;
}
.twoColLiqRtHdr #mainContent #price3 .pricetitle{
	margin: 0;
	color:#2b68a9;
	font-size: 22px;
	line-height: 22px;
	font-weight:bold;
	padding: 32px 0 0 50px;	
}
.twoColLiqRtHdr #mainContent #price3 .pricetag{
	margin: 0;
	color:#7f0880;
	font-size: 34px;
	font-weight:bold;
	line-height: 34px;
	padding: 15px 0 0 50px;
}
.twoColLiqRtHdr #mainContent #price3 .line2{
	margin: 0;
	color:#2b68a9;
	font-size: 18px;
	line-height: 18px;
	font-weight:bold;
	padding: 0 0 0 0;

}
.twoColLiqRtHdr #mainContent #price3 .line3{
	margin: 0;
	color:#2b68a9;
	font-size: 14px;
	line-height: 14px;
	padding: 0 0 0 130px;
}
.twoColLiqRtHdr #mainContent #price3 .tagline{
	margin: 0;
	color:#7f0880;
	font-size: 14px;
	padding: 15px 0 0 50px;
	line-height:14px;
}
.twoColLiqRtHdr #mainContent #price3 .actionbutton{
	margin: 0;
	color:#FFFFFF;
	font-size: 18px;
	font-weight: bold;
	padding:12px 0 0 255px;
}
.twoColLiqRtHdr #mainContent #price1 a:link {color: #FFFFFF;}
.twoColLiqRtHdr #mainContent #price1 a:hover {color: #FFFFFF; text-decoration:none;}
.twoColLiqRtHdr #mainContent #price1 a:visited {color: #FFFFFF;}
.twoColLiqRtHdr #mainContent #price2 a:link {color: #FFFFFF;}
.twoColLiqRtHdr #mainContent #price2 a:hover {color: #FFFFFF;text-decoration:none;}
.twoColLiqRtHdr #mainContent #price2 a:visited {color: #FFFFFF;}
.twoColLiqRtHdr #mainContent #price3 a:link {color: #FFFFFF;}
.twoColLiqRtHdr #mainContent #price3 a:hover {color: #FFFFFF;text-decoration:none;}
.twoColLiqRtHdr #mainContent #price3 a:visited {color: #FFFFFF;}

.twoColLiqRtHdr #mainContent .leftheading{
	margin: 0;
	color:#7f0880;
	font-size: 18px;
	font-weight: bold;
	padding:10px 0 0 60px;
	width: 140px;
	float: left;
}
.twoColLiqRtHdr #mainContent .midline1 {
	float: left;
	text-align: left;
	margin:0;
	color:#2b68a9;
	font-size: 18px;
	font-weight: normal;
	padding:0 0 0 20px;
	width: 420px;
}
.twoColLiqRtHdr #mainContent .midline2 {
	text-align: left;	
	margin: 0;
	color:#7f0880;
	font-size: 14px;
	font-weight: normal;
	padding:0 0 0 130px;
	line-height: 14px;
}
.twoColLiqRtHdr #mainContent .midline3 {
	text-align: left;	
	margin: 0;
	color:#7f0880;
	font-size: 14px;
	font-weight: normal;
	padding:0 0 0 250px;
	line-height: 14px;
}
.twoColLiqRtHdr #mainContent .action2 {
	float: left;
	text-align: left;	
	margin: 0;
	color:#FFFFFF;
	font-size: 18px;
	font-weight: bold;
	padding:18px 0 0 20px;
	line-height: 14px;
}
.twoColLiqRtHdr #mainContent .action2 a {
	color:#FFFFFF;
	}
.twoColLiqRtHdr #mainContent .action2 a:hover {
	color:#FFFFFF;
	text-decoration:none;
	}
.twoColLiqRtHdr #mainContent .leftheading2{
	margin: 0;
	color:#7f0880;
	font-size: 18px;
	font-weight: bold;
	padding:10px 0 0 60px;
	width: 580px;
	float: left;
}
.twoColLiqRtHdr #mainContent #addservices {
	margin: 0;
	padding-top: 20px;
}
.twoColLiqRtHdr #mainContent #addservices li {
	margin: 0;
	list-style:none;
	font-size:18px;	
	line-height: 36px;
}
.twoColLiqRtHdr #mainContent #addservices li a{
	padding-left: 20px;
}

.twoColLiqRtHdr #mainContent #addservices p{
	margin: 0;
	padding: 0 0 0 20px;
}
.twoColLiqRtHdr #mainContent #hiddendiv{
font-size:12px;
}

.twoColLiqRtHdr #mainContent #hiddendiv .answer{
padding: 0 0 15px 28px;
}

.twoColLiqRtHdr #mainContent #hiddendiv p{
margin: 0;
padding: 0 0 10px 0;
}



.twoColLiqRtHdr #footer {
	padding: 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/footerBack.jpg) repeat-x;
	background-color:#CCCCCC;
} 
.twoColLiqRtHdr #footer h1 {
	text-align:left;
	margin: 0;
	padding: 0;
	color:#666666;
	font-size:10pt;
}
.twoColLiqRtHdr #footer h5 {
	text-align:left;
	margin: 0;
	padding: 0;
	color:#666666;
	font-size:10pt;
}
.twoColLiqRtHdr #footer ul {
	font-size:10pt;
	text-align:left;
	padding: 0;
	margin: 0;
	list-style:none;
	text-decoration:none;
}
.twoColLiqRtHdr #footer li a {	
	text-decoration:none;
	text-align:left;
	color:#999999;
}
.twoColLiqRtHdr #footer li a:hover {
	text-align:left;
	color:#666666;
}
.twoColLiqRtHdr #footer p {
	text-align:left;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#999999;
	font-size: 9pt;
}
.twoColLiqRtHdr #footer .small {
	font-size:8pt;
	line-height: 14px;
	color:#999999;
}
.twoColLiqRtHdr #footer #follow {
	padding-left: 25px;
}
.twoColLiqRtHdr #footer .small a {
	font-size:8pt;
	line-height: 14px;
	color:#999999;
}
.twoColLiqRtHdr #footer .button {
	background-color:#f1e3f1;
	border:thin;
}
.twoColLiqRtHdr #footer2 h5 {
	text-align:center;
	margin: 0;
	padding: 10px 0 0 0;
	color:#999999;
	font-size:9pt;
	font-weight:normal;
}
.twoColLiqRtHdr #footermeta {
	text-align:center;
	margin: 0;
	padding: 10px 0 0 0;
	color:#999999;
	font-size:8pt;
	font-weight:normal;
}

/* Miscellaneous classes for reuse */
.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. The floated element must precede the element it should be next to 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;
}
#slideshow { 
	z-index:1;
	position: relative;
	width: 871px;
	height: 206px;
	overflow: hidden;
	}
#slideshow img { 
	z-index:1;
	display: block; 
	width: 871px;
	height: 206px;
}

/* Easy Slider */
#slider {
	width:871px;
	height: 206px;
	margin:0;
	padding: 0;
}

	#slider ul, #slider li,
	#slider2 ul, #slider2 li{
		margin:0;
		padding:0;
		list-style:none;
		}
	#slider2{margin-top:1em;}
	#slider li, #slider2 li{ 
		/* 
			define width and height of list item (slide)
			entire slider area will adjust according to the parameters provided here
		*/ 
		width:871px;
		height:206px;
		overflow:hidden; 
		}	
	#prevBtn, #nextBtn,
	#slider1next, #slider1prev{ 
		display:block;
		width:30px;
		height:77px;
		position:absolute;
		left:-30px;
		top:71px;
		z-index:1000;
		}	
	#nextBtn, #slider1next{ 
		left:696px;
		}														
	#prevBtn a, #nextBtn a,
	#slider1next a, #slider1prev a{  
		display:block;
		position:relative;
		width:30px;
		height:77px;
		background:url(../images/btn_prev.gif) no-repeat 0 0;	
		}	
	#nextBtn a, #slider1next a{ 
		background:url(../images/btn_next.gif) no-repeat 0 0;	
		}	
		
	/* numeric controls */	

	ol#controls{
		margin:1em 0;
		padding:0;
		height:28px;	
		}
	ol#controls li{
		margin:0 10px 0 0; 
		padding:0;
		float:left;
		list-style:none;
		height:28px;
		line-height:28px;
		}
	ol#controls li a{
		float:left;
		height:28px;
		line-height:28px;
		border:1px solid #ccc;
		background:#DAF3F8;
		color:#555;
		padding:0 10px;
		text-decoration:none;
		}
	ol#controls li.current a{
		background:#5DC9E1;
		color:#fff;
		}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
	
/* // Easy Slider */


