
/*--------------------------------------------------
   Main Layout Section
--------------------------------------------------*/
body {
	padding: 0;
	margin: 0;
	font-size: 15px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	background-color: #ffffff;
}


/*--------------------------------------------------
   Header Section
--------------------------------------------------*/
#headerWrapper {
	width: 100%;
	height: 175px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,1);
	position: fixed;
	z-index: 150;
	-webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.35);
	background-image: url('../images/BgHeaderTrim.png');
	background-repeat: no-repeat;
	background-position: center bottom;
}
#headerSpacer {
	width: 100%;
	height: 175px;
	background-color: #ffffff;
}
#topWrapper {
	background-color: #747474;
	width: 100%;
	height: 35px;
}
#navTop {
	position: absolute;
	top: 7px;
	right: 0px;
	font-size: 15px;
	color: #ffffff;
	text-transform: uppercase;
}
#navTop a {
	color: #ffffff;
	text-decoration: none;
}
.navTopSpacer {
	padding-left: 4px;
	padding-right: 4px;
}
#phoneTop {
	box-sizing: border-box;
	color: #ffffff;
	padding-left: 13px;
	background-image: url('../images/IconPhoneTop.png');
	background-repeat: no-repeat;
	background-position: left center;
}
#phoneTop a {
	color: #ffffff;
}
#headerHolder {
	display: table;
	width: 100%;
	height: 135px;
	box-sizing: border-box;
}
#logoWrapper {
	width: 23.5%;
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	padding-right: 15px;
}
#navWrapper {
	width: 76.5%;
	display: table-cell;
	vertical-align: middle;
}


/*--------------------------------------------------
   Navigation Section
--------------------------------------------------*/
#navList {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}
.navListItem {
	font-family: 'open_sanssemibold', Arial, Helvetica, sans-serif;
	float: left;
	font-size: 15px;
	text-transform: uppercase;
}
.navListItem a {
	text-decoration: none;
	color: #000000;
}
.navListItem a:hover {
	color: #cd3738;
}
.navListItemActive a {
	color: #cd3738;
}
#nav1 {
	width: 9.1%;
	text-align: left;
}
#nav2 {
	width: 15.1%;
	text-align: center;
}
#nav3 {
	width: 14.1%;
	text-align: center;
}
#nav4 {
	width: 16.8%;
	text-align: center;
}
#nav5 {
	width: 14.0%;
	text-align: center;
}
#nav6 {
	width: 15.6%;
	text-align: center;
}
#nav7 {
	width: 15.3%;
	text-align: right;
}
#navRightSM {
	display: none;
	float: right;
	padding-top: 20px;
	padding-right: 20px;
}
#outerMobiNav {
	list-style:none;	
	position: relative;
	z-index: 3000;
	padding:  0;
}
/**Animated Nav Icon**/
#mobiBTN {
	width: 30px;
	height: 35px;
	position: relative;
	margin: 10px auto;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}
#mobiBTN span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	background-color: #cd3738;
}
#mobiBTN span:nth-child(1) {
	top: 0px;
}
#mobiBTN span:nth-child(2),#mobiBTN span:nth-child(3) {
	top: 10px;
}
#mobiBTN span:nth-child(4) {
	top: 20px;
}
#mobiBTN.open span:nth-child(1) {
	top: 18px;
	width: 0%;
	left: 50%;
}
#mobiBTN.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#mobiBTN.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#mobiBTN.open span:nth-child(4) {
	top: 18px;
	width: 0%;
	left: 50%;
}
#mobiNavWrapper {
	display: none;
	list-style:none;
	position: fixed;
	left: 0;
	top: 125px; 		
	z-index: 100;
	width: 100%;
	padding: 0;
	background-color: #ffffff;
}
.mobiNav {
	list-style:none;
	width: 100%;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'open_sanssemibold', Arial, Helvetica, sans-serif;
}
.mobiNav a {
	text-decoration: none;
}
.mobiNav li{
	box-sizing: border-box;
	padding: 8px 10px 8px 10px; /* Introducing a padding between the li and the a give the illusion spaced items */
	text-align: center;
	text-decoration: none;
	font-weight: normal;
	width: 160px;
	margin: 0;
	cursor: pointer;
	color: #000000;
	font-size: 16px;
	text-transform: uppercase;
	float: left;
}
.mobiNav li a{
	text-decoration: none;
	color: #000000;
}
.mobiNav li span{
	text-decoration: none;
	color: #000000;
}
.mobiNav li:hover{
	color: #cd3738;
}
.mobiNav .active{
	color: #cd3738;
}


/*--------------------------------------------------
   Footer Section
--------------------------------------------------*/
#bottomWrapper {
	background-color: #747474;
	font-size: 15px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 50px;
}
#bottomWrapper a {
	color: #ffffff;
	text-decoration: none;
}
#bottomStaff {
	float: left;
	text-align: left;
}
#bottomSocial {
	float: right;
	text-align: right;
}
.bottomStaffBg {
	padding-left: 13px;
	background-image: url('/Images/Icon_Lock.png');
	background-repeat: no-repeat;
	background-position: left center;
}
.socialIcon {
	width: 31px;
	box-sizing: border-box;
	margin-left: 4px;
	margin-right: 4px;
	display: inline-block;
	max-width: 31px;
}
#footerWrapper {
	background-color: #404040;
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 25px;
}
#footerWrapper a {
	color: #ffffff;
	text-decoration: none;
}
#footerCopy {
	float: left;
	text-align: left;
}
#footerEllipse {
	float: right;
	text-align: right;
}
.ellipseFooterLogo {
	width: 22px;
}
.ellipseFooterLogoEO {
	width: 34px;
}


/*--------------------------------------------------
   Generic Style Section
--------------------------------------------------*/
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }
.siteWidth {
	width: 100%;
	max-width: 960px;
}
.siteCenter {
	margin-left: auto;
	margin-right: auto;
}
.sitePad {
	box-sizing: border-box;
}
.noBorder {
	border: 0;
}
.outer-center {
	float: right;
	right: 50%;
	position: relative;
}
.inner-center {
	float: right;
	right: -50%;
	position: relative;
}
.picMiddle {
	vertical-align: middle;
}
.picResize {
	width: 100%;
	height: auto;
}
.placeholder {
	color: #999898;
}
.positionRel {
	position: relative;
}
.leftFloat {
	float: left;
}
.rightFloat {
	float: right;
}
.show {
	display: inline;
}
.hide {
	display: none;
}
a.noLine {
	text-decoration: none;
}
.mt20 {
	margin-top: 20px;
}
.pt20 {
	padding-top: 20px;
}
.pb20 {
	padding-bottom: 20px;
}
.centerText {
	text-align: center;
}


/*--------------------------------------------------
   Home Page Section
--------------------------------------------------*/
#rotatorWrapperHome {
	width: 100%;
	height: 424px;
}
#rotatorTextWrapperHome {
	position: relative;
	top: 144px;
}
.rotatorText {
	color: #ffffff;
	font-size: 25px;
	font-family: 'open_sanssemibold', Arial, Helvetica, sans-serif;
	text-align: center;
	text-shadow: 0px 2px 5px rgba(0, 0, 0, 1);
}
.rotatorTextBtnWrapper {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
.rotatorTextBtnWrapper a {
	text-decoration: none;
}
.rotatorTextBtn {
	display: inline-block;
	font-size: 18px;
	text-transform: uppercase;
	padding: 5px 10px;
	background-color: #cd3738;
	font-family: 'open_sanssemibold', Arial, Helvetica, sans-serif;
	color: #ffffff;
}
#barWrapper {
	background-image: url('/Images/Bg_Bar.png');
}
#barWrapperSpacer {
	width: 100%;
	display: none;
}
#barWrapperHome {
	box-sizing: border-box;
	padding-top: 42px;
	padding-bottom: 42px;
}
.homeSearchText {
	float: left;
	width: 31.8%;
}
.homeSearchType {
	float: left;
	width: 20.1%;
}
.homeSearchBed {
	float: left;
	width: 15.6%;
}
.homeSearchRent {
	float: left;
	width: 15.6%;
}
.homeSearchSubmit {
	float: left;
	width: 11.9%;
}
.homeSearchSpacer {
	float: left;
	width: 1.25%;
	height: 40px;
}
.homeSearchSpacer2 {
	float: left;
	width: 4%;
	height: 40px;
	display: none;
}
.homeFormInput {
	margin: 0;
	border: 1px #dfdfdf solid;
	height: 40px;
	padding-left: 5px;
	width: 100%;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
}
.homeFormInput:focus {
	outline: none;
}
.homeFormSelect {
	width: 100%;
	margin: 0;
	border: 1px #dfdfdf solid;
	padding: 7px 0px;
	font-size: 16px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
}
.homeFormSelect:focus {
	outline: none;
}
.homeFormSubmit {
	box-sizing: border-box;
	height: 40px;
	font-size: 18px;
	text-transform: uppercase;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	color: #ffffff;
	width: 100%;
	text-align: center;
	border: 0;
	background: #cd3738;
}
.homeFormSubmit:focus {
	outline: none;
}
.pageTitle {
	font-size: 25px;
	color: #cd3738;
	font-weight: normal;
}
.pageText {
	font-size: 16px;
	color: #000000;
}
.pageText a {
	color: #cd3738;
}
.pageText p:first-of-type {
	margin-top: 0px;
}
.pageText ul {
	padding-left: 1em;
}
#contentFeaturedWrapper {
	background-color: #e3e3e3;
}
.featureItem {
	float: left;
	width: 300px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 30px;
}
.featureItem a {
	text-decoration: none;
}
.featuredText {
	font-size: 18px;
	color: #000000;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.featuredBtn {
	font-size: 15px;
	text-align: center;
	color: #cd3738;
	text-transform: uppercase;
	border: 2px solid #cd3738;
	padding: 3px;
}
.featuredBtn:hover {
	background-color: #cd3738;
	color: #ffffff;
}


/*--------------------------------------------------
   About Us Section
--------------------------------------------------*/
#rotatorWrapper {
	width: 100%;
	height: 200px;
}
#rotatorTextWrapper {
	position: relative;
	top: 62px;
}
#barWrapperAbout {
	line-height: 50px;
	text-align: right;
	font-size: 20px;
	color: #c3c3c3;
}
#barWrapperAbout a {
	color: #c3c3c3;
	text-decoration: none;
}
#barWrapperAbout a:hover {
	color: #ffffff;
}
.intNav {
	background-image: url('/Images/Bg_Bar.png');
	width: 100%;
	color: #ffffff;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 20px;
	cursor: pointer;
	display: none;
}
.intNav:first-of-type {
	margin-top: 0px;
}
.intNavInner {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 50px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.intNavText {
	float: left;
}
.intNavPlus {
	float: right;
	font-size: 30px;
}
.intNavMinus {
	float: right;
	font-size: 30px;
	display: none;
}
.fakeHR {
	width: 100%;
	height: 2px;
	background-color: #e3e3e3;
	margin-top: 10px;
	margin-bottom: 10px;
}
.staffBtn {
	position: relative;
	float: left;
	width: 220px;
	height: 346px;
	text-align: center;
	margin-left: 7px;
	margin-right: 7px;
	margin-top: 7px;
	cursor: pointer;
}
.staffBtn a {
	text-decoration: none;
}
.staffBtnImage {
	width: 100%;
	text-align: center;
	background: #ffffff;
	height: 274px;
	box-sizing: border-box;
}
.staffBtnImageBG {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.staffBtnName {
	width: 100%;
	text-align: left;
	font-size: 18px;
	color: #cd3738;
}
.staffBtnTitle {
	width: 100%;
	text-align: left;
	font-size: 15px;
	color: #000000;
}
.teamDetailWrapper {
	padding: 10px;
}
.teamDetailPic {
	width: 240px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin-right: 20px;
}
.teamDetailTitleWrapper {
	text-align: left;
}
.teamDetailName {
	font-size: 18px;
	color: #cd3738;
}
.teamDetailTitle {
	font-size: 15px;
	color: #000000;
}


/*--------------------------------------------------
   Services Section
--------------------------------------------------*/
#barWrapperServices {
	line-height: 50px;
	text-align: right;
	font-size: 20px;
	color: #c3c3c3;
}
#barWrapperServices a {
	color: #c3c3c3;
	text-decoration: none;
}
#barWrapperServices a:hover {
	color: #ffffff;
}


/*--------------------------------------------------
   Properties Section
--------------------------------------------------*/
#map_canvas {
	width: 100%;
	height: 424px;
}
.iWindow {
	min-width: 260px;
	max-width: 280px;
}
.iwRow1 {
	border-bottom: 1px solid #EBEBEB;
	color: #FFFFFF;
	margin: 0;
	padding: 3px 5px;	
}
.iwTitle {
	float: left;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;	
	color: #000000;
	font-size: 15px;
	font-weight: normal;
	line-height: 20px;
}
.iwRow2 {
	background-color: #FFFFFF;
	margin-top: 5px;
	padding: 3px 5px;	
}
.PicBorderSmall {
	border: 1px #e9e9e9 solid;
	background-color: #ffffff;
	float: left;
	padding: 2px;
	-moz-box-shadow: 0 0 2px 0 rgba(232,232,232,0.5);
	-webkit-box-shadow: 0 0 2px 0 rgba(232,232,232,0.5);
	box-shadow: 0 0 2px 0 rgba(232, 232, 232, 0.5);
	position: relative;
	margin-right: 20px;
}
.iwAddressWrapper {
	float: right;
	width: 150px;
	color: #000000;
	font-size: 12px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	padding-top:7px;
	padding-bottom:7px;
}
.iwAddressWrapper a {
	color: #000000;
	text-decoration: none;
}
.iwPrice {
	text-transform: uppercase;
	padding-bottom: 5px;
}
.iwAddress {
	padding-bottom: 5px;
}
.iwWebsite {
	color: #cd3738;
	font-size: 12px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	background-image: url('/images/Icon_Home_Small.png');
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	margin-right: 15px;
	float: left;
}
.iwWebsite a {
	color: #cd3738;
	text-decoration: none;
}
.iwContact {
	color: #cd3738;
	font-size: 12px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	background-image: url('/images/Icon_Email_Small.png');
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 21px;
	float: left;
}
.iwContact a {
	color: #cd3738;
	text-decoration: none;
}
.NoResults {
	color: #000000;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}
#topPageWrapper {
	margin-top: 20px;
	margin-bottom: 20px;
}
#bottomPageWrapper {
	margin-top: 20px;
}
.pageTitleSearch {
	font-size: 25px;
	color: #cd3738;
	font-weight: normal;
	margin: 0px;
	line-height: 35px;
	float: left;
}
.FloatLeft {
	float: left;
}
.FloatRight {
	float: right;
}
.SearchTitleSubpaging {
	float: right;
	line-height: 25px;
	color: #000000;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	font-size: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.SearchTitleSubpaging a {
	color: #cd3738;
	text-decoration: none;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
}
.PageNumberBoxHolder {
	max-width: 300px;
}
.pageNum {
	color: #cd3738;
	text-align: center;
	padding: 3px;
	border: 1px #dfdfdf solid;
	float: left;
	font-size: 15px;
	line-height: 15px;
	font-weight: normal;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	margin-left: 2px;
	margin-right: 3px;
	box-sizing: border-box;
}
.pageNum a {
	color: #cd3738;
	font-weight: normal;
	text-decoration: none;
}
.pageNumOvrBottom {
	color: #ffffff;
	text-align: center;
	background-color: #cd3738;
	padding: 3px;
	border: 1px #b33031 solid;
	float: left;
	font-size: 15px;
	line-height: 15px;
	font-weight: normal;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	margin-left: 2px;
	margin-right: 3px;
	box-sizing: border-box;
}
.pageNumOvrBottom a {
	color: #ffffff;
	font-weight: normal;
	text-decoration: none;
}
.SearchHR {
	width: 100%;
	height: 2px;
	background-color: #e3e3e3;
	margin-top: 20px;
	margin-bottom: 20px;
}
.SearchPicHolder {
	float: left;
	width: 33%;
	box-sizing: border-box;
	padding-right: 17px;
}
.PicBorder {
	border: 1px #e3e3e3 solid;
	background-color: #ffffff;
	float: left;
	-moz-box-shadow: 0 0 2px 0 rgba(232,232,232,0.5);
	-webkit-box-shadow: 0 0 2px 0 rgba(232,232,232,0.5);
	box-shadow: 0 0 2px 0 rgba(232, 232, 232, 0.5);
	position: relative;
}
.ResultNavPhoto {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	z-index: 15;
	color: #ffffff;
	font-size: 15px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	line-height: 35px;
	text-align: center;
	text-transform: uppercase;
	background-color: rgba(116, 116, 116, 0.85);
}
.ResultNavPhoto a {
	color: #ffffff;
	text-decoration: none;
}
.ResultNavPhoto a:hover {
	color: #ffffff;
	text-decoration: none;
}
.ResultItem {
	float: right;
	width: 67%;
}
.ResultTitleHolder {
	box-sizing: border-box;
	border: 2px #e3e3e3 solid;
	padding-right: 12px;
	line-height: 36px;
	position: relative;
	color: #000000;
}
.ResultNumber {
	width: 40px;
	height: auto;
	vertical-align: middle;
	padding-bottom: 2px;
}
.ResultTitle {
	float: left;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000000;
}
.ResultTitle a {
	color: #000000;
	text-decoration: none;
}
.ResultPhone {
	float: right;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #000000;
}
.ResultPhone a {
	color: #cd3738;
	text-decoration: none;
}
.ResultTextWrapper {
	width: 100%;
	padding-top: 8px;
}
.ResultText {
	width: 67%;
	float: left;
	color: #000000;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	font-size: 15px;
	box-sizing: border-box;
	padding-right: 10px;
}
.ResultText a {
	color: #cd3738;
}
.ResultAddress {
	padding-bottom: 10px;
}
.ResultFPs {
	width: 33%;
	float: left;
}
.ResultBedLeft {
	color: #000000;
	font-size: 15px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	text-align: left;
	float: left;
}
.ResultBedRight {
	color: #000000;
	font-size: 15px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
	text-align: right;
	float: right;
}
.ResultNav {
	padding-top: 10px;
	color: #cd3738;
	font-size: 15px;
	font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
}
.ResultNav a {
	color: #cd3738;
	text-decoration: none;
}
.ResultNav a:hover {
	color: #cd3738;
	text-decoration: none;
}
.ResultNavContact {
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url('/images/Icon_Email_Small.png');
	padding-left: 16px;
	margin-right: 10px;
	float: left;
}
.ResultNavRes {
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url('/images/Icon_Lock_Small.png');
	padding-left: 15px;
	float: left;
	margin-left: 10px;
}
.ResultNavWeb {
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url('/images/Icon_Home_Small.png');
	padding-left: 20px;
	float: left;
}



/*--------------------------------------------------
   Owners Section
--------------------------------------------------*/
#barWrapperOwners {
	line-height: 50px;
	text-align: right;
	font-size: 20px;
	color: #c3c3c3;
}
#barWrapperOwners a {
	color: #c3c3c3;
	text-decoration: none;
}
#barWrapperOwners a:hover {
	color: #ffffff;
}


/*--------------------------------------------------
   Contact Section
--------------------------------------------------*/
#mapWrapper {
	width: 100%;
	height: 424px;
}
.contactText {
	text-align: center;
	margin-bottom: 15px;
}
.contactText a {
	color: #cd3738;
}
.contactLeft {
	font-size: 12px;
}
.contactRight {
	font-size: 12px;
}
.contactFormPad {
	padding-bottom: 10px;
}
.contactTable {
	display: table;
	width: 100%;
}
.contactRow {
	display: table-row;
}
.contactIconHolder {
	height: 34px;
	box-sizing: border-box;
	background-color: #cd3738;
	border-left: 1px #cd3738 solid;
	display: table-cell;
	width: 44px;
}
.contactIconHolder2 {
	height: 34px;
	box-sizing: border-box;
	background-color: #cccccc;
	border-left: 1px #cccccc solid;
	display: table-cell;
	width: 44px;
}
.contactInputHolder {
	display: table-cell;
}
.contactInput {
	margin: 0;
	border: 1px #dbdbdb solid;
	height: 36px;
	padding-left: 10px;
	width: 100%;
	box-sizing: border-box;
	border-radius: 0;
	box-shadow: none;
	font-size: 12px;
}
.contactInput:focus {
	outline: none;
}
.contactSelect {
	width: 100%;
	margin: 0;
	border: 1px #dbdbdb solid;
	padding: 6px 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
}
.contactSelect:focus {
	outline: none;
}
.contactMethodHolder {
	float: left;
	font-size: 12px;
}
.contactMethodOptionHolder{
	float: right;
	font-size: 12px;
}
.contactMethodOptionHolder  input, .contactMethodOptionHolder  label{
	margin: 0 2px;
}
.contactTextareaHolder {
	float: left;
	padding-bottom: 10px;
	width: 100%;
}
.contactTextarea {
	margin: 0;
	border: 1px #dbdbdb solid;
	width: 100%;
	height: 128px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 12px;
}
.contactTextarea:focus {
	outline: none;
}
.contactRequiredHolder {
	float: left;
	padding-bottom: 10px;
	color: #787878;
	text-align: right;
	width: 100%;
	font-size: 12px;
}
.contactSubmit {
	box-sizing: border-box;
	height: 34px;
	font-size: 12px;
	text-transform: uppercase;
	color: #ffffff;
	width: 190px;
	text-align: center;
	border: 0;
	background: #cd3738;
	float: right;
}
.contactSubmit:focus {
	outline: none;
}
.contactBottom {
	font-size: 16px;
}
.contactBottom a {
	color: #cd3738;
}
.contactBottomCol {
	width: 32%;
	float: left;
	margin-bottom: 15px;
}
.contactBottomColSpacer {
	width: 2%;
	float: left;
	height: 20px;
}
.contactBottomColTitle {
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 15px;
	line-height: 32px;
	width: 100%;
}
#mainOfficeTitle {
	padding-left: 25px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url('../images/Map1.png');
}
#regOfficeTitle {
	padding-left: 25px;
	background-position: left center;
	background-repeat: no-repeat;
	background-image: url('../images/Map2.png');
}
#contactHoursWrapper {
	margin: 0 auto;
}


/*--------------------------------------------------
   Blog Section
--------------------------------------------------*/
.blogWrapper {
	margin-top: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e3e3e3;
}
.blogMainTitle {
	font-size: 16px;
	color: #000000;
	font-weight: bold;
}
.blogMainDate {
	font-size: 16px;
	font-style: italic;
}
.blogMainContent {
	font-size: 16px;
}
.blogMainContent2 {
	font-size: 16px;
}

.pagingHolder {
	text-align: right;
	margin: 20px auto;
	color: #747474;
	font-size: 18px;
}
.pressPaging {
	padding: 5px 10px;
	margin: 20px auto;
	cursor: pointer;
}
.pagingActive {
	border: 2px solid #747474;
}
.pagingHolderText {
	margin-right: 25px;
}


/*--------------------------------------------------
   Residents Section
--------------------------------------------------*/
.resSearchWrapper {
	width: 50%;
	float: left;
}
.resSearchTitle {
	padding-bottom: 10px;
}
.resSearchText {
	float: left;
	width: 62%;
}
.resSearchSubmit {
	float: left;
	width: 35.5%;
}
.resSearchSpacer {
	float: left;
	width: 2.5%;
	height: 40px;
}
.resPayRent {
	float: right;
	width: 150px;
	
	color: #fff;
	font-weight: normal;
	text-decoration: none;
}
a.payResLink {
	float: right;
	box-sizing: border-box;
    height: 40px;
	line-height: 40px;
	padding: 0 15px;
	margin-top: 32px;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'open_sansregular', Arial, Helvetica, sans-serif;
    color: #ffffff;
    text-align: center;
    border: 0;
    background: #cd3738;
	display: inline-block;
	text-decoration: none;
}
.resSearchNav {
	padding-top: 10px;
	color: #000000;
}
.resSearchNav a {
	color: #cd3738;
	text-decoration: none;
}
.resContactWrapper {
	width: 45%;
	float: right;
	min-height: 100px;
	border-left: 2px solid #e3e3e3;
	padding-left: 20px;
	box-sizing: border-box;
}
.resContactTitle {
	color: #000000;
	font-size: 16px;
	padding-bottom: 10px;
}
.resContactText {
	color: #000000;
	font-size: 15px;
}
.resBtnWrapper a {
	color: #ffffff;
	text-decoration: none;
	float: left;
}
.resBtn {
	color: #ffffff;
	background-color: #cd3738;
	font-size: 16px;
	padding: 10px 30px;
	text-align: center;
}
.resLink {
	font-size: 15px;
}
.serviceTextHolder {
	font-size: 12px;
	float: left;
	width: 210px;
	line-height: 36px;
}
.serviceCheckHolder {
	float: left;
	line-height: 36px;
}
.serviceCenter {
	clear: both;
	padding-bottom: 10px;
}
.resSearchLink:hover {
	background-color: #efefef;
}


/*--------------------------------------------------
   Media Section
--------------------------------------------------*/
@media (max-width: 767px) {
	.sitePad {
		padding: 0 10px;
	}
	.mobiHide {
		display: none;
	}
	.payResLink  {
		width: 100%;
	}
	.mobiBlock {
		display: block !important;	float: none !important; width: 100% !important;
	}
	.iPadHide {
		display: none;
	}
	.tabletHide {
		display: none;
	}
	#navTop {
		top: 7px;
		right: 10px;
		font-size: 14px;
	}
	#headerWrapper {
		height: 125px;
	}
	#headerSpacer {
		height: 125px;
	}
	#headerHolder {
		height: 85px;
	}
	#logoWrapper {
		width: 170px;
		display: table-cell;
	}
	#navWrapper {
		display: none;
	}
	#navRightSM {
		display: inline-block;
	}
	#bottomWrapper {
		padding-top: 10px;
		padding-bottom: 10px;
		line-height: initial;
	}
	#bottomStaff {
		float: none;
		text-align: center;
	}
	#bottomSocial {
		float: none;
		text-align: center;
		padding-top: 10px;
	}
	#footerWrapper {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	#footerCopy {
		float: none;
		text-align: center;
		font-size: 11px;
		line-height: initial;
	}
	#footerEllipse {
		float: none;
		text-align: center;
		font-size: 11px;
		line-height: initial;
	}
	#rotatorWrapperHome {
		height: 250px;
	}
	#rotatorTextWrapperHome {
		top: 60px;
	}
	.rotatorText {
		font-size: 17px;
	}
	#barWrapperHome {
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.homeSearchText {
		width: 100%;
		margin-top: 7px;
		margin-bottom: 3px;
	}
	.homeSearchType {
		width: 100%;
		margin-top: 4px;
		margin-bottom: 3px;
	}
	.homeSearchBed {
		width: 48%;
		margin-top: 4px;
		margin-bottom: 3px;
	}
	.homeSearchRent {
		width: 48%;
		margin-top: 4px;
		margin-bottom: 3px;
	}
	.homeSearchSubmit {
		width: 100%;
		margin-top: 4px;
		margin-bottom: 7px;
	}
	.homeSearchSpacer {
		display: none;
	}
	.homeSearchSpacer2 {
		display: block;
	}
	.featureItem:nth-of-type(1n+1) {
		clear: left;
	}
	.intNav {
		display: block;
	}
	.intNavContent {
		display: none;
	}
	.staffBtn {
		width: 138px;
		height: 250px;
	}
	.staffBtnImage {
		height: 172px;
	}
	.staffBtnName {
		font-size: 15px;
	}
	.staffBtnTitle {
		font-size: 13px;
	}
	.teamDetailPic {
		width: 150px;
	}
	#map_canvas {
		height: 250px;
	}
	#mapWrapper {
		height: 250px;
	}
	.contactBottomCol {
		width: 300px;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	.contactBottomColSpacer {
		display: none;
	}
	.contactBottom {
		font-size: 14px;
	}
	.contactBottomColTitle {
		font-size: 18px;
	}
	.SearchPicHolder {
		float: none;
		width: 300px;
		padding-right: 0px;
		margin: 0 auto;
	}
	.ResultItem {
		float: none;
		padding-top: 10px;
		width: 300px;
		margin: 0 auto;
	}
	.ResultPhone {
		clear: both;
		float: none;
		width: 100%;
		text-align: center;
	}
	.ResultText {
		float: none;
		width: 100%;
		padding-right: 0px;
	}
	.ResultFPs {
		float: none;
		width: 100%;
		padding-top: 10px;
	}
	.resSearchWrapper {
		width: 100%;
		float: none;
		padding-bottom: 20px;
	}
	.resContactWrapper {
		width: 100%;
		float: none;
		min-height: 50px;
		border-left: 0px solid #e3e3e3;
		border-top: 2px solid #e3e3e3;
		padding-left: 0px;
		padding-top: 20px;
	}
	.serviceLeft {
		float: none;
		width: 100%;
	}
	.serviceRight {
		float: none;
		width: 100%;
	}
}
@media (min-width: 768px) and (max-width: 959px) {
	.sitePad {
		padding: 0 10px;
	}
	.iPadHide {
		display: none;
	}
	.tabletHide {
		display: none;
	}
	#headerWrapper {
		height: 125px;
	}
	#headerSpacer {
		height: 125px;
	}
	#headerHolder {
		height: 85px;
	}
	#navTop {
		top: 7px;
		right: 10px;
		font-size: 14px;
	}
	#logoWrapper .picResize {
		max-width: 161px;
	}
	.navListItem {
		font-size: 14px;
	}
	.featureItem:nth-of-type(2n+1) {
		clear: left;
	}

	.rotatorText {
		font-size: 22px;
	}
	.contactLeft {
		float: left;
		width: 48%;
	}
	.contactRight {
		float: right;
		width: 48%;
	}
	.contactBottom {
		font-size: 14px;
	}
	.contactBottomColTitle {
		font-size: 18px;
	}
	.ResultNavRes {
		margin-left: 0px;
	}
	.serviceLeft {
		float: left;
		width: 48%;
	}
	.serviceRight {
		float: right;
		width: 48%;
	}
}
@media (min-width: 960px) {
	.featureItem:nth-of-type(3n+1) {
		clear: left;
	}
	.contactLeft {
		float: left;
		width: 48%;
	}
	.contactRight {
		float: right;
		width: 48%;
	}
	.serviceLeft {
		float: left;
		width: 48%;
	}
	.serviceRight {
		float: right;
		width: 48%;
	}
}

/*customcss - 247apps*/

.contactform{
    width:50%;
    padding-bottom:50px;
}
.contactleft{
/*    border:1px #ff0000 solid !important;*/
    margin-top:50px;
}

@media (min-width: 320px) and (max-width: 480px) {
    #topWrapper {
    background-color: #cd3738;
    }
    
    #barWrapperAbout a {
/*    font-size: 12px !important;*/
    line-height: 50px;
     text-align: left;
    font-size: 17px;
    color:#000 !important;
/*    font-weight:bold;*/
    }
    .contactform{
    width:100%;
}
}