@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
	font-weight: bold;
	
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */


/* ~~ This grouped selector gives the lists in the .content area space ~~ */

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #ADB96E;
	color: #FFF;
}








header {
	height: 125px;
	background: -moz-linear-gradient(left,  rgba(125,185,232,0) 0%, rgba(125,185,232,0.01) 1%, rgba(36,110,172,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(125,185,232,0)), color-stop(1%,rgba(125,185,232,0.01)), color-stop(100%,rgba(36,110,172,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  rgba(125,185,232,0) 0%,rgba(125,185,232,0.01) 1%,rgba(36,110,172,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  rgba(125,185,232,0) 0%,rgba(125,185,232,0.01) 1%,rgba(36,110,172,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  rgba(125,185,232,0) 0%,rgba(125,185,232,0.01) 1%,rgba(36,110,172,1) 100%); /* IE10+ */
	background: linear-gradient(to right,  rgba(125,185,232,0) 0%,rgba(125,185,232,0.01) 1%,rgba(36,110,172,1) 100%); /* W3C */
	/* [disabled]display: block; */





	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#246eac',GradientType=1 ); /* IE6-9 */
	
}
.phone-number {
	float: right;
	margin: 20px;
	color: #eee;
	text-shadow: 1px 1px 2px #000000;
	filter: dropshadow(color=#000000, offx=1, offy=1);
	display: inline;
	font-weight: bold;
}
.phone-number p { margin-bottom: 5px; 
	
 }
.site-logo { padding: 15px;  float: left; display: inline; }
.menu ul {   }
.menu ul li { 
	float: left;  
	list-style-type: none; 
	padding: 10px 20px;
}









section { margin: 10px 0; }
.pic-columns { margin-left: 20px; }
.three-column-container {  width: 100%; display: block; 
	margin-bottom: 10px; 
}
.column-third { width: 31%; margin: 0 1%;  float: left; }
.column-third img {
	width: 95%;
	/* [disabled]height: 95%; */
	margin: 10px 0;
}
.column-half h1 {
	text-align: center;
	margin-top: 10px;
}
.column-half h5 { text-align: center; }
.column-half { 
	width: 65%; margin: 0 1%; float: left; 
	background-color: #E8E8E8;
	border: 1px solid white;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-box-shadow: inset 0 0 10px #cdcdcd;
	-webkit-box-shadow: inset 0 0 10px #CDCDCD;
	box-shadow: inset 0 0 10px #CDCDCD; 
	-webkit-box-shadow:  2px 2px 4px 2px rgba(0, 0, 0, .2);
    box-shadow:  2px 2px 4px 2px rgba(0, 0, 0, .2);
	margin-bottom: 15px;
}
.content .column-half ul {
	width: 550px; 
	margin: 0 auto; 
	padding: 0;
}
.content .column-half ul li { font-size: 15px; text-align: justify; width: 550px; }

.last-line-block { 
	color: #fff; ;
}

.four-column-container {   
	width: 100%; 
	
} 
.column-fourth { 
	width: 15.5%; 
	margin: 15px 0;  
	float: left; 
	
}
.column-fourth { padding-top: 15px; }
.column-fourth h5 { margin-bottom: 7px; font-size: 0.83em; border-bottom: 1px solid #999; }
.column-fourth ul { width: 95%; height: auto; margin-bottom: 15px;  }
.column-fourth ul li {
	float: left;
	font-size: 12px;
	list-style-image: url(../images/arrow.png);
	padding: 3px;
	}
.column-fourth img { padding: 30px 15px; }

.content {
	padding: 10px 0;
	width: 960px;
	float: right;
}


/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	float: right; 
	background: rgb(36,110,172); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(36,110,172,1) 0%, rgba(118,168,209,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(36,110,1721)), color-stop(100%,rgba118,168,209,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(36,110,172,1) 0%,rgba118,168,209,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(36,110,172,1) 0%,rgba118,168,209,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(36,110,172,1) 0%,rgba118,168,209,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(36,110,172,1) 0%,rgba(118,168,209,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#246eac', endColorstr='#023671',GradientType=0 ); /* IE6-9 */
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	height: auto;
	width: 100%;
	color: #fefefe;
	margin-bottom: 20px; 
	-webkit-border-radius: 7px;
    border-radius: 7px;
}
#footer-logo { width: 314px; height: 150px; margin: 5px; }
.footer-text-block { font-size: 15px;  margin: 0 auto; padding-top: 10px; }
.footer-text-block img { margin: 5px 5px 0 0; }
.footer-text-block h6 { margin-bottom: 7px; }
.copyright-info { font-size: 12px; }
.bottom-line { margin-left: 6px; margin-bottom: 7px; }
.bottom-line a {
	font-size: 12px;
	color: #ffffff;
}
.last-line-block { width: 240px; margin: 70px auto 0; display: block; }



/*HTML5 support - Sets new HTML5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
