/**** BUNDLE: mediaelementplayer.css ****/

.mejs-offscreen{
/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).  Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 - no likey commas */
	clip: rect(1px, 1px, 1px, 1px); /* IE8-IE11 - we likey commas, no support for clip-path */
	clip-path: polygon(0px 0px, 0px 0px,0px 0px, 0px 0px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.mejs-container {
	position: relative;
	background: #000;
	font-family: Helvetica, Arial;
	text-align: left;
	vertical-align: top;
	text-indent: 0;
}

.mejs-container:focus {
	outline: none;
}

.me-plugin {
	position: absolute;
}

.mejs-embed, .mejs-embed body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: #000;
	overflow: hidden;
}

.mejs-fullscreen {
	/* set it to not show scroll bars so 100% will work */
	overflow: hidden !important;
}

.mejs-container-fullscreen {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: 1000;
}
.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
	width: 100%;
	height: 100%;
}

.mejs-clear {
	clear: both;
}

/* Start: LAYERS */
.mejs-background {
	position: absolute;
	top: 0;
	left: 0;
}

.mejs-mediaelement {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mejs-poster {
	position: absolute;
	top: 0;
	left: 0;
	background-size: contain ;
	background-position: 50% 50% ;
	background-repeat: no-repeat ;
}
:root .mejs-poster img {
	display: none ;
}

.mejs-poster img {
	border: 0;
	padding: 0;
	border: 0;
}

.mejs-overlay {
	position: absolute;
	top: 0;
	left: 0;
}

.mejs-overlay-play {
	cursor: pointer;
}

.mejs-overlay-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	background: url('/img/mediaelement/bigplay.svg') no-repeat;
}

.no-svg .mejs-overlay-button {
	background-image: url('/img/mediaelement/bigplay.png');
}

.mejs-overlay:hover .mejs-overlay-button {
	background-position: 0 -100px ;
}

.mejs-overlay-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	background: #333;
	background: url('/img/mediaelement/background.png');
	background: rgba(0, 0, 0, 0.9);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50,50,50,0.9)), to(rgba(0,0,0,0.9)));
	background: -webkit-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
	background: -moz-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
	background: -o-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
	background: -ms-linear-gradient(top, rgba(50,50,50,0.9), rgba(0,0,0,0.9));
	background: linear-gradient(rgba(50,50,50,0.9), rgba(0,0,0,0.9));
}

.mejs-overlay-loading span {
	display: block;
	width: 80px;
	height: 80px;
	background: transparent url('/img/mediaelement/loading.gif') 50% 50% no-repeat;
}

/* End: LAYERS */

/* Start: CONTROL BAR */
.mejs-container .mejs-controls {
	position: absolute;
	list-style-type: none;
	margin: 0;
	padding: 0;
	bottom: 0;
	left: 0;
	background: url('/img/mediaelement/background.png');
	background: rgba(0, 0, 0, 0.7);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50,50,50,0.7)), to(rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: -moz-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: -o-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: -ms-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: linear-gradient(rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	height: 30px;
	width: 100%;
}
.mejs-container .mejs-controls  div {
	list-style-type: none;
	background-image: none;
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	width: 26px;
	height: 26px;
	font-size: 11px;
	line-height: 11px;
	font-family: Helvetica, Arial;
	border: 0;
}

.mejs-controls .mejs-button button {
	cursor: pointer;
	display: block;
	font-size: 0;
	line-height: 0;
	text-decoration: none;
	margin: 7px 5px;
	padding: 0;
	position: absolute;
	height: 16px;
	width: 16px;
	border: 0;
	background: transparent url('/img/mediaelement/controls.svg') no-repeat;
}

.no-svg .mejs-controls .mejs-button button {
	background-image: url('/img/mediaelement/controls.png');
}

	/* :focus for accessibility */
.mejs-controls .mejs-button button:focus {
	outline: dotted 1px #999;
}

/* End: CONTROL BAR */

/* Start: Time (Current / Duration) */
.mejs-container .mejs-controls .mejs-time {
	color: #fff;
	display: block;
	height: 17px;
	width: auto;
	padding: 10px 3px 0 3px ;
	overflow: hidden;
	text-align: center;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.mejs-container .mejs-controls .mejs-time a {
	color: #fff;
	font-size: 11px;
	line-height: 12px;
	display: block;
	float: left;
	margin: 1px 2px 0 0;
	width: auto;
}
/* End: Time (Current / Duration) */

/* Start: Play/Pause/Stop */
.mejs-controls .mejs-play button {
	background-position: 0 0;
}

.mejs-controls .mejs-pause button {
	background-position: 0 -16px;
}

.mejs-controls .mejs-stop button {
	background-position: -112px 0;
}
/* Start: Play/Pause/Stop */

/* Start: Progress Bar */
.mejs-controls div.mejs-time-rail {
	direction: ltr;
	width: 200px;
	padding-top: 5px;
}

.mejs-controls .mejs-time-rail span, .mejs-controls .mejs-time-rail a {
	display: block;
	position: absolute;
	width: 180px;
	height: 10px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
	margin: 5px;
	background: #333;
	background: rgba(50,50,50,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
	background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
}

.mejs-controls .mejs-time-rail .mejs-time-buffering {
	width: 100%;
	background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	-webkit-background-size: 15px 15px;
	-moz-background-size: 15px 15px;
	-o-background-size: 15px 15px;
	background-size: 15px 15px;
	-webkit-animation: buffering-stripes 2s linear infinite;
	-moz-animation: buffering-stripes 2s linear infinite;
	-ms-animation: buffering-stripes 2s linear infinite;
	-o-animation: buffering-stripes 2s linear infinite;
	animation: buffering-stripes 2s linear infinite;
}

@-webkit-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
@-moz-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
@-ms-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
@-o-keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }
@keyframes buffering-stripes { from {background-position: 0 0;} to {background-position: 30px 0;} }

.mejs-controls .mejs-time-rail .mejs-time-loaded {
	background: #3caac8;
	background: rgba(60,170,200,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(44,124,145,0.8)), to(rgba(78,183,212,0.8)));
	background: -webkit-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
	background: -moz-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
	background: -o-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
	background: -ms-linear-gradient(top, rgba(44,124,145,0.8), rgba(78,183,212,0.8));
	background: linear-gradient(rgba(44,124,145,0.8), rgba(78,183,212,0.8));
	width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
	background: #fff;
	background: rgba(255,255,255,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.9)), to(rgba(200,200,200,0.8)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: -moz-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: -o-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: -ms-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: linear-gradient(rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-handle {
	display: none;
	position: absolute;
	margin: 0;
	width: 10px;
	background: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	border: solid 2px #333;
	top: -2px;
	text-align: center;
}

.mejs-controls .mejs-time-rail .mejs-time-float {
	position: absolute;
	display: none;
	background: #eee;
	width: 36px;
	height: 17px;
	border: solid 1px #333;
	top: -26px;
	margin-left: -18px;
	text-align: center;
	color: #111;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
	margin: 2px;
	width: 30px;
	display: block;
	text-align: center;
	left: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-float-corner {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	line-height: 0;
	border: solid 5px #eee;
	border-color: #eee transparent transparent transparent;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	top: 15px;
	left: 13px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
	width: 48px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
	width: 44px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
	left: 18px;
}

/*
.mejs-controls .mejs-time-rail:hover .mejs-time-handle {
	visibility:visible;
}
*/
/* End: Progress Bar */

/* Start: Fullscreen */
.mejs-controls .mejs-fullscreen-button button {
	background-position: -32px 0;
}

.mejs-controls .mejs-unfullscreen button {
	background-position: -32px -16px;
}
/* End: Fullscreen */


/* Start: Mute/Volume */
.mejs-controls .mejs-volume-button {
}

.mejs-controls .mejs-mute button {
	background-position: -16px -16px;
}

.mejs-controls .mejs-unmute button {
	background-position: -16px 0;
}

.mejs-controls .mejs-volume-button {
	position: relative;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider {
	display: none;
	height: 115px;
	width: 25px;
	background: url('/img/mediaelement/background.png');
	background: rgba(50, 50, 50, 0.7);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	top: -115px;
	left: 0;
	z-index: 1;
	position: absolute;
	margin: 0;
}

.mejs-controls .mejs-volume-button:hover {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

/*
.mejs-controls .mejs-volume-button:hover .mejs-volume-slider {
	display: block;
}
*/

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
	position: absolute;
	left: 11px;
	top: 8px;
	width: 2px;
	height: 100px;
	background: #ddd;
	background: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
	position: absolute;
	left: 11px;
	top: 8px;
	width: 2px;
	height: 100px;
	background: #ddd;
	background: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
	position: absolute;
	left: 4px;
	top: -3px;
	width: 16px;
	height: 6px;
	background: #ddd;
	background: rgba(255, 255, 255, 0.9);
	cursor: N-resize;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	margin: 0;
}

/* horizontal version */
.mejs-controls a.mejs-horizontal-volume-slider {
	height: 26px;
	width: 56px;
	position: relative;
    display: block;
    float: left;
    vertical-align: middle;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	position: absolute;
	left: 0;
	top: 11px;
	width: 50px;
	height: 8px;
	margin: 0;
	padding: 0;
	font-size: 1px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #333;
	background: rgba(50,50,50,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30,30,30,0.8)), to(rgba(60,60,60,0.8)));
	background: -webkit-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: -moz-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: -o-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: -ms-linear-gradient(top, rgba(30,30,30,0.8), rgba(60,60,60,0.8));
	background: linear-gradient(rgba(30,30,30,0.8), rgba(60,60,60,0.8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	position: absolute;
	left: 0;
	top: 11px;
	width: 50px;
	height: 8px;
	margin: 0;
	padding: 0;
	font-size: 1px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #fff;
	background: rgba(255,255,255,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,255,255,0.9)), to(rgba(200,200,200,0.8)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: -moz-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: -o-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: -ms-linear-gradient(top, rgba(255,255,255,0.9), rgba(200,200,200,0.8));
	background: linear-gradient(rgba(255,255,255,0.9), rgba(200,200,200,0.8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
	display: none;
}

/* End: Mute/Volume */

/* Start: Track (Captions and Chapters) */
.mejs-controls .mejs-captions-button {
	position: relative;
}

.mejs-controls .mejs-captions-button button {
	background-position: -48px 0;
}
.mejs-controls .mejs-captions-button .mejs-captions-selector {
	visibility: hidden;
	position: absolute;
	bottom: 26px;
	right: -51px;
	width: 85px;
	height: 100px;
	background: url('/img/mediaelement/background.png');
	background: rgba(50,50,50,0.7);
	border: solid 1px transparent;
	padding: 10px 10px 0 10px;
	overflow: hidden;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.mejs-controls .mejs-captions-button:hover  .mejs-captions-selector {
	visibility: visible;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
	margin: 0;
	padding: 0;
	display: block;
	list-style-type: none !important;
	overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
	margin: 0 0 6px 0;
	padding: 0;
	list-style-type: none !important;
	display: block;
	color: #fff;
	overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
	clear: both;
	float: left;
	margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
	width: 55px;
	float: left;
	padding: 4px 0 0 0;
	line-height: 15px;
	font-family: helvetica, arial;
	font-size: 10px;
}

.mejs-controls .mejs-captions-button .mejs-captions-translations {
	font-size: 10px;
	margin: 0 0 5px 0;
}

.mejs-chapters {
	position: absolute;
	top: 0;
	left: 0;
	-xborder-right: solid 1px #fff;
	width: 10000px;
	z-index: 1;
}

.mejs-chapters .mejs-chapter {
	position: absolute;
	float: left;
	background: #222;
	background: rgba(0, 0, 0, 0.7);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50,50,50,0.7)), to(rgba(0,0,0,0.7)));
	background: -webkit-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: -moz-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: -o-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: -ms-linear-gradient(top, rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	background: linear-gradient(rgba(50,50,50,0.7), rgba(0,0,0,0.7));
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232,endColorstr=#000000);
	overflow: hidden;
	border: 0;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block {
	font-size: 11px;
	color: #fff;
	padding: 5px;
	display: block;
	border-right: solid 1px #333;
	border-bottom: solid 1px #333;
	cursor: pointer;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
	border-right: none;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
	background: #666;
	background: rgba(102,102,102, 0.7);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(102,102,102,0.7)), to(rgba(50,50,50,0.6)));
	background: -webkit-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
	background: -moz-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
	background: -o-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
	background: -ms-linear-gradient(top, rgba(102,102,102,0.7), rgba(50,50,50,0.6));
	background: linear-gradient(rgba(102,102,102,0.7), rgba(50,50,50,0.6));
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666,endColorstr=#323232);
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
	font-size: 12px;
	font-weight: bold;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0 0 3px 0;
	line-height: 12px;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
	font-size: 12px;
	line-height: 12px;
	margin: 3px 0 4px 0;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.mejs-captions-layer {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align:center;
	line-height: 20px;
	font-size: 16px;
	color: #fff;
}

.mejs-captions-layer  a {
	color: #fff;
	text-decoration: underline;
}

.mejs-captions-layer[lang=ar] {
	font-size: 20px;
	font-weight: normal;
}

.mejs-captions-position {
	position: absolute;
	width: 100%;
	bottom: 15px;
	left: 0;
}

.mejs-captions-position-hover {
	bottom: 35px;
}

.mejs-captions-text {
	padding: 3px 5px;
	background: url('/img/mediaelement/background.png');
	background: rgba(20, 20, 20, 0.5);
	white-space: pre-wrap;
}
/* End: Track (Captions and Chapters) */

/* Start: Error */
.me-cannotplay {
}

.me-cannotplay a {
	color: #fff;
	font-weight: bold;
}

.me-cannotplay span {
	padding: 15px;
	display: block;
}
/* End: Error */


/* Start: Loop */
.mejs-controls .mejs-loop-off button {
	background-position: -64px -16px;
}

.mejs-controls .mejs-loop-on button {
	background-position: -64px 0;
}

/* End: Loop */

/* Start: backlight */
.mejs-controls .mejs-backlight-off button {
	background-position: -80px -16px;
}

.mejs-controls .mejs-backlight-on button {
	background-position: -80px 0;
}
/* End: backlight */

/* Start: Picture Controls */
.mejs-controls .mejs-picturecontrols-button {
	background-position: -96px 0;
}
/* End: Picture Controls */


/* context menu */
.mejs-contextmenu {
	position: absolute;
	width: 150px;
	padding: 10px;
	border-radius: 4px;
	top: 0;
	left: 0;
	background: #fff;
	border: solid 1px #999;
	z-index: 1001; /* make sure it shows on fullscreen */
}
.mejs-contextmenu .mejs-contextmenu-separator {
	height: 1px;
	font-size: 0;
	margin: 5px 6px;
	background: #333;
}

.mejs-contextmenu .mejs-contextmenu-item {
	font-family: Helvetica, Arial;
	font-size: 12px;
	padding: 4px 6px;
	cursor: pointer;
	color: #333;
}
.mejs-contextmenu .mejs-contextmenu-item:hover {
	background: #2C7C91;
	color: #fff;
}

/* Start: Source Chooser */
.mejs-controls .mejs-sourcechooser-button {
	position: relative;
}

.mejs-controls .mejs-sourcechooser-button button {
	background-position: -128px 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
	visibility: hidden;
	position: absolute;
	bottom: 26px;
	right: -10px;
	width: 130px;
	height: 100px;
	background: url('/img/mediaelement/background.png');
	background: rgba(50,50,50,0.7);
	border: solid 1px transparent;
	padding: 10px;
	overflow: hidden;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
	margin: 0;
	padding: 0;
	display: block;
	list-style-type: none !important;
	overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
	margin: 0 0 6px 0;
	padding: 0;
	list-style-type: none !important;
	display: block;
	color: #fff;
	overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
	clear: both;
	float: left;
	margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
	width: 100px;
	float: left;
	padding: 4px 0 0 0;
	line-height: 15px;
	font-family: helvetica, arial;
	font-size: 10px;
}
/* End: Source Chooser */

/* Start: Postroll */
.mejs-postroll-layer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/img/mediaelement/background.png');
	background: rgba(50,50,50,0.7);
	z-index: 1000;
	overflow: hidden;
}
.mejs-postroll-layer-content {
	width: 100%;
	height: 100%;
}
.mejs-postroll-close {
	position: absolute;
	right: 0;
	top: 0;
	background: url('/img/mediaelement/background.png');
	background: rgba(50,50,50,0.7);
	color: #fff;
	padding: 4px;
	z-index: 100;
	cursor: pointer;
}
/* End: Postroll */


/* Start: Speed */
div.mejs-speed-button {
	width: 46px !important;
	position: relative;
}

.mejs-controls .mejs-button.mejs-speed-button button {
	background: transparent;
	width: 36px;
	font-size: 11px;
	line-height: normal;
	color: #ffffff;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector {
	display: none;
	position: absolute;
	top: -100px;
	left: -10px;
	width: 60px;
	height: 100px;
	background: url('/img/mediaelement/background.png');
	background: rgba(50, 50, 50, 0.7);
	border: solid 1px transparent;
	padding: 0;
	overflow: hidden;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}


.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
	display: block;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
	color: rgba(33, 248, 248, 1);
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul {
	margin: 0;
	padding: 0;
	display: block;
	list-style-type: none !important;
	overflow: hidden;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li {
	margin: 0 0 6px 0;
	padding: 0 10px;
	list-style-type: none !important;
	display: block;
	color: #fff;
	overflow: hidden;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input {
	clear: both;
	float: left;
	margin: 3px 3px 0 5px;
	display: none;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label {
	width: 60px;
	float: left;
	padding: 4px 0 0 0;
	line-height: 15px;
	font-family: helvetica, arial;
	font-size: 11.5px;
	color: white;
	margin-left: 5px;
	cursor: pointer;
}

.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover {
	background-color: rgb(200, 200, 200) !important;
	background-color: rgba(255,255,255,.4) !important;
}
/* End: Speed */

/* Start: Jump Forward */

.mejs-controls .mejs-button.mejs-jump-forward-button {
	background: transparent url('/img/mediaelement/jumpforward.png') no-repeat;
	background-position: 3px 3px;
}
.mejs-controls .mejs-button.mejs-jump-forward-button button {
	background: transparent;
	font-size: 9px;
	line-height: normal;
	color: #ffffff;
}

/* End: Jump Forward */

/* Start: Skip Back */

.mejs-controls .mejs-button.mejs-skip-back-button {
	background: transparent url('/img/mediaelement/skipback.png') no-repeat;
	background-position: 3px 3px;
}
.mejs-controls .mejs-button.mejs-skip-back-button button {
	background: transparent;
	font-size: 9px;
	line-height: normal;
	color: #ffffff;
}

/* End: Skip Back */


/**** END BUNDLE: mediaelementplayer.css ****/

/**** BUNDLE: somewhere.css ****/

body {
  max-width: 1000px;
  width: 100%;
  margin: 0px auto 0px auto;
  font-family: helvetica, arial, verdana, sans-serif;
  background-repeat: repeat-y;
  background-color: #000000;
  background-position: top center;
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  color: #555555;
}

h1 {
  font-size: 1.4rem;
  font-weight: normal;
  font-style: normal;
}

h2,
header h1 {
  font-weight: bold;
  font-size: 1.35rem;
  line-height: 1.5;
}

h3 {
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

h4 {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

h6 {
  font-size: 0.9rem;
  text-align: justify;
  margin-bottom: 0px;
  font-weight: bold;
  padding-bottom: 0px;
}

figcaption {
  padding: 3px 5px 2px 5px;
}

figcaption p {
  margin-top: 0;
}

a {
  outline: none;
}

a:link {
  color: #295A78;
  text-decoration: none;
}

a:link:hover {
  color: #AA0000;
  text-decoration: underline;
}

a:visited {
  /* color: #472656; */
  color: #555555;
  text-decoration: none;
  font-weight: normal;
}

p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

p.last,
p:last-child {
  margin-bottom: 0px;
}

figure {
  margin: 0;
  padding: 0;
  width: 100%;
}

figure,
img,
object,
iframe,
video,
audio {
  box-sizing: border-box;
  position: relative;
  display: block;
  border: 0px;
  max-width: 100%;
  height: auto;
}

.media-container,
figure .media-container {
  position: relative;
}

.media-container .media-sizer {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
}

.media-container .media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  display: block;
}

.media-overlay embed,
.media-overlay iframe,
.media-overlay video
.media-overlay img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
}

/** form elements **/

input.text,
form .pre,
textarea {
  font-family: courier, monospace;
  font-size: 0.9rem;
  width: 98%;
  border: 1px solid #777777;
  padding: 4px;
  background: #ffffff;
}

form .pre {
  display: block;
  overflow: hidden;
  color: #555555;
  background: #cccccc;
}

fieldset {
  border: 0px;
  padding: 0px;
  margin: 0px 0px 10px 0px;
}

label {
  color: #555555;
  font-weight: bold;
}

footer {
  margin: 0px 10px 10px 10px;
}

.buttons {
  width: 98%;
  text-align: right;
}

/** user id classes **/

.user1,
a.user1 {
  color: #555;
  font-weight: 900;
}

.user2,
a.user2:link,
a.user2:visited {
  color: #F04C3E;
  font-weight: 900;
}

.user3,
a.user3:link,
a.user3:visited {
  color: #67904B;
  font-weight: 900;
}

/** main layout parts **/

.container {
  overflow: visible;
  position: absolute;
  top: 0px;
  width: 1000px;
  min-width: 320px;
  min-height: 100%;
  max-width: 100%;
  background-position: top center;
  background-repeat: repeat-y;
}

/** Title Bar and Navigation **/

.titleBar {
  position: fixed;
  top: 50px;
  max-width: 1000px;
  width: 100%;
  min-width: 320px;
  box-sizing: border-box;
  height: 40px;
  z-index: 999;
  overflow: hidden;
  opacity: 0.9;
}

.titleBar .padLeft {
  position: absolute;
  left: 0px;
  width: 10px;
  height: 40px;
  background: #EEEEEE;
}

.titleBar .masthead {
  position: absolute;
  top: 0px;
  left: 10px;
  width: 274px;
  height: 40px;
  padding: 0px;
  margin: 0px;
}

.titleBar .masthead img {
  float: left;
  clear: none;
  border: 0px;
}

.titleBar .padRight {
  position: absolute;
  top: 0px;
  left: 980px;
  width: 20px;
  height: 40px;
  background: #EEEEEE;
}

.titleBar .navigation-wrapper {
  position: absolute;
  top: 0px;
  left: 284px;
  max-width: 697px;
  right: 0;
  width: auto;
  height: 40px;
  background: #EEEEEE;
  text-align: left;
  padding-left: 20px;
  line-height: 40px;
  font-size: 0.8rem;
  padding-top: 0px;
}

.titleBar .navigation a {
  text-decoration: none;
  color: #555555;
  padding: 4px;
  padding-top: 14px;
  padding-bottom: 13px;
}

.titleBar .navigation a:hover {
  background: #CCCCCC;
  color: #FFFFFF;
}

.titleBar .navigation a.current {
  background: #CCCCCC;
  color: #555555;
}

.titleBar .navigation .nav-item:after {
  content: ' | ';
}

.titleBar .navigation .nav-item:last-child:after {
  content: '';
}

.titleBar a.show-menu {
  display: none;
}

.titleBar a.hide-menu {
  display: none;
}

.background_left {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 50%;
  height: 100%;
  bottom: 0px;
  background-position: top center;
  background-repeat: repeat-x;
}

.background_right {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-position: top center;
  background-repeat: repeat-x;
}

.background_navigation {
  position: absolute;
  position: fixed;
  top: 50px;
  left: 0px;
  right: 0px;
  height: 40px;
  z-index: 0;
  overflow: hidden;
  background-color: #EEEEEE;
  opacity: 0.9;
}

.container .backgroundImage {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
  width: 1001px;
  height: 1001px;
  max-height: 100vh;
  max-width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

/** social media buttons **/

.socialmediabuttons {
  position: fixed;
  right: 0px;
  top: 9px;
  z-index: 100;
}

.socialmediabuttons a {
  display: inline-block;
  margin-right: 9px;
}

/** head **/

.head p {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

body.image {
  background-color: #000000;
  background-image: url('/img/nav-background-black.png') !important;
  background-repeat: repeat-x;
}

body.image #background_left,
body.image #background_right {
  height: 90px;
  bottom: none;
}

/** Content **/

.contents {
  display: block;
  box-sizing: border-box;
  padding: 220px 10px 10px 10px;
  margin: 0;
  min-height: 480px;
}

.column {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  padding: 3px;
  font-size: 0.85rem;
  line-height: 1.5;
  float: left;
}

.content,
.full {
  box-sizing: border-box;
  max-width: 545px;
  width: 100%;
  float: left;
  position: relative;
  background: url('/img/semi-opaque.png');
  margin-bottom: 10px;
  padding: 7px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.full {
  padding: 1px;
  max-width: 100%;
}

.content p {
  margin-top: 0px;
  border-top: 0px;
}

.content a {
  font-weight: bold;
  text-decoration: none;
}

.content a:visited {
  font-weight: normal;
}

li.current>a,
li.current>a:visited,
.content a.current,
.content a.current:visited {
  font-weight: bold;
  color: #000000;
  text-decoration: underline;
}

nav ul,
.subnavi ul,
.content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

nav ul li,
.subnavi ul li,
.content ul li {
  font-size: 0.85rem;
  line-height: 1.5;
}

nav ul li ul li {
  padding-left: 10px;
}

.content ul li h4 {
  clear: none;
  display: inline;
  line-height: 1.5;
}

.content ul li h6 {
  margin: 0px;
  padding: 0px;
  clear: none;
  display: inline;
}

/** primary **/

.primary {
  box-sizing: border-box;
  position: relative;
  max-width: 565px;
  width: 56.5%;
  float: left;
  min-width: 300px;
  padding-right: 10px;
}

/** Secondary **/

.secondary {
  position: relative;
  box-sizing: border-box;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
  max-width: 425px;
  width: 43.5%;
  min-width: 168px;
}

.secondary .content {
  position: relative;
  background: url( '/img/semi-opaque.png' );
  margin: 0 0 10px 0;
  max-width: 100%;
  width: 100%;
  float: none;
}

.secondary figure {
  margin: 0 auto 10px auto;
  width: 100%;
  position: relative;
  background: url( '/img/semi-opaque.png' );
  padding: 1px;
  margin: 0px auto 10px auto;
  clear: both;
}

.secondary .video {
  position: relative;
  background: url( '/img/semi-opaque.png' );
  padding: 1px;
  margin: 0px auto 10px auto;
  clear: both;
}

.secondary .embed {
  width: auto;
  min-width: none;
}

.container .secondary {
  float: right;
  clear: right;
}

/** images & media **/

article.image {
  float: left;
  padding: 0px;
  margin-right: 8px;
}

article.image h6 {
  margin: 0px;
  line-height: 15px;
  padding: 3px 5px 3px 5px;
}

article.image p {
  margin: 0px;
  line-height: 15px;
  padding: 3px 5px 3px 5px;
  font-size: 12px;
}

/** themes **/

div.tagcloud {
  text-align: center;
}

div.tagcloud div.keyword {
  padding: 3px;
  display: inline-block;
  vertical-align: middle;
  clear: none;
  overflow: visible;
  white-space: nowrap;
}

a.ki0:visited,
a.ki0:link {
  color: #bbbbbb;
}

a.ki1:visited,
a.ki1:link {
  color: #aaaaaa;
}

a.ki2:visited,
a.ki2:link {
  color: #999999;
}

a.ki3:visited,
a.ki3:link {
  color: #888888;
}

a.ki4:visited,
a.ki4:link {
  color: #777777;
}

a.ki5:visited,
a.ki5:link {
  color: #666666;
}

a.ki6:visited,
a.ki6:link {
  color: #555555;
}

a.ki7:visited,
a.ki7:link {
  color: #444444;
}

a.ki8:visited,
a.ki8:link {
  color: #333333;
}

a.ki9:visited,
a.ki9:link {
  color: #222222;
}

a.ki10:visited,
a.ki10:link {
  color: #111111;
}

a.ki0:hover,
a.ki1:hover,
a.ki2:hover,
a.ki3:hover,
a.ki4:hover,
a.ki5:hover,
a.ki6:hover,
a.ki7:hover,
a.ki8:hover,
a.ki9:hover,
a.ki10:hover {
  color: #ffffff;
  text-decoration: none;
}

/** blog styles **/

.blog #content {
  width: 990px;
}

.blog .title p {
  max-width: 100%;
}

.blog #contents .entry .content {
  float: left;
  margin-right: 10px;
}

.blog #contents .entry .files {
  float: left;
  width: 400px;
  clear: right;
}

.blog #content .entry {
  clear: both;
}

.blog ul.navi li {
  list-style: none;
  display: inline;
}

.blog .byline {
  font-size: 12px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-align: right;
}

.blog ul.topics,
.blog ul.topics li {
  list-style: none;
  display: inline;
}

.blog .entry h2,
.blog .entry h2 a:visited,
.blog .comments h4 {
  font-size: 16px;
  font-weight: bold;
}

.blog .comments {
  margin-top: 8px;
  border-top: 1px solid #999999;
  padding-top: 8px;
}

.blog .comments h4 {
  margin-bottom: 8px;
}

.blog .comments form .details {
  width: 33%;
  float: left;
}

.blog .comments form .details input.text,
.blog .comments form .pre {
  width: 90%;
}

.blog .comments form .optional {
  font-size: 80%;
  font-style: italic;
}

.blog .comments form .formMessage {
  font-size: 80%;
}

.blog .comment {
  margin-bottom: 8px;
  border-bottom: 1px dashed #999999;
  padding-bottom: 8px;
}

.blog .date {
  font-weight: bold;
}

/** page number styles **/

.title,
.years,
.pages {
  position: relative;
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 990px;
  margin: 0 0 10px 0;
  padding: 5px;
  background: url( '/img/semi-opaque.png' );
  clear: both;
}

.months {
  margin-top: 10px;
}

.title p {
  margin: 0;
}

.title br {
  clear: none;
  display: inline;
  float: left;
}

.pages {
  text-align: center;
}

.filter ul,
.years ul,
.months ul,
.pages ul {
  list-style: none;
  display: inline;
  padding: 0px;
  margin: 0px;
}

.filter li,
.years li,
.months li,
.pages li {
  display: inline;
}

.functions .current a,
.filter .current a,
.years .current a,
.months .current a,
.pages .current a {
  font-weight: bold;
  text-decoration: underline;
  color: #000000;
}

.pages .page-count {
  display: none;
}

.filter ul li:after {
  content: ' | ';
}

.filter ul li:last-child:after {
  content: '';
}

.blog .pages {
  background: none;
  width: auto;
  float: right;
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 0px;
}

.blog .sections {
  display: inline-block;
  margin-right: 65px;
}

/** shop **/

.shop-title {
  padding: 0;
}

.shop .title {
  overflow: hidden;
}

.shop .title .half {
  width: 50%;
  box-sizing: border-box;
  float: left;
  padding: 10px;
}

.shop .title nav.filter {
  clear: left;
}

.shop .title nav.functions {
  top: 0px;
  text-align: right;
}

.shop .title nav.functions .basket {
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
}

.shop .grid {
  margin-left: -5px;
  margin-right: -5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shop .products .list-product {
  width: 25%;
  padding: 5px;
  box-sizing: border-box;
  position: relative;
}

.title .confirmation {
  overflow: hidden;
}

.product-details-wrapper {
  position: relative;
}

.product-details-wrapper  .product-sizer {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  z-index: 1;
}

.product-details-wrapper .product-contents {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
  background: url('/img/semi-opaque.png');
}

.product-contents .media-sizer {
  padding-bottom: 100%;
}

.product-contents .product-details {
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  padding: 3px 5px;
  width: 100%;
  background: url('/img/semi-opaque.png');
}

.product-variant {
  clear: both;
}

.product-purchase-details {
  margin: 7px -7px -7px;
  padding: 7px;
  background: url('/img/semi-opaque.png');
}

.product-purchase {
  position: relative;
  float: right;
}

.product-price {
  text-align: right;
}

.product-add {
  margin-left: 5px;
  font-weight: bold;
}

.product-add:before {
  content: '+';
  padding-right: 3px;
  font-size: 130%;
  line-height: 90%;
}

.product-quantity {
  margin-left: 5px;
}

.list-product header h1 {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
}

.list-product header h3 {
  font-weight: normal;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0px;
  margin: 0px;
}

.list-product a.image_crop {
  display: block;
  overflow: hidden;
}

.shop article.product h1,
.shop article.product h3 {
  margin: 0;
}

.shop form.basket {
  display: block;
  position: relative;
}

.basket-product {
  background: url('/img/semi-opaque.png');
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.basket-product .image {
  box-sizing: border-box;
  max-width: 100%;
  width: 33.33%;
  height: auto;
  overflow: hidden;
  float: left;
}

.basket-product .image img {
  width: 100%;
  height: auto;
}

.basket-product-details {
  float: right;
  width: 66%;
  box-sizing: border-box;
  width: none;
  padding: 5px;
}

.basket-product h1,
.basket-product h2 {
  font-size: 1rem;
  margin: 0;
  line-height: 1.2;
}

.basket-product h3 {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.basket-product-details .product-stock-details {
  box-sizing: border-box;
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 66.66%;
  padding: 7px;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url('/img/semi-opaque.png');
}

.shop .totals {
  text-align: right;
}

.shop .totals table {
  float: right;
}

.shop .totals table th {
  font-weight: normal;
}

.shop .totals table td {
  font-weight: bold;
}

.shop .totals select {
  width: 150px;
}

.shop .totals select optgroup {
  border-top: 1px solid #000000;
  margin: 5px 0;
}

.shop form.basket .paymentbuttons {
  background: #ffffff;
  text-align: right;
  padding: 7px;
  margin: 7px -7px -7px -7px;
}

.shop .receipt {
  box-sizing: border-box;
  border: 1px solid #999999;
  background-color: #ffffff;
  padding: 10px;
  max-width: 600px;
  width: 100%;
  margin-bottom: 12px;
  margin: 0px auto 0px auto;
}

.shop .receipt .order_details {
  float: left;
  margin: 20px 0px;
  margin-top: 20px;
}

.shop .receipt .delivery_details {
  float: right;
  margin: 20px 0px;
  min-width: 40%;
}

.shop .receipt .label {
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
  width: 120px;
}

.shop .receipt .items {
  box-sizing: border-box;
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 600px;
  width: 100%;
  font-size: 0.85rem;
  line-height: 20px;
}

.shop .receipt h2 {
  margin-bottom: 4px;
}

.shop .receipt table th {
  text-align: left;
  white-space: nowrap;
  padding-right: 10px;
}

.shop .receipt table tbody td {
  vertical-align: top;
}

.shop .receipt table th:last-child {
  padding-right: 0px;
}

.shop .receipt table tfoot th {
  text-align: right;
}

.shop .receipt table .primary {
  width: 80%;
  padding-right: 10px;
  min-width: 50%;
}

.shop .receipt table td.primary {
  padding-bottom: 15px;
}

.shop .receipt table .currency {
  width: 10px;
  text-align: right;
}

.shop .receipt table .price {
  width: 20px;
  text-align: right;
}

.shop .receipt table .grand_total td {
  border-top: 1px solid #999999;
  border-bottom: 3px solid #999999;
}

.shop .receipt .order_contents {
  margin-top: 5px;
  border-top: 1px solid #999999;
  padding-top: 5px;
}

.shop .receipt table .products_total th,
.shop .receipt table .products_total td {
  border-top: 1px solid #999999;
  padding-top: 15px;
}

.shop .receipt .currency {
  width: 10px;
}

.shop .receipt .price {
  width: 100px;
  text-align: right;
}

.shop .delivery-message {
  display: block;
  max-width: 600px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3;
  padding: 20px;
  margin: 0 auto;
}

/** about **/

nav.secondary {
  position: absolute;
}

/** gallery **/

section.gallery {
  position: relative;
  top: 90px;
  max-width: 1000px;
  width: 100%;
  height: calc(100vh - 90px);
  background: #000000;
}

.gallery .title {
  max-width: 1000px;
  width: 100%;
  margin: 0px 0px 0px 0px;
  position: relative;
  padding: 5px 0px 0px 5px;
  overflow: hidden;
}

.gallery .title .pages {
  position: relative;
  top: 0px;
  float: right;
  margin: 0;
  padding: 0;
  right: 7px;
  background: none;
  width: auto;
}

.gallery .frame {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin-left: 0px;
  max-height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.gallery .frame .sizer {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
}

.gallery .frame .frame-holder {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  top: 0;
  left: 0;
  right: 0;
  max-height: 100%;
  height: 100%;
  text-align: center;
  margin: 0px auto 0px auto;
}

.gallery .frame-holder .caption {
  background: url('/img/semi-opaque.png');
  max-width: 1000px;
  width: 100%;
  padding-top: 0px;
  font-size: 12px;
  line-height: 15px;
  text-align: left;
}

.gallery .frame-holder .image-wrapper {
  overflow: hidden;
  position: relative;
  -webkit-flex-shrink: 100;
  -ms-flex-negative: 100;
  flex-shrink: 100;
  height: 100%;
}

.gallery .image-wrapper img {
  position: relative;
  max-height: 100%;
  max-width: 100%;
  min-width: 1px;
  min-height: 1px;
  width: auto;
  margin: auto;
  right: auto;
  left: auto;
  bottom: 0;
}

/** search **/

.search input.text {
  width: 80%;
}

.search div.result {
  border-bottom: 1px dashed #999999;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.search div.result h3 {
  padding: 0px;
  margin: 0px;
}

.search .result h3 span.index {
  font-weight: normal;
}

.search .result h3 span.score {
  font-weight: normal;
  font-size: 80%;
}

.search .result h3 a {
  font-weight: bold;
}

.search .result p {
  padding: 0px;
  margin: 4px 0px 4px 0px;
}

.search .result .keyword {
  font-weight: normal;
}

.search .result .match {
  font-weight: bold;
  color: #000000;
}

.search .pages {
  max-width: 545px;
}

/** generic classes **/

.success,
.message,
.warn,
.error {
  font-weight: bold;
  color: #008800;
  background-image: url('/img/alert.affirmation.png');
  background-repeat: no-repeat;
  padding-left: 30px;
  padding-top: 3px;
  line-height: 1.2;
  min-height: 20px;
  display: block;
}

.warn {
  color: #ff7e00;
  font-weight: bold;
  background-image: url('/img/alert.warn.png');
  background-repeat: no-repeat;
}

.error {
  font-weight: bold;
  color: #770000;
  background-image: url('/img/alert.error.png');
  background-repeat: no-repeat;
}

h1.success,
h1.message,
h1.errror
h1.warn {
  padding-top: 0;
}

input.alert,
.alert,
 {
  border: 2px solid #770000;
}

.clear {
  clear: both;
}

.hidden {
  display: none;
}

/* custom almanac films layout */

.almanacfilms .mediacontainer {
  position: relative;
  text-align: center;
  float: left;
  padding: 0px;
  margin: 0px;
  height: 480px;
}

.almanacfilms .media {
  float: left;
  clear: both;
  position: relative;
}

.almanacfilms .sizes {
  margin-left: 340px;
  width: 320px;
}

/* hides the second object from all versions of IE */

* html object.mov {
  display: none;
}

/* displays the second object in all versions of IE apart from 5 on PC */

* html object.mov {
  display: inline;
}

/* hides the second object from all versions of IE >= 5.5 */

* html object.mov {
  display: none;
}

.almanacfilms .sizes object,
.almanacfilms .sizes .media {
  margin-top: 150px;
}

.almanacfilms .sizem {
  margin-left: 260px;
  width: 480px;
}

.almanacfilms .sizem .media {
  margin-top: 105px;
}

.almanacfilms .sizel {
  margin-left: 180px;
  width: 640px;
}

.almanacfilms .sizel .media {
  margin-top: 60px;
}

.almanacfilms .sizehd {
  margin-left: 63px;
  width: 854px;
}

.almanacfilms #content {
  text-align: center;
  width: 960px;
}

@media only screen and (max-width: 860px) {
  .titleBar {
    position: fixed;
    top: 0;
    overflow: visible;
  }

  .titleBar .menu {
    position: fixed;
    box-sizing: border-box;
    color: #fff;
    background-color: rgba(238,238,238,0.99);
    top: 0;
    right: -210px;
    left: auto;
    height: 100%;
    bottom: 0;
    padding: 0;
    width: 200px;
    max-width: 200px;
    overflow: hidden;
    box-shadow: -5px -5px 3px -1px rgba(0,0,0,0.5);
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
  }

  .titleBar .menu .socialmediabuttons {
    position: relative;
    margin-top: 0px;
    left: 0px;
    z-index: 100;
  }

  .titleBar .menu.visible {
    right: 0px;
  }

  .titleBar .menu a {
    display: block;
    padding: 0 10px;
    margin: 0;
    text-transform: capitalize;
  }

  .titleBar .menu .socialmediabuttons a {
    display: inline-block;
    padding-right: 0;
    margin: 0;
  }

  .titleBar .menu .nav-item:after {
    content: '';
  }

  .navigation-wrapper {
    width: 100px;
  }

  .navigation-wrapper a.show-menu {
    display: block;
    position: relative;
    float: right;
    background-image: url('/img/2016/menu.svg');
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    opacity: 1;
    background-size: 30px 30px;
    background-position: center center;
    text-indent: 40px;
    overflow: hidden;
    top: 0;
    right: 0;
    padding: 0;
  }

  .navigation-wrapper a.show-menu:hover {
    background-color: #CCCCCC;
  }

  .titleBar .menu a.hide-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    background-image: url('/img/2016/close.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
    width: 40px;
    height: 40px;
    text-indent: 40px;
    overflow: hidden;
  }

  .titleBar .menu a.hide-menu:hover {
    background-color: #CCCCCC;
  }

  .contents {
    padding-top: 120px;
  }

  .pages li {
    display: none;
  }

  .pages li.current {
    display: inline-block;
  }

  .pages li.page-count {
    display: inline-block;
  }

  .pages li.page-count:before {
    content: ' / ';
  }

  .pages .next .label,
  .pages .previous .label {
    display: none;
  }

  .shop .products article.product {
    width: 33%;
  }

  .basket .product h1 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 640px) {
  .contents {
    padding-top: 60px;
  }

  .shop .title .half {
    float: none;
    width: 100%;
  }

  .shop .title .half:first-child {
    padding-bottom: 0;
  }

  .shop .title .half:last-child {
    padding-top: 0;
  }

  .shop .title nav.functions {
    text-align: left;
  }

  .shop .products article.product {
    width: 50%;
  }

  .content {
    max-width: none;
  }

  .primary {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .secondary {
    width: 100%;
    padding: 0;
    max-width: none;
  }

  .blog-entry-lead figure {
    margin-bottom: 0;
  }

  .sub-themes {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .contents {
    padding-top: 60px;
  }

  .shop .title .half {
    float: none;
    width: 100%;
  }

  .shop .products article.product {
    width: 100%;
  }

  .product-details-wrapper .product-sizer,
  .product-details-wrapper .media-sizer {
    display: none;
  }

  .product-details-wrapper .product-contents,
  .product-details-wrapper .media-overlay {
    position: relative;
    height: auto;
  }
}

/**** END BUNDLE: somewhere.css ****/

