/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/yarmouthhouse.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 7185 $
$LastChangedDate: 2010-08-09 11:04:13 -0400 (Mon, 09 Aug 2010) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0;
	padding: 0;
}

html,
body
{
	height: 100%;
}

body 
{
	background: #9d7f43 url('../images/body_bg.gif');
	font: 80% "Times New Roman", Times, serif;
	color: #222;
	text-align: center;
	width: 100%;
	display: table;
}

p, div, table 
{
	font: 1em;
	text-align: left;
}

img 
{
	border: none;
}

h1, h2, h3, h4
{
	font-weight: bold;
	color: #333;
	font-variant:small-caps;
}

h1
{
	font-size: 1.7em;
}

h2
{
	font-size: 1.5em;

}

h3
{
	font-size: 1.3em;
}

h4 
{
	font-size: 1.1em;
	color: #882506;
}

a:link, a:visited 
{
	color: #693F26;
}

a:hover 
{
	color: #395a2b;
}

.image
{
	background: FFF;
	padding: 2px;
	border: 1px solid #882506;	
}

.image.left
{
	margin: 6px 8px 3px 0;
}

.image.right
{
	margin: 6px 4px 3px 6px;
}

.left
{
	float: left;
}

.right
{
	float: right;
}

.center
{
	margin: 0 auto;
}

.textCenter
{
	text-align: center;	
}

.noBorder
{
	border: none !important;	
}

.block
{
	display: block;	
}

.clear
{
	clear: both;
}

.alertText
{
	margin-top: 6px;
	color: #C5140D;
	font-weight: bold;
}

.horizLine
{
	margin: 6px 0 6px 0;
	border-bottom: 1px dotted #5a7b96;
	display: block;
}

.navSpacer
{
	padding: 0 3px;
	font-size: 1.1em;
}

/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding-top: 20px;
}

/* Page top. */

#pageTop
{
	background: #fff url('../images/header.jpg') top left no-repeat;
	position: relative;
	height: 288px;
	width: 1000px;
	margin: 0 auto;
	z-index: 8;
}

#pageTop #topLink
{
	position: absolute;
	top: 20px;
	left: 20px;
}

#pageTop #topLink a
{
	width: 960px;
	height: 150px;
	display: block;
}

#pageTop #topLink h1
{
	display: none;
}

#pageTop #contactTop
{
	position: relative;
	top: 235px;
	margin: 0 auto;
	width: 800px;
}

#pageTop #contactTop ul
{
	text-align: center;	
}

#pageTop #contactTop ul li
{
	display: inline;
	color: #fff;
	font-size: 1.45em;
	font-variant: small-caps;
	list-style: none;
}

#pageTop #contactTop ul li.first
{
	padding-right: 60px;
}

#pageTop #navTop
{
	position: absolute;
	top: 258px;
	left: 1px;
	background: url('../images/nav_bg1.gif') top repeat-x;
	width: 998px;
	font-size: 1.45em;
}

#pageTop #navTop ul li
{
	color: #324d9f;
}

#pageTop #navTop ul li a
{
	height: 29px;
	padding: 0 21px;
	display: block;
	_display: compact;
	line-height: 1.6em;
	text-decoration: none;
	font-variant: small-caps;
	border-right: 1px solid #47391f;
	border-left: 1px solid #ad9f85;
	color: #fff;
}

#pageTop #navTop ul li a:hover
{
	background: url('../images/nav_bg2.gif') top repeat-x;
	color: #322816;
}

#pageTop #navTop ul li a.first { border-left: none; }
#pageTop #navTop ul li a.last { border-right: none; }

/* - - - 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: 10;		/* 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: 99;
	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 17px;
	margin: -10px 0 0 -17px;
	_margin: -10px 0 0 -20px;
	*margin-top: -12px;
	/*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 li li {	/* create borders around each item */
	background: #534324;
	padding: 0 !important;
	margin: 0 !important;
}

.menu li li a
{
	background: url('../images/nav_drop_bg1.gif') left repeat-y;
	display: block;
	width: 8em;
	font-size: 0.8em;
	font-weight: bold;
	height: 23px !important;
	line-height: 1.4em !important;
	padding: 0 4px 0 6px !important;
	border-right: 1px solid #322816 !important;
	border-left: 1px solid #aea085 !important;
	border-bottom: 1px solid #42351c !important;
	border-top: 1px solid #a89b82 !important;
}

.menu li li a:hover
{
	background: #fff url('../images/nav_drop_bg2.gif') left repeat-y !important;
}

.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* Page bottom. */

#pageBottom
{
	position: relative;
	color: #554425;
	width: 100%;
	padding: 0 0 4px 0;
	top: -3px;
	_top: 0px;
}

#pageBottom table
{
	width: 1000px;
	line-height: 1.2em;
	text-align: center;
}

#pageBottom table tr.firstRow
{
	background: #7e715b;
	font-size: 1em;
	margin-bottom: 1px;
	line-height: 1.6em;
}

#pageBottom table tr.firstRow td
{
	border-bottom: 1px solid #fff;
}

#pageBottom table tr.firstRow a
{
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 0 10px;
}

#pageBottom table tr.firstRow a:hover
{
	background: #cfcac2;
	color: #554425;	
}

#pageBottom table .bottom_right
{
	float: right;
}

#pageBottom table .bottom_left
{
	float: left;
}

#pageBottom table .bottom_left a
{
	border-right: 1px solid #fff;	
}

#pageBottom table .bottom_right a
{
	border-left: 1px solid #fff;	
}

#pageBottom table ul li
{
	float: left;
	white-space: nowrap;
	list-style: none;
}

#pageBottom table tr.secondRow
{
	background: #cfcac2;
	font-size: 0.9em;
	line-height: 1.8em;
}

#pageBottom table tr.secondRow a
{
	color: #7e715b;
}

#pageBottom table tr.secondRow a:hover
{
	color: #554425;	
}

/* Page content. */

#pageContent
{
	background: #fff url(../images/page_content.jpg) top left repeat-y;
	width: 999px;
	margin: 0 auto;
	border-left: 1px solid #fff;
	border-right: 1px soild #fff;
}

#pageContainer.homepage #pageContent
{
	background-image: none;
}

#pageContent #rightContent
{
	position: relative;
	width: 737px;
	_width: 736px;
	margin-right: 1px;
	padding: 6px 10px 6px 10px;
	float: right;
	z-index: 5;
}

#pageContent #rightContent h1
{
	padding: 4px 0;
}

#pageContent #rightContent h2
{
	margin: 2px 0;
}

#pageContent #rightContent h3
{
	margin: 0 0 4px 0;
}

#pageContent #rightContent ul,
#pageContent #rightContent ol
{
	margin: 12px 4px 4px 24px;
}

#pageContent #rightContent ul li
{
	list-style: square;
}

#pageContent #rightContent p,
#pageContent #rightContent ul
{
	font-size: 1.15em;
	line-height: 1.5em;
}

#pageContent #rightContent p
{
	margin: 0 0 12px 0;	
}

#pageContent #rightContent p.noMargin
{
	margin-bottom: 0 !important;
}

#pageContent #rightContent .line
{
	display: block;
	height: 1px;
	width: 700px;
	margin: 0 auto;
	border-bottom: 1px dotted #882506;
	margin-bottom: 10px;
}

#pageContent #rightContent .footer img.even
{
	position: relative;
	top: 7px;
}

#pageContent #rightContent .footer p
{
	font-size: 1em;
	text-align: center;
	width: 75%;
	margin: 0 auto;
	display: block;
}

/* Specials */

#pageContent #rightContent .h2Red
{
	font-weight: bold;
	font-variant:small-caps;
	font-size: 1.5em;
	color: #882506;
	margin-bottom: 0;
}

#pageContent #rightContent .teddy
{
	background: #E3CDA7;
	width: 600px;
	border: 1px double #534223;

}

#pageContent #rightContent .teddyText
{
	padding: 0px 5px 0px 20px;
	font-weight: bold;
	font-size: 1.4em;
}

#pageContent #rightContent .columns
{
	float: left;
	width: 50%;
}

#pageContent #rightContent .disclaimer
{
	font-size: 1em;
}

#pageContent #rightContent .testimonialLocation
{
	text-align: right;
	font-weight:bold;
	margin-right:50px;
}

#pageContent #rightContent .headerColor
{
	color:#882506;
}

#pageContainer.homepage #pageContent #rightContent
{
	background: url('../images/home_content_bg.gif') bottom right no-repeat;
	border: 1px solid #7e715b;
	width: 292px;
	padding: 2px 3px 4px 7px;
	margin-bottom: 1px;
	height: 449px;
	_left: 1px;
}

#pageContainer.homepage #pageContent #leftContent
{
	background: none;
}

#pageContent #leftContent
{
/*	background: url('../images/left_bg.gif') top repeat-x; */
	background: url('../images/left_content.jpg') top left no-repeat;
	width: 241px;
	min-height: 402px;
	_height: 402px;
	padding: 0;
	float: left;
	z-index: 9;
}

#pageContent #leftContent a.button
{
	display: block;
	width: 221px;
	height: 105px;
	margin: 10px 0 0 10px;
}

#pageContent #leftContent a.book { background: url('../images/left1.jpg') top no-repeat; }
#pageContent #leftContent a.see { background: url('../images/left2.jpg') top no-repeat; }
#pageContent #leftContent a.test { background: url('../images/left3.jpg') top no-repeat; }

#pageContent #leftContent a i
{
	display: none;
}

/* 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 {}

p.buttons input
{
	padding: 3px 5px;	
}

/* Site navigator. */

#pageContent .siteNavigator
{
    margin: 0 !important;
    padding: 0 0 8px 0px;
}

#pageContent .siteNavigator li
{
    display: inline;
    background-image: url(../images/site_navigator_separator.gif);
    background-position: 0 40%;
    background-repeat: no-repeat;
    padding: 0 3px 0 10px;
}

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

/* Page navigator. */

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

.pageNavigator .label {}

.pageNavigator ul
{
    display: inline;
    margin-left: 0;
    padding-left: 0;
}

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

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

.pageNavigator ul li a
{
    background: white;
    border: 2px solid black;
    padding: 4px 7px 2px 7px;
    text-decoration: none;
}

.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 .column
{
    width: 32%;
}

/* 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;
}
