/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/swanriverseafoods.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 7140 $
$LastChangedDate: 2010-07-08 15:37:43 -0400 (Thu, 08 Jul 2010) $
*/

@import url(general.css);

/* GLOBAL. */

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

html,
body
{
    height: 100%;
}

body
{
    margin: 0;
    padding: 0;
	background: #B0C6D8 url(../images/background.jpg) top left repeat-x;
}

p, div, table
{

}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
	font-weight: bold;
	color: #B62909;
	font-style: italic;
	margin-bottom: 0.25em;
}

h1
{
	font-size: 1.85em;
	color: #10227A;
}

h2
{
	font-size: 1.5em;
	color: #10227A;
}

h3
{
	font-size: 1.35em;
}

h4
{
	font-size: 1.1em;
}

a
{
	color: #10227A;
}

a:hover
{
	color: #4C82AB;
}

.preload
{
	display: none;
}

.clear
{
	clear: both;
}

.clearRight
{
	clear: right;
}

.clearLeft
{
	clear: left;
}

.imgLeft
{
	float: left;
	margin: 0px 20px 10px 0px;
	border: 1px solid #fff;
}

.imgRight
{
	float: right;
	margin: 0px 0px 10px 20px;
	border: 1px solid #fff;
}

.imgCenter
{
	display: block;
	text-align: center;
	margin: 0 auto;
	border: 1px solid #fff;
}

.noBorder
{
	border: 0;
}

.noMargin
{
	margin-bottom: 5px !important;
}

.marginZero
{
	margin-bottom: 0px !important;
}

/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
    position: relative;
    min-height: 100%;
	background: url(../images/sandy_bottom.jpg) bottom left repeat-x;
	color: #434343;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 0.9em;
	line-height: normal;
	font-size-adjust: none;
	font-stretch: normal;
	-x-system-font: none;
	text-align: left;
	line-height: 1.4em;
}

#pageWrapper
{
    margin: 0 auto;
	width: 974px;
	display: block;
}

/* Page top. */

#pageTop
{
	height: 145px;
	display: block;
	background: url(../images/navbar.png) bottom left repeat-x;
	margin: 0 auto;
	padding: 0 0 0 0;
	position: inherit;
	width: 974px;
	background: url(../images/navbar.gif) bottom left repeat-x;
}


#pageTop a.logoLink
{
	float: left;
	display: block;
	margin-bottom: -5px;
	height: 145px;
	width: 134px;
	background: url(../images/logo.png) top right no-repeat;
	*background: url(../images/logo7.gif) top right no-repeat;
}

#pageTop .tagline
{
	padding-top: 8px;
}

#pageTop table td
{

}

#pageTop table p
{
	text-align: right;
	font-weight: bold;
	font-size: 0.8em;
	color: #F0F4F7;
}

#pageTop .contactInfo
{
	width: 350px;
}

#pageTop #topNav
{
	text-align: right;
	font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
	display: block;
	float: right;
}

/* - - - 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-size: 1.15em;
	display: block;
	margin: 0 auto;
	text-align: center;
	background: url(../images/navbar_end.gif) top right no-repeat;
	padding: 5px 13px 5px 0;
	height: 40px;
	*margin-top: 2px;
	*margin-right: 0px;
}

.menu ul {
	width: 9em;
	margin-top: -19px;
}

.menu li a
{
	position: relative;
	display: block;
	text-decoration: none;
	color: #10227A;
	font-weight: bold;
	border-left: 1px solid #fff;
	border-right: 1px solid #E0E5E9;
	padding: 10px;
}

.menu li a:hover
{
	color: #4C82AB;
}

.menu li.first a
{
	border-left: 0;
}

.menu li.first a:hover
{
	border-left: 0;
}

.menu li.last a
{
	border-right: 0;
}

.menu li.last a:hover
{
	border-right: 0;
}

.menu li li a
{
	display: block;
	padding: 3px 10px;
	background: #10227A;
	border: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	font-weight: normal;
	font-size: 1.1em;
	*margin-top: -2px;
}

.menu li li.top
{
	background: url(../images/menuarrow.gif) 10px 0px no-repeat;
	padding-top: 9px;
}

.menu li li a:hover{

	color: #4C82AB;
	border: 0;
}

.menu li li {	/* create borders around each item */
	font-size: 0.75em;
	text-align: left;
}
.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
{
    clear: both;
	background: url(../images/footer.png) bottom center no-repeat;
	display: block;
	width: 974px;
	height: 87px;
	padding-top: 20px;
	text-align: center;
	font-size: 0.8em;
}

#pageBottom ul,
#pageBottom li
{
	list-style-type: none;
}

#pageBottom li
{
	display: inline;
	margin: 0 10px;
}

#pageBottom .pageBottomLinks
{
	margin-bottom: 10px;
}

#pageBottom p.branding
{
	font-size: 0.95em;
}

/* Page content. */

#pageContainer span.contentTop
{
	background: url(../images/content_top.jpg) top center no-repeat;
	display: block;
	height: 11px;
	width: 974px;
	clear: both;
	margin: 0 auto;
}

#pageContainer span.contentBottom
{
	background: url(../images/content_bottom.png) top center no-repeat;
	display: block;
	height: 11px;
	width: 974px;
	clear: both;
	margin: 0 auto;
}

#pageContent
{
	background: url(../images/content_background.png) top center repeat-y;
	padding: 14px 20px;
	min-height: 500px;
}

#pageContent p,
#pageContent ul,
#pageContent ol
{
	margin-bottom: 20px;
}

#pageContent ul,
#pageContent ol
{
	margin-left: 50px;
}

#pageContent h1.pageTitle
{
    margin-top: 0;
}

#pageContent #contentLeft
{
	width: 670px;
	float: left;
}

#pageContent #contentLeft .red
{
	color: #B62909;
	font-weight: bold;
}

#pageContainer.home #pageContent #contentLeft
{
	width: 935px;
}

#pageContainer.home #pageContent #flash object
{
	margin-bottom: -5px;
}

#pageContent #contentRight
{
	float: right;
	padding-top: 60px;
}

#pageContainer.menus #pageContent #contentRight
{
	float: right;
	padding-top: 35px;
}

#pageContent #contentRight .menuNav
{
	display: block;
	width: 224px;
	background: url(../images/rightBottom.gif) bottom center no-repeat;
	padding-bottom: 14px;
	margin-bottom: 10px;
	font-size: 0.8em;
}

#pageContent #contentRight .menuNav .top
{
	display: block;
	width: 224px;
	height: 14px;
	background: url(../images/rightTop.gif) top center no-repeat;
}

#pageContent #contentRight .menuNav .body
{
	padding: 0 22px;
	background: url(../images/rightContent.gif) top center repeat-y;
	padding-bottom: 5px;
}

#pageContent #contentRight .menuNav .body .navigation
{
	margin: 0 0 15px 15px;
	list-style-type: none;
}

#pageContent #contentRight .menuNav h3
{
	font-size: 1.6em;
	margin-bottom: 0px;
}

#pageContent #contentRight .menuNav sup
{
	font-size: 0.6em;
	padding-left: 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 20px 0;
    padding: 0;
	font-size: 0.8em;
}

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

