@charset "utf-8";
/*
Theme Name: Le Republique
Theme URI: 
Description: 
Version: 1.0
Author: Olivier PASQUINI
Author URI: http://devtype.fr
Tags: 
*/

/*-- RESET ALL --*/
html,body,div,span,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,img,ins,kbd,q,s,samp,small,strike,strong,em,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,canvas,button,article,aside,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { margin: 0; padding: 0; border: none; outline: none; font-size: 100%; font-weight: normal; font-style: normal; vertical-align: baseline; background: transparent; }
h1,h2,h3,h4,h5,h6 { clear: both; }
input,textarea,select { margin:0; padding:0; border:none; }
ol,ul { list-style: none; }
a,a:hover,a:active,a:link,a:visited { text-decoration: none; outline: none;}
blockquote, q { quotes: none; }
blockquote:before,blockquote:after,q:before,q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption,th,td { font-weight: normal; text-align: left; }
strong, strong em { font-weight: bold; }
em,em strong { font-style: italic; }
del { text-decoration: line-through; }
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {display: block;}
audio,canvas,video {display: inline-block;}

@font-face {
    font-family: 'Bitter';
    src: url('./fonts/bitter-regular.eot');
    src: url('./fonts/bitter-regular.eot?#iefix') format('embedded-opentype'),
         url('./fonts/bitter-regular.woff') format('woff'),
         url('./fonts/bitter-regular.ttf') format('truetype'),
         url('./fonts/bitter-regular.svg#bitterregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bitter-bold';
    src: url('./fonts/bitter-bold.eot');
    src: url('./fonts/bitter-bold.eot?#iefix') format('embedded-opentype'),
         url('./fonts/bitter-bold.woff') format('woff'),
         url('./fonts/bitter-bold.ttf') format('truetype'),
         url('./fonts/bitter-bold.svg#bitterbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*-- GLOBAL --*/
html {
	font-size: 100%;
}

body {
	background-color: #000000;
	font: normal 13px/1 Bitter, Georgia, "Times New Roman", Times, serif;
	color: #FFF;
}

.clear {
	clear: both;
	visibility: hidden;
	font-size: 0px;
	height: 0px;
	overflow: hidden;
}

a {
	color: #FFF;
	transition: color 500ms;
	-moz-transition: color 500ms;
	-webkit-transition: color 500ms;
	-o-transition: color 500ms;
}

/*-- FORM ELEMENTS --*/
form {
	position: relative;
}

.form-input {
	margin-bottom: 1em;
	position: relative;
}

.input-error {
	font-size: 1em;
	background-color: #c6401c;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	padding: 0.5em 0.8em;
	margin: -0.2em 0 0 1em;
	color: #fff;
	border-radius: 0.2em;
	box-shadow: 1px 1px 2px 0px #aaa;
}

.input-error:before {
	content: "";
	border: solid 0px transparent;
	border-right-color: #c6401c;
	border-width: 0.5em 0.6em 0.5em 0;
	height: 0;
	width: 0;
	position: absolute;
	left: -0.5em;
	top: 0.5em;
}

label {
	font: normal 13px Bitter, Georgia, "Times New Roman", Times, serif;
	color: #808080;
	display: inline-block;
	padding: 6px 8px;
	vertical-align: top;
}

input[type="hidden"] {display: none;}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="color"],
input[type="time"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
input[type="number"],
input[type="range"],
input[type="search"],
textarea,
select {
	background: #FFF;
	border: 1px solid #808080;
	font: normal 12px Bitter, Georgia, "Times New Roman", Times, serif;
	color: #B7B7B7;
	padding: 6px 8px;
	width: 270px;
	max-width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

select {
	width: auto;
}

textarea {
	resize: none;
}

input[type="radio"],
input[type="checkbox"] {
	vertical-align: baseline;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	-webkit-appearance: button;
	background-color: #be2026;
	border: 0 none;
	font: normal 18px Bitter-bold, Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
	color: #FFF;
	cursor: pointer;
	padding: 2px 10px;
	margin-left: 3px;
	vertical-align: top;
}

input,
textarea {
	background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input:focus,
textarea:focus,
select:focus {
	color: #000;
}

/* Ajax events */
.ajax-loading {
	background: url(./img/loader_15_black.gif) center no-repeat;
	width: 15px;
	height: 15px;
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	display: none;
}

/*-- MESSAGES --*/
.warning,
.message,
.ajax-response {
	background-color: #FFF;
	display: block;
	padding: 12px;
	margin: 10px 0 15px;
	color: #666;
}

.warning,
.ajax-error {
	border-left: 4px solid #DD2B2E;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.message,
.ajax-success {
	border-left: 4px solid #7AD03A;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/*-- DATE/TIME PICKERS --*/
.ui-widget select {
	color: #333;
	background: #fff;
	float: none;
	padding: 0px;
	border: 1px solid #ddd;
}

/*-- POPUP --*/
#bgOverlay {
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

#popupLoad {
	background: url(./img/loader_50_black.gif) center no-repeat;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	position: absolute;
	left: 50%;
	z-index: 10;
}

.popup {
	position: absolute;
	z-index: 15;
	max-width: 100%;
}

.popup .popup-wrap {
	background: #fff;
	position: relative;
	margin: 20px;
}

.close-popup {
	background: url(img/close-popup.png) center no-repeat;
	width: 34px;
	height: 32px;
	position: absolute;
	right: -14px;
	top: -13px;
	z-index: 20;
}

.popup .pop-in {
	padding: 1em;
}

.popup .pop-title {
	font-size: 2em;
}

/*-- Load on Scroll --*/
.loadMore {
	overflow: hidden;
	clear: both;
	margin: 0.8em auto;
}

.loadOnScroll.loading div {
	background: url(./img/loader_15_black.gif) 50% 0 no-repeat;
	width: 32px;
	height: 32px;
	margin: 0 auto;
}

.loadOnClick {
	text-align: center;
	padding: 0.8em;
	color: #FFF;
	cursor: pointer;
}

.loadOnClick div {
	background: url(./img/btn-load-more.png) 50% 100% no-repeat;
	display: inline-block;
	padding-bottom: 50px;
	text-transform: uppercase;
	font-style: italic;
}

.loadOnClick.loading div {
	background: url(./img/loader_15_black.gif) 50% 50% no-repeat;
}

/*-- Back to Top --*/
.scrollAnchor.assistive {
	position: absolute;
	width: 0px;
	height: 0px;
	overflow: hidden;
	visibility: hidden;
	line-height: 0;
	clip: rect(1px, 1px, 1px, 1px);
}

#scrollToAnchors {
	display: block;
	position: fixed;
	right: 10px;
	bottom: 10px;
	font: normal 1em/1 Arial, Helvetica, sans-serif;
	color: #FFF;
	text-transform: uppercase;
}

.scrollToAnchorsWrap {
	background: #333;
	padding: 0.6em;
	border-radius: 5px;
	opacity: 0.8;
}

.scrollToItem {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.5em;
	vertical-align: middle;
}

/*-- Assistive text --*/
.assistive-text,
.screen-reader-text {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
}

/*-- SITE --*/
#page {
	min-width: 950px;
}

.wrapper,
#footer {
	width: 950px;
	margin: 0 auto;
}

/*-- HEADER --*/
#header {
	background: url(./img/bg-header.png) center 0 no-repeat;
	height: 190px;
	padding-top: 40px;
	overflow: hidden;
}

#header .wrapper {
	position: relative;
}

h1.site-title {
}

h2.site-description {
	display: none;
}

.home #header {
	background: url(./img/bg-header-home.png) center 0 no-repeat;
	height: 230px;
}

/* Search form */
#header .search-form {
	margin-top: 10px;
}

.search-form .search-submit {
	background: url(./img/search.jpg) center center no-repeat;
	width: 40px;
}

/* Menu */
#top-menu {
	position: absolute;
	z-index: 1;
	right: -81px;
	top: -10px;
	width: 450px;
}

#top-menu ul {
	font: normal bold 18px/1 Bitter-bold;
	text-transform: uppercase;
	width: 100%;
}

#top-menu ul li {
	float: left;
	display: block;
	width: 50%;
}

#top-menu ul li.el1 {
	width: 36%;
}

#top-menu ul li.el2 {
	width: 43%;
}

#top-menu li a {
	color: #be2026;
	border-bottom: 1px solid #FFF;
	display: block;
	width: 80%;
	padding: 30px 0 5px;
}

#top-menu li.current-menu-item a,
#top-menu li.current-post-ancestor a,
#top-menu li.current-category-ancestor a,
#top-menu li a:hover {
	color: #FFF;
}

/* Header messages */
#header .message,
#header .warning {
	position: absolute;
	top: 0;
	right: 15px;
}

/*-- BREADCRUMB --*/
.breadcrumb {
	margin-top: -6px;
}

.breadcrumb-lines {
	background: url(./img/bread-lines.png) center center repeat-x;
	height: 12px;
}

.breadcrumb .wrapper {
	padding: 15px 0;
}

.breadcrumb span a {
	color: #FFF;
}

.breadcrumb span a {
	color: #FFF;
}

.breadcrumb span span,
.breadcrumb span a:hover {
	color: #be2026;
}

/*-- CONTENT --*/
#content {
	padding-top: 40px;
}

#content.dateLoading {
	background: url(./img/loader_50_black.gif) center no-repeat;
	height: 400px;
	overflow: hidden;
}

/*-- HOME --*/
.home #main {
	background: url(./img/bg-home.jpg) 0 0 repeat-x;
}

.home #content {
	padding-top: 25px;
}

/* Slider */
#home-slider {
	position: relative;
	height: 550px;
	overflow: hidden;
}

#home-programs {
	border: 1px solid #be2026;
}

#home-programs .home-image {
	width: 240px;
	height: 310px;
	float: left;
	overflow: hidden;
	text-align: center;
	font-style: italic;
}

#home-programs .home-image img {
	display: block;
	width: 100%;
	height: auto;
}

#home-programs .home-image span {
	font-style: italic;
}

/* Programmation home */
#home-programs .home-calendar {
	width: 350px;
	float: left;
}

.home-calendar .program-calendar {
	height: 300px;
}

#home-programs .home-programs-list {
	width: 330px;
	height: 275px;
	margin: 20px 10px 0 0;
	float: right;
	overflow: auto;
}

#home-programs .home-programs-list.dateLoading {
	background: url(./img/loader_50_black.gif) center no-repeat;
}

.home-programs-list .archive-entry {
	float: none;
	width: auto;
	height: auto;
	margin: 0 20px 15px 0;
	padding-bottom: 15px;
	border-bottom: 1px dotted #666;
}

.home-programs-list .archive-entry:last-child {
	border-bottom: 0 none;
}

.home-programs-list .archive-entry .sub-title {
	border: 0 none;
	padding: 0 0 5px 0;
	margin: 0;
}

.home-programs-list .archive-entry .entry-header .entry-title {
	font-size: 18px;
	overflow: inherit;
	white-space: normal;
}

.home-programs-list .archive-entry.has_post_thumb .entry-top {
	float: left;
}

.home-programs-list .archive-entry.has_post_thumb .entry-self {
	float: right;
	width: 220px;
}

/* Pushs */
#home-pushs {
	overflow: hidden;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #be2026;
}

#home-pushs .push {
	overflow: hidden;
	position: relative;
}

#home-pushs .push span.text {
	position: absolute;
	z-index: 1;
	left: 0;
	background-color: #be2026;
	font-size: 16px;
	line-height: 1.45;
	text-transform: uppercase;
	display: inline-block;
	padding: 10px;
}

#home-pushs .push span.text strong {
	font-family: Bitter-bold;
	font-weight: normal;
}

#home-pushs .push-left span.text {
	top: 37%;
	text-align: center;
}

#home-pushs .push-right span.text {
	top: 42%;
	padding-top: 2px;
	padding-bottom: 4px;
	text-shadow: 2px 3px 1px #000;
}

#home-pushs .push img {
	display: block;
	width: 100%;
	height: auto;
}

#home-pushs .push-left {
	float: left;
	width: 390px;
	height: 320px;
}

#home-pushs .push-right {
	float: right;
}

#home-pushs .push-right .push {
	width: 550px;
	height: 155px;
}

#home-pushs .push-right .push-2 {
	margin-bottom: 10px;
}

/*-- SINGLES / PAGES --*/
.single-content,
.page-content {
}

.single-content .entry-header,
.page-content .entry-header {
}

.single-content .entry-header .entry-title,
.page-content .entry-header .entry-title,
#sidebar.sidbar-theatre .sidebar-title {
	font: normal 30px/1 Bitter-bold;
	color: #be2026;
	margin-bottom: 1em;
}

.single-content .content,
.page-content .content {
	font-size: 16px;
	line-height: 1.5;
}

/*-- Theatre / Contact --*/
.page-content-theatre {
	float: left;
	width: 55%;
}

.page-content-contact {
	float: left;
	width: 30%;
}

#sidebar.sidbar-theatre {
	padding-top: 40px;
}

#contact-map {
	float: right;
	width: 60%;
	height: 350px;
	margin: 40px 0 20px;
}

#sidebar.sidbar-theatre .sidebar-title,
.page-content-contact .entry-header .entry-title {
	color: #FFF;
}

.resa-metas {
	font-size: 16px;
	line-height: normal;
	text-transform: uppercase;
}

.resa-metas span {
	font-family: Bitter-bold;
	color: #be2026;
}

.resa-metas span.big {
	font-size: 30px;
	color: #FFF;
}

#sidebar.sidbar-theatre .gmap {
	width: 100%;
	height: 300px;
}

.btn-white {
	background: #FFF;
	font-family: Bitter-bold;
	color: #000;
	display: inline-block;
	padding: 0.1em 0.3em;
	text-transform: uppercase;
}


/*-- Single Programmation --*/
.single-program .entry-header {
	border-bottom: 1px solid #FFF;
	padding-bottom: 45px;
	margin-bottom: 45px;
}

.entry-title-meta {
	position: relative;
	text-transform: uppercase;
}

.single-content.single-content-programmation .entry-header .entry-title,
.entry-title-meta .entry-title {
	font: normal 26px/1 Bitter-bold;
	color: #FFF;
	margin-bottom: 8px;
	padding-right: 130px;
}

.entry-title-meta .sub-title {
	color: #be2026;
	font-weight: bold;
}

.share-it {
	background-image: url(./img/icon-share.png);
	background-repeat: no-repeat;
	color: #FFF;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	top: 0;
	display: block;
}

.single-share-it {
	background-position: 0 50%;
	padding: 10px 0 10px 40px;
}

.has_post_thumb .entry-header .thumbnail {
	float: left;
}

.has_post_thumb .entry-title-meta {
	float: right;
	width: 710px;
}

.entry-title-meta .program-metas {
	border-top: 1px solid #be2026;
	font-family: Bitter-bold;
	line-height: 1.5;
	margin-top: 15px;
	padding-top: 15px;
}

.entry-title-meta .program-metas span {
	color: #be2026;
}

.entry-title-meta .program-metas small {
	font-family: Bitter;
	text-transform: none;
}

.btn-buy {
	background-color: #be2026;
	color: #FFF;
	font: normal 26px/1 Bitter-bold;
	text-transform: uppercase;
	display: inline-block;
	padding: 0.3em 0.5em;
}

/* tabs */
.prog-tabs {
	text-align: center;
	margin-bottom: 50px;
}

.prog-tabs span {
	background-color: #FFF;
	color: #000;
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	position: relative;
	padding: 10px;
	width: 210px;
	cursor: pointer;
	margin: 0 4px;
	transition: color 300ms, background-color 300ms;
	-moz-transition: color 300ms, background-color 300ms;
	-webkit-transition: color 300ms, background-color 300ms;
	-o-transition: color color 300ms, background-color 300ms;
}

.prog-tabs span.active,
.prog-tabs span:hover {
	background-color: #be2026;
	color: #FFF;
	font-family: Bitter-bold;
}

.prog-tabs span.active:after {
	content: "";
	border: solid 0px transparent;
	border-top-color: #be2026;
	border-width: 10px 10px 0 10px;
	height: 0;
	width: 0;
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
}

.jTab {
	display: none;
}

.jTab.active {
	display: block;
}

/* the content */
.single-content-programmation .content {
	font-size: 18px;
	line-height: 1.8;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
	font-family: Bitter-bold;
	margin-bottom: 0.6em;
}

.content h1 {
	font-size: 38px;
}

.content h2 {
	font-size: 36px;
}

.content h3 {
	font-size: 32px;
}

.content h4 {
	font-size: 28px;
}

.content h5 {
	font-size: 24px;
}

.content h6 {
	font-size: 20px;
}

.content p {
	margin-bottom: 1.8em;
}

.content a {
	color: #be2026;
}

.content a:hover {
	text-decoration: underline;
}

.content blockquote {
	font-size: 200%;
	line-height: 1.2;
}

.content ul,
.content ol {
	margin: 0.5em 1em 1.8em 2.5em;
}

.content ul {
	list-style: outside;
}

.content ol {
	list-style: decimal;
}

/*-- ALIGN --*/
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin: 0 auto 10px auto;
}

.alignnone {
	float: none;
	clear: both;
}

/* IMG */
img.alignleft {
	margin: 12px 24px 12px 0;
}

img.alignright {
	margin: 12px 0 12px 24px;
}

img.aligncenter {
	margin-top: 12px;
	margin-bottom: 12px;
}

.wp-caption {
	font-size: 13px;
	text-align: center;
}

/*-- COMMENTS --*/
#comments-rating {
	margin-bottom: 40px;
}

#comments-rating h6 {
	font: normal 26px Bitter-bold;
	margin-bottom: 10px;
}

#rate-detail {
	float: left;
	padding-right: 30px;
}

.comments-number {
	font-family: Bitter-bold;
	text-transform: uppercase;
	display: inline-block;
	margin: 19px 0 0 5px;
}

#rate-number {
	width: 520px;
	float: left;
	border-left: 1px solid #808080;
	margin-top: 15px;
	padding-left: 30px;
}

.rate-node {
	width: 160px;
	display: inline-block;
	font-family: Bitter-bold;
	text-transform: uppercase;
}

.rate-node .rate-square {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	margin-right: 10px;
}

.rate-1 .rate-square {
	background-color: #7b050a;
}

.rate-2 .rate-square {
	background-color: #9b0c12;
}

.rate-3 .rate-square {
	background-color: #bc1f25;
}

.rate-4 .rate-square {
	background-color: #d93137;
}

.rate-5 .rate-square {
	background-color: #f52229;
}

.rate-1,
.rate-2,
.rate-3 {
	margin-bottom: 30px;
}

.write-comment {
	text-align: center;
	margin-bottom: 20px;
}

.write-comment a {
	background: #FFF;
	color: #000;
	display: inline-block;
	font-size: 26px;
	padding: 0.3em 0.5em;
	text-transform: uppercase;
	position: relative;
}

.write-comment a.active {
	background-color: #be2026;
	color: #FFF;
	font-family: Bitter-bold;
}

.write-comment a.active:after {
	content: "";
	border: solid 0px transparent;
	border-top-color: #be2026;
	border-width: 10px 10px 0 10px;
	height: 0;
	width: 0;
	position: absolute;
	left: 50%;
	bottom: -10px;
	margin-left: -10px;
}

.nocomments {
	margin-bottom: 20px;
}

.commentlist {
	margin-top: 50px;
}

.comment {
	display: block;
	padding: 15px 0;
	border-top: 1px solid #808080;
}

.comment .comment-author-infos {
	width: 29%;
	float: left;
	padding: 5px 20px 10px;
	word-wrap: break-word;
}

.comment .comment-author-infos .stars-wrapper {
	display: block;
	margin-left: -5px;
}

.comment .comment-title {
	font-weight: bold;
}

.comment .comment-text {
	border-left: 1px solid #808080;
	float: left;
	min-height: 55px;
	padding: 10px 0 10px 30px;
	width: 58%;
}

.comment-nav-below {
}

.comment-nav-below .nav-previous {
}

.comment-nav-below .nav-next {
}

.edit-link {
	text-align: right;
	padding-top: 15px;
}

.edit-link a {
	color: #be2026;
}

#respond {
	display: none;
	padding-top: 10px;
}

#reply-header {
	text-align: center;
	margin-bottom: 40px;
	border-bottom: 1px solid #808080;
    padding-bottom: 20px;
}

#reply-header .stars-wrapper {
	display: inline-block;
}

#commentform {
}

.form-line .form-input {
	width: 380px;
	float: left;
	margin-right: 30px;
}

#commentform label {
	text-align: right;
	padding: 0 10px 2px 0;
	width: 150px;
	vertical-align: middle;
}

#commentform input[type="text"],
#commentform input[type="email"],
select {
	width: 200px;
}

#commentform textarea {
	vertical-align: top;
	width: 400px;
}

#commentform input[type="submit"] {
	vertical-align: bottom;
}

/* Gallery */
.gallery-wrapper {
	overflow: hidden;
}

.gallery-viewer-wrapper {
	position: relative;
	margin-bottom: 40px;
	overflow: hidden;
}

.gallery-viewer-wrapper .gallery-viewer {
	width: 710px;
	margin: 0 auto;
	overflow: hidden;
}

.gallery-viewer-wrapper .gallery-viewer img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 480px;
	margin: 0 auto;
}

.gallery-viewer-wrapper .gallery-viewer iframe {
	display: block;
	width: 100%;
	height: 400px;
}

.gallery-viewer-wrapper .gallery-prev,
.gallery-viewer-wrapper .gallery-next {
	width: 100px;
	height: 80px;
	position: absolute;
	top: 50%;
	margin-top: -40px;
	cursor: pointer;
}

.gallery-viewer-wrapper .gallery-prev {
	background: url(./img/gallery-prev.png) center no-repeat;
	left: 0;
}

.gallery-viewer-wrapper .gallery-next {
	background: url(./img/gallery-next.png) center no-repeat;
	right: 0;
}

.gallery-viewer-wrapper .gallery-loader {
	background: #000 url(./img/loader_50_black.gif) center no-repeat;
	width: 80px;
	height: 80px;
	border: 1px solid #666;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -40px 0 0 -40px;
	border-radius: 5px;
	display: none;
}

.gallery-wrapper.loading .gallery-viewer-wrapper .gallery-loader {
	display: block;
}

.gallery-thumbnails {
}

.gallery-thumbnails .gallery-column {
	white-space: nowrap;
}

.gallery-thumbnails .gallery-item {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.gallery-thumbnails .gallery-item img {
	margin: 0 4px 0 3px;
}

.gallery-thumbnails .gallery-item.gallery-item-video span {
	background: url(./img/play.png) center no-repeat;
	width: 45px;
	height: 55px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -25px 0 0 -22px;
}

.gallery-pager {
	text-align: center;
	padding: 10px 0;
}

.gallery-pager span {
	background: url(./img/pager.png) 0 0 no-repeat;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin: 0 3px;
	text-indent: -9999px;
	cursor: pointer;
}

.gallery-pager .cycle-pager-active {
	background-position: 0 100%;
}

/*-- ARCHIVES --*/
.category-archive {
	float: left;
	width: 62%;
}

.archive-entry {
	width: 38%;
	height: 430px;
	margin-right: 12%;
	margin-bottom: 50px;
	float: left;
	border-bottom: 1px dotted #420b0d;
	padding-bottom: 50px;
}

.archive-entry .entry-top {
	position: relative;
}

.archive-share-it {
	background-position: 50% 0;
	padding-top: 40px;
	font-size: 11px;
}

.archive-entry .sub-title {
	color: #be2026;
	text-transform: uppercase;
	border-bottom: 1px solid #808080;
	padding: 15px 0;
	margin-bottom: 15px;
}

.archive-entry .entry-header {
}

.archive-entry .entry-header .entry-title {
	font: normal 26px/1 Bitter-bold;
	text-transform: uppercase;
	margin-bottom: 7px;
	overflow: hidden;
	white-space: nowrap;
    text-overflow: ellipsis;
}

.archive-entry .entry-header .entry-title a:hover,
.entry-links .more:hover {
	color: #be2026;
}

.archive-entry .entry-header .rep-dates {
	font-family: Bitter-bold;
	color: #be2026;
}

.excerpt {
	padding: 20px 0;
	font-size: 11px;
	line-height: 1.4;
	border-bottom: 1px solid #be2026;
}

.entry-links {
	padding-top: 15px;
}

.entry-links .more {
	float: left;
	font-style: italic;
	display: inline-block;
	padding-top: 4px;
	position: relative;
	padding-left: 15px;
}

.entry-links .more:before {
	content: "";
	border: solid 0px transparent;
	border-left-color: #be2026;
	border-width: 5px 0 5px 8px;
	height: 0;
	width: 0;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -3px;
}

.entry-links .btn-buy {
	font-size: 13px;
	float: right;
}

/* Files */
.post_files {
	border-top: 1px solid #555;
	padding-top: 30px;
	margin-top: 30px;
}

.post_files h6 {
	color: #be2026;
    font: 30px/1 Bitter-bold;
    margin-bottom: 1em;
}

.post_files ul {
	width: 650px;
}

.post_files ul li {
	display: inline-block;
	width: 320px;
	margin-bottom: 2em;
}

.post_files ul li a {
	text-decoration: underline;
}

.post_files ul li a:hover {
	color: #be2026;
}

.post_files ul li .file_thumb {
	background: #FFF url(./img/file-corner.png) 100% 0 no-repeat;
	display: inline-block;
	font: normal bold 11px Verdana, Arial, Helvetica, sans-serif;
	color: #464646;
	text-transform: uppercase;
	letter-spacing: -0.1em;
	padding: 12px 5px;
	text-shadow: 1px 1px 1px #777;
	margin-right: 10px;
}

/*-- SIDEBAR --*/
#sidebar {
	float: right;
	width: 37%;
	padding-top: 30px;
}

#sidebar .widget {
	margin-bottom: 30px;
}

.widget-title {
	font: normal 21px Bitter-bold;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

/* Categories menu */
.widget_nav_menu .menu {
	font-size: 24px;
	text-transform: uppercase;
}

.widget_nav_menu .menu li {
	display: block;
	margin-bottom: 6px;
}

.widget_nav_menu .menu li a {
	background-color: #FFF;
	color: #000;
	display: block;
	padding: 8px 20px;
	position: relative;
}

.widget_nav_menu .menu li.current-menu-item a,
.widget_nav_menu .menu li a:hover {
	background-color: #be2026;
	color: #FFF;
	font-weight: bold;
}

.widget_nav_menu .menu li.current-menu-item a:before {
	content: "";
	border: solid 0px transparent;
	border-top-color: #be2026;
	border-width: 1.7em 0 0 10px;
	height: 0;
	width: 0;
	position: absolute;
	left: -10px;
	top: 0;
}

/*-- Image Widget --*/
.widget_sp_image img {
	display: block;
	max-width: 100%;
	height: auto;
}

/*-- CALENDAR --*/
.widget_program-calendar .program-calendar,
.widget_sp_image img {
	box-shadow: 5px 5px 0 1px #701417;
}

.program-calendar {
	background-color: #be2026;
	padding: 5px;
}

.calendar-date-now {
	border-bottom: 3px solid #FFF;
	padding: 5px 25px 10px;
}

.calendar-date-now .date-now {
	float: right;
	font-size: 10px;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.calendar-date-now .date-now strong {
	font-size: 24px;
}

.calendar-more {
	text-align: center;
	padding: 5px 0;
}

.calendar-more a {
	background-color: #000;
	font-size: 10px;
	text-transform: uppercase;
	display: inline-block;
	padding: 5px 10px;
}

.calendar-pick {
	padding: 5px 0;
}

.calendar-pick .ui-datepicker-inline {
	width: 100%;
	background: none;
	border: 0 none;
	font: normal 13px Bitter;
	padding: 0;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-header {
	background: none;
	border: 0 none;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-title {
	text-transform: uppercase;
	font-size: 10px;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev,
.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-next {
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	width: 15px;
	height: 25px;
	border: 0 none;
	font-weight: normal;
	top: 95px;
	cursor: pointer;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev {
	background-image: url(./img/cal-prev.png);
	left: 0;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-next {
	background-image: url(./img/cal-next.png);
	right: 0;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev span,
.calendar-pick .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-next span {
	display: none;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-calendar {
	width: 80%;
	margin: 0 auto;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-calendar thead {
	color: #FFF;
	font-family: Bitter-bold;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-calendar tbody td {
	padding: 0;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-calendar tbody td a {
	background: none;
	border: 0 none;
	text-align: center;
	color: #000;
	font-weight: normal;
	padding: 1px;
}

.calendar-pick .ui-datepicker-inline .ui-datepicker-calendar tbody td.ui-datepicker-current-day a {
	color: #FFF;
	font-weight: bold;
}

/*-- FOOTER --*/
#footer {
	border-top: 1px solid #be2026;
	margin-top: 30px;
	padding: 20px 0;
}

/* Footer menu */
#footer-menu {
	float: left;
	margin-left: 70px;
}

#footer-menu ul {
	font-size: 11px;
	text-transform: uppercase;
	border-left: 1px solid #be2026;
}

#footer-menu ul li {
	display: inline-block;
	padding: 10px 25px;
	border-right: 1px solid #be2026;
}

#footer-menu ul li a {
}

#footer-menu ul li a:hover,
#footer-menu ul li.current-menu-item a {
	color: #be2026;
}

/* Social links */
#footer .social-links {
	float: right;
}

#footer .social-links li {
	display: inline-block;
	margin: 0 4px;
}

#footer-menu,
#footer .social-links {
	margin-top: 37px;
}

/* Newsletter form */
.newsletter-form {
	float: left;
	padding-bottom: 20px;
}

.newsletter-form label {
	font-size: 11px;
	text-transform: uppercase;
	color: #FFF;
	width: auto;
	display: block;
	margin-bottom: 10px;
}
