@charset "UTF-8";
body  {
	font: 12px Arial, Helvetica, Verdana, sans-serif;
	background: #e6e1d3;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	margin-top: 0px;
	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: #333;
	line-height: 24px;
	/*	background-image: url(../images/intro/background.gif);
		background-position:center;
		background: url(../images/intro/background.gif) white center fixed;*/
}
img { border: 0; }

.introBody { background: #cadca5; margin: 30px; text-align:center; }
.introBody .topWords { text-align:center; margin-top:0px; margin-bottom:20px; 
            font-family: 'Bauderie new06', Times New Roman, Times, serif;
	        font-size: 19px; color: #333;
	       }

p  {
	font: 12px Arial, Helvetica, Verdana, sans-serif;
	margin: 0; 
	margin-top: 4px;
	padding: 0;
	text-align: left; 
	color: #333;
	line-height: 24px;
}

.theBody table { font: 12px Arial, Helvetica, Verdana, sans-serif; line-height: 24px; }

.theBody #container { 
	width: 748px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	background-image: url(../images/intro/main_bkg.gif); 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	height: auto;
	border-style: solid;
	border-width: 16px; 
	border-color: #bcd38e;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
} 
.theBody #header { 
	height:90px;
	background: #FFFFFF;
	background-image: url(../images/intro/header_image.jpg);
	background-repeat: no-repeat;
	/*background-attachment:fixed;*/
	/*background-position: 300px 17px;*/
	background-position: 32% -5px;
	border-bottom: solid;
	border-bottom-width: 24px;
	border-bottom-color: #000000;
	padding: 0 0px 0 0px;  /* 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. */
} 
h2 {
	font-family: 'Bauderie new06', Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-align: center;
	line-height: 22px;
	margin: 0px 0 0 360px;
	width:400px;
	letter-spacing: 2px;
	color: #cc3c16;
}
h3 {
	font-family: 'Bauderie new06', Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	line-height: 19px;
	margin: 0px 0 0 360px;
	width:400px;
	letter-spacing: 1px;
}
.theBody #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height: auto;
	/*background: #c5d3a8; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
}
.theBody #mainContent { 
	margin: 0 20px 0 230px; /* 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 */
	width:450px;
	position:relative;
} 
.theBody #mainNav { 
	margin: 10px 20px 0 230px; /* 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 */
	width:450px;
	height:100px;
	position:relative;
}
.theBody #footer { 
	left: 50px;
	height:50px;
	border-bottom: solid;
	border-bottom-width: 24px;
	border-bottom-color: #000000;
	padding: 0 0px 0 60px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.theBody #footer p {
	margin-top: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 12px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FFFFFF;
	vertical-align:top;
}
#subfootingLogo {
    position:absolute;
    margin-top:40px;
    margin-left:84px;
}

.theBody #footerContent {
	padding: 54px 0px 0px 0px; 
	color:#FFFFFF;
	vertical-align:top;
	float: left;
	text-align:left;
	line-height:16px;
	font-size: 9px;
	text-transform:uppercase;
	margin-left:-45px;
}

.navText { margin-left:124px; letter-spacing:1px; font-size: 10px; }
.navText a { margin: .5em; }
.navText a:link { color:white; text-decoration:none; }
.navText a:visited { color:white; text-decoration:none; }
.navText a:hover { color:red; 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;
}
.heading {
	font-family: 'Bauderie new06', Times New Roman, Times, serif;
	font-size: 19px;
	color: #cc3c16;
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	/*text-transform:uppercase;*/
	margin-top:24px;
	margin-bottom:4px;
	font-weight: bold;
}
.topheading {
	font-family: 'Bauderie new06', Times New Roman, Times, serif;
	font-size: 18px;
	color: #718b26;
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-transform:uppercase;
	margin-bottom:15px;
	margin-top:15px
}
.subheader {
	font: 12px Arial, Helvetica, Verdana, sans-serif;
	color: #333;
	line-height:22px;
	padding-top: 0px;
	margin-top: 2px;
	margin-bottom:18px;
	font-style:italic;
}


.error { 
	font: bold 14px/20px Arial, Helvetica, Verdana, sans-serif;
	color: #900;
}

.success { 
	font: 12px/16px Arial, Helvetica, Verdana, sans-serif;
	color: #718b26;
}


#swankLogo {
	position: absolute;
	width: 225px;
	height: 44px;
	left: -10px;
	top: -15px;
	z-index: 5;
}

#heading {
	font: 16px Arial, Helvetica, Verdana, sans-serif;
	letter-spacing: 1px;
	color: #333;
	line-height: 24px;
	text-align: right;
	text-transform: uppercase;
	font-weight:bold;
	padding-top: 33px;
	padding-right: 80px;
}


#subheading {
	font: 12px Arial, Helvetica, Verdana, sans-serif;
	letter-spacing: 1px;
	color: #FFFFFF;
	line-height:14px;
	padding: 20px 0 0 0px;
	text-transform:uppercase;
	margin-left: 210px;
}

#subheading a { margin: 0 1em; }

#subheading a:link { color:white; text-decoration:none; }
#subheading a:visited { color:white; text-decoration:none; }
#subheading a:hover { color:red; text-decoration:none; }

.smallheading {
	font: 12px Arial, Helvetica, Verdana, sans-serif;
	letter-spacing: 1px;
	color: #333;
	line-height:20px;
	border-bottom: solid;
	border-bottom-width: 1px;
	border-bottom-color: #000000;
	margin-bottom: 10px;
}

.smallhead {
	font: 13px Arial, Helvetica, Verdana, sans-serif;
	letter-spacing: 0px;
	color: #cc3c16;
	line-height:16px;
	margin-top:14px;
	margin-bottom:8px;
	font-weight:bold; 
}

#button_why {
	position: absolute;
	display:block;
	width: 120px;
	height: 60px;
	left: 0px;
	top:0px;
	z-index: 15;
}
#button_example {
	position: absolute;
	display:block;
	width: 120px;
	height: 60px;
	left: 114px;
	top:0px;
	z-index: 15;
}
#button_who {
	position: absolute;
	display:block;
	text-align: center;
	width: 120px;
	height: 60px;
	left: 230px;
	top:0px;
	z-index: 15;
}
#button_join {
	position: absolute;
	display:block;
	text-align: center;
	width: 120px;
	height: 60px;
	left: 344px;
	top:0px;
	z-index: 15;
}

#button_questions {
	position: absolute;
	display:block;
	text-align: center;
	width: 120px;
	height: 60px;
	left: 57px;
	top:38px;
	z-index: 20;
}
#button_terms {
	position: absolute;
	text-align: center;
	width: 120px;
	height: 60px;
	left: 172px;
	top:38px;
	z-index: 20;
}
#button_contact {
	position: absolute;
	display:inline;
	text-align: center;
	width: 120px;
	height: 60px;
	left: 288px;
	top:38px;
	z-index: 20;
}
.theBody .buyLogo {
    margin: 5px auto;
}
.theBody ul {
	margin-top:0;
	margin-bottom:8px; 
	margin-left: 7px;
	margin-right:16px;
	padding-left: 7px;
	font: 12px Arial, Helvetica, Verdana, sans-serif;
}

.theBody li {
	line-height: 20px;
	margin-bottom:2px; 
}

div.loginLink {
	position: absolute;
	width: 150px;
	height: 15px;
	left: 575px;
	top: 90px;
	color: #FFF;
	font-size:10px;
	text-align: right;
	letter-spacing: 1px;
	z-index: 900;
	}
	
a.logLink:link { color: white; }
a.logLink:visited { color: white; }
a.logLink:hover { color: red; }

.termsText {
	font-size:12px;
	line-height:16px;
}

#ship1, #ship2, #ship3 {
	font-size: 11px;
	line-height:14px;
}

#ideasShadow {
	padding: 0px;
	/*opacity: .95;*/
	position: absolute;
	width: 430px;
	height: 330px;
	background-image: url(../images/ideas/SP_slideshow/idea_bkg.jpg);
	background-color:#FFFFFF;
	left: 239px;
	top: 120px;
	z-index: 980;
	border: solid 0px #bcd38e;
	margin-top: 5px;
	}

#ideasPanel {
	padding: 0px;
	/*opacity: .95;*/
	position: absolute;
	width: 380px;
	height: 280px;
	background-color:#FFFFFF;
	z-index: 981;
	border: solid 16px #bcd38e;
	margin-top: 9px;
	margin-left: 9px;
	}

#slideshow1 img {  
    margin-top: 0px;
    margin-left: 0px;
    top: 0px;
	position: absolute;
	width: 380px;
	height: 280px;
	text-align: center;
} 
#title {
	font: 9px/12px arial, sans-serif;
	position: absolute;
	top: 316px;
	left: 35px;
	text-align:center;
	z-index:1000;
	width: 230px;
	background-color:#FFFFFF;
	border: 1px solid #999;
	padding: 10px;
}

#prev {
	font: 9px/12px arial, sans-serif;
	position: absolute;
	top: 120px;
	left: -45px;
	text-align:center;
	z-index:1000;
	width: 10px;
	border: 0px solid #999;
	padding: 10px;
}

#next {
	font: 9px/12px arial, sans-serif;
	position: absolute;
	top: 120px;
	left: 390px;
	text-align:center;
	z-index:1000;
	width: 10px;
	border: 0px solid #999;
	padding: 10px;
	}
#homeButtons {
	padding: 0px;
	/*opacity: .95;*/
	position: absolute;
	/*background-image: url(images/z_images/ideas.png);*/
	background-color:#FFFFFF;
	left: 585px;
	top: 134px;
	z-index: 981;
	margin-top: 11px;
	}
	
.firstheading {
	margin-top: 330px;
	}

.answerList {
list-style-position:inside;
list-style-type: square;
}

.myList {
list-style-position:inside;
}

.indentedList {
list-style-position:inside;
margin-left: 0px;
padding-left: 1em;
text-indent: -1em;
}
.indentedList li {
margin-left: 30px;
}


.leftNav {
padding-top: 25px;
list-style-position:inside;
list-style-type: none;
text-indent: 10px;
font-size: 12px;
}

.leftNav li {
border-bottom: 1px solid red;
padding: 3px 0px;
font-weight:bold;
}

ul.leftNav li.topItem { border-top:1px solid red; }

ul.leftNav li.selectedItem  { background:url('/images/intro/list_triangle.png') no-repeat 0px 8px; }

.leftNav a:link { color: #cc3c16; text-decoration:none; }
.leftNav a:visited { color: #cc3c16; text-decoration:none; }
.leftNav a:hover { text-decoration:none; }
.leftNav li:hover { background:url('/images/intro/list_triangle.png') no-repeat 0px 8px;}

.mainbuttons { margin-left:232px; margin-top:40px; }

#formContainer, #infoContainer { margin: 0; padding-left: 0; }
#formContainer li, #infoContainer li { list-style: none; margin-left: 0; }
#formContainer .smallheading, #infoContainer .smallheading { margin: 12px 0; font-weight: bold; }
#formContainer label, #infoContainer label { width: 220px; display: inline-block; color: #333; }
#formContainer input { width: 190px; }
#formContainer input.radio, #formContainer input.checkbox { width: 20px; }
#formContainer li.submitBtn { text-align: center; margin-top: 35px; }
#headImg { margin: 20px 0 0 34px; }
.more { margin-left: 30px; font-size: 11px; line-height: 14px; }

input.error,select.error { background-color: #DAA; } 