/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */

/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body {
	font:13px/1.231 sans-serif;
*font-size:small;
} /* Hack retained to preserve specificity. */
select, input, textarea, button {
	font:99% sans-serif;
}
/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}
/**
 * Minimal base styles.
 */

body, select, input, textarea {
	/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;/* Set your base font here, to apply evenly. */
  /* font-family: Georgia, serif;  */
}
/* Headers (h1, h2, etc) have no default font-size or margin. Define those yourself. */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
/* Always force a scrollbar in non-IE: */
html {
	overflow-y: scroll;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
}
a, a:active, a:visited {
	color: #607890;
}
a:hover {
	color: #036;
}
ul, ol {
	margin-left: 2em;
}
ol {
	list-style-type: decimal;
}
/* Remove margins for navigation lists. */
nav ul, nav li {
	margin: 0;
	list-style:none;
	list-style-image: none;
}
small {
	font-size: 85%;
}
strong, th {
	font-weight: bold;
}
td {
	vertical-align: top;
}
/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
pre {
	/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
	white-space: pre-wrap;
	white-space: pre-line;
	word-wrap: break-word;
	padding: 15px;
}
textarea {
	overflow: auto;
} /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
	margin-left: -7px;
} /* thnx ivannikolic! */
/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}
/* Hand cursor on clickable input elements. */
label, input[type="button"], input[type="submit"], input[type="image"], button {
	cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements. */
button, input, select, textarea {
	margin: 0;
}

/* Colors for form validity. */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
 border-radius: 1px;
-moz-box-shadow: 0px 0px 5px red;
-webkit-box-shadow: 0px 0px 5px red;
box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
background-color: #f0dddd;
}


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink. */
::-moz-selection {
background: #FF5E99;
color:#fff;
text-shadow: none;
}
::selection {
	background:#FF5E99;
	color:#fff;
	text-shadow: none;
}
/* j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #FF5E99;
}
/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}
/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/**
 * Primary styles.
 *
 * Author: 
 */

/*
header = 444x86
searchfor = 192x34
tip = 334x72
*/


.helvetica {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}
.georgia {
	font-family: Georgia, serif;
}
.blue {
	color: #5c90ca;
}
.lucida {
	font-family: Lucida Grande, Lucida, Arial, sans-serif;
}
.grey {
	color: #333333;
}
.dark-blue {
	color: #003366;
}
.home-subscribe {
	width: 100%;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding: 5px 0 5px 0;
	margin: 10px 0;
}
.home-subscribe .home-link {
	float: left;
	line-height: 16px;
	color: #333;
	margin-top: 2px;
	text-decoration: none;
}
.home-subscribe .subscribe-link {
	float: right;
	line-height: 16px;
	color: #333;
	text-decoration: none;
}
.home-subscribe .subscribe-link img {
	position: relative;
	top: 3px;
	padding-left: 5px;
	width: 16px;
	height: 16px;
}
header .nav {
	margin-top: 40px;
	float: right;
	position: relative;
}
.ie7 header .nav {
	width: 300px;
}
.logo {
	height: 86px;
	width: 444px;
	background: url(../images/sprite.png);
	display: block;
	float: left;
}
.follow {
	float: right;
}
.follow h5 {
	font-size: 12px;
	float: right;
	margin-bottom: 8px;
	font-weight: normal;
}
.follow .icons {
	float: right;
	clear: right;
}
.follow a {
	width: 31px;
	height: 31px;
	display: block;
	background: url(../images/sprite.png) no-repeat;
	float: right;
	margin-left: 8px;
}
.nav-links {
	float: right;
	margin-top: 36px;
}
.nav-links a {
	text-decoration: none;
	font-size: 16px;
	color: #333333;
}
.ie7 .nav-links {
	margin-top: 0px;
	position: absolute;
	bottom: 0px;
	right: 80px;
}
.follow .twitter {
	background-position:  -223px -158px;
}
.follow .facebook {
	background-position:  -192px -158px;
}
 input::-webkit-input-placeholder, isindex::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
 color: transparent;
}
input.search-for-homes, .refine-your-search {
	height: 34px;
	width: 192px;
	background: url(../images/sprite.png) 0px -158px;
	display: block;
	padding: 0px;
	border: none;
}
input.search-for-homes {
	background: url(../images/sprite.png) 0px -158px;
}
.search {
	/*  width: 100%;*/
	margin-bottom: 10px;
	margin-top: 10px;
}
.search-results .post {
	margin-bottom: 25px;
}
.left-col, .sidebar {
	padding-top: 22px;
}
li {
	list-style: none;
}
ul {
	margin-left: 0px;
}
/* !slideshow */

body {
	font-family: Georgia, Lucida, sans-serif;
	color: black;
}
.pikachoose {
	width: 600px;
}
.pika-wrap {
	width: 600px;
	margin: 0 auto;
}
.pika-image {
	position: relative;
	width: 600px;
	height: 306px;
}
/*position image holders */
    .pika-image .animation, .pika-image .main-image {
	position: absolute;
	top: 0px;
	left: 0px;
}
.pika-image .animation {
	display: none;
	z-index:2;
}
.pika-image img {
	border:0;
}
.pika-image .caption {
	position: absolute;
	background: url(../images/50percent.png) repeat;
	border: 1px solid #141414;
	font-size: 14px;
	color: #fafafa;
	padding: 10px;
	text-align: left;
	width: 578px;
	bottom: 0px;
	height: auto;
}
.pika-image .caption a {
	height: 100%;
	display: inline-block;
	width: 576px;
	color: white;
	font-family: Lucida Grande, Lucida, sans-serif;
}
.pika-image .caption a h3 {
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 10px;
}
.pika-image .caption p, .pika-image .caption a {
	text-decoration: none;
	padding: 0;
	margin: 0;
	line-height: 14px;
}
.pika-imgnav .next {
	background: red;
	height: 50px;
	width: 50px;
}
#pikame {
	display:none;
}
/* !home */
.container {
	width: 956px;
	margin: 20px auto;
}
.left-col {
	width: 630px;
	float: left;
	padding-right: 50px;
}
.index-blog .post {
	margin-top: 15px;
	width: 278px;
	float: left;
	margin-right: 20px;
}
.post-wrap {
	float: left;
}
.last {
	clear: left;
}
.index-blog .left-col, .single .left-col, .search .left-col {
	width: 599px;
	padding-right: 50px;
}
.index-blog #sidebar-primary, .single #sidebar-primary, .search #sidebar-primary {
	width: 300px;
}
.sidebar {
	float: left;
	width: 275px;
}
.entry-title a {
	color: #86a555;
	font-family: Lucida Grande, Lucida, sans-serif;
	text-decoration: none;
	text-transform: capitalize;
	font-size: 1.5em;
}
.entry-title {
	margin-bottom: 10px;
}
.date {
	border-bottom-width: 4px;
	border-bottom-style: double;
	border-bottom-color: #dddddd;
	padding-bottom: 7px;
	margin-bottom: 12px;
}
.excerpt {
	margin-bottom: 28px;
}
.excerpt p {
	margin-bottom: 10px;
}
.read a {
	text-decoration: none;
	color: #628db0;
	font-weight: bold;
	font-family: Lucida Grande, Lucida, sans-serif;
}
/* Changed image to sprite2.png - increased height by 10px  NP */
.fact {
	width: 337px;
	height: 82px;
	background: url(../images/sprite2.png) 0 -86px;
	position: relative;
}
ul#facts > li:first-child {
    margin-top: 10px;
}
/* Changed top padding from 15px to 12px  NP */
.fact p {
	font-size: 0.9em;
	position: relative;
	padding: 12px 18px 0px 86px;
}
.widget_facts {
	padding-bottom: 10px;
	margin-bottom: 15px;
}
/* Changed top from 23px to 27px to align facts to blue banner  NP */
.fact span {
	color: white;
	font-style: italic;
	left: 16px;
	position: absolute;
	top: 27px;
}
/* home page */

.home-top {
	margin-top: 7px;
	background: url(../images/home.jpeg);
	-moz-border-radius: 7px;
	border-radius: 7px;
	width: 955px;
	height: 294px;
	display: block;
	float: left;
	margin-bottom: 33px;
}
.home-top ul {
	margin: 0px 0 0 20px;
	padding-top: 20px;
}
.home-top li {
	-moz-border-radius: 7px;
	border-radius: 7px;
	float: left;
	behavior: url(PIE.htc);
	margin-right: 20px;
}
/* increaced height to 180px This has not been put yet */
.home-top .fact {
	width: 289px;
	height: 180px;
	background: url(../images/blue-alpha.png) repeat;
	position: relative;
}
.home-top .fact p {
	font-size: 1.4em;
	position: relative;
	color: white;
	font-family: Lucida Grande, Lucida, sans-serif;
	font-weight: bold;
	padding: 40px 15px 0px 21px;
}
.home-top .widget_facts {
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.home-top .fact span {
	background: url(../images/fact-banner.png) no-repeat;
	color: black;
	height: 29px;
	left: -12px;
	padding: 3px 0px 0px 12px;
	position: absolute;
	font-family: Georgia;
	top: 12px;
	width: 81px;
}
.home-page.left-col {
	border-right: 1px solid #dddddd;
}
.home-page .search, .metro .search, .main .search {
	float: left;
	padding: 9px;
	background-image: -webkit-gradient(  linear,  left bottom,  left top,  color-stop(0, rgb(214,214,214)),  color-stop(0.41, rgb(255,255,255))  );
	background-image: -moz-linear-gradient(  center bottom,  rgb(214,214,214) 0%,  rgb(255,255,255) 41%  );
	-pie-background: linear-gradient(#ffffff, #d6d6d6); /* native pie for ie */
	-webkit-box-shadow: 0px 0px 10px #cccccc;
	-moz-box-shadow: 0px 0px 10px #cccccc;
	box-shadow: 0px 0px 10px #cccccc;
	background: linear-gradient(#ffffff, #d6d6d6);
	border: 1px solid #CCC;
	width: 300px;
	position: relative;
	behavior: url(PIE.htc);
}
.state .search {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	height: 12px;
	padding: 8px;
}
.home-page .search-for-homes {
	float: left;
	margin: 11px 0 0 10px;
}
.sidebar-top .search-for-homes {
	clear: left;
}
.home-page.left-col h3 {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 30px;
	color: #999;
	padding-right: 100px;
}
.home-page.left-col {
	padding-top: 0px;
	width: 560px;
	padding-right: 40px;
}
.home-page.right-col {
	width: 300px;
	float: left;
	padding-left: 14px;
}
.home-page.right-col > * {
	margin-left: 10px;
	float: left;
}
.home-page.right-col h3 {
	margin-bottom: 15px;
	font-family: Georgia, serif;
	color: #333333;
	font-size: 14px;
	font-weight: normal;
}
.home-page.right-col li {
	list-style: disc;
	margin-left: 15px;
	margin-bottom: 10px;
}
.home-page.right-col a {
	text-decoration: none;
	font-size: 11px;
}
.home-page.right-col a:hover {
	text-decoration: underline;
}
.featured-home {
	float: left;
	width: 100%;
}
.featured-home h4 {
	color: #333;
	margin: 20px 0;
	padding-top: 10px;
	font-size: 14px;
	font-family: Georgia, serif;
	font-weight: normal;
}
.featured-home h5 {
	color: #999;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}
.featured-home-listing {
	width: 200px;
	float: left;
	border-right: 1px solid #dddddd;
	margin-right: 50px;
}
.featured-home-listing:last-child {
	margin-right: 0px;
	border-right: none;
}
.featured-home li.last-child {
	margin-right: 0px;
	border-right: none;
}
.featured-home p {
	padding-right: 60px;
	margin-bottom: 10px;
	font-size: 14px;
	width: 180px;
}
.featured-home-listing a {
	text-decoration: none;
	font-size: 11px;
}
.featured-home-listing a:hover {
	text-decoration: underline;
}
.home-page .search:focus {
	outline: none;
}

/* Featured home links NP */

.featured-home-city {
	color: #999;
	margin-bottom: 10px;
}

.featured-home-city a:link {
	color: #999;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 22px;
	font-weight: bold;
}

.featured-home-city a:visited {
	color: #999;
}

.featured-home-city a:hover {
	color: #036;
}

.featured-home-city a:active {
	color: #999;
}

/* Featured home description NP */

.featured-home-description {
	color: #000;
	text-decoration: none;
	margin-bottom: 10px;
	font-size: 14px;
    width: 180px;
}

.featured-home-description a {
	color: #000;
	font-size: 14px;
}

.featured-home-description a:hover {
	text-decoration: underline;
    color: #036;
}

/* Footer */

footer {
	margin: 40px 0px;
}
footer .links {
	margin-bottom: 10px;
	font-family: Lucida Grande, Lucida, Arial, sans-serif;
	font-size: 11px;
	color: #003366;
	margin-top: 30px;
}
footer .links a {
	text-decoration: none;
}
footer .copyright {
	color: #808080;
	font-family: Lucida Grande, Lucida, Arial, sans-serif;
	font-size: 11px;
}
footer {
	border-top: 8px solid #eeeeee;
	padding-top: 15px;
}
footer .footer-copy h6 {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #999;
	margin-bottom: 15px;
}
footer .footer-copy p {
	font-family: Georgia, serif;
	font-size: 12px;
	color: #000;
	margin-bottom: 15px;
}

/* state page */

.widget_search_links {
	background: #eee;
	-moz-box-shadow: 0px 0px 10px #ccc;
	-webkit-box-shadow: 0px 0px 10px #ccc;
	box-shadow: 0px 0px 10px #ccc;
	padding: 10px;
	behavior: url(PIE.htc);
}
.widget_search_links input[type="text"] {
	width: 80%;
}
.widget_search_links h3 {
	color: #999999;
	font-size: 24px;
	text-align: center;
}
.widget_search_links form {
	margin-left: 30px;
}
.widget_search_links form input[type="submit"] {
	margin-left: 16px;
}
.sidebar-top {
	margin-bottom: 25px;
}
.sidebar-left {
	margin-right: 20px;
}
.sidebar-left, .sidebar-right {
	width: 130px;
	float: left;
}
.widget a {
	font-family: Georgia, Lucida, sans-serif;
	color: #42658d;
	text-decoration: none;
}

/*added .widget hover state*/
.widget a:hover {
	color: #036;
}

.widget-title {
	text-transform: uppercase;
	color: black;
	font-family: Georgia, Lucida, sans-serif;
	color: black;
}
/*Increased margin bottom to 25px - adds more space between Blog Roll and Categories  NP */
.widget {
	margin-bottom: 25px;
}
.widget_search input[type="text"] {
	width:130px;
}
.widget_search label {
	display: none;
}
.widget_search input[type="submit"] {
	display: none;
}
.single em {
	font-style: italic;
}
.single-date {
	text-transform: uppercase;
	color: #808080;
}
.entry-utility {
	color: #808080;
	margin-bottom: 10px;
}
.entry-content {
	line-height: 140%;
}
.entry-content img {
	clear: left;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
.entry-content h2 {
	color: #6e9ecf;
	font-size: 1.3em;
	font-family: Lucida Grande, Lucida, sans-serif;
	margin-bottom: 15px;
}
.entry-content h3 {
}
.entry-content h4 {
	font-weight: normal;
	font-style: italic;
}
.entry-content blockquote {
	float: right;
	width: 35%;
	margin: 0 0 0 30px;
	font-size: 1.2em;
	font-weight: normal;
	font-style: italic;
}
.entry-content p {
	margin-bottom: 15px;
}
.entry-content ul {
	padding-left: 15px;
	margin-bottom: 15px;
}
.entry-content li {
	list-style-type: disc;
	margin-left: 10px;
}
.thumbnail {
	margin-bottom: 10px;
}
.archive .post {
	margin-bottom: 25px;
}
.breadcrumb {
	font-family: Georgia, serif;
	font-size: 14px;
	color: #333333;
}
.breadcrumb a {
	text-decoration: none;
}
/* Geography Pages */

.geography h2, .geography h3 {
	color: #5C90CA;
	font-size: 1.3em;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	margin-bottom: 5px;
}
.geography.state h1 {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 36px;
	margin-bottom: 25px;
	color: #5c90ca;
}
.geography h2 {
	font-size: 22px;
	margin-bottom: 13px;
}
.state .search {
	float: left;
	margin-bottom: 20px;
}
.state h2, .state h3 {
	color: #999;
}
.state, .metro {
	border-top: 8px solid #eeeeee;
	margin-top: 15px;
	padding-top: 5px;
}
.sidebar #facts {
	position: relative;
	left: -25px;
}
.state .sidebar {
	padding-top: 10px;
	padding-right: 0px;
	width: 300px;
}
.state .sidebar img {
	float: right;
	padding-right: 0px;
	border: 7px solid #eeeeee;
	margin-top: 22px;
}
.state .left-col {
	border-right: none;
	width: 606px;
}
/* added 7px to top marin NP */
.refine-your-search {
  float: left;
  margin: 7px 0 0 10px;
}

.state hr {
	clear: both;
	margin: 20px 0;
}
.geography h4, .geography .breadcrumb {
	font-weight: normal;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.geography p {
	margin-bottom: 15px;
}
.geography .city-list {
	line-height: 150%;
	font-family: Lucida Grande, Lucida, sans-serif;
	margin-bottom: 40px;
	/*
  -moz-column-count: 4;
	-moz-column-gap: 20px;
	-webkit-column-count: 4;
	-webkit-column-gap: 20px;
	column-count: 4;
	column-gap: 20px;
	
*/
	clear: both;
}
.geography .after-city {
	clear: both;
}
.geography .city-list .column {
	width: 140px;
	margin-right: 10px;
	float: left;
}
.ie7 .geography .city-list li {
	left: -16px;
	position: relative;
}
/* metro pages */

.metro h1 {
	font-size: 26px;
	margin-bottom: 15px;
}
.metro h2 {
	margin-top: 25px;
}
.metro h4 {
	clear: both;
}
.metro form {
	margin-bottom: 25px;
}
.metro .search {
	margin: 0 0 20px 0;
}

/* changed margin-top: 4px; to margin-top: 0px; to align search buttons NP */
.metro .refine-your-search {
	margin-top: 0px;
}

.featured-metro img, .featured-metro ul {
	float: left;
}
.featured-metro img {
	height: 65px;
	width: 90px;
	margin-right: 10px;
	clear: left;
	margin-bottom: 15px;
}
.next-prev {
	clear: left;
	float: left;
}
.featured-metro > div > ul > li {
	clear: both;
	float: left;
	margin-bottom: 20px;
}
.featured-metro a {
	color: #666666;
	text-decoration: none;
}
.featured-metro a:hover {
	text-decoration: underline;
}
.fact-list {
	font-size: 14px;
	float: left;
	width: 50%;
	font-family: Lucida Grande, Lucida, sans-serif;
	color: #444;
	line-height: 27px;
}
.featured-metro {
	color: #999;
	font-family: Lucida Grande, Lucida, sans-serif;
	line-height: 21px;
}
/* property detail */

.property-detail {
	padding: 10px;
	overflow: auto;
}
.listing-details {
	background: #cadbed;
	line-height: 54px;
	padding-left: 10px;
	font-size: 24px;
}
.property-detail .warning {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
}
.property-detail .first-col {
	width: 291px;
	float: left;
	clear: both;
}
.property-detail img {
	margin: 0 0px 20px 0;
	float: left;
}
.property-detail .second-col {
	float: left;
	width: 200px;
	margin-left: 20px;
}
.property-detail dd {
	float: left;
	margin-left: 3px;
	-webkit-margin-start: 0px;
}
.property-detail a.green-button {
	text-decoration: none;
}
.property-detail .top .warning {
	float: left;
	clear: left;
}
em {
	font-style: italic;
}
.property-detail .green-button .middle {
	line-height: 34px;
	height: 34px;
	color: white;
	text-decoration: none;
	font-family: Lucida Grande, Lucida, sans-serif;
	font-weight: bold;
	background: url(../images/green-button-middle.png);
	position: relative;
	display: inline-block;
	float: left;
	padding: 0 10px;
}
.property-detail .green-button .right {
	background: url(../images/green-button-right.png) no-repeat;
	width: 7px;
	height: 34px;
	display: inline-block;
	float: left;
}
.property-detail .green-button .left {
	background: url(../images/green-button-left.png);
	float: left;
	width: 7px;
	height: 34px;
	display: inline-block;
}
.property-detail h2 {
	float: left;
}
.property-detail a {
}
.property-detail ul li span {
	font-weight: bold;
}
.property-detail .second-col h2 {
	margin: 10px 0;
}
.property-detail dt {
	clear: both;
	float: left;
	font-weight: bold;
	margin-right: 3px;
}
.property-detail .meta {
	float: left;
	margin: 20px 0;
	clear: left;
}
.property-detail .meta p {
	margin-bottom: 15px;
}
.property-detail .meta a {
	display: inline;
	float: none;
}
.property-detail .green-button.bottom {
	clear: left;
	margin-top: 20px;
}
.property-detail {
	width: 625px;
	height: 300px;
	overflow-x: hidden;
	font-family: Lucida Grande, Lucida, Arial, sans-serif;
}
.property-detail .comments {
	float: left;
	clear: left;
}
.not-found h1 {
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #5c90ca;
	font-size: 32px;
}
.not-found p {
	font-family: Lucida Grande, Lucida, Arial, sans-serif;
}
/* facebook */

.social {
	margin: 0 5px 5px 5px;
	width: 110px;
	float: right;
}
.fb-wrap {
	width: 100px;
	background: red;
}
.fb_iframe_widget {
	float: left;
}
#LikePluginPagelet {
	float: left;
}
.fb-wrap #plusone {
	float: left;
}
/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement. */
.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}
/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display: none;
	visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/* Hide visually and from screenreaders, but maintain layout. */
.invisible {
	visibility: hidden;
}
/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}
.clearfix:after {
	clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
	zoom: 1;
}



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here. */

}
 @media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here. */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
/* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you:
     j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
    * {
    	background: transparent !important;
    	color: black !important;
    	text-shadow: none !important;
    	filter:none !important;
    	-ms-filter: none !important;
    } /* Black prints faster: sanbeiji.com/archives/953 */
    a, a:visited {
    	color: #444 !important;
    	text-decoration: underline;
    }
    a[href]:after {
    	content: " (" attr(href) ")";
    }
    abbr[title]:after {
    	content: " (" attr(title) ")";
    }
    .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    	content: "";
    }  /* Don't show links for images, or javascript/internal links. */
    pre, blockquote {
    	border: 1px solid #999;
    	page-break-inside: avoid;
    }
    thead {
    	display: table-header-group;
    } /* css-discuss.incutio.com/wiki/Printing_Tables */
    tr, img {
    	page-break-inside: avoid;
    }
    
    @page {
    margin: 0.5cm;
    }
    p, h2, h3 {
    	orphans: 3;
    	widows: 3;
    }
    h2, h3 {
    	page-break-after: avoid;
    }
}

/** DEV: Comments Form styles **/
.commentlist li.comment { margin-top:20px; padding-bottom:15px; border-bottom: 1px dotted #DEDEDE; }
.commentlist .comment-author { font-weight: bold; }
#respond { margin-top:20px; }
/** DEV END **/

/** DEV: Sitemap Styles **/
.sitemap li {list-style: none; font-family: Helvetica Neue, Helvetica, Arial, sans-serif;}
.sitemap li a { text-decoration: none; }
.sitemap .sitemap-state-head a { font-weight: bold; color: #5C90CA; }
/** DEV END **/

/** DEV: Removed top gray border **/
.map-site h1 { font-size: 26px; margin-bottom: 15px; margin-top: 7px; }
/** DEV END **/


/** DEV: Metro Market Data Styles **/
#marketdata_content div.displayNone { display: none; }
#marketdata_content div.floatLeft { float: left; }
#marketdata_content div.align-left { text-align: left; }
#marketdata_content div.small-type { font-size: 80%; }
div.clear { clear: both; }

.marketinsider-chartOuter {
    border: 1px solid #E0E0E0;
    margin-bottom: 15px;
    padding: 2px;
    text-align: center;
    font-family: arial,helvetica,clean,sans-serif;
}
.marketinsider-chartOuter .headerBar {
    background-color: #EDE9DF;
    border-bottom: 1px solid #EDE9DF;
    font-weight: bold;
    height: 20px;
    line-height: 21px;
    padding: 3px 5px;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
}
.marketinsider-arrow-expand {
    background: url('../images/denali_arrows.gif') no-repeat -51px -6px;
    width: 16px;
    height: 16px;
    margin: 2px 8px 0 0;
}
.marketinsider-arrow-contract {
    background: url('../images/denali_arrows.gif') no-repeat scroll -7px -6px transparent;
    height: 16px;
    margin: 2px 8px 0 0;
    width: 16px;
}
.marketinsider-chartOuter .graphDescription { text-align: justify; }
.marketinsider-chartOuter .graphDisplay { padding: 14px 5px; }
.marketinsider-chartOuter .list-item { font-style: italic; font-size: 85%; }
.view-report-statusbar .statusbarContent { padding: 10px; }
.view-report-statusbar .statusBarNumber { color: #003466; font-size: 138.5%; font-weight: bold; }
.view-report-statusbar .statusbarContent td:first-child { border: 0 none; }
.view-report-statusbar .statusbarContent td {
    border-left: 1px solid #999999;
    text-align: center;
    vertical-align: middle;
    width: 25%;
}
#marketdata_content .additional-table-cell {
    font-size: 13px;
    font-weight: bold;
    line-height: 17px;
    padding: 8px;
}

ul.zipcodes_list { list-style: none; }
ul.zipcodes_list li { float: left; width: 155px; margin: 4px 0; }
ul.zipcodes_list li a { padding: 4px; font-weight: normal; }
ul.zipcodes_list li a:hover { background-color: #EDE9DF; }
ul.zipcodes_list li a.zip-selected { background-color: #EDE9DF; color: #003366; }

.metro .error { margin: 5px auto 10px; width: 100%; padding: 8px; background: #FFEEEE; color: #660000; border: 1px solid #990000; }
/** DEV END **/