/* Master CSS Document */body {	font: 100% Verdana, Arial, Helvetica, sans-serif;	background: #666666;	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */	padding: 0;	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */	color: #000000;}.oneColLiqCtrHdr #container {	width: 960px;  /* this will create a container 80% of the browser width */	background: #FFFFFF;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	border: 1px solid #000000;	text-align: left; /* this overrides the text-align: center on the body element. */}.oneColLiqCtrHdr #header {	background: #DDDDDD; 	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */	margin: 0;	border-bottom: 1px solid white;}.oneColLiqCtrHdr #header h1 {	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */}.oneColLiqCtrHdr #mainContent {	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	background: #FFFFFF;}.oneColLiqCtrHdr #footer {	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */	background:#DDDDDD;} .oneColLiqCtrHdr #footer p {	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */}/* two column layouts */.twoColElsLtHdr #container { 	width: 960px;  /* this width will create a container that will fit in an 1024px browser window if text is left at browser default font sizes */	background: #FFFFFF;	background-image: url("/images/sidebarleft.png");	background-position: top left;	background-repeat: repeat-y;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	border: 1px solid #000000;	text-align: left; /* this overrides the text-align: center on the body element. */} .twoColElsLtHdr #header { 	background: #DDDDDD; 	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */	margin: 0;	border-bottom: 1px solid white;} .twoColElsLtHdr #header h1 {	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */	margin: 0;}/* Tips for sidebar1:1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the '.twoColElsLtHdr #sidebar1 p' rule.*/.twoColElsLtHdr #sidebar1 {	float: left; 	width: 12em; /* since this element is floated, a width must be given */	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 0; /* top and bottom padding create visual space within this div */	margin: 0;}.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */	margin-right: 10px;}/* Tips for mainContent:1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent 'hasLayout.' This avoids several IE-specific bugs that may occur.*/.twoColElsLtHdr #mainContent {	margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */} .twoColElsLtHdr #footer { 	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */	background:#DDDDDD;} .twoColElsLtHdr #footer p {	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */}/* three column layouts */.thrColElsHdr #container { 	width: 960px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */	background: #FFFFFF;	background-image: url("/images/sidebarleft.png");	background-position: top left;	background-repeat: repeat-y;	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */	border: 1px solid #000000;	text-align: left; /* this overrides the text-align: center on the body element. */} .thrColElsHdr #header { 	background: #DDDDDD; 	border-bottom: 1px solid white;	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */	margin: 0;} .thrColElsHdr #header h1 {	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */}.thrColElsHdr #sidebar1 {	float: left; 	width: 11em; /* since this element is floated, a width must be given */	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 0px 0; /* top and bottom padding create visual space within this div */	margin: 0;}.thrColElsHdr #sidebar2 {	float: right; 	width: 11em; /* since this element is floated, a width must be given */	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 0px 0; /* top and bottom padding create visual space within this div */	margin: 0;}.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */	margin-right: 10px;}.thrColElsHdr #mainContent { 	margin: 0 12em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */} .thrColElsHdr #footer { 	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */	background:#DDDDDD;} .thrColElsHdr #footer p {	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */}/* thrColElsHdr Public pages custom css */.thrColElsHdr #pubsidebar2 {	float: right; 	width: 20em; /* since this element is floated, a width must be given */	background:white; /* the background color will be displayed for the length of the content in the column, but no further */	padding: 0px 0; /* top and bottom padding create visual space within this div */	margin: 0;}.thrColElsHdr #pubmainContent { 	margin: 0 21em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */} /* Miscellaneous classes for reuse */.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */	float: right;	margin-left: 8px;}.fltlft { /* this class can be used to float an element left in your page */	float: left;	margin-right: 8px;}.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */	clear:both;    height:0;    font-size: 1px;    line-height: 0px;}.panelitem{	font: 0.7em sans-serif;	margin: 8px 4px;	padding: 0px;}.text_counter{	font: 0.7em sans-serif;}.SpryHiddenRegion{	visibility:hidden;}.SpryListItem{	cursor: pointer;}.SpryListItemSelected{	background-color: #CCCCCC;}.SpryListItemHover{	background-color: #FFFFCC;}.googlenews{	font: 0.7em sans-serif;}.yahoonews{	font: 0.7em sans-serif;}.newspanelitem{	font: 0.7em sans-serif;	border-bottom: solid 1px #CCC;	margin: 5px;	padding: 5px;}.tooltip{	display: none;	background-color: #FFFFCC;	border: 1px solid #666666;	padding: 4px;	width: 300px;}.formlabel{	display: block;	float: left;	width: 150px;	text-align: right;	padding: 4px 4px;}.fielderror{	color: #CC3333;	font: 0.7em sans-serif;}#formregion{	font: 0.9em sans-serif;}#formregion input, select{	margin-bottom: 5px;	margin-left: 4px;}#formregion span, div{	padding: 0px 0px;	margin: 4px 0px 4px 0px;}.displaylabel{	display: block;	float: left;	width: 150px;	text-align: right;	padding: 4px 4px;}.displayregion{	font: 0.9em sans-serif;}.displayregion div, span{	padding: 4px;}.pictureframe{	background-color: white;	position: absolute;	width: 430px;	height: 340px;	left: 50%;	top: 50%;	margin-left: -215px;	margin-top: -170px;	border: 1px solid #000000;	display:none;	cursor: pointer;}.pictureimage{	border: 1px solid #CCCCCC;}#checkboxgroup input, fieldset{	margin-bottom: 1px;	font: 0.8em sans-serif;}.pagedlist_status{	font: 0.7em sans-serif;}#condo_addedit_map{	border: 1px solid black;	width : 700px;	height: 400px;}#condo_addedit_map div{	padding: 0px;	margin: 0px;}#condo_addedit_preview{	width: 650px;	height: 650px;	border: 0px;}#caedit_map{	border: 1px solid black;	width : 700px;	height: 400px;}#caedit_map div{	padding: 0px;	margin: 0px;}#caedit_preview{	width: 650px;	height: 650px;	border: 0px;}#condo_browse_map{	visibility: hidden;	border: 1px solid black;	width : 500px;	height: 500px;}#condo_browse_map div{	padding: 0px;	margin: 0px;}#condo_browse_info{	font: 0.8em sans-serif;	background: white;	border: 1px solid #CCCCCC;	position: absolute;	visibility: hidden;}#FilterPanel{	width: 210px;	float: right;	visibility: hidden;}#FilterPanel input, label, select{	padding: 0px 0px 0px 0px;	margin: 3px 0px 0px 0px;}#FilterPanel dd{	margin-left: 17px;	display: inline;}.listing_radiogroup input{	vertical-align:middle;	margin: 0px 0px;}#condo_browse_table{	width: 100%;	border-collapse: collapse;	font: 0.8em sans-serif;	border: none;}#condo_browse_table td{	padding: 5px;}#condo_browse_table th{	padding: 5px;	background-color: #003366;	color: #FFFFFF;}.condo_browse_table_datarow td{	border-bottom: 1px dashed #CCCCCC;}#condo_browse_table_name{	color: rgb(222,110,47);	font-size: 16px;	font-weight: 900;}#condo_browse_table_address{	color: #777777;	font-size: 0.9em;}.condo_browse_table_detail{	color: black;}#condolist_controls{	width: 100%;	visibility: hidden;	font: 0.8em sans-serif;}#condolist_controls_bottom{	width: 100%;	visibility: hidden;	font: 0.8em sans-serif;}#condolist_info_name{	font-weight: 900;}#condolist_info_image{	border: 1px solid black;}#condolist_info_address{	font: 0.8em sans-serif;	color: #777777;	vertical-align: top;}#condolist_info_type{	font: 0.8em sans-serif;	color: red;}#condolist_info_profile {	font: 0.8em sans-serif;	cursor: pointer;}#condolist_info_zoomin{	font: 0.8em sans-serif;	cursor: pointer;}#condolist_info_favorite{	font: 0.8em sans-serif;	cursor: pointer;}#condo_alerts{	font: 0.8em sans-serif;}#servinfo_name{	font-weight: 900;}#servinfo_addr{	font: 0.8em sans-serif;	color: #777777;	vertical-align: top;}#google_results{	font: 0.8em sans-serif;}#servinfo_website{	font: 0.9em sans-serif;	color:#0000FF;}#servinfo_ratings{	font: 0.8em sans-serif;	color: #777777;	vertical-align: top;}#result_servinfo{	width: 100%;	border-style: inset;	border: none;	border-bottom: 1px dashed #CCCCCC;}#result_servinfo td,th{	padding: 5px;}#ratings_template_row{	width: 100%;	padding: 5px;	border-style: inset;	border: none;	border-bottom: 1px dashed #CCCCCC;}#ratings_header{	font-weight: 900;}#ratings_resp_header{	color: #CC0000;	font-weight: 900;}.form_table{	border-collapse: collapse;	font: 0.8em sans-serif;	border: none;	background-color:#EEEEEE;}.form_table td{	padding-top: 5px;	padding-bottom: 5px;	padding-left: 5px;	padding-right: 15px;}.form_table th{	background-color: #455c88;	color: white;	font-size: 16px;	font-weight: 900;}.form_label{	text-align: right;	font-weight: 900;}.form_data{	text-align: left;	padding: 10px;}.form_data_center{	text-align: center;}.form_data_right{	text-align: right;}.form_table_tight{	border-collapse: collapse;	font: 0.8em sans-serif;	border: none;	background-color:#EEEEEE;}.form_table_tight td{	padding-top: 1px;	padding-bottom: 1px;	padding-left: 2px;	padding-right: 5px;}.form_table_tight th{	background-color: #455c88;	color: white;	font-size: 16px;	font-weight: 900;}.tos{	background-color: white;	height:300px;	overflow:auto;}.footerlink{	color: blue;	text-decoration: none;	font-size: 12px;	cursor:pointer;}.footerlink:hover{	color: rgb(222,110,47);}.dashed_separator{	border-bottom: 1px dashed #CCCCCC;}.frontpage{	font-size:12px;	margin: 0;	padding: 0;}.frontpage h3{	font-size: 1.1em;	font-weight: 900;	color: #444444;	margin: 3px 0px;}.frontpage p{	margin: 0; 	text-align: justify;	line-height: 1.4em;}#condo_browse_link{	text-decoration: none;}#condo_browse_link img{	border: none;}#bblist{	font-size: 14px;}#bbpanel{	background-color: white;	position: absolute;	width: 500px;	height: 400px;	left: 50%;	top: 50%;	margin-left: -250px;	margin-top: -200px;	border: 1px solid #000000;	display:none;	cursor: pointer;	font-size: 16px;}#modalBackground{	margin: 0;	padding: 0;	position: absolute;	left: 0;	top: 0;	width: 100%;	height: 100%;	display: none;	background-color: black;}.SI-FILES-STYLIZED label.docs_upload{	width: 150px;	height: 20px;	background: url(/images/updoc_off.png) 0 0 no-repeat;	display: block;	overflow: hidden;	cursor: pointer;	position: relative; /* fixes MSIE 7 bug */}.SI-FILES-STYLIZED label.docs_upload input.docs_file{	position: relative;	height: 100%;	width: auto;	opacity: 0;	-moz-opacity: 0;	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);}#dochelp{	border: 1px solid #000000;	background-color: white;	height:200px;	overflow:auto;	display:none;}.mainmenulink{	color: blue;	font-size: 16px;	cursor:pointer;}.mainmenulink:hover{	color: rgb(222,110,47);}