/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
FIX IE7 INLINE-BLOCK
*********************/
.fixIE7 {
  *display: inline;
  *zoom: 1;
}
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*********************
TYPOGRAPHY
*********************/
.brandon-med {
  font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.brandon-bold {
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.brandon-black {
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
}
.lora-reg {
  font-family: 'Lora', serif;
  font-weight: 400;
}
.lora-bold {
  font-family: 'Lora', serif;
  font-weight: 700;
}
.lora-em {
  font-family: 'Lora', serif;
  font-style: italic;
}
.lora-bold-em {
  font-family: 'Lora', serif;
  font-weight: bold;
  font-style: italic;
}
.bal-reg {
  font-family: 'Balthazar', serif;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
BACKGROUND SIZE
*********************/
/*
USAGE: .background-size(4px, 4px); 
*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
OPACITY
*********************/
/*********************
PLACEHOLDER
*********************/
.btn-style {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #FFF;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right 19px;
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.btn-style:hover {
  background-color: #FFF;
  background-position: right -81px;
  color: #8e6e49;
}
.btn-style2 {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #bc9b6a;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #8e6e49;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right -81px;
  background-color: #FFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.btn-style2:hover {
  background-color: #bc9b6a;
  background-position: right 19px;
  color: #FFF;
}
.btn-style2m {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #bc9b6a;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #8e6e49;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/plus-icon.png) no-repeat right 19px;
  background-color: #FFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.btn-style2m:hover {
  background-color: #bc9b6a;
  background-position: right -81px;
  color: #FFF;
}
.btn-style3 {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #FFF;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right 19px;
  background-color: transparent;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.btn-style3:hover {
  background-position: right -81px;
  color: #bc9b6a;
  border: solid 1px #bc9b6a;
}
.btn-style3m {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #FFF;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right 19px;
  background-color: transparent;
  -webkit-transition: border-color 0.2s ease-in-out;
  -moz-transition: border-color 0.2s ease-in-out;
  -ms-transition: border-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}
.btn-style3m:hover {
  background-position: right -81px;
  color: #FFF;
  border: solid 1px #bc9b6a;
}
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Site Name: Coates Golf Tournament
Author: Spry Group

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

------------ MAP ------------

01. GENERAL STYLES
03. LAYOUT & GRID STYLES
04. LINK STYLES
05. H1, H2, H3, H4, H5 STYLES
06. HEADER SYTLES
07. NAVIGATION STYLES
08. POSTS & CONTENT STYLES
09. PAGE NAVI STYLES
13. FOOTER STYLES
14. PAGES

******************************************************************/
/* =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,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
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;
}
body {
  line-height: 1;
}
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;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
/*********************
01. GENERAL STYLES
*********************/
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
/*********************
03. LAYOUT & GRID STYLES
*********************/
#white-frame {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: solid 60px #FFF;
}
#white-frame .inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: solid 2px #eeeae5;
  background: none;
  background-size: cover;
}
.top-bar {
  position: absolute;
  width: 100%;
  height: 76px;
  background: #FFF;
  z-index: 200;
  top: 0;
  left: 0;
  text-align: center;
  border-bottom: solid 2px #eeeae5;
}
.top-bar .top-left {
  position: relative;
  display: inline-block;
  text-align: center;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #BCA181;
  padding-top: 33px;
  padding-right: 15px;
  background: url(../images/btn-icon.png) no-repeat 144px -65px;
}
.top-bar .top-right {
  display: none;
}
.mobile-nav {
  position: absolute;
  display: block;
  top: 76px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 300;
}
.mobile-nav .top-right {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 60px;
  padding-top: 23px;
  padding-left: 52px;
  font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  background: #bc9b6a url(../images/ticket-icon.png) no-repeat 24px -78px;
  color: #FFF;
}
.mobile-nav #mobile-nav-btn {
  position: absolute;
  display: block;
  overflow: hidden;
  top: 0;
  right: 0;
  width: 52px;
  height: 60px;
  cursor: pointer;
  z-index: 200;
  background: #9e7b48 url(../images/mobile-menu-icon.png) no-repeat 0 0;
}
.mobile-nav #mobile-nav-btn.open {
  background-position: 0 -60px;
}
.mobile-nav #main-nav-wrap {
  position: relative;
  display: none;
  width: 100%;
  z-index: 300;
}
.mobile-nav #main-nav-wrap.open {
  display: block;
}
.mobile-nav #menu-main-navigation {
  position: relative;
  display: block;
  width: 100%;
  z-index: 300;
}
.mobile-nav #menu-main-navigation > li {
  position: relative;
  display: block;
  min-height: 42px;
  background: #9e7b48;
  border-top: solid 1px #8d6d3e;
}
.mobile-nav #menu-main-navigation > li > a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 42px;
  text-align: center;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
  line-height: 43px;
  color: #FFF;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.mobile-nav #menu-main-navigation > li span {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 52px;
  height: 42px;
  cursor: pointer;
  background: #8d6d3e url(../images/sub-span.png) no-repeat 0 0;
}
.mobile-nav #menu-main-navigation > li span.open {
  background: #ffffff url(../images/sub-span.png) no-repeat 0 -42px;
}
.mobile-nav #menu-main-navigation > li .sub-menu {
  display: none;
}
.mobile-nav #menu-main-navigation > li .sub-menu > li {
  position: relative;
  display: block;
  height: 42px;
  background: #ffffff url(../images/sub-nav-pattern.jpg) repeat-x top;
}
.mobile-nav #menu-main-navigation > li .sub-menu > li a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 42px;
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 43px;
  color: #666666;
}
.mobile-nav #menu-main-navigation > li .sub-menu > li:first-child {
  background: #FFF;
}
.mobile-nav #menu-main-navigation > li .sub-menu.open {
  display: block;
}
.mobile-nav #menu-main-navigation > li:first-child {
  border-top: none;
}
.mobile-nav .search-wrap {
  position: relative;
  display: block;
  height: 66px;
  padding: 20px 28px 0 28px;
  background: #9e7b48;
  border-top: solid 1px #8d6d3e;
}
.mobile-nav .search-wrap #searchform2 {
  position: relative;
  display: block;
  padding-right: 133px;
}
.mobile-nav .search-wrap #searchform2 input[type=text] {
  position: relative;
  display: block;
  border: none;
  outline: none;
  margin: 0;
  padding: 0 0 0 27px;
  width: 100%;
  height: 26px;
  line-height: 26px;
  background: #ffffff url(../images/1.png) no-repeat left 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #353434;
}
.mobile-nav .search-wrap #searchform2 input[type=text]::-webkit-input-placeholder {
  color: #353434;
}
.mobile-nav .search-wrap #searchform2 input[type=text]:-moz-placeholder {
  /* Firefox 18- */
  color: #353434;
}
.mobile-nav .search-wrap #searchform2 input[type=text]::-moz-placeholder {
  /* Firefox 19+ */
  color: #353434;
}
.mobile-nav .search-wrap #searchform2 input[type=text]:-ms-input-placeholder {
  color: #353434;
}
.mobile-nav .search-wrap .facebook,
.mobile-nav .search-wrap .twitter,
.mobile-nav .search-wrap .instagram,
.mobile-nav .search-wrap .youtube {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  border: solid 1px #FFF;
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.mobile-nav .search-wrap .facebook {
  background: url(../images/3.png) no-repeat 0 -24px;
  right: 127px;
  top: 20px;
}
.mobile-nav .search-wrap .facebook:hover {
  background-color: #FFF;
  background-position: 0 0;
}
.mobile-nav .search-wrap .twitter {
  background: url(../images/4.png) no-repeat 0 -24px;
  right: 94px;
  top: 20px;
}
.mobile-nav .search-wrap .twitter:hover {
  background-color: #FFF;
  background-position: 0 0;
}
.mobile-nav .search-wrap .instagram {
  background: url(../images/social-instagram.png) no-repeat 0 -24px;
  right: 61px;
  top: 20px;
}
.mobile-nav .search-wrap .instagram:hover {
  background-color: #FFF;
  background-position: 0 0;
}
.mobile-nav .search-wrap .youtube {
  background: url(../images/social-youtube.png) no-repeat 0 -24px;
  right: 28px;
  top: 20px;
}
.mobile-nav .search-wrap .youtube:hover {
  background-color: #FFF;
  background-position: 0 0;
}
.bottom-bar {
  position: fixed;
  width: 100%;
  height: 60px;
  background: #FFF;
  left: 0;
  bottom: 0;
  z-index: 200;
}
.bottom-bar .bottom-left {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  height: 60px;
  bottom: 0;
  margin: 0 auto;
}
.bottom-bar .bottom-left .inner {
  position: relative;
  display: none;
  overflow: hidden;
  float: left;
  height: 60px;
  padding-top: 25px;
  padding-left: 22px;
  background: url(../images/footer-icon.png) no-repeat left 20px;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 11px;
  color: #353434;
  letter-spacing: 0;
}
.bottom-bar .bottom-left .inner a {
  display: inline;
  float: none;
  margin-left: 0;
  color: #353434;
  text-decoration: underline;
}
.bottom-bar .bottom-left a {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  color: #353434;
  padding-top: 25px;
  margin-left: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.bottom-bar .bottom-left a:hover {
  color: #8e6e49;
}
.bottom-bar .bottom-right {
  position: relative;
  display: block;
  overflow: hidden;
  float: right;
  height: 60px;
}
.bottom-bar .bottom-right .header-social {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 17px;
  margin-right: 18px;
}
.bottom-bar .bottom-right .header-social a,
.bottom-bar .bottom-right .header-social .search {
  position: relative;
  display: block;
  overflow: hidden;
  float: right;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  border: solid 1px #8e6e49;
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.bottom-bar .bottom-right .header-social a #search-trigger,
.bottom-bar .bottom-right .header-social .search #search-trigger {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
  background: none;
}
.bottom-bar .bottom-right .header-social a.newsletter,
.bottom-bar .bottom-right .header-social .search.newsletter {
  width: 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  color: #8e6e49;
  padding-left: 25px;
  font-weight: bold;
  line-height: 25px;
  background: url(../images/2.png) no-repeat;
}
.bottom-bar .bottom-right .header-social a.newsletter:hover,
.bottom-bar .bottom-right .header-social .search.newsletter:hover {
  background-color: #8e6e49;
  background-position: 0 -24px;
  color: #FFF;
}
.bottom-bar .bottom-right .header-social a.facebook,
.bottom-bar .bottom-right .header-social .search.facebook {
  display: none;
  background: url(../images/3.png) no-repeat;
}
.bottom-bar .bottom-right .header-social a.facebook:hover,
.bottom-bar .bottom-right .header-social .search.facebook:hover {
  background-color: #8e6e49;
  background-position: 0 -24px;
}
.bottom-bar .bottom-right .header-social a.twitter,
.bottom-bar .bottom-right .header-social .search.twitter {
  display: none;
  background: url(../images/4.png) no-repeat;
}
.bottom-bar .bottom-right .header-social a.twitter:hover,
.bottom-bar .bottom-right .header-social .search.twitter:hover {
  background-color: #8e6e49;
  background-position: 0 -24px;
}
.bottom-bar .bottom-right .header-social a.youtube,
.bottom-bar .bottom-right .header-social .search.youtube {
  display: none;
  background: url(../images/social-youtube.png) no-repeat;
}
.bottom-bar .bottom-right .header-social a.youtube:hover,
.bottom-bar .bottom-right .header-social .search.youtube:hover {
  background-color: #8e6e49;
  background-position: 0 -24px;
}
.bottom-bar .bottom-right .header-social a.instagram,
.bottom-bar .bottom-right .header-social .search.instagram {
  display: none;
  background: url(../images/social-instagram.png) no-repeat;
}
.bottom-bar .bottom-right .header-social a.instagram:hover,
.bottom-bar .bottom-right .header-social .search.instagram:hover {
  background-color: #8e6e49;
  background-position: 0 -24px;
}
.bottom-bar .bottom-right .header-social .search {
  display: none;
  background: url(../images/1.png) no-repeat 0 0;
  cursor: pointer;
}
.bottom-bar .bottom-right .header-social .search:hover {
  background-color: #8e6e49;
  background-position: 0 -24px;
}
.bottom-bar .bottom-right .header-social .search .searchform {
  display: none;
}
.bottom-bar .bottom-right .header-social .search.open {
  width: 158px;
  padding-left: 26px;
}
.bottom-bar .bottom-right .header-social .search.open:hover {
  background-color: #FFF;
  background-position: 0 0;
}
.bottom-bar .bottom-right .header-social .search.open .searchform {
  position: relative;
  display: block;
}
.bottom-bar .bottom-right .header-social .search.open .searchform input[type=text] {
  position: relative;
  display: block;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  height: 24px;
  line-height: 25px;
  background: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #353434;
}
.bottom-bar .bottom-right .header-social .search.open .searchform input[type=text]::-webkit-input-placeholder {
  color: #353434;
}
.bottom-bar .bottom-right .header-social .search.open .searchform input[type=text]:-moz-placeholder {
  /* Firefox 18- */
  color: #353434;
}
.bottom-bar .bottom-right .header-social .search.open .searchform input[type=text]::-moz-placeholder {
  /* Firefox 19+ */
  color: #353434;
}
.bottom-bar .bottom-right .header-social .search.open .searchform input[type=text]:-ms-input-placeholder {
  color: #353434;
}
#wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
#content {
  position: relative;
  z-index: 150;
}
.clear {
  clear: both;
}
a {
  text-decoration: none;
}
.line-title {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  line-height: 46px;
  text-align: center;
}
.line-title .line {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  top: 23px;
  left: 0;
  background: #eeeae5;
}
.line-title .text {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 18px;
  color: #353434;
  padding: 0 33px;
  background: #FFF;
  letter-spacing: 5px;
}
.line-title .results {
  position: relative;
  display: block;
  text-align: center;
  top: -14px;
  font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #767676;
  line-height: 2em;
}
.line-title .results span {
  display: inline-block;
  padding: 0 5px;
  background: url(../images/search-bottom-line.jpg) repeat-x bottom;
}
.line-title .more-news {
  display: none !important;
}
.line-title.line-title2 .line {
  background: #a18768;
}
.line-title.line-title2 .text {
  color: #FFF;
  background: #8e6e49;
}
.home-golden-ocala-section .line-title {
  height: 73px;
  margin-bottom: 30px;
}
.home-golden-ocala-section .line-title .line {
  top: 40px;
}
.home-golden-ocala-section .line-title .text {
  position: relative;
  display: block;
  width: 134px;
  height: 73px;
  margin: 0 auto;
  background: url(../images/golden-ocala-club-logo.gif);
}
.smalltext {
  font-family: 'Lora', serif;
  font-weight: 400;
  text-align: center;
  color: #545857;
  padding-bottom: 95px;
  padding-top: 38px;
}
.page-top-section {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 452px;
}
.page-top-section .main-overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}
.page-top-section .second-overlay {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 6;
  background: url(../images/slice.png) repeat;
}
.page-top-section .page-top-content {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 170px;
  width: 100%;
  z-index: 10;
}
.page-top-section .page-top-content .page-logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 303px;
  height: 155px;
  margin: 0 auto;
  background: url(../images/logo-horz.png) no-repeat;
}
.page-top-section .page-top-content .text {
  display: none;
}
.page-top-section .black-bar {
  position: absolute;
  display: block;
  z-index: 7;
  width: 100%;
  height: 76px;
  bottom: 0;
  left: 0;
  background: url(../images/black-overlay.png) repeat;
}
.page-top-section .black-bar .text {
  position: relative;
  display: block;
  width: 100%;
  height: 76px;
  line-height: 76px;
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFF;
}
.page-top-section .black-bar .text span {
  display: none;
}
.page-top-section .black-bar .text a {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #FFF;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right 19px;
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  width: 197px;
}
.page-top-section .black-bar .text a:hover {
  background-color: #FFF;
  background-position: right -81px;
  color: #8e6e49;
}
/*********************
04. LINK STYLES
*********************/
.read-button-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 360px;
  height: 46px;
  margin: 0 auto;
  text-align: center;
}
.read-button-wrap .line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #bc9b6a;
  top: 22px;
}
.read-button-wrap .read-inner {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0 20px;
  background: #FFF;
}
.read-button-wrap .read-inner .read-more {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #bc9b6a;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #8e6e49;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right -81px;
  background-color: #FFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  display: block;
  width: 206px;
}
.read-button-wrap .read-inner .read-more:hover {
  background-color: #bc9b6a;
  background-position: right 19px;
  color: #FFF;
}
/******************************************************************
05. H1, H2, H3, H4, H5 STYLES
******************************************************************/
.formatted {
  position: relative;
  display: block;
}
.formatted p {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  color: #767676;
  line-height: 1.6em;
  margin-bottom: 20px;
}
.formatted strong {
  font-family: 'Lora', serif;
  font-weight: 700;
}
.formatted a {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 400;
  color: #bc9b6a;
}
.formatted a:hover {
  text-decoration: underline;
}
.formatted h2 {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 22px;
  color: #767676;
  line-height: 1.6em;
  margin-bottom: 15px;
}
.formatted ul {
  position: relative;
  margin-bottom: 20px;
  margin-left: 20px;
}
.formatted ul li {
  position: relative;
  margin-bottom: 15px;
  margin-left: 15px;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  color: #767676;
  line-height: 1.6em;
  list-style-image: url(../images/li-image.png);
}
.formatted blockquote {
  width: 86%;
  margin: 30px auto;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 18px;
}
.formatted blockquote strong {
  font-family: 'Lora', serif;
  font-weight: bold;
  font-style: italic;
}
.formatted .iframe-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px auto;
}
.formatted .iframe-wrap .inside:before {
  content: "";
  display: block;
  padding-top: 58%;
}
.formatted .iframe-wrap iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.formatted iframe {
  margin: 0 auto;
}
.formatted .wp-caption {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
.formatted .wp-caption img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.formatted .wp-caption .wp-caption-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #767676;
}
/*********************
06. HEADER SYTLES
*********************/
#header {
  position: fixed;
  display: none;
  top: 60px;
  z-index: 500;
  background: url(../images/nav-pattern.jpg) repeat-x;
}
#header #menu-main-navigation-1 {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  text-align: center;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.3);
}
#header #menu-main-navigation-1 > li {
  position: relative;
  display: inline-block;
  height: 80px;
}
#header #menu-main-navigation-1 > li a {
  position: relative;
  display: block;
  height: 80px;
  line-height: 80px;
  padding: 0 8px;
  text-align: center;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 11px;
  color: #d9cdbf;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
#header #menu-main-navigation-1 > li .sub-menu {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 190px;
  max-height: 0px;
  left: 50%;
  margin-left: -95px;
  bottom: auto;
  top: 80px;
  padding-top: 0px;
  padding-bottom: 0px;
  background: #FFF;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#header #menu-main-navigation-1 > li .sub-menu li {
  position: relative;
  display: block;
  width: 100%;
  height: 32px;
}
#header #menu-main-navigation-1 > li .sub-menu li a {
  position: relative;
  display: block;
  width: 100%;
  height: 32px;
  line-height: 33px;
  text-align: center;
  background: url(../images/sub-nav-pattern.jpg) repeat-x top;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: #666666;
}
#header #menu-main-navigation-1 > li .sub-menu li a:hover {
  color: #8e6e49;
}
#header #menu-main-navigation-1 > li .sub-menu li:first-child {
  margin-top: 2px;
}
#header #menu-main-navigation-1 > li .sub-menu li:first-child a {
  background: none;
}
#header #menu-main-navigation-1 > li .sub-menu li:last-child {
  margin-bottom: 2px;
}
#header #menu-main-navigation-1 > li .sub-menu li:hover {
  background: url(../images/sub-hover.png) no-repeat 0 11px;
}
#header #menu-main-navigation-1 > li:hover a {
  color: #FFF;
}
#header #menu-main-navigation-1 > li:hover .sub-menu {
  max-height: 800px;
}
#header.fixed {
  position: fixed;
  top: 60px;
}
body.home #header {
  position: absolute;
  display: none;
  width: auto;
  height: 80px;
  top: -80px;
}
body.home #header #menu-main-navigation-1 > li .sub-menu {
  bottom: 80px;
  top: auto;
}
body.home #header #menu-main-navigation-1 > li .sub-menu.down {
  bottom: auto;
  top: 80px;
}
body.home #header.fixed {
  position: fixed;
  top: 60px;
}
/*********************
07. NAVIGATION STYLES
*********************/
/*********************
08. POSTS & CONTENT STYLES
*********************/
/*********************
09. PAGE NAVI STYLES
*********************/
/*********************
13. FOOTER STYLES
*********************/
/*********************
14. PAGES
*********************/
.home-main-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 680px;
  background: url(../images/main-home-image.jpg);
  background-size: cover;
}
.home-top-section {
  position: absolute;
  display: block;
  padding-top: 152px;
  width: 100%;
  left: 0;
  top: 0;
}
.home-top-section .home-logo {
  position: relative;
  display: block;
  overflow: hidden;
  width: 200px;
  height: 245px;
  margin: 0 auto 28px auto;
  background: url(../images/home-logo-edit.png) no-repeat;
  -webkit-background-size: 200px 245px;
  -moz-background-size: 200px 245px;
  background-size: 200px 245px;
}
.home-top-section .home-logo.smaller {
  width: 179px;
  height: 220px;
  background: url(../images/home-logo-edit.png) no-repeat;
  -webkit-background-size: 179px 220px;
  -moz-background-size: 179px 220px;
  background-size: 179px 220px;
}
.home-top-section .main-title {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Balthazar', serif;
  font-size: 34px;
  color: #FFF;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.home-top-section .sub-title {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 20px;
  padding: 0;
  line-height: 1.2em;
  color: #FFF;
  margin-bottom: 40px;
}
.home-top-section .sub-title .divider {
  position: relative;
  display: block;
  width: 27px;
  height: 0;
  margin: 2px auto 8px auto;
  background: url(../images/divider.png) no-repeat 0 2px;
}
.home-top-section .updates {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFF;
  line-height: 1.2em;
  letter-spacing: 1px;
}
.home-top-section .updates .updates-btn {
  display: block;
  margin: 12px auto 0 auto;
  width: 197px;
}
.tournament-news {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 30px;
  background: #FFF;
  margin-bottom: 40px;
}
.tournament-news .line-title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.tournament-news .line-title .more-news {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #bc9b6a;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #8e6e49;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right -81px;
  background-color: #FFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  width: 157px;
  position: absolute;
  right: 20px;
  top: 0;
}
.tournament-news .line-title .more-news:hover {
  background-color: #bc9b6a;
  background-position: right 19px;
  color: #FFF;
}
.tournament-news #news-section-slider {
  position: relative;
  display: block;
  width: 100%;
  height: 290px;
  border-top: solid 1px #b3b4b1;
  border-bottom: solid 1px #b3b4b1;
}
.tournament-news #news-section-slider .owl-item {
  position: relative;
  display: block;
  height: 290px;
}
.tournament-news #news-section-slider .item {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 290px;
}
.tournament-news #news-section-slider .item .image {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1, 1);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}
.tournament-news #news-section-slider .item .overlay {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 107px;
  bottom: 0;
  left: 0;
  padding: 22px 0 0 22px;
  background: url(../images/the-overlay.png) repeat;
}
.tournament-news #news-section-slider .item .overlay .date {
  position: relative;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  color: #8e6e49;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.tournament-news #news-section-slider .item .overlay .title {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 15px;
  color: #FFF;
}
.tournament-news #news-section-slider .item:hover .image {
  -webkit-transform: scale(1.03, 1.05);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 200ms;
  -moz-transform: scale(1.03, 1.05);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 200ms;
}
.tournament-news #news-section-slider .owl-stage-outer {
  margin-bottom: 28px;
}
.tournament-news #news-section-slider .owl-pagination {
  position: relative;
  display: none;
  text-align: center;
  width: 100%;
  height: 8px;
}
.tournament-news #news-section-slider .owl-pagination .owl-page {
  position: relative;
  display: inline-block;
  width: 25%;
  height: 8px;
  text-align: center;
  padding: 0 10px;
}
.tournament-news #news-section-slider .owl-pagination .owl-page span {
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  background: #eeeae5;
  cursor: pointer;
}
.tournament-news #news-section-slider .owl-pagination .owl-page.active span {
  background: #8e6e49;
}
.tournament-news #news-section-slider .owl-buttons {
  position: absolute;
  display: block;
  top: 120px;
  width: 100%;
  height: 26px;
  z-index: 400;
  padding: 0 10px;
}
.tournament-news #news-section-slider .owl-buttons .owl-prev,
.tournament-news #news-section-slider .owl-buttons .owl-next {
  position: relative;
  display: block;
  width: 27px;
  height: 26px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tournament-news #news-section-slider .owl-buttons .owl-prev {
  float: left;
  background: #1b1a19 url(../images/arrow-left.png) no-repeat;
}
.tournament-news #news-section-slider .owl-buttons .owl-prev:hover {
  background-color: #806546;
}
.tournament-news #news-section-slider .owl-buttons .owl-next {
  float: right;
  background: #1b1a19 url(../images/arrow-right.png) no-repeat;
}
.tournament-news #news-section-slider .owl-buttons .owl-next:hover {
  background-color: #806546;
}
.social-section {
  position: relative;
  display: none;
  width: 100%;
  height: 377px;
  margin-bottom: 69px;
  border-top: solid 1px #eeeae5;
  border-bottom: solid 1px #eeeae5;
}
.social-section .top-part {
  position: relative;
  display: block;
  height: 40px;
  margin-left: 50px;
  margin-top: -20px;
}
.social-section .top-part .label {
  position: relative;
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 48px;
  text-align: center;
  background: #bc9b6a;
  font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #FFF;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.social-section .top-part .action {
  position: relative;
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 19px 0 19px;
  border: solid 1px #eeeae5;
  background: #FFF;
}
.social-section .top-part .action .fb-like {
  top: -12px;
}
.home-photo-section {
  position: relative;
  display: block;
  overflow: hidden;
  background: #8e6e49;
  padding: 30px 0 60px 0;
  margin-bottom: 30px;
}
.home-photo-section .line-title {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.home-photo-section .line-title .more-photos {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #FFF;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right 19px;
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  display: none;
  background-color: #8e6e49;
  width: 157px;
  position: absolute;
  right: 20px;
  top: 0;
}
.home-photo-section .line-title .more-photos:hover {
  background-color: #FFF;
  background-position: right -81px;
  color: #8e6e49;
}
.home-photo-section .photo-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-width: 800px;
  max-height: 533px;
  margin: 0 auto;
  background: url(../images/photo-wrapper-pattern.jpg) repeat-x;
}
.home-photo-section .photo-wrapper .inner:before {
  content: "";
  display: block;
  padding-top: 58%;
}
.home-photo-section .photo-wrapper #photo-slides {
  position: absolute;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home-photo-section .photo-wrapper #photo-slides li {
  width: 100%;
  height: 100%;
}
.home-photo-section .photo-wrapper #photo-slides li img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 100%;
}
.home-photo-section .photo-wrapper #photo-slides li .caption {
  position: absolute;
  display: none;
  width: 100%;
  height: 255px;
  bottom: 0;
  left: 0;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  padding: 195px 30px 0 30px;
  color: #FFF;
  background: url(../images/gallery-gradient.png) repeat-x;
}
.home-photo-section .photo-wrapper .photo-pagination {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -13px;
  width: 100%;
  height: 26px;
  z-index: 400;
  padding: 0 10px;
}
.home-photo-section .photo-wrapper .photo-pagination #photo-prev,
.home-photo-section .photo-wrapper .photo-pagination #photo-next {
  position: relative;
  display: block;
  width: 27px;
  height: 26px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-photo-section .photo-wrapper .photo-pagination #photo-prev {
  float: left;
  background: #1b1a19 url(../images/arrow-left.png) no-repeat;
}
.home-photo-section .photo-wrapper .photo-pagination #photo-prev:hover {
  background-color: #806546;
}
.home-photo-section .photo-wrapper .photo-pagination #photo-next {
  float: right;
  background: #1b1a19 url(../images/arrow-right.png) no-repeat;
}
.home-photo-section .photo-wrapper .photo-pagination #photo-next:hover {
  background-color: #806546;
}
.home-sponsor-section .line-title {
  margin-bottom: 30px;
}
.home-sponsor-section .the-sponsors {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 46px;
}
.home-sponsor-section .the-sponsors li {
  position: relative;
  display: block;
  margin: 0 auto;
  height: 110px;
  vertical-align: top;
}
.home-sponsor-section .the-sponsors li img {
  display: block;
  height: 110px;
  width: auto;
  margin: 0 auto;
}
.home-sponsor-section .thank-you {
  position: relative;
  display: block;
  height: 48px;
  line-height: 46px;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 16px;
  color: #545857;
  text-align: center;
  margin-bottom: 92px;
}
.home-sponsor-section .thank-you a {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #bc9b6a;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #8e6e49;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right -81px;
  background-color: #FFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  width: 190px;
}
.home-sponsor-section .thank-you a:hover {
  background-color: #bc9b6a;
  background-position: right 19px;
  color: #FFF;
}
.home-get-tickets {
  position: relative;
  display: block;
  width: 100%;
  height: 326px;
  padding-top: 76px;
  background: url(../images/home-tickets-bg.jpg) no-repeat;
  background-size: cover;
}
.home-get-tickets .line-part {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Balthazar', serif;
  font-size: 30px;
  letter-spacing: 5px;
  color: #FFF;
  margin-bottom: 21px;
}
.home-get-tickets .buy-tickets {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #FFF;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #FFF;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/btn-icon.png) no-repeat right 19px;
  background-color: transparent;
  -webkit-transition: border-color 0.2s ease-in-out;
  -moz-transition: border-color 0.2s ease-in-out;
  -ms-transition: border-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
  display: block;
  margin: 0 auto;
  width: 216px;
}
.home-get-tickets .buy-tickets:hover {
  background-position: right -81px;
  color: #FFF;
  border: solid 1px #bc9b6a;
}
#content.blog .the-posts {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 20px;
}
#content.blog .the-posts .post {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 840px;
  margin: 0 auto 40px auto;
  border-bottom: solid 3px #eeeae5;
}
#content.blog .the-posts .post .wrap-it {
  position: relative;
  display: block;
}
#content.blog .the-posts .post .wrap-it .feat-image {
  display: none;
}
#content.blog .the-posts .post .date {
  position: relative;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  color: #8e6e49;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
#content.blog .the-posts .post .title {
  position: relative;
  display: block;
  font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  color: #353434;
  margin-bottom: 8px;
}
#content.blog .the-posts .post .continue {
  position: relative;
  display: block;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #bc9b6a;
  margin-bottom: 20px;
}
#content.blog .the-posts .post .continue .text {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: solid 1px #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#content.blog .the-posts .post .continue .text:hover {
  border-bottom: solid 1px #dfd1bd;
}
#content.blog .the-posts .post .continue .thing {
  position: relative;
  font-size: 10px;
  bottom: 2px;
  right: -2px;
}
#content.blog .the-posts .first-post {
  border-bottom: none;
}
#content.blog .the-posts .first-post .image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-top: solid 1px #c0c4c1;
  border-bottom: solid 1px #c0c4c1;
}
#content.blog .the-posts .first-post .image img {
  display: block;
  width: 100%;
  height: auto;
}
#content.blog .the-posts .first-post .date {
  margin-bottom: 8px;
}
#content.blog .the-posts .first-post .overlay {
  position: absolute;
  display: block;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 107px;
  padding: 22px 22px 10px 22px;
  background: url(../images/black-overlay.png) repeat;
}
#content.blog .the-posts .first-post .overlay .title {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 15px;
  color: #FFF;
  margin-bottom: 0;
}
#content.blog .the-posts .load-more {
  position: relative;
  display: block;
  width: 98%;
  max-width: 360px;
  height: 46px;
  margin: 0 auto;
}
#content.blog .the-posts .load-more .line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #bc9b6a;
  top: 22px;
  left: 0;
}
#content.blog .the-posts .load-more .load-more-wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 246px;
  height: 46px;
  background: #FFF;
}
#content.blog .the-posts .load-more #load-more {
  position: relative;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border: solid 1px #bc9b6a;
  padding-left: 20px;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: #8e6e49;
  text-align: left;
  text-transform: uppercase;
  background: url(../images/plus-icon.png) no-repeat right 19px;
  background-color: #FFF;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  display: block;
  width: 206px;
  margin: 0 auto;
}
#content.blog .the-posts .load-more #load-more:hover {
  background-color: #bc9b6a;
  background-position: right -81px;
  color: #FFF;
}
#content.blog .the-posts .share {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 465px;
  height: 68px;
  background: #f6f4f2;
  border-bottom: solid 3px #eeeae5;
  border-top: solid 3px #eeeae5;
}
#content.blog .the-posts .share .text {
  display: none;
}
#content.blog .the-posts .share .buttons {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  padding-top: 14px;
}
#content.single .the-posts .post {
  border-bottom: 0;
  margin-bottom: 32px !important;
}
#content.single .the-posts .post .date {
  text-align: center;
  letter-spacing: 1px;
}
#content.single .the-posts .post .title {
  text-align: center;
  margin-bottom: 30px !important;
}
#content.single .the-posts .post .formatted p {
  font-size: 18px;
  margin-bottom: 30px;
}
#content.single .the-posts .post .formatted ul {
  margin-bottom: 35px;
}
#content.single .the-posts .post .formatted ul li {
  font-size: 18px;
}
#content.search .the-posts {
  padding-top: 26px;
}
#content.multimedia .multimedia-news {
  padding-bottom: 40px;
  margin-bottom: 0;
  background: #171717;
}
#content.multimedia .multimedia-news .line-title .line {
  background: #a18768;
}
#content.multimedia .multimedia-news .line-title .text {
  background: #171717;
  color: #FFF;
}
#content.multimedia .multimedia-news .the-media-posts {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#content.multimedia .multimedia-news .the-media-posts .a-post {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 280px;
  height: 164px;
  margin: 0 5px 10px 5px;
}
#content.multimedia .multimedia-news .the-media-posts .a-post .image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transform: scale(1, 1);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}
#content.multimedia .multimedia-news .the-media-posts .a-post .overlay {
  position: absolute;
  display: block;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 107px;
  padding: 50px 0 0 18px;
  text-align: left;
  background: url(../images/multimedia-overlay.png) repeat-x;
}
#content.multimedia .multimedia-news .the-media-posts .a-post .overlay .date {
  position: relative;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  color: #FFF;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
#content.multimedia .multimedia-news .the-media-posts .a-post .overlay .title {
  position: relative;
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 15px;
  color: #FFF;
}
#content.multimedia .multimedia-news .the-media-posts .a-post .overlay .amt {
  position: absolute;
  display: block;
  width: 52px;
  text-align: left;
  right: 0;
  top: 77px;
  padding-left: 17px;
  background: url(../images/photo-icon.png) no-repeat left;
  font-family: "brandon-grotesque-n7", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #FFF;
}
#content.multimedia .multimedia-news .the-media-posts .a-post:hover .image {
  -webkit-transform: scale(1.03, 1.05);
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 200ms;
  -moz-transform: scale(1.03, 1.05);
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 200ms;
}
#content.multimedia-single .photo-top {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
#content.multimedia-single .photo-top .main-title {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 24px;
  color: #726e6e;
  margin-bottom: 10px;
}
#content.multimedia-single .photo-top .date-wrap {
  position: relative;
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
}
#content.multimedia-single .photo-top .date-wrap .line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #bca181;
  top: 8px;
  left: 0;
}
#content.multimedia-single .photo-top .date-wrap .date-inner {
  position: relative;
  display: inline-block;
  background: #171717;
  text-align: center;
  padding: 0 10px;
}
#content.multimedia-single .photo-top .date-wrap .date-inner .date {
  position: relative;
  display: block;
  text-align: center;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  color: #bca181;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#content.multimedia-single .photo-wrapper {
  margin-bottom: 30px;
  background: url(../images/multi-slice-2.jpg) repeat-x bottom;
}
#content.multimedia-single .multimedia-news {
  text-align: center;
}
#content.multimedia-single .multimedia-news .the-media-posts {
  margin: 0 auto 30px auto;
}
#content.multimedia-single .view-more-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
}
#content.multimedia-single .view-all {
  position: relative;
  display: inline-block;
  font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  color: #bca181;
  letter-spacing: 2px;
  padding-left: 19px;
  margin: 0 auto;
  background: url(../images/view-more-icon.png) no-repeat left 0;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
#content.multimedia-single .view-all:hover {
  background-position: left -30px;
  color: #FFF;
}
#content.press .the-posts {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
#content.press .the-posts .post {
  padding-bottom: 50px;
  border-bottom: solid 3px #eeeae5;
}
#content.press .the-posts .share {
  margin-top: 50px;
}
#content.tickets .the-posts .post .title {
  color: #bca181;
}
#content.tickets .the-posts .post .formatted {
  margin-bottom: 40px;
}
#content.volunteer .read-button-wrap {
  margin-bottom: 50px;
}
#content.sponsors .the-posts .post .image {
  position: relative;
  display: block;
  width: 90%;
  margin: 0 auto 38px auto;
}
#content.sponsors .the-posts .post .image img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
#content.sponsors .the-posts .post .website {
  text-align: center;
}
#content.sponsors .the-posts .post .formatted,
#content.sponsors .the-posts .post .formatted p {
  margin-bottom: 0;
}
.local-sponsors {
  text-align: center;
}
.local-sponsors a {
  display: inline-block;
  height: 110px;
  margin: 20px 10px 30px 10px;
}
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
/*
@media only screen and (min-width: 481px) {

	// styles in 481up.less
	@import "_481up.less";

} // end of media query
*/
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 600px) {
  .formatted .wp-caption {
    position: relative;
    display: block;
    overflow: hidden;
    width: auto;
    margin: 0 auto;
  }
  .formatted .wp-caption img {
    display: block;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .line-title {
    height: 46px;
    line-height: 46px;
  }
  .line-title .text {
    height: 46px;
    line-height: 46px;
    font-size: 30px;
  }
  .line-title .more-news {
    display: inline-block;
  }
  .home-main-image {
    border-left: solid 2px #eeeae5;
    border-right: solid 2px #eeeae5;
  }
  #content {
    border-left: solid 2px #eeeae5;
    border-right: solid 2px #eeeae5;
  }
  .page-top-section {
    height: 406px;
  }
  .page-top-section .page-top-content {
    width: 92%;
    max-width: 1080px;
    margin: 132px auto 0 auto;
  }
  .page-top-section .page-top-content .page-logo {
    margin: 0;
    float: left;
    width: 230px;
    height: 118px;
    background: url(../images/logo-horz.png) no-repeat;
    -webkit-background-size: 230px 118px;
    -moz-background-size: 230px 118px;
    background-size: 230px 118px;
  }
  .page-top-section .page-top-content .text {
    position: relative;
    display: block;
    float: right;
    padding-top: 34px;
  }
  .page-top-section .page-top-content .text .main {
    position: relative;
    display: block;
    text-align: left;
    font-family: 'Balthazar', serif;
    font-size: 31px;
    color: #FFF;
    margin-bottom: 8px;
    letter-spacing: 4px;
  }
  .page-top-section .page-top-content .text .sub {
    position: relative;
    display: block;
    text-align: left;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3em;
    color: #FFF;
    margin-bottom: 50px;
  }
  .page-top-section .page-top-content .text .sub .breaker {
    display: block;
  }
  .page-top-section .black-bar .text span {
    display: inline;
  }
  /*********************
06. HEADER SYTLES
*********************/
  #header {
    display: block;
  }
  #header #menu-main-navigation {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
  }
  #header #menu-main-navigation > li {
    position: relative;
    display: inline-block;
    height: 80px;
  }
  #header #menu-main-navigation > li a {
    position: relative;
    display: block;
    height: 80px;
    line-height: 80px;
    padding: 0 23px;
    text-align: center;
    font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    color: #d9cdbf;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -ms-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
  }
  #header #menu-main-navigation > li a:hover {
    color: #FFF;
  }
  #header #menu-main-navigation > li .sub-menu {
    position: absolute;
    display: none;
    overflow: hidden;
    width: 190px;
    left: 50%;
    margin-left: -95px;
    padding-top: 2px;
    padding-bottom: 2px;
    background: #FFF;
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  }
  #header #menu-main-navigation > li .sub-menu.down {
    bottom: auto;
    top: 80px;
  }
  #header #menu-main-navigation > li .sub-menu li {
    position: relative;
    display: block;
    width: 100%;
    height: 32px;
  }
  #header #menu-main-navigation > li .sub-menu li a {
    position: relative;
    display: block;
    width: 100%;
    height: 32px;
    line-height: 33px;
    text-align: center;
    background: #ffffff url(../images/sub-nav-pattern.jpg) repeat-x top;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    color: #666666;
  }
  #header #menu-main-navigation > li .sub-menu li a:hover {
    color: #8e6e49;
  }
  #header #menu-main-navigation > li .sub-menu li:first-child a {
    background: #FFF;
  }
  #header #menu-main-navigation > li:hover .sub-menu {
    display: block;
  }
  #header.fixed {
    position: fixed;
    top: 60px;
  }
  body.home #header {
    display: block;
  }
  .home-main-image {
    height: auto;
  }
  .home-top-section {
    position: absolute;
    display: block;
    overflow: hidden;
    padding-top: 152px;
    width: 100%;
    left: 0;
    top: 0;
  }
  .home-top-section .home-logo {
    position: relative;
    display: block;
    overflow: hidden;
    /*
		width:248px;
		height:304px;
		*/
    width: 228px;
    height: 280px;
    margin: 0 auto 58px auto;
    background: url(../images/home-logo-edit.png) no-repeat;
    -webkit-background-size: 228px 280px;
    -moz-background-size: 228px 280px;
    background-size: 228px 280px;
  }
  .home-top-section .main-title {
    position: relative;
    display: block;
    text-align: center;
    font-family: 'Balthazar', serif;
    font-size: 50px;
    color: #FFF;
    margin-bottom: 10px;
    letter-spacing: 9px;
  }
  .home-top-section .sub-title {
    position: relative;
    display: block;
    text-align: center;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 22px;
    color: #FFF;
    margin-bottom: 50px;
  }
  .home-top-section .updates {
    position: relative;
    display: block;
    text-align: center;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 17px;
    color: #FFF;
  }
  .home-top-section .updates br {
    display: none;
  }
  .home-top-section .updates .updates-btn {
    display: inline-block;
    width: 197px;
  }
  .top-bar {
    position: fixed;
    width: 100%;
    height: 60px;
    background: #FFF;
    left: 0;
    top: 0;
    z-index: 200;
    border-bottom: none;
    text-align: left;
  }
  .top-bar .clear {
    display: none;
  }
  .top-bar .border-left {
    position: absolute;
    display: block;
    width: 50%;
    height: 60px;
    left: 60px;
    border-bottom: solid 2px #eeeae5;
  }
  .top-bar .border-right {
    position: absolute;
    display: block;
    width: 50%;
    height: 60px;
    right: 60px;
    border-bottom: solid 2px #eeeae5;
  }
  .top-bar .top-left {
    position: absolute;
    display: block;
    overflow: hidden;
    width: 280px;
    height: 58px;
    top: 0;
    left: 62px;
    padding-top: 23px;
    padding-right: 18px;
    font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #bca181;
    letter-spacing: 3px;
    text-align: center;
    background: none;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .top-bar .top-left span {
    position: absolute;
    width: 25px;
    height: 25px;
    right: 2px;
    top: 27px;
    background: url(../images/btn-icon.png) no-repeat 0 -100px;
  }
  .top-bar .top-left:hover {
    background: #bc9b6a;
    color: #FFF;
  }
  .top-bar .top-left:hover span {
    background: url(../images/btn-icon.png) no-repeat 0 0;
  }
  .top-bar .top-right {
    position: absolute;
    display: block;
    overflow: hidden;
    width: 243px;
    height: 58px;
    top: 0;
    right: 60px;
    padding-top: 23px;
    padding-left: 52px;
    font-family: "brandon-grotesque-n5", "brandon-grotesque", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #bca181;
    letter-spacing: 3px;
    background: #ffffff url(../images/ticket-icon.png) no-repeat 24px 23px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
  .top-bar .top-right:hover {
    background: #bc9b6a url(../images/ticket-icon.png) no-repeat 24px -78px;
    color: #FFF;
  }
  .bottom-bar {
    position: fixed;
    width: 100%;
    height: 60px;
    background: #FFF;
    left: 0;
    bottom: 0;
    z-index: 200;
  }
  .bottom-bar .border-left {
    position: absolute;
    display: block;
    width: 50%;
    height: 60px;
    left: 60px;
    border-top: solid 2px #eeeae5;
  }
  .bottom-bar .border-right {
    position: absolute;
    display: block;
    width: 50%;
    height: 60px;
    right: 60px;
    border-top: solid 2px #eeeae5;
  }
  .bottom-bar .bottom-left {
    position: absolute;
    width: auto;
    bottom: 0;
    left: 60px;
    margin: 0;
  }
  .bottom-bar .bottom-left .inner {
    display: none;
  }
  .bottom-bar .bottom-right {
    position: absolute;
    display: block;
    width: auto;
    bottom: 0;
    right: 60px;
    margin: 0;
  }
  .bottom-bar .bottom-right .header-social {
    margin-right: 0;
  }
  .bottom-bar .bottom-right .header-social a.facebook,
  .bottom-bar .bottom-right .header-social .search.facebook {
    display: block;
  }
  .bottom-bar .bottom-right .header-social a.twitter,
  .bottom-bar .bottom-right .header-social .search.twitter {
    display: block;
  }
  .bottom-bar .bottom-right .header-social a.youtube,
  .bottom-bar .bottom-right .header-social .search.youtube {
    display: block;
  }
  .bottom-bar .bottom-right .header-social a.instagram,
  .bottom-bar .bottom-right .header-social .search.instagram {
    display: block;
  }
  .bottom-bar .bottom-right .header-social .search {
    display: block;
  }
  .mobile-nav {
    display: none;
  }
  #wrap {
    padding: 60px;
  }
  .home-photo-section {
    padding-top: 70px;
    padding-bottom: 100px;
    margin-bottom: 60px;
  }
  .home-photo-section .line-title {
    margin-bottom: 46px;
  }
  .home-photo-section .line-title .more-photos {
    display: inline-block;
  }
  .home-photo-section .photo-wrapper #photo-slides li .caption {
    display: block;
    text-align: left;
  }
  .social-section {
    display: block;
  }
  .home-sponsor-section .line-title {
    margin-bottom: 62px;
  }
  .home-sponsor-section .the-sponsors {
    margin-bottom: 56px;
  }
  .home-sponsor-section .the-sponsors li {
    display: inline-block;
    margin: 0 22px;
    height: 164px;
  }
  .home-sponsor-section .the-sponsors li img {
    height: 164px;
    margin: 0;
  }
  .home-get-tickets {
    padding-top: 116px;
  }
  .tournament-news {
    padding-top: 70px;
    margin-bottom: 94px;
    /* change back after adding back in social media sections margin-bottom:124px; */
  }
  .tournament-news .line-title {
    margin-bottom: 46px;
  }
  .tournament-news #news-section-slider .owl-pagination {
    display: block;
    top: 24px;
  }
  .tournament-news #news-section-slider .owl-pagination .owl-page {
    width: 15%;
  }
  #content.blog .the-posts .first-post .image {
    -webkit-transform: scale(1, 1);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1, 1);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
  }
  #content.blog .the-posts .first-post:hover .image {
    -webkit-transform: scale(1.03, 1.05);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 200ms;
    -moz-transform: scale(1.03, 1.05);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 200ms;
  }
  #content.blog .the-posts .post {
    margin: 0 auto 48px auto;
  }
  #content.blog .the-posts .post .date {
    margin-bottom: 22px;
  }
  #content.blog .the-posts .post .title {
    margin-bottom: 18px;
  }
  #content.blog .the-posts .post .continue {
    margin-top: 25px;
    margin-bottom: 28px;
  }
  #content.blog .the-posts .post .wrap-it.has-thumb {
    padding-right: 178px;
  }
  #content.blog .the-posts .post .wrap-it .feat-image {
    position: absolute;
    display: block;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: 2px;
    right: 0;
  }
  #content.blog .the-posts .post .wrap-it .feat-image img {
    display: block;
    width: 150px;
    height: 150px;
  }
  #content.blog .the-posts .share .text {
    position: relative;
    display: block;
    float: left;
    padding-left: 63px;
    font-family: "brandon-grotesque-n9", "brandon-grotesque", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    color: #353434;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 30px;
    line-height: 62px;
  }
  #content.blog .the-posts .share .buttons {
    float: left;
  }
  #content.multimedia .multimedia-news .the-media-posts .a-post {
    width: 390px;
    height: 228px;
  }
  #content.multimedia-single .multimedia-news .line-title {
    margin-bottom: 76px;
  }
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 880px) {
  .page-top-section .page-top-content {
    margin: 122px auto 0 auto;
  }
  .page-top-section .page-top-content .page-logo {
    width: 303px;
    height: 155px;
    background: url(../images/logo-horz.png) no-repeat;
    -webkit-background-size: 303px 155px;
    -moz-background-size: 303px 155px;
    background-size: 303px 155px;
  }
  .page-top-section .page-top-content .text {
    position: relative;
    display: block;
    float: right;
    padding-top: 49px;
  }
  .page-top-section .page-top-content .text .main {
    font-size: 36px;
  }
  .page-top-section .page-top-content .text .sub {
    font-size: 20px;
  }
}
@media only screen and (min-width: 960px) {
  #header #menu-main-navigation-1 {
    height: 80px;
  }
  #header #menu-main-navigation-1 > li {
    height: 80px;
  }
  #header #menu-main-navigation-1 > li a {
    height: 80px;
    line-height: 80px;
    padding: 0 13px;
    font-size: 13px;
    letter-spacing: 2px;
  }
  #header #menu-main-navigation-1 > li .sub-menu {
    width: 190px;
    margin-left: -95px;
  }
  #header #menu-main-navigation-1 > li .sub-menu.down {
    top: 80px;
  }
  #header #menu-main-navigation-1 > li .sub-menu li {
    height: 32px;
  }
  #header #menu-main-navigation-1 > li .sub-menu li a {
    height: 32px;
    line-height: 33px;
    font-size: 13px;
  }
  .top-bar .top-left .omega {
    display: block;
  }
  .bottom-bar .bottom-left .inner {
    display: block;
  }
  .page-top-section .page-top-content .text {
    padding-top: 46px;
  }
  .page-top-section .page-top-content .text .main {
    font-size: 40px;
    letter-spacing: 5px;
  }
  .page-top-section .page-top-content .text .sub {
    position: relative;
    display: block;
    text-align: left;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3em;
    color: #FFF;
    margin-bottom: 50px;
  }
  .home-main-image {
    min-height: 520px;
  }
  .home-top-section .main-title {
    font-size: 60px;
    letter-spacing: 12px;
  }
  .home-top-section .sub-title {
    font-size: 21px;
    color: #FFF;
  }
  .home-top-section .sub-title .divider {
    display: inline-block;
    width: 27px;
    height: 21px;
    margin: 0 0 0 3px;
    background: url(../images/divider.png) no-repeat 0 2px;
  }
  .home-top-section .updates {
    font-size: 18px;
  }
  .tournament-news {
    padding-top: 84px;
  }
  .tournament-news #news-section-slider {
    height: 350px;
  }
  .tournament-news #news-section-slider .owl-item {
    height: 350px;
  }
  .tournament-news #news-section-slider .item {
    height: 350px;
  }
  .tournament-news #news-section-slider .item .overlay {
    height: 107px;
    padding: 28px 0 0 28px;
  }
  .tournament-news #news-section-slider .owl-pagination {
    display: block;
    top: 24px;
  }
  .tournament-news #news-section-slider .owl-pagination .owl-page {
    width: 15%;
  }
  .tournament-news #news-section-slider .owl-buttons {
    padding: 0 30px;
    top: 148px;
  }
  .home-photo-section {
    padding-top: 84px;
  }
  #content.multimedia .multimedia-news {
    padding-bottom: 130px;
  }
  #content.multimedia .multimedia-news .the-media-posts {
    padding-top: 30px;
  }
  #content.multimedia-single .photo-wrapper {
    margin-bottom: 50px;
  }
  #content.press .the-posts .share {
    margin-top: 80px;
  }
  #content.press .tournament-news .line-title {
    margin-bottom: 76px;
  }
}
@media only screen and (min-width: 1014px) {
  .bottom-bar .bottom-right .header-social a.newsletter,
  .bottom-bar .bottom-right .header-social .search.newsletter {
    width: 86px;
  }
}
@media only screen and (min-width: 1080px) {
  #header #menu-main-navigation-1 > li a {
    padding: 0 17px;
  }
  .page-top-section .page-top-content {
    width: 98%;
  }
  .page-top-section .page-top-content .text {
    padding-top: 70px;
  }
  .page-top-section .page-top-content .text .main {
    font-size: 48px;
    letter-spacing: 8px;
    margin-bottom: 0;
  }
  .page-top-section .page-top-content .text .sub {
    font-size: 17px;
  }
  .page-top-section .page-top-content .text .sub br {
    display: none;
  }
  .page-top-section .page-top-content .text .sub .divider {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 21px;
    margin: 2px auto 0 auto;
    background: url(../images/divider.png) no-repeat 0 5px;
  }
  .page-top-section .page-top-content .text .sub .breaker {
    display: none;
  }
}
@media only screen and (min-width: 1100px) {
  #header #menu-main-navigation-1 > li a {
    padding: 0 23px;
  }
  .home-top-section .sub-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1160px) {
  .page-top-section .page-top-content .text .sub {
    font-size: 19px;
  }
  .page-top-section .page-top-content .text .sub .divider {
    width: 35px;
    background: url(../images/divider.png) no-repeat 4px 5px;
  }
}
@media only screen and (min-width: 1240px) {
  .page-top-section .page-top-content .text .sub {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1300px) {
  .tournament-news #news-section-slider {
    height: 464px;
  }
  .tournament-news #news-section-slider .owl-item {
    height: 464px;
  }
  .tournament-news #news-section-slider .item {
    height: 464px;
  }
  .tournament-news #news-section-slider .owl-buttons {
    top: 200px;
  }
}
@media only screen and (min-width: 1320px) {
  #content.multimedia .multimedia-news {
    text-align: right;
  }
  #content.multimedia .multimedia-news .the-media-posts .a-post {
    float: left;
  }
}
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
/*
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-device-width: 960px),
       only screen and (min--moz-device-pixel-ratio: 1.5) and (max-device-width: 960px),
       only screen and (min-device-pixel-ratio: 1.5) and (max-device-width: 960px) {

	// styles in 2x.less
	@import "_2x.less";

} // end of media query
*/
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {

  // iPhone 5 or iPod Touch 5th generation styles (you can include your own file if you want)

}
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
/*
@media print {

	@import "_print.less";

} // end of media query
*/
