@charset "utf-8";
/* CSS Document 
developed by Mario Elias
date: 11/2008
Media: Screen
colors: 
#4C91BE blue
#81AACE light blue
#B8BABC gray
*/

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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-image: url(../images/bg_gradient.png);	
}
.preloader{
	position:absolute;
	top:-9999px;
	left:-9999px;
}
/* Globals links */
a:link, a:visited{
	color:#287BB4;
	text-decoration:underline;
	}
a:active, a:hover {
	text-decoration:underline;
	}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #box_Left is given a 70% font size and #box_middle is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

.page #container { 
	width: 770px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	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. */
} 
.page #header { 
	background: #DDDDDD; 
	padding: 0 10px;  /* 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. */
} 
#header h1{
	float:left;
	background:url(../images/logo.png) no-repeat;
	width:287px;
	height:89px;
	overflow:hidden;
	text-indent:-9999px;
	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 */
}
#header p{
	float:left;
	background:url(../images/800Date.png) no-repeat;
	width:261px;
	height:42px;
	overflow:hidden;
	text-indent:-9999px;
	margin: 20px 0 0 100px ; /* 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 */
}
#header h3{
	float:right;
	font-size:0.69em;
	color:#666;
	text-align: left;
	margin: 0;
	padding: 5px 0 10px 0;
	}
/* Tips for box_Left:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. 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 ".page #box_Left p" rule.
*/

/* menu */
#menu{
	clear:both;
	width:770px;
	padding:0;
	margin:0;
	overflow:hidden;
	list-style:none;
}
#menu li{
	float:left;
	margin:0;
}
#menu li.last{margin:0}
#menu li a{
	display:block;
	height:34px;
	text-indent:-9999px;
}
#menu li a.home{
	width:101px;
	background-image: url(../images/btn_home.png);
	background-repeat: no-repeat;
}
#menu li a.home:hover{background:url(../images/btn_home-over.png) no-repeat}
#menu li a.active1{
	width:101px;
	background:url(../images/btn_home-active.png) no-repeat}
	
#menu li a.tour{
	width:154px;
	background-image: url(../images/btn_take-a-tour.png);
	background-repeat: no-repeat;
}
#menu li a.tour:hover{background:url(../images/btn_take-a-tour-over.png) no-repeat}
#menu li a.active2{
	width:154px;
	background:url(../images/btn_take-a-tour-active.png) no-repeat}
	
#menu li a.stories{
	width:187px;
	background-image: url(../images/btn_success-stories.png);
	background-repeat: no-repeat;
}
#menu li a.stories:hover{background:url(../images/btn_success-stories-over.png) no-repeat}
#menu li a.active3{
	width:187px;
	background:url(../images/btn_success-stories-active.png) no-repeat}
	
/* media page is not ready
#menu li a.media{
	background:url(../images/media.png) no-repeat;
	width:123px;
}
#menu li a.media:hover{background:url(../images/media-over.png) no-repeat}
#menu li a.active4{background:url(../images/media-over.png) no-repeat}*/
#menu li a.locations{
	width:141px;
	background-image: url(../images/btn_locations.png);
	background-repeat: no-repeat;
}
#menu li a.locations:hover{background:url(../images/btn_locations-over.png) no-repeat}
#menu li a.active5{
	width:141px;
	background:url(../images/btn_locations-active.png) no-repeat}

#menu li a.started{
	width:187px;
	background-image: url(../images/btn_get-started.png);
	background-repeat: no-repeat;
}
#menu li a.started:hover{background:url(../images/btn_get-started-over.png) no-repeat}
#menu li a.active6{
	width:187px;
	background:url(../images/btn_get-started-active.png) no-repeat}


/* banner */

#banner {
	width: 100%;  /* this will create a container 80% of the browser width */
	margin: 0;
	border:0;
}
#banner h2{
	float:left;
	background:url(../images/homeBanner770.jpg) no-repeat;
	width:770px;
	height:268px;
	overflow:hidden;
	text-indent:-9999px;
	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 */
}


/* boxes */
.page #box_Left {
	float: left;
	width: 215px;
	padding:5px 0 0 24px;
	margin:0;
}
.page #box_middle {
	float: left; 
	width: 215px; 
	padding:5px 0 0 38px;
	margin:0;
}
.page #box_Right {
	float: right; 
	width: 215px; 
	padding:5px 24px 0 0;
	margin:0;
}

.page #box_Left h3, .page #box_Left p, .page #box_Right p, .page #box_middle p, .page #box_Right h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.page .learnMore {
	display: block;
	text-align:right;
	padding: 1px;	
}

#box_Left .h2{
	float:left;
	overflow:hidden;
	margin: 0; 
	background-image: url(../images/getStarted.png);
	background-repeat: no-repeat;
	width:215px;
	height:111px;
	text-indent:-9999px;
}
#box_middle .h2{
	float:left;
	overflow:hidden;
	margin: 0; 
	background-image: url(../images/matchamaking01.png);
	background-repeat: no-repeat;
	width:215px;
	height:111px;
	text-indent:-9999px;
}
#box_Right .h2{
	float:left;
	overflow:hidden;
	margin: 0; 
	background-image: url(../images/successStories.png);
	background-repeat: no-repeat;
	width:215px;
	height:111px;
	text-indent:-9999px;

}
.boxesParagraph {
	width: 190px;
	font-size:0.75em;
	color:#666;
	text-align: left;
	margin: 0;
	padding: 5px;
	line-height: 150%; /*add 150% distance between lines  */
	}

.boxes-bg{
	background: #fff url(../images/bg_boxes_footer.png) no-repeat center bottom;
	margin: 0;
	padding:0;
	height: 13px;
	border: 0 none;

}
/* Tips for box_middle:
1. If you give this #box_middle div a font-size value different than the #box_Left div, the margins of the #box_middle div will be based on its font-size and the width of the #box_Left div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the box_middle and box_Left is created with the left margin on the box_middle div.  No matter how much content the box_Left div contains, the column space will remain. You can remove this left margin if you want the #box_middle div's text to fill the #box_Left space when the content in #box_Left ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #box_middle div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the box_middle "hasLayout." This avoids several IE-specific bugs that may occur.
*/
 
 /* home page only*/
#homeContent {
	margin: 1em 2em;
	background-image:url(../images/bg_homeContent.png);
	background-repeat:no-repeat;
}
#homeContent p {
	font-size:.69em;
	color:#666;
	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: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	line-height: 250%; /*add 150% distance between lines  */

}
#homeContent img  { /*Text Wrap around the image*/
	float:left;
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	}
	
 /* inside page only*/
#insidePageContent {
	margin: 1em 2em;
}
#insidePageContent.matchmaker_box {
	background-image: url(../images/matchamaker.jpg);
	background-repeat: no-repeat;
	background-position: right 130px;
}
#insidePageContent h1 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 2em;
	color:#4C91BE;
	text-align: left;
	margin: 0; 
	padding: 10px; 
}

#insidePageContent h2 {
	width: 350px;
	font-size: 1.5em;
	color:#4C91BE;
	text-align: left;
	margin: 0; 
	padding: 10px; 
	line-height: 110%; 
}

#insidePageContent h3 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color:#4C91BE;
	text-align: left;
	margin: 0; 
	padding: 10px; 
	line-height: 110%; 
	}
#insidePageContent .lightBlue {
	color:#81AACE;
	}
#insidePageContent p {
	font:14px/24px Georgia, "Times New Roman", Times, serif;
	font-size:.90em;
	color:#666;
	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: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	line-height: 150%; /*add 250% distance between lines  */
}

/* 5 steps tour*/

#steps{
	clear:both;
	width:600px;
	padding:0;
	margin:0;
	overflow:hidden;
	list-style:none;
}
#steps li{
	float:left;
	margin:0;
}
#steps a, li.takeAtour{
	display:block;
	height:44px;
	text-indent:-9999px;
	overflow:hidden;
}
li.takeAtour {
	width:204px;
	background-image: url(../images/steps_take_a_tour.png);
	background-repeat: no-repeat;
}
/* step 01*/
li a.step01{
	width:79px;
	background-image: url(../images/step01.png);
	background-repeat: no-repeat;
}
li a.step01:hover{background:url(../images/step01-active.png) no-repeat}
li a.active01{
	width:79px;
	background:url(../images/step01-active.png) no-repeat}
/* step 02*/
li a.step02{
	width:79px;
	background-image: url(../images/step02.png);
	background-repeat: no-repeat;
}
li a.step02:hover{background:url(../images/step02-active.png) no-repeat}
li a.active02{
	width:79px;
	background:url(../images/step02-active.png) no-repeat}
/* step 03*/
li a.step03{
	width:79px;
	background-image: url(../images/step03.png);
	background-repeat: no-repeat;
}
li a.step03:hover{background:url(../images/step03-active.png) no-repeat}
li a.active03{
	width:79px;
	background:url(../images/step03-active.png) no-repeat}
/* step 04*/	
li a.step04{
	width:79px;
	background-image: url(../images/step04.png);
	background-repeat: no-repeat;
}
li a.step04:hover{background:url(../images/step04-active.png) no-repeat}
li a.active04{
	width:79px;
	background:url(../images/step04-active.png) no-repeat}
/* step 05*/
li a.step05{
	width:79px;
	background-image: url(../images/step05.png);
	background-repeat: no-repeat;
}
li a.step05:hover{background:url(../images/step05-active.png) no-repeat}
li a.active05{
	width:79px;
	background:url(../images/step05-active.png) no-repeat}
	
/* end 5 steps tour*/

#insidePageContent img  { /*Text Wrap around the image*/
	float:right;
	margin:10px

	}
	
/* footer*/
.page #footer {
	height:55px;
	padding: 0 10px 20px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image:url(../images/bg_footer.png);
	background-repeat:no-repeat;
	background-position: bottom;
} 
.page #footer p {
	font-size:.69em;
	color:#666;
	text-align: center;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* 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 */
	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;
}

/* buttons */

a.next{
	float:right;
	background:url(../images/btn_next.png) no-repeat;
	width:132px;
	height:30px;
	margin:10px 405px 0 0;
	overflow:hidden;
	text-indent:-9999px;
}
a.prev{
	float:left;
	background:url(../images/btn_previous.png) no-repeat;
	width:132px;
	height:30px;
	margin:10px 20px 0 0;
	overflow:hidden;
	text-indent:-9999px;
}

a.get_started{
	float:right;
	background:url(../images/btn_getstarted.png) no-repeat;
	width:140px;
	height:30px;
	padding:0;
	margin:10px 400px 0 0;	
	overflow:hidden;
	text-indent:-9999px;
}
a.get_started_action{
	float:right;
	background:url(../images/btn_getstarted.png) no-repeat;
	width:140px;
	height:30px;
	overflow:hidden;
	text-indent:-9999px;
	padding: 0px;
	margin-top: -30px;
	margin-right: 200px;

}
.paragraph_tour{
	display: block;
	height:30px;
	vertical-align:bottom;
	width:736px;
	margin-bottom: 10px;
}

a#submit{
	float:right;
	background:url(../images/btn_submit.png) no-repeat;
	width:137px;
	height:88px;
	margin:57px 5px 0 0;
}	

.errormessage {
	background-color:#4889AF;
	font-family:verdana,arial,helvetica;
	font-size: 12px;
	font-weight : bold;	
	color: #FFFFFF;
}	
.formfield {
	font-family:verdana,arial,helvetica;
	font-size: 12px;
	font-weight : bold;	
	color: #000000;
}	
.highlight {
	background-color: #4889af;
}
.hidden {
	display: none;
}