/*
TOC
0.  GLOBAL
1.  HEADER
2.  NAVIGATION
3.  CONTENT
4.  SIDEBAR
5.  FOOTER
6.  TYPOGRAPHY
7.  HOME PAGE
8.  PRINT
9.  MOBILE
10. RETINA 

/*-------------------------------------------------------------------------------

0.  GLOBAL 

-------------------------------------------------------------------------------*/
/* Apply a natural box layout model to all elements: http://paulirish.com/2012/box-sizing-border-box-ftw/ */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

html, body {
	min-width:1100px;
	height:100.1%; /* keeps vertical scroll bar visible in browsers so layout doesn't 'bounce' page to page */
	text-align:center; /* combined with container {margin:0 auto 0 auto} this centers a page */
	background-color:#c62801;
}

#wrapper {
	background-color:#fff;
	width:1090px;
	min-height:100.1%; 
	margin:0px auto;
	padding:30px 35px 35px 35px;
	-webkit-box-shadow: 0px 0px 14px 0px #222; 
	box-shadow: 0px 0px 14px 0px #222;
}

#rentalAppButton {
	margin:auto;
	width:300px;
	padding:7px;
	background-color:#01A0C7;
	text-align:center;
	border-radius:10px;
}

#rentalAppButton h3 {
	padding:0px;
}

#rentalAppButton h3 a {
	color:#FFF;
	text-decoration:none;
}

header, .content, #secondary-nav {
	width:100%;
	margin:0 auto;
	text-align:left;
}

/* Force Element To Self-Clear its Children */
.group:after {
  content: "";
  display: table;
  clear: both;
}

input[type='text'], input[type='password']  {
	color:#555555;
	font-size:14px;
	padding:3px 3px 3px 5px;
	border:1px solid #babcbe;	
}

.button, .button:visited {
	color:#fff;
	font-size:14px;
	font-weight:700;
	background-color:#a65854;
	text-transform:uppercase;
	padding:3px 20px 2px 20px;
	border:0;
}

.button:hover {
	color:#fff;
	text-decoration:none;
	cursor:pointer;
	background-color:#973a3a;
}

.small {
	font-size:12px;
	padding:2px 7px 2px 7px;
}

.center {
	text-align:center;
}

.top {
	text-align:center;
	padding-top:20px;
}

a.no-style, a.no-style:visited {
	color: #2e2e2e;
}

a.no-style:hover {
	color: #2e2e2e;
	text-decoration:none;
}



/*-------------------------------------------------------------------------------

1.  HEADER

-------------------------------------------------------------------------------*/
header {
	position:relative;
	width:1050px;
}

#logo {
	float:left;
	margin:0 0 20px 25px;	
}



/*-------------------------------------------------------------------------------

2.  NAVIGATION

-------------------------------------------------------------------------------*/
header nav {
	float:right;
	position:relative;
	padding:0 0 15px 0;
	margin:18px 50px 0 0;
	background-image:url('/images/bg-dots.png');
	background-repeat:repeat-x;
	background-position:bottom left;
}

header nav ol {
	padding:0;
	list-style:none;	
}

header nav ol > li {
	display:inline;
	position:relative;
	padding:0;
	line-height:normal;
}

header nav a, nav a:visited {
	display:block;
	float:left;
	color:#111;
	padding:8px 15px;
	font-size:24px;
	font-weight:700;
}

header nav a:hover {
	text-decoration:none;
	background-color:#01a0c7;
	color:#fff;
	border-radius:25px;
	webkit-border-radius:25px;	
}

header nav li.at a {
	background-color:#f3f3f3;
	border-radius:25px;
	color:#111;
	webkit-border-radius:25px;	
}

header #search-form {
	float:right;
	margin:18px 50px 0 0;
}



/*-------------------------------------------------------------------------------

3.  CONTENT

-------------------------------------------------------------------------------*/
.content {
	background-color:#e6e6e6;
	webkit-border-radius:20px;
	border-radius:20px;
	background-image:url('/images/bg-content.png');
	background-repeat:repeat-y;
	background-position:697px 0px;
}

article {
	float:left;
	width:695px; 
	padding:45px 45px 30px 45px;
}

.agents {
	list-style:none;	
	padding:20px 0 0 50px;
}

.agents li {
	float:left;
	width:50%;
	padding:0 0 30px 0;
	border:0px solid blue;
}

.agents img {
	-webkit-box-shadow: 3px 4px 3px 0px #9e9e9e; 
	box-shadow: 3px 4px 3px 0px #9e9e9e;
	margin:0 0 15px 15px;
}

.agents h2 {
	padding-bottom:0px;	
}



/*-------------------------------------------------------------------------------

4.  SIDEBAR

-------------------------------------------------------------------------------*/
aside {
	float:right;
	width:320px; 
	padding:0px;
	border:0px solid blue;
}

aside section {
	padding:35px 35px 15px 35px;
}

aside ol {
	list-style:none;
	padding:0px;
	line-height:normal;
	font-weight:600;
}

aside ol li {
	padding-bottom:24px;	
} 



/*-------------------------------------------------------------------------------

5.  FOOTER

-------------------------------------------------------------------------------*/
footer {
	padding:28px 20px;
}

footer p {
	padding:0;
}

footer ol {
	list-style:none;
	padding:0 0 15px 0;
	margin:0;
}

footer li{
	display:inline;
}



/*-------------------------------------------------------------------------------

6.  TYPOGRAPHY

-------------------------------------------------------------------------------*/
body, input {
	font-family: 'Lato', sans-serif;
	color:#2e2e2e;
	font-size:18px;
	line-height:24px;
	font-weight:400;
}

h1, h2, h3, h4, h5 {
	font-weight:700;
}

h1 {
	line-height:40px;
	font-size:36px;
	padding:0 0 16px 0;
}

h2 {
	font-size:24px;
	line-height:32px;
	padding:0 0 10px 0;
}

h3 {
	font-size:20px;
	line-height:20px;
	padding:0 0 10px 0;
}

h4, h5 {
	font-size:18px;
	line-height:20px;
	padding:0 0 10px 0;	
}

p, ul, ol, blockquote {
	font-size:18px;
	line-height:28px;
	padding:0 0 16px 0;	
}

ol, ul {
	padding-left:25px;
}

ul {list-style:disc;}

li {padding:0 0 10px 0;}

strong, b {font-weight:700;}

a, a:visited {
	color: #006BA8;
	text-decoration:none;
}

a:hover {
	color: #2e2e2e;
	text-decoration:underline;
}

blockquote {
	font-style:italic;
	padding:0 20px 30px 20px
}

strong, b {
	font-weight:600;	
}

::-moz-selection, ::selection{
	background:#fcb040;
	color: #fff; 
	text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcb040;} 

ins {background-color: #fcb040; color: #fff; text-decoration: none;}

mark {background-color: #fcb040; color: #fff; font-style: italic; font-weight: bold;}

:focus {outline-style: none;} /* removes dotted border around Mozilla links */



/*-------------------------------------------------------------------------------

7.  HOME PAGE

-------------------------------------------------------------------------------*/
.home .content {
	background-color:#e6e6e6;
	webkit-border-radius:20px;
	border-radius:20px;
	background-image:url('/images/bg-lake-county.jpg');
	background-repeat:no-repeat;
	background-position:top center;
	min-height:610px;	
}

.home #property-scroller {
	position:relative;
	background-color:#e6e6e6;
	webkit-border-radius:20px;
	border-radius:20px;
	margin:0 0 14px 0;
	padding:45px 0 5px 0;
	text-align:center;
}

.home #property-scroller ul {
	padding:0 0 0 30px;
	list-style:none;
}

.home #property-scroller li {
	float:left;

}

.home #property-scroller + ul li img {
	webkit-border-radius:20px;
	border-radius:20px;
    -webkit-box-shadow:inset 0 0 10px #000000;
    box-shadow:inset 0 0 10px #000000;
	margin:0 0 10px 0;
}

.home #property-scroller h2 {
	padding:0;	
}

.home #property-scroller nav ul {
	padding:0;
	list-style:none;
}

.home #property-scroller nav ul li:first-child img {
	position:absolute;
	top:42%;
	left:0;
}

.home #property-scroller nav ul li:last-child img {
	position:absolute;
	top:42%;
	right:0;
}

.home article {
	float:none;
	width:auto; 
	padding:35px 45px 30px 45px;
}

.full {width:100%;}

.shadow {
    overflow: hidden;
	height:187px;
	width:280px;
}
.shadow img {
    left: -17px;
	top:-11px;
    max-width: 316px;
    position: relative;
}

.TableDark {background-color:#dadada;}
.TableLight {background-color:#eeeeee;}
.no_spacing {margin:0px; padding:0px;}

.rental {float:left; width:300px; padding:10px; margin-right:10px; min-height:198px; text-align:center;}
.bold {font-weight:bold;}

/*-------------------------------------------------------------------------------

8.  PRINT

-------------------------------------------------------------------------------*/
@media print {

}



/*-------------------------------------------------------------------------------

9.  MOBILE

-------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
			
}



/*-------------------------------------------------------------------------------

10.  RETINA

-------------------------------------------------------------------------------*/
@media all and (-webkit-min-device-pixel-ratio: 1.5) { 
header nav {
	background-image:url('/images/bg-dots@2x.png');
}

.content {
	background-image:url('/images/bg-content@2x.png');
}

.home .content {
	background-image:url('/images/bg-lake-county@2x.jpg');
	background-size:100%;
}
}

label.reset {
	float:none;
	text-align:initial;
	width:auto;
	margin-top:initial;
	margin-right:initial;
	margin-left:initial;
}