/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }

.gallery input.submit {
	background-color: #369;
	background-image: url("images/blue-button-bg.gif");
	background-repeat: repeat-x;
	border: none;
	color: #fff;
	font-family: verdana, arial, sans-serif;
	font-size: 85%;
	font-weight: normal;
	padding: 3px 5px;
	cursor: pointer;
	width: auto;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-khtml-box-sizing: content-box;
	box-sizing: content-box;
}


.gallery #main-container {
	margin: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: auto;
}

.gallery #plog-wrapper {
	margin: 5px auto;
	width: 90%;
}

.gallery #inner-wrapper {
	/* padding: 10px;*/
	width: 100%;
}

/* Header Structure/Elements */

.gallery #header-table {
	width: 100%;
}

.gallery #gallery-name h1 {
	padding: 0;
	margin: 0;
}

/* Menu Structure/Elements */

.gallery #breadcrumbs {
	margin: 0;
	padding: 2px;
	border-top: 1px solid #cdcdcd;
	border-bottom: 1px solid #cdcdcd;
}

.gallery #breadcrumb-table {
	width: 100%;
}

.gallery #breadcrumb-links {
	margin: 2px; 
}

.gallery a.print {
	background-image: url("images/printer.gif");
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
}

/* Content Structure/Elements */

.gallery #thumbnail-container { /* this is the div that contains all the thumbnails in collection/album view */
	margin: 5px auto;
}

.gallery #overlay { /* this is the blue box that shows the total comments when hovering on a thumbnail in album view */
	position: absolute; 
	visibility: hidden; 
	background-color: #38c;
	font-family: verdana, arial, sans-serif;
	font-weight: bold;
	font-size: 13px;
	padding: 4px;
	text-align: center;
	width: 18px;
	color: #fff;
}

.gallery ul.slides { /* this is the overall thumbnail container in collection/album view */
	margin: 0 auto;
	margin-top: 15px;
	margin-left: 15px;
	padding: 0;
	list-style: none;
	line-height: 1.4em;
}

.gallery .slides li { /* this is the individual thumbnail container in collection/album view */
	display: block;
	float: left;
	margin: 0 10px 10px 0; /* 2nd number controls the distance between thumbnails */
	padding: 0;
}

.gallery .tag { /* this controls the text under a thumbnail in collection/album view with caption/download checkbox */
	text-align: center;
	white-space: normal;
}

.gallery .meta-header { /* this controls the text under a thumbnail in collection view with total albums or pictures */
	font-size: 85%;
	padding: 0;
	margin: 0;
	color: #8b0000;
	text-align: center;
}

.gallery #caption-date-table, #prev-next-table { /* containers for the caption, date and prev/next links above the large image in picture view */
	width: 600px;
	margin: auto;
}

.gallery #picture-caption, .date { /* this controls the caption and date above the large image in picture view */
	font-size: 1.0em;
	font-weight: normal;
	line-height: 1.4;
	background-repeat: no-repeat;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-left: 4px;
	padding-bottom: 2px;
}

.gallery #prev-link-container {
	width: 50%; 
	text-align: left;
}

.gallery #next-link-container {
	width: 50%; 
	text-align: right;
}

.gallery #prev-button, #next-button {

}

.gallery a.nav-link-img-prev {
	background-image: url("images/rewind.gif");
	background-repeat: no-repeat;
	background-position: left 1px;
	padding-left: 20px;
	width: 40px;
}

.gallery a.nav-link-img-next {
	background-image: url("images/fforward.gif");
	background-repeat: no-repeat;
	background-position: right 1px;
	padding-right: 20px;
	width: 40px;
}

.gallery #picture-holder {
	text-align: center;
}

.gallery #picture-holder a:hover img{
	border: 1px solid #38c;
	background-color: #ededed;
	margin: 4px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.gallery #picture-holder #description {
	width: 625px;
	margin: 15px auto;
}

.gallery .photos {
	padding: 5px;
	margin: 3px;
	border: 1px solid #000;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.gallery .photos-large {
	border: 1px solid #789;
	background-color: #efefef;
	padding: 10px;
	margin: 4px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.gallery .thumbnail img {
	padding: 5px;
	text-align: center;
	margin: 3px;
	background-color: #efefef;
	border: 1px solid #789;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.gallery .thumbnail a:hover img {
	margin: 3px;
	background-color: #ededed;
	border: 1px solid #38c;
}

.gallery #error-404, #no-pictures-msg {
	margin: 50px 75px;
	text-align: justify;
}

/* Form Structure/Elements */

.gallery #jump-menu {
	text-align: right;
}

.gallery #download-selected {
	float: right;
	text-align: right;
}

.gallery #search-box {
	text-align: right;
}

.gallery #jump-search-container {
	text-align: right; 
	vertical-align: middle;
}

.gallery #sortby-container {
	text-align: right; 
	white-space: nowrap;
}

.gallery .align-right {
	text-align: right;
}

.gallery .nomargin {
	margin: 0;
}

/* Footer Structure/Elements */

.gallery #pagination {
	padding: 2px;
	margin: 0;
	clear: both;
	border-top: 1px solid #cdcdcd;
	border-bottom: 1px solid #cdcdcd;
	line-height: 2.5em;
}

.gallery #pagination-table {
	width: 100%;
}


.gallery span.page-link, a.page-link, a.pagPrev, a.pagNext {
	border: 1px solid #bbb;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 1px 5px;
	margin: 0 3px;
	color: #bbb;
	text-decoration: none;
}

.gallery .page-link:hover, .page-link a:hover, a.pagPrev:hover, a.pagNext:hover {
	color: #777;
	border: 1px solid #777;
	background-color: #f9f9f9;
}

.gallery .page-link a:focus {
	outline: none;
	-moz-outline: none;
}


.gallery span.page-link-current {
	border: 1px solid #274f77;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 1px 5px;
	margin: 0 3px;
	background-color: #274f77;
	color: #fff;
}

.gallery #rss-tag-container {
	text-align: right; 
	white-space: nowrap;
}

.gallery #rss-image {
	margin: 0;
	padding: 0;
	display: inline
}

.gallery #stats {
	font-size: 85%;
	text-align: center;
	padding: 8px 5px 0 5px;
	margin: 0;
}

.gallery #link-back {
	font-size: 85%;
	text-align: center;
	padding: 8px 5px 5px 5px;
	margin: 0;
}

/* Comment Structure/Elements */

.gallery #comment-container {
	width: 90%;
	margin: auto;
}

.gallery .comment-heading h2 {
	font-size: 1.2em;
}

.gallery .comment-heading h3 {
	font-size: 1.1em;
}

.gallery .comments p {
	padding: 0;
	margin: 0;
	padding-bottom: 15px;
}

.gallery .comments cite {
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.8em;
	background: url("images/comment.gif") no-repeat 0 3px;
	padding: 5px;
	padding-left: 23px;
	margin-top: 8px;
	height: 28px;
}

.gallery li.comment, li.comment-alt {
	border-top: 1px solid #cdcdcd;
	background-color: #ededed;
	margin: 0;
	padding: 15px;
	list-style: none inside;
}

.gallery li.comment-alt {
	background-color: #fff;
}

.gallery .comments-closed {
	text-align: left;
	margin-top: 25px;
}

/* Exif data container structure*/

.gallery #exif-toggle {
	width: 100%; 
	text-align: center;
	padding: 0;
	margin: 0;
}

.gallery #exif-data-container {
	width: 550px;
	margin: 10px auto;
	text-align: center;
	padding: 10px;
}

#exif-table {

}

.gallery #exif-data td.exif-label {
	text-align: right;
	padding-right: 10px;
	font-weight: bold;
	width: 50%;
}

.gallery #exif-data td.exif-info {
	text-align: left;
	padding-right: 10px;
	width: 50%;
}

.gallery #exif-data {
	margin: 10px auto;
	padding: 20px;
	text-align: left;
	width: 70%;
	border: 1px solid #ddd;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #f7f7f7;
}

/* Slideshow Elements */

.gallery .large-thumb-toolbar {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 5px;
	margin: auto;
}

/* Success/Error Messages */

.gallery .actions, .errors {
	width: 500px;
	background-repeat: no-repeat;
	background-position: 5px 8px;
	margin-bottom: 15px;
	padding: 8px 8px 8px 28px;
	padding-left: 28px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.gallery .actions {
	background-image: url("images/alert.gif");
	border: 1px solid #bb0;
	background-color: #ffffe0;
}

.gallery .errors {
	background-image: url("images/x.gif");
	border: 1px solid maroon;
	background-color: #fcc;
}

.gallery .field-error {
	border: 1px solid maroon;
	background-color: #fcc;
}


* { margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; }
p { margin: 0 0 15px 0; font-size:14px; color:#666;}
h1 { color: #708b18; font-size: 26px; margin-bottom: 10px; font-weight: normal; font-family: 'NeoSans', cursive, sans-serif; text-transform:uppercase; }
h2.privacy { color: #708b18; font-size: 26px; margin-bottom: 10px; font-weight: normal; font-family: 'NeoSans', cursive, sans-serif; }
@font-face {  
  font-family: "NeoSans";  
  src: url( 'NeoSans.otf' ); /* IE */  
  src: local("NeoSans"), url( 'NeoSans.otf' ) format("truetype"); /* non-IE */  
}  

td { vertical-align: top; }
input[type=text] { padding: 3px; width: 250px; }
textarea {  height: 240px; padding: 3px; width: 450px; }
#wrapper { width: 1012px; margin: 0 auto; background: url(../images/wrapper-bg.png); z-index: 1; position: relative; padding-bottom: 20px; }

#header { width: 940px; margin: 0 auto; position: relative; z-index: 1; }
#header .top { background: #1c1c1c; height: 35px; line-height: 35px; }
#header .top h2 { float: left; color: #7c7c7c; font-size: 11px; margin-left: 20px; }
#header .top h2 a { color: #84c225; font-weight: bold; text-decoration: none;  }
#header .top ul { float: right; font-size: 12px; color: #7c7c7c; margin-right: 20px; }
#header .top li { float: left; margin: 0 20px 0 0; list-style-type: none; }
#header .top li a { color: #7c7c7c; text-decoration: none; }
#header .top li a:hover { color: white; }
#header .top li.active { color: #84c225; list-style-type: disc; }
#header .top li.active a { font-weight: bold; color: white; }
#header .logoArea { background: #f8f7f5; height: 93px; }
#header .logoArea .logo { float: left; margin: 15px 0 0 20px;  }
#header .logoArea .logo img { border: 0; }
#header .logoArea .topImage { position: absolute; top: 38px; right: 3px;  }

#menu { width: 924px; height: 67px; background: url(../images/menu.png) no-repeat; padding: 0 18px; top: 120px; position: absolute; left: 26px; z-index: 0; }
#menu li { float: left; list-style-type: none; margin-top: 10px; display: block; }
#menu li a { color: #ccea6a; font-size: 14px; height: 47px; ; line-height: 47px; text-decoration: none; padding: 0 20px; border-right: 1px solid #647e0f; border-left: 1px solid #93b032; float: left; }
#menu li a:hover { color: white; }
#menu li a.active { color: #fcfff4; font-weight: bold; }

#contents { background: #f8f7f5; width: 900px; margin: 50px auto 0 auto; min-height: 500px; padding: 20px 20px; }
#contents li { color: #666666; }

#slider { width: 900px; height: 382px; position: relative; overflow: hidden; margin: 0 auto; }
#slider #carousel-panel { position: absolute; left: 80px; background: url(../images/carousel_panel_bg.png); color: white; padding: 20px; }
#carousel-panel-text h2 { color: #F6F6F6; font-family: din-condensed-web,sans-serif; font-size: 22px; font-style: normal; line-height: 100%; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
#carousel-panel-text p { 
	border-bottom: 1px solid rgba(170, 116, 40, 0.5);  border-top: 1px solid rgba(170, 116, 40, 0.5); color: #F6F6F6; font-family: Georgia,"Times New Roman",Times,serif; font-size: 18px;
    margin: 10px 0;  padding: 10px 0; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
#carousel-panel-text a { color: #E6B957; font-family: din-condensed-web,sans-serif; font-size: 18px; text-decoration: none; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); text-transform: uppercase; }

#footer { height: 45px; background: #131313; font-family: Verdana, sans-serif; width: 900px; margin: 0 auto; padding: 15px 20px; font-size: 11px; color: #7c7c7c; position: relative; }
#footer a { color: #84c225; text-decoration: none; font-weight: bold; }
#footer .contact { 
	position: absolute; top: 15px; right: 20px; width: 105px; color: white; height: 57px; padding: 0px 0 0 35px; font-size: 14px; 
	text-transform: uppercase; 
}
#footer .contact span { color: #84c225; }
#footer ul { margin-bottom: 8px; }
#footer li { float: left; margin-right: 20px; list-style-type: none;   }
#footer li a { text-decoration: none; font-size: 11px; color: #7c7c7c; text-transform: uppercase; font-weight: normal; }


#background { position: fixed; top: 0; left: 0; z-index: 0; }
.rounded { position: relative; }
.tl, .tr, .bl, .br { position: absolute; }
.tl { left: 0; top: 0; }
.tr { right: 0; top: 0; }
.bl { left: 0; bottom: 0; }
.br { right: 0; bottom: 0; }

.left-column { float: left; width: 560px; }
.right-column { float: right; width: 335px; }

.box1 { width: 557px; margin: 20px 20px 20px 0; overflow: auto; }
.box1 h1 { padding: 0 20px; background: #708b18; font-size: 18px; color: white; height: 33px; line-height: 33px; margin: 0; }
.box1 .content { padding: 10px; background: url(../images/box1-bg.jpg) #fdfdfd repeat-x bottom; border: 1px solid #e1e0e0; overflow: auto; line-height: 20px; }
.box1 .content .rounded { width: 178px; height: 178px; background: white; }
.box1 .content .right { float: right; width: 340px; }
.box1 .content img.boxImage { float: left; margin: 5px; }
.box1 .content .right h2 { color: #708b18; font-size: 18px; margin: 15px 0 15px 0; }
.box1 .content .buttons img { margin: 15px 15px 0px 0; border: 0; }

.box2 { width: 313px; background: white; margin: 20px 0 20px 24px; }
.box2 h1 { padding: 0 20px; background: #086f91; font-size: 18px; color: white; height: 33px; line-height: 33px; margin: 0; }
.box2 img { display: block; margin: 0 auto;}
.box2 .content { border: 1px solid #e1e0e0; padding: 3px 0; }
.box2 p { position: absolute; bottom: 0px; background: url(../images/60-percent-white.png) repeat; font-size: 12px; line-height: 16px; padding: 10px; color: black; }

.box3 { width: 286px; margin: 35px 20px 10px 0px; float: left; }
.box3 img { display: block; }
.box3 .content { background: white; border: 1px solid #e1e0e0; border-width: 0 1px; padding: 15px; line-height: 23px; font-size: 14px; overflow: hidden; color:#666; height: 260px; }
.box3 .content img.truck { float: left; margin: 0 8px 6px 0; }
.box3 .content h2 { color: #087498; font-size: 20px; font-weight: normal; margin-bottom: 20px; }
.box3 .content h3 { color: #3d3d3d; font-size: 16px; margin-bottom: 10px; }
.box3 .content a img { margin: 8px 0 0 0; border: 0; }

.bottom-boxes { position: relative; padding: 45px 0 20px 0; }
.bottom-boxes .simple-way { position: absolute; top: 0; left: -29px;}

#overlay { width: 100%; height: 100%; background: black; position: fixed; left: 0; top: 0; z-index: 999998; display: none; }
#popupWindow { 
	border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; border: 20px solid #dddddd; z-index: 999999; position: fixed; width: 500px; 
	top: 50%; left: 50%; background: white; padding: 8px; display: none; 
}
#popupWindow .close { position: absolute; top: -43px; right: -43px; cursor: pointer; }
#popupWindow .inner { margin: 15px; }
.notify { 
	background: #fefccb url(../images/notify-icon.jpg) no-repeat 10px 16px; border: 1px solid #e7de68; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; 
	width: 80%; margin: 25px auto; padding: 25px 25px 25px 65px; 
}
.sub1 {
	padding: 0 20px; background: #708b18; font-size: 18px; color: white; height: 33px; line-height: 33px; margin: 0; font-weight: normal;
}
.sub2 {
	padding: 0 20px; background: #086f91; font-size: 18px; color: white; height: 33px; line-height: 33px; margin: 0; font-weight: normal;
}
.sub1-designs {
	padding: 0 20px; background: #086f91; font-size: 18px; color: white; height: 33px; line-height: 33px; margin: 0; font-weight: normal;
}
.sub2-designs {
	padding: 0 20px; background: #708b18; font-size: 18px; color: white; height: 33px; line-height: 33px; margin: 0; font-weight: normal;
}
.main .right p { font-size: 14px; line-height: 18px; margin-bottom: 10px; }

.home { background: white; padding: 10px; margin: 10px; border: 1px dashed #dcdcdc; border-width: 1px 0; overflow: auto; }
.home img { border: 0; }
.home .left { float: left; width: 340px; }
.home .left .big { border: 1px solid #dcdcdc; padding: 4px; width: 324px; cursor: pointer; display: block; width: 324px; height: 197px; overflow: hidden; position: relative; }
.home .left .big .loading { position: absolute; left: 150px; top: 80px; width: 45px; height: 45px; display: none; }
.home .left .big div { width: 324px; height: 197px; overflow: hidden; }
.home .left .big img { border: 0; height: 197px; }
.home .left .small { width: 69px; border: 1px solid #dcdcdc; padding: 3px; display: block; float: left; margin: 10px 9px 0 0; cursor: pointer; overflow: hidden; height: 41px; }
.home .left .small div img { height: 41px; }
.home .left .small div { width: 69px; height: 41px; overflow: hidden; }
.home .right { float: right; width: 495px; }
.home .right h2 { font-family: NeoSans, Arial, sans-serif; font-size: 20px; color: #086f91; font-weight: normal; margin-bottom: 10px; }
.home .right .bedrooms, .home .right .bathrooms { 
	font-family: NeoSans, arial, sans-serif; font-size: 18px; background: url(../images/bedrooms.jpg) no-repeat top right; padding: 5px 38px 2px 3px; 
	border: 1px solid #dfdfdf; display: block; float: left; color: #484848; margin: 0 10px 10px 0; 
}
.home .right .bathrooms { background: url(../images/bathrooms.jpg) no-repeat top right; }
.home .right p { clear: both; line-height: 18px; margin-bottom: 10px; }
.home .right img { vertical-align: middle; }
.home .right p a { text-decoration: none; font-size: 11px; font-weight: bold; color: #728d19; }
.home .right p b { color: #728d19; }
.home .right .button { margin-right: 25px; }
.ad { margin: 0 auto; width: 550px; }
.addthis_toolbox { float: left; }
.print { margin-left: 10px; text-decoration: none; color: black; font-size: 14px; }
.bg-financered {
	background-color:#72C0EF;
	color:#FFF;
	font-weight:bold;	
	border:none;
	padding-left:100px;
}
.bg-financered td{	
	padding-left:5px;
	padding-right:5px;
	border-top:1px;
}
.bg-financered tr{	
	border-top:1px;}
	
img.floatright {
	float: right;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 5px;
	border:1px;
}
.deliverylinks a:link{text-decoration:none; color: #3d3d3d; font-size: 16px; margin-bottom: 10px; 
}
.deliverylinks a:visited{text-decoration:none; color: #3d3d3d; font-size: 16px; margin-bottom: 10px; 
}
.delivery a:link {color: #666; text-decoration:none; }
.delivery a:visited {color: #666; text-decoration:none; }
#slideshow {
	margin: -5px -20px 0px 4px;
	width: 610px;
	height: 473px;
	overflow: hidden;
	float: left;
	position: relative;
	z-index: 2;
}
.google_adds{
	padding-top:10px;
	padding-bottom:20px;
}
.google_adds_homes{
	padding-top:15px;
	padding-bottom:25px;
	padding-left:10px;
}
.google_adds_details{
	padding-top:15px;
	padding-bottom:15px;
}
.google_adds_details_centre{
	padding-top:15px;
	padding-bottom:15px;
	text-align:center;
}
#contents h2.sub  {
    font-family:Arial, Helvetica, sans-serif;
	font-size: 18px;
	color:#06C;
	margin-top:8px;
	margin-bottom:3px;
	font-weight: normal;
}
#contents h2.steps  {
    font-family:Arial, Helvetica, sans-serif;
	font-size: 18px;
	color:#06C;
	margin-top:8px;
	margin-bottom:3px;
	font-weight: normal;
}
#contents ol, #contents ul, #contents li {
    padding-left: 20px;
	margin: 0 0 15px 0; 
	font-size:14px; 
}
h3 {
	font-size: 16px;
	color:#708b18;
	margin-bottom: 5px;
	margin-top: 10px;
}
#contents h2.delivery {
    color:#666;
	font-weight:100;
}
#contents h2.sub {
    color:#06C;
	font-weight:100;
}
.gallery {
	margin-right: 30px;
}
img.left {
	float: left;
	margin-right: 12px;
	margin-top: 12px;
	margin-bottom: 4px;
}
.clear{
	clear:both;
}
.dotted {color:#404040;font-family:Arial,Helvetica,sans-serif;font-size:24px;font-weight:normal;text-decoration:none; padding-bottom:15px; border-bottom:#999999 1px dotted; padding-top:0px; text-transform:uppercase; margin-bottom: 15px;}
img.right-granny {float:right;
	padding-top:20px;
	padding-right:10px;
	padding-left:10px;}
	
.submitbutton {
		font-size: 18px;
		margin-top: 5px;
}
.homepage {font-size:30px; color:#FFF;}


