/*
Theme Name: Club Moments
Author: Christoph Meyerdierks /attentus.com
Author URI: http://www.dreamsinmotion.de
Description: Main theme for Club Moments Bremen
Version: 1.0
*/


/*  Fonts  */

@font-face {
  font-family: 'AvantGarde Bk BT';
  src: url('../fonts/AVGARDN_0.eot'); /* IE9 Compat Modes */
  src: url('../fonts/AVGARDN_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/AVGARDN_0.woff') format('woff'), /* Modern Browsers */
       url('../fonts/AVGARDN_0.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/AVGARDN_0.svg#6f7c69d1460f5eba107b4f32a0673e34') format('svg'); /* Legacy iOS */
       
  font-style:   normal;
  font-weight:  300;
}

@font-face {
  font-family: 'AvantGarde Bk BT';
  src: url('../fonts/AVGARDD_0.eot'); /* IE9 Compat Modes */
  src: url('../fonts/AVGARDD_0.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/AVGARDD_0.woff') format('woff'), /* Modern Browsers */
       url('../fonts/AVGARDD_0.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('../fonts/AVGARDD_0.svg#4421933dd4ad88a7757bf62b922d3a61') format('svg'); /* Legacy iOS */
       
  font-style:   bold;
  font-weight:  600;
}

/*  General  */

body {
	font-family: 'AvantGarde Bk BT';
}

a {
	text-decoration: none;
	color: #000;
	outline: none;
}

a:visited,
a:active,
input,
textarea {
	outline: none;
}

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

/*  Header  */

header {
	pointer-events: auto;
}

header h1.logo {
	position: relative;
	max-width: 130px;
	height: 65px;
}

header h1.logo img {
	width: 100%;
	position: absolute;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

header.light h1.logo img {
}

@media only screen and (max-width: 1199px) {
	header h1.logo img {
		-webkit-transition-delay: .5s;
		-moz-transition-delay: .5s;
	    transition-delay: .5s;
	}

	header.light h1.logo img {
		-webkit-transition-delay: 0s;
		-moz-transition-delay: 0s;
	    transition-delay: 0s;
	}
}


header h1.logo img.light {
	opacity: 0;
}
header.light h1.logo img.light {
	opacity: 1;
}

header h1.logo img.dark {
	opacity: 1;
}
header.light h1.logo img.dark {
	opacity: 0;
}


header nav {
	margin-top: 60px;
}

header nav ul#menu-main {
	margin: 0;
	padding: 0;
	border-left: solid 2px #000;
	-webkit-transition: border-color .3s ease;
	-moz-transition:border-color .3s ease;
	-o-transition: border-color .3s ease;
	transition: border-color .3s ease;
}

header.light ul#menu-main {
	border-color: #FFF;
}


header nav ul#menu-main li {
	list-style: none;
	padding-left: 10px;
	padding-bottom: 3px;
}

header nav ul#menu-main li:last-child {
	padding-bottom: 0;
}

header nav ul#menu-main li a {
	font-size: 14px;
	line-height: 1em;
	letter-spacing: .05em;
	text-transform: uppercase;
	-webkit-transition: color .3s ease, opacity .3s ease, background-color .3s ease;
	-moz-transition: color.3s ease, opacity .3s ease, background-color .3s ease;
	-o-transition: color .3s ease, opacity .3s ease, background-color .3s ease;
	transition: color .3s ease, opacity .3s ease, background-color .3s ease;
}

header.light nav ul#menu-main li a {
	color: #FFF;
}

header nav ul#menu-main li a:hover {
	font-weight: 600;
}

header nav ul#menu-main li.active {
	margin-bottom: 10px;
	margin-top: 0px;
}

header nav ul#menu-main li.active:last-child {
	margin-top: 10px;
}

header nav ul#menu-main li.active a {
	font-weight: 600;
}


@media only screen and (max-width: 1199px) {
	
	#wrapper-fixed {
		z-index: 200;
	}

	header nav {
		display: none;
	}

	header h1.logo {
		float: left;
		width: 95px;
	}

	header #mobile-menu-button {
		position: relative;
		width: 20px;
		padding-top: 12px;
		float: right;
		display: block;
		cursor: pointer;
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}

	header #mobile-menu-button.active {

	}

	header #mobile-menu-button span.button-line {
		display: block;
		width: 100%;
		height: 3px;
		margin-bottom: 4px;
		background-color: #000;
		opacity: 1;
		-webkit-transition: -webkit-transform .3s ease, opacity .3s ease, background-color .3s ease;
	    -moz-transition: -moz-transform .3s ease, opacity .3s ease, background-color .3s ease;
	    -o-transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
	    transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
	    -webkit-transition-delay: .5s;
		-moz-transition-delay: .5s;
	    transition-delay: .5s;
	}

	header #mobile-menu-button.active span.button-line {
		background-color: #FFF;
		-webkit-transition-delay: 0s;
		-moz-transition-delay: 0s;
	    transition-delay: 0s;
	}
	
	header #mobile-menu-button.active span.button-line:nth-child(1) {
		-webkit-transform: translateY(7px) rotate(45deg);
		-moz-transform: translateY(7px) rotate(45deg);
		-o-transform: translateY(7px) rotate(45deg);
		transform: translateY(7px) rotate(45deg);
	}
	
	header #mobile-menu-button.active span.button-line:nth-child(2) {
		opacity: 0;
	}

	header #mobile-menu-button.active span.button-line:nth-child(3) {
		-webkit-transform: translateY(-7px) rotate(-45deg);
		-moz-transform: translateY(-7px) rotate(-45deg);
		-o-transform: translateY(-7px) rotate(-45deg);
		transform: translateY(-7px) rotate(-45deg);
	}

	header.light #mobile-menu-button span.button-line {
		background-color: #FFF;
		-webkit-transition-delay: 0s;
		-moz-transition-delay: 0s;
	    transition-delay: 0s;
	}

}


/* Social */

.social {

}

@media only screen and (max-width: 1199px) {
	.social {
		display: none;
	}
}

.social ul {
	float: right;
	pointer-events: auto;
}

.social ul li {
	display: inline-block;
}

.social ul li a {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: .05em;
	text-transform: uppercase;
	-webkit-transition: color .3s ease, opacity .3s ease, background-color .3s ease;
	-moz-transition: color.3s ease, opacity .3s ease, background-color .3s ease;
	-o-transition: color .3s ease, opacity .3s ease, background-color .3s ease;
	transition: color .3s ease, opacity .3s ease, background-color .3s ease;
}

.social.light ul li a {
	color: #FFF;
}

.social ul li a:hover {
	font-weight: 600;
}

.social ul li a.newsletter {
	margin-right: 10px;
}

.social ul li a.meinung {
	margin-right: 10px;
}

.social ul li .from-wrapper {
	display: inline-block;
	position: relative;
	width: 0px;
	overflow: hidden;
	-webkit-transition: width .4s ease;
	-moz-transition: width .4s ease;
	-o-transition: width .4s ease;
	transition: width .4s ease;
}

.social ul li .from-wrapper.open {
	width: 200px;
}

.social ul li form#email {
	display: inline-block;
	width: 200px;
}

.social ul li form#email input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 150px;
	border-radius: 0;
	padding: 10px 0;
	border: 0 none;
	background: transparent;
	border-bottom: solid 1px #000;
	color: #000;
	font-size: 14px;
}

.social ul li form#email input.button {
	border-bottom: none;
	cursor: pointer;
	text-align: center;
	margin-right: 20px;
	width: 20px;
	-webkit-transition: -webkit-transform .5s ease;
	-moz-transition: -moz-transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
}

.social ul li form#email input.button:hover {
	-webkit-transform: translateX(10px);
	-moz-transform: translateX(10px);
	-o-transform: translateX(10px);
	transform: translateX(10px);
}

a.icon {
	display: block;
	text-indent: -9999px;
	width: 20px;
	height: 20px;
	background-size: 20px 20px;
	background-position: center center;
	background-color: #000;
	-webkit-transition: color .3s ease, opacity .3s ease, background-color .3s ease;
	-moz-transition: color.3s ease, opacity .3s ease, background-color .3s ease;
	-o-transition: color .3s ease, opacity .3s ease, background-color .3s ease;
	transition: color .3s ease, opacity .3s ease, background-color .3s ease;
}

.social.light ul li a.icon {
	background-color: #FFF;
}

a.icon.facebook {
	-webkit-mask-image: url('../images/icons/facebook.svg');
    mask-image: url('../images/icons/facebook.svg');

}

a.icon.youtube {
	-webkit-mask-image: url('../images/icons/youtube.svg');
    mask-image: url('../images/icons/youtube.svg');
}

@-moz-document url-prefix() {
	
	.social ul li a.icon,
	.social.light ul li a.icon {
		background-color: transparent;
	}

	a.icon.facebook {
		background-image: url('../images/icons/facebook.svg');

	}
	a.icon.youtube {
		background-image: url('../images/icons/youtube.svg');
	}

	.social.light ul li a.icon.facebook {
		background-image: url('../images/icons/facebook-light.svg');

	}
	.social.light ul li a.icon.youtube {
		background-image: url('../images/icons/youtube-light.svg');
	}
}

/*  Mobil Menu  */

#menu-mobile {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 20;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: -webkit-transform .8s ease;
	-moz-transition: -moz-transform .8s ease;
	-o-transition: transform .8s ease;
	transition: transform .8s ease;
	opacity: .93;
}

@media only screen and (max-width: 1199px) {
	#menu-mobile {
		display: block;
	}
}

#menu-mobile.open {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

#menu-mobile .nav-wrapper-outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

#menu-mobile .nav-wrapper {
    display: table-cell;
    vertical-align: middle;
    padding-top: 40px;
}

#menu-mobile nav {
    margin-left: auto;
    margin-right: auto; 
    width: 100%;
    text-align: center;
}

#menu-mobile nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border-left: solid 4px #FFF;
}

#menu-mobile nav ul li {
	text-align: left;
	margin: 5px 0;
	padding-left: 15px;
}

#menu-mobile nav ul li.active {
	padding-bottom: 20px;
}

#menu-mobile nav ul li.active:last-child {
	padding-bottom: 0px;
	padding-top: 20px;
}

#menu-mobile nav ul li a {
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #FFF;
}

#menu-mobile nav ul li.active {
	font-weight: 600;
}


/*  Main Content  */

.wrapper.background.top {
	background-image: url('../images/background/blue-pattern-top.png');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

#wrapper-fixed {
	position: fixed;
	width: 100%;
	pointer-events: none;
	z-index: 30;
}

.wrapper.top .content {
	padding-top: 150px;
	padding-bottom: 60px;
}

.wrapper .content.contact-wrapper {
	padding-bottom: 20px;
}

.wrapper .content {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

.wrapper .content .nest {
	margin-bottom: 40px;
}


@media only screen and (max-width: 1199px) {
	.wrapper.top .content {
		padding-top: 140px;
		padding-bottom: 40px;
	}

	.wrapper .content {
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.spacer {
		display: none;
	}
}

@media (max-width: 719px) {
	.wrapper.top .content {
		padding-top: 110px;
		padding-bottom: 20px;
	}
	.wrapper .content {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}


/*  Text  */


h2.section-headline {
	margin-bottom: 40px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}



h2.section-headline:after {
	content: "";
	display: block;
	margin-top: 8px;
	position: absolute;
	width: 60px;
	height: 2px;
	background-color: #000;
}



h2.section-headline.big {
	margin-top: 20px;
	margin-bottom: 5px;
	font-size: 44px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

h2.section-headline.big:before {
	content: "";
	display: block;
	margin-top: -20px;
	position: absolute;
	width: 48%;
	height: 6px;
	background-color: #000;
}

h2.section-headline.big:after {
	content: "";
	display: none;
	margin-top: 0px;
	position: absolute;
	width: 0px;
	height: 0px;
}



h3 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

h3.section-headline {
	font-size: 22px;
	letter-spacing: .06em;
	margin-bottom: 30px;
}

h3.section-headline:after {
	content: "";
	display: block;
	margin-top: 10px;
	position: absolute;
	width: 45%;
	height: 2px;
	background-color: #000;
}


p {
	font-size: 14px;
	letter-spacing: .05em;
	line-height: 1.3em;
}

.text p {
	margin-bottom: 20px;
}

.nest .grid-6 p {
	margin-bottom: 10px;
}

p.center {
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	margin-top: 15px;
}


p.underline {
	font-size: 18px;
	margin-bottom: 50px;
}

p a {
	border-bottom: solid 1px #000;
}

p.inline-menu {
	margin-top: 10px;
	border-bottom: none;
}

p.inline-menu a {
	border-bottom: none;
}

.downloads {
	margin-bottom: 15px;
}

p.download {
	margin-bottom: 5px;
}

.text p.sub-info {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .06em;
	font-size: 12px;
}

a.link-arrow {
	display: block;
	margin: 10px 0;
	font-size: 14px;
	letter-spacing: .1em;
	line-height: 1.3em;
	text-transform: uppercase;
}

a.link-arrow:after {
	content: "→";
	margin-left: 5px;
	-webkit-transition: margin .3s ease;
	-moz-transition: margin .3s ease;
	-o-transition: margin .3s ease;
	transition: margin .3s ease;
}

a.link-arrow:hover:after {
	margin-left: 15px;
}


/*  Events  */


section.events article {
	width: 100%;
	margin-bottom: 30px;
}

section.events.overview article {
	margin-bottom: 40px;
}

#events-container article {
	display: none;
}

.button-wrapper {
	cursor: pointer;
}


section.events article:after,
.button-wrapper:after {
	content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

section.events article time.date {
	float: left;
	min-width: 55px;
	display: inline-block;
	padding: 9px 10px;
	border: solid 5px #000;
	text-align: center;
	color: #000;
	background-color: transparent;
	-webkit-transition: background-color .3s ease, color .3s ease;
	-moz-transition: background-color .3s ease, color .3s ease;
	-o-transition: background-color .3s ease, color .3s ease;
	transition: background-color .3s ease, color .3s ease;
}

section.events article:hover time.date {
	background-color: #000;
	color: #FFF;
}


section.events time.date span.day {
	font-size: 19px;
	font-weight: 600;
}

section.events time.date span.month {
	font-size: 14px;
	display: block;
	text-transform: uppercase;
	line-height: 1.3em;
} 

section.events .main-info {
	float: left;
	padding-left: 20px;
	max-width: webkit-calc(100% - 65px);
	max-width: moz-calc(100% - 65px);
	max-width: calc(100% - 65px);
}


section.events .main-info h3 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.15em;
	letter-spacing: .06em;
	text-transform: uppercase;
}

section.events .main-info p.sub {
	text-transform: uppercase;
	line-height: 1em;
}

section.events .main-info p span.weekday {
	font-weight: 600;
}

section.events .main-info p span.weekday:after {
	content: "—";
	margin: 0 8px 0 14px;
	font-weight: 300;
}

section.events .detail-info {
	float: left;
	width: 100%;
	display: none;
	max-width: 620px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: solid 1px #000;
	overflow: hidden;
}

section.events .detail-info .flyer-container {
	float: left;
	width: 20%;
}

section.events .detail-info .flyer-container img {
	width: 100%;
}

section.events .detail-info .text-container {
	float: left;
	width: 80%;
	padding-left: 20px;
}

@media (max-width: 719px) {

	section.events .main-info {

	}

	section.events .main-info h3 {
		margin-top: 10px;
		font-size: 22px;
		letter-spacing: .03em;
	}

	section.events .main-info p.sub {
		line-height: 1.3em;
	}

	section.events .main-info p.sub span.more-info {
		display: none;
	}

}





/*  Slider Settings  */

.slick-slide {
    outline: none;
}

.news .slick-slider {
    margin:0 -10px;
}
.news .slick-slide {
    padding: 0 0px;
    margin-right:10px;
    margin-left:10px;
}

.news .slider-arrows {
	position: absolute;
	right: -60px;
	top: 90px;
	width: 35px;
}

.news .slider-arrows button {
	display: block;
	width: 35px;
	font-family: Arial;
	font-size: 32px;
	cursor: pointer;
}
.news .slider-arrows button:hover {
	opacity: .5;
}

@media (max-width: 1299px) {
	.news .slider-arrows {
		display: none;
	}
}



/*  News  */

section.news {
	position: relative;
}

section.news #news-entrys {

}

section.news #news-entrys .news-entry p {
	margin-top: 10px;
}

section.news #news-entrys a.image-container-wrapper {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 150px;
	background-color: #DDD;
	margin-bottom: 20px;
}

section.news #news-entrys .image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background-color: #DDD;
	background-size: cover;
	background-position: center center;
	-webkit-transition: opacity .2s ease;
	-moz-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease;
}

section.news #news-entrys .image-container.col {
	opacity: 0;
}
section.news #news-entrys .news-entry:hover .image-container.col {
	opacity: 1;
}

section.news #news-entrys time {
	display: block;
	font-size: 13px;
	letter-spacing: .03em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

section.news #news-entrys time:before {
	content: "—";
	margin-right: 6px;
}

section.news #news-entrys h3 {
	margin-bottom: 2px;
}




/*  Contact  */

form.wpcf7-form {
	padding: 30px;
	border: solid 2px #000;
}

form.wpcf7-form input,
form.wpcf7-form textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	border-radius: 0;
	padding: 10px 0;
	border: 0 none;
	background: transparent;
	border-bottom: solid 1px #000;
	font-family: 'AvantGarde Bk BT';
	letter-spacing: .05em;
	color: #000;
	font-size: 14px;
}

form.wpcf7-form textarea {
	margin-top: 30px;
	max-width: 100%;
	height: 120px;
}

form.wpcf7-form span.your-name,
form.wpcf7-form span.your-email {
	float: left;
	width: 46%;
}

form.wpcf7-form span.your-name {
	margin-right: 4%;
}
form.wpcf7-form span.your-email {
	margin-left: 4%;
}



form.wpcf7-form input.wpcf7-submit {
	cursor: pointer;
	text-align: center;
	width: auto;
	max-width: 200px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .05em;
	padding: 13px 20px;
	background-color: #000;
	-webkit-transition: color .2s ease, background-color .2s ease;
	-moz-transition: color .2s ease, background-color .2s ease;
	-o-transition: color .2s ease, background-color .2s ease;
	transition: color .2s ease, background-color .2s ease;
	border: solid 4px #000;
	margin-top: 30px;
}

form.wpcf7-form input.wpcf7-submit:hover {
	color: #000;
	background-color: transparent;
}

form.wpcf7-form .wpcf7-response-output {
	width: 100%;
	margin: 30px 0 0px 0;
	padding: 30px 20px;
	text-align: center;
	border: solid 1px #000;
}

form.wpcf7-form .wpcf7-not-valid-tip {
	padding: 5px 0;
	opacity: .3;
}



/*   Image Slider   */


.wrapper-image-slider {
	position: relative;
	height: 600px;
	overflow: hidden;
}

.image-slider {

}

.image-slider .image-entry {
	background-image: url('../images/content/club/mo6.jpg');
	background-size: cover;
	background-position: center center;
}


.wrapper-image-slider .slider-arrows {
	position: absolute;
	top: 0px;
	height: 100%;
	width: 100%;
	padding: 40px;
	pointer-events: none;
}

.wrapper-image-slider .slider-arrows button {
	color: #FFF;
	font-size: 50px;
	position: relative;
	top: 48%;
	transform: translateY(-50%);
	pointer-events: auto;
	cursor: pointer;
}

.wrapper-image-slider .slider-arrows button.slick-prev {
	float: left;
}

.wrapper-image-slider .slider-arrows button.slick-next {
	float: right;
}

@media (max-width: 719px) {

	.wrapper-image-slider .slider-arrows {
		padding: 20px;
	}

	.wrapper-image-slider .slider-arrows button {
		color: #FFF;
		font-size: 30px;
	}
}



/*  Events  */


.events .filter-container {
	display: inline-block;
	margin-top: 20px;
	border: solid 3px #000;
}

.events .filter-container .filter {
	float: left;
	padding: 10px;
	font-size: 12px;
	letter-spacing: .06em;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
}

.events .filter-container .filter.active {
	color: #FFF;
	background-color: #000;
}

.events .month-divider {
	width: 50%;
	margin: 40px 0 20px 0;
	padding-bottom: 10px;
	font-size: 14px;
	letter-spacing: .05em;
	font-weight: 600;
	text-transform: uppercase;
	border-bottom: solid 2px #000;
}



/*  Partner  */


.link .image-container {
	height: 100px;
	margin-bottom: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url('../images/content/partner/swing-partner.jpg');
}

.link p a {
	display: inline-block;
}




img.post-responsive {
	max-width: 100%;
}


footer {
	text-align: right;
	opacity: .4;
}

.footer-social {
	margin-bottom: 10px;
	display: none;
}

@media only screen and (max-width: 1199px) {
	footer {
		text-align: left;
		opacity: .4;
	}

	.footer-social {
		display: block;
	}
}

.footer-social li {
	display: inline-block;
	font-size: 14px;
	line-height: 16px;
}

.footer-social li.space {
	margin-right: 15px;
}

.footer-social li .newsletter,
.footer-social li .meinung {
	text-transform: uppercase;
	letter-spacing: .06em;
}

.footer-social li .meinung {
	margin-left: 7px;
}

.footer-social a.icon {
	background-color:transparent;
}

.footer-social a.icon.facebook {
	background-image: url('../images/icons/facebook.svg');
}

.footer-social a.icon.youtube {
	background-image: url('../images/icons/youtube.svg');
}




span.copyright {
	margin-left: 10px;
}

span.copyright:before {
	content: "—";
	margin-right: 10px;
}


#gmap_canvas {
	width: 100%;
	height: 300px;
}
#gmap_canvas img{max-width:none!important;background:none!important}



.nav-next,
.nav-previous {
	letter-spacing: .1em;
	font-size: 14px;
	display: inline-block;
	text-transform: uppercase;
}

