* {
	padding:0;
	margin:0;
}
html {
	height:100%;
}

body {
	height:100%;
	background-position:center;
	background-image:url(yrepeat.png);
	background-repeat:repeat-y;
}

div, p, label {
	color:#fff;
	font:normal 14px "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
p {
	margin-bottom:14px;
}

img {
	border:none;
}

a {
	color:#6C6;
}
a:hover {
	color:#6F9;
}

h3 {
	font-size:20px;
}

#gradient {
	width: 100%;
	background-position:top;
	background-image:url(xrepeat.png);
	background-repeat:repeat-x;
}

#background {
	height: 786px;
	width: 100%;
	background-position:top;
	background-image:url(bg.png);
	background-repeat:no-repeat;
}

#container {
	width: 1031px;
	margin:0 auto;
}

#header {
	width: 1031px;
	height: 146px;
	position:relative;
	background-image:url(logo.png);
	background-repeat:no-repeat;
	background-position:left;
	background-color:#6ea347;			/* hack to get rid of white line in IE6 */
}

#headerfade {
	position: relative;
	float:right;
	width:620px;
}

#headerfade div {
  position: absolute;
  top: 0;
  left: 0;
  z-index:0;
}

#content {
	width:1031px;
	height:auto;
	background-image:url(backgrounds/practice_drivingrange.jpg);
	background-repeat:no-repeat;
	background-color:#091b0b;
}

#maintext1 {
	width:380px;
	padding: 150px 0 0 616px;
	/*overflow:hidden;*/
	text-align:justify;
}
#maintext2 {
	width:380px;
	padding: 150px 0 0 33px;
	/*overflow:hidden;*/
	text-align:justify;
}
#maintext3 {
	width:962px;
	padding: 150px 33px 0 33px;
	/*overflow:hidden;*/
	text-align:justify;
}

#photos {
	padding-bottom:30px;
	display:block;
}
#photos img{
	margin-left: 30px;
}

#footer {
	position:relative;
	width:1031px;
	height:143px;
	background-image:url(footer.png);
	background-color:#091b0b;
}

#footerfade {
	position: relative;
	float:right;
	width:354px;
}

#footerfade div {
  position: absolute;
  top: 0;
  left: 0;
  z-index:0;
}

#news-container {
	width:370px;
	padding: 50px 0 0 35px;
}




/*BEGIN MENU STUFF*/
.menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	top:108px;
	margin:0;
	padding:0;
	border:0;
	height:38px;                                  /* the menu's overall height */
	width:620px;         /* we always want our menu to fill the available space */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;         /* this (and also below) sets the menu's font size */
	padding-left:411px;
}


.fade img {
	cursor:pointer;
}

.fade div {
  position: absolute;
  top: 0;
  left: 0;
  visibility:hidden;
}

.menu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

.menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}

.menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}

.drop {
	display:block;
	padding:0px 0.33em;	       /* this sets the l/r margins for our menu item */
	margin:0;
	text-align:right;   /* this right alignment goes with the float:left below */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
}

.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down menus which link to sub-menus */
}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
}

.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
	/*border-top:1px solid #000;     these 2 lines create the push-in illusion */
	height:38px;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul,
.menu ul li a ul {                           /* 2nd level drop-down box */
	visibility:hidden;
	display:block;
	position:absolute;
	margin:0;
	top:38px;              /* place us just up underneath the top-level */
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	color:blue;                        /* this sets the unselected-text color */
	background:#999;         /* this sets our menu's effective "border" color */
}

.menu ul li ul li a,
.menu ul li a ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:3px 10px 3px 10px;
	color:#EEE;               /* this sets the unselected drop-down text color */
	background:#001c03;       /* this sets the drop-down menu background color */
	width:160px;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	height:auto;
}

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	visibility:visible;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#bdf1bd;
	background:#153d15;
}


/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}


/*  FOR TINYMCE */
body.mceContentBody {
  background: #020;
}