/* Start of CMSMS style sheet 'morgan_css' */
/*****************************************************
RESET
******************************************************/
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,
acronym,address,big,cite,code,del,dfn,em,font,
img,ins,kbd,q,s,samp,small,strike,strong,sub,
sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,
form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote,q {quotes:none;}
blockquote:before,
blockquote:after,
q:before,
q:after{
	content:'';
	content:none;
	}
:focus{outline:0;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{
	border-collapse:collapse;
	border-spacing:0;
	}
/*************************************************************
TEXT
**************************************************************/
body {
	font:13px/1.4 arial,helvetica,clean,sans-serif;
}
/* base.css, part of YUI's CSS Foundation */
h1 {
	/*18px via YUI Fonts CSS foundation*/
	font-size:138.5%;  
}
h2 {
	/*16px via YUI Fonts CSS foundation*/
	font-size:123.1%; 
}
h3 {
	/*14px via YUI Fonts CSS foundation*/
	font-size:108%;  
}
h1,h2,h3 {
	/* top & bottom margin based on font size */
	margin:1em 0;
}
h1,h2,h3,h4,h5,h6,strong {
	/*bringing boldness back to headers and the strong element*/
	font-weight:bold; 
}
abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {
	/*bringing italics back to the em element*/
	font-style:italic;
}
ol{list-style: decimal;}
ul{list-style: disc;}
li{margin-left: 30px;}
blockquote {margin-left: 1.4em}
dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {padding:.5em;}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	margin-bottom: 5px;
	text-align: left;
	font-weight:bold;
}
p,fieldset,table {margin-bottom:1em;}
div {font-size: 1em;}
img {border: 0;}
/***********************************************************
BASIC LAYOUT : JQUERY PLUGIN : OVERLAY
************************************************************/

/* the overlayed element */
div.overlay {
	
	/* growing background image */
	background-image:url(images/plugins/white.png);
	
	/* dimensions after the growing animation finishes  */
	width:600px;
	height:470px;		
	
	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(images/plugins/close.png);
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* black */
div.overlay.black {
	background:url(images/plugins/transparent.png) no-repeat !important;
	color:#fff;
}

/* petrol */
div.overlay.petrol {
	background:url(images/plugins/petrol.png) no-repeat !important;
	color:#fff;
}

div.black h2, div.petrol h2 {
	color:#ddd;		
}
/***********************************************************
BASIC LAYOUT : JQUERY PLUGIN : TABS
************************************************************/
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	border-bottom:1px solid #666;	
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	background: url(images/plugins/blue.png) no-repeat -420px 0;
	font-size:11px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 134px;
	text-align:center;	
	text-decoration:none;
	color:#333;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;
	color: #ffffff;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: -420px -31px;	
	color:#fff;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: -420px -62px;		
	cursor:default !important; 
	color:#ffffff !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabs a.w1			{ background-position: -553px 0; width:81px; }
ul.tabs a.w1:hover 	{ background-position: -553px -31px; }
ul.tabs a.w1.current  { background-position: -553px -62px; }

/* width 2 */
ul.tabs a.w2			{ background-position: -248px -0px; width:174px; }
ul.tabs a.w2:hover 	{ background-position: -248px -31px; }
ul.tabs a.w2.current  { background-position: -248px -62px; }


/* width 3 */
ul.tabs a.w3 			{ background-position: 0 -0px; width:248px; }
ul.tabs a.w3:hover 	{ background-position: 0 -31px; }
ul.tabs a.w3.current { background-position: 0 -62px; }


/* initially all panes are hidden */ 
div.panes div {
	display:none;		
}
/*****************************************
BASIC LAYOUT : JQUERY PLUGIN : SCROLL
******************************************/
div.scrollable {
	position:relative;
	overflow:hidden;	
	width: 692px;	
	height: 265px;	
	display: block;
	margin: 0px auto 15px auto;
	padding: 5px 0px;	
	border:3px solid #4e2617;
}
div.scrollable div.items {	
	/* this cannot be too large */
	position:absolute;
	width: 20000em;
	clear:both;
	margin: 0;
	padding: 0;
}



/* active item */
div.scrollable div.items div.active {

}

/* this makes it possible to add next button beside scrollable */


/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:16px;
	height:16px;
	background:url(images/left.gif) no-repeat;
	margin:2px 0 0 0;
	cursor:pointer;
	float: left;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -16px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
	background-image:url(images/right.gif);

}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {

	width: auto;
	height:20px;
	display: block;
	float: left;
	margin-bottom: 5px;
}


/* items inside navigator */
div.navi a {
	width:16px;
	height:16px;
	float:left;
	margin:3px;
	background:url(images/navigator.gif) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -16px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -32px;     
}
/**********************************************
BASIC LAYOUT : JQUERY PLUGINS : TABS
***********************************************/
/*************************************************************
BASIC LAYOUT : FORMS
**************************************************************/
/* Fieldsets,legend,label */
fieldset { 
	clear:both;
	padding: 1.4em;
	margin:0 0 30px .3em;
	border:1px solid #ccc;
	width: 90%;
	}
fieldset div {
	width: 100%;
	margin-bottom: 8px;
}
legend { 
	margin: 12px;
	padding: 5px 12px;
	font-weight:bold;
	font-size: 108%;
	text-transform:capitalize;
	background-color: transparent;
	}
label { 
	float:left;
	width:28%;
	margin-top:6px;
	text-align:right;
	font-size:12px;
	font-weight:bold;
	}
input,
textarea,
select { 
	width:60%;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-border-radius:4px;
	font-size:1.1em;
	color:#666;
	margin-left:20px;
	padding:5px;
	font-family:"Lucida Grande","Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
	z-index:100 !important;
	position:relative;
	border-collapse:collapse;
	}
input { 
	border:2px solid #ccc;
	background-color:#fff; 
	}
input:focus,
textarea:focus { 
	border:2px solid #666;
	background:#fff; 
	}
input[type="radio"],
input[type="checkbox"],
.ie6_checkbox { 
	background:transparent !important;
	border:0 !important;
	width:16px !important; 
	}
input[type="radio"] { 
	width:13px !important; 
	}
button { outline:none; }

/* Textareas */
textarea { 
	height:150px;
	padding:5px;
	border:2px solid #ccc;
	font-size:1.1em;
	color:#666;
	background-color:#fff; 
	}

/* Select fields */
select { 
	border:2px solid #ccc;
	background:#fff;
	width:63%;
	padding:2px; 
	}
select:focus { 
	border:1px solid #999;
	background:#fff; 
	}

/* required elements */
.indicates-required { 
	margin:0 6% 10px 0;
	text-align:right;
	font-size:90%;
	font-style:italic;
	color:#c60; 
	}
span.required,
label sup { 
	color:#c60;
	font-weight:bold;
	font-size:115%; 
	}

/* general form utility */
/* Check Box in Fieldset utitlity */
.checkboxradio {
	margin-left: 28%;
}
.checkboxradio label {
	width: auto !important;
	float: none;
	margin-bottom: 8px;
}
div.fbsubmit {
	margin: 10px 0px;
	width: 100%;
}
.btn,
div.fbsubmit input,
input[type="submit"] { 
	display:block;
	width:auto !important;
	min-width:120px;
	margin:0;
	background:#eee;
	border:3px solid #666;
	font-size:120%;
	font-weight:bold;
	letter-spacing:0;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-border-radius:4px; 
	}
.btn:hover,
div.fbsubmit input:hover,
input[type="submit"]:hover { 
	background:#666;
	border:3px solid #333;
	color:#fff; 
	}
input[type="submit"].cancel { 
	margin-left:15px;
	background:#ccc;
	color:#666 !important;
	border:3px solid #ccc; 
	}
input[type="submit"].cancel:hover { 
	color:#333 !important; 
	}
.field-help { 
	float:right;
	min-width:120px;
	margin:-10px 5.5% 4px 34%;
	padding:12px 5px 4px;
	background:#ccc;
	color:#666;
	font-style:italic;
	font-size:85%;
	text-align:center;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-border-radius:4px;
	position:absolute;
	right:10px;
	top:30px; 
	}


/* Success,error & notice boxes for messages and errors. */
.error,
.warning,
.success { 
	padding:10px 4px 10px 60px;
	margin-bottom:1em;
	border:1px solid #ddd;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-border-radius:4px; 
	}
.error_message {
	background:#FFF6BF;
	color:#D12F19;
	border: 1px solid #FBC2C4;
	padding: 15px 15px 15px 20px;
	margin: 0px 0px 15px 0px;
	width: 90%;
}
.error{
	background:#FFF6BF url(images/cms/icons/flag_24.png) no-repeat 14px 50%;
	color:#D12F19;
	border-color:#FBC2C4; 
	}

/*Fix to work w/ jquery validation class*/
input.error,
textarea.error,
select.error { 
	background-color:#fff;
	background-image:none;
	padding:5px;
	border:2px solid #CCCCCC;
	color:#666666; 
	}
input.error:focus { 
	border:2px solid #a2bede;
	background:#def3f7; 
	}
label.error { 
	display:block;
	margin: 1.1em 0 0 33%;
	padding: 15px 10px 15px 50px;
	text-align:left;
	position:relative;
	top:-15px;
	background-position: 12px 50% !important;
	color:#D12F19;
	width: 48%;
	z-index:50;
	line-height: 1.5;
	}
div.fb_invalid {
	margin: 0;
}

/*****************************
GRID
*****************************/

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_12 {
	margin-left: auto;
	margin-right: auto;
	width: 1008px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12	 {
	display:inline;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .grid_1 {
	width:64px;
}

.container_12 .grid_2 {
	width:148px;
}

.container_12 .grid_3 {
	width:232px;
}

.container_12 .grid_4 {
	width:316px;
}

.container_12 .grid_5 {
	width:400px;
}

.container_12 .grid_6 {
	width:484px;
}

.container_12 .grid_7 {
	width:568px;
}

.container_12 .grid_8 {
	width:652px;
}

.container_12 .grid_9 {
	width:736px;
}

.container_12 .grid_10 {
	width:820px;
}

.container_12 .grid_11 {
	width:904px;
}

.container_12 .grid_12 {
	width:988px;
}



/* Prefix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .prefix_1 {
	padding-left:84px;
}

.container_12 .prefix_2 {
	padding-left:168px;
}

.container_12 .prefix_3 {
	padding-left:252px;
}

.container_12 .prefix_4 {
	padding-left:336px;
}

.container_12 .prefix_5 {
	padding-left:420px;
}

.container_12 .prefix_6 {
	padding-left:504px;
}

.container_12 .prefix_7 {
	padding-left:588px;
}

.container_12 .prefix_8 {
	padding-left:672px;
}

.container_12 .prefix_9 {
	padding-left:756px;
}

.container_12 .prefix_10 {
	padding-left:840px;
}

.container_12 .prefix_11 {
	padding-left:924px;
}



/* Suffix Extra Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .suffix_1 {
	padding-right:84px;
}

.container_12 .suffix_2 {
	padding-right:168px;
}

.container_12 .suffix_3 {
	padding-right:252px;
}

.container_12 .suffix_4 {
	padding-right:336px;
}

.container_12 .suffix_5 {
	padding-right:420px;
}

.container_12 .suffix_6 {
	padding-right:504px;
}

.container_12 .suffix_7 {
	padding-right:588px;
}

.container_12 .suffix_8 {
	padding-right:672px;
}

.container_12 .suffix_9 {
	padding-right:756px;
}

.container_12 .suffix_10 {
	padding-right:840px;
}

.container_12 .suffix_11 {
	padding-right:924px;
}



/* `Push Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .push_1 {
	left:84px;
}

.container_12 .push_2 {
	left:168px;
}

.container_12 .push_3 {
	left:252px;
}

.container_12 .push_4 {
	left:336px;
}

.container_12 .push_5 {
	left:420px;
}

.container_12 .push_6 {
	left:504px;
}

.container_12 .push_7 {
	left:588px;
}

.container_12 .push_8 {
	left:672px;
}

.container_12 .push_9 {
	left:756px;
}

.container_12 .push_10 {
	left:840px;
}

.container_12 .push_11 {
	left:924px;
}



/* Pull Space >> 12 Columns
----------------------------------------------------------------------------------------------------*/

.container_12 .pull_1 {
	left:-84px;
}

.container_12 .pull_2 {
	left:-168px;
}

.container_12 .pull_3 {
	left:-252px;
}

.container_12 .pull_4 {
	left:-336px;
}

.container_12 .pull_5 {
	left:-420px;
}

.container_12 .pull_6 {
	left:-504px;
}

.container_12 .pull_7 {
	left:-588px;
}

.container_12 .pull_8 {
	left:-672px;
}

.container_12 .pull_9 {
	left:-756px;
}

.container_12 .pull_10 {
	left:-840px;
}

.container_12 .pull_11 {
	left:-924px;
}




/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
div.hidden {
	display: none;
}
/*************************************
BASIC LAYOUT 
**************************************/
body {
	background: #9C4220;
}
a {
	color: #9c4220;
	font-weight: normal;
	text-decoration: none;
}
a:hover {
	color: #834127;
	text-decoration: underline;
}
.pageWrapper {
	background: #4e2617 url(images/bg_pagewrapper.jpg) repeat-y scroll 0 0;
}
.header {
	background: #4E2617 url(images/bg_header.jpg) no-repeat scroll 0px 82px;
	height: 92px;
/* 	border-bottom: 10px solid #000000; */
}
.header h1 a {
	display: block;
	width: 586px;
	margin: 10px 0px 0px 15px;
	height: 59px;
	text-indent: -9999em;
	background: transparent url(images/bg_header_h1_a.jpg) no-repeat scroll 0 0;
}
/*********************
BASIC LAYOUT : BANNER
**********************/
.banner{
	height: 300px;
	background: #CC9900;
	position: relative;
	overflow: hidden;
	z-index: 500;
}
ul.bannerTabs {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: absolute;
	top: 3px;
	right: 0px;
	z-index: 500;
}
ul.bannerTabs li {
	margin: 0px;
	padding: 4px 0px 4px 4px;
	position: relative;
	display: block;
}
ul.bannerTabs li span {
	position: absolute;
	display: block;
	width: 212px;
	height: 69px;
	top: 0px;
	left: 0px;
	background: #ffffff;
	z-index: -1px;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
}
ul.bannerTabs a {
	position: relative;
	display: block;
	width: 205px;
	height: 55px;
	margin-bottom: 4px;
	background: transparent;
	border: 3px double #4e2617;
	border-right: none;
	text-align: center;
	line-height: 55px;
	color: #432d22;
	font-family: 'Palatino Linotype','Book Antiqua','Palatino', serif;
	font-size: 125%;
	font-style: italic;
	font-weight: bold;

}
ul.bannerTabs a:hover {
	background: #ffffff;
	text-decoration: none;
}
ul.bannerTabs li.b_home {
	width: 32px;
	height: 32px;
	overflow: hidden;
	bottom: 5px;
	left: -770px;
	position: absolute;
}
ul.bannerTabs li.b_home a {
	border: none;
	display: block;
	width: 32px;
	height: 32px;
	text-indent: -9999em;
	padding: 0px;
	margin: 0px;
	background: transparent url(images/bg_b_home.gif) no-repeat scroll 0 0;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	-khtml-opacity: 0.75;
	opacity: 0.75;
}
/****************************
INTRODUCTION TAB : TEE TIMES
******************************/
.panes .banner_teetimes {
	width: 801px;
	font-size: 88%;
	color: #ffffff;
	margin: 0px 0px 0px 0px;
}
.panes .banner_teetimes div {
	display: block;
	position: relative;
	z-index: 1;
}
.panes .banner_teetimes a.teetimes_public,
.panes .banner_teetimes a.teetimes_packages,
.panes .banner_teetimes a.teetimes_premium{
	display: block;
	height: 42px;
	width: 207px;
	text-indent: -9999em;
	margin: 0px auto;
}
.panes .banner_teetimes a.teetimes_public {
	background: transparent url(images/bg_teetimes_public.jpg) no-repeat scroll 0 0;
}
.panes .banner_teetimes a.teetimes_packages {
	background: transparent url(images/bg_teetimes_packages.jpg) no-repeat scroll 0 0;
}
.panes .banner_teetimes a.teetimes_premium {
	background: transparent url(images/bg_teetimes_premium.jpg) no-repeat scroll 0 0;
}
/************ PANE 3 ***************/
div.content_headerpane {
	display: block;
	width: 750px;
	height: 300px;
	float: left;
	margin: 10;
	font-size: 90%;
	color: #ffffff;
}
div.golf_specials_pane{
      background: transparent url(/uploads/images/summer_specials_bl.jpg) no-repeat scroll 0 0; 
      width: 775px;
      margin: 0px;
}
h3.summerpassport{
	display: block;
	width: 325px;
	height: 80px;
	text-indent: -9999em;
	background: transparent url(images/bg_summerpassport.jpg) no-repeat scroll 0 0;
}
/********* PANE 4 ****************/
.morgancreek_golfcard {
	width: 755px;
	height: 280px;
	position: relative;
	padding-left: 5px;
}
.morgancreek_golfcard ul {
	margin-left: 40px;
}
.morgancreek_golfcard p.short {
	width: 455px;
}
h3.golfdining_card {
	margin: 0;
	padding: 0;
}
h3.golfdining_card a{
	display: block;
	width: 250px;
	height: 42px;
	background: transparent url(images/bg_golfdining_card.jpg) no-repeat scroll 0 0;
	text-indent: -9999em;
}
h3.golfdining_card a:hover {
	background-position: 0 -42px;
}
a.giftcardimg  {
	display: block;
	width: 300px;
	height: 200px;
	margin: 10px;
	position: absolute;
	right: -18px;
	top: -18px;
}
/************ PANE 5 **********/
.eclub_news{
	background: transparent url(images/bg_eclub_news.jpg) no-repeat scroll 0 0;
	display: block;
	width: 775px;
	height: 300px;
}
div.eclub_news a.eClubSignUp{
	display: block;
	height: 74px;
	width: 262px;
	overflow: hidden;
	background: transparent url(images/bg_eclubSignUp.gif) no-repeat scroll 0 0;
	text-indent: -9999em;
	position: relative;
	top: 29px;
	left: 120px;
}
div.eclub_news a.eClubSignUp:hover {
	background-position: 0 -74px;
}
/********************
BASIC LAYOUT : SLIDSHOW
********************/
ul.slideshow {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: relative;
	width: 988px;
	height: 300px;
	overflow: hidden;
}
ul.slideshow li {
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	z-index: 1;
}
.mainNavWrapper {
	background: #4E2617;
	height: 27px;
}
.main{
	border-top: 10px solid #000000;
}
/* Content Wrapper */
.content {
	padding: 20px;
	width: 706px;
	color: #666;
}

.content h2{
	color: #9C4220;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 150%;
	width: 55%;
}
.content h3 { color: #4e2617;}
.content h4 {color: #4A772E;}
.content h5 {color:#5f3e2f;}
.content h6 {color:#000000;}
.content strong{color:#5f3e2f;}
/************************
Scrollable Intro Boxes
************************/
.content  .introbox {
	border: 3px solid #5f3e2f;
	padding: 4px;
	overflow: hidden;
	height: 250px;
	width: 210px;
	margin-bottom: 15px;
	background-color: #7f6250;
	color: #ffffff;
	
}
.content .introbox h3 {
	margin: -4px;
	background: #5f3e2f;
	color: #ffffff;
	font-size: 95%;
	text-align: center;
	padding: 6px 0px;
	margin-bottom: 4px;
}
.content .introbox h3 a {
	color: #ffffff;
	display: block;
	width: 100%;
}
.content .introbox h3 a:hover,
.content .introbox h3:hover {
	background: #9c4220;
	color: #ffffff;
}
.content .introbox p {
	font-size: 88%;
}
.content .contactBlock h3 {
	width: 200px;
	margin: -10px 0px 5px -10px;
	padding: 5px 10px;
	color: #ffffff;
	background-color: #4e2617;
	font-size: 100%;
}
.content .contactBlock{
	display: block;
	float: left;
	width: 200px;
	height: 125px;
	padding: 10px;
	margin: 5px 5px 10px 5px;
	background: #834127;
	color: #ffffff;
	-moz-border-radius: 5px;
}
.content .contactBlock a {
	color: #4e2617;
}

/*****************************
BASIC LAYOUT : RIGHT COLUMN
*******************************/
.rightColumn {}

.newsWrapper {
	min-height: 198px;
	background: transparent url(images/bg_newsWrapper.jpg) no-repeat scroll 0 0;
 	margin-left: -10px;
	padding-top: 40px;
	float: none;
}
/*******************************
BASIC LAYOUT : BOTTOM NAVIGATION
*******************************/
.bottomNavWrapper {
	background: transparent url(images/bg_bottomlogo.jpg) no-repeat scroll 755px bottom;
	padding: 0px 0px 10px 0;

	
}
.bottomlogo {
	background: transparent url(images/bg_bottomlogo.png) no-repeat scroll center 85px;
	height: 200px;
}
.bottomNav {
	background: transparent url(images/bg_main.gif) repeat-x scroll 0 bottom;
	padding: 10px 0px;
}
.bottomNav h3,
.bottomNav h4,
.bottomNav h5 {
	font-family:"Trebuchet MS",serif;
	padding-bottom: 4px;
	border-bottom: 1px solid #F1CC98;
	color: #9c4220;
}
.bottomNav a {
	font-family:"Trebuchet MS",serif;
	color: #5f3e2f;
	font-size: 11px;
	font-weight: normal;
}
.bottomNav a:hover {
	color: #9c4220;	
}
.bottomNav p {
	font-size: 88%;
	color: #9f6e50;
	margin-top: 10px;
}
.bottomNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.bottomNav ul li {
	margin: 0px;
	padding: 0px;
}
/*****************************
BASIC LAYOUT : eNews SIGNUP
*******************************/
.eNewsSignUp {
	margin-right: 16px;
	width: 55%;
}
.eNewsSignUp div label {
	float: none;
	margin: 0px;
	padding: 0px;
	display: block;
	text-align: left;
	font-family:"Trebuchet MS",serif;
	color: #9f6e50;
}
.eNewsSignUp div input {
	width: 60%;
	margin: auto 5px auto 0px;
	display: inline;
	border-color: #5f3e2f;
	
}
.eNewsSignUp div input[type='submit'] {
	width: 30%;
	padding: 2px;
	color: #ffffff;
	background-color: #4e2617;
}
.eNewsSignUp div input[type='submit']:hover {
	background-color: #9c4220;
	color: #ffffff;
	border-color: #5f3e2f;
}
.red {
	color: red;
	font-size: 75%;
}
.tos {
	font-size: 75%;
}
/*****************************
BASIC LAYOUT : UTILITES
*******************************/
.box1 {
	float: left;
	margin: 0px 8px;
}
.box2{
	width: 30%;
	float: left;
	margin-left: 5px;
}
.box3{
	width: 241px;
	height: 225px;
	float: left;
	margin: 10px 0px 10px 5px;
	padding: 4px;
	border-right: 1px solid #ffffff;
}
.box4{}
.small {font-size: 88%;}
/*******************************************
BASIC LAYOUT : TOP NAV
********************************************/
ul.topnav {
	border-bottom: none;
	position: relative;
	top: 52px;
}
ul.topnav a {
		background: url(images/plugins/morgan_tabs.png) no-repeat -420px 0;
		margin: 0px 1px;
		font-weight: bold;
}
/***************************************************8
BASIC LAYOUT : MAIN NAV
******************************************************/
ul.mainNav {
	margin: 0px 0px 0px 88px;
	padding: 0px;
	list-style-type:none;
}
ul.mainNav li {
	float: left;
	margin: 0px;
	padding: 0px;
}
ul.mainNav a {
	background: transparent url(images/bg_mainNav.jpg) no-repeat scroll 0 0;
	width: 97px;
	display: block;
	height: 27px;
	line-height: 27px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: normal;
	text-align: center;
	text-indent: -9999em;
}

ul.mainNav li.home a {
	width: 83px;
	background-position: -88px 0px;
}
ul.mainNav li.home a:hover,
ul.mainNav li.home a.active,
ul.mainNav li.home a.activeparent {
	background-position: -88px -27px;
}
ul.mainNav li.golf a {
	width: 98px;
	background-position: -171px 0px;
}
ul.mainNav li.golf a:hover,
ul.mainNav li.golf a.active,
ul.mainNav li.golf a.activeparent {
	background-position: -171px -27px;
}
ul.mainNav li.tournaments a {
	width: 108px;
	background-position: -269px 0px;
}
ul.mainNav li.tournaments a:hover,
ul.mainNav li.tournaments a.active,
ul.mainNav li.tournaments a.activeparent {
	background-position: -269px -27px;	
}
ul.mainNav li.weddings a {
	width: 96px;
	background-position: -377px 0px;
}
ul.mainNav li.weddings a:hover,
ul.mainNav li.weddings a.active,
ul.mainNav li.weddings a.activeparent {
	background-position: -377px -27px;	
}

ul.mainNav li.banquets a {
	width: 85px;
	background-position: -473px 0px;
}
ul.mainNav li.banquets a:hover,
ul.mainNav li.banquets a.active,
ul.mainNav li.banquets a.activeparent {
	background-position: -473px -27px;	
}

ul.mainNav li.restaurant a {
	width: 90px;
	background-position: -558px 0px;
}
ul.mainNav li.restaurant a:hover,
ul.mainNav li.restaurant a.active,
ul.mainNav li.restaurant a.activeparent{
	background-position: -558px -27px;
}
ul.mainNav li.our-clubs a {
	width: 82px;
	background-position: -648px 0px;
}
ul.mainNav li.our-clubs a:hover,
ul.mainNav li.our-clubs a.active,
ul.mainNav li.our-clubs a.activeparent {
	background-position: -648px -27px;	
}
ul.mainNav li.web-cam a {
	width: 83px;
	background-position: -730px 0px;
}
ul.mainNav li.web-cam a:hover,
ul.mainNav li.web-cam a.active,
ul.mainNav li.web-cam a.activeparent {
	background-position: -730px -27px;	
}
ul.mainNav li.virtual-tour a {
	width: 106px;
	background-position: -814px 0px;
}
ul.mainNav li.virtual-tour a:hover,
ul.mainNav li.virtual-tour a.active,
ul.mainNav li.virtual-tour a.activeparent {
	background-position: -814px -27px;
}
/********************************************
BASIC LAYOUT : SUB NAVIGATION
********************************************/
ul.subNav {
	margin: 0px 0px 0px -12px;
	padding: 0px;
	list-style-type: none;
}
ul.subNav li {
	margin: 0px;
	padding: 0px;
	border-bottom: 1px solid #f9f6f0;
}
ul.subNav li a {
	display: block;
	text-indent: 20px;
	height: 21px;
	line-height: 21px;
	padding: 5px 0px;
	color: #F1CC98;
	font-family: 'Palatino Linotype','Book Antiqua','Palatino', serif;
	font-style: italic;
	font-weight: normal;
	letter-spacing: .1em;
	
}
ul.subNav li a:hover,
ul.subNav li:hover, /* stupid ie */
ul.subNav li a.active,
ul.subNav li a.activeparent {
	background-color: #ffffff;
	color: #4E2617;
	text-decoration: none;
}

/*********************************************************
BASIC LAYOUT : SEARCH
*********************************************************/
.search{}
.box .search input {
	border-style: 1px solid #ddd;
	height: auto;
	width: 73%;
	margin: 5px 0px;
	display:inline;
}
.search input[type="submit"],
.search input[type="submit"].searchSubmit,
.search input.searchSubmit{
	width: 28px !important;
	min-width: 28px;
	height: 28px;
	border-style: none;
	display: inline;
	margin: 0px;
	padding: 0px;
	background: transparent url(images/icons/24x24/glass.png) no-repeat scroll 2px 2px;
	-moz-border-radius:4px;
	border-radius:4px;
	-webkit-border-radius:4px; 
}
.search input[type="submit"]:hover,
.search input[type="submit"].searchSubmit:hover,
.search input.searchSubmit:hover{
	cursor: pointer;
	background-color: #ccc;
	border: 1px solid #eee;
	background-position: 1px 1px;
}
/***********************************
BASIC LAYOUT : LOGIN / SIGNUP FORM
************************************/
.login {
	margin: 10px 0;
}
.login a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
}
.login fieldset {
	width: 95%;
	padding: .3em;
	margin: 0px 0px 10px 0px;
	
}
.login label{
	display: block;
	float: none;
	width: 95%;
	text-align: left;
}
.login input {
	width: 90%;
	margin: auto 5px;
	z-index: 1;
	position: relative;
}
.login_error {
	background:#FFF6BF;
	color:#D12F19;
	border: 1px solid #FBC2C4;
	width: 95%;
	padding: 15px 5px;
	margin: 10px 0px;
	font-weight: normal;
}
/*********************************************************
BASIC LAYOUT : TABLES
*********************************************************/
table {
	width:95%;
	border:1px solid #bbb;
	margin-bottom: 1.4em;
	border-collapse:collapse;
	font-family: Arial, Helvetica, sans-serif;
	float: left;
	clear: both;
}
caption{
	text-transform:uppercase;
	text-align: left;
	font-size: 115%;
	font-weight: bold;
	padding: 10px 6px;
}
col.colC {
	width:8em;
}
th, td {
	padding:10px 6px;
	text-align:left;
	font-size: 95%;
}
th {
	border-bottom:2px solid #888;
	background-color: #bbbbbb;
	font-weight:bold;
	font-size: 90%;
	color: #ffffff;
}

td {
	border-top:1px solid #bbb;
	border-bottom:2px solid #bbb;
	background:#eee;
	font-size: 93%;
}
tbody tr.odd th,
tbody tr.odd td {
	background:#fff;
}
tbody tr.tr-over td {
	background-color: #999;
	color: #fff;
}
tfoot th,
tfoot td {
	border-top:2px solid #666;
	background:#eee;
}
tfoot tr.total th,
tfoot tr.total td {
	border-top:6px double #666;
}
tfoot tr.total th {
	text-transform:uppercase;
}
th.currency,
td.currency {
	text-align:right;
}
/************************************************
BASIC LAYOUT : NEWS
*************************************************/
.articles {
	padding:0;
}
.articles h2 {
	margin:0;
}
#articles {
	padding-top:0;
}
.main .article {
	border-top: none;
	padding: 10px;
}
.article {
	border-top:1px solid #666;
	padding-top:.5em;
}
.articleItem {
	border-top: none;
	padding: 10px;
	margin-top: 0px;
}
.box .article {
	border-top:3px solid #ffffff;
	padding:13px 10px 0 10px;
	margin: 0px -10px 10px -10px;
}
.article h2 {
	font-size: 2em;
	font-weight:normal;
	text-transform:none;
	color:#333;
	background:transparent;
	padding:0;
	margin:0;
	border:none;
}
.article h3 {
	margin-bottom:.2em;
	font-size:1.2em;
}
.box .first {
	border-top:none;
}
.article h4 {
	font-size:0.85em;
	text-transform:uppercase;
	margin-bottom:.5em;
}
.article a.image {
	float:left; 
	margin:3px 10px 3px 0; 
	padding:4px;
	border:1px solid #bbb;
	background:#fff;
}
.article a.image:hover {
	border:1px solid #666;
}
.article a.image img {
	float:left; 
}
.article p.meta {
	color:#666;
	border-top:1px dotted #999;
	border-bottom:1px dotted #999;
	padding:.3em 0;
	margin-bottom:.8em;
	font-size: 0.8em;
}

.article .printLink {
	text-align: right;
	font-size: 85%;
	width: 95%;
}
.article .printLink a,
.article .printLink a:link {
	display: block;
	width: 16px;
	height: 16px;
	text-indent: -9999em;
	font-size: 1%;
	float: right;
	margin-top: -50px;
	background: transparent url(modules/Printing/printbutton.gif) no-repeat scroll 0px 0px;
}
/* ----------- [ Social Links ] ---------- */
.socialLinks {

}
.socialLinks h3 {
     text-align: center;
     color: #ffffff;
     margin: 15px 0 5px 0;
}
.socialLinks div {
    padding: 4px 0 4px 10px;
    color: #F1CC98;
    border-bottom: 1px solid #ffffff;
}
.socialLinks .facebook a,
.socialLinks .twitter a {
    color: #F1CC98;
    text-indent: 20px;
    display: block;
}
.socialLinks .facebook a {
    background: transparent url(uploads/images/facebook.png) no-repeat scroll 0 0;
}
.socialLinks .twitter a {
    background: transparent url(uploads/images/twitter.png) no-repeat scroll 0 0;
}
.socialLinks .facebook a:hover,
.socialLinks .twitter a:hover {
    text-decoration: none;
}

/* End of 'morgan_css' */

