/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/provincetownrealestate.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 7026 $
$LastChangedDate: 2010-03-22 14:15:22 -0400 (Mon, 22 Mar 2010) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

html,
body
{
    height: 100%;
}

body
{
	background: #6699cc url(../images/background.gif) repeat-y;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4
{
	font-family: 'Times New Roman', Times, serif;
	color: #003366;
	font-weight: normal;
}

h1
{
	font-size: 2em;
	margin-bottom: 0.5em;
	line-height: 1em;
}

h2
{
	font-size: 1.75em;
	margin-bottom: 0.25em;
	line-height: 1em;
	color: #486682;
}

h3
{
	font-size: 1.5em;
	margin-bottom: 0.1em;
	line-height: 1em;
}

h4
{
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1em;
}

.clear
{
	clear: both;
}

.imgRight
{
	float: right;
	margin: 0 0 10px 20px;
}

.imgLeft
{
	float: left;
	margin: 0 20px 10px 0;
}

.noBorder
{
	border: 0;
}

.noStyles
{
	display: none !important;
}

.noMargin
{
	margin: 0 !important;
}

.hr
{
	height: 2px;
	width: 100%;
	display: block;
	background: #ccc;
}

.noBorder
{
	border: 0 !important;
}

/* Text selection color */

::-moz-selection{
	background:#6699CC;
	color:#fff;
}

::selection {
	background:#6699CC;
	color:#fff;
}

/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
    position: relative;
    min-height: 100%;
    margin: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	line-height: 1.4em;
}

/* Layout Tables */

table.layoutTable
{
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.leftColumn,
.rightColumn
{
	vertical-align: top;
}

table.layoutTable .leftColumn
{
	width: 750px;
}

table.layoutTable .rightColumn
{
	width: 230px;
	padding: 10px 0px 10px 20px;
}

/* Page top. */

#pageTop
{
	background: #003366;
	display: block;
	color: #fff;
}

#pageTop .logoLink
{
	display: block;
	height: 220px;
	width: 750px;
	background: url(../images/headers/rotator.php) top left no-repeat;
}

#pageTop .tagline
{
	position: absolute;
	top: 125px;
	left: 25px;
	font-size: 1.55em;
	font-weight: bold;
	text-shadow: #000 1px 1px 5px;
	*height: 40px;
	*font-size: 1.25em;
	*left: 50px;
	_left: 25px;
	_font-size: 1.55em;
}

#pageTop .tagline sup
{
	font-weight: bold;
	font-size: 0.6em;
}

#pageTop table.layoutTable .rightColumn
{
	font-size: 0.9em;
	line-height: 1.45em;
}

#pageTop table.layoutTable .rightColumn .address .name,
#pageTop table.layoutTable .rightColumn a
{
	font-weight: bold;
	color: #fff;
}

#pageTop table.layoutTable .rightColumn .address .name
{
	font-size: 1.1em;
}

#pageTop table.layoutTable .rightColumn .address
{
	border-bottom: 2px solid #144686;
	padding-bottom: 8px;
	margin-bottom: 8px;
}

#pageTop table.layoutTable .rightColumn a:hover
{
	text-decoration: none;
}

#pageTop table.layoutTable .rightColumn ul
{
	list-style-type: none;
}

#pageTop table.layoutTable .rightColumn li.br
{
	height: 8px;
	*display: none;
}

#pageTop table.layoutTable .rightColumn li.mailingList
{
	*margin-bottom: 5px;
}

/* Sidebar */

table.layoutTable .rightColumn .sidebar a img
{
	border: 0;
}

/* Page bottom. */

#pageBottom
{
    clear: both;
	background: #94B7DB;
	font-size: 0.9em;
	color: #fff;
	padding: 8px 10px;
}

#pageBottom a
{
	color: #1E5FA9;
	text-decoration: none;
}

#pageBottom ul
{
	display: inline;
}

#pageBottom li
{
	display: inline;
	margin-right: 15px;
}

#pageBottom p.legal
{
	padding: 5px 0;
}

#pageBottom .siteInfo li
{
	font-weight: bold;
	color: #000;
}

/* Dropdown Menus */

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */


/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu
{
	background: #E8E8E8 url(../images/navigation_background.png) top left repeat-x;
	height: 30px;
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.35em;
	padding-top: 10px;
}

.menu ul
{
	width: 225px;
}

.menu ul.extraWide
{
	width: 350px;
}

.menu ul.extraThin
{
	width: 150px;
}

.menu a
{
	display: block;
	color: #666;
	text-decoration: none;
	border-right: 1px solid #CBCAC9;
	padding: 0px 10px;
	margin-bottom: 14px;
}

.menu li.last a
{
	border-right: 0;
}

.menu a:hover
{
	color: #1E5FA9;
}

.menu li ul
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
}

.menu li ul a
{
	background: #E4EBF2;
	border: 1px solid #fff;
	border-top: 0;
	padding: 2px 5px;
	margin-bottom: 0px;
	*margin-top: -1px;
}

.menu li ul a:hover
{
	background: #C4D2E5;
}

/* Page content. */

#pageContent
{
}

#pageContent #contentWrapper
{
	padding: 40px 30px;
}

#pageContent #contentWrapper p,
#pageContent #contentWrapper ul,
#pageContent #contentWrapper ol
{
	margin-bottom: 15px;
}

#pageContent #contentWrapper ul,
#pageContent #contentWrapper ol
{
	margin-left: 35px;
}

#pageContent #contentWrapper a
{
	color: #336699;
}

#pageContent #contentWrapper a:hover
{
	color: #6E98CA;
	text-decoration: none;
}

#pageContent h1.pageTitle
{
    margin-top: 0;
}

/* Styles for Homepage */

#pageContent h1.homepageTitle
{
	font-size: 2.15em;
	display: block;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #CCC;
}

#pageContent #homeLinks
{
	width: 440px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 20px;
}

#pageContent #homeLinks a
{
	text-decoration: none;
	width: 200px;
	display: block;
}

#pageContent #homeLinks a img
{
	border: 2px solid #DEDDDB;
	margin-top: -2px;
}

#pageContent #homeLinks h3
{
	display: block;
	background: #DEDDDB;
	padding: 5px;
	width: 194px;
}

#pageContent #homeLinks .columnLeft,
#pageContent #homeLinks .columnRight
{
	width: 200px;
	float: left;
	margin: 10px;
}

/* COMPONENTS. */

/* Forms. */

form table.section
{
    border-collapse: collapse;
}

form tr.group {}

form td.caption
{
    width: 125px;
    height: 1.75em;
    vertical-align: top;
    padding-top: 7px;
}

form td.field
{
    padding: 3px 0;
}

form td.field ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

form ul.errors
{
    color: #CE0000;
    background-color: #FFCFCE;
    list-style: none;
    padding: 4px;
    margin-top: 0;
}

form ul.errors li
{
    padding-top: 0.25em;
}

form ul.errors li:first-child
{
    padding-top: 0;
}

form .buttons {}

/* Site navigator. */

#pageContent .siteNavigator
{
    margin: 0 !important;
    padding: 0;
	font-size: 0.9em;
	position: absolute;
	top: 275px;
	left: 32px;
}

#pageContent .siteNavigator li
{
    display: inline;
    background-image: url(../images/right_arrow.gif);
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding: 0 5px 0 18px;
}

#pageContent .siteNavigator li.first
{
    background-image: none;
    padding: 0 5px 0 0;
}

#pageContent .siteNavigator *
{
	color: #8B8B8B !important;
}

#pageContent .siteNavigator a:hover
{
	color: #003366 !important;
}

/* Page navigator. */

.pageNavigator
{
    margin: 1em 0 0 0;
}

.pageNavigator a
{
	font-weight: bold;
	padding: 0 2px;
}

.pageNavigator a.current
{
	font-weight: bold;
	font-size: 1.6em;
	text-decoration: none;
	color: #000 !important;
	cursor: default;
	position: relative;
	top: 2px;
	padding: 0px 7px;
}

.pageNavigator .label
{
	font-style: italic;
	font-weight: bold;
}

.pageNavigator ul
{
    display: inline;
    margin: 0 0 0 10px !important;
    padding: 0;
}

.pageNavigator ul li
{
    display: inline;
    margin-right: 5px;
    font-weight: bold;
	font-style: italic;
}

.pageNavigator ul li.next {}
.pageNavigator ul li.previous {}

.pageNavigator ul li a
{
}

.pageNavigator.bottom {}

/* Error pages. */

#pageContainer.httpError
{
    color: black;
}

/* Search */

#pageContainer #pageContent .propertySearch {}

#pageContainer #pageContent .propertySearch .features,
#pageContainer #pageContent .propertySearch .features td {}

#pageContainer #pageContent .propertySearch .features td.caption {}

#pageContainer #pageContent .propertySearch .towns,
#pageContainer #pageContent .propertySearch .amenities {}

/* INDIVIDUAL PAGES. */

.column
{
    float: left;
}

#pageContainer.sitemap #contentWrapper .column
{
    width: 50%;
}

#pageContainer.sitemap #contentWrapper h2
{
	font-size: 1.5em;
	margin-bottom: 10px;
}

#pageContainer.sitemap #contentWrapper ul
{
	margin-left: 15px;
}

/* SPAM PREVENTION */

#emailAddress1 // This is a 'honeypot' field to attact spammers. If this field is filled out, the only explanation is that a spambot saw it and filled it out.
{
    display: none;
}
