/*
Theme Name: Commercial Management Group
Theme URI: http://www.commercialmg.com/
Author: Zenergy Works
Author URI: http://www.zenergyworks.com
Description: CMG theme for WordPress 3.3.1
Version: 1.0
License: GNU General Public License
License URI: license.txt
*/

@import url("reset.css");
@import url("fonts.css");
/* Structure */
/* --------- */

/* General */

body {
	width: 100%;
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
}

/* Layout */

.container {
	width: 960px;
	margin: 0 auto;
	position: relative;
}

/* Typography */
/* ---------- */

/* Paragraphs */

p {
	font-size: 12px;
	line-height:1.5em;
	margin-bottom:1.2em;
}
strong, b {
	font-weight: bold;
}
.small, small {
	font-size: 13px;
	line-height: 18px;
}

/* Sup/Sub */

sup,
sub {
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
}
h1 {
	color: #2e467e;
	font-size: 18px;
	margin-bottom: 0.8em;
	line-height: normal;
	border: 0 none;
}
h2 {
	font-size: 18px;
	color: #2e467e;
	margin-bottom: 1.2em;
	line-height: normal;
}
h3 {
	color:#1a1a1a;
	font-size:15px;
	margin-bottom:1.2em;
	line-height:1.2em;
}
h4 {
	color:#2e467e;
	font-size:13px;
	margin-bottom:1.5em;
	line-height:1.5em;
}
h5 {
	color:#2e467e;
	font-size:12px;
	margin-bottom:1.8em;
	line-height:1.8em;
}
h6 {
	color:#2e467e;
	font-size:11px;
	margin-bottom:1.8em;
	line-height:1.8em;
}

/* Lists */

ul {
	margin-bottom:1.8em;
	list-style: none outside;
	list-style: url(images/bullet.png);
	padding-left: 20px;
}
ul li {
	font-size: 12px;
	line-height:1.5em;
	margin-bottom: 10px;
}
ul li a {
	text-decoration: underline;
}
ul li a:hover {
	text-decoration: none;
}
ul li.caption { /* Apply this class to the first list item in a list to give it a caption */
	font-variant:small-caps;
	list-style:none;
	color:#000;
}
li > ul, li > ol {
	margin-bottom:0;
	margin-left:1em;
}
li > ul li, li > ol li {
	font-size: 12px;
}
ol {
	margin-bottom:1.8em;
	list-style:decimal outside;
	padding-left: 20px;
}
ol li {
	font-size: 12px;
	line-height:1.5em;
	margin-bottom: 7px;
}

/* Rule */

hr {
	color: #ccc;
	border: 0 none;
	outline: none;
	background-color: #ccc;
	height: 1px;
	margin-bottom: 1.5em;
}

/* Blockquote / Cite */

blockquote {
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	line-height: 1.5em;
	margin-bottom: 1.5em;
	color: #383838;
}
cite {
	margin-bottom: 1.5em;
	font-size: 13px;
	clear: both;
	display: block;
	font-style: normal;
	font-weight: normal;
}
/* Links */

a {
	text-decoration: none;
	color: #3062b5;
}
a:focus, a:active, a:hover {
	text-decoration: underline;
}
.button, .more a {
	background: #16285f;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 5px 5px;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #fff;
	display: block;
	width: 130px;
	text-align: center;
	clear: both;
	text-decoration: none;
	-webkit-transition: background 300ms ease;
	-moz-transition: background 300ms ease;
	-ms-transition: background 300ms ease;
	-o-transition: background 300ms ease;
	transition: background 300ms ease;
	border: 0 none;
	outline: 0 none;
	cursor: pointer;
        
}
.button:hover, .more a:hover {
	background: #3b558b;
	color: #fff;
	text-decoration: none;
}

/* Search */


#searchform {
	outline: 0 none;
	width: 180px;
	height: 27px;
	padding: 0;
	margin: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	/*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/
	-moz-box-shadow: inset 2px 2px 2px #cccccc;
	-webkit-box-shadow: inset 2px 2px 2px #cccccc;
	box-shadow: inset 2px 2px 2px #cccccc;
	/*Inner elements should not cover inner shadows*/
	/*Chrome renders inset shadows incorrectly with border-radius*/
	/*IE 7 AND 8 DO NOT SUPPORT INSET SHADOWS*/
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec');
	/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
	/*Element must have a height (not auto)*/
	/*All filters must be placed together*/
	-ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#ececec')";
	/*Element must have a height (not auto)*/
	/*All filters must be placed together*/
	background-image: -moz-linear-gradient(top, #ffffff, #ececec);
	background-image: -ms-linear-gradient(top, #ffffff, #ececec);
	background-image: -o-linear-gradient(top, #ffffff, #ececec);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#ececec));
	background-image: -webkit-linear-gradient(top, #ffffff, #ececec);
	background-image: linear-gradient(top, #ffffff, #ececec);
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	/*Use "background-clip: padding-box" when using rounded corners to avoid the gradient bleeding through the corners*/
	/*--IE9 WILL PLACE THE FILTER ON TOP OF THE ROUNDED CORNERS--*/
	position: relative;
	border: 1px solid #F2F2F2;
}
#searchform input[type="text"] {
	font-size: 12px;
	border: none;
	background: transparent none;
	color: #666666;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 8px;
	width: 160px;
	height: 27px;
	line-height: 27px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: caret;
}
#searchform #searchsubmit {
	background: url(images/icon-search.png) no-repeat center center transparent;
	text-indent: -9000px;
	text-transform: capitalize;
	width: 28px;
	height: 25px;
	border: none;
	position: absolute;
	top: 1px;
	right: 1px;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

/* Design */
/* ------ */

body {
	background: #cfd5e1;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#header-wrap {
	background: #1b3265 url(images/masthead-child-bkgd.jpg) repeat-x center bottom;
	min-height: 100px;
	position: relative;
	padding: 0 0 20px;
	min-width: 960px;
}
.home #header-wrap {
	background: #1b3265 url(images/masterhead-bkgd.jpg) repeat-x center bottom;
	min-height: 340px;
	position: relative;
	padding: 0 0 110px;
	min-width: 960px;
}
	
#body-wrap {
	background: #fff;
	position: relative;
	min-width: 960px;
}
#footer-wrap {
	position: relative;
	min-width: 960px;
}
	
#body {
	background: url(images/page-top-bkgd.png) no-repeat center top;
	position: relative;
	z-index: 1;
	padding: 30px 0 0 0;
}
#content {
	background: #fff;
	padding: 10px 0 0 0;
}
#sidebar {
	width: 220px;
	float: left;
	display: inline;
	margin: 0 0 20px 0;
}
#main {
	width: 700px;
	float: left;
	display: inline;
	margin: 0 20px 20px 10px;
}
/* Header */

#header {
	position: relative;
	z-index: 100;
	border-bottom: 2px solid #4f71a0;
	padding: 10px 0 0 0;
	margin-bottom: 60px;
}
#branding {
	background: url(images/commercial-management-group.png) no-repeat 0 0;
	width: 300px;
	height: 60px;
	display: block;
	float: left;
	text-indent: -999em;
	overflow: hidden;
	margin: 5px 10px 0;
	padding: 0;
}
#branding a {
	display: block;
	width: 300px;
	height: 60px;
}
.phone {
	float: right;
	right: 0;
	margin: 0;
	font-size: 13px;
	background: #5474a3;
	color: #fff;
	border: 0 none;
	padding: 3px 15px;
	height: 33px;
	line-height: 18px;
	-moz-border-radius: 2px 2px 0px 0px;
	-webkit-border-radius: 2px 2px 0px 0px;
	border-radius: 2px 2px 0px 0px;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
}
#nav {
	width: 640px;
	border-top: 1px solid #4f71a0;
	position: relative;
	float: left;
	
}
/* Navigation */

#nav {
	width: 640px;
	border-top: 1px solid #4f71a0;
	position: relative;
	float: left;
	
}
#nav ul {
	list-style: none outside;
	list-style-image: none;
	padding: 0;
	margin: 0;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
#nav li {
	font-size: 13px;
	float: left;
	position: relative;
	margin: 0;
	padding: 0;
	height: 56px;
}
#nav li.has-menu {
	background: url(images/nav-ul-ul-arrow.png) no-repeat center 40px;
}
#nav a {
	color: #fff;
	display: block;
	line-height: 56px;
	padding: 0 14px;
	text-decoration: none;
	font-weight: normal;
}
#nav ul ul {
	background: #222222;
	display: none;
	float: left;
	margin: 0;
	position: absolute;
	top: 56px;
	left: 0;
	padding: 0;
	width: 200px;
	z-index: 99999;
	-moz-border-radius: 0 0 2px 2px;
	-webkit-border-radius: 0 0 2px 2px;
	border-radius: 0 0 2px 2px;
	-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
#nav ul ul ul {
	left: 100%;
	top: 0;
}
#nav ul ul li {
	margin: 0;
	padding: 0;
	height: auto;
	background: #5474a3;
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr = '#5474a3', endColorstr = '#6182b2');
	-ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr = '#5474a3', endColorstr = '#6182b2')";
	background-image: -moz-linear-gradient(top, #5474a3, #6182b2);
	background-image: -ms-linear-gradient(top, #5474a3, #6182b2);
	background-image: -o-linear-gradient(top, #5474a3, #6182b2);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#5474a3), to(#6182b2));
	background-image: -webkit-linear-gradient(top, #5474a3, #6182b2);
	background-image: linear-gradient(top, #5474a3, #6182b2);
	-webkit-transition: background 300ms ease;
	-moz-transition: background 300ms ease;
	-ms-transition: background 300ms ease;
	-o-transition: background 300ms ease;
	transition: background 300ms ease;
	float: none;
}
#nav ul ul li:last-child a {
	border-bottom: 0 none;
}
#nav ul ul a {
	color: #fff;
	font-size: 11px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: none;
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
	width: 180px;
	font-weight: bold;
	text-shadow: none;
	border-bottom: 1px solid #466592;
}
#nav ul ul li:last-child {
	-moz-border-radius: 0 0 2px 2px;
	-webkit-border-radius: 0 0 2px 2px;
	border-radius: 0 0 2px 2px;
}
#nav li:hover {
}
#nav li:hover > a {
	color: #c5d4ea;
	-webkit-transition: color 300ms ease;
	-moz-transition: color 300ms ease;
	-ms-transition: color 300ms ease;
	-o-transition: color 300ms ease;
	transition: color 300ms ease;
}
#nav ul ul li:hover {
	background: #002a5c;
}
#nav ul ul li:hover > a, #nav ul ul a:focus {
	color: #fff;
	font-weight: bold;
	background: none;
}
#nav ul li:hover > ul {
	display: block;
}
#nav .current_page_item > a, #nav .current_page_ancestor > a {
}
#nav .current_page_item, #nav .current_page_ancestor {
}

/* Title */

#title {
	width: 700px;
	float: left;
	color: #fff;
	margin-left: 10px;
}
#title .page-title {
	color: #fff;
	font-size: 24px;
	font-family: 'NovecentowideBold', Arial, Helvetica, sans-serif;
}
#title p {
	font-size: 15px;
}

/* Section */

.section {
	margin-bottom: 25px;
}

/* Widgets */

.widget {
	margin-bottom: 25px;
	position: relative;
	font-size: 11px;
}
.widget-title {
	font-size: 15px;
	color: #2e467e;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
}
.widget p {
	font-size: 11px;
}

/* Featured */

#featured {
	margin: -140px 0 15px 0;
	padding: 0 0 15px 0;
	border-bottom: 2px solid #e5e5e5;
}
.feature {
	float: left;
	margin: 0 10px;
	display: inline;
	width: 220px;
	background: url(images/feature-bottom-bkgd.png) no-repeat center bottom;
	padding: 0 0 21px 0;
}
.feature .title {
	background: url(images/feature-header-bkgd.png) repeat-y center top;
	min-height: 40px;
	padding: 0;
	margin: 0;
	font-size: 13px;
	color: #fff;
	line-height: 40px;
	text-align: center;
	font-family: 'NovecentowideMedium', Arial, Helvetica, sans-serif;
}
.feature-img {
	width: 220px;
	height: 110px;
	line-height: 110px;
	display: block;
}
.feature .summary {
	padding: 15px;
	background: #fff url(images/feature-content-bkgd.png) repeat-y center top;
	height: 80px;
	overflow: hidden;
	text-align: center;
}
.feature .summary p {
	font-size: 11px;
}
.feature .feature-button {
	-moz-border-radius: 0px 0px 2px 2px;
	-webkit-border-radius: 0px 0px 2px 2px;
	border-radius: 0px 0px 2px 2px;
	background: #1d3f6a;
	/*IE 7 AND 8 DO NOT SUPPORT BORDER RADIUS*/
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr = '#1d3f6a', endColorstr = '#3b558b');
	/*INNER ELEMENTS MUST NOT BREAK THIS ELEMENTS BOUNDARIES*/
	/*Element must have a height (not auto)*/
	/*All filters must be placed together*/
	-ms-filter: "progid: DXImageTransform.Microsoft.gradient(startColorstr = '#1d3f6a', endColorstr = '#3b558b')";
	/*Element must have a height (not auto)*/
	/*All filters must be placed together*/
	background-image: -moz-linear-gradient(top, #1d3f6a, #3b558b);
	background-image: -ms-linear-gradient(top, #1d3f6a, #3b558b);
	background-image: -o-linear-gradient(top, #1d3f6a, #3b558b);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#1d3f6a), to(#3b558b));
	background-image: -webkit-linear-gradient(top, #1d3f6a, #3b558b);
	background-image: linear-gradient(top, #1d3f6a, #3b558b);
	/*--IE9 DOES NOT SUPPORT GRADIENT BACKGROUNDS--*/
	height: 25px;
	line-height: 25px;
	border-top: 1px solid #a9b9d1;
	display: block;
	width: 220px;
	text-align: center;
	color: #fff;
	font-size: 11px;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
	-webkit-transition: background 300ms ease;
	-moz-transition: background 300ms ease;
	-ms-transition: background 300ms ease;
	-o-transition: background 300ms ease;
	transition: background 300ms ease;
}
.feature .feature-button:hover {
	background: #3b558b;
	text-decoration: none;
}

/* Recent Properties */

.article {
	clear: both;
	margin: 0 0 15px 0;
	border-bottom: 1px dotted #cccccc;
}
.article-preview {
	width: 95px;
	height: auto;
	margin: 0 15px 15px 0;
	float: left;
	display: inline;
}
.article-preview img {
	width: 95px;
	height: auto;
}
.article p {
	font-size: 11px;
	margin: 0 0 2px 0;
	padding: 0;
}
.article-summary {
	width: 590px;
	float: left;
	display: inline;
	margin: 0 0 15px 0;
}
.article-title {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0 0 2px 0;
	padding: 0;
	color: #3062b5;
}

/* Breadcrumb */

#crumbs {
	border-bottom: 2px solid #F2F2F2;
	display: block;
	padding: 5px 0 12px 0;
	margin: 0 0 10px 0;
	font-size: 11px;
	color: #666666;
}

#crumbs a {
	text-decoration: none;
}
#crumbs a:focus, #crumbs a:active, #crumbs a:hover {
	text-decoration: underline;
}

/* Footer */

#footer {
	clear: both;
	padding: 0;
	color: #16285f;
}
#footer p {
	font-size: 11px;
	margin: 0;
}
#footer-detail {
	background: url(images/footer-bkgd.png) no-repeat 0 0;
	height: 40px;
	color: #fff;
	margin: 0 0 20px 0;
	text-align: center;
}
#footer-detail p {
	line-height: 40px;
	display: block;
	height: 40px;
}
#footer ul {
	list-style: none outside;
	list-style-image: none;
	padding: 0;
	margin: 0 0 20px 20px;
	float: left;
	display: inline;
	width: 220px;
}
#footer ul.first {
	margin-left: 0;
}
#footer ul li {
	line-height: 20px;
	padding: 0;
	margin: 0;
	font-size: 11px;
	border-bottom: 1px dotted #b3bfd5;
}
#footer ul li:last-child {
	background: transparent none;
}
#footer ul.footer-widget h3 {
	font-size: 12px;
	font-weight: bold;
	line-height: normal;
	color: #16285f;
	margin-bottom: 5px;
	line-height: normal;
	font-family: Arial, Helvetica, sans-serif;
}

#footer li a {
	color: #16285f;
	text-decoration: none;
}

#footer a {

	color: #FFFFFF;
	text-decoration: none;
}
#footer-info .left a {
color: #16285f;
}

#footer a img{
vertical-align:middle;
}
#footer a:hover {
	text-decoration: underline;
}
#footer #footer-info {
	color: #16285f;
	font-size: 11px;
	border-top: 2px solid #b3bfd5;
	padding: 15px 0 40px 0;
}
#footer #footer-info .left {
	float: left;
	text-align: left;
}
#footer #footer-info .right {
	float: right;
	text-align: right;
}
#footer .first-child, #footer .last-child {
	border-bottom: 0 none;
}
/* Clearfix */

.clear {
	display: block;
	clear: both;
	height: 0;
	overflow: hidden;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */

/* =Comments
----------------------------------------------- */
.post {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #ccc;
}

.entry-header .comments-link {
	width: 24px;
	height: 20px;
	display: block;
	clear: both;
	margin: 0 0 5px;
	background: url(images/icon-comments.png) no-repeat 0 0;
	text-align: center;
}
.entry-meta {
	font-size: 11px;
	color: #666;
	margin: 0 0 10px 0;
}
.entry-header .comments-link a {
	font-size: 11px;
	display: block;
	height: 15px;
	line-height: 15px;
	width: 24px;
	font-weight: bold;
}
#comments-title {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	line-height: 2.6em;
	padding: 0 0 2.6em;
	text-transform: uppercase;
}
.nopassword,
.nocomments {
	color: #aaa;
	font-size: 24px;
	font-weight: 100;
	margin: 26px 0;
	text-align: center;
}
.commentlist {
	list-style: none;
	margin: 0 auto;
	width: 100%;
	padding: 0;
}
.content .commentlist,
.page-template-sidebar-page-php .commentlist {
	width: 100%; /* reset the width for the one-column and sidebar page layout */
}
.commentlist > li.comment {
	background: #f6f6f6;
	border: 1px solid #ddd;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 0 1.625em;
	padding: 1.625em;
	position: relative;
}
.commentlist .pingback {
	margin: 0 0 1.625em;
	padding: 0 1.625em;
}
.commentlist .children {
	list-style: none;
	margin: 0;
}
.commentlist .children li.comment {
	background: #fff;
	border-left: 1px solid #ddd;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	margin: 1.625em 0 0;
	padding: 1.625em;
	position: relative;
}
.commentlist .children li.comment .fn {
	display: block;
}
.comment-meta .fn {
	font-style: normal;
}
.comment-meta {
	color: #666;
	font-size: 12px;
	line-height: 2.2em;
}
.commentlist .children li.comment .comment-meta {
	line-height: 1.625em;
	margin-left: 50px;
}
.commentlist .children li.comment .comment-content {
	margin: 1.625em 0 0;
}
.comment-meta a {
	font-weight: bold;
}
.comment-meta a:focus,
.comment-meta a:active,
.comment-meta a:hover {
}
.commentlist .avatar {
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px #ccc;
	-moz-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
	left: -102px;
	padding: 0;
	position: absolute;
	top: 0;
}
.commentlist > li:before {
	content: url(images/comment-arrow.png);
	left: -21px;
	position: absolute;
}
.commentlist > li.pingback:before {
	content: '';
}
.commentlist .children .avatar {
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	left: 2.2em;
	padding: 0;
	top: 2.2em;
}
a.comment-reply-link {
	background: #eee;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	display: inline-block;
	font-size: 12px;
	padding: 0 8px;
	text-decoration: none;
}
a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link:active {
	background: #888;
	color: #fff;
}
a.comment-reply-link > span {
	display: inline-block;
	position: relative;
	top: -1px;
}

/* Post author highlighting */
.commentlist > li.bypostauthor {
	background: #ddd;
	border-color: #d3d3d3;
}
.commentlist > li.bypostauthor .comment-meta {
	color: #575757;
}
.commentlist > li.bypostauthor .comment-meta a:focus,
.commentlist > li.bypostauthor .comment-meta a:active,
.commentlist > li.bypostauthor .comment-meta a:hover {
}
.commentlist > li.bypostauthor:before {
	content: url(images/comment-arrow-bypostauthor.png);
}

/* Post Author threaded comments */
.commentlist .children > li.bypostauthor {
	background: #ddd;
	border-color: #d3d3d3;
}

/* sidebar-page.php comments */
/* Make sure we have room for our comment avatars */
.page-template-sidebar-page-php .commentlist > li.comment,
.page-template-sidebar-page-php.commentlist .pingback {
	margin-left: 102px;
	width: auto;
}
/* And a full-width comment form */
.page-template-sidebar-page-php #respond {
	width: auto;
}

/* Comment Form */
#respond {
	background: #fff;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 auto 1.625em;
	padding: 20px;
	position: relative;

	width: 660px;
	border: 1px solid #dddddd;
}
#respond input[type="text"],
#respond textarea {
	background: #fff;
	border: 4px solid #eee;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	-moz-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	position: relative;
	padding: 10px;
	text-indent: 80px;
}
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url,
#respond .comment-form-comment {
	position: relative;
}
#respond .comment-form-author label,
#respond .comment-form-email label,
#respond .comment-form-url label,
#respond .comment-form-comment label {
	background: #eee;
	-webkit-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	-moz-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	color: #555;
	display: inline-block;
	font-size: 13px;
	left: 4px;
	min-width: 60px;
	padding: 4px 10px;
	position: relative;
	top: 40px;
	z-index: 1;
}
#respond input[type="text"]:focus,
#respond textarea:focus {
	text-indent: 0;
	z-index: 1;
}
#respond textarea {
	resize: vertical;
	width: 95%;
}
#respond .comment-form-author .required,
#respond .comment-form-email .required {
	color: #bd3500;
	font-size: 22px;
	font-weight: bold;
	left: 75%;
	position: absolute;
	top: 45px;
	z-index: 1;
}
#respond .comment-notes,
#respond .logged-in-as {
	font-size: 13px;
}
#respond p {
	margin: 10px 0;
}
#respond input#submit {
	background: #16285f;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	padding: 5px 5px;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #fff;
	display: block;
	width: 130px;
	text-align: center;
	clear: both;
	text-decoration: none;
	-webkit-transition: background 300ms ease;
	-moz-transition: background 300ms ease;
	-ms-transition: background 300ms ease;
	-o-transition: background 300ms ease;
	transition: background 300ms ease;
	border: 0 none;
	cursor: pointer;
	position: relative;        
}
#respond input#submit:hover, #respond input#submit:active {
	background: #3b558b;
	color: #fff;
	text-decoration: none;
}
#respond #cancel-comment-reply-link {
	color: #666;
	margin-left: 10px;
	text-decoration: none;
}
#respond .logged-in-as a:hover,
#respond #cancel-comment-reply-link:hover {
	text-decoration: underline;
}
.commentlist #respond {
	margin: 1.625em 0 0;
	width: auto;
}
#reply-title {
	font-size: 15px;
	font-weight: normal;
	line-height: 30px;
}
#cancel-comment-reply-link {
	color: #888;
	display: block;
	font-size: 10px;
	font-weight: normal;
	line-height: 2.2em;
	letter-spacing: 0.05em;
	position: absolute;
	right: 1.625em;
	text-decoration: none;
	text-transform: uppercase;
	top: 1.1em;
}
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link:hover {
	color: #ff4b33;
}
#respond label {
	line-height: 2.2em;
}
#respond input[type=text] {
	display: block;
	height: 24px;
	width: 75%;
}
#respond p {
	font-size: 12px;
}
p.comment-form-comment {
	margin: 0;
}
.form-allowed-tags {
	display: none;
}

/* Assistive text */
.assistive-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
#access a.assistive-text:active,
#access a.assistive-text:focus {
	background: #eee;
	border-bottom: 1px solid #ddd;
	color: #1982d1;
	clip: auto !important;
	font-size: 12px;
	position: absolute;
	text-decoration: underline;
	top: 0;
	left: 7.6%;
}

/*
*
*
*
*
/
/* WP PROPERTY */
/*
*
*
*
*
*/
.property_widget_block p.title {
	font-size: 12px;
	font-weight: bold;
	padding: 0 0 2px;
}
.sidebar_property_thumbnail img {
	border: 1px solid #f2f2f2;
	padding: 2px;
	display: block;
	background: #fff;
	margin-bottom: 5px;
}
.wpp_widget_attribute_list li {
	font-size: 11px;
	margin: 0;
	padding: 5px 0 !important;
}
#nav-single {
	margin-bottom: 15px;
}
.home .properties_pagination {
	display: none;
	height: 0;
	margin: 0;
	padding: 0;
	line-height: 0;
}

/* Default Icons Begin  */
.wpp_attachment_list {
  list-style-type:none;
  margin: 0;
  padding: 0;
}

.wpp_attachment_list  .attachment_container.has_description .attachment_description  {
  display: block;
  padding-left: 23px;
}

.property_stats .wpp_attachment_list  .attachment_container.has_description .attachment_description  {
  display: inline;
  padding: 0;
}

.wpp_attachment_list  .wpp_attachment_icon.file-zip {
  background: url("images/file-zip.gif") left center no-repeat;
}

/* Default Icons End */

/* WP Touch Styles Begin */
body.idevice {

}
body.idevice ul.wpp_overview_data li {
  list-style:none;
}

body.idevice .wpp_property_overview_shortcode {
  margin-top: 10px;
}

body.idevice ul.wpp_overview_data {
  padding-left: 10px;
}

body.idevice div.listing_container .building_title_wrapper {
  margin-top: 15px;
}

body.idevice .wpp_sidebar_listing,
body.idevice div.listing_container .building_title_wrapper,
body.idevice div.listing_container .entry-content {

    background-color: #FFFFFF;
    border: 1px solid #B1B1B1;
    margin-bottom: 12px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
    position: relative;
    z-index: 0;    
}

body.idevice div.listing_container .wpp_stats_group {
    border-bottom: 1px solid #D7D7D7;
    color: #484848;
    display: block;
    font-size: 1.2em;
    font-weight: bold;
}


body.idevice div.listing_container h1.property-title, h1.property-title {
    display: block;
    font-size: 20px;
    font-weight: normal;
    text-align: left;
	font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif;
}
body.idevice div.listing_container .entry-subtitle, .entry-subtitle {
    font-size: 14px;
    font-weight: normal;
    text-align: left;
}

body.idevice #property_stats.overview_stats,
body.idevice #property_stats.overview_stats dt,
body.idevice #property_stats.overview_stats dd {
  padding-top: 5px;
  padding-bottom: 5px;
  border: 0;
}
 

body.idevice #property_stats.overview_stats dt {
  padding-left: 0;
  font-weight: normal;
}

body.idevice #property_stats.overview_stats dd {
    background: transparent;
    margin-left: 0;
    padding-left: 0;
}

body.idevice div.listing_container #property_stats {
  padding:0;
  margin: 0 0 15px 0;
}

body.idevice .wpp_sidebar_listing ul,
body.idevice .wpp_sidebar_listing ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

body.idevice .wpp_sidebar_listing .wpp_gallery_widget {
  float: none;
  overflow: auto;
}

body.idevice .wpp_sidebar_listing .sidebar_gallery_item {
  float: left;
}

/* WP Touch Styles End*/


/* FEPS Styles Begin */
form.wpp_feps_form label.error {
  display: block;
}

form.wpp_feps_form ul.wpp_search_group {
  list-style:none;
}

form.wpp_feps_form li.wpp_feps_row_wrapper {
  list-style:none;
}

form.wpp_feps_form .wpp_feps_row_wrapper  .qq-upload-list{
  margin: 0;
  list-tyle-type:none; 
  padding-top: 15px;
}

form.wpp_feps_form  .wpp_feps_row_wrapper  .qq-upload-list .qq-upload-cancel {
  text-decoration: none;
  color: #A0A0A0;
  float: right;
  
}

form.wpp_feps_form div.qq-upload-drop-area {
  display: none !important;
}

form.wpp_feps_form span.images_limit {
  clear: both;
  float: right;
  right: 12px;
  top: 4px;
}


form.wpp_feps_form  .qq-upload-list .qq-upload-size,
form.wpp_feps_form  .qq-upload-list .wpp_upload_progress {
  height: 20px;
}

form.wpp_feps_form .qq-upload-list .qq-upload-size {
  display: block;
  clear: both;
  border: 1px solid #BFBDBD;
}

form.wpp_feps_form .qq-upload-list .wpp_upload_progress {
  background: #666666;
  display: block;
  float: left;
  text-align: right;
}

form.wpp_feps_form   .qq-upload-list .wpp_upload_progress_text {
  font-size: 11px; /* fixed height to fit into progress bar wrapper */
  display: block;
  float: left;
  line-height: 20px;
  margin: 0 4px;
}

form.wpp_feps_form .qq-upload-list .wpp_upload_progress .wpp_upload_progress_text {
  float: right;
  color: #FFF;
  display: block;
}
 

form.wpp_feps_form .qq-uploader li {
  margin: 0 10px 10px 0;
  padding: 0;
}
form.wpp_feps_form  .qq-uploader li.qq-upload-success{
  display: inline;
}


form.wpp_feps_form ul.feps_property_input_fields .qq-upload-button {
    background: none repeat scroll 0 0 #DDDDDD;
    border: 1px solid #BBBBBB;
    border-radius: 3px 3px 3px 3px;
    cursor: pointer;
    font-size: 1.1em;
    margin-bottom: 5px;
    text-align: center;
    width: 101px;
}

form.wpp_feps_form .qq-upload-failed-text {display:none;}
 
form.wpp_feps_form  ul.feps_user_input_fields,
form.wpp_feps_form ul.feps_property_input_fields {
  margin: 0;
  clear: both;
}
 
ul.feps_user_input_fields li.wpp_feps_row_wrapper,
ul.feps_property_input_fields li.wpp_feps_row_wrapper   {  
    list-style: none;
    list-style-type: none;
}

ul.feps_property_input_fields li.wpp_feps_row_wrapper.wpp_checkbox input.wpp_checkbox   {  
  float: left;
  position: relative;
  top: 7px;
}
ul.feps_property_input_fields li.wpp_feps_row_wrapper.wpp_checkbox  label {  

} 

ul.feps_property_input_fields li.wpp_feps_row_wrapper.wpp_checkbox  label span.description {  
  float: none;
}

ul.feps_user_input_fields li.wpp_feps_row_wrapper {
  background: #EBEBEB;
}

ul.feps_property_input_fields label span.the_title,
ul.feps_user_input_fields label span.the_title{  
  font-weight: bold;
}

ul.feps_property_input_fields label span.description{  
  float: right;

}

ul.feps_property_input_fields label {  
  margin-bottom: 1px;
}


ul.feps_user_input_fields input[type="text"] {
  width: 20em;
}

ul.feps_property_input_fields textarea {
  min-height: 100px;
}

ul.feps_property_input_fields textarea,  
ul.feps_property_input_fields input[type="text"],
ul.feps_user_input_fields input[type="text"],
ul.feps_user_input_fields input[type="password"]{  
  display: block;
  margin-bottom: 5px;
  margin-top: 2px;
  width: 97%;
}

ul.feps_property_input_fields select {
    background: none repeat scroll 0 0 #FAFAFA;
    border: 1px solid #DDDDDD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    -mox-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    -khtml-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    color: #888888;
    padding: 3px;
    width: 100%;
}

ul.feps_property_input_fields .description {  
    font-weight: normal;
}   
 
/* FEPS Styles End */
 

#wp-admin-bar-wpp_approve_property {
  background: #CF982D;
}

#wp-admin-bar-wpp_approve_property a {
  color: #FFFFFF;
}


/* WPP Sorter and Pagination Begin { */

.wpp_pagination_slider_wrapper .wpp_pagination_back,
.wpp_pagination_slider_wrapper .wpp_pagination_forward {
  width: 8%;
  height: 16px;
  border-radius: 5px 5px 5px 5px;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
}

.wpp_sorter_options {
  float: right;
}

.properties_pagination.wpp_top_pagination,
.properties_pagination.wpp_bottom_pagination {
  margin-bottom: 1em;
}

.wpp_sorter_options .wpp_sortable_link.wpp_sorted_element {
    background: none repeat scroll 0 0 #D36E09;
    color: #1C1711;
}

.wpp_sorter_options .wpp_sortable_link {
    background: none repeat scroll 0 0 #2F2F2F;
    border-radius: 6px 6px 6px 6px;
    color: #CCCCCC;
    cursor: pointer;
    margin-left: 6px;
    padding: 1px 4px;
}

.wpp_ui .wpp_pagination_slider_wrapper .wpp_pagination_forward {
  float: right;
}
.wpp_pagination_slider_wrapper .wpp_pagination_back {
  float: left;
} 

.wpp_ui .wpp_pagination_slider.ui-slider-horizontal  {
   background: none repeat scroll 0 0 #DDDDDD;
    border: 1px solid #606060;
    height: 16px;
    width: 75%;
    margin: 0 auto;
}

.wpp_pagination_slider_status {

	min-height: 25px;
	padding: 0 10px;
	line-height: 25px;
	background: #f2f2f2;
	font-size: 11px;
	color: #666;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.wpp_pagination_slider .slider_page_info {
  height: 15px;
  position: absolute;
  top: -31px;
  left: -3px;
  display:none;
}
.wpp_pagination_slider .slider_page_info {

}

.wpp_property_overview_shortcode, .wpp_slider_pagination {
  position: relative;
}

.wpp_property_overview_shortcode .ajax_loader {
  position:absolute;
  z-index:10;
  width: 80px;
  height: 80px;
  margin: 0 0 0 -40px;
  border: 1px solid #606060;
  background: #DDDDDD url("images/ajax-loader-po.gif") center center no-repeat;
  top: 100px;
  left: 50%;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
  display:none;
}

.wpp_ui .wpp_pagination_slider.ui-slider-horizontal .ui-slider-handle  {
  height: 24px; 
  width: 26px;
  margin-left: -8px;
  top: -4px;
}

.wpp_ui .wpp_pagination_slider.wpp_slider_loading .ui-slider-handle  {
  background-image: url("images/ajax-loader-sm.gif");
  background-repeat: no-repeat;
  background-position: center center;

}

/* WPP Sorter and Pagination End } */

.wpp_agent_info_list {


}


.wpp_agent_info_list dl {
 }

.wpp_agent_info_list dt {
  float: left;
  display: table-cell;
  padding-right: 5px;

  }

.wpp_agent_info_list  dd {

  display: table-cell;
  }
.wpp_agent_info_list  dd .wpp_agent_attribute_link {
  position: relative;
  left: -3px;
}

.property_widget_block li span.value {
   display: block;
}

.property_widget_block li span.attribute {
   display: block;
  color: #A3A2A2;
  float: left;
  margin-right: 5px; }

.property_widget_block ul{
  margin:0 0 10px 0;
  padding:0;
}
.more a {
	width:190px;
	padding: 2px 5px;
}
.wpp_slideshow_global_wrapper .nivo-caption span {
  display: block;
  font-size: 0.5em;
}


.wpp_google_maps_attribute_row_directions_link {
  height: 30px;
  font-size: 0.9em;
  border-top: 1px solid #E0E0E0;
  font-size: 0.9em;
  margin-top: 5px;
  padding-top: 4px;
}

/* Must use ID on these elements to prevent themes unintentionally conflicting the styles */

#infowindow table.wpp_google_maps_infobox_table, 
#infowindow table.wpp_google_maps_infobox_table td {
  margin:0;
  padding:0;
  border:0;
  font-size: 13px;
}

#infowindow table.wpp_google_maps_infobox_table td.wpp_google_maps_left_col { 
  padding-right: 15px; 
}

#infowindow table.wpp_google_maps_infobox_table td.wpp_google_maps_right_col { 
  padding:0;
}
#infowindow .wpp_google_maps_attribute_row_property_title {
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 10px;
}

#infowindow table.wpp_google_maps_infobox_table img {
  position: static;
}

#infowindow table.wpp_google_maps_infobox_table td{
  vertical-align: top;
  padding-left: 3px;
  padding-right: 1px;
}

#infowindow ul.infobox_child_property_list,
#infowindow ul.wpp_google_maps_infobox {
  clear: both;
  list-style-type:none;
  margin:0;
  padding:0px;
}


#infowindow ul.wpp_google_maps_infobox li.wpp_google_maps_attribute_row,
#infowindow ul.infobox_child_property_list .infobox_child_property {
  list-style: none;
  line-height: 22px;
  overflow: auto;
  margin: 0;
  padding: 0;
} 

#infowindow ul.wpp_google_maps_infobox li.wpp_google_maps_attribute_row {
  border-bottom: 1px solid #F1F1F1;
}

#infowindow ul.wpp_google_maps_infobox li.wpp_google_maps_attribute_row:hover {
  background: #F5F3ED;
}

#infowindow ul.wpp_google_maps_infobox li.wpp_google_maps_attribute_row.wpp_fillter_element,
#infowindow ul.infobox_child_property_list li.infobox_child_property.wpp_fillter_element{
  border-width: 0;
  height: 10px;
  background: transparent !important;
}


#infowindow ul.wpp_google_maps_infobox .wpp_google_maps_attribute_row span.attribute{
  display:block;
  float:left;
  margin: 0 10px 0 4px;
  width: 85px;  
}

ul.wpp_google_maps_infobox .wpp_google_maps_attribute_row span.value{
  display:block;
  float:left;
  width: auto;
  margin-right: 10px;
}

#infowindow ul.infobox_child_property_list .infobox_child_property {
  margin-left: 5px;
}

#property_map img {


  position:absolute;
  max-width: none;
  overflow-x:hidden;
  overflow-y:hidden;
}

.page-img {
	float: right;
	padding: 5px;
}

/* Version 1.0 End */


#content .wpp_shortcode_search  {
  background: #F2F2F2;
  padding: 10px;
  position: relative;
}


#content .wpp_shortcode_search  ul{
  list-style-type:none;
  padding:0;
  margin:0;
}
#content .wpp_shortcode_search  ul li {
  margin-bottom:4px;
}
#content .wpp_shortcode_search  ul label{
  width: 150px;
  display: block;
  float: left;
}
#content .wpp_shortcode_search  ul li.submit{
  text-align:right;
  padding: 5px;
  width: auto !important;
}

#content .wpp_shortcode_search  ul li.submit .wpp_search_button {
  margin:0;
}

#content .shortcode_featured_properties dl, #content .shortcode_featured_properties dd, #content .shortcode_featured_properties dt { margin: 0; }

#content .shortcode_featured_properties ul li dl {
  margin: 4px;
  padding: 4px;
  height: 1em; }

#content .shortcode_featured_properties ul li dt {
  float: left;
  font-size: 0.8em;
  font-weight: normal;
  padding-left: 5px;
  padding-top: 3px; }

#content .shortcode_featured_properties ul li dd {
  float: right;
  padding-right: 5px; }

#content .shortcode_featured_properties ul li dt, #content .big_featured_property ul li dd { display: block; }

#content .big_featured_property ul {
  display: table;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%; }

  #content .big_featured_property ul li {
    display: table-cell;
    width: 33%; }

    #content .big_featured_property ul li dl {
      font-size: 1.3em;
      background: none repeat scroll 0 0 #767676;
      color: #FFFFFF;
      margin: 4px;
      padding: 4px;
      height: 1em; 
      location:all; }

    #content .big_featured_property ul li dt {
      color: #D6D6D6;
      float: left;
      font-size: 0.8em;
      font-weight: normal;
      padding-left: 5px;
      padding-top: 3px; }

    #content .big_featured_property ul li dd {
      float: right;
      padding-right: 5px; }

    #content .big_featured_property ul li dt, #content .big_featured_property ul li dd { display: block; }

.wpp_featured_properties_shortcode {
  list-style-type: none;
  margin: 0;
  padding: 0; }

  .wpp_featured_properties_shortcode li.wp-caption {
    display: inline;
    float: left; }

.shortcode_featured_properties ul {
  list-style-type: none;
  margin: 0;
  padding: 5px; }

  .shortcode_featured_properties ul li span {
    float: left;
    font-weight: bold;
    text-align: left;
    width: 90px; }

  .shortcode_featured_properties ul li p {
    float: left;
    margin-bottom: 5px;
    text-align: left;
    width: 60px; }

input.wpp_search_input_field_min, input.wpp_search_input_field_max { width: 40px; }

#container.floorplan_container { margin: 0 -270px 0 0; }

  #container.floorplan_container #content { margin: 0 300px 0 20px }

#container.building_container { margin: 0 -270px 0 0; }

  #container.building_container #content { margin: 0 300px 0 20px }

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden; }

.clearfix { display: inline-block; }

html[xmlns] .clearfix { display: block; }

* html .clearfix { height: 1%; }

#property_stats.overview_stats,
.wpp_property_stats.overview_stats {
  border-top: 1px dotted #CFCBCB;
  clear: both;
  margin-bottom: 20px; }

  #property_stats.overview_stats dt, 
  #property_stats.overview_stats dd,
  .wpp_property_stats.overview_stats dt, 
  .wpp_property_stats.overview_stats dd {
    display: block;
    margin-bottom: 0;
    padding-bottom: 10px;
    padding-top: 10px; }

  #property_stats.overview_stats dt,
  .wpp_property_stats.overview_stats dt {
    clear: left;
    float: left;
    font-weight: bold;
    width: 150px; 
    padding-left: 15px; 
  }

  #property_stats.overview_stats dd,
  .wpp_property_stats.overview_stats dd {
    border-bottom: 1px dotted #CFCBCB;
    padding-left: 165px; }

    #property_stats.overview_stats dd.alt,
    .wpp_property_stats.overview_stats dd.alt { background: #eee }

    #property_stats.overview_stats dd span,
    .wpp_property_stats.overview_stats dd span {  }


#primary .sidebar_property_thumbnail  img {
  border: 5px solid #DFDFDF;
  float: left;
  margin-top: 5px;
  margin: 0 9px 9px 0; }

#primary .property_widget_block {}
#primary .property_widget_block li p { margin: 0; }


#primary  .property_widget_block ul { clear: left; }


/*
  Properties Widgets
*/
.wpp_child_properties_widget .property_widget_block p.title,
.wpp_other_properties_widget .property_widget_block p.title,
.wpp_latest_properties_widget .property_widget_block p.title,
.wpp_featured_properties_widget .property_widget_block p.title {
  margin-bottom: 3px;
}

.wpp_child_properties_widget .property_widget_block,
.wpp_other_properties_widget .property_widget_block,
.wpp_latest_properties_widget .property_widget_block,
.wpp_featured_properties_widget .property_widget_block {
  clear: both;
  margin-bottom: 10px; }

.wpp_child_properties_widget img,
.wpp_other_properties_widget img,
.wpp_latest_properties_widget img,
.wpp_featured_properties_widget img {
  margin-right: 5px; }

.wpp_search_properties_widget ul.wpp_search_elements,
.wpp_child_properties_widget .property_widget_block ul.wpp_widget_attribute_list,
.wpp_other_properties_widget .property_widget_block ul.wpp_widget_attribute_list,
.wpp_latest_properties_widget .property_widget_block ul.wpp_widget_attribute_list,
.wpp_featured_properties_widget .property_widget_block ul.wpp_widget_attribute_list {
  margin-left: 0px;
  margin-right: 0;
  padding-top: 0; }

.wpp_child_properties_widget .property_widget_block li,
.wpp_other_properties_widget .property_widget_block li,
.wpp_latest_properties_widget .property_widget_block li,
.wpp_featured_properties_widget .property_widget_block li {
  border-bottom: 1px dotted #e5e5e5;
  color: #434141;
  display: block;
  padding: 2px 0;
  width: 100%; }

    .wpp_search_properties_widget .wpp_search_elements {
    clear: both;
    list-style-type: none;
    margin: 0; }

    .wpp_search_properties_widget .wpp_search_elements li {
      margin-bottom: 10px;
      text-align: left; }

    .wpp_search_properties_widget .wpp_search_elements .search_input_block { float: left; }

      .wpp_search_properties_widget .wpp_search_elements .search_input_block input { width: 50px; }

    .wpp_search_properties_widget .wpp_search_elements li .wpp_search_button {  }

    .wpp_search_properties_widget .wpp_search_elements li label {
      float: left;
      width: 85px; }
      
.wpp_gallery_widget br { display: none !important; }


.wpp_gallery_widget {
  margin: 0;
  padding: 0; }

  .wpp_gallery_widget  img.wpp_gallery_widget_image {
    max-width: 100%;
    border: 5px solid #DFDFDF;
    margin: 0 9px 9px 0; }


/*
  Property Results View
*/
.wpp_row_view { margin-top: 10px; }

  .wpp_row_view div.property_div {
    overflow: auto;
	border-bottom: 1px dotted #ccc;
    margin-bottom: 15px;
    padding: 0 0 10px 0;
    position: relative;
    width: 99%; }

  .wpp_row_view .wpp_overview_right_column {
    display:table-cell;
    vertical-align: top;
    }

  .wpp_row_view .property_div .wpp_overview_left_column {
    vertical-align: top;
    display: table-cell;
    position: relative; }

  .wpp_row_view .child_properties {
    clear: both;
    display: block;
    margin-right: 10px;
    padding-top: 15px; }

    .wpp_row_view .child_properties * { vertical-align: middle; }

    .wpp_row_view .child_properties .property_child_title {
      padding: 5px 10px 5px 5px;
      text-align: left;
      width: 150px; }

      .wpp_row_view .child_properties .property_child_title a {
        color: #707070;
        font-weight: normal; }

        .wpp_row_view .child_properties .property_child_title a:hover {
          color: orange;
          text-decoration: underline; }

  .wpp_row_view .property_image img { border: 6px solid #F5F5F5; width: auto;}

  .wpp_row_view .property_image .property_overview_thumb {
    background: none repeat scroll 0 0 #EFEFEF;
    color: black;
    display: table-cell;
    text-align: center;
    text-decoration: none;
    vertical-align: middle; }

  .wpp_row_view ul.wpp_overview_data li { margin-bottom: 2px; line-height: 18px; }

  .wpp_row_view ul.wpp_overview_data {
    list-style-type: none;
	list-style: none outside;
	list-style-image: none;
    padding-left: 15px; margin-bottom: 10px; }

    .wpp_row_view ul.wpp_overview_data  .property_title { font-size: 1.4em; font-family: 'NovecentowideDemiBold', Arial, Helvetica, sans-serif; font-size: 15px; margin-bottom: 5px; }

  .wpp_row_view  .property_title a {
    text-decoration: none; }
	.wpp_row_view  .property_title a:hover {
    text-decoration: underline; }
#property_map {
	margin-bottom: 15px; 
}
  .wpp_row_view ul.wpp_overview_data .property_price {
    color: #666363;
    display: block;
    font-size: 18px;
    height: 25px;
    margin-top: 10px;
    padding-left: 22px;
    text-decoration: none; }

  .wpp_row_view  ul.wpp_overview_data .property_phone_number {
    background: url("images/property-phone.png") no-repeat scroll left center transparent;
    font-size: 12px;
	font-weight: bold;
    padding-left: 22px; }

  .wpp_row_view  ul.wpp_overview_data .wpp_overview_list { padding-left: 34px; }

  .wpp_row_view ul.wpp_overview_data .property_address {
    background: url("images/property-compass.png") no-repeat scroll left center transparent;
    font-size: 12px;
	font-weight: bold;
    padding-left: 22px;
    line-height: 1.2em; }

  .wpp_row_view  ul.wpp_overview_data .property_address a {
    display: block;
    text-decoration: none; }

  .wpp_row_view ul.wpp_overview_data .property_address a:hover {
    text-decoration: underline; }

  .wpp_row_view ul.wpp_overview_data .property_tagline {
    color: #1a1a1a;
    font-size: 1em;
    line-height: 1.2em;
    padding-bottom: 15px;
    margin-bottom: 7px;
    border-bottom: 1px solid #EFEFEF; }

  .wpp_row_view .wpd_floorplans_title {
    font-size: 0.9em;
    font-weight: bold;
    padding-bottom: 5px; }

  .wpp_row_view .stats { display: none; }

  .wpp_row_view .child_properties table {
    magin-top: 15px;
    margin: 0;
    padding: 0;
    width: 100%; }

    .wpp_row_view .child_properties table * {
      margin: 0;
      padding: 0; }

    .wpp_row_view .child_properties table td, .wpp_row_view .child_properties table th { border-top: 1px solid #E7E7E7; }

/* --- Supermap ---*/
.super_map_list_property {
}

.property_in_list {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: none repeat scroll 0 0 #F7F7F7;
  border: 1px solid #E8E8E8;
  margin-bottom: 6px;
  width: 96%; 
}

.map_filters {
  display: none;
  background: #DAE0FF;
  margin-bottom: 0px;
  line-height: 12px; }

.super_map_list .map_filters li ul {
  margin-left:20px;}

.super_map_list .map_filters li ul li {
  list-style: none;}

.hide_filter {
  background: #DAE0FF;
  border: 2px ridge grey;
  text-align: center;
  margin-bottom:10px;
}

.super_map_list input { margin: 5px 5px 5px 0; }

.super_map, .super_map_list { height: 550px; }

.super_map {
  float: right;
  width: 65%; }

.super_map.no_sidebar {
  width: 100%; }

.super_map .gmnoprint img {
  background: none !important;}

#content .super_map img { max-width: none; }

input.wpp_supermap_input_field_min, input.wpp_supermap_input_field_max { width: 40px; }

.super_map_list select { 
  margin-bottom: 0;
  max-width: 96%;
}

.super_map_list {
  float: left;
  overflow-y: scroll;
  overflow-h: hidden;
  width: 35%;
  position: relative; }

.map_filters #search_loader,
.super_map_list .search_loader {
  display: none;
  float: right;
  margin-top: 8px;
  right: 0;
  top: 0;
  padding-left: 18px;
  width: 42px;
  height: 13px;
  font-size: 10px;
  color: #888888;
  background: url(images/ajax-loader.gif) center left no-repeat; 
}
.super_map_list .show_more {
  position:relative;
  text-align: center;
  background: none repeat scroll 0 0 #DAE0FF;
  cursor:pointer;
}
.super_map_list .show_more .search_loader {
  display:none;
  height:auto;
  margin:0;
  position:absolute;
  margin:5px;
}

.super_map_list ul.property_in_list_items {
  list-style-type: none;
  margin: 5px;
  padding: 0;
  font-size: 0.9em;
  position: relative;
}

  .super_map_list ul.property_in_list_items li {
    background: transparent;
    list-style-type: none;
    display: block;
    margin-right: 6px; }

    .super_map_list ul.property_in_list_items li.supermap_list_title span {
      color: #004893;
      font-size: 1.2em;
      cursor: pointer;
      text-decoration: none; }

    .super_map_list ul.property_in_list_items li.supermap_list_thumb {
      float: left;
      position: relative;
      top: 5px;
      left: 5px;
      padding-left: 0;
      margin-right: 10px; }

    .super_map_list ul.property_in_list_items li.supermap_list_view_property {
      color: #004893;
      font-size: 1em;
      cursor: pointer;
      text-decoration: underline; }

#no_properties { background: #FF737A; }

/* --- Pagination ---*/
.clear {
  clear: both;
  margin: -1px 0 0 0;
  padding: 0;
  height: 1px;
  font-size: 1px;
  line-height: 1px; }

.properties-handling { position: relative; }

  .properties-handling .ajax_loader {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 18px;
    width: 42px;
    height: 24px;
    font-size: 10px;
    color: #888888;
    background: url(images/ajax-loader.gif) center left no-repeat; }



.properties_pagination a.nav, .properties_pagination ul li { float: left; }

.properties_pagination a.nav { width: 60px; }
.properties_pagination a.page_button {   width: 20px; }

.properties_pagination a.nav,
.properties_pagination a.page_button {
   display: block;
  padding: 2px 0;
  border: 1px solid #CCCCCC;
  text-decoration: none;
  margin-right: 6px;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); }

  .properties_pagination a:hover {
    color: #0066CC;
    -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1) inset;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1) inset; }

    .properties_pagination a:hover.disabled, .properties_pagination a:hover.selected {
      -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); }

.properties_pagination ul, .properties_sorter {
  display: block;
  margin: 10px 0 0 0;
  padding: 0; }

.properties_pagination ul { margin: 0 !important; }

  .properties_pagination ul li { list-style: none; }

.properties_pagination a.page_button.selected {
  cursor: default;
  background-color: #e4e4e4; }

.properties_pagination a.nav.disabled {
  background-color: #e4e4e4;
  cursor: default; }

.properties_sorter select {
  margin: 0;
  border: 1px solid #CCCCCC;
  -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1); }

.wpp_sortable_dropdown option {
  margin-right: 10px;
}

.properties_sorter label, .sort_by, .sort_order {
  height: 24px;
  margin-right: 6px !important; 
}

.properties_sorter label { line-height: 23px; }

.sort_order {
  display: inline-block;
  width: 22px;
  height: 23px;
  cursor: pointer; 
  vertical-align: bottom;
  }

  .sort_order.ASC { background: url(images/sort.png) -0 0 no-repeat; }

  .sort_order.DESC { background: url(images/sort.png) -22px 0 no-repeat; }


.nivoSlider { position: relative; }

  .nivoSlider img {
    position: absolute;
    top: 0px;
    left: 0px; }

 .nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 60;
    display: none; }

 .nivo-slice {
  display: block;
  position: absolute;
  z-index: 50;
  height: 100%; }

 .nivo-box {
  display:block;
  position:absolute;
  z-index:5;
}

 .nivo-caption {
  position: absolute;
  font-size: 2em;
  padding: 4px;
  left: 0px;
  top: 0px;
  height: 58px;
  bottom: 0px;
  background: #000;
  color: #fff;
  opacity: 0.99;
  width: 100%;
  z-index: 89; }

  .nivo-caption p {
    padding: 5px;
    margin: 0; }

  .nivo-caption a { display: inline !important; }

.nivo-html-caption { display: none; }

 .nivo-directionNav a {
  position: absolute;
  top: 45%;
  z-index: 99;
  cursor: pointer;
  background: url("images/arrows.png") no-repeat scroll 0 0 transparent;
  border: 0 none;
  display: block;
  height: 30px;
  text-indent: -9999px;
  width: 30px; }

.nivo-prevNav { left: 15px; }

.nivo-directionNav a.nivo-nextNav {
  background: url("images/arrows.png") no-repeat scroll -30px 0 transparent;
  right: 15px; }

.nivo-controlNav {  }

  .nivo-controlNav a {
    background: url("images/bullets.png") no-repeat scroll 0 0 transparent;
    border: 0 none;
    display: block;
    float: left;
    height: 10px;
    margin-right: 3px;
    text-indent: -9999px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    padding: 4px;
    text-align: center; }

    .nivo-controlNav a.active { background-position: -10px 0; }

/* Different Specific DOM elements */

.true-checkbox-image {
  width:15px;
  height:15px;
  background:url("images/true-checkbox-image.png") no-repeat scroll 0 0 transparent;
  float:left;
}

.wpp_supermap_attribute_row .true-checkbox-image {
  margin-right: 3px;
  position: relative;
  top: 2px;
}

.wpp_google_maps_attribute_row .true-checkbox-image {
  position: relative;
  top: 3px;
}

 /* Global Slideshow Begin */
 .wpp_slideshow_global_wrapper {
   position:absolute;
   overflow:hidden;
   top:0;
   left:0;
 }
 /* Global Slideshow End*/


 /* TwentyTen Specific */
 #primary .wpp_search_properties_widget ul.wpp_search_elements {
  margin:0;
 }


#advps-slide-container h1{
	line-height: 21px!important;
}




#social-icons {
	position:absolute;
	top:25px;
	right:122px;
}

/* Office Styles
****************************************************/

.office-left {
	float:left;
	width:415px;
}
.office-right {
	float:left;
	padding:0 10px;
	width:265px;
	height:400px;
}
.office-right img { 
	-webkit-box-shadow:  3px 3px 3px 3px #666;
        box-shadow:  3px 3px 3px 3px #666;
}

.office-hr {
	height:3px;
	width:400px;
	background:#12245c;
}
.office-address {
	background:url(images/bullet.png) top left no-repeat;
	padding-left:20px;
	float:left;

}
.office-phone {
	background:url(images/bullet.png) top left no-repeat;
	padding-left:20px;
	float:left;
	margin-left:50px;
}
.office-overview {
	background:url(images/bullet.png) top left no-repeat;
	padding-left:20px;
	float:left;

}
.office-overview p {
	line-height:1.5em;
}

.office-ul {
	line-height:1em;
	margin-bottom:10px;
}
.office-ul li {
	margin-bottom: 0;
}

.myButton {
	-moz-box-shadow:inset 0px 1px 0px 0px #6897e3;
	-webkit-box-shadow:inset 0px 1px 0px 0px #6897e3;
	box-shadow:inset 0px 1px 0px 0px #6897e3;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5390ed), color-stop(1, #0a5b94));
	background:-moz-linear-gradient(top, #5390ed 5%, #0a5b94 100%);
	background:-webkit-linear-gradient(top, #5390ed 5%, #0a5b94 100%);
	background:-o-linear-gradient(top, #5390ed 5%, #0a5b94 100%);
	background:-ms-linear-gradient(top, #5390ed 5%, #0a5b94 100%);
	background:linear-gradient(to bottom, #5390ed 5%, #0a5b94 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5390ed', endColorstr='#0a5b94',GradientType=0);
	background-color:#5390ed;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #16285f;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:arial;
	font-size:13px;
	font-weight:bold;
	padding:9px 15px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3665ad;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0a5b94), color-stop(1, #5390ed));
	background:-moz-linear-gradient(top, #0a5b94 5%, #5390ed 100%);
	background:-webkit-linear-gradient(top, #0a5b94 5%, #5390ed 100%);
	background:-o-linear-gradient(top, #0a5b94 5%, #5390ed 100%);
	background:-ms-linear-gradient(top, #0a5b94 5%, #5390ed 100%);
	background:linear-gradient(to bottom, #0a5b94 5%, #5390ed 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0a5b94', endColorstr='#5390ed',GradientType=0);
	background-color:#0a5b94;
	text-decoration:none;
}
.myButton:active {
	position:relative;
	top:1px;
}

.blog-img {
	float:left;
	padding: 10px;
}