/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/captainparkers.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 6803 $
$LastChangedDate: 2009-11-06 16:07:31 -0500 (Fri, 06 Nov 2009) $
*/

@import url(general.css);

/* GLOBAL. */

*
{
	margin: 0;
	padding: 0;
}

html,
body
{
	height: 100%;
}

body 
{
	background: #162f3f url('../images/body_bg.jpg') top repeat-y;	
	font: 80% Tahoma, Arial, Helvetica, sans-serif;
	color: #111;
	text-align: center;
}

p, div, table 
{
	font: 1em Tahoma, Arial, Helvetica, sans-serif;
	text-align: left;
}

img 
{
	border: none;
	
}

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

h1 
{
	font-size: 1.8em;
}

h2 
{
	font-size: 1.5em;
}

h3 
{
	font-size: 1.2em;
}

h4 
{
	font-size: 1em;
}

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 5px 3px 0;
}

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

.imgLeftRibbon
{
	padding: 4px;
	float:left;
	margin: 3px 5px 3px 0;
}

.clear
{
	clear: both;
	display: block;
}

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

p.citation
{
	font-weight: bold;
	color: #162F3F;
	line-height: 12px;
}

div.recipe
{
	margin-bottom: 20px;
	clear: both;
}

div.recipe img
{
	width: 150px;
	padding: 0 50px 20px 30px;
	float: right;
}

/* PAGE SECTIONS. */

/* Page container. */

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

/* Page top. */

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

#pageTop #logoLink
{
	position: absolute;
	left: inherit;
	background: url('../images/header_photos.jpg') right 12px no-repeat;
	width: 900px;
}

#pageTop #logoLink a
{
	width: 400px;
	height: 102px;
	display: block;
}

#pageTop #logoLink h1
{
	display: none;
}

#pageTop #contactTop
{
	background: url('../images/champs.jpg') top left no-repeat;
	position: relative;
	top: 9px;
	left: 490px;
	width: 400px;
	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;
}

/*
#pageTop #navTop ul
{
	position: relative;
	top: 18px;
	right: 20px;
	list-style: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.2em;
	_font-size: 1em;
	float: right;
}

#pageTop #navTop ul li
{
	display: inline;
}

#pageTop #navTop ul li.navSpacer
{
	padding: 0 12px;
	font-size: 1.1em;
	color: #79756e;
}

#pageTop #navTop ul li a:link,
#pageTop #navTop ul li a:visited
{
	color: #ffedc9;
}

#pageTop #navTop ul li a:hover,
#pageTop #navTop ul li a:active
{
	color: #ffb300;
}

*/

/* - - - 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
{
	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 10px 6px 10px;
	*padding: 5px 10px 7px 10px;
	_padding: 7px 9px 8px 9px;
}

.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: #7F0E1E;
}

.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: 24px;
}

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

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

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

#musicControls embed
{
	width: 94px;
	height: 18px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	border-right: solid 1px #162F3F;
	border-bottom: solid 1px #162F3F;
}

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

#pageContent #rightContent
{
	position: relative;
	border-top: 3px solid #a3aa95;
	float: right;
}

#pageContent .textArea
{
	padding: 12px 12px 8px 14px;
}

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

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

#pageContent .textArea ul
{
	margin: 0 0 16px 26px;
	/*list-style: url('../images/bullet.gif');*/
	list-style: square;
}

#pageContent .textArea table ul
{
	margin: 0 0 6px 0;
	list-style: none;
}

#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 #rightContent h1
{
	margin: 4px 0 8px 0;
}

#pageContent #rightContent h2
{
	margin: 4px 0 8px 0;
	font-size: 16px;
	color: #162F3F;
	font-weight: bold;
}

#pageContent #rightContent .indent
{
	margin: 5px 0 15px -70px;
	
}

#pageContent #rightContent img.imgRightTv
{
	background: #fff;
	padding: 4px;
	border: 1px solid #A3AA95;
	float:right;
	margin: -40px 10px 10px 0;
}

#pageContent #rightContent img.imgCenterBar
{
	background: #fff;
	padding: 4px;
	border: 1px solid #A3AA95;
	margin: 0 0 0 185px;
}

/* Menu Section New */

#pageContent #rightContent #menuList
{
	color: #7f0e1e;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 16px;	
}


#pageContent #rightContent #menu
{
	background-color:#BFD3DC;
	height:825px;
	width: 100%;
}



#pageContent #rightContent #menu .rightMenu

{
	float:right;
	width:45%;
	padding-right:10px;
}

#pageContent #rightContent #menu .leftMenu

{
	float:left;
	width:45%;
	padding-right:10px;
}

#pageContent #rightContent #menu .rightMenu li

{
	list-style:none;
}

#pageContent #rightContent #menu .leftMenu li

{
	list-style:none;
}

#pageContent #rightContent #menu .heading
{
	font-size: 16px;
	background-color:#7F0E1E;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#pageContent #rightContent #menu .leftMenu .item

{
	font-size: 16px;
/*	background-color:#162F3F; */
	color: #162F3F;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
}

#pageContent #rightContent #menu .rightMenu .item

{
	font-size: 16px;
/*	background-color:#162F3F; */
	color: #162F3F;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
}

#pageContent #rightContent #menu .rightMenu .subItem,  .leftMenu .subItem

{
	font-size: 14px;
	color: #162F3F;
	font-weight: normal;
	text-align: center;
}

/*
#pageContent #rightContent #menu .rightMenu .heading,  .leftMenu .heading

{
	font-size: 16px;
	background-color:#7F0E1E;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
*/
#pageContent #rightContent #menu .rightMenu .description
{
	
	margin-top:-8px;
	padding-left:10px;
	font-weight: normal;
	text-align: center;
	font-style:italic;
	color:#7F0E1E;
/*	min-height: 50px; */
}

#pageContent #rightContent #menu .leftMenu .description

{
	margin-top:-8px;
	padding-left:10px;
	font-weight: normal;
	text-align: center;
	font-style:italic;
	color:#7F0E1E;
/*	min-height: 50px; */
}



#pageContent #rightContent #menu .leftMenu .price

{
	margin-top:-26px;
	_margin-top:-18px;
	font-size: 12px;
	font-weight: bold;
	
}


#pageContent #rightContent #menu .leftMenu .subPrice

{
	margin-top:-25px;
	_margin-top: -37px;
	font-size: 12px;
	font-weight: bold;
}


#pageContent #rightContent #menu .rightMenu .price
{
	margin-top:-25px;
	_margin-top:-18px;
	font-size: 12px;
	font-weight: bold;
/*	padding: 0 0 12px 0; */
}

#pageContent #rightContent #menu .rightMenu .subPrice
{
	margin-top:-25px;
	_margin-top: -37px;
	font-size: 12px;
	font-weight: bold;
}


#pageContent #rightContent #menu ul
{
	list-style:none;

}


#pageContent #rightContent #menu ul li
{
	height:5px; 
	font-size: 12px;
	margin-top:-5px;
	padding: 0 0 12px 0;
	_padding: 0 0 3px 0;
	*padding: 0 0 3px 0;	
}
/*
#pageContent #rightContent #menu ul li em
{
	height:5px; 
	font-size: 14px;
	font-weight: bold;
	margin-top:-5px;
	padding: 0 0 0 0;
	_padding: 0 0 3px 0;
	*padding: 0 0 3px 0;	
}
*/

#pageContent #rightContent #menu ul li ul
{
	list-style:none;

}

.imgLeftMenu
{
/*	background: #fff;*/
	padding: 4px;
/*	border: 1px solid #A3AA95;*/
	float:left;
	margin: 3px 125px 3px 10px;
}

.imgRightMenu
{
/*	background: #fff;*/
	padding: 4px;
/*	border: 1px solid #A3AA95;*/
	float:right;
	margin: 3px 30px 3px 5px;
	_margin: 3px 30px 3px 15px;
}

.imgLeftBeer
{
	background: #fff;
	padding: 4px;
	border: 1px solid #A3AA95;
	float:left;
	margin: -40px 10px 10px 0;
}

#pageContent #rightContent .centerTitle
{
	text-align: center;
}

/* End Menu Section New */

#pageContent #rightContent p
{
	margin: 0 0 10px 5px;
	line-height: 17px;
}

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

#pageContent.homepage #rightContent
{
	width: 280px;
	_width: 277px;
	_position: relative;
	_left: -3px;
}

#pageContent.homepage #rightContent #famousChowder
{
	position: absolute;
	top: 359px;
}

#pageContent.homepage #leftContent
{
	width: 620px;
	padding-bottom: -3px;
}

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

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

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

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

#pageContent.homepage #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;
}

#pageContent.homepage #leftContent ul li span
{
	background: #7f0e1e;
	margin-top: -3px;
	*margin-top: 0;
	padding: 7px 4px 10px 8px;
	display: block;
	color: #ffedc9;
	line-height: 18px;
	white-space: normal;
}

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

#pageContent.inside #rightContent
{
	_background: #ffedc9;
	_margin-left: -3px;
	min-height: 528px; 
	_height: 528px;
	width: 719px;
	border-left: 1px solid #002938;
}

#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;
	*margin-bottom: 0;
}

#pageContent.inside #leftContent ul li h3 
{
	background: url('../images/grad.jpg') top repeat-x;
	color: #ffedc9;
}

#pageContent.inside #leftContent ul li h3 a
{

	padding: 2px 4px 0 8px;
	height: 28px;
	line-height: 26px;
	font-size: 0.95em;
	color:#fffff;
}

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

/* Blog Styles */

#blog_nav
{
	margin-bottom: 16px;
	border-bottom: 1px solid #A3AA95;
	text-transform: uppercase;
	font-weight: bold;
}

#blog_nav span
{
	font-size: 0.9em;
}

#blog_nav a
{
	border: none !important;
}

#blog_nav #link_right
{
	float: right;
}

#blog_nav #link_left
{
	float: left;
}

#user_nav
{
	position: absolute;
	top: 10px;
	right: 0;
	background: url('../images/grad.jpg') 0 -3px repeat-x;
	padding: 4px 7px 5px;
	color: #fff;
}

#user_nav a:link,
#user_nav a:visited
{
	color: #fff;
}
/* End Blog Styles */

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