/*
Theme Name: spiti
Theme URI: http://underscores.me/
Author: nextnode.net
Author URI: http://nextnode.net
Description: A custom theme based on spiti
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spiti
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 spiti is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300,100&subset=latin,greek);

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - 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,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%;
	/* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll;
	/* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%;
	/* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust: 100%;
	/* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
	/* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box;
	/* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing: border-box;
	/* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing: border-box;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

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

ol,
ul {
	list-style: none;
}

table {
	/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

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

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: .8em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

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

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

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

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #000;
	border: 0;
	height: 1px;
	margin-bottom: .5em;
	margin-top: 1em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%;
	/* Corrects font size not being inherited in all browsers */
	margin: 0;
	/* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline;
	/* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer;
	/* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button;
	appearance: button;
	/* Corrects inability to style clickable 'input' types in iOS */
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
	/* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield;
	appearance: button;
	/* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box;
	/* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
	/* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	/* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto;
	/* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top;
	/* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a,
a:visited {
	color: #000;
}

a:hover,
a:focus,
a:active {
	color: #fd8422;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation a:hover {
	color: #fd8422;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

/* Small menu */
.menu-toggle {
	display: none;
	margin-left: 5px;
}

@media screen and (max-width: 600px) {

	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 auto 1.5em;
	overflow: hidden;
	display: block;
	width: 100%;
	padding: 1rem;
	max-width: 1200px;

}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
/* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

/*--------------------------------------------------------------
13.0  FANCYBOX
--------------------------------------------------------------*/

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #c0c0c0;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
	-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}

.fancybox-outer,
.fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
	background-color: #fff;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px 'Roboto', sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
	background-image: url('img/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('img/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('img/blank.gif');
	/* helps IE */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden !important;
	width: auto;
}

.fancybox-lock body {
	overflow: hidden !important;
}

.fancybox-lock-test {
	overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('img/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px 'Roboto', sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent;
	/* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {

	#fancybox-loading,
	.fancybox-close,
	.fancybox-prev span,
	.fancybox-next span {
		background-image: url('img/fancybox_sprite@2x.png');
		background-size: 44px 152px;
		/*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('img/fancybox_loading@2x.gif');
		background-size: 24px 24px;
		/*The size of the normal image, half the size of the hi-res image*/
	}
}

/*--------------------------------------------------------------
15.0  FOTORAMA
--------------------------------------------------------------*/

/*!
 * Fotorama 4.5.1 | http://fotorama.io/license/
 */
.fotorama__html,
.fotorama__stage__frame,
.fotorama__stage__shaft,
.fotorama__video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0
}

.fotorama--fullscreen,
.fotorama__img {
	max-width: 99999px !important;
	max-height: 99999px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important
}

.fotorama__wrap .fotorama__grab {
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab
}

.fotorama__grabbing * {
	cursor: -webkit-grabbing;
	cursor: -o-grabbing;
	cursor: -ms-grabbing;
	cursor: grabbing
}

.fotorama__img,
.fotorama__spinner {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important
}

.fotorama__img {
	margin: -50% 0 0 -50%;
	width: 100%;
	height: 100%
}

.fotorama__wrap--css3 .fotorama__arr,
.fotorama__wrap--css3 .fotorama__fullscreen-icon,
.fotorama__wrap--css3 .fotorama__nav__shaft,
.fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border,
.fotorama__wrap--css3 .fotorama__video-close,
.fotorama__wrap--css3 .fotorama__video-play {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.fotorama__caption,
.fotorama__nav:after,
.fotorama__nav:before,
.fotorama__stage:after,
.fotorama__stage:before,
.fotorama__wrap--css3 .fotorama__html,
.fotorama__wrap--css3 .fotorama__nav,
.fotorama__wrap--css3 .fotorama__spinner,
.fotorama__wrap--css3 .fotorama__stage,
.fotorama__wrap--css3 .fotorama__stage .fotorama__img,
.fotorama__wrap--css3 .fotorama__stage__frame {
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}

.fotorama__wrap--video .fotorama__stage,
.fotorama__wrap--video .fotorama__stage__frame--video,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img,
.fotorama__wrap--video .fotorama__stage__shaft {
	-webkit-transform: none !important;
	transform: none !important
}

.fotorama__wrap--css3 .fotorama__nav__shaft,
.fotorama__wrap--css3 .fotorama__stage__shaft,
.fotorama__wrap--css3 .fotorama__thumb-border {
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-transition-timing-function: cubic-bezier(0.1, 0, .25, 1);
	transition-timing-function: cubic-bezier(0.1, 0, .25, 1);
	-webkit-transition-duration: 0ms;
	transition-duration: 0ms
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__no-select,
.fotorama__video-close,
.fotorama__video-play,
.fotorama__wrap {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.fotorama__select {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text
}

.fotorama__nav,
.fotorama__nav__frame {
	margin: 0;
	padding: 0
}

.fotorama__caption__wrap,
.fotorama__nav__frame,
.fotorama__nav__shaft {
	-moz-box-orient: vertical;
	display: inline-block;
	vertical-align: middle;
	*display: inline;
	*zoom: 1;
}

.fotorama__wrap * {
	-moz-box-sizing: content-box;
	box-sizing: content-box
}

.fotorama__caption__wrap {
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.fotorama--hidden,
.fotorama__load {
	position: absolute;
	left: -99999px;
	top: -99999px;
	z-index: -1
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__nav,
.fotorama__nav__frame,
.fotorama__nav__shaft,
.fotorama__stage__frame,
.fotorama__stage__shaft,
.fotorama__video-close,
.fotorama__video-play {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close,
.fotorama__video-play {
	background: url(img/fotorama.png) no-repeat
}

@media (-webkit-min-device-pixel-ratio:1.5),
(min-resolution:144dpi) {

	.fotorama__arr,
	.fotorama__fullscreen-icon,
	.fotorama__video-close,
	.fotorama__video-play {
		background: url(img/fotorama@2x.png) no-repeat;
		background-size: 96px 160px
	}
}

.fotorama__thumb {
	background-color: rgba(127, 127, 127, .2)
}

.fotorama {
	min-width: 1px;
	overflow: hidden
}

.fotorama:not(.fotorama--unobtrusive) > :not(:first-child) {
	display: none
}

.fullscreen {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: #000
}

.fotorama--fullscreen {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	float: none !important;
	z-index: 2147483647 !important;
	background: #000;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important
}

.fotorama--fullscreen .fotorama__nav,
.fotorama--fullscreen .fotorama__stage {
	background: #000
}

.fotorama__wrap {
	-webkit-text-size-adjust: 100%;
	position: relative;
	direction: ltr
}

.fotorama__wrap--rtl .fotorama__stage__frame {
	direction: rtl
}

.fotorama__nav,
.fotorama__stage {
	overflow: hidden;
	position: relative;
	max-width: 100%
}

.fotorama__wrap--pan-y {
	-ms-touch-action: pan-y
}

.fotorama__wrap .fotorama__pointer {
	cursor: pointer
}

.fotorama__wrap--slide .fotorama__stage__frame {
	opacity: 1 !important
}

.fotorama__stage__frame {
	overflow: hidden
}

.fotorama__stage__frame.fotorama__active {
	z-index: 8
}

.fotorama__wrap--fade .fotorama__stage__frame {
	display: none
}

.fotorama__wrap--fade .fotorama__fade-front,
.fotorama__wrap--fade .fotorama__fade-rear,
.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active {
	display: block;
	left: 0;
	top: 0
}

.fotorama__wrap--fade .fotorama__fade-front {
	z-index: 8
}

.fotorama__wrap--fade .fotorama__fade-rear {
	z-index: 7
}

.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active {
	z-index: 9
}

.fotorama__wrap--fade .fotorama__stage .fotorama__shadow {
	display: none
}

.fotorama__img {
	-ms-filter: "alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	border: none !important
}

.fotorama__error .fotorama__img,
.fotorama__loaded .fotorama__img {
	-ms-filter: "alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img,
.fotorama__img--full {
	display: none
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full {
	display: block
}

.fotorama__wrap--only-active .fotorama__nav,
.fotorama__wrap--only-active .fotorama__stage {
	max-width: 99999px !important
}

.fotorama__wrap--only-active .fotorama__stage__frame {
	visibility: hidden
}

.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active {
	visibility: visible
}

.fotorama__nav {
	font-size: 0;
	line-height: 0;
	text-align: center;
	display: none;
	white-space: nowrap;
	z-index: 5
}

.fotorama__nav__shaft {
	position: relative;
	left: 0;
	top: 0;
	text-align: left
}

.fotorama__nav__frame {
	position: relative;
	cursor: pointer
}

.fotorama__nav--dots {
	display: block;
	background: #c0c0c0
}

.fotorama__nav--dots .fotorama__nav__frame {
	width: 18px;
	height: 30px
}

.fotorama__nav--dots .fotorama__nav__frame--thumb,
.fotorama__nav--dots .fotorama__thumb-border {
	display: none
}

.fotorama__nav--thumbs {
	display: block
}

.fotorama__nav--thumbs .fotorama__nav__frame {
	padding-left: 0 !important
}

.fotorama__nav--thumbs .fotorama__nav__frame:last-child {
	padding-right: 0 !important
}

.fotorama__nav--thumbs .fotorama__nav__frame--dot {
	display: none
}

.fotorama__dot {
	display: block;
	width: 4px;
	height: 4px;
	position: relative;
	top: 12px;
	left: 6px;
	border-radius: 6px;
	border: 1px solid
}

.fotorama__nav__frame.fotorama__active {
	pointer-events: none;
	cursor: default
}

.fotorama__nav__frame.fotorama__active .fotorama__dot {
	width: 6px;
	height: 6px;
	border: none
}

.fotorama__dot {
	border-color: #7f7f7f
}

.fotorama__active .fotorama__dot {
	background-color: #7f7f7f
}

.fotorama__thumb {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%
}

.fotorama__thumb-border {
	position: absolute;
	z-index: 9;
	top: 0;
	left: 0;
	border-style: solid;
	border-color: #00afea;
	background-image: -webkit-linear-gradient(top left, rgba(255, 255, 255, .25), rgba(64, 64, 64, .1));
	background-image: linear-gradient(to bottom right, rgba(255, 255, 255, .25), rgba(64, 64, 64, .1))
}

.fotorama__caption {
	position: absolute;
	z-index: 12;
	bottom: 0;
	left: 0;
	right: 0;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #000
}

.fotorama__caption a {
	text-decoration: none;
	color: #000;
	border-bottom: 1px solid;
	border-color: rgba(0, 0, 0, .5)
}

.fotorama__caption a:hover {
	color: #333;
	border-color: rgba(51, 51, 51, .5)
}

.fotorama__wrap--rtl .fotorama__caption {
	left: auto;
	right: 0
}

.fotorama__wrap--no-captions .fotorama__caption,
.fotorama__wrap--video .fotorama__caption {
	display: none
}

.fotorama__caption__wrap {
	background-color: #fff;
	background-color: rgba(255, 255, 255, .9);
	padding: 5px 10px
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.fotorama__wrap--css3 .fotorama__spinner {
	-webkit-animation: spinner 24s infinite linear;
	animation: spinner 24s infinite linear
}

.fotorama__wrap--css3 .fotorama__html,
.fotorama__wrap--css3 .fotorama__stage .fotorama__img {
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition-duration: .3s;
	transition-duration: .3s
}

.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html,
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img {
	-ms-filter: "alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0
}

.fotorama__select {
	cursor: auto
}

.fotorama__video {
	top: 32px;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: 10
}

@-moz-document url-prefix() {
	.fotorama__active {
		box-shadow: 0 0 0 transparent
	}
}

.fotorama__arr,
.fotorama__fullscreen-icon,
.fotorama__video-close,
.fotorama__video-play {
	position: absolute;
	z-index: 11;
	cursor: pointer
}

.fotorama__arr {
	position: absolute;
	width: 32px;
	height: 32px;
	top: 50%;
	margin-top: -16px
}

.fotorama__arr--prev {
	left: 0;
	background-position: 0 0
}

.fotorama__arr--next {
	right: 0;
	background-position: -32px 0
}

.fotorama__arr--disabled {
	pointer-events: none;
	cursor: default;
	*display: none;
	opacity: .1
}

.fotorama__fullscreen-icon {
	width: 32px;
	height: 32px;
	top: 0;
	right: 0;
	background-position: 0 -32px;
	z-index: 20
}

.fotorama--fullscreen .fotorama__fullscreen-icon {
	background-position: -32px -32px
}

.fotorama__video-play {
	width: 96px;
	height: 96px;
	left: 50%;
	top: 50%;
	margin-left: -48px;
	margin-top: -48px;
	background-position: 0 -64px;
	opacity: 0
}

.fotorama__wrap--css2 .fotorama__video-play,
.fotorama__wrap--video .fotorama__stage .fotorama__video-play {
	display: none
}

.fotorama__error .fotorama__video-play,
.fotorama__loaded .fotorama__video-play {
	opacity: 1;
	display: block
}

.fotorama__nav__frame .fotorama__video-play {
	width: 32px;
	height: 32px;
	margin-left: -16px;
	margin-top: -16px;
	background-position: -64px -32px
}

.fotorama__video-close {
	width: 32px;
	height: 32px;
	top: 0;
	right: 0;
	background-position: -64px 0;
	z-index: 20;
	opacity: 0
}

.fotorama__wrap--css2 .fotorama__video-close {
	display: none
}

.fotorama__wrap--css3 .fotorama__video-close {
	-webkit-transform: translate3d(32px, -32px, 0);
	transform: translate3d(32px, -32px, 0)
}

.fotorama__wrap--video .fotorama__video-close {
	display: block;
	opacity: 1
}

.fotorama__wrap--css3.fotorama__wrap--video .fotorama__video-close {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon,
.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--video .fotorama__fullscreen-icon {
	opacity: 0
}

.fotorama__wrap--css2.fotorama__wrap--no-controls .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--no-controls .fotorama__fullscreen-icon,
.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr,
.fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon {
	display: none
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon,
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon {
	-webkit-transform: translate3d(32px, -32px, 0);
	transform: translate3d(32px, -32px, 0)
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev,
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev {
	-webkit-transform: translate3d(-48px, 0, 0);
	transform: translate3d(-48px, 0, 0)
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next,
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next {
	-webkit-transform: translate3d(48px, 0, 0);
	transform: translate3d(48px, 0, 0)
}

.fotorama__wrap--css3 .fotorama__arr,
.fotorama__wrap--css3 .fotorama__fullscreen-icon,
.fotorama__wrap--css3 .fotorama__video-close,
.fotorama__wrap--css3 .fotorama__video-play {
	-webkit-transition-property: -webkit-transform, opacity;
	transition-property: transform, opacity;
	-webkit-transition-duration: .3s;
	transition-duration: .3s
}

.fotorama__nav:after,
.fotorama__nav:before,
.fotorama__stage:after,
.fotorama__stage:before {
	content: "";
	display: block;
	position: absolute;
	text-decoration: none;
	top: 0;
	bottom: 0;
	width: 10px;
	height: auto;
	z-index: 10;
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: 1px 100%, 5px 100%
}

.fotorama__nav:before,
.fotorama__stage:before {
	background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .2)25%, rgba(0, 0, 0, .3)75%, transparent), -webkit-radial-gradient(0 50%, farthest-side, rgba(0, 0, 0, .4), transparent);
	background-image: linear-gradient(transparent, rgba(0, 0, 0, .2)25%, rgba(0, 0, 0, .3)75%, transparent), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, .4), transparent);
	background-position: 0 0, 0 0;
	left: -10px
}

.fotorama__nav.fotorama__shadows--left:before,
.fotorama__stage.fotorama__shadows--left:before {
	left: 0
}

.fotorama__nav:after,
.fotorama__stage:after {
	background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .2)25%, rgba(0, 0, 0, .3)75%, transparent), -webkit-radial-gradient(100% 50%, farthest-side, rgba(0, 0, 0, .4), transparent);
	background-image: linear-gradient(transparent, rgba(0, 0, 0, .2)25%, rgba(0, 0, 0, .3)75%, transparent), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, .4), transparent);
	background-position: 100% 0, 100% 0;
	right: -10px
}

.fotorama__nav.fotorama__shadows--right:after,
.fotorama__stage.fotorama__shadows--right:after {
	right: 0
}

.fotorama--fullscreen .fotorama__nav:after,
.fotorama--fullscreen .fotorama__nav:before,
.fotorama--fullscreen .fotorama__stage:after,
.fotorama--fullscreen .fotorama__stage:before,
.fotorama__wrap--fade .fotorama__stage:after,
.fotorama__wrap--fade .fotorama__stage:before,
.fotorama__wrap--no-shadows .fotorama__nav:after,
.fotorama__wrap--no-shadows .fotorama__nav:before,
.fotorama__wrap--no-shadows .fotorama__stage:after,
.fotorama__wrap--no-shadows .fotorama__stage:before {
	display: none
}

/*--------------------------------------------------------------
15.0  SITE
--------------------------------------------------------------*/
.left {
	float: left;
}

body {
	background: #fff url(img/bg.jpg) no-repeat fixed;
	font-family: 'Roboto Slab', sans-serif;
	display: flex;
	min-height: 100vh;
	flex-direction: column;

}

.sup {
	font-size: 80%;
	position: relative;
	bottom: 1ex;
}

p {
	font-size: .9em;
}

a {
	text-decoration: none;
}

#single-ajax {
	height: 100%;
}

#single-ajax .entry-wrap {
	overflow: scroll !important;
	height: 100%;
}

article {
	color: #000;
}

.site-header {
	padding: 20px 30px 0px;
	background: #fff;
	margin: auto;
}

.site-branding {
	border-bottom: 1px solid #000;
	margin: 0 auto 10px;
	position: relative;
	max-width: 1220px;
	padding: 0;
}

.site-branding img {
	max-width: 380px;
}

.main-navigation {
	padding: 0 0px 10px;
	max-width: 1220px;
	margin: auto;
	position: relative;
	float: none !important;
	z-index: 999;
}

.maindate {
	position: absolute;
	right: 0px;
	top: 40px;
	font-size: 1.5em;
	font-weight: 300;
}

@media screen and (max-width:480px) {
	.maindate {
		display: none;
	}
}

.menu-menu-1-container {
	width: 100%;
}

.main-navigation ul.menu a {
	color: #000;
}

.main-navigation ul.menu {
	font-size: .75em;
	padding: 0;
	text-align: justify !important;
	position: relative;
	font-weight: 900;
	width: 100%;
	list-style-type: none;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 0px;
	height: 20px;
	background-color: #fff;
}

.max-960 .main-navigation ul.menu {
	height: 40px;
}

.main-navigation ul.menu li {
	display: inline-block;
	float: none;
}

.main-navigation ul.menu li:last-child {
	display: inline-block;
	width: 100%;
	font-size: 0px;
	/* if you need IE6/7 support */
	*display: inline;
	zoom: 1
}

.max-480 .main-navigation li {
	clear: both;
	display: block;
	text-align: center;
	width: 100%;
	padding: 10px 0;
	background-color: #fff;
	border-bottom: 1px solid #000;
}

.max-480 .main-navigation li:last-child {
	display: none !important;
}

.max-480 .menu-menu-1-container {
	width: 120%;
	margin-left: -30px;
	margin-top: 10px;
}

/* _ */
#news {
	padding-bottom: 30px;
}

h1.section-title {
	color: #fff;
	font-weight: 500 !important;
	font-size: .9em;
	max-width: 1280px;
	margin: auto;
	padding-left: 30px;
}

.section-header {
	position: relative;
	z-index: 2;
	padding: 4px;
	background: #999;
	webkit-box-shadow: 0 4px 4px -2px #666;
	-moz-box-shadow: 0 4px 4px -2px #666;
	box-shadow: 0 4px 4px -2px #666;
}

.section-content {
	position: relative;
	z-index: 1;
	padding: 0 30px 30px;
	max-width: 1280px;
	margin: auto;
}

.section-footer {
	text-align: right;
	font-size: .8em;
}

/* _ */
.boxwrap {
	display: flex;
	flex-wrap: wrap;
}

.item {
	float: none;
	padding: 10px;
	margin: 0 .62% .62% 0;
	color: #000;
	cursor: pointer;
	position: relative;
	width: 100%;
}

.phone .item {
	width: 100% !important;
	margin: 0 0 1em 0 !important;
}

@media screen and (min-width:640px) {
	.item {
		width: calc(50% - 1.24%);
		float: left;
	}
}

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

	.item.book-item,
	.item.book-item {
		width: 32.7%;
		float: left;
		margin: 0 .9% .9% 0;
	}

	.item.book-item:nth-child(3n+3),
	.item.book-item:nth-child(3n+3) {
		margin-right: 0;
	}

	.item {
		width: 19%;
		float: left;
	}
}

.book-item img {
	border: 2px solid #666;
}

.max-1920 .item:nth-child(5n+5),
.max-1280 .item:nth-child(5n+5) {
	margin-right: 0;
}

.max-1024 .item {
	width: 24.5%;
	float: left;
}

.max-1024 .item:nth-child(4n+4) {
	margin-right: 0;
}

.max-960 .item {
	width: 32.5%;
	float: left;
}

.max-960 .item:nth-child(3n+3) {
	margin-right: 0;
}

.max-640 .item:nth-child(2n+2) {
	margin: 0 !important;
	width: 50% !important;
}

.phone .item {
	margin-bottom: .5em;
	width: 100% !important;
}

.max-480 .max-480 .maindate,
.max-640 .maindate,
.max-960 .maindate {
	font-size: 1em;
	top: 45px;
}

.max-480 .maindate span,
.max-640 .maindate span {
	display: none;
}

.max-480 .maindate,
max-480 .sticky .maindate {
	top: 90px;
	font-size: .9em;
	right: 5px;
}

.max-480 .sticky .maindate {
	top: 120px;
}

.max-480 .eunic {
	left: 10px;
}

.max-480 .social {
	right: 10px;
}

.max-480 .site-header {
	padding: 0px
}

.max-480 .site-title {
	-ms-transform: scale(.8, .8);
	/* IE 9 */
	-webkit-transform: scale(.8, .8);
	/* Chrome, Safari, Opera */
	transform: scale(.8, .8);
}

.max-480 #masthead.sticky .main-navigation {
	padding-top: 30px;
}

.max-480 .alignleft,
.max-640 .alignleft {
	float: none !important;
}

.max-480 .col1,
.max-640 .col1 {
	background: transparent !;
}

.max-480 .grid-5,
.max-640 .grid-5 {
	-moz-column-count: 1;
	-webkit-column-count: 1;
	column-count: 1;
}

.max-480 .linkblock,
.max-640 .linkblock,
.max-480 .g20,
.max-640 .g20,
.max-480 .g40,
.max-640 .g40,
.max-480 .g60,
.max-640 .g60,
.max-480 .g80,
.max-640 .g80 {
	display: block !important;
	width: 100% !important;
	clear: both !important;
}





.image-caption {
	position: absolute;
	top: 0;
	text-align: center;
	background: rgba(0, 0, 0, .1);
	color: #fff;
	width: 100%;
}

.item-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: top center;
}

.has_thumb .item-thumb {
	background-color: #FFF;
}

.item img {
	height: 100%;
	width: auto !important;
	margin: 0;
	padding: 0;

}

.item.album {
	padding-bottom: 100px;
}

.item.album .item-thumb {
	opacity: 1;
}

.item.past-event,
.item.album {
	background: #999;
	color: #fff;
}

.item:before {
	content: "";
	display: block;
	padding-top: 0%;
	/* initial ratio of 1:1*/
}

.item.past-event hr {
	background-color: #fff;
	margin-top: 25px;
}

.item-data {
	font-size: .9em;
}

.item-date {
	font-size: 1.6em;
	font-weight: 700;
	color: #000;
	line-height: 1.5em;
	position: relative;
}

.item.separator .item-date {
	font-weight: 300;
}

.item h1,
.item-title {
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.2em;
	margin-bottom: 8px;
}

.past-event .item h1,
.past-event .item-title {

	-webkit-font-smoothing: antialiased !important;
}


div.condensed {
	line-height: 1.3em !important;
	font-size: .95em;
}

.infos {
	position: relative;
	width: 100%;
	padding-top: 10px;
}

#single-ajax article h2.item-title {
	font-size: 1.2em !important;
}

.item h2 {
	font-size: .9em;
	line-height: 1.2;
	margin-bottom: 1em;
	margin-top: 1em;
}

.news-item {
	background: #fff;
}

.item.news-item h2 {
	font-size: 1.1em;
	margin-top: .2em;
}

.item p {
	font-size: .9em;
	line-height: 1.2em;
}

.next-event a {
	color: #000;
}

.past-event a {
	color: #fff;
}

.separator {
	cursor: default !important;
}

/* _ */
.bgcolor-0 {
	background: $ffffff !important;
}

.bgcolor-1 {
	background: #b9c001 !important;
}

.bgcolor-2 {
	background: #fd8422 !important;
}

.bgcolor-3 {
	background: #cead63 !important;
}

.bgcolor-4 {
	background: #f6bd00 !important;
}

.bgcolor-5 {
	background: #00b99c !important;
}

.bgcolor-6 {
	background: #41ab3e !important;
}

.color-0 {
	color: #fff !important;
}

.color-1 {
	color: #b9c001 !important;
}

.color-2 {
	color: #fd8c30 !important;
}

.color-3 {
	color: #cead63 !important;
}

.color-4 {
	color: #f6bd00 !important;
}

.color-5 {
	color: #00b99c !important;
}

.color-6 {
	color: #53c953 !important;
}

/* | */
.singlewrap {
	padding: 0 40px;
}

#event-slider {
	width: 100%;
}

#event-slider div.inner-slide {
	text-align: center;
	height: 100%;
}

#event-slider div.entry-content {
	text-align: left;
}

#event-slider img {
	max-width: 100% !important;
	max-height: 100% !important;
	width: auto !important;
	height: auto !important;
	margin: auto;
}

#event-slider .fotodiv {
	max-height: 400px;
	height: 100%;
	width: 100%;
	text-align: center;
}

#event-slider div.entry-data {
	padding: 30px 40px;
	text-align: left;
}

#event-slider ul {
	margin-left: 0;
}

#event-slider li {
	list-style-type: none;
}

#event-slider a:hover {
	color: #000;
	text-decoration: underline;
}

.event-attachment {
	font-size: .9em;
}

.event-attachment span {
	text-transform: uppercase;
	font-size: .8em;
}

.attachments {
	margin: 0;
	padding-top: 10px;
	margin-top: 10px;
	border-top: 1px solid #333;
}

.attachments li {
	list-style-type: none;
}

/* ALBUM */

.album:nth-child(2n+2):after {
	clear: both;
	display: block;
}

/* PAGE */
.page .entry-content {
	max-width: 90%;
	margin: auto;
}

.entry-header {
	position: relative;
	z-index: 2;
	padding: 4px;
	background: #999;
	-webkit-box-shadow: 0 4px 4px -2px #666;
	-moz-box-shadow: 0 4px 4px -2px #666;
	box-shadow: 0 4px 4px -2px #666;
	font-weight: bold;
	color: #fff;

}

.page .entry-content,
.page .entry-footer {
	padding: 0 0px 30px;
	margin: 20px auto;
}

.g40 img {
	width: 100% !important;
	height: auto;
}

.page h3 {
	font-size: 1.5em;
	font-weight: 500;
	padding: 20px 0 10px;
}

.col1 {
	padding-left: 30px;
}

.col3 {
	padding-right: 30px;
}

.page__contact .col3 {
	padding-right: 0;
}

.g80 {
	padding-left: 30px;
}

.max-480 .g80 {
	padding-right: 30px;
}

.ekdoseis .col1 {
	background: #fd8422;
	padding: 20px;
	margin-left: 30px !important;
}

/* MAP */
.acf-map {
	width: 100%;
	height: 540px;
	border: #ccc solid 1px;
	margin: 0;
	z-index: 0;

	margin-right: 5%
}

.gm-style img {
	max-width: none;
}

.g80 {
	margin: 0 .62% .62% 0;
	width: 78.2%;
}

.g60 {
	margin: 0 .62% .62% 0;
	width: 57%;
}

.g40 {
	width: 39.5%;
	margin: 0 .62% .62% 0;
}

.g40:first-child p {
	padding-right: 20px;
}

.page .g40.col2 h3 {
	padding-top: 10px !important;
}

.g20.alignleft {
	width: 19.6%;
	margin: 0;
	position: relative;
}

.infobox {
	padding: 20px;
	font-size: .9em;
	margin-bottom: 8px
}

.infobox p {
	margin-bottom: 10px;
}

.infobox strong {
	line-height: 1em;
}

/* BOOKS */
#booklist {
	padding: 20px;
	margin: auto;
}

#booklist:after {
	clear: both;
	display: block;
}

.book-item {
	width: 32.7%;
	float: left;
	margin: 0 .9% .9% 0;
}

.book-item:nth-child(3n+3) {
	margin-right: 0;
}

.book-item img {
	border: 2px solid #666;
}

/* LINKS */
.grid-5 {
	-moz-column-count: 5;

	-webkit-column-count: 5;

	column: 5;

}

.links {
	padding-top: 20px;
}

.link-title {
	line-height: 1.3em;
	font-size: .9em;
	padding-bottom: 4px;
	font-weight: 700;
}

.links ul {
	margin: 0 0 20px 0;
}

.linkblock {
	display: inline-block;
}

.links li {
	list-style-type: none;
	font-size: .8em;
	line-height: 1.2em;
	margin-bottom: .4em;
}

/* _ */
.site-footer {
	z-index: 9;
	position: relative;
}

.site-info {
	text-align: center;
	margin: 0 auto;
	background: #999;
	color: #fff;
	padding: 10px 10px 40px;
	font-size: .9em;
}

.site-info p {
	padding: 0 60px;
}

.site-info strong {
	font-size: 1.1em;
}

.site-info small {
	font-size: .9em;
}

/* Tickr */
.mtphr-dnt {
	background: #fff;
	color: #999;
	font-size: .8em;
	padding: 24px 0px 0px;
}


/*
.fotorama__arr{
	top: 95%;
}
.fotorama__arr--next{
	left: 20px;
}
*/
.now {
	display: block;
	line-height: .5em;
	margin-top: 10px;
}

.readmore {
	position: absolute;
	bottom: 0;
}

ul.marquee {
	/* required styles */
	display: block;
	padding: 0;
	margin: 0 auto;
	list-style: none;
	line-height: 1;
	position: relative;
	overflow: hidden;
	max-width: 1280px;
	/* optional styles for appearance */
	width: 100%;
	height: 50px;
	/* height should be included to reserve visual space for the marquee */
}

ul.marquee li {
	/* required styles */
	position: absolute;
	top: -999em;
	left: 0;
	display: block;
	white-space: nowrap;
	/* keep all text on a single line */
	font-size: 1em;
	line-height: 1em;
	font-weight: 700;
	color: #fd8422;
	padding: 4px 5px;
	text-align: center;
}

ul.marquee li:nth-child(odd) {
	color: #fd8422;
}

#content {
	margin: auto;
}

#masthead.sticky {
	position: fixed;
	top: -151px;
	z-index: 9999;
	-webkit-box-shadow: 0 4px 4px -2px #666;
	-moz-box-shadow: 0 4px 4px -2px #666;
	box-shadow: 0 4px 4px -2px #666;
	-webkit-transition: top 1s ease-in-out;
	-moz-transition: top 1s ease-in-out;
	-o-transition: top 1s ease-in-out;
	transition: top 1s ease-in-out;
	max-width: 100%;
	width: 100%;
	border-top: 1px solid #fff;
}

#masthead.sticky .ticker-wrapper {
	display: none;
}

#masthead.sticky .site-branding {
	border-bottom: 1px solid #fff;
}

#colophon.sticky {

	bottom: 0;
	width: 100%;
	background: #888888;
}

.home #colophon.sticky {
	padding-bottom: 40px;
}

#featured-slider {
	background-color: #fff;
	height: 40px;
	width: 100%;
	padding: 5px 0px;
	position: fixed;
	bottom: 0;
	z-index: 9999;
	left: 0;

	-webkit-box-shadow: 0px -3px 5px 0px rgba(50, 50, 50, 0.34);
	-moz-box-shadow: 0px -3px 5px 0px rgba(50, 50, 50, 0.34);
	box-shadow: 0px -3px 5px 0px rgba(50, 50, 50, 0.34)
}

#cover-container {
	width: 100%;
	background: #fff;
	padding: 0 30px;
}

#cover {
	width: 100%;
	background: url(img/cover.jpg) no-repeat center center;
	background-size: cover;
	height: 1000px;
}

.phobe #cover {
	display: none !important;
}

.hidden {
	display: none;
}

.opening,
.opening.highlight {
	/*-webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.19);
	-moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.19);
	box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.19);*/
	background-color: #fcd944 !important;
}

/*
.opening.bgcolor-0{
	border-bottom: 2px solid $ffffff !important;
}
.opening.bgcolor-1{
	border-bottom: 2px solid #b9c001 !important;
	border-top: 2px solid #b9c001 !important;
}
.opening.bgcolor-2{
	border-bottom: 2px solid #fd8422 !important;
	border-top: 2px solid #fd8422 !important;
}
.opening.bgcolor-3{
	border-bottom: 2px solid  #cead63 !important;
	border-top: 2px solid  #cead63 !important;
}
.opening.bgcolor-4{
	border-bottom: 2px solid  #f6bd00 !important;
	border-top: 2px solid  #f6bd00 !important;
}
.opening.bgcolor-5{
	border-bottom: 2px solid #00b99c !important;
	border-top: 2px solid #00b99c !important;
}
.opening.bgcolor-6{
	border-bottom: 2px solid #589858 !important;
	border-top: 2px solid #589858 !important;
}
*/
.past-event.highlight,
.next-event.highlight,
.event-album.highlight {
	-webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.eunic {
	position: absolute;
	top: 10px;
	left: 30px;
}

.social {
	position: absolute;
	top: 15px;
	right: 30px;
}

.social ul {
	margin: 0;
}

.social li {
	float: left;
	list-style-type: none;
}

.filler {
	pointer-events: none;
	cursor: default !important;
}

.ias-trigger,
.ias-spinner,
.ias-noneleft {
	clear: both;
	display: block;
	width: 100%;
	text-align: center;
}