@charset "utf-8";
/* CSS Document */

/** Simple CSS Reset
_____________________________________________________________________________*/
* {
	margin: 0;
	padding: 0;
	border: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}


/** Body
_____________________________________________________________________________*/
html {
	height:100%;
}
body {
	text-align: center;
	font: 14px/140% "Lucida Sans Unicode","Lucida Grande",Verdana,Arial,Helvetica,sans-serif; /*normal 85% Verdana, Geneva, sans-serif; */
	line-height: 1.2em;
	background: url(../images/background2.png) #333 no-repeat top left ;
	color: #333;
	overflow-y: scroll;
	height:100%;
}
/** Floats
_____________________________________________________________________________*/
.clear {
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}
/** Main Typography
_____________________________________________________________________________*/
p {
	font-size: 1em;
	margin-bottom: 10px;
}

ul {
	list-style: inside;
	padding: 0;
	margin: 0;
}
li {}
h1 {
	font-size: 2.4em;
	color: #0083FF;
	margin: 40px 0 0 0;
	text-align: center;
	font-weight: normal;
}
h2 {
	font-size: 2.2em;
	color: #0083FF;
	margin: 0 0 15px 0px;
	text-align: left;
	font-weight: normal;
}
h3 {
	font-size: 1.2em;
	font-weight: normal;
	text-align: left;
	color: #0083FF;
	margin: 0 0 7px 0;
}
h4 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	text-align: left;
	color: #808080;
	margin: 0 0 7px 0;
	text-transform: none;
}
h5 {
	font-size: 1em;
	font-weight: bold;
	text-align: right;
	color: #0083FF;
	text-transform: none;
}
q {
	margin-bottom: 15px;
	font-size: 1em;
	font: bold;
	line-height: 1;
}
q:before { content: "\201C"; margin-left: -7px; }
q:after  { content: "\201D"; }
hr {
	display: block;
	border: none;
	height: 2px;
	margin: 10px 0px 10px 0px;
	background: url(../images/divider.gif);
}
/** Links
_____________________________________________________________________________*/
a:link {text-decoration: none; color: #000;}      /* unvisited link */
a:visited {text-decoration: none; color: #999;}  /* visited link */
a:hover {text-decoration: none; color: #0083FF;}  /* mouse over link */
a:active {text-decoration: none; color: #000;}  /* selected link */

p a:link {text-decoration: none; color: #000;}      /* unvisited link */
p a:visited {text-decoration: none; color: #999;}  /* visited link */
p a:hover {text-decoration: none ; color: #0083FF;}  /* mouse over link */
p a:active {text-decoration: none; color: #000;}  /* selected link */

/** Line
_____________________________________________________________________________*/
#topline {
	height: 3px;
	background: #0083FF;
}
/** Container
_____________________________________________________________________________*/
#wrap {
	min-height:100%;
	position:relative;
}
* html #wrap {
	height:100%
}
#header {
	margin: 0 auto 0;
	padding: 0;
	height: 100px;
	width: 960px;
	background: #FFF;
}
#header #image {
	width: 300px;
	height: 80px; /*  */
	background: url(../images/logo.gif) no-repeat;
	margin-left: 55px;
	float: left;
}
#info {
	margin: 0 auto 20px;
	height: 180px; /*  */
	background: url(../images/info_bg.jpg);
	width: 960px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
#info #text {
	height: 160px;
	width: 460px;
	margin: 0 55px 0 55px;
	padding: 20px 0 0 0;
	float: left;
	text-align: left;
}
#info #text p {
	color: #FFFFFF;
	text-align: right;
}

/** Classes
_____________________________________________________________________________*/
.vline {
	margin: -15px 15px 0;
	float: left;
	width: 1px;
	height: 280px;
	background: #DDDDDD;
}

/** Menu
_____________________________________________________________________________*/
#menu {
	width: 540px;
	height: 100px;
	background: #FFF;
	position: relative;
}
ul.topnav {
	text-align: center;
	width: 520px;
	list-style: none;
	padding: 0;
	margin: 30px auto;
	font-size: 16px;
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
}
ul.topnav li {
	float: left;
	margin: 0;
	padding: 0 15px 0 0;
	position: relative; /*--Declare X and Y axis base--*/
}
ul.topnav li a {
	padding: 10px 5px;
	color: #666;
	display: block;
	text-decoration: none;
	float: left;
	font-style: normal;
}
ul.topnav li a:hover {
	color: #0083FF;
}
ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(../images/subnav_btn.gif) no-repeat center top; /*--change to top to make white again--*/
}
ul.topnav li span.subhover {
	background-position: center bottom;
	cursor: pointer;
}
ul.topnav li span:hover {
	background-position: center bottom;
	cursor: pointer;
} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
	font-size: 0.9em;
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0;
	top: 35px;
	background: #FFF;
	z-index: 1;
	margin: 0;
	padding: 0;
	display: none;
	float: left;
	width: 170px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border: 1px solid #FFF;
	text-align: left;
}
ul.topnav li ul.subnav li {
	margin: 0;
	padding: 0;
	border-top: 1px solid #FFF; /*--Create bevel effect--*/
	border-bottom: 1px solid #CCC; /*--Create bevel effect--*/
	clear: both;
	width: 170px;
}
html ul.topnav li ul.subnav li a {
	float: left;
	width: 140px;
	background: #FFFFFF url(../images/dropdown_linkbg.gif) no-repeat 10px center;
	padding-left: 20px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background: #FFFFFF url(../images/dropdown_linkbg.gif) no-repeat 10px center;
}

/** Main
_____________________________________________________________________________*/
#main {
	position:relative;
	margin: 0 auto;
	width: 960px;
	text-align: left;
}
#content {
	min-height: 600px;
	margin-bottom: 20px;
	width: 840px;
	padding: 20px 60px; /*  */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	-moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	background: #FCFCFC url(../images/MC_content.png) bottom repeat-x;
}

#text {
	width: 364px;
	height: 280px;
	overflow: hidden;
	padding: 20px;
}

#text blockquote {
	color: #FFFFFF;
	font-style: italic;
	margin: 10px 0 11px 20px;
}

#text_info {
	width: 364px;
	height: 248px;
	overflow: hidden;
	padding: 0px 20px 0 20px;
}

#image {
	width: 400px;
	height: 266px;
	float: right;
}

#text_no_height{
	overflow: hidden;
	padding: 0px 20px 0 20px;
	margin-bottom: 20px;
}

#text_no_height q{ 
}
/** services
_____________________________________________________________________________*/
#service {
	position: relative;
	margin-bottom: 20px;
	width: 820px;
	padding: 20px 70px; /*  */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	-moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	background: #FCFCFC url(../images/MC_content.png) bottom repeat-x;
	min-height: 286px;
}
#service #image {
	float: left;
	width: 394px;
	height: 248px;
	background: url() center no-repeat;
}

#service #text {
	float: right;
	width: 394px;
	height: 228px;
	overflow: hidden;
	padding: 0 0 0 0;
	margin-bottom: 10px;
}
#service #quote {
	position: absolute;
	right: 15px;
	float: right;
	width: 11px;
	height: 60px;
	top: 246px;
}

#service #linktag {
	float: right;
	width: 354px;
	height: 20px;
	overflow: hidden;
	padding: 0 20px 0 20px;
	vertical-align: bottom;
}

#servicelist_l {
	text-align: left;
	float: left;
	margin-bottom: 20px;
	width: 400px;
	padding: 0 0 0 20px;
}

#servicelist_r {
	text-align: left;
	float: left;
	margin-bottom: 20px;
	width: 410px;
	padding: 0;
}

#inner-wrap {
	padding-bottom: 180px;
}
#inner-wrap:after {
	content:" ";
	display:block;
	clear:both;
}
#footer {
	text-align: left;
	position:absolute;
	width: 100%;
	bottom:0px;
	height: 180px;
	overflow: hidden;
	padding-top: 20px;
}
#footer #background {
	margin: 0 auto;
	width: 960px;
	background: url(../images/footer_bg.png) repeat-x;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	-moz-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 20px;
}
#footer #block {
	float: left;
	width: 220px;
	height: 126px;
	padding: 20px 10px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
#footer #copyright {
	height: 34px;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	line-height: 2.2em;
}
#footer p {
	margin: 0; /*  */
	padding: 0; /*  */
	font-size: 0.9em;
}
#footer ul {
	font-size: 0.9em;
}
#footer h5 {
	font-size: 1em;
	text-align: left;
	color: #0083FF;
	text-transform: none;
}
/** Newsletter
_____________________________________________________________________________*/
.mc-field-group {
	float: left;
	height: 31px;
	width: 150px;
	top: 0px;
	left: 0px;
}

.mc-field-group input {
	height: 31px;
	width: 156px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #808080;
	padding-left: 10px;
	line-height: 6px;
    vertical-align: middle;
	background: none;
}

#mc_embed_signup {
	margin-bottom: 5px;
	width: 200px;
	height: 31px;
}

#mc_embed_signup form {
	background: url(../images/submit_01.png) no-repeat top left;
}

/** Slider
_____________________________________________________________________________*/
#slider {
	width: 840px;
	margin: 0 auto 10px;
	position: relative;
}

.scroll {
	height: 340px;
	width: 840px;
	overflow: auto;
	overflow-x: hidden;
	position: relative;
	clear: left;
}

.scrollContainer div.panel {
	padding: 20px;
	height: 300px;
	width: 800px;
}

.scrollContainer div.panel #wrap {
	height: 260px;
	width: 800px;
	clear: both
}

.scrollContainer div.panel #wrap #text {
	width: 380px;
	float: left;
	height: 260px;
	padding: 10px 20px 0 0;
}

.scrollContainer div.panel #wrap #image {
	width: 400px;
	float: right;
	height: 300px;
}

#shade {
    height: 50px;
}

ul.navigation {
	list-style: none;
    margin: 0;
    padding: 0;
}

ul.navigation li {
	display: block;
	font-size: 1.4em;
	line-height: 1.4em;
}

ul.navigation li:hover {
	background: #EAEAEA;
}

ul.navigation a {
    padding: 0;
    color: #000;
}

ul.navigation a:hover { 
	color: #0083FF;	
}

ul.navigation a.selected {
	font-style: italic;
}

ul.navigation a:focus {
    outline: none;
}

.scrollButtons {
    position: absolute;
    top: 130px;
    cursor: pointer;
}

.scrollButtons.left {
    left: -50px;
}

.scrollButtons.right {
    right: -50px;
}

.hide {
    display: none;
}

/** Forms
_____________________________________________________________________________*/

#input {
	border: 1px solid #999;
}

/** Contact
_____________________________________________________________________________*/

#contact_info {
	width: 400px;
	margin-bottom: 20px;
}

#map_canvas {
	width: 400px;
	height: 300px;
	float: left;
	border:1px solid #999;
	-webkit-border-radius: 3px;
	-khtml-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left 25, from(#fff), color-stop(6%, #eee), to(#fff));
	background: -moz-linear-gradient(top, #fff, #eee 2px, #fff 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	overflow:hidden;
}

/** Quote
_____________________________________________________________________________*/

#quote_form {
	width: 390px;
	margin-bottom: 20px;
	padding-left: 20px;
}

#quote_form h2 { 
	margin: 0 0 20px 0; 
}

#quote_form p { 
	margin-bottom: 5px; 
}

#quote_form li {
	list-style: none;
	margin: 0 0 20px 0;
}

#quote_form li input {
	height: 24px;
	border:1px solid #999;
	-webkit-border-radius:3px;-khtml-border-radius:3px;-moz-border-radius:3px;border-radius:3px;
	margin:0;
	padding:5px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left 25, from(#fff), color-stop(6%, #eee), to(#fff));
	background: -moz-linear-gradient(top, #fff, #eee 2px, #fff 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}

#quote_form li input:hover{
		border:1px solid #0083FF;
}

#quote_form li input:focus{
		border:1px solid #0083FF;
}

#quote_form li textarea {
	margin-top: 5px;
	border:1px solid #999;
	-webkit-border-radius: 3px;-khtml-border-radius:3px;-moz-border-radius:3px;border-radius:3px;
	padding:5px;
	background: #fff;
	background: -webkit-gradient(linear, left top, left 25, from(#fff), color-stop(6%, #eee), to(#fff));
	background: -moz-linear-gradient(top, #fff, #eee 2px, #fff 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
}

#quote_form li textarea:hover {
		border:1px solid #0083FF;
}

#quote_form li textarea:focus {
		border:1px solid #0083FF;
}

#quote_form div {
		margin-bottom: 10px;
}

#quote_form #slider-range {
	width: 350px;
	margin-top: 5px;
}

#quote_form #send {
	border:1px solid #999;
	-webkit-border-radius: 3px;
	-khtml-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	margin:0;
	padding:5px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	width:auto;
	background: #efefef;
	background: -webkit-gradient(linear, left top, left 25, from(#dadada), color-stop(6%, #efefef), to(#dadada));
	background: -moz-linear-gradient(top, #dadada, #efefef 2px, #dadada 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	cursor: pointer;
}
/** Quote
_____________________________________________________________________________*/
.heart {
	background:url("../images/heart_03.gif") no-repeat 26% 0 transparent;
}
.coffee {
	background:url("../images/coffee_03.gif") no-repeat 25% 0 transparent;
}
.testimonials {
	width:800px;
	height:1040px;
	background: url(../images/testimonials/testimonials.png) no-repeat 0 0 transparent;
	overflow: hidden;
}
.testimonials #right{
	width:500px;
	height:160px;
	padding: 20px 50px 15px 250px;
	margin-bottom: 50px;
	position: relative;
}
.testimonials #left{
	width:500px;
	height:160px;
	padding: 15px 250px 15px 50px;
	margin-bottom: 55px;
	position: relative;
}
.quote_note {
	color: #0083FF;
	font-size: 0.8em;
	text-align: right;
	position: absolute;
	bottom:0px;
	left: 247px;
	height: 30px;
}
/** Classes
_____________________________________________________________________________*/
.index_heart {
	background:url("../images/heart_03.gif") no-repeat 61% 0 transparent;
}

