/*
	common.css - the primary styles
	
	Author: Laza
*/


/*! normalize.css v1.1.2 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
audio,canvas,video{display:inline-block;*display:inline;*zoom:1}
audio:not([controls]){display:none;height:0}
[hidden]{display:none}
html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
html,button,input,select,textarea{font-family:sans-serif}
body{margin:0}
a:focus{outline:thin dotted}
a:active,a:hover{outline:0}
h1{font-size:2em;margin:.67em 0}
h2{font-size:1.5em;margin:.83em 0}
h3{font-size:1.17em;margin:1em 0}
h4{font-size:1em;margin:1.33em 0}
h5{font-size:.83em;margin:1.67em 0}
h6{font-size:.67em;margin:2.33em 0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:bold}
blockquote{margin:1em 40px}
dfn{font-style:italic}
hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}
mark{background:#ff0;color:#000}
p,pre{margin:1em 0}
code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}
pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}
q{quotes:none}
q:before,q:after{content:'';content:none}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-0.5em}
sub{bottom:-0.25em}
dl,menu,ol,ul{margin:1em 0}
dd{margin:0 0 0 40px}
menu,ol,ul{padding:0 0 0 40px}
nav ul,nav ol{list-style:none;list-style-image:none}
img{border:0;-ms-interpolation-mode:bicubic}
svg:not(:root){overflow:hidden}
figure{margin:0}
form{margin:0}
fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0;white-space:normal;*margin-left:-7px}
button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}
button,input{line-height:normal}
button,select{text-transform:none}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}
button[disabled],html input[disabled]{cursor:default}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}
input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
textarea{overflow:auto;vertical-align:top}
table{border-collapse:collapse;border-spacing:0}

/* HTML5 Boilerplate prefix styles - h5bp.com */
html,button,input,select,textarea{color:#222}
body{font-size:1em;line-height:1.4}
::-moz-selection{background:#b3d4fc;text-shadow:none}
::selection{background:#b3d4fc;text-shadow:none}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
img{vertical-align:middle}
fieldset{border:0;margin:0;padding:0}
textarea{resize:vertical}
.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}

html {
	height: 100%;
	min-height: 100%;
}
body {
	height: 100%;
	overflow: auto;
	font-family: Segoe, "Segoe UI", Tahoma, Geneva, "Nimbus Sans L", sans-serif;
	font-size: 13px;
	line-height: 1.385;
	color: #bbbbbb;
	background-color:#222222;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
select, input, textarea {  
	color: #444;
}
input[type=text]::-ms-clear {
    display: none;
}
a, a:active, a:visited {
	color: #dddddd;
	text-decoration: none;
}
a:hover {
	color: #ffffff;
}
a img {	border: none; text-decoration: none; }
h1,h2,h3 { font-weight: normal; margin: 0 0 0.2em 0; line-height: 1.2; }
h4,h5,h6 { font-weight: bold; margin: 0 0 0.5em 0; }
h1 { font-size: 300% }
h2 { font-size: 200%; }
h3 { font-size: 140%; }
h4 { font-size: 115%; }
h5 { font-size: 100%; }
h6 { font-size: 90%; }

video, audio { 
	vertical-align: top; 
}

.chromeframe { position: relative; z-index: 9999; }
.chromeframe a { color: #ffffff; }
.chromeframe a:hover { color: #ff0000; } 

.addtop { 
	margin-top: 10px; 
}

.center {
	text-align: center;
}

.hook { 
	position: absolute;
	display: none;
}


/******************************************* Tooltip */

.tooltip {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	padding: 6px;
	color: #000;
	max-width: 240px;
	z-index: 99999;
	background-color: rgba(255,255,255,0.9);
	-moz-border-radius:3px; border-radius:3px;
	-moz-box-shadow:1px 3px 8px rgba(0,0,0,0.4); -webkit-box-shadow:1px 3px 8px rgba(0,0,0,0.4); box-shadow:1px 3px 8px rgba(0,0,0,0.4);
}
.no-rgba .tooltip {
	background-color: transparent;
	background-image: url(w80.png);
}
.tooltip > .nub {
	position: absolute;
	display: block;
	padding: 0;
	margin-left: 50%;
	left: -5px;
	top: -10px;
	width: 0;
	height: 0;
	border: solid 5px;
	border-color: transparent transparent rgba(255,255,255,0.9) transparent;
}
.tooltip.valign-top > .nub {
	top: auto;
	bottom: -10px;
	border-color: rgba(255,255,255,0.9) transparent transparent transparent;
}
.tooltip.valign-middle > .nub {
	margin-left: 0;
	top: 50%;
	margin-top: -5px;
}
.tooltip.valign-middle.align-left > .nub {
	left: auto;
	border-color: transparent transparent transparent rgba(255,255,255,0.9);
	right: -10px;
}
.tooltip.valign-middle.align-right > .nub {
	left: -10px;
	border-color: transparent rgba(255,255,255,0.9) transparent transparent;
}
.tooltip a {
	color: #000;
}
.tooltip span.nr {
	font-size: 80%;
	line-height: 1.8;
	vertical-align: top;
	font-weight: bold;
	font-style: normal;
	padding: 1px 3px;
	color: #ddd;
	background-color: #222;
	-moz-border-radius:3px; border-radius:3px;
}
.tooltip #breadcrumb a {
	display: block;
	padding: 3px 5px;
}
.tooltip #breadcrumb a:hover {
	background-color: #000;
	color: #fff;
}
.tooltip.regions a {
	display: block;
	font-size: 85%;
	color: #000;
	padding: 2px 4px;
	line-height: 1.8;
}
.tooltip.regions a:hover {
	color: #fff;
	background-color: #000;
}
.tooltip small b {
	background-color: #ddd;
	padding: 1px 2px;
	-moz-border-radius:3px; border-radius:3px;
}
.tooltip form {
	display: inline-block;
	position: relative;
	margin: 3px;
}
.tooltip form input {
	background-color: #fff;
	vertical-align: middle;
}
.tooltip.slideshowdelay input,
.tooltip form input.searchtext {
	padding: 2px 20px 2px 6px;
	height: 20px;
	line-height: 20px;
	-moz-border-radius:3px; border-radius:3px;
	border: 1px solid #bbb;
	-moz-box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4); -webkit-box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4); box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4);
}
.tooltip.slideshowdelay input {
	width: 30px;
}
.tooltip form input.searchtext {
	width: 120px;
}
.tooltip form a.button {
	display: block;
	position: absolute;
	top: 3px;
	right: 3px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	background-image: url(ok.png);
	background-position: 0 0;
	background-repeat: no-repeat;	
	z-index: 99999;
	cursor: pointer;
	-moz-border-radius: 0 2px 2px 0;
	border-radius: 0 2px 2px 0;
	-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.4); -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.4); box-shadow:0px 1px 2px rgba(0,0,0,0.4);
}
.tooltip form a.button:hover {
	background-position: 0 -40px;
}
.tooltip p.info {
	margin: 0;
	max-width: 160px;
	color: #666;
	font-size: 80%;
	line-height: 1;
}
.tooltip input.fullw {
	margin: 0.2em 0;
	padding: 0 1%;
	width: 96%;
}

.tooltip a.original, 
.tooltip .sizes a {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 0 0.5em;
	padding: 2px 4px;
	font-size: 80%;
	background-color: rgba(17,119,176,1);
	color: #ddd;
	-moz-border-radius:3px; border-radius:3px;
} 
.tooltip .sizes a:first-child {
	margin-left: 0;
}
.tooltip a.original:hover
.tooltip .sizes a:hover {
	background-color: rgba(0,102,153,1);
	color: #fff;
}	

/******************************************* Modal windows v2 */

._m_window {
	position: absolute;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	outline: none;
	z-index: 99998;
}
._m_window.darken {
	background-color: rgba(0,0,0,0.6);
}
.no-rgba ._m_window.darken {
	background-color: transparent;
	background-image: url(k60.png);
}
._m_panel {
	position: absolute;
	overflow: hidden;
	/*left: -10000px;*/
	-moz-border-radius:9px; border-radius:9px;
	-moz-box-shadow:2px 5px 16px rgba(0,0,0,0.4); -webkit-box-shadow:2px 5px 16px rgba(0,0,0,0.4); box-shadow:2px 5px 16px rgba(0,0,0,0.4);
}
._m_head {
	position: relative;
	height: 30px;
	line-height: 30px;
	-moz-border-top-left-radius:9px; -moz-border-top-right-radius:9px; border-top-left-radius:9px; border-top-right-radius:9px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box; 
	-ms-touch-action: none;
	touch-action: none;
}
._m_head h5 {
	position: absolute;
	text-align: center;
	margin: 0;
	left: 35px;
	right: 35px;
	color: #666;
	overflow: hidden;
}
._m_head span {
	position: absolute;
	display: inline-block;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	color: #222;
	text-align: center;
	font-weight: bold;
	-moz-border-radius: 9px 0 0 0;
	border-radius: 9px 0 0 0;
	border-right: 1px solid rgba(0,0,0,0.2);
}
._m_head span.error {
	background-color: rgba(255,0,0,0.5);
}
._m_head span.warning {
	background-color: rgba(255,242,0,0.5);
}
._m_head a.close {
	position: absolute;
	display: inline-block;
	right: 0;
	top: 0;
	cursor: default;
	text-align: center;
	min-width: 30px;
	height: 30px;
	line-height: 30px;
	-moz-border-radius: 0 9px 0 0;
	border-radius: 0 9px 0 0;
	background-repeat: no-repeat;
}
._m_head span, 
._m_head a.close {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.no-rgba ._m_head a.close {
	background-color: transparent;
}
._m_head a.close:hover {
	background-color: rgba(0,0,0,0.2);
}
.no-rgba ._m_head a.close:hover {
	background-color: transparent;
}
.no-cssgradients ._m_head a.close {
	border-radius: 0;
}
._m_cont {
	position: relative;
	overflow: hidden;
	padding-bottom: 16px;
	-moz-border-bottom-left-radius:9px; -moz-border-bottom-right-radius:9px; border-bottom-left-radius:9px; border-bottom-right-radius:9px;
}
._m_cont a { color: #39c; }
._m_cont a:hover { color: #3bf; }
._m_cont_i {
	padding: 16px 16px 0 16px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	color: #444;	
}
._m_panel a.resize {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 14px;
	height: 14px;
	cursor: nwse-resize;
	z-index: 99999;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOBAMAAADtZjDiAAAAA3NCSVQICAjb4U/gAAAAElBMVEX////29vYAAAD29vYgICAYGBgbQ3DVAAAABnRSTlMAESJVZoiDrvV+AAAACXBIWXMAAAsSAAALEgHS3X78AAAAFnRFWHRDcmVhdGlvbiBUaW1lADEyLzA0LzEzSpgBewAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAApSURBVAiZY2BABioQiikYQqsaoHFVIFyIgKoBWB4Hl8WABaybEQiRAAAa2QVZvCefFQAAAABJRU5ErkJggg==);
	-ms-touch-action: none;
	touch-action: none;
}

#dialog ._m_cont_i {
	text-align: center;
}

.no-touch ._m_window ::-webkit-scrollbar {
	width: 14px;
	height: 14px;
}


._m_head {
	border-bottom: 1px solid #000;
	background-color: #222;
	background-image: -moz-linear-gradient(top, #444 0%,#282828 50%,#202020 50%,#000 100%);
	background-image: -webkit-linear-gradient(top, #444 0%,#282828 50%,#202020 50%,#000 100%);
	background-image: -o-linear-gradient(top, #444 0%,#282828 50%,#202020 50%,#000 100%);
	background-image: -ms-linear-gradient(top, #444 0%,#282828 50%,#202020 50%,#000 100%);
	background-image: linear-gradient(top, #444 0%,#282828 50%,#202020 50%,#000 100%);
	filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#444444',endColorstr='#000000');
}
._m_head h5,
._m_head span,
._m_head a.close {
	color: #888;
	text-shadow:-1px -1px 1px rgba(0,0,0,0.6);
}
._m_head a.close {
	background-color: rgba(255,255,255,0.1);
	border-left: 1px solid #000;
}
.no-rgba ._m_head a.close {
	background-image: url(w10.png);
}
._m_head a.close:hover {
	color: #888;
	background-color: rgba(255,255,255,0.2);
}
.no-rgba ._m_head a.close:hover {
	background-image: url(w20.png);
}
._m_cont {
	background-color: #222;
	background-color: rgba(34,34,34,0.95);
	border-top: 1px solid #333;
}
._m_cont a { color: #9cf; }
._m_cont a:hover { color: #adf; }
._m_cont_i { color: #ccc; }

.no-touch ._m_window ::-webkit-scrollbar-corner {
	background-color: #111;
}
.no-touch ._m_window ::-webkit-scrollbar-thumb {
	background-color: #555;
	border: 2px solid #000;
}
.no-touch ._m_window ::-webkit-scrollbar-track {
	background-color: #111;
}


/******************************************* Buttons for modal windows */

._m_cont .buttons {
	display: block;
	clear: both;
	margin-top: 10px;
	text-align: center;
	line-height: 30px;
}
._m_cont .buttons a {
	padding: 0 10px;
	margin: 5px 2px;
	display: inline-block;
	min-width: 80px;
	text-align: center;
	color: #eee;
	cursor: default;
	white-space: nowrap;
	-moz-border-radius:3px; border-radius:3px;
	background-color: #555;
	background-image: -moz-linear-gradient(top, rgba(51,51,51,1), rgba(15,15,15,1) );
	background-image: -webkit-linear-gradient(top, rgba(51,51,51,1), rgba(15,15,15,1) );
	background-image: -o-linear-gradient(top, rgba(51,51,51,1), rgba(15,15,15,1) );
	background-image: -ms-linear-gradient(top, rgba(51,51,51,1), rgba(15,15,15,1) );
	background-image: linear-gradient(top, rgba(51,51,51,1), rgba(15,15,15,1) );
	filter: progid: DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#FF333333,EndColorStr=#FF0F0F0F);
	-ms-filter: "progid: DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#FF333333,EndColorStr=#FF0F0F0F)";
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.4); -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.4); box-shadow:0px 1px 2px rgba(0,0,0,0.4);
}

._m_cont .buttons a.active,
._m_cont .buttons a:hover {
	color: #fff;
	background-image: -moz-linear-gradient(top, rgba(17,119,176,1), rgba(0,102,153,1) );
	background-image: -webkit-linear-gradient(top, rgba(17,119,176,1), rgba(0,102,153,1) );
	background-image: -o-linear-gradient(top, rgba(17,119,176,1), rgba(0,102,153,1) );
	background-image: -ms-linear-gradient(top, rgba(17,119,176,1), rgba(0,102,153,1) );
	background-image: linear-gradient(top, rgba(17,119,176,1), rgba(0,102,153,1) );
	filter: progid: DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#FF1177aa,EndColorStr=#FF006699);
	-ms-filter: "progid: DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#FF1177aa,EndColorStr=#FF006699)";
}

/******************************************* Cookie policy */

#cookiepolicy {
	position: absolute;
	position: fixed;
	display: none;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0.5em;
	background-color: rgba(0,0,0,0.7);
	font-size: 0.85rem;
	cursor: pointer;
	z-index: 999999;
}

#cookiepolicy p {
	margin: 0;
	color: #ccc;
	text-align: center;
}

#cookiepolicy p a {
	margin: 0 0.25em;
	color: #0f0;
}

#cookiepolicy p a.btn {
	color: #fff;
	background-color: #0c0;
	padding: 0.2em 0.4em;
	border-radius: 3px;
}

/******************************************* Search results window */

.searchresults > form {
	position: relative;
	margin: 0 0 0.5em 0;
}
.searchresults > form input {
	padding: 2px 10% 2px 2%;
	height: 20px;
	width: 88%;
	line-height: 20px;
	border: none;
	background-color: #f4f4f4;
	-moz-border-radius:5px; border-radius:5px;
	-moz-box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4); -webkit-box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4); box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4);
}
.searchresults > form a.button {
	display: block;
	position: absolute;
	top: 3px;
	right: 3px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	background-image: url(ok.png);
	background-position: 0 0;
	background-repeat: no-repeat;	
	z-index: 99999;
	cursor: pointer;
	-moz-border-radius:3px; border-radius:3px;
	-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.4); -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.4); box-shadow:0px 1px 2px rgba(0,0,0,0.4);
}
.searchresults > form a.button:hover {
	background-position: 0 -20px;
}
.searchresults > p:first-child {
	margin-top: 0;
}
.searchresults > a {
	margin: 4px 0;
	clear: both;
	display: block;
	color: #555;
	text-align: left;
	padding: 6px;
	background-color: #fff;
	zoom: 1;
	-moz-border-radius:5px; border-radius:5px;
	-moz-box-shadow:1px 3px 8px rgba(0,0,0,0.4); -webkit-box-shadow:1px 3px 8px rgba(0,0,0,0.4); box-shadow:1px 3px 8px rgba(0,0,0,0.4);
}
.searchresults > a.active {
	background-color: #ddd;
}
.searchresults > a: before, 
.searchresults > a: after { content: "\0020"; display: block; height: 0; visibility: hidden; } 
.searchresults > a: after { clear: both; }
.searchresults > a:hover,
.searchresults > a:focus {
	padding: 4px;
	border: 2px solid #999;
	color: #222;
}
.searchresults > a aside {
	float: left;
	display: inline-block;
	width: 20%;
	min-width: 60px;
	margin-right: 10px;
}
.searchresults > a aside img {
	max-width: 100%;
	height: auto;
}
.searchresults > a h5,
.searchresults > a p {
	margin: 0 0 0.5em 0;
	overflow: hidden;
}
.searchresults > a em {
	font-style: normal;
	background-color: #ff9;
}

/******************************************* Feedback form */

.feedback > form {
	position: relative;
	margin: 0 0 0.5em 0;
}
.feedback > form p {
	margin: .5em 0;
}
.feedback > form p:first-child {
	margin-top: 0;
}
.feedback > form textarea,
.feedback > form input {
	padding: 4px 2%;
	width: 96%;
	background-color: #f8f8f8;
	border: none;
	-moz-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.2); -webkit-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.2); box-shadow:inset 0px 1px 3px rgba(0,0,0,0.2);
	-moz-border-radius:5px; border-radius:5px;
}
.feedback > form input {
	line-height: 1.5em;
	height: 1.5em;
}
.feedback > form > p textarea {
	height: 8.5em;
}
.feedback > form > div {
	margin: 4px 0;
	clear: both;
	display: block;
	color: #555;
	text-align: left;
	padding: 6px;
	background-color: #fff;
	zoom: 1;
	-moz-border-radius:5px; border-radius:5px;
	-moz-box-shadow:1px 3px 8px rgba(0,0,0,0.4); -webkit-box-shadow:1px 3px 8px rgba(0,0,0,0.4); box-shadow:1px 3px 8px rgba(0,0,0,0.4);
}
.feedback > form > div: before, 
.feedback > form > div: after {  clear: both; content: "\0020"; display: block; height: 0; visibility: hidden; } 
.feedback > form > div aside {
	float: left;
	display: inline-block;
	margin-right: 10px;
	width: 30%;           
	min-width: 60px;
	max-width: px;
}
.feedback > form > div > div {
	position: relative;
	overflow: hidden;
}
.feedback > form > div aside img {
	max-width: 100%;
	height: auto;
}
.feedback > form a.remove {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	display: inline-block;
	position: absolute;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	right: -6px;
	top: -6px;
	color: #999;
	cursor: pointer;
}
.feedback > form a.remove:hover {
	color: #f00;
}
.feedback > form label {
	font-size: 80%;
	color: #666;
	display: block;
	margin-bottom: 0.5em;
}
.feedback > form > div textarea {
	height: 4.5em;
	background-color: #fff;
}

/******************************************* Shop multiple items */

.shopall {
	text-align: center;
}
.shopall ul.thumbs {
	width: auto;
	margin: 0 0 15px 0;
	padding: 0;
	list-style-type: none;
}
.shopall ul.thumbs li {
	position: relative;
	display: inline-block;
	margin: 1px;
	text-align: center;
	width: 48px;
	height: 36px;
	line-height: 36px;
}
.shopall ul.thumbs li img {
	width: auto;
	height: auto;
	max-width: 48px;
	max-height: 36px;
}

.shopall ul.thumbs li a.remove {
	display: inline-block;
	position: absolute;
	width: 20px;
	height: 20px;
	text-align: center;
	right: 0;
	top: 0;
	font-size: 150%;
	line-height: 1;
	color: #999;
	cursor: pointer;
}
.shopall ul.thumbs li a.remove:hover {
	color: #f00;
}

/******************************************* Help window */

.help {
	font-size: 12px;
}
.help ul { 
	clear: both;
	margin: 0;
	background-repeat: no-repeat;
	background-position: left 8px;
	padding: .5em 0 .5em 360px;
	list-style-type: none;
}
.help .index {
	background-image: url(helpsplash.png);
	min-height: 160px;
}
.help .slide { 
	background-image: url(helpgallery.png);
	min-height: 260px;
}
.help ul: after { 
	clear: both;
}
.help ul:first-child {
	margin-top: 0;
}
.help ul:last-child {
	margin-bottom: 0;
	border-bottom: none;
}
.help li {
	text-align: left;
	text-indent: -30px;
	line-height: 2;
}
.help li em {
	padding: 2px 5px;
	margin-left: 10px;
	font-style: normal;
	font-size: 85%;
	white-space: nowrap;
	border: 1px solid #999;	
	-moz-border-radius:3px; border-radius:3px;
}
.help li b {
	padding: 2px 5px;
	font-weight: bold;
	white-space: nowrap;
	-moz-border-radius:3px; border-radius:3px;
}
.help li span {
	padding: 2px 5px;
	margin-right: 10px;
	font-weight: bold;
	-moz-border-radius:3px; border-radius:3px;
}
#help ._m_cont p {
	text-align: center;
	margin: 0.5em 0 0 0;
}
.help li b {
	background-color: #000;
}
.help li span {
	background-color: #ccc;
	color: #333;
}

/******************************************* Generic controls */

.controls a,
a.control {
	background-image: url(controls.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

.controls a:hover,
a.control:hover {
	background-position: -70px inherit;
}

/******************************************* Main layout elements */

#widgetbg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 25px;
	z-index: 1;
}
#mainbg {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 25px;
	z-index: 0;
}
#main {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 25px;
	overflow: auto;
	z-index: 10;
	-webkit-text-size-adjust: 120%;
	zoom: 1;
}

#main header {
	position: relative;
}

#main .items {
	-ms-overflow-style: -ms-autohiding-scrollbar;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}


#main .container {
	position: relative;
	width: 940px;
	height: 100%;
	max-height: 100%;
	zoom: 1;
	margin: 0 auto;
}
#main header {
	margin-left: 4px;
}
#main header .title aside {
	float: right;
	margin-top: 20px;
}
#main header .title .controls:first-child {
	-moz-border-top-left-radius:5px; -moz-border-bottom-left-radius:5px; border-top-left-radius:5px; border-bottom-left-radius:5px;
}
#main header .title .controls:last-child {
	-moz-border-top-right-radius:5px; -moz-border-bottom-right-radius:5px; border-top-right-radius:5px; border-bottom-right-radius:5px;
}
#main header .description {
	clear: both;
}
.starttxt {
	font-size: 140%;
}
#main .items {
	width: 928px;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
}
#navigation {
	text-align: center;
	background-color: rgba(0,0,0,0.7);
	border-bottom: 1px solid rgba(0,0,0,0.4);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.4);
	box-shadow: 0 1px 1px rgba(0,0,0,0.4);
	z-index: 998;
}

#main header {
	margin-left: 20px;
}
#main .items {
	position: absolute;
	left: 16px;
	top: 260px;
	bottom: 0;
	min-height: 200px;
	-ms-touch-action: none;
	-ms-touch-select: none;
	touch-action: none;
}
.page #main .items {
	top: 140px;
}
.sub-album #main .items {
	top: 260px;
}


/******************************************* Scroller controls */

.scrup,
.scrdn {
	position: absolute;
	right: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	background-repeat: no-repeat;
	background-image: url(pg.png);
}
.scrup {
	top: 0;
	z-index: 990;
	background-position: 0 -20px;
}
.scrdn {
	bottom: 0;
	z-index: 991;
	background-position: 0 -40px;
}
.scrup:hover {
	background-position: -20px -20px;
}
.scrdn:hover {
	background-position: -20px -40px;
}
.scrbar {
	position: absolute;
	right: 3px;
	width: 14px;
	top: 20px;
	bottom: 20px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	background-color: rgba(255,255,255,0.3);
	-moz-box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4); -webkit-box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4); box-shadow:inset 0px 2px 4px rgba(0,0,0,0.4);
}
.no-rgba .scrbar {
	background-color: transparent;
	background-image: url(w40.png);
}
.scrbar div {
	position: absolute;
	top: 2px;
	left: 2px;
	right: 2px;
	height: 5px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	background-color:#222222;
	-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.4); -webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.4); box-shadow:0px 1px 2px rgba(0,0,0,0.4);
}
.scrbar div img {
	width: 100%;
	height: 100%;
}

/******************************************* Header */

#main header {
	width: 900px;
	height: 240px;
	max-height: 100%;
	z-index: 10;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0.2);
	background-size: 100% auto;
	-moz-box-shadow:1px 3px 8px rgba(0,0,0,0.6); -webkit-box-shadow:1px 3px 8px rgba(0,0,0,0.6); box-shadow:1px 3px 8px rgba(0,0,0,0.6);
	-moz-border-bottom-left-radius:9px; -moz-border-bottom-right-radius:9px; border-bottom-left-radius:9px; border-bottom-right-radius:9px;
}
#main header.same {
}
.ie7 #main header {
	max-height: none;
}
.page #main header {
	height: 120px;
}
.sub-album #main header {
	height: 240px;
}
#main header > .pattern {
	position: relative;
	height: 100%;
	-moz-border-bottom-left-radius:9px; -moz-border-bottom-right-radius:9px; border-bottom-left-radius:9px; border-bottom-right-radius:9px;
}
#main header .title {
	padding: 0 20px;
	max-height: 240px;
	overflow: hidden;
	color: #fff;
	background-color: transparent;
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.6), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0.6), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0.6), rgba(0,0,0,0));
	background-image: linear-gradient(top, rgba(0,0,0,0.6), rgba(0,0,0,0));
	filter: progid: DXImageTransform.Microsoft.Gradient(startColorstr='#99000000',endColorstr='#00000000');
}
.page #main header .title {
	max-height: 120px;
}
.sub-album #main header .title {
	max-height: 240px;
}
#main header .title .upbtn {
	float: left;
	margin: 20px 20px 0 0;
}
#main header .title .controls {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: rgba(0,0,0,0.6);
}
.no-rgba #main header .title .controls {
	background-color: transparent;
	background-image: url(k60.png);
}
#main header .title .controls a {
	display: block;
}
#main header .title .controls:hover {
	background-color: rgba(0,0,0,0.8);
}
.no-rgba #main header .title .controls:hover {
	background-color: transparent;
	background-image: url(k80.png);
}
#main header .share a {
	background-position: -735px -15px;
}
#main header .download a {
	background-position: -835px -15px;
}
#main header .new a {
	background-position: -885px -15px;
}
#main header .search a {
	background-position: -685px -15px;
}
#main header .about a {
	background-position: -935px -15px;
}
#main header .parent a {
	background-position: -5px -15px;
}
#main header .share a:hover {
	background-position: -735px -85px;
}
#main header .download a:hover {
	background-position: -835px -85px;
}
#main header .new a:hover {
	background-position: -885px -85px;
}
#main header .search a:hover {
	background-position: -685px -85px;
}
#main header .about a:hover {
	background-position: -935px -85px;
}
#main header .parent a:hover {
	background-position: -5px -85px;
}

/* Page title and description */
#main header .hgroup {
	margin-top: 10px;
	padding: 10px 0;
	margin-right: 110px;
	overflow-x: hidden;
	max-height: 200px;
	overflow: hidden;
}
.page #main header .hgroup {
	max-height: 80px;
}
.sub-album #main header .hgroup {
	max-height: 200px;
}
#main header h1 {
	font-weight: normal;
	line-height: 1.1;
    text-overflow: ellipsis;
	text-shadow:2px 3px 6px rgba(0,0,0,0.5);
}
#main header .description {
	display: inline-block;
	font-weight: normal;
	padding: 3px 5px;
	text-shadow:2px 3px 6px rgba(0,0,0,0.5);
	-moz-border-radius:3px; border-radius:3px;
}
.no-rgba #main header .description {
	background-color: transparent;
	background-image: url(k20.png);
}
#main header .description {
	background-color: transparent;
	transition: background-color 500ms linear;
	-webkit-transition: background-color 500ms linear;
	-moz-transition: background-color 500ms linear;
	-ms-transition: background-color 500ms linear;
}
#main header .description:hover {
	background-color: rgba(0,0,0,0.2);
}
.no-rgba #main header .description:hover {
	background-color: transparent;
	background-image: url(k20.png);
}
#main header .description a {
	text-decoration: underline;
	color: #fff;
}
#main header .description a:hover {
	color: #adf;
}
/* Breadcrumb path */
#main header .breadcrumb {
	font-size: 90%;
	display: block;
	margin: 0.2em 0 0.4em 0;
}
#main header .breadcrumb div {
	display: inline-block;
	overflow: hidden;
	-moz-border-radius:5px; border-radius:5px;
	background-color: rgba(0,0,0,0.2);
	-moz-box-shadow:inset 0px 4px 10px rgba(0,0,0,0.4); -webkit-box-shadow:inset 0px 4px 10px rgba(0,0,0,0.4); box-shadow:inset 0px 4px 10px rgba(0,0,0,0.4);
}
.no-rgba #main header .breadcrumb div {
	background-color: transparent;
	background-image: url(k20.png);
} 
#main header .breadcrumb a {
	display: inline-block;
	font-weight: bold;
	padding: 0 0.5em;
	line-height: 2em;
	height: 2em;
	color: #ddd;
	text-shadow:1px 2px 4px rgba(0,0,0,0.5);
}
#main header .breadcrumb a:hover,
#main header .breadcrumb a:focus {
	color: #fff;
	background-color: rgba(0,0,0,0.5);
}
#main header .breadcrumb a:first-child {
	-moz-border-top-left-radius:5px; -moz-border-bottom-left-radius:5px; border-top-left-radius:5px; border-bottom-left-radius:5px;
}
#main header .breadcrumb a:last-child {
	-moz-border-top-right-radius:5px; -moz-border-bottom-right-radius:5px; border-top-right-radius:5px; border-bottom-right-radius:5px;
}

/*********************************** Start slideshow */

.startshow {
	position: absolute;
	overflow: hidden;
	bottom: 20px;
	right: 20px;
	width: 90px;
	height: 90px;
	-moz-border-radius:5px; border-radius:5px;
	background-color: rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: background-color 500ms linear;
	-moz-transition: background-color 500ms linear;
	-ms-transition: background-color 500ms linear;
	transition: background-color 500ms linear;
}
.no-rgba .startshow {
	background-color: transparent;
	background-image: url(k20.png);
}
.startshow:hover {
	background-color: rgba(0,0,0,0.8);
}
.no-rgba .startshow:hover {
	background-color: transparent;
	background-image: url(k80.png);
}
.starttxt {
	float: right;
	height: 90px;
	padding: 0 90px 0 20px;
	line-height: 90px;
	color: #fff;
	overflow: hidden;
	text-align: right;
    text-overflow: ellipsis;
	white-space: nowrap;
	background-image: url(start.png);
	background-repeat: no-repeat;
	background-position: right 0;
}
.startshow:hover .starttxt {
	background-position: right -90px;
}

/*********************************** Left box = map and FB commenting */

.left-box {
	margin-top: 20px;
	margin-left: 4px;
	min-height: 120px;
}

/*********************************** Items */

#main .items > .cont {
	display: block;
	width: 908px;
	padding-right: 20px;
}

/*********************************** Footer */

#main footer {
	clear: both;
	display: block;
	margin: 10px 4px;
	text-align: center;
}
#main footer .wrap {
	padding: 0.5em 1em;
	-moz-border-radius:5px; border-radius:5px;
}
#main footer .wrap img {
	max-width: 100%;
}
#main footer .promotion,
#main footer .footer-links {
	font-size: 75%;
}
#main .footer em {
	font-style: italic;
}

/*******************************