@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Lato:400,700,700italic,900italic);
/*@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,700,400italic,700italic);*/
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);


body {
	font-family: 'Lato', sans-serif;
	font-size:18px;
	/*font-size:1.8rem;*/
	line-height:1.5;
	background-color: #e9d7ba;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
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 div. 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 divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
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: #B46C00;
	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: #B46C00;
	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;
}

h1	{
	font-size:24px;
	font-weight:700;
	color:#008b48;
	font-style:italic;
}

h2	{
	font-size: 21px;
	font-weight: 700;
	color: #3F5334;
}

.caption {
	margin: 0;
	padding: .5em 0;
	color: #B46C00;
	font-weight: 500;
	font-size: 80%;
	text-transform:uppercase;
}

.pBlock {
/*	padding-bottom: 2em;*/
	padding-top: 1.0em;
}

.center	{text-align:center;}


/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1600px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	background-color:#edf6ed;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}


.header {
    max-height:300px;
/*	max-width: 1600px;*/
/*	height:300px;*/
/*	background-image:url(../images/header.jpg);*/                 
}

.header img {
    width: 100%;
	display:block;
}

#menubar	{
	width:auto;
	height:60px;
	background-color: #000;	
	
}

.indent-left {
	margin-left: 2em;
}

@media screen and (max-width: 660px) {
	.container {
		width: 640px;
	}
	
	.header img {
		width: 640px;
		display:block;
	}
}

/*--------------------------------------------------------------
Menu
--------------------------------------------------------------*/

#mobile-menu {display:none;}

#main-menu, #mobile-menu {
	font-size:24px;
	color: #FFF;
    position: relative;
    float: left;
    width: 100%;
    clear: both;
	margin-bottom:1em;
    font-family: 'Lato', sans-serif;
    background: #000;
    background: hsl(0, 0%, 0%);
	line-height:60px;
	border-bottom: 1px solid #35e84b;
	border-top: 1px solid #35e84b;
}
#main-menu ul, #mobile-menu ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
#main-menu li, #mobile-menu li {
    float: left;
    position: relative;
}

#main-menu a, #main-menu a:visited, #mobile-menu a, #mobile-menu a:visited {
	padding: 0px 1em 0 1em;
    display: block;
    text-decoration: none;
    color: white;
    color: hsl(0, 0%, 100%);

}

#main-menu li:hover > a {
    color: #35e84b;
    /*color: hsl(0, 0%, 100%);*/
    background: #00733b;
/*    background: hsl(0, 0%, 30%);*/
	transition: all .2s ease-out;
}

#main-menu div.telephone, #mobile-menu div.telephone {
	float:right;
}
#main-menu div.telephone a, #mobile-menu div.telephone a {
	color: #35e84b;
}
#main-menu div.telephone:hover > a, #mobile-menu div.telephone:hover > a  {
	color: #35e84b;
	background: #000;
}


#main-menu div.telephone a:before, #mobile-menu div.telephone a:before {
	font-family: 'Fontawesome';
	content: '\f098';
	padding:0 .25em 0 0;
	line-height:0;
	font-size:40px;
	position:relative;
	top: 5px;
}


/*--------*/


.map	{
	float: right;
/*	margin-left:2em;*/
	width: 40%;	
	margin: 0 auto;
}

.contact-form {
	float: right;
	width: 50%;	
	margin: 0 auto;
}

.contact {
	float:left;
	width: 48%;
}

form	{
	/*margin-left:5%;
	margin-right:5%;*/
	margin-bottom:3em;
}

.form-title {
	font-size:24px;
	font-weight:700;
	color:#008b48;
	font-style:italic;
	display:block;
	text-align: right;
	margin: 0 1em .5em 0;
	padding-bottom: 0;
}

.subheading {
	font-size: 75%;
	color: rgba(63, 83, 52, 0.43);
	margin-right: 1.75em;
}

.form-group {
	padding:.5em 1em;
	margin: 0 1em 1.5em 1em;
	border:1px solid #00884a;
	border-radius:5px;
	background-color: #cfe6cf;
}

.form-bottom form textarea {
	height: 160px;
	width: 100%;
	resize: vertical;
	display: block;
	margin-bottom: 1em
}

.form-group input {
	width: 100%;
	margin-bottom: 1em;
}

.form-bottom form .input-error {
	border:2px solid #F00;
	background:#FFE5E5;
}

input[type="text"].input-error:-moz-placeholder, textarea.input-error:-moz-placeholder, textarea.form-control.input-error:-moz-placeholder { color: #F00; }
input[type="text"].input-error:-ms-input-placeholder, textarea.input-error:-ms-input-placeholder, textarea.form-control.input-error:-ms-input-placeholder { color: #F00; }
input[type="text"].input-error::-webkit-input-placeholder, textarea.input-error::-webkit-input-placeholder, textarea.form-control.input-error::-webkit-input-placeholder { color: #F00; }

label {
	font-weight: bold;
	padding: .25em 2em .25em 0;
	font-size: 75%;
	color: #00884a;
	
}



button.btn {
	display:block;
	width: 10em;
    margin: 0 auto;
    padding: 0 1em;
    vertical-align: middle;
	background: #008B48;
    border: 0;
    font-family:"Fjalla One", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height:2.5em;
    color: #fff;
    -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;
    text-shadow: none;
    -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
    -o-transition: all .3s; -moz-transition: all .3s; -webkit-transition: all .3s; -ms-transition: all .3s; transition: all .3s;
}

button.btn:hover { background: #35e84b; color: #008B48;}

button.btn:active { outline: 0; opacity: 0.6; color: #FFC505; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; }

button.btn:focus { outline: 0; opacity: 0.6; background: #999; color: #ccc;}

button.btn:active:focus, button.btn.active:focus { outline: 0; opacity: 1.0; background: #FFC505; color: #dde6e9; }






@media screen and (max-width: 1200px) {
	#menubar	{
		height:45px;
	}
	
	#main-menu {
		font-size:18px;
		line-height:45px;
	}
	
	#main-menu a {
		padding: 0px .5em 0 1em;
	}
	
	#main-menu div.telephone a:before {
	
		padding:0 .25em 0 0;
		line-height:0;
		font-size:30px;
		position:relative;
		top: 4px;
	}
	
	.map	{
	/*	width:450px;
		height:338px;*/
	}
}


.show-menu {
	padding-left:.5em;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display:none;
}

/*Show menu when invisible checkbox is checked*/
#main-menu input[type=checkbox]:checked ~ ul {
    display:list-item;
}

@media screen and (max-width: 805px) {
	#main-menu a {
		padding: 0px .5em 0 .5em;
	}
}

@media screen and (max-width: 760px) {

	#menubar	{
		height:60px;
	}
	
	#main-menu {
		font-size:24px;
		line-height:60px;
	}
	
	
		
	/*Display 'show menu' link*/
	.show-menu {
		display:inline-block;
	}
	
	#main-menu {display:list-item;}

	label.show-menu:before{
		font-family: 'Fontawesome';
		content: '\f0c9';
		padding:0 .25em 0 0;
		line-height:0;
		font-size:40px;
		position:relative;
		top: 5px;
	}

	#main-menu ul li a:before {
		font-family: 'Fontawesome';
		content: '\f0da';
		line-height:0;
		font-size:20px;
		position:relative;
		left: -24px;
		top: 0px;
	}
		
	#main-menu ul li a{
		padding-left:50px;
	}	

	
/* Hide Dropdowns by Default */
	#main-menu ul  {
		display: none;
		position: absolute; top: 60px;
	}	
	
/* Display Dropdowns on Hover 
	#main-menu ul li:hover> ul {
		display:list-item;
	}	*/
	
/* Fisrt Tier Dropdown */
	#main-menu ul li {
		width:370px;
		background:#000;
		background: rgba(0, 0, 0, .92);
		float:none;
		position: relative;
		border-bottom:none;
	}	

	#main-menu li:hover > a {
		color: #35e84b;
	}
	
	#main-menu ul li:hover > a {
		color: #35e84b;
		background: #00733b;
		
		
	}

	.map	{
		float:none;
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}	
	
	.contact {
		float:none;
		width: 100%;
	}

	.pBlock	{
		/*float:left;*/
	}
	
	.contact-form {
		float: none;
		width: 100%;	
		margin: 0 auto;
	}
	
}




.content {
	padding: 0em 2em;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 2em 2em 2em; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

.insetphoto, .map, .properties	{
	margin-bottom:1em;
/*	border: 1px solid #35e84b;*/
/*	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;*/
	-webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
/*	overflow:hidden;*/
}

.insetphoto {
	margin-left: 2em;
}

.bio-photo {
	padding:0;
	margin: 0em 1.5em 0 0;
	width:30%;
	border: 2px solid #008B48;
	background-color: #FFF;
	line-height:0;
}

.bio-photo img {
	width: 100%;
}

.propery-container	{
	text-align:center;
}

.properties	{
/*	margin-bottom:1em;
	margin-left:1em;*/
	display:block;
	width: 48%;
	margin: 0 0 1em 0;
	padding: .5em;
	background-color: #fff;
	/*-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;*/
	-webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
}

.properties img {
	width: 100%;
}

.slides {
	-webkit-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.25);
	padding: 10px;
	background-color: #fff;
}

.additional-properties {
	clear:both;
	width: 70%;
	display:block;
	margin: 1em auto;
}

.hide {
	display: none;
}


.insetphoto img, .map img, .properties img	{display:block;}


@media screen and (max-width: 1200px) {
	
	.insetphoto {
		width: 338px;
/*		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;*/
		overflow:hidden;
		}
	
	.insetphoto img	{
		width:100%;
		}
		
	.properties	{
		padding: .25em;
	}
		

	
}

@media screen and (max-width: 660px) {
	
	.insetphoto {
		display:none;
		
		}
		
	#main-menu li:hover > a {
		color: #FFF;
		background: #000;
	}
	
	#main-menu div.telephone:hover > a  {
		color: #35e84b;
		background: #000;
	}
	
	.properties	{
		padding: .25em;
	}

}



/* ~~ The footer ~~ */
.footer {
	color: #edf6ed;
	height:65px;
	padding: .5em 1em;
	background-color: #000;
	border-bottom: 1px solid #35e84b;
	border-top: 1px solid #35e84b;	
}

.copyright	{
	text-align:center;
	padding-top:3em;
	font-size:12px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	/*margin-left: 2em;*/
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	/*margin-right: 2em;*/
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}