/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/fairwaycapecod.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 7098 $
$LastChangedDate: 2010-05-21 13:14:14 -0400 (Fri, 21 May 2010) $
*/

@import url(general.css);

/* GLOBAL. */

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

html,
body
{
    height: 100%;
}

body
{
    margin: 0;
    padding: 0;
	background: #5E1A0A url(../images/bk_main.jpg) top center repeat-y;
	*background: #5E1A0A url(../images/bk_main.gif) top center repeat-y;
}

.clear
{
	clear: both;
}

p, div, table
{
	font-family: 'Times New Roman', Times, serif;
	font-size: 14px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 18px;
	font-size-adjust: none;
	font-stretch: normal;
	-x-system-font: none;
	text-align: left;
}

h1, h2, h3, h4
{
	font-variant: small-caps;
	margin-bottom: 5px;
}

h1
{
	color: #BE752D;
	font-size: 22px;
}

.imgRight
{
	float:right;
}

.imgLeft
{
	float:left;
}

/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
    position: relative;
	min-height: 100%;
    margin: 0 auto -27px auto;
	left: -1px;
	display: block;
	width: 950px;
	background: url(../images/leftnav2.jpg) left repeat-y;
	*left: 0px;
	_height: 105%;
	_padding-left: 1px;
}

#pageContainer.home
{
    position: relative;
    margin: 0 auto 0 auto;
	display: block;
	width: 950px;
	background: none;
	*padding-left: 2px;
}

/* Page top. */

#pageTop
{
	background: #E7BA77 url(../images/header.jpg) top center no-repeat;
	height: 118px;
	display: block;
}

#logoLink a
{
	display: block;
	width: 320px;
	height: 118px;
	cursor: pointer;
	float: left;
}

#contactInfo
{
	text-align: center;
	font-size: 16px;
	font-variant: small-caps;
	font-weight: bold;
	color: #5E1A0A;
	float: left;
	position: relative;
	top: 15px;
	left: 50px;
	line-height: 33px;
}

#contactInfo a
{
	font-weight: normal;
	font-size: 14px;
	color: #5E1A0A;
}

#contactInfo a:hover
{
	color: #884B2C;
}

/* Top Navigation */

#topNav
{
	background: #40770D url(../images/navbar.gif) repeat-x;
	height: 26px;
	display: block;
}

/* - - - 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
{
	font-variant: small-caps;
	font-weight: bold;
	font-size: 16px;
	height: 26px;
	padding-top: 4px;
	_height: 22px;
}

.menu ul {
	width: 200px;
}

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

.menu li a {
	position: relative;
	text-decoration: none;
	color: #fff;
	padding: 4px 25px 2px 25px;
	*padding: 3px 25px 3px 25px;
}

.menu li.last a
{
	padding-right: 38px;
}

.menu li li a {
	display: block;
	padding: 2px 2px 2px 5px;
}

/*
.menu li:hover>a {
	background: url('../images/navbar_hover.gif') top repeat-x;
	color: #224204;
	text-decoration: none;
}
*/

.menu a:hover {
	background: url('../images/navbar_hover.gif') top repeat-x;
	color: #224204;
	text-decoration: none;
}

.menu li ul
{
	margin-top: -6px;
}

.menu li li a:hover {
	background-image: none;
	background-color: #90B272;
}

.menu li li {	/* create borders around each item */
	border-right: 1px solid #2C4D0D;
	border-bottom: 1px solid #2C4D0D;
	border-top: 1px solid #8EAF70;
	border-left: 1px solid #8EAF70;
	background: #447C13;
}

.preload
{
	background: url('../images/navbar_hover.gif');
	visibility: hidden;
}

.navSpacer
{
	position: relative;
	font-size: 20px;
	top: -2px;
	color: #fff;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts 
.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #567;
}*/

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/* Page bottom. */

#pageBottom.home
{
	position: relative;
	*left: 1px;
	*background-color: #fff;
	_background: url(../images/footer2.gif) no-repeat;
}

#pageBottom
{
    clear: both;
	background: url(../images/footer.png) no-repeat;
	height: 102px;
	display: block;
	position: relative;
	left: -1px;
	font-size: 12px;
	color: #5E1A0A;
	margin: 0 auto 0 auto;
	width: 950px;
	*left: 0px;
	_background: url(../images/footer.gif) no-repeat;
}

#pageBottom li
{
	list-style: none;
	display: inline;
}

#pageBottom a
{
	color: #5E1A0A;
	font-style: italic;
}

#pageBottom #bottomNav
{
	text-align: center;
	width: 950px;
}

#pageBottom #bottomNav li
{
	list-style: none;
	display: inline;
	position: relative;
	top: 30px;
}

#pageBottom #bottomNav .bottomSpacer
{
	padding: 0 5px;
}

#pageBottom #siteStats
{
	position: relative;
	text-align: center;
	top: 35px;
}

#pageBottom #siteStats li
{
	padding: 0 25px;
}

#pageBottom #branding
{
	position: relative;
	top: 40px;
	text-align: center;
}

/* Page content. */

/*

This style used to split the page in half,
new style aligns the page content to the left

#pageContainer.home #pageContent
{
	float: left;
	width: 474px;
	border-right: 1px solid #350F06;
}
*/

#pageContainer.home #pageContent
{
	float: left;
	width: 930px;
	*background-color: #fff;
}

#pageContainer.home #pageContent #flash
{
	float: right;
	margin: 0 0 10px 10px;
	border: 1px solid #350F06;
	height: 407px;
}

#pageContent
{
	float: right;
	width: 730px;
	background: url(../images/shdw.gif) top repeat-x;
	padding: 10px 10px 0 10px;
	display: block;
}

#pageContent a
{
	color: #4B8317;
}

#pageContent a:hover
{
	color: #90B272;
}

#pageContent p
{
	margin-bottom: 10px;
}

#pageContent h1.pageTitle
{
    margin:0 0 15px 0;
	
}

#pageContent .menuHeaders
{
	font-weight: bold;
	color: #5D1A0A;
}

#pageContent .menuFooter
{
	font-weight: bold;
}

#pageContent .kidsChoice
{
	font-size: 18px;
	color: #598418;
	text-decoration: italic;
	font-weight: bold;
}

#pageContent .donate
{
	width: 145px;
	margin: 40px auto 0 auto;
}

#pageContent ul
{
	margin: 5px 0 0 50px;
}

#pageContent blockquote
{
	margin: 0 0 0 20px;
}

#pageContent .menuPicture
{
	float: right;
}

#pageContent .cindy
{
	font-size: 1.3em;
	color: #8E0C00;
	font-weight: bold;
}

#pageContent .awards
{
	color: #8E0C00;
	font-size: 2em;
	margin: 0 0 20px 0;
}

#pageContent .year
{
	color: #5A8519;
	font-size: 2.2em;
	margin: 40px 0 20px 0;
}

#pageContent .info
{
	border: 1px solid #5E1A0A;
	width: 425px;
	padding: 10px 0 0 10px;
	background: #FFEBA6;
	margin-bottom: 10px;

}

#pageContent .info p
{
	text-align: center;
}

#pageContent .creditCards
{
	margin: 0 auto;
	width: 120px;
}

#pageContent .sandwiches table
{
	width: 600px;
	margin: 0 auto;
}

/* Mission Statement Page */

#pageContent .mission
{
	color:#8E0C00;
	font-weight: bold;
	margin: 15px 0 0 0;
	font-size: 18px;
}

#pageContent .is
{
	color: #598418;
	font-weight: bold;
	margin: 15px 0 15px 0;
	font-size: 16px;
}

#pageContent .quotes
{
	width: 550px;
	margin: 0 0 0 90px;
}

#pageContent .space
{
	font-weight: bold;
	margin: 30px 0 0 0;
}

/* Golf Links Page */

#pageContent .golf table
{
	width: 700px;
	margin: 0 0 0 7px;
}

#pageContent .golf td
{
	height: 25px;
}

/* Jimmy Fund Page */

.imgLeftLogo
{
	float:left;
	padding: 0 0 0 0;
	margin: 0 0 0 160px;
}

#pageContent .header
{
	font-weight: bold;
	color:#8E0C00;
	font-size: 18px
}

#pageContent .jimmy
{
	color:#598419;
	font-weight: bold;
	font-size: 18px
}

#pageContent .dana
{
	color:#8E0C00;
	font-weight: bold;
}

#pageContent .move
{
	width: 540px;
	margin: 20px 0 0 0;
}

/* Jimmy Fund Sponsorship Information Page */

#pageContent .sponsor table
{
	width: 725px;
	margin: 20px 0 0 0;
	height: 40px;
}


#pageContent .corporate table
{
	width: 725px;
	margin: 10px 0 0 0;
	height: 20px;
}

#pageContent .rewards table
{
	width: 725px;
}

#pageContent .rewards ul
{
	margin: 0 0 0 15px;
}

/* Left Navigation */

#leftNav
{
	width: 200px;
	float: left;
}

#leftNav a,
#leftNav img
{
	border: 0;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	text-decoration: none;
	text-align: center;
	font-variant: small-caps;
	font-weight: bold;
	color: #fff;
	width: 200px;
	display: block;
}

#leftNav .link
{
	height: 20px;
	border-top: 1px solid #A0B87C;
	border-bottom: 1px solid #3D5616;
}

#leftNav .link:hover
{
	border-bottom: 1px solid #C4D7A7;
}

#leftNav a:hover
{
	background: #90B171;
	color: #224204;
}

#leftNav img
{
	border-top: 1px solid #A0B87C;
	border-bottom: 1px solid #3D5616;
}

#leftNav .last
{
	background: url(../images/border.gif) bottom repeat-x;
	border-bottom: 1px solid #A0B87C;
}

#leftNav .first
{
	border-top: none;
}

/* Left Navigation on Menu Page */

#leftNavMenu
{
	width: 200px;
	float: left;
	font-variant: small-caps;
	text-align: left;
	color: #fff;
	font-weight: bold;
	line-height: 18pt;
	padding: 0 0 0 0;
	_margin: 0 0 0 -1px;
}

#leftNavMenu ul,
#leftNavMenu li,
#leftNavMenu a
{
	list-style: none;
	color: #fff;
	text-decoration: none;
	_margin-bottom: -10px;
}

#leftNavMenu .IE6
{
	_margin-bottom: 8px;
}

#leftNavMenu .IE6ii
{
	_height: 24px;
	_margin-top: 8px;
}

#leftNavMenu .IE6iii
{
	_height: 28px;
	_margin-bottom: -5px;
}

#leftNavMenu a
{
	display: block;
	padding-left: 10px;
}

#leftNavMenu a:hover
{
	color: #90B272;
}

#leftNavMenu ul li
{
	font-size: 17px;
	background: url(../images/border.gif) bottom repeat-x;
	border-bottom: 1px solid #9FB67B;
	*background: url(../images/borderIE.gif) bottom repeat-x;
	*border: 0;
}

#leftNavMenu ul li ul
{
	border: 0;
}

#leftNavMenu ul li ul li
{
	font-size: 14px;
	*font-size: 13px;
}

#leftNavMenu .first
{
	padding-left: 10px;
}

#leftNavMenu .lastLi
{
	*background: url(../images/borderIE.gif) bottom repeat-x !important;
}

#leftNavMenu .submenu
{

}

#leftNavMenu .submenu li
{
	background: none;
	border: none;
}

#leftNavMenu .submenu a:hover
{
	background: url(../images/diamondgreen.gif) left no-repeat;
}

#leftNavMenu .preload
{
	background: url(../images/diamondgreen.gif) left no-repeat;
	visibility: hidden;
}

/* 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: -10px 0 5px 0;
	font-size: 8pt;
	font-variant: small-caps;
}

#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 ul 
{
    margin: 0 0 0 10px;

}

#pageContainer.sitemap .column
{
    width: 25%;
}

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

