/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/orleanscapecod.org/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 7219 $
$LastChangedDate: 2010-08-14 12:02:50 -0400 (Sat, 14 Aug 2010) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0;
	padding: 0;
}

html,
body
{
	height: 100%;
}

body 
{
	background: #DDFAD4 url('../images/body_bk.jpg') bottom center no-repeat fixed;
	font: 80% "Times New Roman", Times, serif;
	color: #20507e;
	text-align: center;
}

p, div, table, ul, ol
{
	font: 1.15em;
	text-align: left;
}

img 
{
	border: none;
}

h1, h2, h3, h4
{
	font-weight: bold;
	color: #357527;
}

h1
{
	font-size: 1.7em;
}

h2
{
	font-size: 1.5em;
}

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

h4 
{
	font-size: 1.1em;
	font-variant: small-caps;
}

a:link, a:visited 
{
	color: #357527;
}

a:hover 
{
	color: #2477cc;
}

.image
{
	border: 1px solid #5a7b96;	
}

.image.left
{
	margin: 5px 5px 3px 0;
}

.image.right
{
	margin: 5px 0 3px 5px;
	padding: 0 !important;
}

.left
{
	float: left;
}

.right
{
	float: right;
}

.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
{
	position: relative;
	top: 18px;
	width: 980px;
	margin: 0 auto;
}

/* Page top. */

#pageTop
{
	background: #f2feee url('../images/header2.jpg') top right no-repeat;
	position: relative;
	height: 180px;
	width: 980px;
	margin: 0 auto;
	border-top: 1px solid #4d7b8c;
	border-right: 1px solid #4d7b8c;
	border-left: 1px solid #4d7b8c;
	border-bottom: none;
	z-index: 8;
}

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

#pageTop #topLink a
{
	width: 340px;
	height: 120px;
	display: block;
}

#pageTop #topLink h1
{
	display: none;
}

#pageTop #contactTop *
{
	color: #fff;
}

#pageTop #contactTop a:hover
{
	color: #BAC6E0;
}

#pageTop #contactTop p
{
	text-align: right;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.7em;
	padding: 4px 32px 4px 0;
}

#pageTop #navTop
{
	width: 820px;
	font-size: 1.1em;
	font-weight: bold;
	font-variant: small-caps;
	float: right;
}

#pageTop #navTop ul li
{
	padding: 6px 0 4px 18px;
	color: #324d9f;
	padding /*\**/: 6px 0 4px 16px\9;
	*padding: 6px 0 4px 16px;
}

#pageTop #navTop ul li a
{
	text-decoration: none;
	color: #324d9f;
}

#pageTop #navTop ul li a:hover
{
	color: #7592ee;
}

/* - - - 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: 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 30px;
	margin: -10px 0 0 -18px;
	_margin: -8px 0 0 -20px;
	/*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: #7592ee url('../images/nav_drop_bg.jpg') top right repeat-y;
	font-size: 0.85em;
	padding: 0 !important;
	margin: 0 !important;
}

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

.menu li li a:hover
{
	background: #324d9f;
}

.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
{
	color: #fff;
	width: 100%;
	padding-bottom: 9px;
}

#pageBottom a
{
	color: #fff;
}

#pageBottom a:hover
{
	color: #BAC6E0;
}

#pageBottom table
{
	width: 980px;
	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
{
	width: 980px;
	margin: 0 auto;
	border-top: none;
	border-right: 1px solid #4d7b8c;
	border-left: 1px solid #4d7b8c;
	border-bottom: 1px solid #4d7b8c;
}

#pageContent .overlay 
{
	position: absolute;
	top: 181px;
	bottom: 61px;
	left: 1px;
	width: 100%;
	background: #fff;
	opacity: 0.75;
	-moz-opacity: 0.75;
	filter:alpha(opacity=75);
}

#pageContent .LC3
{
	display: block;
	width: 145px;
	height: 46px;
	background: url(../images/lc3.jpg) no-repeat;
	margin: 10px auto;
}

#pageContent .CCC
{
	display: block;
	width: 105px;
	height: 47px;
	background: url(../images/ccc.jpg) no-repeat;
	margin: 10px auto;
}

/* Let's compensate for IE6's inability to interpret top: 0; and bottom: 0; */
* html #pageContent .overlay { height: expression(document.getElementById("pageContent").offsetHeight); }

#pageContent #rightContent
{
	position: relative;
	width: 804px;
	min-height: 550px;
	_height: 550px;
	padding: 6px 10px 8px 10px;
	float: right;
	border-left: 1px solid #5a7b96;
	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
{
	margin: 12px 4px 4px 24px;
}
#pageContent #rightContent ol
{
	margin: 12px 4px 4px 24px;
	list-style: decimal;
}

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

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

#pageContent #rightContent p
{
	margin: 6px 0 4px 0;	
}

#pageContent #rightContent p.credit
{
	text-align: center;
	font-size: 12px;
	margin: 0 0 0 0;	
}

#pageContent #rightContent .popsInfo
{
	font-weight: bold;
}

#pageContent #rightContent .five
{
	margin-right: 345px;
}

#pageContainer.popsSponsors #pageContent #rightContent img:hover
{
	opacity:0.6;
	filter:alpha(opacity=60);
}

#pageContent #calendarContainer
{
	position: relative;
	margin: 0 auto;
	padding-top: 16px;
}

#pageContent #EPCcalendar
{
	margin: 0 4px;
}

#pageContent #leftContent
{
	background: url('../images/logo.gif') top center no-repeat;
	position: relative;
	top: -170px;
	width: 154px;
	min-height: 400px;
	_height: 400px;
	padding-top: 145px;
	float: left;
	z-index: 9;
}

#pageContent #leftContent #logoLink
{
	position: absolute;
	top: -10px;
	left: 0;
}

#pageContent #leftContent #logoLink a
{
	width: 155px;
	height: 150px;
	display: block;
}

#pageContent #leftContent .horizLine
{
	width: auto;
	margin: 6px 4px;
}

#pageContent #leftContent p
{
	font-size: 0.9em;
	line-height: 1.5em;
	text-align: center;
}

#pageContent #leftContent p a
{
	color: #2477cc;
}

#pageContent #leftContent p a:hover,
#pageContent #leftContent p a:active
{
	color: #357527;
}

#pageContent #leftContent ul
{
	list-style: none;
}

#pageContent #leftContent ul li
{
	padding: 2px 4px;
	margin-bottom: 10px;
}

#pageContent #leftContent ul li a
{
	font-weight: bold;
	text-decoration: none;
	min-height: 36px;
	_height: 36px;
	padding-left: 42px;
	font-size: 1.1em;
	display: block;
}

#pageContent #leftContent ul li.singleLine a
{
	line-height: 36px;
}

#pageContent #leftContent ul li.hand a
{
	background: url('../images/hand.gif') left no-repeat;
	color: #20507e;
}

#pageContent #leftContent ul li.ring a
{
	background: url('../images/ring.gif') left no-repeat;
	color: #2477cc;
}

#pageContent #leftContent ul li.music a
{
	background: url('../images/music.gif') left no-repeat;
	color: #357527;
}

#pageContent #leftContent ul li.tree a
{
	background: url('../images/tree.gif') left no-repeat;
	color: #8B0A0A;
}

#pageContent #leftContent ul li.expo a
{
	background: url('../images/expoThumb.jpg') left no-repeat;
	color: #114783;
}

/* 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;
	text-transform: lowercase;
	font-size: 13px !important;
	font-weight: bold;
}

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

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