/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/barleyneck.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 6890 $
$LastChangedDate: 2009-12-09 12:07:01 -0500 (Wed, 09 Dec 2009) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0;
	padding: 0;
}

html,
body
{
	height: 100%;
}

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

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

img 
{
	border: none;
}

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

h1
{
	font-size: 1.7em;
	color: #333;
}

h2
{
	font-size: 1.4em;
	color: #823B28;
}

h3
{
	font-size: 1.3em;
	color: #4B5168;
}

h4 
{
	font-size: 1.1em;
	font-variant: small-caps;
	color: #395A2B;
}

a:link, a:visited 
{
	color: #3c7ab7;
}

a:hover 
{
	color: #395a2b;
}

.image
{
		
}

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

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

.border
{
	border: 2px solid #1E3231;
}

.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
{
	background: url('../images/page_bg.gif') top repeat-y;
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

/* Page top. */

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

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

#pageTop #topLink a
{
	width: 240px;
	height: 140px;
	display: block;
}

#pageTop #topLink h1
{
	display: none;
}

#pageTop #contactTop
{
	position: absolute;
	top: 68px;
	left: 252px;
	width: 250px;
}

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

#pageTop #navTop
{
	position: absolute;
	top: 155px;
	left: 11px;
	background: url('../images/nav_bg.gif') top repeat-x;
	width: 978px;
	font-size: 1.45em;
}

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

#pageTop #navTop ul li a
{
	height: 25px;
	padding: 0 15px;
	display: block;
	_display: compact;
	line-height: 1.3em;
	text-decoration: none;
	text-transform: lowercase;
	border-right: 1px solid #e3e2e1;
	color: #111;
}

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

/* - - - 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 17px;
	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: #f6f7fa;
	padding: 0 !important;
	margin: 0 !important;
}

.menu li li a
{
	background: none;
	display: block;
	width: 7em;
	font-size: 0.8em;
	font-weight: bold;
	height: 22px !important;
	line-height: 1.4em !important;
	padding: 0 2px 0 12px !important;
	border-right: 1px solid #e3e2e1 !important;
	border-left: 1px solid #e3e2e1 !important;
	border-bottom: 1px solid #e3e2e1 !important;
}

.menu li li a:hover
{
	background: #fff url('../images/nav_bg_dropdown.gif') left no-repeat !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
{
	background: url('../images/bottom_bg.gif') top no-repeat;
	color: #333;
	width: 100%;
	padding: 13px 0 4px 0;
}

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

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

#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: 978px;
	margin: 0 auto;
}

#pageContent #rightContent
{
	position: relative;
	width: 694px;
	padding: 2px 10px 2px 6px;
	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: 6px 0 4px 0;	
}

#pageContent #rightContent td
{
	font-size: 14px !important;
}

#pageContent #rightContent .creditCards
{
	margin-top: 5px;
	text-align: center;
}

#pageContent #rightContent .open
{
	background: #D1E3BF;
	border: 1px solid #395A2B;
	width: 266px;
	padding: 7px;
	float: right;
	text-align: center;
	margin-right: 3px;
	margin-left: 13px;
}

#pageContent #rightContent .line
{
	display: block;
	border-bottom: 2px dotted #823B28;
	width: 650px;
	margin: 10px auto 10px auto;
}

#pageContent #rightContent .testimonialName
{
	text-align: right;
	margin-right: 25px;
}

#pageContent #rightContent .ccTimesAuthor
{
	color: #880000;
}

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

#pageContent #leftContent
{
	position: relative;
	width: 264px;
	padding: 0 0 0 3px;
	float: left;
	z-index: 1;
	_padding-top: 7px;
}

#pageContent #leftContent .green,
#pageContent #leftContent .red,
#pageContent #leftContent .blue
{
	margin-top: 7px;
	_margin: 0;
}

#pageContent #leftContent .content
{
	padding: 10px 18px;
}

#pageContent #leftContent .content *
{
	text-align: center;
}

#pageContent #leftContent .content h2
{
	font-size: 1.85em;
	font-style: italic;
	line-height: 0.8em;
	text-transform: lowercase;
}

#pageContent #leftContent .content p
{
	padding: 6px 0 0 0;
	font-size: 1.1em;
	line-height: 1.35em;
}

#pageContent #leftContent .content a
{
	text-transform: lowercase;
	font-weight: bold;
	font-style: italic;
}

#pageContent #leftContent .content img
{
	margin: 0 auto;
	padding: 7px 0 1px 4px;
}

#pageContent #leftContent .green h2,
#pageContent #leftContent .green a
{
	color: #395a2b;
}

#pageContainer.home #pageContent #leftContent .red h3
{
	margin: 8px 0 -3px 0;
	color: #222;
}

#pageContainer.home #pageContent #leftContent .red p
{
	padding: 0 0 0 0;
	margin: 0 0 5px 0;
	font-weight: bold;
	color: #823B28;
}

#pageContent #leftContent .red h2,
#pageContent #leftContent .red a
{
	color: #823b28;
}

#pageContent #leftContent .red a:hover
{
	color: #B66952;
}

#pageContent #leftContent .green a:hover
{
	color: #7FA06C;
}

#pageContent #leftContent .blue a:hover
{
	color: #797F97;
}

#pageContent #leftContent .blue h2,
#pageContent #leftContent .blue a
{
	color: #4b5168;
}

#pageContent #leftContent .green
{
	background: url('../images/nav_left/green_bg.gif') top repeat-y;
}

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

#pageContent #leftContent .green .content
{
	background: url('../images/nav_left/green_bottom.gif') bottom no-repeat;
}

#pageContent #leftContent .red
{
	background: url('../images/nav_left/red_bg.gif') top repeat-y;
}

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

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

#pageContent #leftContent .red .content
{
	background: url('../images/nav_left/red_bottom.gif') bottom no-repeat;
}

#pageContent #leftContent .blue
{
	background: url('../images/nav_left/blue_bg.gif') top repeat-y;
}

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

#pageContent #leftContent .blue .content
{
	background: url('../images/nav_left/blue_bottom.gif') bottom no-repeat;
}

#pageContent #leftContent .facebook
{

	padding: 8px 0 0 7px;
}

#pageContent #leftContent .facebook img
{
	float: left;
	padding: 0 8px 0 0;
}

#pageContent #leftContent .facebook a
{
	font-size: 1.2em;
	text-transform: lowercase;
	font-weight: bold;
	font-style: italic;
	width: 100px;
	display: block;
	float: left;
	position: relative;
	top: 5px;
}

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