/*
Theme Name: Theme Alter1fo 2014
Theme URI: http://underscores.me/
Author: Alter1fo
Author URI: http://alter1fo.com/
Description: Infos, concerts, sorties, festivals…
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-alter1fo
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.

 Theme Alter1fo 2014 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/
*/

/*--------------------------------------------------------------
>>> 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: Verdana;
	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: #000; /* Fallback for when there is no custom background color defined. */
}
body.custom-background {
	/*background-position-y: 180px !important;*/
}
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: collapse;
	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: Verdana;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.5;
}

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

h1 {
	color: #060606;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	padding: 0.5em 0;
}

h2 {
	color:  #82aa05;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	padding: 0.5em 0;
}

h3 {
	color:  #333333;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 0.5em 0;
}

h4 {
	color:  #82aa05;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	padding: 0.5em 0;
}

h5 {
	color:  #333333;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.5em 0;
}

h6 {
	color:  #82aa05;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.5em 0;
}

p {
	margin-bottom: 1.5em;
}

.mejs-container + p {
  margin-top: 1.5em;
}
	
b,
strong {
	font-weight: bold;
}

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

blockquote {
	margin: 1.5em 1em;
	padding: 0 0.5em;
	border-left: 2px solid #ccc;
}
.blockquote-reverse {
	text-align: right;
	border-left:0;
	border-right: 2px solid #ccc;
}
blockquote footer {
	color: #ccc;
}
address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	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: #a5d004;
	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: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

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;
}

li {
      list-style: none;
    }



dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 0.5em;
}

.dl-horizontal dt {
	float: left;
	width: 160px;
	overflow: hidden;
	clear: left;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dl-horizontal dd {
	margin-left: 180px;
}

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%;
	max-width: 100%;
}

th {
	font-weight: bold;
}


table caption {
	text-align: center;
	font-weight: 700;
	padding: 0.5em;
}

thead {
	color: #82aa05;
	border-top: 1px solid #82aa05;
	border-bottom: 1px solid #82aa05;
}

tbody {
	
}

table tr {
	border-bottom: 1px solid #ccc;
}
table tr {

}

table td {
	padding: 0.5em;
}

table th {
	padding: 0.5em;
}

.color thead {
	background-color: #82aa05;
	color: #fff;
}
.color tr {
	border: none;
}
.color > tbody > tr:nth-child(even) {
	background-color: #f2f6e5;
}

.gray thead {
	background-color: #82aa05;
	color: #000;
}
.gray tr {
	border: none;
}
.gray > tbody > tr:nth-child(even) {
	background-color: #eee;
}

.light-gray {
	background-color: #eee;
	padding: 1em;
}
.dark-gray {
	background-color: #ddd;
	padding: 1em;
}
.green-white {
	background-color: #82aa05;
	padding: 1em;
	color: #fff;
}
.green-black {
	background-color: #82aa05;
	padding: 1em;
	color: #000;
}
.border-gray {
	border: 1px solid #ccc;
}
.border-black {
	border: 1px solid #000;
}
.border-green {
	border: 1px solid #82aa05;
}
.radius-all {
	border-radius: 1em;
}
.radius-top-right {
	border-radius: 0 1em 0 1em;
}
.radius-bottom-left {
	border-radius: 1em 0 1em 0;
}

/*--------------------------------------------------------------
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 {
	font-family: Verdana;
	border: 1px solid #82aa05;
	border-radius: 0.5em;
	background: -webkit-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -moz-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -o-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -ms-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: linear-gradient(#82aa05 27%, #a5d004 100%);
	cursor: pointer;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	padding: .7em .7em;
	color: #000;
	transition: all 0.5s ease;
	position: relative;
	z-index: 0;
	margin: 0 2em 0 1em;
}

.read-more {
	float: right;
	font-family: Verdana;
	border-left: 1px solid #82aa05;
	border-top: 1px solid #82aa05;
	border-bottom: 1px solid #82aa05;
	border-radius: 0.5em 0 0 0.5em;
	background: -webkit-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -moz-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -o-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -ms-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: linear-gradient(#82aa05 27%, #a5d004 100%);
	cursor: pointer;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	padding: .7em .7em;
	color: #000;
	transition: all 0.5s ease;
	position: relative;
	z-index: 0;
	margin: 0 2em 0 1em;
}
.button:visited, .read-more:visited, .back-link:hover, .back-link:visited {
	color: #000;
}
.read-more:after {
	background:
		url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiCiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIKICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgd2lkdGg9IjEyIgogICBoZWlnaHQ9IjMxIgogICBpZD0ic3ZnNDI0NSIKICAgdmVyc2lvbj0iMS4xIgogICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjQ4LjUgcjEwMDQwIgogICBzb2RpcG9kaTpkb2NuYW1lPSJidXR0b24tYXJyb3cuc3ZnIj4KICA8ZGVmcwogICAgIGlkPSJkZWZzNDI0NyI+CiAgICA8bGluZWFyR3JhZGllbnQKICAgICAgIHkyPSIyNS43ODMxMjciCiAgICAgICB4Mj0iNzUuOTM4NDE2IgogICAgICAgeTE9Ii0yMS45MTkwODUiCiAgICAgICB4MT0iNzUuOTM4MTI2IgogICAgICAgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgwLjY4NzUsMCwwLDAuNjQ5NzAwNTQsMzE0Ljc5NTI5LDUzOS40NjU2NCkiCiAgICAgICBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIKICAgICAgIGlkPSJsaW5lYXJHcmFkaWVudDU4ODEiCiAgICAgICB4bGluazpocmVmPSIjbGluZWFyX1BTZ3JhZF8wIgogICAgICAgaW5rc2NhcGU6Y29sbGVjdD0iYWx3YXlzIiAvPgogICAgPGxpbmVhckdyYWRpZW50CiAgICAgICBpZD0ibGluZWFyX1BTZ3JhZF8wIgogICAgICAgeDE9IjAuNSIKICAgICAgIHgyPSIwLjUiCiAgICAgICB5MT0iMSIKICAgICAgIHkyPSIwIj4KICAgICAgPHN0b3AKICAgICAgICAgb2Zmc2V0PSIwJSIKICAgICAgICAgc3RvcC1jb2xvcj0icmdiKDEyOSwxNjksNSkiCiAgICAgICAgIHN0b3Atb3BhY2l0eT0iMSIKICAgICAgICAgaWQ9InN0b3AzMDE0IiAvPgogICAgICA8c3RvcAogICAgICAgICBvZmZzZXQ9IjI1LjkwMzMlIgogICAgICAgICBzdG9wLWNvbG9yPSJyZ2IoMTI5LDE2OSw1KSIKICAgICAgICAgc3RvcC1vcGFjaXR5PSIxIgogICAgICAgICBpZD0ic3RvcDMwMTYiIC8+CiAgICAgIDxzdG9wCiAgICAgICAgIG9mZnNldD0iMjcuMTk3MyUiCiAgICAgICAgIHN0b3AtY29sb3I9InJnYigxMjksMTY5LDUpIgogICAgICAgICBzdG9wLW9wYWNpdHk9IjEiCiAgICAgICAgIGlkPSJzdG9wMzAxOCIgLz4KICAgICAgPHN0b3AKICAgICAgICAgb2Zmc2V0PSIxMDAlIgogICAgICAgICBzdG9wLWNvbG9yPSJyZ2IoMTY1LDIwNywzKSIKICAgICAgICAgc3RvcC1vcGFjaXR5PSIxIgogICAgICAgICBpZD0ic3RvcDMwMjAiIC8+CiAgICA8L2xpbmVhckdyYWRpZW50PgogICAgPGxpbmVhckdyYWRpZW50CiAgICAgICBpbmtzY2FwZTpjb2xsZWN0PSJhbHdheXMiCiAgICAgICB4bGluazpocmVmPSIjbGluZWFyX1BTZ3JhZF8wIgogICAgICAgaWQ9ImxpbmVhckdyYWRpZW50Mjk5OSIKICAgICAgIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIgogICAgICAgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgwLjc0NDk1NzA2LDAsMCwwLjY0OTcwMDU0LDMxMi40MzI4Miw1MzIuODQzMzQpIgogICAgICAgeDE9Ijc1LjkzODEyNiIKICAgICAgIHkxPSItMjEuOTE5MDg1IgogICAgICAgeDI9Ijc1LjkzODQxNiIKICAgICAgIHkyPSIyNS43ODMxMjciIC8+CiAgPC9kZWZzPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBpZD0iYmFzZSIKICAgICBwYWdlY29sb3I9IiNmZmZmZmYiCiAgICAgYm9yZGVyY29sb3I9IiM2NjY2NjYiCiAgICAgYm9yZGVyb3BhY2l0eT0iMS4wIgogICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwLjAiCiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIKICAgICBpbmtzY2FwZTp6b29tPSIxNiIKICAgICBpbmtzY2FwZTpjeD0iMjEuMDk4NjExIgogICAgIGlua3NjYXBlOmN5PSIxNS43MDQ1MjIiCiAgICAgaW5rc2NhcGU6ZG9jdW1lbnQtdW5pdHM9InB4IgogICAgIGlua3NjYXBlOmN1cnJlbnQtbGF5ZXI9ImxheWVyMSIKICAgICBzaG93Z3JpZD0iZmFsc2UiCiAgICAgZml0LW1hcmdpbi10b3A9IjAiCiAgICAgZml0LW1hcmdpbi1sZWZ0PSIwIgogICAgIGZpdC1tYXJnaW4tcmlnaHQ9IjAiCiAgICAgZml0LW1hcmdpbi1ib3R0b209IjAiCiAgICAgaW5rc2NhcGU6d2luZG93LXdpZHRoPSIxMjgwIgogICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9IjczOCIKICAgICBpbmtzY2FwZTp3aW5kb3cteD0iLTgiCiAgICAgaW5rc2NhcGU6d2luZG93LXk9Ii04IgogICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjEiIC8+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhNDI1MCI+CiAgICA8cmRmOlJERj4KICAgICAgPGNjOldvcmsKICAgICAgICAgcmRmOmFib3V0PSIiPgogICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PgogICAgICAgIDxkYzp0eXBlCiAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4KICAgICAgICA8ZGM6dGl0bGUgLz4KICAgICAgPC9jYzpXb3JrPgogICAgPC9yZGY6UkRGPgogIDwvbWV0YWRhdGE+CiAgPGcKICAgICBpbmtzY2FwZTpsYWJlbD0iQ2FscXVlIDEiCiAgICAgaW5rc2NhcGU6Z3JvdXBtb2RlPSJsYXllciIKICAgICBpZD0ibGF5ZXIxIgogICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zNjksLTUxOC40Mzc1KSI+CiAgICA8cGF0aAogICAgICAgc3R5bGU9ImZpbGw6dXJsKCNsaW5lYXJHcmFkaWVudDI5OTkpO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTojODJhYWZmO3N0cm9rZS13aWR0aDoxLjA0MDk0ODUxO3N0cm9rZS1vcGFjaXR5OjAiCiAgICAgICBkPSJtIDM2OS4wMDA0Nyw1MTguNTk3MDMgMCwzMSAxMS45MTkzMSwtMTUuNSB6IgogICAgICAgaWQ9InBhdGg1MzAwIgogICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIKICAgICAgIHNvZGlwb2RpOm5vZGV0eXBlcz0iY2NjYyIgLz4KICAgIDxwYXRoCiAgICAgICBzdHlsZT0iZmlsbDpub25lO3N0cm9rZTojODJhYTA1O3N0cm9rZS13aWR0aDowLjYwMDAwMDAyO3N0cm9rZS1saW5lY2FwOmJ1dHQ7c3Ryb2tlLWxpbmVqb2luOm1pdGVyO3N0cm9rZS1taXRlcmxpbWl0OjQ7c3Ryb2tlLW9wYWNpdHk6MTtzdHJva2UtZGFzaGFycmF5Om5vbmUiCiAgICAgICBkPSJtIDM2OC42MzIyNyw1MTguNjMwODIgMTEuOTI0MDIsMTUuNTU2MzUgLTExLjkyNDAyLDE1LjM3OTU3IgogICAgICAgaWQ9InBhdGgzNzc5IgogICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIgLz4KICA8L2c+Cjwvc3ZnPgo=)
		no-repeat;
    position: absolute;
    bottom: -1px;
    right: -12px;

    width: 12px ;
    height: 31px;
    content: '';
    z-index: -1;
}
.back-link {
	font-family: Verdana;
	border-right: 1px solid #82aa05;
	border-top: 1px solid #82aa05;
	border-bottom: 1px solid #82aa05;
	border-radius: 0 0.5em 0.5em 0;
	background: -webkit-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -moz-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -o-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -ms-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: linear-gradient(#82aa05 27%, #a5d004 100%);
	cursor: pointer;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	padding: .7em .7em;
	color: #000;
	transition: all 0.5s ease;
	position: relative;
	z-index: 0;
	float: left;
	margin-top: 0.5em;
}
.back-link:before {
	background:
		url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgIHhtbG5zOmNjPSJodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9ucyMiCiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIKICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgd2lkdGg9IjEyIgogICBoZWlnaHQ9IjMxIgogICBpZD0ic3ZnNDI0NSIKICAgdmVyc2lvbj0iMS4xIgogICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjQ4LjUgcjEwMDQwIgogICBzb2RpcG9kaTpkb2NuYW1lPSJhcnJvdy1sZWZ0LnN2ZyI+CiAgPGRlZnMKICAgICBpZD0iZGVmczQyNDciPgogICAgPGxpbmVhckdyYWRpZW50CiAgICAgICB5Mj0iMjUuNzgzMTI3IgogICAgICAgeDI9Ijc1LjkzODQxNiIKICAgICAgIHkxPSItMjEuOTE5MDg1IgogICAgICAgeDE9Ijc1LjkzODEyNiIKICAgICAgIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoMC42ODc1LDAsMCwwLjY0OTcwMDU0LDMxNC43OTUyOSw1MzkuNDY1NjQpIgogICAgICAgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiCiAgICAgICBpZD0ibGluZWFyR3JhZGllbnQ1ODgxIgogICAgICAgeGxpbms6aHJlZj0iI2xpbmVhcl9QU2dyYWRfMCIKICAgICAgIGlua3NjYXBlOmNvbGxlY3Q9ImFsd2F5cyIgLz4KICAgIDxsaW5lYXJHcmFkaWVudAogICAgICAgaWQ9ImxpbmVhcl9QU2dyYWRfMCIKICAgICAgIHgxPSIwLjUiCiAgICAgICB4Mj0iMC41IgogICAgICAgeTE9IjEiCiAgICAgICB5Mj0iMCI+CiAgICAgIDxzdG9wCiAgICAgICAgIG9mZnNldD0iMCUiCiAgICAgICAgIHN0b3AtY29sb3I9InJnYigxMjksMTY5LDUpIgogICAgICAgICBzdG9wLW9wYWNpdHk9IjEiCiAgICAgICAgIGlkPSJzdG9wMzAxNCIgLz4KICAgICAgPHN0b3AKICAgICAgICAgb2Zmc2V0PSIyNS45MDMzJSIKICAgICAgICAgc3RvcC1jb2xvcj0icmdiKDEyOSwxNjksNSkiCiAgICAgICAgIHN0b3Atb3BhY2l0eT0iMSIKICAgICAgICAgaWQ9InN0b3AzMDE2IiAvPgogICAgICA8c3RvcAogICAgICAgICBvZmZzZXQ9IjI3LjE5NzMlIgogICAgICAgICBzdG9wLWNvbG9yPSJyZ2IoMTI5LDE2OSw1KSIKICAgICAgICAgc3RvcC1vcGFjaXR5PSIxIgogICAgICAgICBpZD0ic3RvcDMwMTgiIC8+CiAgICAgIDxzdG9wCiAgICAgICAgIG9mZnNldD0iMTAwJSIKICAgICAgICAgc3RvcC1jb2xvcj0icmdiKDE2NSwyMDcsMykiCiAgICAgICAgIHN0b3Atb3BhY2l0eT0iMSIKICAgICAgICAgaWQ9InN0b3AzMDIwIiAvPgogICAgPC9saW5lYXJHcmFkaWVudD4KICAgIDxsaW5lYXJHcmFkaWVudAogICAgICAgaW5rc2NhcGU6Y29sbGVjdD0iYWx3YXlzIgogICAgICAgeGxpbms6aHJlZj0iI2xpbmVhcl9QU2dyYWRfMCIKICAgICAgIGlkPSJsaW5lYXJHcmFkaWVudDI5OTkiCiAgICAgICBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIKICAgICAgIGdyYWRpZW50VHJhbnNmb3JtPSJtYXRyaXgoLTAuNzQ0OTU3MDYsMCwwLDAuNjQ5NzAwNTQsNDM3LjYzOTQzLDUzMi44NDMzNCkiCiAgICAgICB4MT0iNzUuOTM4MTI2IgogICAgICAgeTE9Ii0yMS45MTkwODUiCiAgICAgICB4Mj0iNzUuOTM4NDE2IgogICAgICAgeTI9IjI1Ljc4MzEyNyIgLz4KICA8L2RlZnM+CiAgPHNvZGlwb2RpOm5hbWVkdmlldwogICAgIGlkPSJiYXNlIgogICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIKICAgICBib3JkZXJjb2xvcj0iIzY2NjY2NiIKICAgICBib3JkZXJvcGFjaXR5PSIxLjAiCiAgICAgaW5rc2NhcGU6cGFnZW9wYWNpdHk9IjAuMCIKICAgICBpbmtzY2FwZTpwYWdlc2hhZG93PSIyIgogICAgIGlua3NjYXBlOnpvb209IjExLjMxMzcwOSIKICAgICBpbmtzY2FwZTpjeD0iNi45NDM2ODkxIgogICAgIGlua3NjYXBlOmN5PSI5LjUyNjg1OTYiCiAgICAgaW5rc2NhcGU6ZG9jdW1lbnQtdW5pdHM9InB4IgogICAgIGlua3NjYXBlOmN1cnJlbnQtbGF5ZXI9ImxheWVyMSIKICAgICBzaG93Z3JpZD0iZmFsc2UiCiAgICAgZml0LW1hcmdpbi10b3A9IjAiCiAgICAgZml0LW1hcmdpbi1sZWZ0PSIwIgogICAgIGZpdC1tYXJnaW4tcmlnaHQ9IjAiCiAgICAgZml0LW1hcmdpbi1ib3R0b209IjAiCiAgICAgaW5rc2NhcGU6d2luZG93LXdpZHRoPSIxMjgwIgogICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9IjczOCIKICAgICBpbmtzY2FwZTp3aW5kb3cteD0iLTgiCiAgICAgaW5rc2NhcGU6d2luZG93LXk9Ii04IgogICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjEiIC8+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhNDI1MCI+CiAgICA8cmRmOlJERj4KICAgICAgPGNjOldvcmsKICAgICAgICAgcmRmOmFib3V0PSIiPgogICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PgogICAgICAgIDxkYzp0eXBlCiAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4KICAgICAgICA8ZGM6dGl0bGU+PC9kYzp0aXRsZT4KICAgICAgPC9jYzpXb3JrPgogICAgPC9yZGY6UkRGPgogIDwvbWV0YWRhdGE+CiAgPGcKICAgICBpbmtzY2FwZTpsYWJlbD0iQ2FscXVlIDEiCiAgICAgaW5rc2NhcGU6Z3JvdXBtb2RlPSJsYXllciIKICAgICBpZD0ibGF5ZXIxIgogICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zNjksLTUxOC40Mzc1KSI+CiAgICA8cGF0aAogICAgICAgc3R5bGU9ImZpbGw6dXJsKCNsaW5lYXJHcmFkaWVudDI5OTkpO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTojODJhYWZmO3N0cm9rZS13aWR0aDoxLjA0MDk0ODUxO3N0cm9rZS1vcGFjaXR5OjAiCiAgICAgICBkPSJtIDM4MS4wNzE3OCw1MTguNTk3MDMgMCwzMSAtMTEuOTE5MzEsLTE1LjUgeiIKICAgICAgIGlkPSJwYXRoNTMwMCIKICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiCiAgICAgICBzb2RpcG9kaTpub2RldHlwZXM9ImNjY2MiIC8+CiAgICA8cGF0aAogICAgICAgc3R5bGU9ImZpbGw6bm9uZTtzdHJva2U6IzgyYWEwNTtzdHJva2Utd2lkdGg6MC42MDAwMDAwMjtzdHJva2UtbGluZWNhcDpidXR0O3N0cm9rZS1saW5lam9pbjptaXRlcjtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1vcGFjaXR5OjE7c3Ryb2tlLWRhc2hhcnJheTpub25lIgogICAgICAgZD0ibSAzODEuNDM5OTgsNTE4LjYzMDgyIC0xMS45MjQwMiwxNS41NTYzNSAxMS45MjQwMiwxNS4zNzk1NyIKICAgICAgIGlkPSJwYXRoMzc3OSIKICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiIC8+CiAgPC9nPgo8L3N2Zz4K)
		no-repeat;
    position: absolute;
    bottom: -1px;
    left: -12px;

    width: 12px ;
    height: 31px;
    content: '';
    z-index: -1;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	font-family: Verdana;
	border: none;
	border-radius: 0.5em;
	background: -webkit-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -moz-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -o-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: -ms-linear-gradient(#82aa05 27%, #a5d004 100%);
	background: linear-gradient(#82aa05 27%, #a5d004 100%);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	padding: .7em .7em;
	color: #000;
	transition: opacity 0.5s ease;
}

button.secondary,
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
	background: -webkit-linear-gradient(#999999,#cccccc);
	background: -moz-linear-gradient(#999999,#cccccc);
	background: -o-linear-gradient(#999999,#cccccc);
	background: -ms-linear-gradient(#999999,#cccccc);
	background: linear-gradient(#999999,#cccccc);
}


button:hover, .button:hover, .read-more:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	opacity: 0.8;
}

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 {
	
}

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

input[type="search"] {
	-webkit-appearance: textfield; /* 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: 0.1em solid #ccc;
	border-radius: 0.3em;
}

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: 0.3em;
}

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

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #82aa05;
	text-decoration: none;
}

a:visited {
	color: #82aa05;
}

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

.back-top {
	position: fixed;
	bottom: 5%;
	right: 0;
	color: #8db21b !important;
	font-size: 5em;
	z-index: 9999;
}
.back-top:after {
	content: "";
	display: block;
	width: 0.8em;
	height: 0.8em;
	background: #fff;
	position: absolute;
	top: 25%;
	left: 21%;
	z-index: -1;
	border-radius: 1em;
}
.back-top:hover {
	text-decoration: none;
	opacity: 0.8;
}
a.media-button {
	border-radius: 8px;
	background-color:  #222222;
	width: 100%;
	display: block;
	line-height: 2em;
	text-align: center;
	font-size: 1.6rem;
	font-size: 16px;
}
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

.main-navigation {
	clear: both;
	display: block;
	margin: 0 auto;
	height: 44px;
	height: 4.4rem;
	background: -webkit-linear-gradient(#000000, #333333);
	background: -moz-linear-gradient(#000000, #333333);
	background: -o-linear-gradient(#000000, #333333);
	background: -ms-linear-gradient(#000000, #333333);
	background: linear-gradient(#000000, #333333);
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li.home a {
	border:1px solid transparent;
	color: #a5d004;
	padding: 0 0.3em;
}
.main-navigation li.home a:before {
	font-family: "fontello";
	content: '\e809';
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: .2em;
	font-size: 160%;
}



.main-navigation ul li a {
	color: #fff;
	font-size: 17px;
	font-size: 1.7rem;
	font-family: Helvetica;
	padding: 0 0.5em;
	border-top: 1px solid transparent;
	border-right: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-left: 1px solid rgba(102, 102, 102, 0.5);

}
.main-navigation ul li.has-sub:hover > a {
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-bottom: 1px solid transparent;
	border-left: 1px solid #333;
	background-color: #0a0a0a;
}

.main-navigation a:hover {
	color: #a5d004;
}
.main-navigation .has-sub {
	padding-right: 0;
}
.main-navigation .submenu {
	color: #a5d004;
}
.main-navigation .submenu:before {
	/*padding-right: 20px;*/
	margin:0 0.2em;
	font-size: 80%;
}

.main-navigation li {
	float: left;
	position: relative;
	border:1px solid transparent;
	padding-top: 8px;
	z-index: 100;
}

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

.main-navigation ul ul {
	border-top: 1px solid transparent;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	border-left: 1px solid #333;
	position: absolute;
	display: none;
	background-color: #0a0a0a;
}

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

.main-navigation ul ul a {
	padding: 0px;
	width: 200px;
	border: 1px solid transparent;
}

.main-navigation ul ul li {
	padding-top: 0;
}

.main-navigation ul ul li:before {
	content:'\25A0';
	float: left;
	color: #82aa05;
	margin:2px 4px;
}



.main-navigation ul ul :hover > a {
	background-color: #333;
}

.main-navigation ul ul a:hover {
}

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

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

.main-navigation .current_page_item a,
.main-navigation .current-menu-item a {
}


.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1em;
	overflow: hidden;
}

.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%;
}

.paging-navigation {
	padding-top:1em;
	text-align:center;
}
.paging-navigation .page-numbers{
	border:1px solid #ccc;
	color:#424242;
	padding:0 0.5em;
}
.paging-navigation .current{
	background:#eee;
	border:1px solid #8db21b;
	color: #8db21b;
	padding:0 0.5em;
	
}
.paging-navigation .next, .paging-navigation .prev  {
	border:none;
	color: #8db21b;
}
.paging-navigation-black .page-numbers{
	border:1px solid #666;
	color:#fff;
}
.paging-navigation-black .current{
	background:#666;
	border:1px solid #8db21b;
	color: #8db21b;
	
}
.paging-navigation-black .next, .paging-navigation-black .prev  {
	border:none;
	color: #8db21b;
}

/*--------------------------------------------------------------
5.X Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb-wrapper {
	display: block;
	background: -moz-linear-gradient(#444444,#333333);
	background: -o-linear-gradient(#444444,#333333);
	background: -ms-linear-gradient(#444444,#333333);
	background: linear-gradient(#444444, #333333);
	color: #dddddd;
	line-height: 33px;
	padding-left: 5em;
}
.breadcrumb-wrapper a {
	color: #dddddd;
}
.breadcrumb-wrapper .breadcrumb_last {
	color: #a5d004;
}
/*--------------------------------------------------------------
X.X Slider
--------------------------------------------------------------*/
.slider-area {
	display: block;
	background: url(img/slider-bg.jpg) bottom center;
	position: relative;
	max-height: 395px;
}

.slider-title {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	clear: none;
	padding: 2em 0 0 20px;
}
 .slider-title a {
 	color: #a5d004;	
}

.slider-meta , .slider-content {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	color: #ccc;
	clear: none;
	padding: 0 0 0 20px;
}
.slider-meta a {
	color: #ccc;
}
.slider-thumb {
	float: right;
	padding-left: 1em;
	max-height: 395px;
	object-fit: cover;
	object-position: right;
}

.slide-button {
	position: absolute;
	bottom: 2em;
	left: 20em;
}

.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
.flexslider .slides > * {display: none; -webkit-backface-visibility: hidden;position: relative;}
.flex-control-nav {position: absolute; bottom: 2em;left: 1em;margin: 0;}
.flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {
	width: 24px;
	height: 24px;
	display: block;
	background: #666;
	background: rgba(0,0,0,0.5);
	cursor: pointer;
	text-indent: -9999px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
	background: -webkit-linear-gradient(#000000,#373737);
	background: -moz-linear-gradient(#000000,#373737);
	background: -o-linear-gradient(#000000,#373737);
	background: -ms-linear-gradient(#000000,#373737);
	background: linear-gradient(#000000,#373737);
	transition: opacity 0.5s ease;
}
.flex-control-paging li a:hover {
	opacity: 0.7;
}
.flex-control-paging li a.flex-active {
	background: -webkit-linear-gradient(#82aa05, #a5d004);
	background: -moz-linear-gradient(#82aa05, #a5d004);
	background: -o-linear-gradient(#82aa05, #a5d004);
	background: -ms-linear-gradient(#82aa05, #a5d004);
	background: linear-gradient(#82aa05, #a5d004);
}

/*--------------------------------------------------------------
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;
}
.txtleft {
	text-align: left;
}

.txtright {
	text-align: right;
}

.txtcenter {
	text-align: center;
}
/*--------------------------------------------------------------
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;
}

/*--------------------------------------------------------------
	Home Content
--------------------------------------------------------------*/
.home-category hr, .widget-area hr {
	margin: 1.3em 0;
}
.category-title, .page-title {
	padding: 0;
}

.home-post {
	display: table;
	border-collapse: collapse;
}
.first-post, .other-posts {
	display: table-cell;
	width: 50%;
	vertical-align: top;
	padding: 1em 1em 0 1em;
}
.other-posts {
	border-left: 0.1em solid #dadada;
}
.first-post {
	border-right: 0.1em solid #dadada;
}

.home-post article {
	padding-bottom: .5em;
}
.home-post a.thumb-link {
	position: relative;
}
.home-post a.thumb-link:before {
	content: "";
	position: absolute;
	width:0;
	height:0;
	bottom: 0;
	left: 20px;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #fff;
}
.home-post .entry-title, .widget-area .entry-title {
	font-size: 12px;
	font-size: 1.2rem;
	padding: 0;
}

.other-posts .entry-title a {
	font-weight: 400;
	color: #333;
}
.home-post .entry-meta, .widget-area .entry-meta {
	font-size: 12px;
	font-size: 1.2rem;
	color: #666;
	font-weight: 400;
	padding: 0;
}
.home-post .entry-meta a, .widget-area .entry-meta a {
	color: #666;
}
.home-post .entry-title a, .widget-area .entry-title a {
	color: #333;
}
/*--------------------------------------------------------------
	Home Sidebar
--------------------------------------------------------------*/
.widget-area {
	line-height: 16px;
	line-height: 1.6rem;
}
.widget-area a {
	color: #333333;
}
.widget-area .sidebar-title {
	margin-top: 1em;
	padding-bottom: 0.4em
}
.widget-area .entry-title {
	margin-top: 1em;
}

.widget-area .entry-meta {
	margin-bottom: 0.5em;
}
.widget-area .thumb-link {
	float: left;
	margin-right: 1em;
}
.widget-area .entry-content {
	margin: 0;
}
.widget-area hr  {
	margin-top: 1.8em;
}
.widget-area .read-more {
	margin-top: 0.6em;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/

.social-buttons {
	text-align: right;
	margin: 1em;
}
.social-buttons, .social-buttons a {
	color: #666666;
}
.social-buttons a:hover {
	text-decoration: none;
}

.meta {
    background-image: url(img/sprite-meta.png);
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: bottom;
}

.meta-icon-facebook {
    width: 20px;
    height: 20px;
    background-position: -5px -5px;
}

.meta-icon-google-plus {
    width: 20px;
    height: 20px;
    background-position: -5px -35px;
}

.meta-icon-print {
    width: 20px;
    height: 20px;
    background-position: -5px -65px;
}

.meta-icon-twitter {
    width: 20px;
    height: 20px;
    background-position: -5px -95px;
}

.meta-icon-wordpress {
    width: 20px;
    height: 20px;
    background-position: -5px -125px;
}

.meta-icon-zoom-in {
    width: 20px;
    height: 20px;
    background-position: -5px -155px;
}

.meta-icon-zoom-out {
    width: 20px;
    height: 20px;
    background-position: -5px -185px;
}


.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

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

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
	font-size: 13px;
	font-size: 1.3rem;
}
.entry-summary {
	margin: 0.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.single .content-area .entry-meta {
	margin: 0.5em 0 0;
}
/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}
.content-area .comments-area li:before {
	content: none;
}
.comments-area .reply {
	text-align: right;
}
.comments-area .comment-meta a {
	color: #666;
}
.comment-list .comment-body {
	border-top: 1px solid #82aa05;
}
.children .comment-body {
	border-top: 1px solid #ccc;
}

#respond {
	background-color: #ddd;
	border-radius: 1em;
	padding: 1em;

}
#respond h3#reply-title {

}
#respond h3#reply-title #cancel-comment-reply-link {
	color: #8db21b;
}
#respond form {
}
#respond form p {
	margin: 0.5em 0; 
}
#respond form p.logged-in-as {
}
#respond form label {

}
#respond form input[type="text"],
#respond form textarea {
	width: 100%;
	background: #fff;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	outline: 0;
}
#respond form p.form-allowed-tags {
	color: #666666;
}
.required {
	color: red;
	float: right;
}


/*--------------------------------------------------------------
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%;
}

.recent-medias {
	display: table;
	border-collapse: collapse;
	width: 100%;
	text-align: left;
}

.recent-medias h3, .recent-medias li {
	display: inline;
	color: #FFF;
	font-weight: normal;
	text-align: left;
}
.first-media, .other-medias {
	display: table-cell;
	vertical-align: top;
	padding: 0.5em 0.5em 0 0.5em;
}
.first-media {
	width: 60%;
	vertical-align: middle;
	text-align: center;
}
.other-medias {
	width: 40%;
}
.media-left {
	text-align: left;
}
.media-center {
	text-align: center;
}
.media-middle {
	vertical-align: middle;
}
/*--------------------------------------------------------------
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;
	background-color: #eee;
}

.wp-caption .wp-caption-text {
	padding: 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%;
}

.gallery-caption {
	display: block;
	background-color: transparent;
	padding: 0.8075em 0;
}

/*--------------------------------------------------------------
     Helpers
--------------------------------------------------------------*/
.hidden {
	display: none;
}
/*--------------------------------------------------------------
	Header
--------------------------------------------------------------*/
.banner-area {
	text-align: center;
	background: -webkit-linear-gradient(#000000, #333333);
	background: -moz-linear-gradient(#000000, #333333);
	background: -o-linear-gradient(#000000, #333333);
	background: -ms-linear-gradient(#000000, #333333);
	background: linear-gradient(#000000, #333333);
	border-bottom: 9px solid #a5d004;
	line-height: 0;
}
.banner-area img {
	
}
.site-header {
	text-align: center;
	padding-bottom: 10px;
}

.site-branding {
 	position: relative;
 	margin: 0 auto;
}
.site-title {
	padding: 33px 0 0 0;
	margin: 0;

}
.site-header .sub-title {
	color: #b1b3b4;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 400;
}
.site-description {
	position: absolute;
	top: 22px;
	left: 0;
	color: #f1f1f1;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	font-family: Helvetica;
	padding-left: 20px;
}
.header-menu {
	position: absolute;
	right: 10px;
	top: 25px;
	color: #a5d004;
	font-size: 14px;
	font-size: 1.4rem;
}
.header-menu a {
	color: #a5d004;
}

.header-menu li {
	display: inline;
}

.header-menu li +li:before {
	content: " | ";
}
.header-form {
	position: absolute;
	right: 10px;
	top: 50px;
}

.header-form form {
	margin: 10px 0;
	width: 220px;
	position: relative;
}

.header-form input[type="text"]{
	background-color: #242424;
	border-radius: 0px;
	border: 1px solid #444;
	width: 100%;
	height: 27px;
	color: #fff;
}
.header-form .input-append {
	position: relative;
	color: #aaa;
}
.header-form .input-append .add-on{
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.4em;
}
/*--------------------------------------------------------------
	Layout
--------------------------------------------------------------*/
.main-navigation, .site-branding, .site-content, .partners, .site-footer {
	width: 960px;
	border-collapse: collapse;
}
.content-wrapper {
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-box-shadow:inset 0px 9px 0px 0px #a5d004;
	-moz-box-shadow:inset 0px 9px 0px 0px #a5d004;
	box-shadow:inset 0px 9px 0px 0px #a5d004;
}
.main-navigation, .site-content {
	background-color: #fff;
	margin: 0 auto;
	text-align: justify;
	-webkit-box-shadow: 5px 0px 20px 0px rgba(50, 50, 50, 1),-5px 0px 20px 0px rgba(50, 50, 50, 1);
	-moz-box-shadow:    5px 0px 20px 0px rgba(50, 50, 50, 1),-5px 0px 20px 0px rgba(50, 50, 50, 1);
	box-shadow:         5px 0px 20px 0px rgba(50, 50, 50, 1),-5px 0px 20px 0px rgba(50, 50, 50, 1);
 }
 .content-area {
  	padding: 0.6em 1.2em 1.2em;
  	border-right:2px solid #ccc;
  	width: 660px;
  	float: left;
 }
 .full-width {
 	width: 100% !important;
 	float: none;
 	border: none;
 }
  .podcast .site-content, .podcast .partners,
  .photo .site-content, .photo .partners,
  .media .site-content, .media .partners {
 	background-color: #000;
 }
 .podcast h1, .photo h1, .media h1 {
 	color: #fff;
 }
 .content-area li:before {
	content:'\25A0';
	position: relative;
	top:-0.1em;
	left:-1.5em;
	display: inline-block;
	line-height: 1;
	color: #82aa05;
}
.content-area li li:before {
	content:'\25A0';
	position: relative;
	top:-0.1em;
	left:-1.5em;
	display: inline-block;
	line-height: 1;
	color: #999;
}
/*.content-area #tribe-events li:before, .content-area #tribe-events li li:before {
	content: none !important;
}*/

 .widget-area {
 	width: 300px;
  	padding: 10px;
  	float: left;
  	border-left: 2px solid #ccc;
	margin-left: -2px;
 }

.widget-area ul {
	margin-left: 1.4em;
}
.widget-area li:before {
	content:'\25A0';
	position: relative;
	top:-0.1em;
	left:0;
	display: inline-block;
	line-height: 1;
	color: #82aa05;
}

.widget-area .author-link {
	text-align: right;
	margin-bottom: 1.5em;
}
.widget-area .author-link a {
	color: #8db21b;
	font-weight: 700;
}

.widget-area select {
	max-width: 100%;
}
.entry-footer {
	clear: both;
}

/*--------------------------------------------------------------
	404 Page
--------------------------------------------------------------*/
.error-404 .widget {
	float: left;
	width: 50%;
	padding: 1em;
}
.error-404 .widget a {
	color: #333;
}
/*--------------------------------------------------------------
	Search Results
--------------------------------------------------------------*/
.search-results {
}

.search-results .content-area .entry-title, .search-results .content-area .entry-title a {
	color:  #82aa05;
	font-size: 16px;
	font-size: 1.6rem;
}
.search-results .content-area .entry-title:before {
	content: none;
}
.search-results .page-header {
	margin-bottom: 1em;
}
.search-results .page-title {
	margin-left: 0.7em;
	padding: 0;
}

.search-results .entry-meta, .search-results .entry-meta a {
	color: #666;
	font-size: 14px;
	font-size: 1.4rem;
}

.search-results .entry-footer {
	text-align: right;
	color:  #333;
	margin-top: 0.5em;
}
.search-results .entry-footer a {
	text-align: right;
	color:  #333;
}
.search-results .today {
	background-color: #f8fbeb;
}
.search-results .content-area {
	padding-left:0;
	padding-right:0;
}
.search-results .content-area article:first-of-type {
	border-top: 1px solid #e4e4e4;
}
.search-results .content-area article {
	padding: 1em;
	border-bottom: 1px solid #e4e4e4;
}

/*--------------------------------------------------------------
	Archive (Category, Date)
--------------------------------------------------------------*/
.archive {
}

.archive .content-area .entry-title, .archive .content-area .entry-title a {
	color:  #82aa05;
	font-size: 16px;
	font-size: 1.6rem;
}
.archive .content-area .entry-title:before {
	content: none;
}
.archive .page-header {
	margin-bottom: 1em;
}
.archive .page-title {
	margin-left: 0.7em;
	padding: 0;
}

.archive .entry-meta, .archive .entry-meta a {
	color: #666;
	font-size: 14px;
	font-size: 1.4rem;
}

.archive .entry-footer {
	text-align: right;
	color:  #333;
	margin-top: 0.5em;
}
.archive .entry-footer a {
	text-align: right;
	color:  #333;
}
.archive .today {
	background-color: #f8fbeb;
}
.archive .content-area {
	padding-left:0;
	padding-right:0;
}
.archive .content-area article:first-of-type {
	border-top: 1px solid #e4e4e4;
}
.archive .content-area article {
	padding: 1em;
	border-bottom: 1px solid #e4e4e4;
}
.taxonomy-description {
	border: 1px solid #82aa05;
	border-radius: 5px;
	background-color: #f2f6e5;
	margin: 0 2em;
}
.taxonomy-description p {
	margin: 0.5em;

}
/*--------------------------------------------------------------
	Partners
--------------------------------------------------------------*/

.partners {
	margin:0 auto;
	background-color: #fff;
	position: relative;
}
.partners-title {
}
.partners h2 {
	color: #666;
	font-size: 16px;
	font-size: 1.6rem;
	background-color: #ccc;
	border-radius: 5px 5px 0px 0px;
	box-shadow: 0px -2px 3px 0px rgba(0, 1, 1, 0.5);
	margin-left: 26px;
	display: inline;
	padding: 5px 10px;
}
.partners-menu {
	padding:0;
	margin: 0;
	background: -webkit-linear-gradient(#ccc, #999);
	background: -moz-linear-gradient(#ccc, #999);
	background: -o-linear-gradient(#ccc, #999);
	background: -ms-linear-gradient(#ccc, #999);
	background: linear-gradient(#ccc, #999);
}
.carrousel {
	padding: 10px 30px;
	position: relative;
}
.partners-menu ul.slides {
	margin: 0;
	width: 900px;
	height:50px;
}
.partners-menu ul.slides li {
	display: inline;
	margin: 0px;
	text-align: center;
}
.partners-menu .slides a{
 	height: 50px;
 	display: inline-block;
 	background-image: url(img/sprite-partners.png);
    background-repeat: no-repeat;
    background-position: -5px -5px;
    text-indent: -999em;
}

.partners-menu .slides li.canalb a {
    width: 87px;
    height: 50px;
    background-position: -5px -65px;
}

.partners-menu .slides li.deambulationsrennaises a {
    width: 78px;
    height: 50px;
    background-position: -5px -125px;
}

.partners-menu .slides li.derrierelafenetre a {
    width: 36px;
    height: 50px;
    background-position: -5px -185px;
}

.partners-menu .slides li.electronik a {
    width: 41px;
    height: 50px;
    background-position: -5px -245px;
}

.partners-menu .slides li.expotempo a {
    width: 53px;
    height: 50px;
    background-position: -5px -305px;
}

.partners-menu .slides li.jardinmoderne a {
    width: 50px;
    height: 50px;
    background-position: -5px -365px;
}

.partners-menu .slides li.mjcantipode a {
    width: 140px;
    height: 50px;
    background-position: -5px -425px;
}

.partners-menu .slides li.mondobizarro a {
    width: 82px;
    height: 50px;
    background-position: -5px -485px;
}

.partners-menu .slides li.popisonfire a {
    width: 40px;
    height: 50px;
    background-position: -5px -545px;
}

.partners-menu .slides li.clab a {
    width: 50px;
    height: 50px;
    background-position: -5px -605px;
}

.partners-menu .slides li.ubu a {
    width: 74px;
    height: 50px;
    background-position: -5px -665px;
}

.flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

.flex-direction-nav a {
	position: absolute;
	cursor: pointer;
	font-size: 45px;
	font-size: 4.5rem;
	top: 0;
	text-decoration: none;
	color: #e1e1e1;

}
.flex-direction-nav a:before {
	margin: 0;
	width: auto;

}
.flex-direction-nav .flex-next {
	right: 8px;
}
.flex-direction-nav .flex-prev {
	left: 8px;
}

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

.site-footer {
	margin:0 auto;
	padding: 10px;
	color: #aaa;
}
.site-footer ul {
	margin: 0;
}


.footer-wrapper {
	border-top: 9px solid #a5d004;
	background: url('img/footer-image.png') no-repeat center bottom;
	background: url('img/footer-image.png') no-repeat centeredter bottom, -webkit-linear-gradient(#222,#000);
	background: url('img/footer-image.png') no-repeat center bottom, linear-gradient(#222,#000);

 }
.footer-navigation {
	width: 720px;
	vertical-align: top;
	display: table-cell;
}
 .footer-menu ul {
 	width: 134px;
 	display: table-cell;
 	vertical-align: top;
 }
 .footer-menu>ul {
 	padding: 10px;
 }

 .footer-menu ul >li {
 	font-weight: 700;
 }
 .footer-menu ul > li li {
 	font-weight: normal;
 }

.footer-menu>ul>li> a:after {
	content: "";
	height: 2px;
	background-color: #090909;
	border-bottom: 1px solid #333;
	display: block;
}

 .footer-menu a {
 	color: #aaa;
 	text-decoration: none;
 }
 .footer-menu a:hover {
	text-decoration: underline;
 }
 
 .footer-social {
 	clear: both;
 	text-align: center;
 	
 }
 .footer-social {
 	padding: 10px;
 }
 .footer-social li {
 	display: inline;
 	padding: 5px;
 	transition: opacity 0.5s ease;
 }
 .footer-social li:hover {
 	opacity: 0.5;
}
 .footer-social a {
 	width: 44px;
 	height: 44px;
 	display: inline-block;
 	background-image: url(img/sprite-social.png);
    background-repeat: no-repeat;
    background-position: -5px -5px;
    text-indent: -999em;
 }

li.dailymotion a {
    background-position: -5px -59px;
}
li.facebook a {
    background-position: -5px -113px;
}
li.flickr a {
    background-position: -5px -165px;
}
li.myspace a {
    background-position: -5px -219px;
}
li.twitter a {
    background-position: -5px -272px;
}

.footer-sidebar {
	vertical-align: top;
	display: table-cell;
}
.footer-sidebar h2 {
	font-size: 14px;
	font-size: 1.4rem;
	color: #fff;
	font-weight: normal;
}

.footer-sidebar .newsletter .icon-mail-alt:before {
	color:#aaa;
	font-size: 1.5em;
	margin-left: 0;
}

.footer-sidebar form {
	margin: 10px 0;
}

.footer-sidebar input[type="text"]{
	background-color: #242424;
	border-radius: 0px;
	border: 1px solid #444;
	width: 100%;
	height: 27px;
	color: #fff;
}
.footer-sidebar .searchbottom .input-append {
	position: relative;

}
.footer-sidebar .searchbottom .input-append .add-on{
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.4em;
}


.site-info {
	color: #fff;
	border-top: 2px solid #222;
	padding:10px 0 0 10px;
	clear: both;
}
.site-info a {
	color: #fff;
	text-decoration: none;
}
.site-info a:hover {
	text-decoration: underline;
}
/* Mailerlite */
.mailerlite-form .mailerlite-form-title {display:none;} /* the form title */
.mailerlite-form .mailerlite-form-description {display:none;} /* the form description */
.mailerlite-form .mailerlite-form-field label {display:none;} /* the form input label */
.mailerlite-form .mailerlite-form-field input {background-color: #242424;border-radius: 0px;border: 1px solid #444;width: 100%;height: 27px;color: #fff;} /* the form inputs */
.mailerlite-form .mailerlite-form-loader {} /* the form loading text */
.mailerlite-form .mailerlite-subscribe-button-container {text-align: left;} /* the form button container */
.mailerlite-form .mailerlite-subscribe-button-container .mailerlite-subscribe-submit {} /* the form submit button */
.mailerlite-form .mailerlite-form-response {} /* the form response message */

/*--------------------------------------------------------------
	Icon Font
--------------------------------------------------------------*/
@font-face {
  font-family: 'fontello';
  src: url('./font/fontello.eot?56965396');
  src: url('./font/fontello.eot?56965396#iefix') format('embedded-opentype'),
       url('./font/fontello.woff?56965396') format('woff'),
       url('./font/fontello.ttf?56965396') format('truetype'),
       url('./font/fontello.svg?56965396#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?56965396#fontello') format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
 
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
     
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-twitter:before { content: '\e800'; } /* '' */
.icon-facebook:before { content: '\e801'; } /* '' */
.icon-gplus:before { content: '\e802'; } /* '' */
.icon-mail-alt:before { content: '\e803'; } /* '' */
.icon-comment:before { content: '\e804'; } /* '' */
.icon-print:before { content: '\e805'; } /* '' */
.icon-resize-full:before { content: '\e806'; } /* '' */
.icon-resize-small:before { content: '\e807'; } /* '' */
.icon-search:before { content: '\e808'; } /* '' */
.icon-home:before { content: '\e809'; } /* '' */
.icon-angle-right:before { content: '\e80a'; } /* '' */
.icon-right-open:before { content: '\e80b'; } /* '' */
.icon-left-dir:before { content: '\e80c'; } /* '' */
.icon-right-dir:before { content: '\e80d'; } /* '' */
.icon-angle-circled-up:before { content: '\e80e'; } /* '' */
.icon-angle-down:before { content: '\e80f'; } /* '' */
.icon-tabbed:before { content: '\e810'; } /* '' */
.icon-down-open:before { content: '\e811'; } /* '' */
.icon-cancel-circled:before { content: '\e812'; } /* '' */
.icon-tag:before { content: '\e813'; } /* '' */
.icon-tags:before { content: '\e814'; } /* '' */
.icon-folder-open:before { content: '\e815'; } /* '' */
.icon-menu:before { content: '\e816'; } /* '' */

/*--------------------------------------------------------------
	Icon Font Custom
--------------------------------------------------------------*/
.flex-prev:before, .flex-next:before, .main-navigation .submenu:before, .category-title:before, .page-title:before, .widget-area .tabbed-title:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); 
}
.flex-next:before { content: '\e80d'; } /* '' */
.flex-prev:before { content: '\e80c'; } /* '' */
.main-navigation .submenu:before { content: '\e80f'; } /* '' */
.category-title:before, .page-title:before {
	content: '\e810';
	color: #a5d004;
	font-size: 180%;
	margin-left: -0.7em;
}

.widget-area .tabbed-title:before {
	content: '\e810';
	color: #a5d004;
	font-size: 180%;
	margin-left: -0.7em;
}

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

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding-top: 1em;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container a:hover {
  text-decoration: none;
}
.chosen-container li:before {
	content: none;
}
/* @end */

/* @group Results */
.chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none;
  color: #060606;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  background: #cccccc;
  background: -webkit-linear-gradient(#999999, #cccccc);
  background: -moz-linear-gradient(#999999, #cccccc);
  background: -o-linear-gradient(#999999, #cccccc);
  background: -ms-linear-gradient(#999999, #cccccc);
  background: linear-gradient(#999999, #cccccc);
  color: #060606;
}
.chosen-container .chosen-results li.no-results {
  display: list-item;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #ccc;
  background: #cccccc;
  background: -webkit-linear-gradient(#999999, #cccccc);
  background: -moz-linear-gradient(#999999, #cccccc);
  background: -o-linear-gradient(#999999, #cccccc);
  background: -ms-linear-gradient(#999999, #cccccc);
  background: linear-gradient(#999999, #cccccc);
  cursor: text;
  border-radius: 5px;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 3px;
  height: 20px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-multi .chosen-choices li.search-field .default {
  color: #999;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px;
  padding: 3px 3px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before {
	font-family: "fontello";
	content: '\e812';
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: .2em;
	text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); 
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  color: #666;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.search-button {
	margin: 1em;
}

/*--------------------------------------------------------------
	RWD Design
--------------------------------------------------------------*/

.menu-toggle, .jump-search {
	display: none;
}

@media (max-width: 480px) {
	.site-title {padding-top:3px;}
	.main-navigation, .site-branding, .site-content, .partners, .site-footer {
		width: auto;
	}
	.slider-thumb {float: none;/*width: auto;*/display: block;padding:0;margin: 0 auto;}
	.slider-area {max-height: 100%;background-size: cover;}
	.slider-title {padding-top: 0.5em;padding-right: 1em;}
	.slider-content {margin-bottom: 0.5em;padding-right: 1em;}
	/*.flex-control-nav {top: 2em;bottom: inherit;}*/
	.header-menu {display: block;position: inherit;top: auto;right: auto;}
	.header-menu ul {margin: 0;}
	.site-description {display: none;}
	.header-form {display: none;}
	.sub-title {display: none;}

	.content-area {display: block;width: auto;float: none;border: none;}
	.widget-area {display: block;width: auto;}
	.back-top {font-size: 3em;}
	.site-footer {width: auto;}
	.footer-navigation {display:block;width: auto;}
	.footer-menu>ul {width: 50%;display: block;float: left;}
	.footer-sidebar {display: block;width: auto;}

	.recent-albums {display: block;width: auto;}
	.first-album, .other-albums {display: block;width: auto;}
}

@media (min-width: 480px) and (max-width: 768px) {
	.site-title {padding-top:3px;}
	.main-navigation, .site-branding, .site-content, .partners, .site-footer {
		width: auto;
	}
	.slider-title {padding-top: 0.5em;padding-right: 0.5em;}
	.slider-content {margin-bottom: 0.5em;padding-right: 0.5em;}
	.slider-thumb {width: 50%;}
	.slider-area {max-height: 100%;}
	/*.flex-control-nav {top: 2em;bottom: inherit;}*/
	.header-menu {display: block;position: inherit;top: auto;right: auto;}
	.header-menu ul {margin: 0;}
	.site-description {display: none;}
	.header-form {display: none;}
	.sub-title {display: none;}
	
	.content-area {display: block;width: auto;float: none;border: none;}
	.widget-area {display: block;width: auto;float: none;}
	.back-top {font-size: 3em;}
	.site-footer {width: auto;}
	.footer-navigation {width: 70%;}
	.footer-menu>ul {width: 33%;display: block;float: left;}
	.footer-sidebar {width: 30%;}
}
@media (min-width: 768px) and (max-width: 980px) {

	.main-navigation, .site-branding, .site-content, .partners, .site-footer {
		width: auto;
	}
	.slider-thumb {width: 50%;}
	.content-area {width: 66%}
	/*.flex-control-nav {top: 2em;bottom: inherit;}*/
	.widget-area {width: 33%;}
	.back-top {font-size: 4em;}
	.site-footer {width: auto;}
	.footer-navigation {width: 70%;}
	.footer-menu>ul {width: 33%;display: block;float: left;}
	.footer-sidebar {width: 30%;}

}

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

	.main-navigation {
		clear: both;
		display: block;
		margin: 0 auto;
		height: auto;
		text-align: center;
	}
	.main-navigation li.home a:before {
		margin: 0;
		font-size: 100%;
	}
	.main-navigation .submenu {
		display: none;
	}
	.main-navigation ul li a {
		display: inline;
		white-space: nowrap;
		border: none;
	}
	.main-navigation li {
		float: none;
		display: inline;
		border: none;
		line-height: 3em;
	}

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

	.main-navigation ul li:hover > ul {
		display: none;
	}
	.main-navigation ul ul ul {
		display: none;
	}
	.main-navigation ul li.has-sub:hover > a {
		border: none;
		background-color: transparent;
	}
}

#lightbox {
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0; 
	left:0;
	padding-top:20px;
    width:100%; 
    height:100%; 
    background: rgba(0,0,0,.7);
	text-align:center;
	z-index:150;
}
#lightbox img {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* TEST The Events Calendar */
.tribe-common button, .tribe-common button:focus, .tribe-common button:hover, .tribe-theme-twentyseventeen .tribe-common button:focus, .tribe-theme-twentyseventeen .tribe-common button:hover {
	background: none;
}


/* 
 TEST FESTIVALS
*/
.grid figure {
	position: relative;
}
.grid figure figcaption {
	position: absolute;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}
.grid figure:hover img {
  	transform: scale(0.4);
}
.grid figure:hover figcaption {
	opacity: 1;
}