/* CUSTOM STYLES FOR GMF SITE */

body {
	border:0;
	font: 0.8em verdana, tahoma, arial, sans-serif;
	margin:0;
	padding:0;
}

table {
	font: 1em verdana, tahoma, arial, sans-serif;
}


h1, h2, h3, h4, h5, h6 {margin-top:0;}
h2, h3, h4, h5, h6 {padding: 0.5em 0;}
	
a:link {
  color:#2E827B;
}

a:visited {
  color:#006699;
}

a:hover {
	color:#1683CB
}

img {
	border: 0;
	vertical-align: middle;
}


#container {
	margin: 0;
	padding: 0;
	width: 100%;
	background: #336600;
}


#content {
	background: #ffffff;
	border-color: #000000;
	border-style: solid;
	border-width: 2px;
	margin: 0 auto;
	padding: 2em;
	width: 72em;
}


#maincol {
	float:left;
	margin:0;
	padding:0 1em 1em 0;
	width:50em;
}

#sidebar {
	margin-left:50.8em;
	padding:0 0 1em 1em;
	width:20em;
}


.splitcol {
	margin: 20px auto 0;
	padding: 0;
}


.splitcol-left {
	float: left;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 20em;
}


.splitcol-right {
	float: right;
	margin: 0;
	padding: 0pt;
	text-align: left;
	width: 20em;
}

.featurecol {float: left; margin: 0; width:24.5em;}
.featurepad {margin-right: 0.95em;}
.featured {border: 1px solid #AFAFAF; margin-bottom: 1em;}
.featured h2, h3.featured {color: #fff; background-color: #2E827B; font-size:0.9em; padding:0.5em; margin-top: 0;}
.featured ul {margin: 0;padding: 0 1em 1em; list-style: none;}
.featured p, .featured h3, .featured h4 {padding: 0 1em;}
.featured h3, .featured h4 {margin-top: 1em;}

.float-left {
	float: left;
	padding-right: 1em;
}


.float-right {
	float: right;
	padding-left: 1em;
}

.indent {
	margin-left: 2em
}

div.row { clear:both; padding-top: 10px}
div.row label { font-weight: bold; float: left; width: 6em; text-align: right; padding-right: 0.5em;  }

p.faq-list a {padding: 0.5em; text-decoration: underline;}
ul.faq-list li ul {list-style:none;}
ul.faq-list li ul li {padding-bottom:1em;}


/***
 *** Main Header and Nav Styling
 ***/

#gmf-header {
	background:#5e9937 url(/images/gmfheader.jpg) repeat-x top center;
	height:100px; 
	}
	
#gmf-header img, #gmf-header img a {
	border: 0;
}

#subnav {
	font: normal .7em verdana, tahoma, arial, sans-serif;
	margin:0 auto 10px auto;
	padding:0;
	text-align: right;
}

.gmf-topmenu li.gmf-welcome {
	margin: 0;
	padding: 0;
	display: block;
	float: left;
	color: #2E827B;
	padding: .4em 1em;
	font-weight: bold;
}

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */
/* remove all list stylings */
.gmf-topmenu {
	width: 100%;
}

.gmf-topmenu a:link, .gmf-topmenu a:visited, .gmf-topmenu a:hover {
	font-size: 11px !important;
	font-weight: bold;
	text-decoration: none;
}

.gmf-topmenu, .gmf-topmenu ul {
	font-size: 11px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.gmf-topmenu li {
	margin: 0;
	padding: 0;
	border-left: 1px solid #e0e0e0;
	display: block;
	float: right;	/* 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... */
}

.gmf-topmenu 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 */
}

.gmf-topmenu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.gmf-topmenu li li a:link, .gmf-topmenu li li a:visited, .gmf-topmenu li li a:hover {
	font-weight: normal;
}

.gmf-topmenu 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 */
}

.gmf-topmenu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.gmf-topmenu 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 */
.gmf-topmenu:after, .gmf-topmenu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.gmf-topmenu, .gmf-topmenu 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 */
.gmf-topmenu ul {
	background-image: url('/images/empty.gif');	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 0px 0px 30px 30px;
	margin: 0px 0 0 -30px;
}
.gmf-topmenu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */

/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.gmf-topmenu, .gmf-topmenu ul li {
	color: #2E827B;
	background: #f8f8f8;
}

.gmf-topmenu {
	background:url('/images/bg-nav.gif') transparent repeat-x top center;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.gmf-topmenu ul {
	width: 145px;
}

.gmf-topmenu a, .gmf-topmenu a:active, .gmf-topmenu a:visited {
	text-decoration: none;
	color: #2E827B;
	padding: .4em 1em;
	display: block;
	position: relative;
	text-decoration: none;
	/*width: 115px; *//* Fixed width menus */
}

.gmf-topmenu a img {
	border: none;
}

.gmf-topmenu a:hover, .gmf-topmenu li:hover>a {
	color: #1683CB;
	background: #ffffe8;
	text-decoration: none;
}

.gmf-topmenu li li {	/* create borders around each item */
	border: 1px solid #e0e0e0;
}
.gmf-topmenu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.gmf-topmenu 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 */
.gmf-topmenu>li:first-child>a, .gmf-topmenu li + li + li li:first-child>a {

}

/* Fix for IE5/Mac \*//*/
.gmf-topmenu a {
	float: left;
}
/* End Fix */

	
.breadcrumb, .navbutton {
	margin:0 10px 10px 0;
	}


/***
 *** Content Styles
 ***/
 
.regbox {
	border: dashed #000000 3px;
	padding: 10px;
	width: 80%;
	margin: 0 auto;
}

.infobox {
	background-color:#FFFFCC;
	padding: 1em;
	border: 1px solid #AFAFAF;
	margin: 1em 0;
}


.infobox li,
ul.gmfball li {
	background-image:url(/images/golfball-bullet.gif);
	list-style: none;
	background-position:0pt 0.65em;
	background-repeat:no-repeat;
	padding: 6px 10px 0px 20px;
}

ul.gmfball {
	padding-left: 1em;
}

ul.none { list-style: none; padding: 0; margin: 0;}

.infobox label {
	color:#4F8487;
	font-weight:bold;
}

.more {
	text-align: right;
	font-weight: bold;
	font-size: 0.9em;
}

.dashed { border: dashed #000000 1px; padding:1em;}
.dashed h1, .dashed h2, .dashed h3 {margin-top:0;}
.red { color: #900; }
.green { color:#2E827B; }
.mflogo {color:green;font-weight: bold; text-transform: uppercase; }
.warning { color: red; font-weight: bold; }
.strong { font-weight: bold; }
.smaller { font-size: 0.8em; }
.larger { font-size: 1.25em; }
.center {text-align: center;}
.middle {margin: 0 auto;}
.left {text-align: left;}
.right {text-align: right;}
.highlight { background-color:#FFFF66; }

blockquote.float-left, blockquote.float-right {width:18em;padding:0 0 0 40px; margin:1em;}
blockquote {color:#777; margin: 15px 30px 0 10px; padding-left: 20px; border-left: 5px solid #ddd; }


 /***
 *** Main Footer
 ***/
 
#footer {
	background:url(/images/bg-footer.png) transparent repeat-x top center;
	clear:both;
	color: #777;
	font-size:.75em;
	margin: 0 auto;
	padding:10px;
	text-align: right; 
}
 
#footer a:link, #footer a:visited {
	color: #777; 
	font-weight:normal;
	text-decoration: underline;
}


#footer a:hover {
	background-color: #eee;
	color: #777; 
	font-weight:normal;
	text-decoration: none;
}

 /***
 *** Clearfix
 ***/
 
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }

.clearfix {display: inline-block;}  /* for IE/Mac */
