/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/capecodadventures.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 6798 $
$LastChangedDate: 2009-11-06 14:00:10 -0500 (Fri, 06 Nov 2009) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0;
	padding: 0;
}

html,
body
{
	height: 100%;
}

body 
{
	background: #112061 url('../images/body_bg.jpg') top repeat-y;
	font: 80% "Times New Roman", Times, serif;
	color: #112061;
	text-align: center;
}

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

img 
{
	border: none;
}

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

h1
{
	font-size: 1.65em;
}

h2
{
	font-size: 1.65em;
}

h3
{
	font-size: 1.45em;
	color:#C06F44;
}

h4 
{
	font-size: 1.1em;
	font-variant: normal;
}

a:link, a:visited 
{
	color: #30a4bf;
}

a:hover 
{
	color: #f29a6f;
}

.image {}

.image.left
{
	margin: 0 10px 8px 0;
}

.image.right
{
	margin: 0 -10px 8px 10px;
	padding: 0 !important;
}

.left
{
	float: left;
	margin: 5px 7px 5px 0;
}

.right
{
	float: right;
	margin: 5px 0 5px 7px;
}

.center
{
	margin: 0 auto;
}

.textCenter
{
	text-align: center;	
}

.noBorder
{
	border: none;	
}

.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;
}

.twoColumns
{
	width: 380px;
	padding: 0 !important;
}


/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
	background: url('../images/page_bg.png') top center no-repeat;
	width: 100%;
	min-height: 553px;
	_height: 553px;
	margin: 0 auto;
}

/* Page top. */

#pageTop
{
	background: url('../images/header.jpg') top right no-repeat;
	position: relative;
	width: 800px;
	height: 173px;
	margin: 0 auto;
}

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

#pageTop #topLink a
{
	width: 490px;
	height: 136px;
	display: block;
}

#pageTop #topLink h1
{
	display: none;
}

#pageTop #contactTop p
{
	text-align: right;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.3em;
	padding: 3px 6px 2px 0;
	color: #2860b1;
}

#pageTop #navTop
{
	position: absolute;
	top: 140px;
	right: 0;
	width: 580px;
	font-size: 1.15em;
	font-weight: bold;
	font-variant: small-caps;
}

#pageTop #navTop ul li
{
	padding: 6px 6px 4px 0;
}

#pageTop #navTop ul li a
{
	text-decoration: none;
	color: #fff;
	height: 26px;
	line-height: 1.7em;
	padding: 4px 8px 5px;
}

#pageTop #navTop ul li a:hover
{
	background: url('../images/nav_hover.jpg') top repeat-x;
	color: #2057a8;
}

/* - - - 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: -12px 0 0 -30px;
	_width: 11em;
	/*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 */
	font-size: 0.9em;
	padding: 0 !important;
	margin: 0 !important;
}

.menu li li a
{
	background: #f29a6f;
	display: block;
	width: 12em;
	height: auto !important;
	color: #fff !important;
	line-height: 1.7em !important;
	padding: 0 2px 0 5px !important;
	border-right: 1px solid #be673b !important;
	border-left: 1px solid #be673b !important;
	border-bottom: 1px solid #be673b !important;
}

.menu li.helpDesk li a
{
	width: 10.75em;
}

.menu li li a:hover
{
	background: #f7bda1 !important;
	color: #2057a8 !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%;
}

/* 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
{
	background: #fff url('../images/footer_bg.gif') top repeat-x;
	color: #222;
	width: 800px;
	margin: 0 auto;
	padding-bottom: 9px;
}

#pageBottom a
{
	color: #222;
}

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

#pageBottom table td
{
	padding-top: 10px;
}

#pageBottom table tr.firstRow
{
	font-size: 0.9em;
}

#pageBottom table ul li
{
	display: inline;
}

#pageBottom table tr.secondRow
{
	font-size: 0.9em;
}

/* Page content. */

#pageContent
{
	background: #fff url('../images/content_bg.gif') top repeat-x;
	width: 800px;
	margin: 0 auto;
}

#pageContent #rightContent
{
	width: 611px;
	padding: 8px 10px 8px 14px;
	float: right;
}

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

#pageContent #rightContent h2
{
	margin: 10px 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
{
	line-height: 1.4em;
	margin: 0 0 10px 0;
}

#pageContent #rightContent .faqIndent
{
	margin-left: 20px;
}

#pageContent #rightContent .testimonialName
{
	margin-left: 400px;
	font-variant: small-caps;
	color: #C06F44;
}

#pageContent #leftContent
{
	width: 165px;
	
	padding: 18px 0 10px 0;
	font-size: 0.9em;
	color: #193441;
	float: left;
}

#pageContent #leftContent .spacer
{
	background: #fff;
	width: 165px;
	height: 18px;
}

#pageContent #leftContent .top
{
	background: url('../images/navBox_top.gif') top no-repeat;
}

#pageContent #leftContent .bg
{
	background: url('../images/navBox_bg.gif') top repeat-y;
	margin: 0;
}

#pageContent #leftContent .content
{
	background: url('../images/navBox_bottom.gif') bottom no-repeat;
	padding: 8px 0;
}

#pageContent #leftContent .content *
{
	color: #fff !important;
}

#pageContent #leftContent .content .horizLine
{
	background: url('../images/navBox_spacer.gif') center no-repeat;
	margin: 0;
	padding: 0;
	height: 2px;
	width: 165px;
	border: none;
}

#pageContent #leftContent .content a.arrowButton
{
	background: url('../images/arrow.gif') center right no-repeat;
	display: block;
	height: 22px;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.4em;
	font-style: italic;
	text-decoration: none;
	text-align: right;
	margin-right: 8px;
	padding-right: 28px;
}

#pageContent #leftContent .content h2
{
	font-size: 1.4em;
	font-style: italic;
	font-variant: normal;
	line-height: 1.25em;
	margin: 0 10px;
	_margin-right: 7px;
	padding-bottom: 3px;
}

#pageContent #leftContent .content h2 i
{
	font-size: 1.25em;
	text-align: right;
	display: block;
}

#pageContent #leftContent .content ul
{
	padding: 5px 0 0 0;
	line-height: 1.85em;
	list-style: none;
}

#pageContent #leftContent .content p
{
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 10px 6px 10px;
}

#pageContent #leftContent .content img
{
	margin: 0;
	padding: 3px 0 2px 0;
}

/* COMPONENTS. */

/* Forms. */

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

form tr.group {}

form td.caption
{
    width: 135px;
    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: -2px 0 8px 10px !important;
    padding: 0 !important;
	font-size: 0.95em !important;
}

#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;
}
