@charset "utf-8";
body {
	font: 11px/1.2 Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	font-size:14px;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#20c; /*#0D5DA8;*/
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #20c; /*#4E5869;*/
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #FF0000; /*#4E5869;*/
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1024px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	border: solid 0px red;
	overflow: hidden;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {float:left;position: relative; background:transparent url(./images/top_head.png) repeat-x bottom left; width:100%; padding: 10px 0px 0px 0px;}
.logo {float:left;position: relative; padding:0px margin:0px;}

.searchbox { }
.searchbox input {height: 20px;}
.searchbox select {height: 20px;}


.sidebar1 {
	float: left;
	width: 98%;
	border: solid 1px #9BC1F0;
	border-left: 0px;
	padding: 10px 10px 10px 0px;

	background: #E3EEFB; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#E3EEFB'); /* for IE */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#E3EEFB'); /* for IE */";
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E3EEFB)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #FFFFFF,  #E3EEFB); /* for firefox 3.6+ */
}

.sidebar2 {
	float: left;
	width: 98%;
	padding: 10px 0px 0px 10px;
	border: solid 1px #9BC1F0;
	border-right: none; 

	background: #E3EEFB; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#E3EEFB'); /* for IE */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#E3EEFB'); /* for IE */";
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E3EEFB)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #FFFFFF,  #E3EEFB); /* for firefox 3.6+ */
}


.content {
	float: left;
	margin:0px 0px 0px 0px;
	
	font: 11px/1.2 Verdana, Arial, Helvetica, sans-serif;
	padding: 10px 15px 10px 10px;
	width: 60%;
/*	border: solid 1px red; */
}

.content_detail {
	float: left;
	margin:0 auto;
	font: 11px/1.2 Verdana, Arial, Helvetica, sans-serif;
	padding: 10px 0px 10px 0px;
	width: 730px;
	border: solid 0px green;
}

.content h1 {font-size:16px;margin:0px; padding:5px;}
.sidebar1 h3 {font-size: 14px; margin:0px; padding: 0px;}
.sidebar2 h3 {font-size: 14px; margin:0px; padding: 0px;}

.navtop{
	float: left;
	position: relative;
	margin:0px 0px -1px 220px;  
	padding: 0px 11px 0px 0px; 
	width: 730px;
	height: 30px; 
	background:#81B5DC; 
	border: solid 1px #26608A; 
	border-bottom:none;
	clear: both;
}

.nav_foot_center {
	float: left;
	margin: 0 auto;
	position: relative;
	margin:0px 0px -1px 185px;  
	padding: 0px 11px 0px 0px; 
	width: 60%;
	height: 25px; 
	background:#81B5DC; 
	border: solid 1px #26608A; 
	border-top:none;
	clear: both;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background: #8090AB;
	color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #6F7D94;
	color: #FFF;
}

ul.dir {
	float: left;
    margin:0 auto; 
	width: 100%;
	list-style: none; /* this removes the list marker */
	margin-left:8px;
	padding: 0px;
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	border: solid 0px #000;
	font-size: 10px;
}
ul.dir li {
	text-decoration: none;
    float:left;
	width: 32%;
	margin-bottom: 3px ; /* this creates the button separation */
	border: solid 0px #000;
}

ul.dir li a {
	text-decoration: none;
}



/* ~~The footer ~~ */

.footer {
	padding: 10px 0;
	/*background: #6F7D94;*/
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

.copyright {margin:0 auto;	padding: 10px 0; text-align: center;}
.linkfooter {float:left; position: relative; margin:10px 0px 10px 10px; width:98%; color:#ffffff;text-align: left;}
.linkfooter a {color:#ffffff;font-weight: bold;;}
.linkfooter a:hover{color:yellow;font-weight: bold;;}

/* ~~miscellaneous float/clear classes~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.shadow {
	-moz-box-shadow: 3px 3px 4px #acacac;
	-webkit-box-shadow: 3px 3px 4px #acacac;
	box-shadow: 3px 3px 4px #acacac;
	/* For IE 8 */
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#acacac', positive=true)";*/
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#acacac', positive=true);
	border: solid 1px #ACACAC;
}

.paginate {margin:5px; padding:5px; text-align: center;clear: both;}
.paginate span{border: solid 1px #20c;padding:3px; margin:3px;font-weight:bold;text-decoration: none;}
.paginate a{text-decoration: none;}
.paginate a:hover{text-decoration: underline;}

#navcontainer {position: relative;margin:0 auto; width: 100%; height: 26px; border-bottom:solid 3px #3179AF;clear: both;}
#navcontainer ul {
	border: solid 0px red;
	padding: 0px;
	margin: 0px auto;
	clear:both;
	font-size: 12px;
	font-weight: normal;
	list-style-type: none;
	height: 20px;
}

#navcontainer ul li {
	padding: 0px;
	margin: 0 auto;
	cursor: pointer;
	display: inline;


}
#navcontainer ul li a {
	background:#DBEAF3 url(./images/tab_default.png) repeat-x top; height: 20px;
	padding: 0.2em 1em;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
	float: left;
	margin-left:8px;
	border: solid 1px #92ADD1;
	border-bottom: none;
	cursor: pointer;	margin-bottom:-3px;
}

#navcontainer ul li a:hover {
	background:#E1F1FE url(./images/tab_hover.png) repeat-x top; height: 20px;
	color: #000;
	border-bottom: none;	margin-bottom:-3px;
}
#navcontainer li a#current {
	background:#3179AF url(./images/tab_active.png) repeat-x top; height: 22px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	margin-bottom:-3px;
}

.s_shadow {
	-moz-box-shadow: 3px 3px 4px #acacac;
	-webkit-box-shadow: 3px 3px 4px #acacac;
	box-shadow: 3px 3px 4px #acacac;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#acacac')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#acacac');
	border-bottom: solid 1px #ACACAC;
}

.flags {float:right; position: relative;margin:5px 10px 10px 0px; padding:0px;}
.flag img{padding:5px;margin-right: 5px; border: solid 1px #acacac;}

/*
.flag {float:right; margin:0 auto; padding:0px;position: relative; margin: 2px 0px 0px 12px;}
.flag:hover {margin: 0px -2px -2px 12px;border: solid 0px #0D5DA8;}
*/
.f_shadow {
	-moz-box-shadow: 2px 2px 3px #112B3E;
	-webkit-box-shadow: 2px 2px 3px #112B3E;
	box-shadow: 2px 2px 3px #112B3E;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#acacac')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#acacac');
	border-bottom: solid 1px #112B3E;
	border: solid 1px #acacac;
	margin: 10px 3px -8px 3px;
}

.p {margin:0px; padding: 2px 0px 2px 0px; font-size: 11px;}
.text_property {text-align:left;padding-left:5px;}
.price {font-size:16px;color:green;margin-top:0px;font-weight: bold;}

.detail_div_left {float:left; width:90px; text-align: left; margin-right: 10px; margin-bottom:5px;}
.detail_div_right {float:left; width:150px; text-align:left; margin-bottom:5px; font-weight: bold;}

/*
.refine_search div{background-color: #E3EEFB;	border: solid 0px #0D5DA8;}
*/
#refine_search {float:left;margin-left:5px; padding:0px;}*/

.refine_select{width:155px;padding-left: 3px;}
.refine_input{width:55px;}
.refine_input_2{width:140px;}
.refine_submit{font-size:14px;font-weight: bold; padding: 3px;}
.refine_search h3{font-size:14px;font-weight: bold; padding:10px 10px 0px 10px;}
.refine_p{margin:0 auto; padding:10px 10px 0px 10px; font-size:10px;}
.filter_title {font-size:10px;clear: both;}

hr.thin {float: left; margin:5px auto 6px 0px;height: 1px; border: 0;	color: #acacac;	background-color: #acacac;	width: 100%; clear: both;}

/*** ToolBox****/

.thumbs img{
	max-width: 390px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	max-height: 280px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */

	min-width: 200px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-height: 100px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
}

/*.indexbox table, tr, td, th{float:left; font-size:10px;margin-top:0px;font-weight: normal;}*/

.listing_types {position: relative; padding:3px 0px 10px 5px; border-bottom: solid 1px #acacac;}
.listing_types h3{font-size: 12px; margin:0px 0px 5px 0px; padding: 0px;}
.property_types {position: relative; padding:3px 0px 10px 5px; border-bottom: solid 0px #acacac; clear: both;}
.property_types h3{font-size: 12px; margin:0px 0px 5px 0px; padding: 0px;}

/* ~~The Nearby ~~ */

ul.nearby {
	float: left;
	list-style: none; /* this removes the list marker */
	margin:0px;
	padding: 0px;
	border-bottom: solid 1px #acacac;
	width: 100%;
	height: 35px;
	clear: both;
}

ul.nearby li {
    float:left;
	margin-top: 8px ; /* this creates the button separation */
	text-decoration: none;
	display: inline;
}

ul.nearby li a {
	text-decoration: none;
}
.near_by {float:left;margin-bottom:10px; width: 100%; clear: both;}
.near_by h3{margin:0px 0px 10px 0px; padding:0px; font-size:14px; clear:both;}
.near_by_head {background:#efefef; border-top: solid 1px #acacac; font-weight: bold;}
.n_r1 {width:260px; padding-left:5px;font-weight: bold;}
.n_r2 {width:100px;margin-left:5px;}
.n_r3 {width:30px;margin-left:15px;}
.n_r4 {width:30px;margin-left:15px;}
.n_r5 {width:30px;margin-left:15px;text-align:center;}
.n_r6 {float:right; text-align:right; width:80px;margin-left:5px;}
.r_p7 {float:right; text-align:right;  width:85px;margin-left:5px; font-weight: bold; color: green;}

.searchlist {
	margin:0 auto;
	padding:5px; 
	width:99%; 
	height:95px;
	border: solid 1px #ffffff; 
	border-bottom: solid 1px #acacac; 
	clear: both;
}
.searchlist:hover {
	background-color: #E3EEFB;
	border: solid 1px #0D5DA8;
	margin:0 auto;
	padding:5px;
	width: 99%;
	height:95px;
	clear: both; 
}

.s_r1 {float:left;position: relative; width: 125px; height: 95px; margin-right:10px;}
.s_r2 {float:left; position: relative; width:55%; margin:0px; margin-right:5px; padding:0px;}
.s_r3 {float:right;position: relative; width:100px; height: 60px; text-align: right;}
.s_r4 {float:right; position: relative; margin-top:8px;width:76%; padding:0px;}
.s_img {float:left;width: 120px; height:90px;}
.s_title {font-weight:bold;text-decoration: none;}

.s_nr21 {float:left; position: relative;margin:0 auto; padding: 0px; padding-top:5px; width:115px; height: 20px;}
.s_nr22 {float:left; position: relative;margin:0 auto; padding: 0px; padding-top:5px; width:110px; height: 20px;}
.s_nr23 {float:left; position: relative;margin:0 auto; padding: 0px; padding-top:5px; width:90px; height: 20px;}

div.ListStyle>ul {
    float:left;position: relative;width:98% list-style-type: none; margin:0px; padding: 0px; border: solid 1px red;
}
div.ListStyle>ul>li {
    float:left;position: relative;display:inline;
}

div.ListStyle>ul>li>div {
    float:left;position: relative;  border: solid 1px green;
}
div.clear {
    clear: both;
}
