/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/scargocafe.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 7017 $
$LastChangedDate: 2010-03-16 17:54:13 -0400 (Tue, 16 Mar 2010) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0;
	padding: 0;
}

html,
body
{
	height: 100%;
}

body 
{
	background: #17323f url('../images/body_bg.jpg') top repeat-y;
	font: 80% "trebuchet MS", tahoma, arial, helvetica, sans-serif;
	color: #111;
	text-align: center;
}

p, div, table 
{
	font: 1em "trebuchet MS", tahoma, arial, helvetica, sans-serif;
	text-align: left;
}

img 
{
	border: none;
}

h1, h2, h3, h4
{
	color: #7f0e1e;
	font-family: "Goudy Old Style", Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
}

h1 
{
	font-size: 2em;
}

h2 
{
	font-size: 1.8em;
}

h3 
{
	font-size: 1.4em;
}

h4 
{
	font-size: 1.2em;
}

a:link, a:visited 
{
	color: #ffb300; 
	text-decoration: none;
}

a:hover 
{
	text-decoration: underline;
}

.imgLeft
{
	background: #fff;
	padding: 4px;
	border: 1px solid #A3AA95;
	float:left;
	margin: 3px 8px 3px 0;
}

.imgRight
{
	background: #fff;
	padding: 4px;
	border: 1px solid #A3AA95;
	float:right;
	margin: 3px 0 3px 8px;
}

.imgCenter
{
	background: #fff;
	padding: 4px;
	border: 1px solid #A3AA95;
	margin: 5px 0px 5px 100px;
}

.imgLeftFacebook
{
	float:left;
}

.twoColumns td
{
	vertical-align: top;
}

.twoColumns td.left
{
	width: 55%;
}

.clear
{
	clear: both;
}

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

/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
	background: url('../images/page_bg.png') top no-repeat;
	margin: 0 auto;
}

/* Inside container. */

#insideContainer
{
	background: url('../images/header_bg.jpg') top repeat-x;
	width: 900px;
	margin: 0 auto;
}

/* Page top. */

#pageTop
{
	position: relative;
	background: url('../images/logo.jpg') top left no-repeat;
	margin: 0 auto;
	width: 900px;
	height: 135px;
	color: #ffedc9;
	font-family: "Goudy Old Style", Georgia, "Times New Roman", Times, serif;
}

#pageTop #logoLink
{
	position: absolute;
	left: inherit;
	width: 900px;
}

#pageTop #logoLink a
{
	width: 210px;
	height: 128px;
	display: block;
}

#pageTop #logoLink h1
{
	display: none;
}

#pageTop #contactTop
{
	position: relative;
	top: 9px;
	left: 710px;
	width: 180px;
	min-height: 90px;
	_height: 90px;
	text-align: right;
}

#pageTop #contactTop span a
{
	display: block;
	width: 193px;
	height: 85px;
	float: left;
}

#pageTop #contactTop a h3
{
	display: none;
}

#constantContact
{
	position: absolute;
	top: 12px;
	right: 200px;
	background: #FFEDC9;
	padding: 6px;
	width: 160px;
	_width: 164px;
	*width: 164px;
	line-height: 1.1em;
	font-weight: bold;  
	font-size: 16px; 
	color: #3D6482;
	border: 1px solid #000;
}

#constantContact p
{
	position: relative;
	top: -2px;
	margin: 0;
	padding: 0;
	line-height: 1.2em;
	font-weight: bold;
}

#constantContact img
{
	position: relative;
	top: 2px;
	right: 4px;
	float: right;
	border: 1px solid #3D6482;
}

#constantContact input
{
	font-size: 0.75em;
}

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

/* -- CSS Menu disclaimer pop up --*/

.popUp a span
{
	display: none;
}

.popUp a:hover span
{
	background: #FFEDC9;
	display: block;
	width: 280px;
	position: absolute;
	top: 50px;
	left: 136px;
	*left: 176px;
	_left: 176px;
	padding: 6px;
	color: #000;
	font: 10px Verdana, sans-serif;
	border: 1px solid #000;
	z-index: 99;
}

/* -- 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
{
	position: relative;
	top: 12px;
	font-family: "Goudy Old Style", Georgia, "Times New Roman", Times, serif;
	font-size: 1.25em;
	_font-size: 1.25em;
	float: right;
}

.menu ul {
	width: 11em;
}

.menu li a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #FFEDC9 !important;
	padding: 5px 12px 6px 12px;
	*padding: 5px 12px 7px 12px;
	_padding: 7px 11px 8px 11px;
}

.menu li li a {
	padding: 4px 12px 4px 12px;
	_padding: 4px 11px 4px 11px;
}

.menu li:hover>a {
	background: url('../images/navHover_bg.jpg') top repeat-x;
	color: #ffb300 !important;
	text-decoration: none;
}

.menu a:hover {
	background: url('../images/navHover_bg.jpg') top repeat-x;
	color: #ffb300 !important;
	text-decoration: none;
}

.menu li li a:hover {
	background-image: none;
	background-color: #264A66;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #ffedc9;
	*border: 1px solid #ffedc9 !important;
	background: #003B4B;
	font-size: 0.75em;
	font-family: "trebuchet MS", tahoma, arial, helvetica, sans-serif;
}
.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%;
}

.navSpacer
{
	padding: 0 10px;
	font-size: 1.1em;
	line-height: 30px;
	color: #79756e;
}

/* 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: #294553;
	color: #ffedc9;
	font-size: 0.9em;
	_font-size: 0.9em;
	margin: 0 auto;
	padding: 8px 0 18px 0;
	text-align: center;
	clear: both;	
}

#pageBottom ul
{
	padding: 12px 0 0 0;
}

#pageBottom ul li
{
	padding: 0 20px;
	display: inline;
}

/* Page content. */
#pageContent
{
	_font-size: 0.9em;
}

#pageContent h1
{
	margin: 4px 0 8px 0;
}

#pageContent p
{
	margin: 0 0 10px 5px;
	line-height: 20px;
	font-size: .9em;
	_font-size: 1em;
}

#pageContent .recipe
{
	margin: 3px 0px 3px 50px;
}

#pageContent .textArea
{
	padding: 2px 12px 4px 10px;
}

#pageContent .textArea p
{
	text-align: justify;
	line-height: 14px;
	margin-bottom: 9px;
}

#pageContent .textArea h1 i
{
	display: none;
}

#pageContent .textArea a
{
	color: #003B4B;
	border-bottom: 1px dotted;
}

#pageContent .textArea a.noLine
{
	color: #003B4B;
	border-bottom: 0;
	text-decoration: none;
}

#pageContent .textArea a:hover,
#pageContent .textArea a:active
{
	color: #ffb300;
	text-decoration: none;
	border-bottom: 1px dotted;
}

#pageContent .textArea a:hover.noLine
{
	color: #ffb300;
	text-decoration: none;
	border-bottom: 0 !important;
}	

#pageContent .textArea ul
{
	margin: 0 0 16px 26px;
	list-style: square;
}

#pageContent .textArea ul li
{
	margin: 2px 0 1px 0;
}

#pageContent .textArea ol
{
	margin: 0 0 0 10px;
}

#pageContent .textArea blockquote
{
	margin-left: 26px;
	padding: 4px 0 3px 0;
}

#pageContent.homepage
{
	background: #ffedc9 url('../images/lineBottom_home.png') bottom no-repeat;
}

#pageContent.homepage #leftContent
{
	width: 280px;
	float: left;
	border-top: 3px solid #a3aa95;
}

#pageContent.homepage #leftContent #specials
{
	position: absolute;
	top: 497px;
}

/* Post Facebook Fan Box Additional Styles */

#pageContainer.index #pageContent.homepage #leftContent
{
	width: 280px;
	float: left;
	border-top: none;
}

#pageContainer.index #pageContent.homepage #leftContent #specials
{
	position: absolute;
	top: 704px;
}

#pageContainer.index #pageContent.homepage #leftContent #specials
{
	top: 699px\9
}

#pageContainer.index #pageContent.homepage .homeText
{
	padding: 5px 10px;
	background: #FFEDC9;
	position: relative;
	top: -4px;
	height: 197px;
	display: block;
}

#pageContainer.index #pageContent.homepage .homeText
{
	height: 192px\9
}

#pageContainer.index #pageContent.homepage .homeText p
{
	margin-bottom: 7px;
}

#pageContainer.index #pageContent.homepage .homeText p.noMargin
{
	margin: 0px;
}

 /* End Facebook styles */

#pageContent.homepage #rightContent
{
	background: #203A49;
	float: right;
	width: 620px;
}

#pageContent.homepage #rightContent ul
{
	margin-top: -4px;
	*margin-top: 0;
	list-style: none;
}

#pageContent.homepage #rightContent ul li
{
	width: 154px;
	border-right: 1px solid #002938;
	float: left;
	white-space: nowrap;
}

#pageContent.homepage #rightContent ul li.listLast
{
	width: 155px;
	border-right: none;
}

#pageContent.homepage #rightContent ul li a
{
	display: block;
	text-decoration: none;
	height: 215px;
}

#pageContent.homepage #rightContent ul li h3
{
	background: url('../images/grad.jpg') top repeat-x;

	padding: 2px 4px 0 8px;
	height: 28px;
	line-height: 28px;
	font-size: 1.15em;
	_font-size: 1.25em;
	color: #ffedc9;
}

#pageContent.homepage #rightContent ul li h3 big
{
	font-size: 0.9em;
}

#pageContent.homepage #rightContent ul li span
{
	background: #203a49;
	margin-top: -3px;
	*margin-top: 0;
	padding: 7px 4px 10px 8px;
	display: block;
	color: #ffedc9;
	line-height: 17px;
	font-size: 0.9em;
	_font-size: 1.0em;
	white-space: normal;
}

#pageContent.homepage .textArea h1
{
	padding: 0px 0 -4px 3px;
	*padding: 0px 0 -4px 3px;
	margin: 0px;
}

#pageContent.inside
{
	background: #ffedc9 url('../images/lineBottom_inside.png') bottom no-repeat;
}

#pageContent.inside #rightContent
{
	background: #ffedc9 url('../images/content_shadow.jpg') left repeat-y;
	_margin-left: -3px;
	padding-bottom: 10px;
	min-height: 465px;
	_height: 528px;
	width: 720px;
	float: right;
	border-top: 3px solid #a3aa95;
}

#pageContent.inside #rightContent p
{
	line-height: 1.35em;
}


#pageContent.inside #leftContent
{
	width: 180px;
}

#pageContent.inside #leftContent ul
{
	margin-top: -3px;
	*margin-top: 0;
	list-style: none;
}

#pageContent.inside #leftContent ul li
{
	width: 180px;
	float: left;
	white-space: nowrap;
}

#pageContent.inside #leftContent ul li a
{
	display: block;
	text-decoration: none;
}

#pageContent.inside #leftContent ul li a img
{
	margin-bottom: -3px;
	*margin-bottom: 0;
}

#pageContent.inside #leftContent ul li h3
{
	background: url('../images/grad.jpg') top repeat-x;
	padding: 2px 4px 0 8px;
	height: 28px;
	line-height: 26px;
	font-size: 0.95em;
	color: #ffedc9;
}

/* 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.75em 0 0 0;
    padding: 0;
}

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

/* MUSIC */

#musicControls embed
{
	width: 94px;
	height: 18px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border:solid 2px #000000;
}

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