body {
  background-color: #fff;
  background-image: none;
  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
  color: #000;
}

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #98999B;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #333;
	font-size: 22px;
	font-weight: bold;
	line-height: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: center;
}
/* Commonly used to style section titles. */
h2 {
	color: #F5A01F;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #666;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #666;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #F5A01F;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #666;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #666;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 795px;
}
#outerWrapper #topbar {
	background-image: url("../images/background.jpg");
	height: 100px;
	padding-top: 10px;
}
#outerWrapper #topbar #phone {
	float: right;
	display: block;
}
#outerWrapper #topbar #skype {
	float: right;
	display: block;
}
#outerWrapper #topbar #chat {
	float: right;
	margin-right: 24px;
	display: block;
}
#outerWrapper #topbar #sutitle {
	float: left;
	height: 20px;
	width: 350px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	display: block;
	margin-left: 0px;
}

#outerWrapper #topbar #searchidbox #content {
	padding-top: 5px;
	text-align: center;
}
#outerWrapper #topbar #social {
	float:left;
	width:245px;
	height:92px;
}
#outerWrapper #topbar #social #content {
	margin-left:24px;
}
#outerWrapper #topbar #social #content a:link {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#outerWrapper #topbar #social #content a:visited {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#outerWrapper #topbar #social #content a:hover {
	color: #333333;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#outerWrapper #topbar #social #content a:focus {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#outerWrapper #topbar #social #content a:active {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#outerWrapper #header {
	background-image: url("../images/background.jpg");
	height: 162px;
}
#outerWrapper #header #logo {
	float: left;
	display: block;
	width: 219px;
	height: 162px;
	margin-left: 24px;
}
#outerWrapper #header #byprice {
	padding-left: 11px;
	display: block;
	float: left;
	width: 165px;
	height: 133px;
}
#outerWrapper #header #byarea {
	padding-left: 11px;
	display: block;
	float: left;
	width: 165px;
	height: 133px;
}
#outerWrapper #header #luxury {
	padding-left: 11px;
	display: block;
	float: left;
	width: 165px;
	height: 133px;
}
#outerWrapper #header #by {
	width: 165px;
	height: 25px;
	float: left;
	padding-left: 11px;
	padding-top: 2px;
}
#outerWrapper #nav {
	background-image: url("../images/background.jpg");
	padding-bottom: 10px;
	padding-top: 10px;
	height: 28px;
}
#outerWrapper #nav #button {
	width: 95px;
	height: 28px;
	float: left;
	margin-left: 24px;
}
#outerWrapper #nav #buttons {
	width: 95px;
	height: 28px;
	float: left;
	margin-left: 2px;
}
#outerWrapper #nav #button2 {
	width: 85px;
	height: 28px;
	float: left;
	margin-left: 2px;
}
#outerWrapper #nav #buttonfaq {
	width: 57px;
	height: 28px;
	float: left;
	margin-left: 2px;
}
#outerWrapper #nav #buttonmeet {
	width: 125px;
	height: 28px;
	float: left;
	margin-left: 2px;
}
#outerWrapper #contentWrapper {
	background-image: url("../images/background.jpg");
	background-repeat: repeat-y;
	overflow: hidden;
	height: auto;
}
#navtitle {
	font-size: 12px;
	color: #F5A01F;
	font-weight: bold;
	padding-bottom: 2px;
	width: 160px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0px 24px 0 24px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: auto;
}
#outerWrapper #contentWrapper #content #contentText {
	text-align: justify;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 12px;
	height: auto;
}

#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content link {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#outerWrapper #contentWrapper #content a:visited {
	color: #333;
}
#outerWrapper #contentWrapper #content a:hover {
	color: #F79F1F;
	text-decoration: none;
}
#outerWrapper #contentWrapper #content a:focus {
	color: #333;
}
#outerWrapper #contentWrapper #content a:active {
	color: #333;
}
#outerWrapper #contentWrapper #content #contactTel {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-top: 5px;
	margin-bottom: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#outerWrapper #contentWrapper #content #contactTel a:link {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #333;
}
#outerWrapper #contentWrapper #content #contactTel a:visited {
	color: #333;
}
#outerWrapper #contentWrapper #content #contactTel a:hover {
	color: #F79F1F;
	text-decoration: none;
}
#outerWrapper #contentWrapper #content #contactTel a:focus {
	color: #333;
}
#outerWrapper #contentWrapper #content #contactTel a:active {
	color: #333;
}




#outerWrapper #contentWrapper #content #neighInfo {
	text-align: justify;
	text-decoration:none;
	color: #666;
	padding-top: 0px;
}
#outerWrapper #contentWrapper #content #neighInfo a:link {
	color: #333;
	text-decoration: none;
}
#outerWrapper #contentWrapper #content #neighInfo a:visited {
	color: #333;
	text-decoration: none;
}
#outerWrapper #contentWrapper #content #neighInfo a:hover {
	color: #F5A01F;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content #neighInfo a:focus {
	color: #333;
	text-decoration: none;
}
#outerWrapper #contentWrapper #content #neighInfo a:active {
	color: #333;
	text-decoration: none;
}
#outerWrapper #contentWrapper #content #seeMore {
	padding:10px;
	color:#F30;
	font-weight:bold;
}
#outerWrapper #contentWrapper #content #seeMore a:link {
	color:#F30;
}
#outerWrapper #contentWrapper #content #seeMore a:visited {
	color: #F30;
}
#outerWrapper #contentWrapper #content #seeMore a:hover {
	color:#F30;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content #seeMore a:focus {
	color: #F30;
}
#outerWrapper #contentWrapper #content #seeMore a:active {
	color: #F30;
}
#outerWrapper #bottombar {
	background-image: url("../images/background.jpg");
	background-repeat: repeat-y;
	height: 72px;
}
#outerWrapper #footer {
	background-image: url("../images/background.jpg"); /* Sets the top border properties for an element using shorthand notation */
	height: auto;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer #banner {
	height: 135px;
	width: 729px;
	margin-left: 23px;
}
#outerWrapper #footer #slogan {
	height: 30px;
	width: 488px;
	margin-left: 143px;
	margin-top: 15px;
}
#outerWrapper #footer #links {
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
}
#outerWrapper #footer #copyright {
	color: #999;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
	padding-bottom: 20px;
}
#outerWrapper #footer #shortcut {
	font-size: 11px;
	color: #666;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCC;
	border-bottom-color: #CCC;
	margin-top: 15px;
}
#outerWrapper #footer #shortcut #title {
	font-size: 10px;
	color: #666;
	font-weight: bold;
	text-transform: uppercase;
	width: 110px;
	padding-bottom: 6px;
	margin-left: 8px;
	margin-right: 8px;
}
#outerWrapper #footer #shortcut #item {
	width: 110px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	margin-right: 8px;
	margin-left: 8px;
	padding-top: 4px;
	padding-bottom: 2px;
}
#outerWrapper #footer #shortcut a:link {
	color:#666;
	font-weight: normal;
}
#outerWrapper #footer #shortcut a:visited {
	color: #666;
	font-weight: normal;
}
#outerWrapper #footer #shortcut a:hover {
	color:#F5A01F;
	text-decoration: none;
	font-weight: normal;
}
#outerWrapper #footer #shortcut a:focus {
	color: #666;
	font-weight: normal;
}
#outerWrapper #footer #shortcut a:active {
	color: #666;
	font-weight: normal;
	padding-top: 10px;
}
.hide {
	display:none;
}
.select {
	width: 140px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	height:19px;
}
 
a.button {
	display:block;
	color:#999;
	height:30px;
	line-height:29px;
	text-decoration:none;
	width:160px;
	float: left;
	font-size:12px;
}
a:hover.button {
	color: #F5A01F;
	text-decoration: none;
	font-weight: normal;
}
.newsletter {
	text-indent:25px;
	display:block;
	background-image: url("../images/envelope.gif");
	background-repeat: no-repeat;
	background-position: 5px 6px;
}
.comments {
	text-indent:25px;
	display:block;
	background-image: url("../images/comments.gif");
	background-repeat: no-repeat;
	background-position: 5px 6px;
}
.iframe {
	width: 269px;
	height: 100px;
}
/* Agents */
#agentsBox {
	font-size: 12px;
	height: 279px;
	width: 331px;
	padding-top: 20px;
}
#agentLeft {
	padding:2px;
	width:331px;
	float:left;
	margin-top:10px;
	clear:left;
	overflow:hidden;
}
#agentRight {
	padding:2px;
	width:331px;
	float:right;
	margin-top:10px;
	clear:right;
	overflow:hidden;
}
/* End Agents */
.reviewed {
	font-weight: bold;
	color: #F5A01F;
}
.time {
	font-size: 10px;
	color: #b2b2b2;
	font-style: italic;
}
.box {
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.pic {
	border: 1px solid #FFF;
}
.agent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	padding-left: 10px;
}
.review {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	padding-left: 10px;
}
.title {
	padding-bottom: 8px;
}
.more a:link {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
}
.more a:visited {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
}
.more a:hover {
	color: #333333;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding-left: 10px;
}
.more a:focus {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
}
.more a:active {
	color: #F5A01F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	padding-left: 10px;
}
#contactItem {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	margin-top: 2px;
	margin-bottom: 2px;
}
img.shadow {
	background: url("../images/shadow.gif") no-repeat right bottom;
	padding: 2px 5px 5px 2px;
}
.partytitle {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #F5A01F;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.partyinfo {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
a.button {
	display:block;
	color:#333;
	font-weight:bold;
	height:30px;
	line-height:29px;
	margin-bottom:5px;
	text-decoration:none;
	width:120px;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
}
a.buttonjoin {
	display:block;
	color:#333;
	font-weight:bold;
	height:30px;
	line-height:29px;
	margin-bottom:5px;
	text-decoration:none;
	width:65px;
	float: left;
	margin-left: 5px;
	margin-right: 5px;
}
a:hover.buttonjoin {
	color:#999;
}
a:hover.button {
	color:#999;
}
.reel {
	background:url("../images/reel.gif") no-repeat 10px 8px;
	text-indent:30px;
	display:block;
}
.facebook {
	background:url("../images/facebook.gif") no-repeat 10px 8px;
	text-indent:30px;
	display:block;
}
.collapse {
	text-align: justify;
	width: 685px;
	padding: 10px;
	display:none;
	padding-left: 30px;
}
#contactTile {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 6px;
	padding-bottom: 2px;
	background-image:url("../images/plus.png");
	background-repeat: no-repeat;
	float:left;
	padding-left:30px;
	height: 24px;
	cursor: pointer;
}
#contactTitle {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.formborder {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button_over.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:130%;
	height:30px;
	width:89px;
	padding-bottom:1px;
}
.formborder:hover {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:130%;
	height:30px;
	width:89px;
	padding-bottom:1px;
	cursor: pointer;
}
.formborderlarge {
border-style:solid;
border-width:1px;
border-color:#fff;
color:#fff;
background-image: url("../images/form_button_over.jpg");
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
line-height:130%;
height:30px;
width:140px;
padding-bottom:1px;
}
.formborderlarge:hover {
border-style:solid;
border-width:1px;
border-color:#fff;
color:#fff;
background-image: url("../images/form_button.jpg");
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
line-height:130%;
height:30px;
width:140px;
padding-bottom:1px;
}
.searchborder {
border-style:solid;
border-width:1px;
border-color:#fff;
color:#fff;
background-image: url("../images/form_button_over.jpg");
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:130%;
height:20px;
width:60px;
padding-bottom:1px;
}
.searchborder:hover {
border-style:solid;
border-width:1px;
border-color:#fff;
color:#fff;
background-image: url("../images/form_button.jpg");
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:130%;
height:20px;
width:60px;
padding-bottom:1px;
}
.selectshort {
	font-family: Arial, Helvetica, sans-serif;
	width: 110px;
	height: 18px;
	font-size: 11px;
}
.pg-normal {
    color: black;
    font-weight: normal;
    text-decoration: none;    
    cursor: pointer;    
}
.pg-selected {
    color: black;
    font-weight: bold;        
    text-decoration: underline;
    cursor: pointer;
}
.buttonsmall {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button_over.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:130%;
	height:20px;
	width:60px;
	padding-bottom:1px;
	cursor:hand;
}
.buttonsmall:hover {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:130%;
	height:20px;
	width:60px;
	padding-bottom:1px;
	cursor:hand;
}
.postbtn {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button_over.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:130%;
	height:30px;
	width:80px;
	padding-bottom:1px;
}
.postbtn:hover {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:130%;
	height:30px;
	width:80px;
	padding-bottom:1px;
}
.reviewby {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #F5A01F;
	float: left;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
}
.reviewname {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
}
.reviewtitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	text-decoration: underline;
	padding: 10px;
}
.review {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	text-align: justify;
	padding: 10px;
	font-style: italic;
}
.reviewday {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: italic;
	color: #F5A01F;
	padding-left: 10px;
}
.postitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #F5A01F;
	padding: 10px;
	text-align: center;
}
.postleyend {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	padding: 10px;
}
.inputform {
	border-style:solid;
	border-width:1px;
	border-color:#cccccc;
	color:#666666;
	background-color:#F2F2F2;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:160%;
	height:20px;
	width:300px;
	margin: 10px;
}
.inputreview {
	border-style:solid;
	border-width:1px;
	border-color:#cccccc;
	color:#666666;
	background-color:#F2F2F2;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:160%;
	width:420px;
	margin: 10px;
}
.bordeform {
	border: 1px solid #CCC;
	padding: 10px;
	height: auto;
	width: 612px;
	margin-left: 38px;
	margin-top: 20px;
}
.postbtn {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button_over.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:130%;
	height:30px;
	width:80px;
	padding-bottom:1px;
}
.postbtn:hover {
	border-style:solid;
	border-width:1px;
	border-color:#fff;
	color:#fff;
	background-image: url("../images/form_button.jpg");
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:130%;
	height:30px;
	width:80px;
	padding-bottom:1px;
}
.topagent {
	float:right;
	margin-right:10px;
	width: auto;
	background-color: #F5A01F;
}
.topagentpic {
	border: 1px solid #FFF;
	margin-left: 5px;
	height: 51px;
	width: 51px;
}
.topagentpic2 {
	border: 1px solid #FFF;
	margin-left: 5px;
	height: 61px;
	width: 61px;
	margin-top: 10px;
}
.review {	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	text-align: justify;
	padding: 10px;
}
.reviewby {	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #F5A01F;
	float: left;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
}
.reviewday {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: italic;
	color: #F5A01F;
	padding-left: 10px;
}
.reviewname {	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
}
.reviewtitle {	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #333;
	text-decoration: underline;
	padding: 10px;
}
#infoSubtitle {
	font-weight: bold;
	color: #949599;
	font-size: 16px;
}
#infoPrice {
	font-size: 20px;
	font-weight: bold;
	color: #F90;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 4px;
	margin-bottom: 4px;
}
#infoPriceLine {
	font-size: 20px;
	font-weight: bold;
	color: #C00;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 4px;
	margin-bottom: 4px;
	text-decoration: line-through;
}
#infoPriceSave {
	font-size: 20px;
	font-weight: bold;
	color: #F90;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 4px;
	margin-bottom: 4px;
}
#infoLine {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
	padding-top: 2px;
}
#infoContent {
	margin-top: 40px;
	margin-bottom: 6px;
	text-align:center;
}
#infoContent1 {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999;
	height: 220px;
	margin-left: 8px;
	margin-top: 6px;
	margin-bottom: 6px;
	padding-right: 8px;
}
#infoContent1 a {
	color: #666;
	text-decoration: none;
	font-weight: normal;
}
#infoContent1 a:hover {
	font-weight: normal;
	text-decoration: underline;
}
#infoContent2 {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999;
	height: 220px;
	margin-left: 8px;
	margin-top: 6px;
	margin-bottom: 6px;
	padding-right: 8px;
}
#infoContent3 {
	height: 220px;
	margin-left: 8px;
	margin-top: 6px;
	margin-bottom: 6px;
	padding-right: 8px;
}
#infoTitle {
	font-weight: bold;
	color: #333;
	padding-left: 6px;
	text-align:left;
}
#infoTitle2 {
	font-weight: bold;
	color: #F90;
		text-align:center;
}
#infoThumb {
	margin-top: 5px;
	margin-bottom: 5px;
	text-align:center;
}
#infoItems {
	font-weight: bold;
	color: #444444;
	padding-left: 6px;
	text-align:left;
}
#infoItemsTable {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999;
	margin-top: 6px;
	margin-bottom: 6px;
	float: left;
}
#infoItemsTableLarge {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999;
	margin-top: 6px;
	margin-bottom: 6px;
	padding-top: 10px;
	padding-bottom: 10px;
	float: left;
	width: 450px;
}
#infoPlanner {
	float: right;
	margin-right: 10px;
	margin-bottom: 10px;
}
#infoPics {
	border: 1px solid #333;
	height: 300px;
	width: 400px;
	text-align: center;
	margin-left: 10px;
}
#infoPics2 {
	margin-right: 10px;
	border: 1px solid #333;
	height: 300px;
	width: 225px;
	float: right;
}
#infoPicsText {
	font-weight: bold;
	margin-top: 4px;
	margin-bottom: 4px;
}
#areaText {
	text-align: justify;
}
#areaTitle {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#areaPics {
	border: 1px solid #333;
	height: 223px;
	width: 317px;
	text-align: center;
	margin-left: 10px;
}
#areaPics2 {
	margin-right: 10px;
	border: 1px solid #333;
	height: 223px;
	width: 317px;
	float: right;
}
#infoPicsText2 {
	font-weight: bold;
	margin-top: 4px;
	margin-bottom: 4px;
	margin-right: 10px;
}
#infoThumb2 {
	margin-top: 20px;
}
#infoPrice2 {
	font-size: 25px;
	font-weight: bold;
	color: #F90;
	padding-top: 20px;
	padding-bottom: 20px;
}
#infoPrice2 a:link {
	font-weight: bold;
	text-decoration: none;
	color:#F90;
	font-weight:normal;
}
#infoPrice2 a:visited {
	font-weight: bold;
	text-decoration: none;
	color:#F90;
	font-weight:normal;
}
#infoPrice2 a:hover {
	font-weight: bold;
	text-decoration: underline;
	color:#F90;
	font-weight:normal;
}
#infoPrice2 a:active {
	font-weight: bold;
	text-decoration: none;
	color:#F90;
	font-weight:normal;
}
#notAvailable {
	color: #E83131;
	background-color: #FFECEC;
	margin-top: 10px;
	margin-right: 19px;
	margin-bottom: 50px;
	margin-left: 19px;
	border: 1px solid #E83131;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
#specialNote {
	color: #000;
	margin-right: 11px;
	margin-left: 19px;
	margin-bottom: 6px;
	font-size: 11px;
}
#spLink {
	color: #F90;
	margin-top: 6px;
	margin-bottom: 6px;
}
#spLink a:link {
	text-decoration: none;
	color:#F60;
	font-weight:normal;
}
#spLink a:visited {
	text-decoration: none;
	color:#F60;
	font-weight:normal;
}
#spLink a:hover {
	text-decoration: underline;
	color:#F60;
	font-weight:normal;
}
#spLink a:active {
	text-decoration: none;
	color:#F60;
	font-weight:normal;
}
#neighbor {
	padding-left: 19px;
	padding-right: 19px;
	text-align: justify;
}
#infoNopromo {
	font-size: 25px;
	font-weight: bold;
	color: #F90;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 10px;
	margin-bottom: 30px;
}
 
#infoCaption {
	font-size: 16px;
	color: #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-left:10px;
}
#infoCaptionError {
	font-size: 21px;
	color: #C00;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 25px;
	padding: 5px 10px;
	text-align: center;
}
#infoCaptionOk {
	font-size: 21px;
	color: #0C0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 25px;
	padding: 5px 10px;
	text-align: center;
}
#infoCaptionAlert {
	font-size: 21px;
	color: #C00;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 25px;
	margin-left: 130px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#infoCaptionshort {
	font-size: 21px;
	color: #F5A01F;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 15px;
	padding: 5px 10px;
	float: left;
}
.border {
border-style:solid;
border-width:1px;
border-color:#cccccc;color:#666666;
background-color:#F2F2F2;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:160%;
height:20px;
width:320px;
}
.borders {
border-style:solid;
border-width:1px;
border-color:#cccccc;
color:#666666;
background-color:#F2F2F2;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:160%;
height:130px;
width:320px;
}
.line {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	padding-top: 2px;
	padding-bottom: 2px;
	margin-top: 16px;
	margin-bottom: 16px;
}
.formborder {
border-style:solid;
border-width:1px;
border-color:#fff;
color:#fff;
background-image: url("../images/form_button_over.jpg");
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
line-height:130%;
height:30px;
width:89px;
padding-bottom:1px;
}

.formborder:hover {
border-style:solid;
border-width:1px;
border-color:#fff;
color:#fff;
background-image: url("../images/form_button.jpg");
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
line-height:130%;
height:30px;
width:89px;
padding-bottom:1px;
}
.bordeform {
	border: 1px solid #CCC;
	padding: 10px;
	height: auto;
	width: 600px;
	margin-left: 50px;
}
.notextfiel {
	color: #F90;
	border-width: 0px;
	width: 360px;
}
.transpa {
background-color: transparent;
border: 1px solid #000000;
}
.getValue {
	margin-left: 10px;
}
.notextfielLarge {
	color: #F90;
	border-width: 0px;
	width: 360px;
}
#lgTitle {
	margin-top: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #F5A01F;
	padding-top: 5px;
	padding-bottom: 5px;
}
#lgAddress {
	margin-bottom: 10px;
	color: #333;
	padding-top: 5px;
	padding-bottom: 5px;
}
#lgBroker {
	font-size: 14px;
	font-weight: bold;
	color: #333;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
}
 
 
 /* 
  -----------------------------------
  Elevator Panels
  by Project Seven Development
  www.projectseven.com
  Style Theme: 02 - Charcoal
  -----------------------------------
*/
.p7EPM02 {
	padding-bottom:20px;
	border: 1px solid #000;
}
.p7EPM02 .p7epm_trigs {
	overflow: hidden;
}
.p7EPM02 .p7epm_trigs ul {
	margin: 0px;
	padding: 0px;
	margin-left:45px;
}
.p7EPM02 .p7epm_trigs li {
	list-style-type: none;
	padding-bottom: 6px;
	padding-top: 6px;
	margin-left: 2px;
	float: left;
}
.p7EPM02 .p7epm_trigs a {
	color: #333333;
	padding: 4px 7px;
	line-height: 1.5em;
	display: block;
	text-decoration: none;
	background-color: #FFFFFF;
	border: 1px solid #333333;
	float: left;
}
.p7EPM02 .p7epm_trigs a:hover {
	color: #F90;
}
.p7EPM02 .p7epm_cwrapper {
	border: 1px solid #333333;
	border-bottom: 0;
}
.p7EPM02 .p7epm_content {
	padding: 12px 12px;
	border: 0;
	color: #666;
}
.p7EPM02 .p7epm_content.pan1 {}
.p7EPM02 .p7epm_content.pan2 {}
.p7EPM02 .p7epm_content.pan3 {}
.p7EPM02 .p7epm_content.pan4 {}
.p7EPM02 .p7epm_content.pan5 {}
.p7EPM02 .p7epm_trigs .p7epm_open {
	color: #000000 !important;
	background-color: #F90;
}
.p7EPM02 .p7epm_trigs .t1 .p7epm_open {}
.p7EPM02 .p7epm_trigs .t2 .p7epm_open {}
.p7EPM02 .p7epm_trigs .t3 .p7epm_open {}
.p7EPM02 .p7epm_trigs .t4 .p7epm_open {}
.p7EPM02 .p7epm_trigs .t5 .p7epm_open {}
.p7EPM02 .p7epm_ie5clear {
	font-size: 0;
	height: 0;
	line-height: 0.0;
}

#p7EPMt_1 ul{
	text-align:center;
	
}

 

