@charset "utf-8";
body  {
	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: #3b3a3a;
	background-color: #99b7d6;
	background-image: url(../images/bg_02.jpg);
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
}

a:link {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	text-decoration: none;
	color: #000000;
	font-weight: bold;

}
a:hover {
	text-decoration: none;
	color: #666666;
	font-weight: bold;

}
a:active {
	text-decoration: none;
	color: #000000;
	font-weight: bold;

}
/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 11px;
	cursor: default;
	width: auto;
	font-weight: bold;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 105px;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 10em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 10em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #688970;
	color: #FFFFFF;
	text-decoration: none;
	padding-top: 1em;
	padding-right: 0.75em;
	padding-bottom: 1em;
	padding-left: 0.75em;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #333333;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	color: #333333;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}


/* SpryCollapsiblePanel.css - version 0.5 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
	border-left: solid 1px #CCC;
	border-right: solid 1px #999;
	border-top: solid 1px #999;
	border-bottom: solid 1px #CCC;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	border-bottom: solid 1px #CCC;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 0px;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	color: black;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #EEE;
}

/* This is an example of how to change the appearance of the panel tab when the
 * CollapsiblePanel is closed. The "CollapsiblePanelClosed" class is programatically added and removed
 * whenever the CollapsiblePanel is closed.
 */

.CollapsiblePanelClosed .CollapsiblePanelTab {
 /* background-color: #EFEFEF */
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #FFFFFF;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #FFFFFF;
}
/*****************************end menu items*/


.container {
	width: 950px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 



#header {
	height: 150px;
	background-color: #cbd8e5;
	background-image: url(../images/header1.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
} 
#logo {
	width: 250px;
	float: left;
	position: relative;
	top: 75px;
	left: 25px;
}
#headcontact {
	text-align: right;
	top: 60px;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.4em;
	right: 10px;
	margin-left: 300px;
	position: relative;
}


#RtTable {
	float: right;
	width: 200px;
	text-align: center;
}
#headcontact p {
	margin: 0px;
}

#navbar {
	background-color: #688970;
	height: 35px;
	border-top-width: 5px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding-left: 10px;
}
#containerContent {
	width: 930px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-left: 10px;
	padding-right: 10px;
	background-color: #FFFFFF;
	overflow: hidden;
}
#homeTextBg {
	background-image: url(../images/HomeTextBg.jpg);
	background-repeat: repeat-y;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}



#hometext {
	background-color: #d2cbb9;
	padding-right: 10px;
	padding-left: 10px;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
.sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 565px;
}
.rightContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 565px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#blueboxContainer {
	background-color: #FFFFFF;
}


#blueboxContainer a:link {
	color: #FFFFFF;
	text-decoration: none;
}
#blueboxContainer a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
#blueboxContainer a:hover {
	text-decoration: none;
	color: #333333;
}
#blueboxContainer a:active {
	text-decoration: none;
	color: #FFFFFF;
}
.bluebox {
	background-color: #778da4;
	height: 82px;
	margin-bottom: 10px;
	color: #FFFFFF;
}
td {
	font-size: 1.2em;
}

h2 {
	font-size: 1.1em;
}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
}
.pad10bot {
	padding-bottom: 10px;
}
.padleft15 {
	padding-left: 15px;
}

.padright15 {
	padding-right: 15px;
}
#featuretitle {
	height: 25px;
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 1em;
	background-image: url(../images/feature_title_06.jpg);
	background-repeat: repeat-y;
	clear: both;
	color: #FFFFFF;
	text-align: center;
}
#featuretitle h3 {
	font-size: 13px;
	color: #FFFFFF;
	margin: 0;
}

#featureMid {
	background-image: url(../images/feature_middle_09.jpg);
	background-repeat: repeat-y;
	overflow: hidden;
}
#featureBot {
	background-image: url(../images/feature_title_06.jpg);
	background-repeat: repeat-y;
	overflow: hidden;
	text-align: right;
	height: 32px;
	margin-bottom: 10px;
}
#links {
	clear: both;
	overflow: hidden;
}



#footer {
	padding: 0 10px 0 20px;
	background-color: #cbd8e5;
	border-top-width: 20px;
	border-top-style: solid;
	border-top-color: #778da4;
} 
#footerleft {
	text-align: left;
	float: left;
	width: 525px;
	overflow: hidden;
}
#footerright {
	text-align: right;
	margin-left: 530px;
}


#footer p {
	font-size: 1.1em;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 1pt;
	margin-left: 0;
}
.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;
}
#SecndConWrap {
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	background-image: url(../images/2ndlevelbg.gif);
	background-repeat: repeat-y;
	overflow: hidden;
}




#LeftNav {
	width: 220px;
	text-align: center;



	line-height: 2
.em;
	padding-top: 12px;
	padding-bottom: 12px;
	line-height: 2em;
	float: left;
	font-weight: bold;
}
#LeftNav a:link {
	color: #2c2c2c;
	text-decoration: none;
	font-weight: bold;
}
#LeftNav a:visited {
	color: #2c2c2c;
	text-decoration: none;
	font-weight: bold;

}
#LeftNav a:hover {
	color: #999999;
	font-weight: bold;
	text-decoration: none;
}
#LeftNav a:active {
	color: #2c2c2c;
	text-decoration: none;
	font-weight: bold;

}


#LeftNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 1.2em;
	line-height: 30pt;
}




#LeftNav p {
	margin: 0px;
}
#PropHeader {
	background-color: #778da4;
	color: #FFFFFF;
	clear: both;
	overflow: hidden;
	padding-bottom: 5px;
}
#PropHeaderLeft a:link {
	color: #778DA4;
	text-decoration: none;
}
#PropHeaderLeft a:visited {
	color: #778DA4;
	text-decoration: none;
}
#PropHeaderLeft a:hover {
	color: #778DA4;
	text-decoration: none;
}
#PropHeaderLeft a:active {
	color: #778DA4;
	text-decoration: none;
}



#PropHeaderLeft {
	width: 650px;
	float: left;
	padding-top: 10px;
	padding-left: 10px;
	font-weight: bold;
}
#PropHeaderRt {
	margin-left: 660px;
	text-align: right;
	padding-top: 5px;
	font-size: 1.3em;
	font-weight: bold;
	margin-top: 10px;
	padding-right: 5px;
}
#PropMainLeft {
	float: left;
	width: 365px;
	padding-top: 10px;
}
#PropMainLeft p {
	font-size: 1.3em;
}

#PropMainRt {
	margin-left: 375px;
	width: 555px;
	padding-top: 10px;
}
form {
	padding-left: 10px;
	border: thin solid #CCCCCC;
	padding-right: 10px;
}




#mainContent {
	margin-left: 224px;
}
#mainContent h2 {
	font-size: 1.4em;
}
#mainContent h3 {
	font-size: 1.1em;
}
#mainContent td {
	font-size: 1
.em;
	font-size: 1.1em;
}
#PropFooter {
	background-color: #cad7cd;
	overflow: hidden;
	margin-bottom: 10px;
	clear: both;
}


#PropFooterLeft {
	float: left;
	width: 365px;
	padding-left: 10px;
	padding-top: 20px;
}
#PropFooterLeft p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-weight: bold;
}


#PropFooterRt {
	margin-left: 375px;
	padding-left: 20px;
	padding-right: 10px;
	margin-top: 20px;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
}
#marketReport {
}
#marketReport p {
	margin: 0px;
	font-size: 1em;
}
.pad10topbot {
	padding-bottom: 10px;
	padding-top: 10px;
}
#marketReport a:link {
	color: #2c2c2c;
	text-decoration: none;
	font-weight: normal;
}
#marketReport a:hover {
	color: #999999;
	text-decoration: none;
	font-weight: bold;
}

.PropListingContainer {
	width: 650px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #cad7cd;
	overflow: auto;
	padding-bottom: 2px;
}
.PropListingPic {
	float: left;
}
.PropListingDetail {
	margin-top: 0px;
	margin-left: 210px;
	padding-right: 5px;
}

#LeftCol  {
	float: left; /* since this element is floated, a width must be given */
	width: 220px;
	border-right-width: 4px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	height: 100%;
	background-color: #FFFFFF;
}



#LeftColNavBox {
	width: 220px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #D4DBAF;
	text-align: center;




	line-height: 2
.em;
	padding-top: 12px;
	padding-bottom: 12px;
	line-height: 2em;
	background-color: #FFFFFF;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #D4DBAF;
	margin-top: 5px;
}
#LeftColNavBox p {
	margin-top: 2px;
}

#LeftColNavBox a:link {
	color: #333333;
	text-decoration: none;
}
#LeftColNavBox a:visited {
	color: #333333;
	text-decoration: none;
}
#LeftColNavBox a:hover {
	color: #999999;
	text-decoration: none;
}
#LeftColNavBox a:active {
	color: #333333;
	text-decoration: none;
}

#LeftColContactBox {
	width: 220px;
	background-color: #FFFFFF;
	text-align: center;
	height: 190px;
}
#LeftColContactBoxHeadleft                {
	width: 100px;
	text-align: left;
	padding-left: 5px;
	height: 25px;
	padding-top: 5px;
	float: left;
}

#LeftColContactBoxHeadlRt {
	width: 115px;
	height: 30px;
	margin-left: 105px;
}






#RtCol  {
	margin-left: 224px;
	height: 100%;
	padding-left: 20px;
} 
#mainContent li {
	font-size: 1.2em;
}
.schoolhead {
	text-transform: uppercase;
}
.underline {
	text-decoration: underline;
}

