* {
	margin:0;
	padding:0;
	outline: 0;
	font-style: normal;
	border: none;
}
html, body {
	height: 100%; 
	font-size: 14px;
	color: #58595b;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a { 
	cursor:pointer;
	color: #58595b;
}
a:hover {
	color: #cccccc;
}

:target::before {
  content: "";
  display: block;
  height: 140px; /* fixed header height*/
  margin: -140px 0 0; /* negative fixed header height */
}

.smoothScroll {}

.group:after {
  content: "";
  display: table;
  clear: both;
}


/* ---------------------------------layout*/
body {
	width: 100%;
	font-family: "Trebuchet MS", sans-serif;
}


/* ------------------header */

header {
	display: block;
	height: 110px; /*header height here*/
	max-width: 974px;
	padding: 10px 15px;
	margin: 0 auto;
	background-color: #fff;
}
	.logoblock {
		width: 117px;
		height: 100px;
		float:left;
	}
	.logoblock a {
		display: block;
		text-decoration: none;
		letter-spacing: 3px;
		text-align: center;
		font-size: 13px;
		font-weight: 600;
		line-height: 16px;
		color: #aeab36;

	}

#color_extend_header {
	width: 100%;
}
#color_extend_header {
	height: 130px; /*header height here*/
	position: fixed; /*header stays on top!*/
	top: 0;
	background-color: #ffffff;
	z-index: 9999;
}



/* ------------------navigation */


nav{
	float: right;
	margin-top: 40px;
}


/* main manu */
#menu {
	padding: 10px 0 0 0;
	list-style: none;  
}

		#menu li{
			float: left;
			padding: 0 0 10px 0; 
			position: relative;
			margin: 0;
		}
		
		#menu a{
			height: 25px;
			padding: 0 30px 0 10px;
			color: #689a92;
			text-transform: uppercase;
			text-decoration: none;
			font-size: 14px;
			letter-spacing: 2px;
		}
			


		#menu li:hover > a{
			color: #689a92;
		}
		
		#menu li:hover > ul{
			display: block;
		}

		/* Sub-menu */
		
		#menu ul{
		    list-style: none;
		    margin: 0;
		    padding: 0 0 10px; /*check this spacing for firefox pc*/
		    display: none;
		    position: absolute;
		    top: 25px;
		    left: 0;
		    z-index: 99999;    
		    background: #fff;
		}
		
		#menu ul li{
		    float: none;
		    margin: 0;
		    padding: 0;
		    display: block;  
		}
		#menu ul a{    
		    padding: 6px 10px;
		    height: auto;
		    line-height: 1;
		    display: block;
		    white-space: nowrap;
		    float: none;
			text-transform: uppercase;
			color: #666666;
		}
		
		#menu ul a:hover{
		    background: #fff;
		    color: #99cccc;
		}
		
		/* Clear floated elements */
		#menu:after{
			visibility: hidden;
			display: block;
			font-size: 0;
			content: " ";
			clear: both;
			height: 0;
		}
		



/* ------------------contents */
		

article {
	margin: 130px auto 0; /*offsetting 140px for header*/ /*header height here*/
}



#title_panel {
	padding: 15px 20px;
}
	#title_panel h1 {
		font-size: 26px;
		letter-spacing: 1px;
		padding:0;
		margin: 0;
	}
	#title_panel ul {
		list-style: none;
		padding-top: 10px;
	}
#title_panel_sub {
	padding: 15px 20px;
}
#title_panel_sub h2 {
	font-size: 20px;
	font-weight: 400;
	padding-top: 0;
	}
#title_panel_sub p {
	font-size: 15px;
	font-weight: 400;
	padding-bottom: 0;
	}




/*main banner images*/

#main_banner {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
}

#main_banner_text {
	width: 100%;
	min-height: 400px;
	margin: 0 auto;
	padding: 0;
	display: inline-block;
	background-image: url(../pics/banner-main-home.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: relative;
}

	.headline {
		position: absolute;
	    left: 0;
	    top: 70%;
	    width: 100%;
	    text-align: center;
	    font-size: 28px;
	    display: inline-blocks;
	    color: #ffffff;
	}

section {
	max-width: 974px;
	padding: 20px;
	margin: 0 auto;
	position: relative;
}
	section:after {
	  content: "";
	  display: table;
	  clear: both;
	}



section.no_padding {
	width: 1024px;
	padding: 0;
}
section.no_padding p {
	padding: 20px;
}
section.with_devider p {
	border-bottom: 1px solid #58595b;
	padding-bottom: 15px;
	margin-bottom: 15px;
	display: block;
}
	section.with_devider p:last-child {
		border-bottom: none;
		margin-bottom: 15px;
	}
	section.with_devider p:after {
		  content: "";
		  display: table;
		  clear: both;
		}


section#about_panel {
	max-width: 974px;
	text-align: center;
	padding: 15px 20px; /*matched to #title_panel_sub*/
}


section#about_panel div {
	max-width: 467px;
	display: inline-block;
	margin: 0 auto;
	vertical-align: top;
	text-align: left;
}
section#about_panel div:nth-child(odd) {
	margin-right: 20px;
}
section#about_panel div h2 {
	padding-bottom: 0;
}


section.two_col {
	max-width: 974px;
	padding: 25px;
	margin: 0 auto;
	overflow: hidden;
}
	section.two_col:after {
		content: "";
		display: table;
		clear: both;
	}
	.two_col_main {
		max-width: 600px;
		float: left;
	}
	.two_col_side img {
		width: 100%;
	}		
	.two_col_side {
		max-width: 300px;
		float: right;
		background-color: #aeab36;
	}
	.two_col_side section {
		padding: 25px;
	}
		.two_col_side section.top {
			background-color: #689a92;
		}
			.two_col_side section.top p {
				color: #ffffff;
				font-size: 20px;
			}
		.two_col_side section.middle {
			background-color: #58595b;
		}
			.two_col_side section.middle p {
				color: #ffffff;
				font-size: 14px;
			}
		.two_col_side section.bottom {
			
		}
			.two_col_side section.bottom p {
				color: #ffffff;
				font-size: 14px;
			}


section#faqs {}
	section#faqs h1 {
		padding-top: 25px;
	}
	section#faqs h2 {
		padding: 25px 0 5px;
		margin-top: 20px;
		font-size: 14px;
		font-weight: 600;
		border-top: 1px solid #58595b;
		color: #666666;
	}
	section#faqs ul {
		list-style: none;
	}
	section#faqs ul li {
		padding: 10px 0;
		border-bottom: 1px solid #eeeeee;
		margin-left: 0;
	}
	section#faqs ul li:last-child {
		border-bottom: none;
	}
	section#faqs ul li a {
		font-size: 16px;
		color:#58595b;
		text-decoration: none;
	}
	section#faqs ul li a:hover {
		color: #cccccc;
	}
	section#faqs ol {
		list-style-position: inside;
	}
	section#faqs ol li {
		font-size: 14px;
		font-weight: 400;
		color: #58595b;
	}
	
section#arrow_panel {
	text-align: center;
}
	section#arrow_panel ul {
		width: 100%;
	}
	section#arrow_panel li {
		display: inline-block;

	}
	
	
/*blog*/
/*blog home*/

#thumblist {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}

#thumblist li {
	display: inline-block;
	margin: 0 0 30px;
}

#thumblist img {
	width: 400px;
	float: left;
	display: inline-block;
	margin:0;
	padding: 0 20px 10px 0;
}

#thumblist h2 {
	margin: 0;
	padding: 0 0 5px;
}
#thumblist h3  {
	color: #666666;
	font-size: 16px;
}
#thumblist p.date {
	font-style: italic;
}
#thumblist h3 + p { /*reset global space*/
	padding-top: 0;
}

/*blog post*/

h1.blogtitle {
	font-size: 20px;
	font-weight: 400;
	padding-top: 0;
	color: #ffffff;
}
	h1.blogtitle span {
		font-size: 15px;
		font-weight: 400;
		color: #ffffff;
		}
h2.blogsection {
	font-size: 26px;
	letter-spacing: 2px;
	font-weight: 600;
	color: #ffffff;
	padding:0;
	margin: 0;
}
section#blogpost p.date {
	font-style: italic;
}
section#blogpost img {
	width: 500px;
	height: auto;
}

/*related article link*/
#related_articles {
	margin: 10px;
	border-top: 2px #d5d5d5 solid;
	border-bottom:  2px #d5d5d5 solid;
}
#thumblist_blogpost {
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
	display: inline-block;
	width: 100%;
}
#thumblist_blogpost li {
	display: inline-block;
	margin: 0 0 30px;
}
#thumblist_blogpost li img {
	width: 250px;
	float: left;
	display: inline-block;
	margin:0;
	padding: 0 20px 10px 0;
}

#thumblist_blogpost h2 {
	margin: 0;
	padding: 0 0 5px;
}
#thumblist_blogpost h3  {
	color: #666666;
	font-size: 16px;
}
#thumblist_blogpost p.date {
	font-style: italic;
}


/*blog end*/



/* Raise my score box */
.box_float {
	display: block;
	width: 80%;
	background-color:#d5d5d5;
	padding: 20px;
	margin: 20px auto;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	
}
.btn {
	display: inline-block;
	background-color: #e99c22;
	padding: 10px 20px;
	margin: 10px;
	font-size: 20px;
	color: #fff;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
}
	.btn:hover {
		background-color:#e98f01;
		color: #fff;
	}
	
	
.shortcut_panel {
	max-width: 974px;
	height: auto;
	margin: 0 auto;
	text-align: center;
	color: #fff;

}
.shortcut_panel div {
	min-width: 200px;
	display:inline-block;
}
		.shortcut_panel a {
			text-decoration: none;
			zoom: 1;
			filter: alpha(opacity=100);
			opacity: 1;
		}
		.shortcut_panel a div:hover {
			zoom: 1;
			filter: alpha(opacity=80);
			opacity: 0.8;
		}
		.shortcut_panel p {
			color: #fff;
			font-size: 18px;
		}
		.shortcut_panel .shortcut_quotes p {
			font-size: 16px;
			margin-top: 20px;
		}
		.shortcut_panel .add p {
			font-size: 16px;
		}
		.shortcut_panel .add p a {
			color: #fff;
		}


#contact div {
}
		.letter_panel p {
			text-align: center;
			line-height: 1em;
		}
		.letter_panel p a {
			color: #fff;
		}
		.address_panel {
			text-align: center;
			line-height: 1em;
			padding-top: 30px;
			
		}
	


.color_extend_aqua {
	background-color: #689a92;
	width: 100%;
}
.color_extend_green {
	background-color: #aeab36;
	width: 100%;
}
.color_extend_orange {
	background-color: #e99c22;
	width: 100%;
}
.color_extend_gray {
	background-color: #58595b;
	width: 100%;
}
.color_extend_light_gray {
	background-color: #eeeeee;
	width: 100%;
}
.color_extend_light_gray p, .color_extend_light_gray h1, .color_extend_light_gray h2, .color_extend_light_gray h3 {
	color: #58595b;
}

.color_extend_aqua,.color_extend_green,.color_extend_orange,.color_extend_gray h2 {
	color: #ffffff;
}
.color_extend_aqua,.color_extend_green,.color_extend_orange,.color_extend_gray h3 {
	color: #ffffff;
}
.color_extend_aqua,.color_extend_green,.color_extend_orange,.color_extend_gray p {
	color: #ffffff;
}
.color_extend_aqua,.color_extend_green,.color_extend_orange,.color_extend_gray a {
	color: #ffffff;
}
.color_extend_aqua,.color_extend_green,.color_extend_orange,.color_extend_gray a:hover {
	text-decoration: none;
}


.bg_aqua {
	background-color: #689a92;
}
.bg_green {
	background-color: #aeab36;
}
.bg_orange {
	background-color: #e99c22;
}
.bg_gray {
	background-color: #58595b;
}
	.bg_gray a {
		color: #ffffff;
	}
	.bg_gray a:hover {
		text-decoration: none;
	}
.bg_light_gray {
	background-color: #eeeeee;
}


/* signup form */
#formy {
	max-width: 974px;
	padding: 25px;
	margin: 0 auto;	
}

#formy legend {
	font-size: 20px;
	font-weight: 400;
	color: #666666;
	margin-bottom: 0.3em
}
#formy fieldset {
	margin-bottom: 20px;
}
#formy input, textarea {
	border: #999999 solid 1px;
	line-height: 2em;
	margin: 5px 0;
}
#formy label {
	display: inline-block;
	float: left;
	clear: left;
	width: 220px;
	text-align: left;
	line-height: 2em;
}
#formy p {
	margin-bottom: 10px;
	line-height: 2em;
}
#formy span {
	font-size: 16px;
	font-weight: 600;
}
#formy strong {
	color: red;
}
#formy input[type=submit] {
    border: 0;
    width: 80px;
    height:25px;
	background-color: #cccccc;
}
#formy input[type=submit]:hover {
	background-color: #e99c22;
	color: #ffffff;
}




footer {
	max-width: 974px;
	padding: 25px;
	margin: 0 auto;
}
		footer p {
			float: left;
		}
		footer ul {
			float: right;
		}
		footer li {
			display: inline-block;
		}
		footer a {
			text-decoration: none;
			color: #666666;
		}
		footer a:hover {
			color: #a09e31;
		}
		

/* ------------------contents HOME SPECIALS */

#home_special {
	line-height: 130%;
}

		#home_special article {
			width: 100%;
			margin: 0 auto;
		}
		
		#home_special section {
			width: 100%;
			max-width: 960px;
			padding: 25px 0;
			margin: 0 auto;
			text-align: center;
		}
			#home_special section:after {
			  content: "";
			  display: table;
			  clear: both;
			}

		#home_special .twocol  {
			max-width: 974px;
		}

		#home_special .twocol div {
			text-align: center;
			max-width: 400px;
			display: inline-block;
			margin: 0 auto 20px;
			padding: 10px;
		}
			.twocol div img {
				margin-bottom: 10px;	
			}
			
		#home_special .onecol {
			width: 100%;
			display: block;
			margin: 0;
		}
		

		#home_special h2 {
			font-size: 20px;
			color: #666666;
			display: inline-block;
			width: 65%;
		}
		#home_special h3 {
			font-size: 20px;
			font-weight: 600;
			color: #666666;
			margin-bottom: 0.3em;
		}
		#home_special p {
			font-size: 18px;
			display: block;
			width: 80%;
			padding-bottom: 10px;
			margin: 0 auto;
		}
		#home_special b, #home_special strong {
			font-weight: 600;
		}
		
		#home_special .text_w {
			color: #fff;
		}






/* ------------------typography */


h1 { } /* spec in title panel */
	.h1_home {
		font-size: 28px;
		color: #666666;
		margin-bottom: 0.5em;
	}
	h1 span {
		font-size: 18px;
		line-height: 130%;
		display: block;
	}
	
h2 {
	font-size: 20px;
	font-weight: 400;
	color: #666666;
	padding: 10px 0;	
}
	.h2_home {
	font-size: 20px;
	color: #666666;
	display: inline-block;
	width: 65%;
	}

h3 {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.3em;
}
h4 {
	font-size: 14px;
	font-weight: 600;
	color: #666666;
	margin-bottom: 0.5em;
}
h1, h2, h3, h4 {
	line-height: 120%;
}
p {
	font-size: 14px;
	color: #666666;
	padding-bottom: 10px;
}
	.indentblock {
		padding:20px;
		margin-bottom: 20px;	
		background-color:#f3f3f3;
	}
p, li {
	line-height: 130%;
}
p.small {
	font-size: 12px;
}
p.large {
	font-size: 18px;
}
b {
	font-weight: 600;
}
strong {
	font-weight: 600;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
cite {
	font-style: italic;
}
blockquote {
	padding-left: 20px;
	padding-bottom: 10px;
	margin: 10px 0;
	font-style: italic;
}
ul {
	padding-bottom: 10px;
}
li {
	list-style-position:outside;
	margin-left: 25px;
	padding-bottom: 5px;
}
ol {
	margin-left: 80px;
}
ol li{
	list-style-position: outside;
}

h3 + p {
	padding-top: 20px;
}
ol + p {
	padding-top: 10px;
}

.text_w {
	color: #fff;
}
.green {
	color: #a09e31;
}
.gray {
	color: #58595b;
}





/* ---images--- */
img {
	border: 0px;
	margin: 0;
	padding:0;
}
img.float {
	float: left;
	padding: 0 20px 10px 0;
	display: table;
}
img.minus_descenders {
	display: block;
}
img.spacing50 {
	margin: 50px 0;
}
img.centering {
	display: block;
	margin: 0 auto;
}
img.arrow_btn {
	display:block;
	bottom: 0;
	right: 0;
	padding: 25px;
	margin: 0 auto;
}
.tutors {
	display: block;
	width: 150px;
	height: auto;
	float: left;
	margin: 0 20px 10px 0;
}
	.tutors:after {
		  content: "";
	  visibility: hidden;
	  display: block;
	  height: 0;
	  clear: both;
	}



/* tool tip by www.menucool.com/tooltip/css-tooltip */

a.tooltip {outline:none; }
a.tooltip strong {line-height:14px; font-size: 12px; letter-spacing: 1px;}
a.tooltip:hover {text-decoration:none;} 
a.tooltip span {
    z-index:10;display:none; padding:14px;
    margin-top:20px; margin-left:-100px;
    width:120px; line-height:16px;
}
a.tooltip:hover span{
    display:inline; position:absolute; 
    border:2px solid #FFF;  color:#EEE;
    background:#333 url(../pics/tooltip/css-tooltip-gradient-bg.png) repeat-x 0 0;
}
.callout {z-index:20;position:absolute;border:0;top:-14px;left:120px;}
    
/*CSS3 extras*/
a.tooltip span
{
    border-radius:2px;        
    box-shadow: 0px 0px 5px 3px #999;
    /*opacity: 0.2;*/
}

