/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/samdiegos.com/trunk/web/common/stylesheets/frontend_screen.css $
$LastChangedRevision: 6992 $
$LastChangedDate: 2010-03-01 18:03:05 -0500 (Mon, 01 Mar 2010) $
*/

@import url(general.css);

/* GLOBAL. */

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

html,
body
{
    height: 100%;
}

body
{
    margin: 0;
    padding: 0;
	background: url(../images/body_bk.jpg);
}

.clear
{
	clear: both;
}

.noStyles
{
	visibility: hidden;
}

p, div, table
{
	font-family: 'Comic Sans MS', 'ChalkboardSE-Regular', 'ChalkboardSE', sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.5em;
	font-size-adjust: none;
	font-stretch: normal;
	-x-system-font: none;
	text-align: left;
}

a img
{
	border: 0;
}

.imgRight
{
	float: right;
	margin: 5px 0 5px 5px;
}

.imgLeft
{
	float: left;
	margin: 5px 5px 5px 0px;
}

.imgCenter
{
	display: block;
	margin: 0 auto;
	text-align: center;
}

.border
{
	border: solid 2px #3E7C55;
}

.squeeze
{
	letter-spacing: -0.5px;
	*letter-spacing: -1px;
}

.halfMargin
{
	margin-bottom: 9px !important;
}

ul.inlineList
{
	list-style-type: none
}

ul.inlineList li
{
	display: inline;
}

h1, h2, h3, h4
{
	font-weight: bold;
	line-height: 1.25em;
}

h1
{
	font-size: 1.65em;
	color: #E76331;
}

h2
{
	font-size: 1.45em;
	color: #003660;
}

h3
{
	font-size: 1.15em;
}

h4
{
	font-size: 1.15em;
	color: #003660;
}

/* PAGE SECTIONS. */

/* Page container. */

#pageContainer
{
    position: relative;
    min-height: 100%;
    margin: 0 auto;
	width: 960px;
	display: block;
}

/* Page top. */

#pageTop
{
	background: url(../images/navbk.gif) no-repeat;
	display: block;
	width: 733px;
	height: 60px;
	margin-top: 15px;
}

sup.pdf
{
	color: #E76331;
	font-family: sans-serif;
	font-weight: normal;
	margin-left: 5px;
	font-size: 0.5em;
	*font-size: 0.6em;
}

#pageTop a:hover sup.pdf
{
	font-style: normal;
}

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
	z-index: 5;
}

.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 .contact ul {
	padding-right: 5px;
}

.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: 25px;
	margin-left: 40px;
	_margin-left: 0;
	_left: 40px;
}

.menu ul
{
	margin-top: 0px;
}

.menu li
{
	margin-right: 27px;
}

.menu .contact li
{
	margin-right: 0px;
}

.menu li a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
}

.menu li li a {
	color: #000;
	font-weight: bold;
	padding-left: 27px;
	height: 20px;
	line-height: 20px;
}

.menu li:hover>a {

}

.menu a:hover {
	text-decoration: none;
}

.menu li li a:hover {
	background-image: none;
	background-color: #fff;
	font-style: italic;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #2D1B00;
	background: #F5EFE1;
}
.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%;
}

.menu .home
{
	display: block;
	height: 24px;
	width: 65px;
	background: url(../images/nav/home.jpg) no-repeat;
	background-position: 0px -24px;
}

.menu .home:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #E5CD04;
}

.menu .about
{
	display: block;
	height: 24px;
	width: 64px;
	background: url(../images/nav/about.jpg) no-repeat;
	background-position: 0px -24px;
}

.menu .about:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #E4A40C;
}

.menu .about ul li
{
	width: 175px;
	background: #F5EFE1 url(../images/nav/about.gif) top left no-repeat;
}

.menu .about ul li a:hover
{
	background: #fff url(../images/nav/about.gif) top left no-repeat;
}

.menu .grub
{
	display: block;
	height: 24px;
	width: 71px;
	background: url(../images/nav/menus.jpg) no-repeat;
	background-position: 0px -24px;
}

.menu .grub:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #620770;
}

.menu .grub ul li
{
	width: 205px;
	background: #F5EFE1 url(../images/nav/menus.gif) top left no-repeat;
}

.menu .grub ul li a:hover
{
	background: #fff url(../images/nav/menus.gif) top left no-repeat;
}

.menu .promotions
{
	display: block;
	height: 24px;
	width: 124px;
	background: url(../images/nav/promos.jpg) no-repeat;
	background-position: 0px -24px;
}

.menu .promotions:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #EA5D1E;
}

.menu .promotions ul li
{
	width: 195px;
	background: #F5EFE1 url(../images/nav/promos.gif) top left no-repeat;
}

.menu .promotions ul li a:hover
{
	background: #fff url(../images/nav/promos.gif) top left no-repeat;
}

.menu .store
{
	display: block;
	height: 24px;
	width: 122px;
	background: url(../images/nav/store.jpg) no-repeat;
	background-position: 0px -24px;
}

.menu .store:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #6EB758;
}

.menu .store ul li
{
	width: 210px;
	background: #F5EFE1 url(../images/nav/store.gif) top left no-repeat;
}

.menu .store ul li a:hover
{
	background: #fff url(../images/nav/store.gif) top left no-repeat;
}

.menu .contact
{
	display: block;
	height: 24px;
	width: 82px;
	background: url(../images/nav/contact.jpg) no-repeat;
	background-position: 0px -24px;
}

.menu .contact:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #E22780;
}

.menu .contact ul li
{
	width: 125px;
	background: #F5EFE1 url(../images/nav/contact.gif) top left no-repeat;
}

.menu .contact ul li a:hover
{
	background: #fff url(../images/nav/contact.gif) top left no-repeat;
}

/* Default Navigation */

.menu .defaultHyannis
{
	display: block;
	height: 27px;
	width: 317px;
	background: url(../images/nav/defaultHyannis.jpg) no-repeat;
	background-position: 0px 0px;
	left: -10px;
	top: -3px;
}

.menu .defaultHyannis:hover
{
	background-position: 0px -27px;
	border-bottom: 5px solid #D20432;
}

.menu .defaultPlymouth
{
	display: block;
	height: 27px;
	width: 333px;
	background: url(../images/nav/defaultPlymouth.jpg) no-repeat;
	background-position: 0px 0px;
	margin-right: 0;
	left: -7px;
	top: -3px;
}

.menu .defaultPlymouth:hover
{
	background-position: 0px -27px;
	border-bottom: 5px solid #FF9806;
}

/* Page bottom. */


#pageBottom
{
    clear: both;
	background: url(../images/footer.gif) no-repeat;
	display: block;
	width: 655px;
	height: 73px;
	padding: 5px 0px 5px 75px;
	text-align: left;
}

#pageBottom ul, #pageBottom p
{
	font-size: 12px;
	display: inline;
}

#pageBottom li
{
	display: inline;
	list-style: none;
}

#pageBottom .footerLinks
{
	margin-right: 40px;
}

#pageBottom .copyright
{
	margin-right: 40px;
}

#pageBottom .siteLastUpdated
{
	margin-right: 40px;
}

/* Left content. */

#leftContent
{
	float: left;
	width: 223px;
}

#leftContent #logoLink img
{
	padding: 8px 0px 0px 0px;
}

#leftContent #logoLink
{
	margin-bottom: 15px;
}

#leftContent div.locale
{
	text-align: center;
	background: url(../images/locale.gif) center center no-repeat;
	display: block;
	height: 56px;
	width: 189px;
	padding: 12px 0 0 0;
	margin: 0 auto 10px auto;
}

#leftContent div.locale p
{
	text-align: center;
}

#leftContent ul.inlineList
{
	font-weight: bold;
}

#leftContent ul.inlineList li
{
	margin: 0 5px;
}

#leftContent ul.inlineList li a
{
   color: #3B921D;
}

#leftContent ul.inlineList li a:hover
{
   color: #32ACA9;
}

#leftContent ul.inlineList li.break
{
	margin: 0px;
	font-weight: normal;
}

#leftContent #address
{
	background: url(../images/address.gif) no-repeat;
	display: block;
	width: 189px;
	height: 124px;
	padding-top: 10px;
	margin: 0 auto;
	_padding-top: 13px;
}

#leftContent #address p
{
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	line-height: 1.35em;
}

#leftContent #address p.title
{
	font-variant: small-caps;
	font-size: 14px;
	_font-size: 13px;
}

#leftContent #address .location
{
	margin-bottom: 10px;
}

#leftContent #address .imgSecure
{
	float: left;
	position: relative;
	top: 5px;
	margin: 0 2px 0 5px;
}

#leftContent #address p.instruction
{
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-weight: normal;
	float: left;
	display: block;
	width: 100px;
	font-size: 10px;
}

#leftContent #address a
{
	color: #3B921D;
}

#leftContent #address a:hover
{
	color: #32ACA9;
}

#leftContent .facebook
{
	margin: 20px 30px 10px 0;
	width: 90px;
	float: right;
}

#leftContent .facebookIcon
{
	margin-left: 40px;
}
/* Hyannis Menu Navigation on Left */

#menuWrapper
{
	position: relative;
	top: -25px;
}

#pageContainer.menuHyannis #leftContent #leftMenuTop
{
	background: url(../images/leftmenu_top.jpg) no-repeat;
	display: block;
	width: 207px;
	height: 61px;
	position: relative;
	bottom: -40px;
	margin: 0 auto;
	text-align: center;
}

#pageContainer.menuHyannis #leftContent #leftMenuBottom
{
	background: url(../images/leftmenu_bottom.jpg) no-repeat;
	display: block;
	width: 207px;
	height: 47px;
	position: relative;
	top: -25px;
	margin: 0 auto;
	text-align: center;
}

#pageContainer.menuHyannis #leftContent #leftMenu
{
	background: url(../images/leftnav_tile_sml.gif) repeat-y;
	display: block;
	width: 207px;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 5px 0px;
}

#pageContainer.menuHyannis #leftContent #leftMenu ul
{
	list-style-type: none;
	line-height: 1.5em;
}

#pageContainer.menuHyannis #leftContent #leftMenu ul ul
{
	text-align: left;
	font-size: 14px;
	line-height: 1.5em;
	margin-left: 20px;
	margin-bottom: 10px;
	padding-left: 5px;
	border-left: 3px double #AA7A32;
	position: relative;
	z-index: 5;
	_height: 14px !important;
	_line-height: 14px !important;
}

#pageContainer.menuHyannis #leftContent #leftMenu ul ul li a
{
	text-align: left !important;
}

#pageContainer.menuHyannis #leftContent #leftMenu ul ul li
{
	*height: 18px !important;
	*line-height: 14px !important;
}

#pageContainer.menuHyannis #leftContent #leftMenu ul ul a
{
	background: none !important;
	*width: 180px !important;
	*height: 18px !important;
	*line-height: 14px !important;
}

#pageContainer.menuHyannis #leftContent #leftMenu ul ul a:hover
{
	color: #AA7A32;
	text-decoration: underline;
	border: none !important;
	*height: 18px !important;
	*line-height: 14px !important;
}

#pageContainer.menuHyannis #leftContent #leftMenu a
{
	display: block;
	color: #342309;
	text-decoration: none;
}

#pageContainer.menuHyannis #leftContent #leftMenu a:hover
{
	color: #AA7A32;
	text-decoration: none;
}

/* Hyannis Left Menu Headers */

#pageContainer.menuHyannis #leftContent #leftMenu .main a
{
	display: block;
	height: 25px;
	width: 143px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/main.jpg) no-repeat center;
	background-position: 0px -25px;
	position: relative;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .main a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #E70216;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuHyannis #leftContent #leftMenu .main ul a:hover
{
	*top: 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .lunch a
{
	display: block;
	height: 25px;
	width: 157px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/lunch.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .lunch a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #67C20F;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuHyannis #leftContent #leftMenu .lunch ul a
{
	*top: 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .kids a
{
	display: block;
	height: 25px;
	width: 137px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/kids.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .kids a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #930979;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuHyannis #leftContent #leftMenu .kids ul a:hover
{
	*top: 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .dessert a
{
	display: block;
	height: 25px;
	width: 170px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/dessert.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .dessert a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #FF7B18;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuHyannis #leftContent #leftMenu .dessert ul a:hover
{
	*top: 0;
}

/*

DrinkS menu

#pageContainer.menuHyannis #leftContent #leftMenu .drinks a
{
	display: block;
	height: 25px;
	width: 164px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/drinks.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 3px 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .drinks a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #FFA5A0;
	margin-bottom: 5px;
	*margin: 5px 0 0 0;
	*position: relative;
	*top: 3px;
	_top: 2px;
}

#pageContainer.menuHyannis #leftContent #leftMenu .drinks ul a:hover
{
	*top: 0;
}

*/

/* Drink Menu */

#pageContainer.menuHyannis #leftContent #leftMenu .drinks a
{
	display: block;
	height: 25px;
	width: 154px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/drink.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 3px 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .drinks a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #FFA5A0;
	margin-bottom: 5px;
	*margin: 5px 0 0 0;
	*position: relative;
	*top: 3px;
	_top: 2px;
}

#pageContainer.menuHyannis #leftContent #leftMenu .drinks ul a:hover
{
	*top: 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .active a
{
	background-position: 0px 0px !important;
	border: 0 !important;
	margin-bottom: 10px !important;
	*line-height: 25px;
	*margin-bottom: 0;
}

#pageContainer.menuHyannis #leftContent #leftMenu .active a:hover
{
	background-position: 0px 0px !important;
	border: 0 !important;
	margin-bottom: 10px !important;
	*position: relative;
	*top: 0;
	*line-height: 25px;
	*margin-bottom: 0;
}

/* Plymouth Menu Navigation on Left */

#pageContainer.menuPlymouth #leftContent #leftMenuTop
{
	background: url(../images/leftmenu_top.jpg) no-repeat;
	display: block;
	width: 207px;
	height: 61px;
	position: relative;
	bottom: -40px;
	margin: 0 auto;
	text-align: center;
}

#pageContainer.menuPlymouth #leftContent #leftMenuBottom
{
	background: url(../images/leftmenu_bottom.jpg) no-repeat;
	display: block;
	width: 207px;
	height: 47px;
	position: relative;
	top: -25px;
	margin: 0 auto;
	text-align: center;
}

#pageContainer.menuPlymouth #leftContent #leftMenu
{
	background: url(../images/leftnav_tile_sml.gif) repeat-y;
	display: block;
	width: 207px;
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 5px 0px;
}

#pageContainer.menuPlymouth #leftContent #leftMenu ul
{
	list-style-type: none;
	line-height: 1.5em;
}

#pageContainer.menuPlymouth #leftContent #leftMenu ul ul
{
	text-align: left;
	font-size: 14px;
	line-height: 1.5em;
	margin-left: 20px;
	margin-bottom: 10px;
	padding-left: 5px;
	border-left: 3px double #AA7A32;
	position: relative;
	z-index: 5;
	_height: 14px !important;
	_line-height: 14px !important;
}

#pageContainer.menuPlymouth #leftContent #leftMenu ul ul li a
{
	text-align: left !important;
}

#pageContainer.menuPlymouth #leftContent #leftMenu ul ul li
{
	*height: 18px !important;
	*line-height: 14px !important;
}

#pageContainer.menuPlymouth #leftContent #leftMenu ul ul a
{
	background: none !important;
	*width: 180px !important;
	*height: 18px !important;
	*line-height: 14px !important;
}

#pageContainer.menuPlymouth #leftContent #leftMenu ul ul a:hover
{
	color: #AA7A32;
	text-decoration: underline;
	border: none !important;
	*height: 18px !important;
	*line-height: 14px !important;
}

#pageContainer.menuPlymouth #leftContent #leftMenu a
{
	display: block;
	color: #342309;
	text-decoration: none;
}

#pageContainer.menuPlymouth #leftContent #leftMenu a:hover
{
	color: #AA7A32;
	text-decoration: none;
}

/* Hyannis Left Menu Headers */

#pageContainer.menuPlymouth #leftContent #leftMenu .main a
{
	display: block;
	height: 25px;
	width: 143px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/main.jpg) no-repeat center;
	background-position: 0px -25px;
	position: relative;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .main a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #E70216;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .main ul a:hover
{
	*top: 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .lunch a
{
	display: block;
	height: 25px;
	width: 157px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/lunch.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .lunch a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #67C20F;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .lunch ul a
{
	*top: 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .kids a
{
	display: block;
	height: 25px;
	width: 137px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/kids.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .kids a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #930979;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .kids ul a:hover
{
	*top: 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .dessert a
{
	display: block;
	height: 25px;
	width: 170px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/dessert.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 0 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .dessert a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #FF7B18;
	margin-bottom: 5px;
	*margin: 5px 0 -2px 0;
	*position: relative;
	*top: 3px;
	_margin: 5px 0 -3px 0;
	_top: 2px;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .dessert ul a:hover
{
	*top: 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .drinks a
{
	display: block;
	height: 25px;
	width: 164px;
	text-align: center;
	margin: 5px auto 10px auto;
	background: url(../images/leftmenu/drink.jpg) no-repeat;
	background-position: 0px -25px;
	position: relative;
	z-index: 5;
	*line-height: 25px;
	*margin: 5px 0 2px 0;
	*padding: 0 0 0 0;
	_margin: 5px 0 3px 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .drinks a:hover
{
	background-position: 0px 0px;
	border-bottom: 5px solid #FFA5A0;
	margin-bottom: 5px;
	*margin: 5px 0 0 0;
	*position: relative;
	*top: 3px;
	_top: 2px;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .drinks ul a:hover
{
	*top: 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .active a
{
	background-position: 0px 0px !important;
	border: 0 !important;
	margin-bottom: 10px !important;
	*line-height: 25px;
	*margin-bottom: 0;
}

#pageContainer.menuPlymouth #leftContent #leftMenu .active a:hover
{
	background-position: 0px 0px !important;
	border: 0 !important;
	margin-bottom: 10px !important;
	*position: relative;
	*top: 0;
	*line-height: 25px;
	*margin-bottom: 0;
}

/* Auxilary Navigation */

#leftContent #auxNav
{
	background: url(../images/leftnav.gif) no-repeat;
	display: block;
	width: 207px;
	height: 517px;
	padding-top: 20px;
	margin: 0 auto;
	text-align: center;
}

#leftContent #auxNav #giftCard
{
	display: block;
	width: 174px;
	height: 149px;
	background: url(../images/leftnav/giftcard.jpg) 50% 50% no-repeat;
	margin: 0 auto;
	_margin: -10px auto 0 auto;
}

#leftContent #auxNav #giftCard .link
{
	display: block;
	width: 195px;
	height: 170px;
	margin: 0 auto;
}

#leftContent #auxNav #giftCard .link:hover
{
	background: url(../images/giftcard_hover.gif) -3px 140px no-repeat;
	_background: url(../images/giftcard_hover.gif) 9px 148px no-repeat;
}

/* Left Navigation */

#leftContent #auxNav #winDinner
{
	display: block;
	width: 174px;
	height: 151px;
	background: url(../images/leftnav/windinnermovie.jpg) no-repeat;
	margin: 0 auto;
}

#leftContent #auxNav #winDinner .link
{
	display: block;
	width: 174px;
	height: 151px;
	margin: 0 auto;
}

#leftContent #auxNav #winDinner .link:hover
{
	background: url(../images/win_hover2.gif) no-repeat;
}

/* Plymouth Specific Styles */

#leftContent #auxNav #photoGalleryPlymouth
{
	display: block;
	width: 174px;
	height: 151px;
	background: url(../images/leftnav/plymouthphoto2.jpg) no-repeat;
	margin: 0 auto;
}

#leftContent #auxNav #photoGalleryPlymouth .link
{
	display: block;
	width: 174px;
	height: 151px;
	margin: 0 auto;
}

#leftContent #auxNav #photoGalleryPlymouth .link:hover
{
	background: url(../images/photo_hover.gif) 6px 114px no-repeat;
}

#leftContent #auxNav #mailingListPlymouth
{
	display: block;
	width: 190px;
	height: 157px;
	background: url(../images/leftnav/plymouthjoin.jpg) 50% 50% no-repeat;
	margin: 0 auto;
}

#leftContent #auxNav #mailingListPlymouth .link
{
	display: block;
	width: 200px;
	height: 157px;
	margin: 0 auto;
}

#leftContent #auxNav #mailingListPlymouth .link:hover
{
	background: url(../images/join_hover.gif) 3px 111px no-repeat;
	_background: url(../images/join_hover.gif) 7px 111px no-repeat;
}

/* Hyannis Specific Styles */

#leftContent #auxNav #photoGalleryHyannis
{
	display: block;
	width: 174px;
	height: 151px;
	background: url(../images/leftnav/hyannisphoto2.jpg) no-repeat;
	margin: 0 auto;
}

#leftContent #auxNav #photoGalleryHyannis .link
{
	display: block;
	width: 174px;
	height: 151px;
	margin: 0 auto;
}

#leftContent #auxNav #photoGalleryHyannis .link:hover
{
	background: url(../images/photo_hover.gif) 6px 114px no-repeat;
}

#leftContent #auxNav #mailingListHyannis
{
	display: block;
	width: 190px;
	height: 157px;
	background: url(../images/leftnav/hyannisjoin.jpg) 50% 50% no-repeat;
	margin: 0 auto;
}

#leftContent #auxNav #mailingListHyannis .link
{
	display: block;
	width: 200px;
	height: 157px;
	margin: 0 auto;
}

#leftContent #auxNav #mailingListHyannis .link:hover
{
	background: url(../images/join_hover.gif) 3px 111px no-repeat;
	_background: url(../images/join_hover.gif) 7px 111px no-repeat;
}

/* Right content. */

#rightContent
{
	width: 733px;
	display: block;
	float: right;
}

/* Page content. */

#pageContent
{
	background: url(../images/pagecontent2.gif) repeat-y;
	padding: 5px 18px 5px 18px;
	min-height: 670px;
	_height: 670px;
}

#pageContent h1.pageTitle
{
	color: #000;
}

#pageContent a, #pageBottom a
{
	color: #3B921D;
}

#pageContent a:hover, #pageBottom a:hover
{
	color: #32ACA9;
}

#pageContent p
{
	margin-bottom: 18px;
}

#pageContent ul
{
	margin: 0 0 18px 50px;
}

#pageContent .nomargin
{
	margin-bottom: 0;	
}

#pageContent .generalInfo
{
	background: #F5EFE1;
	font-weight: bold;
	padding: 5px 8px;
	width: 370px;
	border: 2px solid #fff;
	clear: left;
}

#pageContent .generalInfo .creditcard
{
	display: inline;
	padding-top: 8px;
}

#pageContent .generalInfo p
{
	margin: 0 0 0 0;
}

#pageContent .awards
{
	width: 375px;
}

#pageContent .awards .awardHeader
{
	font-weight: bold;
	line-height: 1.25em;
	font-size: 1.45em;
	color: #003660;
	padding-bottom: 3px;
}

#pageContent .readersChoice
{
	padding-right: 10px;
}

#pageContent .longer
{
	margin-bottom: 30px;
}

#pageContent .functions
{
	font-size:1.2em;
}

#pageContent .testimonialName
{
	text-align: right;
	font-weight: bold;
	color: #620770;
	font-size: 16px;
	margin-right:30px;
}

#pageContainer.home #rightContent #pageContent p img.hat
{
	position: relative;
	bottom: 20px;
	margin-right: 10px;	
}

/* Functions Navigation */

/*
#pageContent #partyNavigation
{
	position: absolute;
	top: 125px;
}
*/

#pageContent #partyNavigation ul
{
	margin-left: 0;
	font-size: .9em;
	text-align: center;
}

#pageContent #partyNavigation ul li
{
	display: inline;
	list-style-type: none;
}

#pageContent #partyNavigation ul li.spacer
{
	padding: 0 3px;
}

#pageContent #partyNavigation ul li.spacer2
{
	padding: 0 10px;
}

/* Group Dinner Function Page */

.copycath3 
{
	color: #003660;
	font-variant: small-caps;
	background-image: url(../images/menuSymbols/rotator.php);
	background-repeat: no-repeat;
	padding: 12px 0 0 30px;
	font-weight: bold;
	line-height: 1.25em;
	font-size: 1.15em;

}

.copycatprice
{
	font-weight: bold;
	font-size: 14px;
	color: #E76329;
	margin-bottom: 0px !important;	
}

.functionDescription
{
	margin: 0 0 0 0 !important;
}

.and
{
	margin-left: 100px;
}

/* Hors D'ouevres Page */

.app
{
	margin: 0 0 0 0 !important;
	font-weight: bold;
	font-size: 1.1em;
}

.copycatprice2
{
	font-weight: bold;
	font-size: 14px;
	color: #E76329;
	margin-bottom: 18px;
}

.line
{
	border-bottom: 2px dashed #E76329;
	padding-bottom: 15px;
}

/* Sammie's Party Pack Page */

.addlcharge

{
	font-size: .8em;
	font-variant: small-caps;
	margin: 10px 0 0 40px;
}

/* FAQ Page */

#pageContainer.customerService_faq #rightContent #pageContent p
{
	margin-bottom: 7px !important;
}

#pageContent .indent
{
	margin-left: 30px;
}

#pageContent .question
{
	color: #580078;
	font-size: 18px;
}


/* 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 1em 0;
    padding: 0;
	font-weight: bold;
}

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

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

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

#pageContainer {
	padding-bottom: 40px;
}

#coupon {
	text-align: center;
	padding: 20px;
	color: #fff;
	display: block;
	position: fixed;
	bottom: 0;
	width: 100%;
	left: 0;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	background: #E76331;
	box-shadow: 0 -5px 10px rgba(0,0,0,0.5);
	text-decoration: none;
	font-size: 1.15em;
	z-index: 999;
}
