/*------------------------------------*\
 CONTACT US PAGE
\*------------------------------------*/

body *{
	font-family: 'Open Sans',Arial,sans-serif;
}
div#socialIcons a {
    padding: 5px;
}

div#socialIcons {
    padding: 10px;
}

.grid-one-third {
    width: 33%;
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 0 15px 10px;
}

div#openingHours p {
    margin: 2px 0;
}

h3 {
    font-size: 1.7em;
    color: #ccc;
	font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 100;
    text-transform: uppercase;
}

div#followUs p {
    text-align: left;
    margin: 2px;
    font-weight: bold;
    letter-spacing: .1em;
}

div#followUs img, div#footerContact img {
    padding: 6px;
    opacity: .4;
    border: 2px solid;
    border-radius: 40px;
    transform: scale(.8);
    position: relative;
    top: 10px;
    margin-right: 5px;
}

div#footerContact p {
    text-align: left;
    margin: 2px 0;
}

/*------------------------------------*\
 Scrollbar
\*------------------------------------*/

.custom-scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: rgba(255,255,255,.85);
}

.custom-scroll::-webkit-scrollbar
{
	width: 6px;
	background-color: rgba(255,255,255,.85);
}

.custom-scroll::-webkit-scrollbar-thumb
{
	background-color: #aaa;
}

/*------------------------------------*\
    PRESS OVERRIDES
\*------------------------------------*/

.post-image-container {
    float: left;
    width: 200px;
}

.post-content-container {
    float: left;
    width: calc(100% - 240px);
    margin: 0 20px;
}

.clear-fix {
    clear: both;
}

.press-container {
	max-height: 45vh;
	overflow-y: auto;
}

.listing-item {
    display: block;
    margin: 10px auto 30px auto;
    padding-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

.listing-item .title {
    display: block;
    font-size: 1.9em;
	margin-top: 0;
	color: #fff;
	font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 100;
    text-transform: uppercase;
}

.listing-item .content p {
    color: #dedede;
    font-weight: 100;
	text-align:left;
}

.listing-item .content a {
    color: #dedede;
    font-weight: bold;
	text-align:left;
}

.listing-item .date {
	display:block;
	width:100%;
	text-align:left;
	color: #aaa;
}

/*------------------------------------*\
    ANIMATE.CSS STYLES USED
\*------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
	  
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}

/*------------------------------------*\
    INTRO ANIMATION
\*------------------------------------*/
.intro-animation {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    height: 100%;
    width: 100%;
}

.intro-animation img {
    max-width: 75%;
    max-height: 450px;
    position: absolute;
    top: 50%;
    transform: translateY(-55%) translateX(-50%);
    left: 50%;
}

.intro-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
	cursor:pointer;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.45+1,0.9+65 */
	background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.45) 1%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.9) 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.45) 1%,rgba(0,0,0,0.9) 65%,rgba(0,0,0,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.45) 1%,rgba(0,0,0,0.9) 65%,rgba(0,0,0,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73000000', endColorstr='#e6000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.delay-0s {
  -webkit-animation-delay: 0s  !important;
  animation-delay: 0s !important;
}

.delay-6s {
animation-delay: 6s;
}

.delay-7s {
animation-delay: 7s;
}

.delay-1-5s {
animation-delay: 1.5s;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#444;
	background:#000;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
	font-weight:bold;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {

}
/* logo */
.logo {
	width:33%;	
}
.logo-img {
	height:45px;
}
/* nav */
.nav {
	
}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

.footer-bg {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+40,0.3+80,0.65+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0.3) 80%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0.3) 80%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
	position: fixed;
	bottom: 0;
	left: 0;
	height: 250px;
	min-width:1%;
	z-index:-1;
}

.footer-bg2 {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+40,0.3+80,0.65+100 */
	/* background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	/* background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0.3) 80%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	/* background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0.3) 80%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	/* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
	position: fixed;
	bottom: 0;
	left: 0;
	height: 250px;
	min-width:1%;
	z-index:-1;
}

p.copyright {
	margin-right:20px;
}

.award {
	position: relative;
	bottom: 40px;
}

/*------------------------------------*\
    OPEN TABLE & GATHER WIDGET STYLE OVERRIDES
\*------------------------------------*/
.ot-dtp-picker div:nth-of-type(1) {
    display: none!important;
}

.ot-dtp-picker {
    width: 50%;
    margin: 0 auto;
}

#ot-reservation-widget {
    width: 100% !important;
}

.gather-lead-button, .ot-button {
    background-color: #da3743;
    border: 1px solid #da3743;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: block;
	font-weight:bold;
	text-transform:uppercase;
    padding: 14px 0 15px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.ot-dtp-picker, .gather-lead-button {
    font-family: "BrandonText", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1.75em;
    line-height: 20px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.page-container {
	display:none;
}

.page-content {
    width: 990px;
    margin: 0 auto;
    padding: 40px 40px 50px 40px;
}

.page-container {
    background-color: rgba(0,0,0,.8);
    position: fixed;
    bottom: 0;
    width: 100%;
}

main .fl-module-content.fl-node-content {
    min-width: 100% !important;
}

main article {
    min-width: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: -1 !important;
}

main div {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.wrapper {
    padding: 0 !important;
    margin: 0 !important;
    min-width: 100% !important;
}

.fl-module.fl-module-photo {
    overflow: hidden;
    min-height: 100%;
    min-width: 100%;
}

.logo {
    position: fixed;
	top: auto;
    bottom: 20px;
    left: 20px;
}

.footer {
    position: fixed;
    bottom: 0;
    right: 0;
}

h1 {
    color: #fff;
    text-align: center;
    font-size: 2.7em;
    letter-spacing: .04em;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 100;
    text-transform: uppercase;
}

p {
    color: #dedede;	
	text-align:center;
	font-size: 1.45em;
    letter-spacing: .04em;
	line-height: 1.45em;
}

a:hover {
    color: #fff;
}

a {
    color: #ccc;
}

/*------------------------------------*\
    HAMBURGER MENU
\*------------------------------------*/

/**
  Hamburger
**/
.hamburger {
  position: fixed;
  top: 65px;
  right: 20px;
  margin-left: -2em;
  margin-top: -45px;
  width: 45px;
  height: 45px;
  z-index: 5;
  cursor: pointer;
}

.hamburger div {
  position: relative;
  width: 3em;
  height: 1px;
  border-radius: 3px;
  background-color: #ccc;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover div {
	background-color: #fff;
}

input#toggle {
	display:none;
}

/**
Nav Styles
**/

.header {
    height: 55px;
    background-color: rgba(0,0,0,.85);
    z-index: 5;
    width: 85px;
    position: fixed;
    top: 10px;
    right: 0;
}

.nav {
  position: fixed;
  width: 100%;
  height: 300px; /** 100% **/
  background-color: rgba(0,0,0,.85);
  top: -100%; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0) translate(100%, 30px);
          transform: scale(0) translate(100%, 30px);
}

.nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
}

nav {
  text-align: left;
  margin-left: 45px;
}

nav ul {
    margin: 20px 0 0;
    padding: 0;
    list-style-type: none;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #ccc;
  font-size: 2em;
  display: inline-block;
  margin-top: .5em;
  transition: color 0.2s ease-in-out;
  letter-spacing: 1px;
  width: 100%;
	font-weight:100;
	font-family: 'Open Sans',Arial,sans-serif;
    text-transform: uppercase;
}

nav a:before {
  content: '';
  height: 0;
  position: absolute;
  width: 0.25em;
  background-color: white;
  left: -0.5em;
  transition: all 0.2s ease-in-out;
}
nav a:hover {
  color: white;
}
nav a:hover:before {
  height: 100%;
}

/**
 Nav Desktop Styles
**/
.nav-wrapper-desktop {
	display:none;
    width: auto;
    position: fixed;
    top: 0;
    right: 0;
}

.nav-wrapper-desktop nav {
	background-color: rgba(0,0,0,.85);
    padding-left: 20px;
    padding-bottom: 20px;
}

.nav-wrapper-desktop nav a {
    font-size: calc(2vw - 1vw);
    margin-top: calc(2vw - 1vw);
}

.nav-wrapper-desktop nav ul li {
    width: auto;
    display: inline-block;
    margin-right: 1vw;
}

.nav-wrapper-desktop nav a:before {
  content: '';
  height:  0.15em;
  position: absolute;
  width: 0;
  background-color: white;
  left: 0;
  top: 1.3em;
  transition: all 0.2s ease-in-out;
}
.nav-wrapper-desktop nav a:hover {
  color: white;
}
.nav-wrapper-desktop nav a:hover:before {
  width: 100%;
}



/**
Animations
**/
#toggle:enabled + .hamburger .top-bun {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 20px;
}
#toggle:enabled + .hamburger .bottom-bun {
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#toggle:enabled + .hamburger .meat {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0px;
}

#toggle:enabled + .hamburger + .nav {
  top: 0;
  -webkit-transform: scale(1) translate(0,0);
          transform: scale(1) translate(0,0);
}

#toggle:disabled + .hamburger .top-bun {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  margin-top: 8px;
}
#toggle:disabled + .hamburger .bottom-bun {
  opacity: 1;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  margin-top: 8px;
}
#toggle:disabled + .hamburger .meat {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  margin-top: 8px;
}

#toggle:disabled + .hamburger + .nav {
  top: -100%;
  -webkit-transform: scale(0) translate(100%, 30px);
          transform: scale(0) translate(100%, 30px);
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

main .fl-photo-content img {
    display: inline;
    /*min-height: 100vh;
    width: auto;
	max-height: 100vh;*/
    max-width: none;
    min-width: 100%;
	width:100%;
}

/*------------------------------------*\
    COVID-19 POPUP STYLES
\*------------------------------------*/
.popup-close-btn {
    color: #fff;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,.4);
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 25px;
    border-radius: 20px;
    font-weight: bold;
    opacity: 1;
    background: rgba(255,255,255,.1);
    position: absolute;
    right: 14px;
    top: 14px;
}

.popup a {
	width: 45%; 
	display: inline-block; 
	margin: 0 1%;
}

#covid-popup {
    width: 50%;
    height: auto;
    background: rgba(0,0,0,.9);
    position: fixed;
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
	z-index: 999999;
}

#covid-popup .page-content {
    width:auto!important;
    border: 2px solid;
}

.popup {
	cursor:pointer;
}


@media only screen and (max-width:1280px) { 
	.popup a {
		width: 100%!important; 
		display: block; 
		margin: 10px 0;
	}
	
	#covid-popup {
		width: 80%;
		height: auto;
		background: rgba(0,0,0,.9);
		position: fixed;
		top: 50%;
		left: 10%;
		transform: translateY(-50%);
	}
	.popup .page-content {
		padding:20px !important;
	}
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {
	.hamburger, .nav {
		display:none;
	}
	.header {
		background-color: rgba(0,0,0,0)!important;
	}
	.logo {
		top:20px;
		bottom: auto;
	}
	.nav-wrapper-desktop {
		display:block;
	}
	main .fl-col-group:first-of-type .fl-photo-content img {
		margin-left: -50%;
		transform: translateX(25%);
	}
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

@media only screen and (max-width:768px) {
	.listing-item .title {
	    margin-top: 15px;
	}
	
	.post-content-container {
		width: 100% !important;
		margin: 0 auto;
	}

	.post-image-container {
		width: 100% !important;
	}
	.hide-mobile {
		display:none;
	}
	.display-posts-listing {
		height:auto;
	}
	
	div#followUs a {
		float: left;
	}

	div#footerContact > div {
		display: none;
	}

	div#footerContact h3, div#followUs h3 {
		margin: 15px 0 0;
	}

	div#page-120 .page-content > div {
		margin-bottom: 0!important;
	}
	
	.footer {
		right: 50%;
		transform: translatex(50%);
		width: 100%;
	}

	p.copyright {
		margin-bottom: 4px;
		margin-right:0;
		font-size: .7em;
	}
	
	.nav {
	  height: 100%;
	}
	
	.press-container {
		max-height: 45vh;
		overflow-y: auto;
	}

	.display-posts-listing {
		list-style: none;
		height: auto;
		display: inline-block;
	}
	
	.listing-item {
		width: 96%;
		padding: 15px 15px;
	}
	.display-posts-listing {
		margin-bottom: 25px;
	}
	
	p {
		font-size: 1.175em;
	}
	.grid-one-third {
		width: 100%;
		display: block;
		float: left;
		box-sizing: border-box;
		padding: 0 15px 15px;
	}
}

@media only screen and (max-width:1280px) {
	main .fl-photo-content img {
		min-width: 150%;
		min-height: 100%;
		margin-left: -25%;
	}

	.fl-module.fl-module-photo {
		max-height: 100%;
		min-width: 100%;
		min-height: 100%;
	}

	nav a {
		font-size: 2em;
	}
	
	.nav {
	  height: 340px;
	}

	.page-content {
		width: 100%;
		padding: 20px 20px 70px;
	}

	.logo {
		width: 80%;
		margin-left: 5%;
	}
}

@media only screen and (min-width:2440px) {
	.display-posts-listing {
		height:auto;
	}
	.page-content {
		width: 50% !important;
		margin: 0 auto;
		padding: 40px 40px 50px 40px;
	}
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.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;
}
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 {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.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 {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
