@charset "utf-8";
/* CSS Document */
/* CSS RESET
----------------------------------------------------------------------------------------------------*/
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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* TYPOGRAPHY
----------------------------------------------------------------------------------------------------*/
/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; line-height: 1.5}
body {
	font-size: 100%;
	color: #222;
	background: #fff;
	font-family: freight-sans-pro, calluna, Georgia, "Times New Roman", Times, serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 2.2em; line-height: 1; margin-bottom: 0.5em; }
h2 {
	font-size: 1.8em;
	margin-bottom: 0.75em;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #BF1E2E;
}
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p {
	margin: 0 0 1.5em;
	font-size: 1.2em;
	line-height: 1.5;
}
/*
  These can be used to pull an image at the start of a paragraph, so
  that the text flows around it (usage: <p><img class="left">Text</p>)
 */
.left       { float: left !important; }
p .left     { margin: 1.5em 1.5em 1.5em 0; padding: 0; }
.right      { float: right !important; }
p .right    { margin: 1.5em 0 1.5em 1.5em; padding: 0; }

a:focus,
a:hover     { color: #09f; }
a           { color: #06c; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong,dfn  { font-weight: bold; }
em,dfn      { font-style: italic; }
sup, sub    { line-height: 0; }

abbr,
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre         { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul,
li ol  { margin: 0; }
ul, ol {
	
	 margin: 0 1.5em 1.5em 0; padding-left: 1.5em; 
	 font-size: 1.2em;
	line-height: 1.5;}

ul     { list-style-type: disc; }
ol     { list-style-type: decimal; }

dl     { margin: 0 0 1.5em 0; }
dl dt  { font-weight: bold; }
dd     { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

/*
  Because of the need for padding on TH and TD, the vertical rhythm
  on table cells has to be 27px, instead of the standard 18px or 36px
  of other elements.
 */
table         { margin-bottom: 1.4em; width:100%; }
th            { font-weight: bold; }
thead th      { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
/*
  You can zebra-stripe your tables in outdated browsers by adding
  the class "even" to every other table row.
 */
tbody tr:nth-child(even) td,
tbody tr.even td  {
  background: #e5ecf9;
}
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small     { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large     { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide      { display: none; }

.quiet     { color: #666; }
.loud      { color: #000; }
.highlight { background:#ff0; }
.added     { background:#060; color: #fff; }
.removed   { background:#900; color: #fff; }

.first     { margin-left:0; padding-left:0; }
.last      { margin-right:0; padding-right:0; }
.top       { margin-top:0; padding-top:0; }
.bottom    { margin-bottom:0; padding-bottom:0; }
/* LAYOUT
----------------------------------------------------------------------------------------------------*/
/*For main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%;}
body {
	background-image: url(../images/bg.gif);
	background-repeat: repeat-x;	
}

#wrapper {
	min-height: 100%;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}

#main {overflow:auto;
	padding-bottom: 150px;}  /* must be same height as the footer */
	
#header {
	height: 450px;
	background-repeat: no-repeat;
	margin-bottom: 80px;
	margin-top: 50px;
}
#header_logo {
	width: 540px;
	margin: 10px;
	float: left;
	height: 430px;
	text-align: left;
}
#header_photo {
	width: 380px;
	margin: 10px;
	float: left;
	height: 430px;
}
#main_nav {
	height: 38px;
	width: 960px;
	margin-top: 2px;
	margin-bottom: 2px;
}
#main_nav ul {
	list-style: none;
	margin: 0;
	line-height:38px;
	padding: 0px;
	margin-left: 0px;
	font-size: 18px;
}
#main_nav li {
	display:inline;
	margin-left: 0px;	
}
#main_nav li a {
	float:left;
	text-decoration: none;
	padding-left:10px;
	padding-right:10px;
}
#main_nav ul li a:hover {

}
#left_content {
	float: left;
	width: 630px;
	margin-top: 10px;
	margin-left: 10px;
}
#right_content {
	float: left;
	width: 300px;
	margin-top: 10px;
	margin-left: 20px;
}
.left_content_item {
	padding: 10px;
	float: left;
	width: 620px;	
}
.right_content_item {
	padding: 10px;
	float: left;
	width: 300px;
}
.phone_number {
	font-size: 26px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.address {
	font-size: 18px;
	line-height: 1.5;
	margin-top: 20px;
}
#footer {
	position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;
	background-color: #333;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #C00;
} 
#footer_inner {
	width: 940px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#footer_inner ul {
	list-style: none;
	margin: 0;
	line-height:38px;
	padding: 0px;
	margin-left: 0px;
	font-size: 16px;
}
#footer_inner li {
	display:inline;
	margin-left: 0px;	
}
#footer_inner a:link {
	text-decoration: none;
	padding-left:10px;
	padding-right:10px;
	color: #FFF;
}
#footer_inner a:visited {
	color: #FFF;
}
#footer_inner a:hover {
	color: #FFF;
	text-decoration: underline;
}
#footer_inner a:active {
	color: #FFF;
}
#footer_inner p {
	font-size: 12px;
	clear: both;
	color: #FFF;
	margin-top: 20px;
}
/* IMPORTANT

You also need to include this conditional style in the <head> of your HTML file to feed this style to IE 6 and lower and 8 and higher.

[if !IE 7]>
	<style type="text/css">
		#wrap {display:table;height:100%}
	</style>
<![endif]

*/	

/* TYPOGRAPHY
----------------------------------------------------------------------------------------------------*/
h1.header {
	font-size: 22px;
	color: #FFF;
}

/* FORMS
----------------------------------------------------------------------------------------------------*/

/* TABLES
----------------------------------------------------------------------------------------------------*/

/* CLASSES
----------------------------------------------------------------------------------------------------*/
.contact_box {
	background-color: #CCC;
	border: 2px solid #333;
	margin: 5px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
}
/* jQuery lightBox plugin - Gallery style */
	#gallery {
	width: 520px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
}
#gallery ul {
	list-style: none;
}
#gallery ul li {
	display: inline;
	line-height: 70px;
}
#gallery ul img {
	border: 5px solid #CCC;
}
#gallery ul a:hover img {
	border: 5px solid #999;
	color: #fff;
}
#gallery ul a:hover {
	color: #fff;
}

/* CLEAR
----------------------------------------------------------------------------------------------------*/
/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}
