/*******************************************************************************

	CSS on Sails Framework
	Title: Quick18 Template 1
	Author: XHTMLized.com
	Date: August 2013	

********************************************************************************

	1. BASE
		1.0 Fonts
		1.1 Reset
		1.2 Accessibility Navigation & Hide
		1.3 Clearfix
		1.5 Normalized Styles
		1.6 Image Replacement		

	2. COMMON
		2.1 Container
		2.2 Header
		2.3 Navigation
		2.4 Content
		2.5 Sidebar
		2.6 Footer

	3. PAGES
		3.1 Home
		3.2 Contact Us
		3.3 Upcoming Events
		3.4 Scorecard
		3.5 General Information

	4. RESPONSIVE
	5. PRINT

*******************************************************************************/


/* 1. BASE
--------------------------------------------------------------------------------
==============================================================================*/


/* 1.0 Fonts
------------------------------------------------------------------------------*/ 

@import url(http://fonts.googleapis.com/css?family=Roboto:400,700);
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,700);


/* 1.1 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, 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,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a[href], label[for], select, 
input[type=checkbox], input[type=radio] {
	cursor: pointer;
}

button, input[type=button], input[type=image], 
input[type=reset], input[type=submit] {
	padding: 0;
	overflow: visible;
	cursor: pointer;
}

button::-moz-focus-inner, 
input[type=button]::-moz-focus-inner, 
input[type=image]::-moz-focus-inner, 
input[type=reset]::-moz-focus-inner, 
input[type=submit]::-moz-focus-inner {
	border: 0;
}


/* 1.2 Accessibility Navigation & Hide
------------------------------------------------------------------------------*/

#accessibility-nav {
	position: absolute;
	top: 0;
	left: -9999em;
	z-index: 1000;
}

#accessibility-nav a {
	position: absolute;
	top: 0;
	white-space: nowrap;
}

#accessibility-nav a:active,
#accessibility-nav a:focus {
	left: 9999em;
}

.hide {
	position: absolute !important;
	left: -9999em !important;
}


/* 1.3 Clearfix
------------------------------------------------------------------------------*/

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


/* 1.5 Normalized Styles
------------------------------------------------------------------------------*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	font: 75%/1.25 'Roboto', 'Roboto Slab', sans-serif;
	color: white;
}

hr {
	display: none;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

del {
	text-decoration: line-through;
}

th, td {
	vertical-align: top;
}

th {
	font-weight: normal;
	text-align: left;
}

address, cite, dfn {
	font-style: normal;
}

abbr, acronym {
	border-bottom: 1px dotted #999;
	cursor: help;
}

sub, 
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

input, textarea, select {
	font-family: Arial, Helvetica, sans-serif;
}

textarea {
	 overflow: auto;
}

a, a:visited {
	text-decoration: none;
	color: white;
}

a:hover, a:active, a:focus {
	text-decoration: underline;
	color: #f00;
}

/* Content area */
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin: 15px 0 6px 0;
	font-weight: bold;
}

.entry-content h2 {
	font-size: 26px !important;
	font-size: 2em;
	font-color: #AF933C;
	font-style: italic;
}

.entry-content h3 {
	font-size: 20px !important;
	font-weight: bold;
	font-color: #fff799;
	font-size: 1.67em;
}

.entry-content h4 {
	font-size: 1.5em;
}

.entry-content h5 {
	font-size: 1.25em;
}

.entry-content p {
	margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 15px 0;
	padding-left: 25px;
	list-style: disc;
}

.entry-content ul ul {
	margin-top: 5px;
	list-style: circle;
}

.entry-content ul ul ul {
	list-style: square;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: 5px;
}

.entry-content dl {
	margin-bottom: 15px;
}

.entry-content dt {
	font-weight: bold;
}

.entry-content dd {
	margin-bottom: 10px;
}

.entry-content blockquote {
	margin: 0 15px 15px 15px;
	font-size: 15px;
	font-style: italic;
	line-height: 1.5;
}

.entry-content th,
.entry-content td {
	padding: 5px 10px 5px 0;
}

.entry-content th {
	font-weight: bold;
}
/* WordPress Default Styling */
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter, div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.wp-caption {
	padding: 5px 3px 0 3px;
	max-width: 96%; /* Image does not overflow the content area */
	text-align: center;
	background: #fff;
	border: 1px solid #f0f0f0;
}

.wp-caption.aligncenter {
	margin: 5px auto 20px auto;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	width: auto;
	height: auto;
	max-width: 98.5%;
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption p.wp-caption-text {
	margin: 0;
	padding: 0 4px 5px;
	font-size: 11px;
	line-height: 17px;
}


/* 1.6 Image replacement
------------------------------------------------------------------------------*/

.ir {
	display: block;
	position: relative;
	overflow: hidden;
}

.ir span {
	display: block;
	position: absolute;	
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}


/* 2. COMMON
--------------------------------------------------------------------------------
==============================================================================*/


/* 2.1 Container
------------------------------------------------------------------------------*/

.container-wrap:before {
	content: "";
	height: 38px;
	background-color: #122341;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	outline: 1px solid #0F0F0F;
}

.ie8 .container-wrap:before {
	content: "";
	height: 38px;
	background-color: #122341;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
	outline: 1px solid #0F0F0F;
}

.container {
	position: relative;
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 5.5%;
}


/* 2.2 Header
------------------------------------------------------------------------------*/

#header {
	height: 38px;
	position: relative;
	z-index: 3;
	border-bottom: 1px solid rgba(256,256,256,.2);
}

#header .site-name {
	width: 299px;
	height: 186px;
	text-align: center;
	position: absolute;
	left: 0;
	padding-top: 110px;
	font-family: 'Roboto Slab', serif;
	font-size: 17px;
	text-indent:-9999px;
}

#header .site-name span {
	background: url(../images/common/logo.png) no-repeat;
}

.header-bg {
	height: 38px;
	background-color: #8b001b;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.header-contact {
	position: absolute;
	right: 0;
	top: 0;
	height: 38px;
}

.header-contact2 {
	position: absolute;
	right: 0;
	top: 0;
	height: 38px;
	width:700px;
	z-index: -2000;
}

.header-contact li, .header-contact2 li {
	float: left;
	margin-right: 5px;
}

.header-contact a,  {
	margin-top: 3px;
}
.header-contact2 a {
	margin-top: 0px;
}

.header-address {
	width: 300px;
	height: 38px;
	margin-right: 5px;
	margin-top: 10px;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #f4d11d;
	font-size: 14px;
	text-decoration: none;

}
.header-phone, .header-phone li, .header-phone a {
	width: 110px;
	height: 38px;
	float:left;
	margin-right: 5px;
	margin-top: 10px;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #FFF;
	font-size: 14px;
	text-decoration: none;

}


.header-contact span {
	background: url('../images/common/sprite_common.png') no-repeat top left;
}
.header-contact span2 {
	background: url('../images/common/sprite_common.png') no-repeat top left;
}

a.header-email {
	width: 140px;
	height: 30px;
	border-top: 2px solid #f4d21d;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #603b14;
	font-size: 14px;
	text-decoration: none;
	background-color: #eeb415;
	background-image: -webkit-gradient( linear, left top, left bottom, from(#eeb415), to(#e8a402) );
	background-image: -webkit-linear-gradient(top, #eeb415, #e8a402);
	background-image: -khtml-linear-gradient(top, #eeb415, #e8a402);
	background-image: -moz-linear-gradient(top, #eeb415, #e8a402);
	background-image: -ms-linear-gradient(top, #eeb415, #e8a402);
	background-image: -o-linear-gradient(top, #eeb415, #e8a402);
	background-image: linear-gradient(to bottom, #eeb415, #e8a402);
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-text-shadow: 1px 1px 0 #ecb409;
	-khtml-text-shadow: 1px 1px 0 #ecb409;
	-moz-text-shadow: 1px 1px 0 #ecb409;
	-ms-text-shadow: 1px 1px 0 #ecb409;
	-o-text-shadow: 1px 1px 0 #ecb409;
	text-shadow: 1px 1px 0 #ecb409;
	line-height: 28px;
	text-align: center;
	behavior: url('wp-content/themes/quick18-course-site/_ui/js/PIE.htc');
	position: relative;
}

a.header-email:before {
	content: "";
	width: 20px;
	height: 15px;
	display: inline-block;
	background: url('../images/common/sprite_common.png') no-repeat 0 -85px;
	padding-right: 4px;
	position: relative;
	top: 2px;
}

a.header-facebook, a.header-twitter {
	width: 32px;
	height: 30px;
}

a.header-facebook span {
	background-position: -3px -4px;
}

a.header-twitter span {
	background-position: -41px -4px;
}

a.header-tee-time {
	background: url('../images/common/sprite_common.png') no-repeat -94px 0;
	width: 52px;
	height: 188px;
	margin-top: 0;
	display: block;
	margin-left: 20px;
	top: -148px;
	position: relative;
	-webkit-transition: top ease-in-out .5s;
	-khtml-transition: top ease-in-out .5s;
	-moz-transition: top ease-in-out .5s;
	-ms-transition: top ease-in-out .5s;
	-o-transition: top ease-in-out .5s;
	transition: top ease-in-out .5s;
	text-indent: -9999px;
	z-index: 1;
}

a.header-tee-time:hover {
	top: 0;
}

.email-signup {
	/*clear:both;*/
	position: absolute;
	z-index: 5002;
	/*left: 300px;*/
	top: 38px;
	width: 230px;
	padding: 15px;
	background-color: #fbf8f3;
	border-left: 1px solid #bcb6ad;
	border-right: 1px solid #bcb6ad;
	border-bottom: 1px solid #bcb6ad;
}

/*.no-js .email-signup {
	display: none;
}

.no-js .header-email {
	display: none;
}*/

.email-signup input[type="text"], .email-signup input[type="email"] {
	line-height: 30px;
	height: 30px;
	border: none;
	background-color: #ebe8e4;
	font-family: 'Roboto Slab', serif;
	color: #55524d;
	width: 200px;
	padding-left: 10px;
	margin-top: 10px;
}

.email-signup input:first-child {
	margin-top: 0;
}

.email-signup input[type="submit"] {
	border: none;
	width: 80px;
	height: 34px;
	position: relative;
	left: 50%;
	margin-left: -40px;
	margin-top: 7px;
	border-top: 2px solid #f4d21d;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #603b14;
	font-size: 14px;
	text-decoration: none;
	background-color: #eeb415;
	background-image: -webkit-gradient( linear, left top, left bottom, from(#eeb415), to(#e8a402) );
	background-image: -webkit-linear-gradient(top, #eeb415, #e8a402);
	background-image: -khtml-linear-gradient(top, #eeb415, #e8a402);
	background-image: -moz-linear-gradient(top, #eeb415, #e8a402);
	background-image: -ms-linear-gradient(top, #eeb415, #e8a402);
	background-image: -o-linear-gradient(top, #eeb415, #e8a402);
	background-image: linear-gradient(to bottom, #eeb415, #e8a402);
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-text-shadow: 1px 1px 0 #ecb409;
	-khtml-text-shadow: 1px 1px 0 #ecb409;
	-moz-text-shadow: 1px 1px 0 #ecb409;
	-ms-text-shadow: 1px 1px 0 #ecb409;
	-o-text-shadow: 1px 1px 0 #ecb409;
	text-shadow: 1px 1px 0 #ecb409;
	line-height: 32px;
}

.email-signup .ui-state-error {
	outline: 1px solid tomato;
}

::-webkit-input-placeholder {
	color: #55524d;
}

:-moz-placeholder {
	color: #55524d;
	opacity: 1;
}

::-moz-placeholder {
	color: #55524d;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #55524d;
}


/* 2.4 Content
------------------------------------------------------------------------------*/

#content {
	margin-left: 265px;
	height: auto;
	min-height: 862px;
	position: relative;
	z-index: 1;
}

.no-js #content {
	padding-top: 270px;
}

/* 2.5 Sidebar
------------------------------------------------------------------------------*/

#sidebar {
	float: left;
	width: 232px;
	padding: 155px 0 70px 0;
	margin-left: 33px;
	background: url('../images/common/bg_sidebar.png') no-repeat top left;
	background-color: #122341;
	-webkit-box-shadow: 0 0 0 5px rgba(0,0,0,.1);
	-khtml-box-shadow: 0 0 0 5px rgba(0,0,0,.1);
	-moz-box-shadow: 0 0 0 5px rgba(0,0,0,.1);
	-ms-box-shadow: 0 0 0 5px rgba(0,0,0,.1);
	-o-box-shadow: 0 0 0 5px rgba(0,0,0,.1);
	box-shadow: 0 0 0 5px rgba(0,0,0,.1);
	position: relative;
	z-index: 2;
	/*height: 862px;*/
	position: absolute;
	top: 38px;
	bottom: 0;
	background-repeat: no-repeat;
}

#street {
	color: #FFF;
	font-size: 12px;
	text-decoration: none;
	line-height: 40px;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	padding: 0 31px;
	width: 100%;
	display: inline;
}

#city {
	color: #FFF;
	font-size: 12px;
	text-decoration: none;
	line-height: 40px;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	padding: 0 31px 20px;
	width: 100%;
	display: inline-block;

}

/* 2.5.1 Navigation
------------------------------------------------------------------------------*/

#navigation li {
	
}

#navigation a {
	color: #d7d7d7;
	font-size: 14px;
	text-decoration: none;
	line-height: 40px;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	padding: 0 31px;
	width: 100%;
	display: block;
}

#navigation li:hover > a, #navigation .current-menu-item > a {
	color: #fefefe;
	background: rgba(0, 0, 0, .5);
}

.ie8 #navigation li:hover > a, .ie8 #navigation .current-menu-item > a {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGBoBAAAhgCCuB015gAAAABJRU5ErkJggg==');
}


/* Submenu */

#navigation > ul > li {
	position: relative;
}

#navigation li > ul {
	position: absolute;
	width: 232px;
	right: -232px;
	top: 0;
	display: none;
}

#navigation > ul > li:hover > ul {
	display: block;
}

#navigation li > ul a {
	background: rgba(0, 0, 0, .8);
	color: #ffffff;
}

.ie8 #navigation li > ul a {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGA4CwAA0gDOfkHlUwAAAABJRU5ErkJggg==');
}

#navigation li > ul a:hover {
	color: #fefefe;
	background: rgba(0, 0, 0, .9);
}

.ie8 #navigation li > ul a:hover {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGB4CgAA6gDm7ttfXQAAAABJRU5ErkJggg==');
}


/* Book Tee Time Button */

a.book-tee-time {
	width: 167px;
	height: 39px;
	line-height: 37px;
	text-align: center;
	left: 34px;
	top: 13px;
	margin-bottom: 30px;
	position: relative;
	display: block;
	border-top: 2px solid #f4d21d;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #603b14;
	font-size: 18px;
	text-decoration: none;
	background-color: #eeb415;
	background-image: -webkit-gradient( linear, left top, left bottom, from(#eeb415), to(#e8a402) );
	background-image: -webkit-linear-gradient(top, #eeb415, #e8a402);
	background-image: -khtml-linear-gradient(top, #eeb415, #e8a402);
	background-image: -moz-linear-gradient(top, #eeb415, #e8a402);
	background-image: -ms-linear-gradient(top, #eeb415, #e8a402);
	background-image: -o-linear-gradient(top, #eeb415, #e8a402);
	background-image: linear-gradient(to bottom, #eeb415, #e8a402);
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-text-shadow: 1px 1px 0 #ecb409;
	-khtml-text-shadow: 1px 1px 0 #ecb409;
	-moz-text-shadow: 1px 1px 0 #ecb409;
	-ms-text-shadow: 1px 1px 0 #ecb409;
	-o-text-shadow: 1px 1px 0 #ecb409;
	text-shadow: 1px 1px 0 #ecb409;
	behavior: url('wp-content/themes/quick18-course-site/_ui/js/PIE.htc');
}

.book-tee-time:hover {
	text-decoration: none;
	color: #603b14;
}

/* 2.5.2 Promotions
------------------------------------------------------------------------------*/

.promotions {
	background-color: #181717;
}

.promotions-header {
	border-top: 1px solid #202833;
	background-color: #181717;
	padding: 10px 15px 9px 10px;
}

.promotions-header h2 {
	font-family: 'Roboto Slab', serif;
	text-align: center;
	text-transform: uppercase;
	-webkit-text-shadow: 1px 1px 0 #000;
	-khtml-text-shadow: 1px 1px 0 #000;
	-moz-text-shadow: 1px 1px 0 #000;
	-ms-text-shadow: 1px 1px 0 #000;
	-o-text-shadow: 1px 1px 0 #000;
	text-shadow: 1px 1px 0 #000;
	font-weight: bold;
	font-size: 24px;
	color: white;
}

.promotions-header h2:first-line {
	color: #edaf12;
	font-size: 18px;

}

.promotions-content-container {
	background-color: #181717;
}

.promotions-content {
	border-top: 1px solid #3b4450;
	background-color: #181717;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 20px;
	overflow: hidden;
	height: 191px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.promotions-content ul {
	height: 241px;
}

.promotions-content li {
	float: left;
	width: 232px;
}

.promotions-content img {
	margin-bottom: 20px;
}

.promotions-footer {
	border-top: 1px solid #3b4450;
	text-align: center;
	background-color: #363636;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
	position: relative;
	padding: 5px 0;
}

.promotions-arrow-left, .promotions-arrow-right {
	text-indent: -9999px;
	position: absolute;
	width: 15px;
	height: 22px;
	background: url('../images/common/sprite_common.png') no-repeat;
}

.no-js .promotions-arrow-left, .no-js .promotions-arrow-right {
	display: none;
}

.promotions-arrow-left {
	left: 5px;
	top: 7px;
	background-position: 0 -41px;
}

.promotions-arrow-right {
	right: 5px;
	top: 7px;
	background-position: -15px -41px;
}


/* 2.6 Footer
------------------------------------------------------------------------------*/

#footer {
	clear: both;
}


/* 3. PAGES
--------------------------------------------------------------------------------
==============================================================================*/


/* 3.1 Home
------------------------------------------------------------------------------*/

.bg {
	min-height: 100%;
	min-width: 1600px;
	width: 100%;
	height: auto;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -2;
	background: no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	opacity: 0;
}

.bg:last-child {
	opacity: 1;
}

.ie8 .bg {
	opacity: 1;
}

.home-welcome {
	position: absolute;
	max-width: 540px;
	padding: 45px 30px;
	background: rgba(0, 0, 0, .8);
	top: 423px;
	border-top: 1px solid rgba(256, 256, 256, .1);
	border-right: 1px solid rgba(256, 256, 256, .1);
	border-bottom: 1px solid rgba(256, 256, 256, .1);
	min-height: 362px;
}

.ie8 .home-welcome {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGAwAgAANwAzBoRmFgAAAABJRU5ErkJggg==');
}

.home-welcome h2 {
	color: #f4d11d;
	text-shadow: 0 0 1px #000;
	font-family: 'Roboto Slab';
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 20px;
}

.home-welcome p {
	line-height: 23px;
	font-size: 13px;
	margin-bottom: 25px;
}

a.home-read-more {
	color: #ffb400;
	font-size: 13px;
}

.home .header-tee-time {
	top: 0;
}


/* 3.2 Contact Us
------------------------------------------------------------------------------*/

.google-map {
	background-color: #202833;
}

.no-js .google-map {
	display: none;
}

.google-map iframe {
	width: 100%;
	height: 570px;
}

.bottom-contacts {
	top: -18px;
	position: relative;
}

.bottom-contacts:after {
	content: "";
	display: table;
	clear: both;
}

.bottom-contacts > div {
	float: left;
}

.contact-form {
	background: #fbf8f3;
	width: 32%;
	padding: 1.6% 1.6% 1.6% 2.5%;
}

.contact-form label.error {
	color: tomato;
}

.contact-form form:after {
	content: "";
	display: table;
	clear: both;
}

.contact-form h2, .contact-form h3 {
	font-family: 'Roboto Slab', serif;
	font-weight: normal;
}

.contact-form h2 {
	color: #202833;
	font-size: 24px;
	margin-top: 0;
}

.contact-form h3 {
	font-size: 16px;
	color: #827461;
	margin-bottom: 0;
}

.contact-form input, .contact-form select, .contact-form textarea, .contact-form {
	font-size: 12px;
	font-family: 'Roboto Slab', serif;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select {
	max-width: 160px;
	line-height: 30px;
	height: 30px;
	border: none;
	background-color: #ebe8e4;
	font-family: 'Roboto Slab', serif;
	color: #55524d;
	width: 200px;
	padding-left: 10px;
}

.contact-form .ui-state-error {
	outline: 1px solid tomato;
}

.contact-form select {
	-webkit-appearance: none;
}
.contact-form select {
	-moz-appearance: none;
}
.contact-form select {
	appearance: none;
}

.contact-form input[type="email"], .contact-form select, .contact-form input[type="text"] {
	margin-top: 10px;
}

.contact-form textarea {
	width: 100%;
	max-width: 100%;
	background-color: #ebe8e4;
	font-family: 'Roboto Slab', serif;
	color: #55524d;
	min-width: 100%;
	border: none;
	margin-top: 10px;
	padding-left: 10px;
	padding-top: 6px;
	min-height: 57px;
}

.ie8 .contact-form textarea {
	width: 180px;
	max-width: 180px;
	min-width: 180px;
}

.contact-form input[type="submit"] {
	border: none;
	width: 80px;
	height: 34px;
	position: relative;
	margin-top: 10px;
	border-top: 2px solid #f4d21d;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #603b14;
	font-size: 14px;
	text-decoration: none;
	background-color: #eeb415;
	background-image: -webkit-gradient( linear, left top, left bottom, from(#eeb415), to(#e8a402) );
	background-image: -webkit-linear-gradient(top, #eeb415, #e8a402);
	background-image: -khtml-linear-gradient(top, #eeb415, #e8a402);
	background-image: -moz-linear-gradient(top, #eeb415, #e8a402);
	background-image: -ms-linear-gradient(top, #eeb415, #e8a402);
	background-image: -o-linear-gradient(top, #eeb415, #e8a402);
	background-image: linear-gradient(to bottom, #eeb415, #e8a402);
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-text-shadow: 1px 1px 0 #ecb409;
	-khtml-text-shadow: 1px 1px 0 #ecb409;
	-moz-text-shadow: 1px 1px 0 #ecb409;
	-ms-text-shadow: 1px 1px 0 #ecb409;
	-o-text-shadow: 1px 1px 0 #ecb409;
	text-shadow: 1px 1px 0 #ecb409;
	line-height: 32px;
	float: right;
}

.ie8 .contact-form input[type="submit"] {
	float: none;
	margin-left: 110px;
}

#last-name {
	margin-top: 10px;
}

#first-name {
	margin-right: 5%;
}

.contact-form input[type="email"] {
	margin-right: 4.3%;
}

.bottom-contacts, .contacts, .contacts-people {
	background-color: #323239;
	position: relative;
}

.page-contact-us #content {
	background-color: #323239;
}

.page-contact-us .contacts img {
	position: relative;
	top: 60px;
	width: 100%;
}

.page-contact-us .contacts {
	width: 19%;
	font-size: 14px;
	line-height: 25px;
	padding: 0 1.5%;
}

.ie8 .page-contact-us .contacts {
	width: 25%;
}

.page-contact-us .contacts p.adr {
	margin-top: 63px;
}

.page-contact-us .contacts b {
	color: #9aabc1;
}

.page-contact-us .fn {
	display: none;
}

.page-contact-us .contacts p {
	margin-bottom: 0;
}

.page-contact-us .contacts-people img {
	width: 57px;
	height: 57px;
	border: 3px solid black;
	position: absolute;
	top: 17px;
}

.contacts-people {
	font-family: 'Roboto Slab', serif;
	width: 49%;
	padding-top: 15px;
}

.ie8 .contacts-people {
	width: 43%;
}

.contacts-person {
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: 49%;
}

.ie8 .contacts-person {
	width: 100%;
}

.contacts-person h3 {
	font-size: 12px;
	margin-bottom: 0;
}

.contacts-person h3 + p {
	margin-bottom: 3px;
}

.contacts-person p {
	font-size: 11px;
	color: #9aabc1;
}

.contacts-person a {
	color: #edaf12;
	font-size: 11px;
	word-break: break-word;
}

.contacts-person-inner {
	padding-left: 70px;
}

.page-contact-us .custom-select {
	width: 160px;
	line-height: 30px;
	margin-top: 10px;
	background-color: #ebe8e4;
	position: relative;
	display: inline-block;
	z-index: 2;
}

.ie8 .page-contact-us .custom-select {
	width: 170px;
}

.page-contact-us .custom-select, .page-contact-us .custom-select a {
	color: #55524d;
}

.page-contact-us .custom-select ul {
	display: none;
	list-style: none;
	position: absolute;
	background-color: #ebe8e4;
	width: 100%;
	padding-left: 0;
}

.page-contact-us .custom-select li {
	padding-left: 10px;
}

.page-contact-us .custom-select li:hover {
	cursor: pointer;
	background-color: #bdbbbc;
}

.page-contact-us .prefixSelected {
	padding-left: 10px;
	display: block;
}


/* 3.3 Upcoming Events
------------------------------------------------------------------------------*/

.page-upcoming-events #content {
	background-color: #3D3D3D;
	border-top: 1px solid transparent;
}


.page-upcoming-events #content {
	background-color: #3D3D3D;
	border-top: 1px solid transparent;
}



.page-upcoming-events .post-list {
	width: 32%;
	float: left;
}

.page-upcoming-events .post-list-post {
	background-color: #343b45;
	padding: 10px 15px 17px 30px;
	border-top: 1px solid rgba(256,256,256,.2);
}

.ie8 .page-upcoming-events .post-list-post {
	border-top: 1px solid #4d535c;
}

.page-upcoming-events .post-list-post:first-child {
	border-top: none;
}

.page-upcoming-events .current {
	background-color: transparent;
}

.page-upcoming-events .current:hover {
	cursor: default;
}

.page-upcoming-events .post-link:first-child .post-list-post {
	border-top: none;
}

.page-upcoming-events .post-list-post h2, .page-upcoming-events .post-content-header h2 {
	font-family: 'Roboto Slab', serif;
	font-size: 20px;
	line-height: 22px;
	margin-top: 0;
}

.page-upcoming-events .date {
	font-size: 14px;
	color: #df7c02;
	font-family: 'Roboto Slab', serif;
	line-height: 22px;
	margin-bottom: 0;
}

.page-upcoming-events .date span {
	/*inserting a fix to hide the date on Upcoming Events Main Page */
	display: none;
	/*End Fix*/
	color: #df7c02;
}
 	
.post-list-post-content {
	font-size: 14px;
	color: #9aabc1;
	line-height: 20px;
	margin-top: 5px;
}

.page-upcoming-events a.post-link {
	text-decoration: none;
	color: #fff;
}

.page-upcoming-events .read-more {
	border-top: 2px solid #f4d21d;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #603b14;
	font-size: 12px;
	text-decoration: none;
	background-color: #eeb415;
	background-image: -webkit-gradient( linear, left top, left bottom, from(#eeb415), to(#e8a402) );
	background-image: -webkit-linear-gradient(top, #eeb415, #e8a402);
	background-image: -khtml-linear-gradient(top, #eeb415, #e8a402);
	background-image: -moz-linear-gradient(top, #eeb415, #e8a402);
	background-image: -ms-linear-gradient(top, #eeb415, #e8a402);
	background-image: -o-linear-gradient(top, #eeb415, #e8a402);
	background-image: linear-gradient(to bottom, #eeb415, #e8a402);
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-text-shadow: 1px 1px 0 #ecb409;
	-khtml-text-shadow: 1px 1px 0 #ecb409;
	-moz-text-shadow: 1px 1px 0 #ecb409;
	-ms-text-shadow: 1px 1px 0 #ecb409;
	-o-text-shadow: 1px 1px 0 #ecb409;
	text-shadow: 1px 1px 0 #ecb409;
	line-height: 26px;
	text-align: center;
	float: right;
	padding: 0 12px;
	height: 28px;
	margin-top: -10px;
	margin-right: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	behavior: url('wp-content/themes/quick18-course-site/_ui/js/PIE.htc');
	position: relative;
}

.page-upcoming-events .current .read-more {
	color: #343b45;
	-webkit-text-shadow: none;
	-khtml-text-shadow: none;
	-moz-text-shadow: none;
	-ms-text-shadow: none;
	-o-text-shadow: none;
	text-shadow: none;
	background: #192029;
	border-top: none;
}

.page-upcoming-events .current .read-more:hover {
	cursor: default;
}

.page-upcoming-events .next-prev-links {
	height: 62px;
	text-align: center;
	border-top: 1px solid rgba(256,256,256,.2);
}

.ie8 .page-upcoming-events .next-prev-links {
	border-top: 1px solid #4d535c;
}

.page-upcoming-events .next-prev-links a {
	font-family: 'Roboto Slab', serif;
	font-size: 14px;
	color: #df7c02;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 62px;
	white-space: nowrap;
}

.page-upcoming-events .post-content {
	
	margin-left: 32%;
	padding-left: 22px;
}


.page-upcoming-events .post-thumbnails {
	overflow: hidden;
}

.page-upcoming-events .post-thumbnails img {
	float: left;
	border: 7px solid #000;
	-webkit-box-shadow: 0 0 2px #161b23;
	-khtml-box-shadow: 0 0 2px #161b23;
	-moz-box-shadow: 0 0 2px #161b23;
	-ms-box-shadow: 0 0 2px #161b23;
	-o-box-shadow: 0 0 2px #161b23;
	box-shadow: 0 0 2px #161b23;
	margin-top: 23px;
	max-width: 345px;
}

.page-upcoming-events .post-thumbnails img:first-child {
	margin-right: 40px;
}

.page-upcoming-events .post-content-header {
	padding-top: 20px;
}

.page-upcoming-events .post-content-inner {
	line-height: 24px;
	font-size: 14px;
	padding-right: 35px;
	margin-top: -10px;
	padding-bottom: 20px;
}

.page-upcoming-events .post-content-inner p {
	margin-top: 23px;
}


/* 3.4 Scorecard
------------------------------------------------------------------------------*/
.ie8 .page-scorecard .page-name {
	font-family: 'Roboto Slab', serif;
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 20px 10px;
}

.page-scorecard .page-name {
	font-family: 'Roboto Slab', serif;
	font-size: 20px;
	font-weight: normal;
	margin: -33px 0 20px 10px;
}

.page-scorecard .page-name span {
	font-size: 15px;
	color: #aF933C;
	margin-left: 30px;
}

.page-scorecard .page-name b {
	color: #aF933C;
}

.page-scorecard #content {
	background-color: #3D3D3D;
	padding-left: 15px;
	border-top: 1px solid transparent;
}

.page-scorecard .scorecard-entry {
	-webkit-column-count: 1;
	-khtml-column-count: 1;
	-moz-column-count: 1;
	-ms-column-count: 1;
	-o-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 10px;
	-khtml-column-gap: 10px;
	-moz-column-gap: 10px;
	-ms-column-gap: 10px;
	-o-column-gap: 10px;
	column-gap: 10px;
	color: #c8c9ca;
	padding: 20px 30px 20px 30px;
	line-height: 19px;
}

.ie8 .scorecard-entry .column {
	padding: 0 15px;
}

.ie8 .scorecard-entry .first.column {
	padding-right: 15px;
	padding-left: 0;
}

.ie8 .scorecard-entry .last.column {
	padding-left: 15px;
	padding-right: 0;
}

.scorecard-entry h3 {
	font-size: 14px;
	font-family: 'Roboto Slab', serif;
	margin-bottom: 15px;
}

.page-scorecard .scorecard {
	padding: 10px 20px 10px 10px;
	margin-top: 15px;
}

.page-scorecard table {
	font-family: 'Roboto Slab', serif;
	font-size: 14px;
	line-height: 44px;
	width: 100%;
}

.page-scorecard th, .page-scorecard td {
	border: 1px solid #202833;
	padding: 0;
	text-align: center;
	white-space: nowrap;
}

.page-scorecard th:first-child {
	text-align: left;
	padding: 0 5px;
}

.page-scorecard .scorecard-inner {
	width: 100%;
	overflow-x: auto;
}

.page-scorecard tr {
	background-color: white;
	color: #202833;
}

.page-scorecard tr:nth-child(1) {
	background-color: #4a6e9f;
	color: white;
}

.ie8 .page-scorecard .nth-child-1 {
	background-color: #4a6e9f;
	color: white;
}

.page-scorecard tr:nth-child(2) {
	background-color: #a6bd29;
	color: white;
}

.ie8 .page-scorecard .nth-child-2 {
	background-color: #a6bd29;
	color: white;
}

.page-scorecard tr:nth-child(3) {
	background-color: #d0b064;
	color: white;	
}

.ie8 .page-scorecard .nth-child-3 {
	background-color: #d0b064;
	color: white;
}

.page-scorecard tr:nth-child(4) {
	background-color: #202833;
	color: white;
}

.ie8 .page-scorecard .nth-child-4 {
	background-color: #202833;
	color: white;
}

.page-scorecard tr:nth-child(5) {
	background-color: #b6b6b7;
	color: white;
}

.ie8 .page-scorecard .nth-child-5 {
	background-color: #b6b6b7;
	color: white;
}




/* 3.5 General Information
------------------------------------------------------------------------------*/

.page-general-information #content {
	background: rgba(0,0,0,.8);
	padding-left: 35px;
	padding-right: 25px;
	border-top: 1px solid transparent;
}

.page-general-information .page-name {
	font-size: 20px;
	font-weight: normal;
	font-family: 'Roboto Slab', serif;
	color: #FFF;
	margin-top: -30px;
}
.ie8 .page-name {
	font-size: 20px;
	font-weight: normal;
	font-family: 'Roboto Slab', serif;
	color: #FFF;	
	margin-top: 20px;
}

.general-information-image {
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 7px solid #000;
	-webkit-box-shadow: 0 0 2px #161b23;
	-khtml-box-shadow: 0 0 2px #161b23;
	-moz-box-shadow: 0 0 2px #161b23;
	-ms-box-shadow: 0 0 2px #161b23;
	-o-box-shadow: 0 0 2px #161b23;
	box-shadow: 0 0 2px #161b23;
}

.page-general-information .phone {
	font-size: 22px;
	font-weight: bold;
	color: #edaf12;
	font-family: 'Roboto Slab', serif;
	margin-bottom: 5px;
	margin-top: 35px;
}

.page-general-information .phone span {
	color: #fdf9f1;
	font-weight: normal;
}

.page-general-information .wifi {
	color: #9aabc1;
	font-family: 'Roboto Slab', serif;
	font-size: 16px;
}

.page-general-information .wifi span {
	color: #fdf9f1;
}

.general-entry {
    /*adjusted from 3 columns.  I have not adjusted the column gap.  will do if doesn't look right.*/
	-webkit-column-count: 1;
	-khtml-column-count: 1;
	-moz-column-count: 1;
	-ms-column-count: 1;
	-o-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 60px;
	-khtml-column-gap: 60px;
	-moz-column-gap: 60px;
	-ms-column-gap: 60px;
	-o-column-gap: 60px;
	column-gap: 60px;
	color: #c8c9ca;
	/*background-color: #161616 !important;*/
	padding: 15px 25px 3px 25px;
	margin-top: 10px;
	-webkit-box-shadow: 0 0 2px #161b23;
	-khtml-box-shadow: 0 0 2px #161b23;
	-moz-box-shadow: 0 0 2px #161b23;
	-ms-box-shadow: 0 0 2px #161b23;
	-o-box-shadow: 0 0 2px #161b23;
	box-shadow: 0 0 2px #161b23;
	line-height: 19px;
}

.ie8 .general-entry {
	/*background-color: #161616 !important;*/
}

.ie8 .general-entry .column {
	padding: 0 15px;
}

.ie8 .general-entry .first.column {
	padding-right: 15px;
	padding-left: 0;
}

.ie8 .general-entry .last.column {
	padding-left: 15px;
	padding-right: 0;
}


.general-entry strong {
	color: #FFF;
}

.general-entry p {
	font-size: 14px;
	color: #FFF;
	margin-bottom: 19px;
}

.general-entry b {
	font-size: 14px;
	color: #FFF;
	font-weight: bold;
}

.general-entry  h4  {
	font-size: 16px;
	font-style: italic;
	color: #ffffE0;
}


/* 4. RESPONSIVE
--------------------------------------------------------------------------------
==============================================================================*/

@media screen and (max-width: 1900px), (max-device-width: 1900px) {
	.page-general-information .general-entry, .page-scorecard .scorecard-entry {
    /*adjusted to 1 column from 3*/
		-webkit-column-count: 1;
		-khtml-column-count: 1;
		-moz-column-count: 1;
		-ms-column-count: 1;
		-o-column-count: 1;
		column-count: 1;
	}

	.page-contact-us .contacts-person {
		width: 100%;
	}

}
@media screen and (max-width: 1300px), (max-device-width: 1300px){
		.page-general-information .page-name {
		margin-top: 20px;
	}
}

@media screen and (max-width: 1100px), (max-device-width: 1100px) {
	.page-scorecard .page-name {
		margin-top: 10px;
		margin-bottom: -15px;
	}
	.page-general-information .page-name {
		margin-top: 20px;
	}

}

@media screen and (max-width: 1000px), (max-device-width: 1000px) {
	img { max-width: 100% !important; }
	.page-general-information .general-entry, .page-scorecard .scorecard-entry {
		-webkit-column-count: 1;
		-khtml-column-count: 1;
		-moz-column-count: 1;
		-ms-column-count: 1;
		-o-column-count: 1;
		column-count: 1;
	}

	.page-general-information .page-name {
		margin-top: 20px;
	}

}

@media screen and (max-width: 900px), (max-device-width: 900px) {
	img { max-width: 100% !important; }
	.page-upcoming-events .post-thumbnails img {
		width: 100%;
	}

	.page-contact-us .bottom-contacts > div {
		float: none;
		width: 100%;
	}

	.page-contact-us .contacts-people {
		padding: 0 3%;
	}

	.page-contact-us .contacts {
		padding: 0 3%;
	}

	.page-contact-us .contacts img {
		width: 50%;
	}
	
}

@media screen and (max-width: 760px), (max-device-width: 760px) {
	img { max-width: 100% !important; }
	.header-address {
		display:none;
		visibility: hidden;
	}
	.container {
		padding-left: 5px;
	}

	.page-upcoming-events .read-more {
		float: none;
		display: block;
		padding: 0;
	}

	.page-upcoming-events .next-prev-links a {
		width: 100%;
		display: inline-block;
		overflow: hidden;
		text-overflow: ellipsis;
	}

}

@media screen and (max-width: 650px), (max-device-width: 650px) {
	img { max-width: 100% !important; }
	.no-js #content {
		padding-top: 10px;
	}

	.container {
		padding-left: 0;
	}
	#header {
		background-color: #323239;
		height: 76px;
		position: relative;
		z-index: 3;
		border-bottom: 1px solid rgba(256,256,256,.2);
	}
	.header-bg {
		height: 76px;
		background-color: #323239;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: -1;
	}
	


	#header .site-name {
		margin-top: 76px;
		left: 50%;
		margin-left: -150px;
	}

	.no-js #header .site-name {
		margin-top: 300px;
	}

	.header-contact {
		left: 50%;
		margin-left: -150px;
		width: 300px;
	}
	.header-contact2 {
		
		position:absolute;
		right:0;
		
		left: 50%;
		margin-left: -250px;
		
	}
	.header-address {
		display:none;
		visibility: hidden;
	}
	.header-phone {
		width: 110px;
		height: 20px
		float:left;
		margin-right: 5px;
		margin-top: 10px;
		font-family: 'Roboto Slab', serif;
		font-weight: bold;
		color: #f4d11d;
		font-size: 14px;
		text-decoration: none;

	}


	.email-signup {
		left: 50%;
		margin-left: -150px;
	}

	#sidebar {
		padding-top: 184px;
		/*left: 50%;
		margin-left: -121px;*/
		position: relative;
		margin-left: 0;
		width: 100%;
		text-align: center;
		background-repeat: repeat;
		height: 862px;
		top: 0;
	}

	.no-js #sidebar {
		padding-top: 450px;
		height: auto;
	}

	#navigation li > ul {
		position: static;
		width: 100%;
	}

	a.book-tee-time {
		left: 50%;
		margin-left: -83.5px;
	}

	.promotions-content {
		width: 232px;
		left: 50%;
		margin-left: -116px;
		position: relative;
	}

	#content {
		padding-top: 90px;
		margin-left: 0;
		clear: left;
	}

	.home-welcome {
		top: 0;
		max-width: 100%;
		text-align: center;
	}

	.page-upcoming-events .post-list-post {
		padding: 10%;
	}

	.page-upcoming-events .post-content-inner {
		padding-right: 3%;
	}

	.page-upcoming-events .post-content {
		padding-left: 3%;
	}

	.page-general-information #content {
		padding: 100px 3%;
	}

	.page-upcoming-events .post-thumbnails {
		padding-right: 3%;
	}

	.page-upcoming-events .post-thumbnails img {
		margin-top: 0;
		margin-bottom: 3%;
	}

	.page-scorecard th, .page-scorecard td {
		line-height: 25px;
	}

	.page-scorecard #content {
		padding-left: 0;
	}

	.page-scorecard .scorecard-entry, .page-scorecard .scorecard {
		padding: 3%;
	}

	.page-scorecard .page-name {
		margin-left: 3%;
	}

}

@media screen and (max-width: 400px), (max-device-width: 400px) {
	img { max-width: 100% !important; }
}

/* 5. PRINT
--------------------------------------------------------------------------------
==============================================================================*/


@media print {

	body { 
		font: normal normal 12pt/1.5em "Times New Roman", Times, serif; 
	}

	a[href]:after { 
		content: " (" attr(href) ") "; 
		font-size: 90%; 
	}

	a[href^="/"]:after { 
		content: " (http://domain.com" attr(href) ") "; 
	}

	#accessibility-nav, 
	.hide { 
		display: none !important; 
	}
}	


/* 3. PAGES
--------------------------------------------------------------------------------
==============================================================================*/


/* changes */
.contact-form input[type="email"], .contact-form select, .contact-form input[type="text"], .contact-form textarea {
    margin-top: 5px;
}


.header-contact li {
	margin-bottom: 10px;
}

.email-signup input[type="submit"] {
	border: none;
	width: 80px;
	height: 34px;
	position: relative;
	left: 50%;
	margin-left: -40px;
	margin-top: 0px; /* 7px */
	border-top: 2px solid #f4d21d;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #603b14;
	font-size: 14px;
	text-decoration: none;
	background-color: #eeb415;
	background-image: -webkit-gradient( linear, left top, left bottom, from(#eeb415), to(#e8a402) );
	background-image: -webkit-linear-gradient(top, #eeb415, #e8a402);
	background-image: -khtml-linear-gradient(top, #eeb415, #e8a402);
	background-image: -moz-linear-gradient(top, #eeb415, #e8a402);
	background-image: -ms-linear-gradient(top, #eeb415, #e8a402);
	background-image: -o-linear-gradient(top, #eeb415, #e8a402);
	background-image: linear-gradient(to bottom, #eeb415, #e8a402);
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	-webkit-text-shadow: 1px 1px 0 #ecb409;
	-khtml-text-shadow: 1px 1px 0 #ecb409;
	-moz-text-shadow: 1px 1px 0 #ecb409;
	-ms-text-shadow: 1px 1px 0 #ecb409;
	-o-text-shadow: 1px 1px 0 #ecb409;
	text-shadow: 1px 1px 0 #ecb409;
	line-height: 32px;
}
.entry-content li label {
    /*display: none;*/
}

.entry-content ul, .entry-content ol {
    padding-left: 0;
    margin-bottom: 0;
}

#gforms_confirmation_message
{
	color: #202833;
	font-size: 24px;
	margin-top: 0;
}

.validation_message {
	color: #202833;
	padding: 5px;
}

.validation_error {
	display: none;
}

/*form changes*/
.gform_body li ul ol {
	list-style: none;
}

.gfield_label {
	color:#f4d11d;
	display: inline;
}

body .gform_wrapper .gform_body .gform_fields #field_2_4.gfield label {
	color:#603b14;
	display: inline;
}

body .gform_wrapper .gform_body .gform_fields #field_4_4.gfield select {
	display: inline-block;
}

#ui-datepicker-div {
	background-color: rgb(139,0,0);
}

#gform_fields_3 li {
	list-style: none;
}
#meteor-slides img {
	text-align: center;
}