html {
	height: 100%;
	margin: 0px;
	padding: 0px;
}

@font-face {
	font-family: 'noto_serifregular';
	src: url('/font/NotoSerif-Regular.ttf'); /* ../ */
	font-weight: normal;
	font-style: normal;
}

/* ----------------- fontello icons ---------------- */

@font-face {
    font-family: 'fontello';
    src: url('/font/fontello.eot?57592155'); /* ../ */
    src: url('/font/fontello.eot?57592155#iefix') format('embedded-opentype'),
        url('/font/fontello.woff?57592155') format('woff'),
        url('/font/fontello.ttf?57592155') format('truetype'),
        url('/font/fontello.svg?57592155#fontello') format('svg');	
    font-weight: normal;
    font-style: normal;
}

.fontello-icon {
	font-family: "fontello";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	/* margin-right: .2em; */
	text-align: center;
    /* opacity: .8; */
     
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
     
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
     
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    /* margin-left: .2em; */
     
    /* You can be more comfortable with increased icons size */
    /* font-size: 120%; */
     
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* ---------------------------------------------- */

body {
    margin: 0px;
	padding: 0px;
	height: 100%;
	font-family: noto_serifregular, arial, sans serif;
    font-size: 15px;
    background-color: #fff;
    color: #404040;
}

select, button {
	font-family: noto_serifregular;
}

* {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.body_cover {
	z-index: 1000;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
}

.notify {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 150px;
	background: white;
	padding: 5px;
	border-radius: 10px;
	z-index: 1001;	
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;	
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/* Style of chechbox */

label {
	display: inline;
}

.regular-checkbox {
	display: none;
}

.regular-checkbox + label {
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
}

.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox:checked + label {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

.regular-checkbox:checked + label:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: #99a1a7;
}


.big-checkbox + label {
	padding: 18px;
}

.big-checkbox:checked + label:after {
	font-size: 28px;
	left: 6px;
}

.tag {
	font-family: Arial, sans-serif;
	width: 200px;
	position: relative;
	top: 5px;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	float: left;
}

.button-holder {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin-bottom: 3px;
}

.button-holder div:nth-child(2) {
	margin-left: 5px;
}

/* RADIO */

.regular-radio {
	display: none;
}

.regular-radio + label {
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 50px;
	display: inline-block;
	position: relative;
}

.regular-radio:checked + label:after {
	content: ' ';
	width: 12px;
	height: 12px;
	border-radius: 50px;
	position: absolute;
	top: 3px;
	background: #99a1a7;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
	text-shadow: 0px;
	left: 3px;
	font-size: 32px;
}

.regular-radio:checked + label {
	background-color: #e9ecee;
	color: #99a1a7;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
}

.regular-radio + label:active, .regular-radio:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.big-radio + label {
	padding: 16px;
}

.big-radio:checked + label:after {
	width: 24px;
	height: 24px;
	left: 4px;
	top: 4px;
}

/* Style of select */

select {
	height: 30px;
	line-height: 30px;
	font: inherit;
	background: #eee;
	color: #404040;
	margin: 0 0 0 1px;
	padding: 0 25px 0 5px;
	border: 0;
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	
	background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
	
    background-position:
    calc(100% - 15px) calc(1em - 2px),
    calc(100% - 10px) calc(1em - 2px);
	
	background-size:
    5px 5px,
    5px 5px;
	
	background-repeat: no-repeat;
	
	box-shadow: 
	inset 0px 0px 5px rgba(0, 0, 0, 0.2)
}

select:-moz-focusring { /* Remove outline from select box in FF */
	color: transparent;
	text-shadow: 0 0 0 #000;
}
 
option {
	height: 30px;
	background: #eee;
	overflow: hidden;
	white-space: nowrap;  
}

input[type=text] {
	padding-left: 5px;
	font-size: 100%;
}

/* Style of search */

#search {
	display: flex;
	padding: 0 15px 0 15px;
	min-width: 500px;
}

#search form {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.flex-item-center {
	display: flex;
	align-items: center;
}

#query {
	width: 100%;
    height: 30px;
    padding: 5px 5px;
    float: left;    
    /* font: bold 100% 'lucida sans', 'trebuchet MS', 'Tahoma'; */
    border: 0;
    background: #eee;
	border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    -khtml-border-radius: 3px 0 0 3px;
}
 
#query:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
}

#search button {
	position: relative;
	height: 30px;
	width: 30px;
	margin-left: 1px;
	overflow: hidden;
	border: 0;
	cursor: pointer;
	border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    -khtml-border-radius: 0 3px 3px 0;
}

#search button:after {
	content: '\e806';
	font-family: 'fontello';
	font-size: 20px;
	color: orange;
	position: absolute;
	top: 50%;
	left: 50%;	
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	select {
		background-position:
		calc(100% - 15px) calc(1em - 4px),
		calc(100% - 10px) calc(1em - 4px);
	}
	#search_wrap {
		width: 100%;
	}
}

/* ----------- General blocks ----------- */

#fullarea {
	display: table;
	width: 100%;
}

#leftarea, #rightarea {
	display: table-cell;
	vertical-align: top;
	padding: 10px;
}

#leftarea {
	width: auto;	
}

#rightarea {
	/* text-align: center; */
	display: table-cell;
	width: 300px;
	padding: 10px 0 0 0;
}

#rightareacontent {
	display: block;
}

#top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;		
	width: 100%;
	height: 60px;
	border-collapse: collapse;
	background: #1d262d;
}

#footer {
	display: block;
	background: #1d262d;
	width: 100%;
}
	
#logo {
	display: flex;
	width: 200px;
	vertical-align: middle;
	padding-left: 10px;
}
	
a[rel=hideonlowres]  {
	display: list-item;
}

div[rel=hideonlowres] {
	display: block;
}

span[rel=hideonlowres] {
	display: inline;
}
	
.w_5perc  { width: 5%; }
.w_10perc { width: 10%; }
.w_15perc { width: 15%; }
.w_20perc { width: 20%; }
.w_25perc { width: 25%; }
.w_30perc { width: 30%; }
.w_33perc { width: 33%; }
.w_35perc { width: 35%; }
.w_40perc { width: 40%; }
.w_45perc { width: 45%; }
.w_50perc { width: 50%; }

.w_1perc_fixed { width: 1%; }
.w_2perc_fixed { width: 2%; }
.w_3perc_fixed { width: 3%; }
.w_4perc_fixed { width: 4%; }
.w_5perc_fixed { width: 5%; }
.w_6perc_fixed { width: 6%; }
.w_7perc_fixed { width: 7%; }
.w_8perc_fixed { width: 8%; }
.w_9perc_fixed { width: 9%; }
.w_10perc_fixed { width: 10%; }
.w_15perc_fixed { width: 15%; }
.w_20perc_fixed { width: 20%; }
.w_25perc_fixed { width: 25%; }
.w_30perc_fixed { width: 30%; }
.w_33perc_fixed { width: 33%; }
.w_35perc_fixed { width: 35%; }
.w_40perc_fixed { width: 40%; }
.w_45perc_fixed { width: 45%; }
.w_50perc_fixed { width: 50%; }

div[rel=showonlowres],
span[rel=showonlowres] {
	display: none;
}
	
/* ----------- Adaptive design ---------- */

@media (max-width: 768px)  {
	body {font-size: 120%;}
}

@media screen and (max-width: 768px) {
	
	#leftarea {
		width: 100%;
	}
	
	#rightarea {
		display: none;
	}
	
	#logo {
		display: none;
	}
	
	#search {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: 100%;
		min-width: 0;
	}
	
	select {
		background-position:
		calc(100% - 15px) calc(1em - 4px),
		calc(100% - 10px) calc(1em - 4px);
	}
	
	#query {
		width: 100%;
	}
	
	a[rel=hideonlowres], div[rel=hideonlowres], span[rel=hideonlowres] {
		display: none;
	}
	
	div[rel=showonlowres] {
		display: block;
	}
	
	span[rel=showonlowres] {
		display: inline;
	}
	
	.w_5perc,
	.w_10perc,
	.w_15perc,
	.w_20perc,
	.w_25perc,
	.w_30perc,
	.w_33perc,
	.w_35perc,
	.w_40perc,
	.w_45perc,
	.w_50perc { width: 100%; }
	
	.cell {
		display: block;
		width: 100%;
		text-align: left;
	}
	
	div[rel=user_data] {
		display: flex;
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	
	div[rel=user_avatar] img {
		height: 50px;
		margin-right: 10px;
	}
}

/* ------------- Common settings ------------ */

a,img {
    outline: none;
    border: 0px;
}

a:link,a:visited {color: #0066cc; text-decoration: none;}
a:active,a:hover {text-decoration: underline;}

div.adheader {
    font-size: 150%;
}

div.ad {
    font-size: 120%;
}

ul, li { margin: 0; padding: 0; border: 0; }

h3,h4 {
	text-align: center;
}

/* Wrap text */

.wrap, .wrap_b {
    background: #f6f6f6;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 5px;
}

.wrap_b {
    border: 1px #b3bbc1 solid;
}

/* ------------- Photos --------------- */

.img-hover-zoom {
	display: inline-block;
	width: 60px;
	height: 60px;
}

.img-hover-zoom img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: solid 1px #b3bbc1;
	transition: transform .5s ease;
	vertical-align: middle;
}

.img-hover-zoom:hover img {
	transform: scale(1.5);
}

.movie_cover_small {
	width: 50px;
    border-radius: 2px;	
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
}

.movie_image {
	position: relative;
	height: 200px;
	width: 100%;
	overflow: hidden;
}

.movie_image img {
	position: absolute;
	width: 100%;
	transition: transform .5s ease;
}

.movie_image:hover img {
	transform: scale(1.1);
}

.certificate {
	display: inline-block;
	color: white;
	font-size: 200%;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.shot {
	/*
	width: 171px;
	height: 171px;
	vertical-align: middle;
	
	width: 100%;
	height: 100%;
	float: left;
	*/
	position: absolute;
	width: 100%;
	/* height: 100%; */
	float: left;
}

.mini-shot {
	width: 100px;
	height: 100px;
	vertical-align: middle;
}

.nano-shot, .nano-shot-hl {
	width: 40px;
	height: 40px;
	vertical-align: middle;
	border: 3px solid transparent;
}

.nano-shot-hl {
	border: 3px solid #0caedf;
}

.actor {
	border: solid 1px #b3bbc1;
	padding: 4px;
	background: #fff;
	vertical-align: middle;
    border-radius: 50%;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
}

.bordered {
    border: solid 1px #b3bbc1;
}

/* -------------- TV --------------- */

.tv_time {
	font-weight: bold;
    color: #ec5f0f;
}

.tv_image {
	position: relative;
	display: inline-block;
	height: 40%;
	width: 100%;
	overflow: hidden;
}

div.tv_time {
	position: absolute !important;
	display: inline;
	bottom: 0px;
	width: 100%;
	height: 24px !important;
	line-height: 24px;
	background: rgba(255,255,255,.7);
	text-align: center;
	vertical-align: middle;
	z-index: 2;
}

div.tv_title {
	position: absolute !important;
	display: inline;
	height: 100% !important;
	text-align: center;
	z-index: 1;
}

div.tv_info {
	opacity: 0;
	position: absolute !important;
	left: -9999px;
	width: 100%;
	height: 100% !important;
	overflow: hidden;
	vertical-align: top;
	padding: 2px;
	background: #fff;
	z-index: 3;
	transition: opacity .3s ease;
}

.tv_image:hover + div > div {
	left: 0;
	opacity: 1;
}

.tv_image img {
	position: absolute;
	width: 100%;
	transition: transform .5s ease;
}

.tvannounce_for_index {
	display: inline-block;
	width: 0px;
	border: 1px #b3bbc1 dotted;
}

.tvannounce_for_index div {
	display: block;
	width: 100%;
	white-space: normal !important;
	position: relative;
}

.tvannounce_for_index div:nth-child(1) {
	display: block;
	height: 40%;
}

.tvannounce_for_index div:nth-child(2) {
	display: block;
	height: 60%;
	text-align: center;
}

.tv_channel {
	position: absolute !important;
	display: inline;
	bottom: 0px;
	width: 100%;
	height: 60px !important;
	line-height: 60px;
	text-align: center;
	vertical-align: middle;
	z-index: 1;
}

.tvannounce, div.tvannounce_for_country {
	width: 100%;
    border-bottom: 1px #b3bbc1 dotted;
}

div.tvannounce_for_country {
	display: table;
}

div.tvannounce_for_country {
	margin-top: 30px;
}

.tvannounce tr td {
    padding: 5px;
}

.tvannounce tr td:nth-child(1) {
	vertical-align: top;
	text-align: center;
	width: 100px;
}

.tvannounce tr td:nth-child(1) img {
    vertical-align: middle;
}

.tvannounce tr td:nth-child(2) {
	width: 20px;
	text-align: center;
	vertical-align: top;
}

.tvannounce tr td:nth-child(3),
div.tvannounce_for_country div {
	text-align: left;
	vertical-align: top;
}

.tvannounce tr td:nth-child(4) {
	width: 70px;
	text-align: right;
	vertical-align: middle;
}

.tvprogram {
	width: 100%;
	border-collapse: collapse;
}

.tvannounce:hover,
.tvprogram tr:hover {	
	background: #f0f0f0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.tvprogram tr td {
	vertical-align: top;
	padding: 5px;
}

.tvprogram tr td:nth-child(1) {
	width: 50px;
	text-align: right;
}

.tvprogram tr td:nth-child(2) {
	width: 20px;
	text-align: center;
}

.tv_announce_for_movie {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.tv_announce_for_movie tr td, .tv_announce_for_movie tr th {
	height: 30px;
}

.tv_announce_for_movie tr th {
	background: #0caedf;
	padding: 2px;
	vertical-align: top;
	color: #fff;
}

.tv_announce_for_movie tr td:nth-child(1) {
	width: 150px;
}

.tv_announce_for_movie tr td:nth-child(2) {
	width: 20px;
}

.tv_announce_for_movie tr td:nth-child(3) {
	width: 40px;
	text-align: center;
}

.tv_announce_for_movie tr td:nth-child(3) img {
	width: 30px;
	height: 30px;
}

.tv_announce_for_movie tr td:nth-child(4) img {
	padding-right: 3px;
}

.tv_announce_for_movie tr td:nth-child(5) {
	width: 60%;
	text-align: left;
}

.d {
	background-color: #404040;
	color: #fff;
	font-weight: bold;
}

div.tv_day_on, div.tv_day_off {
	border-bottom: 1px dotted #ec5f0f;
	display: table-cell;
	padding: 4px 0px 4px 0px;
	text-align: center;
	white-space: pre-wrap;
}

div.tv_day_on {
	color: white;
	background: #ec5f0f;
	font-weight: bold;
}

div.tv_day_off {
	color: white;
}

img.tvprogram {
	float: left;
	margin-right: 5px;
	width: 120px;
	height: 120px;
	vertical-align: middle;
}

.tv_image:hover img {
	transform: scale(1.1);
}

.channel_icon {
	width: 24px;
	padding-right: 5px;
	float: left;
	vertical-align: middle;
}

/* ---------  Arcs ---------- */

svg {
    height: 16px;
    width: 16px;
}

path {
	fill: #0081d6;
	stroke: #0081d6;
	stroke-width: 1;
}

circle {
    fill: #f1f1f1;
	stroke: #f1f1f1;
	stroke-width: 1;
}

/* ----------- TV marks ------------ */

.tv_mark_circle {
	display: inline-block !important;
	width: 24px !important;
	height: 24px !important;
	line-height: 24px !important;
	text-align: center;
	vertical-align: middle !important;
	padding: 0 !important;
	border: 1px solid #404040;
	background-image: -moz-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FAFAFA), to(#D8D8D8));
    background-image: -webkit-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -o-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -ms-linear-gradient(#FAFAFA, #D8D8D8);
	background: linear-gradient(#FAFAFA, #D8D8D8);
	margin-left: 5px;
	-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
}

.redb, .redg {
	color: red;
}

.blueb, .blueg {
	color: #0081d6;
}

.greyb, .greyg, .grey {
	color: #404040;
}

/* ------------ containers ----------- */

#container {
	display: block;
    max-width: 1200px;	
	min-height: 800px;
	margin: auto;
}

div.parentwrap {
	width: 100%;
    text-align: center;
}

.fullimagewrap {
	display: inline-block;
	width: 164px !important;
	height: 164px !important;
	margin: 10px 10px 0px 0px !important;
}

div.actor_wrap {
	width: 150px;
	padding: 5px;
	margin: 5px;
	text-align: center;
	display: inline-block;
    vertical-align: top;
	_display:inline;
    *display:inline;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* ----------- List of items ------------ */

table.oddeven {
	margin: auto;
	border-collapse: collapse;
	width: 100%;
}

table.oddeven td {
	padding: 5px;
	vertical-align: middle;
}

table.oddeven tr:nth-child(odd) {
	background-color: #FAFAFA;
}

table.movies tr td:nth-child(1) {
	width: 100px;
	vertical-align: top;
	text-align: center;
	padding: 10px;
}

table.movies tr td:nth-child(1) img {
	width: 80px;
	vertical-align: top;
}

table.movies tr td:nth-child(2) {
	text-align: left;
	vertical-align: top;
	padding: 10px 10px 10px 0;
}

.actormovies,
.topmovies,
.mymovies,
.moviesonline,
.missedatimdb {
	width: 100%;
}

.actormovies tr td,
.topmovies tr td,
.mymovies tr td,
.moviesonline tr td,
.missedatimdb tr td {
	vertical-align: top;
}

.actormovies tr td:nth-child(1) {
	width: 50px;
}

.actormovies tr td:nth-child(3) {
	width: 30px;
	text-align: right;
}

.topmovies tr td:nth-child(1) {
	width: 50px;
}

/*
.mymovies tr td:nth-child(1) {
	width: 20px;
	text-align: center;
}
*/

.mymovies tr td:nth-child(1) {
	width: 60px;
	text-align: left;
}

.mymovies tr td:nth-child(1) img {
	width: 50px;
}

.mymovies tr td:nth-child(2) {
	text-align: left;
}

.moviesonline tr td:nth-child(1) {
	width: 120px;
}

.missedatimdb tr td:nth-child(1) {
	width: 40px;
}

.missedatimdb tr td:nth-child(3) {
	text-align: right;
}

/* ---------- Language buttons ----------------- */

table.topmenu {
	width: 100%;
	border-collapse: collapse;
}

table.topmenu td {
	background-image: -moz-linear-gradient(#3bc1ed, #0081d6);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3bc1ed), to(#0081d6));
    background-image: -webkit-linear-gradient(#3bc1ed, #0081d6);
    background-image: -o-linear-gradient(#3bc1ed, #0081d6);
    background-image: -ms-linear-gradient(#3bc1ed, #0081d6);
    background-image: linear-gradient(#3bc1ed, #0081d6);
	border: 0px;
	padding: 0px;
}

/* ----------- Confirmations -------------- */

table.confirm {
	margin: 0 auto;
	border-collapse: collapse;
	width: 100%;
}

table.confirm td {
	padding: 5px;
	vertical-align: middle;
	text-align: center;
	background-color: #FAFAFA;
}

/*-------------------- blink ------------------------ */

.blink {
	font-weight: bold;
	color: orange;
	animation-name: blinker;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(1.0,0,0,1.0);
	animation-duration: 2s;
	-webkit-animation-name: blinker;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
	-webkit-animation-duration: 2s; 
}

@keyframes blinker {
	from { opacity: 1.0; }
	to { opacity: 0.5; }
}
 
@-webkit-keyframes blinker {
	from { opacity: 1.0; }
	to { opacity: 0.5; }
}

/* ------------------- Top menu --------------------- */

.toggle, [id^=drop] {
	display: none;
}

nav {
	margin: 0;
	padding: 0;
    background-color: #0081d6;
    background-image: -moz-linear-gradient(#3bc1ed, #0081d6);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3bc1ed), to(#0081d6));
    background-image: -webkit-linear-gradient(#3bc1ed, #0081d6);
    background-image: -o-linear-gradient(#3bc1ed, #0081d6);
    background-image: -ms-linear-gradient(#3bc1ed, #0081d6);
    background-image: linear-gradient(#3bc1ed, #0081d6);
	text-shadow: 0 1px 0 #000;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;	
}

#home {
	display: none;
}

nav:after {
	content: "";
	display: table;
	clear: both;
}

nav ul {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	z-index: 10;
	-moz-border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    -khtml-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
}

nav ul li {
	margin: 0px;
	display: inline-block;
	float: left;
}

.menu a {
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	color: #fff;
	text-decoration: none;
}

nav ul li a {
	line-height: 40px;
}

nav ul li ul li a {
	line-height: inherit;
	padding-top: 5px;
	padding-bottom: 5px;
}

nav ul li ul li {
	border-left: 3px solid transparent;
}

nav a:hover {
	text-decoration: none;
}

nav ul ul {
	position: absolute;
    visibility: hidden;
	opacity: 0;
	margin: 20px 0 0 0;
	top: 40px;
    background-color: #0081d6;
    background-image: -moz-linear-gradient(#3bc1ed, #0081d6);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3bc1ed), to(#0081d6));
    background-image: -webkit-linear-gradient(#3bc1ed, #0081d6);
    background-image: -o-linear-gradient(#3bc1ed, #0081d6);
    background-image: -ms-linear-gradient(#3bc1ed, #0081d6);
    background-image: linear-gradient(#3bc1ed, #0081d6);
	_margin: 0; /*IE6 only*/
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

nav ul li:hover > ul {
	display: inherit;
}

nav li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

nav ul li:first-child > a:after {
    content: '';
    position: absolute;
    left: 15px;
    top: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #3bc1ed;
}

nav ul li:hover {
	background: #0081d6;
}

nav ul li ul li:hover {
	background: rgba(0,0,0,.2);
	border-left: 3px solid rgba(255,255,255,.7);
}

nav ul li ul li:last-child:hover {
	-moz-border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    -khtml-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
}

nav ul ul li {
	min-width: 120px;
	float: none;
	display: list-item;
	position: relative;
}

nav ul ul ul li {
	position: relative;
	top: -40px;
	left: 180px;
}

li > a:after, .toggle:after {
	content: '\25BE';
}

li > a:only-child:after, .trigram:after {
	content: '';
}

.trigram {
	font-size: 130%;
}

.keyboard {
	background: #0081d6;
	padding: 2px;
}

/* Media Queries
--------------------------------------------- */

@media all and (max-width : 1023px) {
	
	#home {
		display: block;
	}
	
	nav ul {
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
		-khtml-border-radius: 0px;
		border-radius: 0px;
		width: 100%;
	}
	
	nav ul li ul li:last-child:hover {
		-moz-border-radius: 0px;
		-webkit-border-radius: 0px;
		-khtml-border-radius: 0px;
		border-radius: 0px;
	}
	
	nav ul li:first-child > a:after {
		content: '';
		border-left: 0px;
		border-right: 0px;
		border-bottom: 0px;
	}
	
	nav {
		margin: 0;
	}
	
	.toggle + a, .menu {
		display: none;
	}
	
	.toggle {
		display: block;
		cursor: pointer;
		padding: 0px 10px 0px 10px;
		line-height: 40px;
		color: #fff;
		text-decoration: none;
		border: none;
	}
	
	.toggle:hover {
		background: #0081d6;
	}
	
	[id^=drop]:checked + ul {
		display: block;
	}
	
	nav ul li {
		display: block;
		width: 100%;
	}
	
	nav ul ul .toggle, nav ul ul a {
		padding: 0 40px;
	}
	
	nav ul ul ul a {
		padding: 0 80px;
	}
	
	nav ul ul {
		float: none;
		position: static;
		background: #3bc1ed;		
		visibility: visible;
		display: none;
		opacity: 1;
		margin: 0px;
	}
	
	nav ul ul li:hover > ul, nav ul li:hover > ul {
		display: none;
	}
	
	nav ul ul li {
		display: block;
		width: 100%;
	}
	
	nav ul ul ul li {
		position: static;
	}
}

@media all and (max-width : 330px) {
	nav ul li {
		display: block;
		width: 94%;
	}
}
  
/* Bottom of page */

.footer_link {
    color: white;
}

a.footer_link {
    color: white;
	text-decoration: none;
}

a.footer_link:hover {
    color: white;
	text-decoration: underline;
}

/* Adaptive tables */

.table, .widetable, .narrowtable {
	display: table;
	position: relative;
	width: 100%;
	border-collapse: separate;
}

.row, .row_highlight, .row_highlighted, .row_header, .row_transparent {
	display: table;
	border-collapse: separate;
	width: 100%;
	margin-bottom: 2px;
	vertical-align: top;
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
	border-spacing: 2px;
}

.row, .row_highlight, .filled {
	background: #f4f6f8;
}

.row_highlight:hover {
	background: #e9eef1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.row_highlighted {
	background: #e9eef1;
}

.row_border {
	border: 1px solid #D3D3D3;
}

.row_header {	
    background-image: -moz-linear-gradient(#2E9AFE, #00BFFF);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2E9AFE), to(#00BFFF));
    background-image: -webkit-linear-gradient(#2E9AFE, #00BFFF);
    background-image: -o-linear-gradient(#2E9AFE, #00BFFF);
    background-image: -ms-linear-gradient(#2E9AFE, #00BFFF);
	background: linear-gradient(#2E9AFE, #00BFFF);
	font-weight: bold;
	color: white;
}

.row_header div {
	text-align: center;
	vertical-align: middle;
	padding: 5px 0 5px 0;
}

.cell {
	display: table-cell;
	position: relative;
	vertical-align: top;
	padding: 5px;
}

.word_break_all {
	-ms-word-break: break-all;
    word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;	
}

.ta_left {
	text-align: left;
}

.ta_right {
	text-align: right;
}

.ta_center, .ta_center_fixed {
	text-align: center;
}

.va_top {
	vertical-align: top;
}

.va_bottom {
	vertical-align: bottom;
}

.va_middle {
	vertical-align: middle;
}

/* pm */

.subject_area {
	vertical-align: middle;
}

.subject_area div:nth-child(1),
.user_area div:nth-child(1) {
	display: table-cell;
	width: 20px;
	vertical-align: middle;
	text-align: center;
}

.subject_area div:nth-child(2),
.user_area div:nth-child(2) {
	display: table-cell;
	vertical-align: middle;
	padding-left: 5px;
}

.user_area {
	width: 150px;
}

.user_area img {
	height: 20px;
	vertical-align: middle;
	text-align: left;
}

.date_area {
	width: 110px;
}

.pad_5 {
	padding: 5px;
}

.pad_10 {
	padding: 10px;
}

.w_250px {
	width: 250px;
}

.widetable .cell {
	padding: 1px;
}

@media screen and (max-width: 768px) {
	.table .cell {
		display: block;
		width: 100%;
		text-align: left;
	}
	.filled {
		margin-bottom: 2px;		
	}
	.user_area, .subject_area, .date_area {
		width: 100%;
	}
}

@media screen and (max-width: 950px) {
	.widetable .cell {
		display: block;
		width: 100%;
		text-align: left;
	}
}

@media screen and (max-width: 450px) {
	.narrowtable .cell {
		display: block;
		width: 100%;
		 /* text-align: left; */
	}
}

/*------- post header table ------- */

table.post_header {
	width: 100%;
}

table.post_header tr td {
	vertical-align: top;
}

table.post_header tr td:nth-child(2) {
	text-align: right;
}

table.post_header tr td:nth-child(3) {
	width: 15%;
	min-width: 60px;
	text-align: right;
}

/*---------------------------------- */

select.blue {
    font-size: 100%;
    color: #404040;
}

select.white {
    font-size: 80%;
    border: solid 1px #b3bbc1;
    color: #404040;
}

.textbox{
    margin: 0px;
    width: 150px;
    height: 20px;
    border-color: #b3bbc1;
    color: #404040;
    border-width: 1px;
    border-style: solid; 
    padding: 2px;
}

table.main {
	width: 100%;
}

table.main td {
	padding: 3px;
	vertical-align: top;
}

table.main td:nth-child(odd) {
	text-align: right;
}

table.main td:nth-child(even) {
	text-align: left;
}

input.main {
	width: 100%;
	height: 24px;
    color: #000;
    border: solid 1px #b3bbc1;
    margin-top: 2px;
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
	background-color: #fff;
}

input.mainsmall {
    width: 35px;
	height: 24px;
    color: #000;
    border: solid 1px #b3bbc1;
    margin-top: 2px;
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
	background-color: #fff;
}

input.maintiny {
    width: 22px;
	height: 24px;
    color: #000;
    border: solid 1px #b3bbc1;
    margin-top: 2px;
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
	background-color: #fff;
}

textarea {
	width: 100%;
	font-size: 100%;
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
	border: solid 1px #b3bbc1;
    color: #000;
    margin-top: 2px;
	padding: 5px;
	resize: vertical;
}

textarea.maintext {
    height: 200px;
}

textarea.mainsmalltext {
    height: 100px;
}

textarea.maintinytext {
    height: 50px;
}

input.button {
    background-color: #efefef;
    color : #000000;
    font-size: 100%;
}

.addthis_button  {
    position:relative;
    top:2px;
}

hr {
    height: 0px;
    border: solid #b3bbc1 0px;
    border-top-width: 1px;
}

p.navsmall {
    font-size: 80%;
}

p.navnormal {
    font-size: 90%;
    font-weight: bold;
}

/*---------- Navigation ----------*/

.pagenav {
    font-size: 100%;
    margin: 2px;
}

.pagenav span {
    color: #fff;
    background-color: #404040;
    padding: 5px 8px 5px 8px;
    border-radius: 3px 3px 3px 3px;
	display: inline-block;
    vertical-align: middle;
	_display:inline;
    *display:inline;
	margin: 2px;
}

.pagenav a, div.punkt, a.punkt, div.punkt_off, span.punkt {
    color: #000;
    padding: 5px 8px 5px 8px;
    text-decoration: none;
    border-radius: 3px 3px 3px 3px;
	display: inline-block;
    vertical-align: middle;
	_display:inline;
    *display:inline;
	margin: 2px;
}

.pagenav a, div.punkt, a.punkt, span.punkt {
    background-color: #ededed;
}

.pagenav a:hover {
    color: #fff;
    background-color: #404040;
}

div.punkt_off {
    /* background-color: #FAFAFA; */
}

a.punkt {
	cursor: pointer;
}

/* Movie rating */

.mrating {
	color: #5a5a5a;
	width: 85px;
	height: 17px;
}

.munit-rating {
	list-style: none;
	width: 170px;
	height: 17px;
	position: relative;
	background-image: url(/images/project/stars.png);
	background-position: bottom left;
	background-repeat: repeat-x;
	margin:0;
	padding:0;
}

.munit-rating li {
	text-indent: -90000px;
	margin: 0;
	padding: 0;
}

.munit-rating li a {
	display: block;
	width: 17px;
	height: 17px;
	text-decoration: none;
	text-indent: -9000px;
	z-index: 3;
	position: absolute;
	padding: 0;
}

.munit-rating li a:hover {
	background-image: url(/images/project/stars.gif);
	background-position: left center;
	z-index: 2;
	left: 0;
}

.munit-rating a.r1-unit{left:0;}
.munit-rating a.r1-unit:hover{width:17px;}
.munit-rating a.r2-unit{left:17px;}
.munit-rating a.r2-unit:hover{width:34px;}
.munit-rating a.r3-unit{left:34px;}
.munit-rating a.r3-unit:hover{width:51px;}
.munit-rating a.r4-unit{left:51px;}
.munit-rating a.r4-unit:hover{width:68px;}
.munit-rating a.r5-unit{left:68px;}
.munit-rating a.r5-unit:hover{width:85px;}
.munit-rating a.r6-unit{left:85px;}
.munit-rating a.r6-unit:hover{width:102px;}
.munit-rating a.r7-unit{left:102px;}
.munit-rating a.r7-unit:hover{width:119px;}
.munit-rating a.r8-unit{left:119px;}
.munit-rating a.r8-unit:hover{width:136px;}
.munit-rating a.r9-unit{left:136px;}
.munit-rating a.r9-unit:hover{width:153px;}
.munit-rating a.r10-unit{left:153px;}
.munit-rating a.r10-unit:hover{width:170px;}
.munit-rating li.current-rating {
    background-image: url(/images/project/stars.gif);
    background-position: left top;
    position: absolute;
    height: 17px;
    display: block;
    text-indent: -9000px;
    z-index: 1;
}

.star {
    display: block;
    width: 17px;
    height: 17px;
    background-image: url(/images/project/stars.gif);
    background-position: bottom left;
    background-repeat: repeat-x;
    position: absolute;
}

.ratingsmall {
    width: 40px;
    height: 16px;
    list-style: none;
    position: absolute;
    background-image: url(/images/project/rating-2.png);
    background-position: top left;
    background-repeat: repeat-x;
    margin: 0;
    padding: 0;
}

.current-ratingsmall {
    background-image: url(/images/project/rating-2.gif);
    background-position: left bottom;
    position: absolute;
    top: 0px;
    height: 16px;
    display: block;
    text-indent: -9000px;
    z-index:1;
}

.rates {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.rates tr {
	border-bottom: 1px solid grey;
}

.rates tr:last-child {
	border-bottom: 0;
}

.rates tr:hover {
	background: #e9eef1;
}

.rates tr th {
	background: #dcdcdc;
	font-weight: bold;
	min-height: 2em;
	padding: 0 5px 0 5px;
}

.rates tr th:nth-child(1) {
	border-radius: 5px 0 0 0;
}

.rates tr td:nth-child(2) {
	text-align: left;
	width: 80%
}

.rates tr th:nth-child(3) {
	border-radius: 0 5px 0 0;
}

.rates td {
	vertical-align: middle;
	text-align: center;
	padding: 2px;
}

.rates_box {
	display: inline-block;
	position: relative;	
	vertical-align: middle;
	height: 1.5em;
}

.rates_perc {
	display: inline-block;
}

.rates_perc_inside {
	color: #fff;
	position: absolute;
	right: 5px;
}

.rate_1 {
	background: #FE2E2E;
}

.rate_2 {
	background: #FF0000;
}

.rate_3 {
	background: #DF0101;
}

.rate_4 {
	background: #B40404;
}

.rate_5 {
	background: #8A0808;
}

.rate_6 {
	background: #298A08;
}

.rate_7 {
	background: #31B404;
}

.rate_8 {
	background: #3ADF00;
}

.rate_9 {
	background: #40FF00;
}

.rate_10 {
	background: #64FE2E;
}

span.currating {
	color: orange;
	font-weight: bold;
}

.rating_star {
	font-family: "fontello";
	color: orange;
}

a.cancel {
	/*
	display: inline-block;
	*/
	text-decoration: none;
	color: red;
}

.wrap_cancel {
	display: inline-block;
}

/* Photos container */

a.photo-container {
    border: solid 1px #b3bbc1;
    padding: 3px;
    background:#fff;
    border-radius: 3px;
    position: relative;
    display: block;
	width: 180px;
	margin: auto;
    vertical-align: middle;
}

a.photo-container:hover {
    text-decoration: none;
}

img.mask {
    position: absolute;
    top: 3px;
    left: 3px;
}

img.mask:hover {
    opacity: 0.8;
}

/* Trailer */

div.trailer_wrap {
	width: 280px !important;
	height: 158px !important;
	margin: 5px 5px 0px 0px;
}

div.video_wrap {
	position: relative;
	display: inline-block;
	width: 0x;
	height: 0px;
	vertical-align: top;
}

.trailer_text {
	position: absolute;
	display: inline !important;
	width: 100%;
	height: 40px !important;
	line-height: 40px;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	color: white;
	text-align: left;
	vertical-align: middle;
	z-index: 2;
}

img.video_cover {
	position: absolute;
	width: 100%;
	height: 100%;
	float: left;
	transition: transform 0.3s ease;
	filter: brightness(80%);
	z-index: 1;
}

div.text_layer {
	position: absolute;
	overflow: hidden;
	left: 15px;
	top: 15px;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
}

@media screen and (min-width: 1290px) {
	div.text_layer {
		left: 10px;
		top: 10px;
		width: calc(100% - 20px);
		height: calc(100% - 20px);
	}
}

div.video_title, div.video_title_zoom {
	position: absolute;
	display: block;
	padding: 0;
	margin: 0;
	color: white;
	font-size: 100%;
	overflow: hidden;
	width: 100%;
	white-space: normal;
	z-index: 1;
}

div.video_title {
	display: yes;
	font-weight: bold;
	font-size: 115%;
	text-shadow: 0px 0px 5px black;
	bottom: 0px;
}

div.video_title_zoom {
	display: block;
	top: 10%;
	opacity: 0;
	transition: all 0.3s ease;
}

div.video_country_zoom {
	position: absolute;
	opacity: 0;
	z-index: 1;
}

div.video_year_zoom {
	position: absolute;
	opacity: 0;
	right: 0px;
	z-index: 1;
}

span.video_descr {
	opacity: 0;
}

a.movie_link {
	display: block;
	position: absolute;
	cursor: pointer;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

a.movie_link::after {
	content: '\f14c';
	font-family: "fontello";
	color: white;
	font-size: 120%;
}

p.title {
	color: white;
}

div.video_wrap:hover img.video_cover {
	filter: brightness(50%);
}

/*
@media screen and (min-width: 1290px) {
	div.video_wrap:hover img.video_cover {
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
		transform: scale(1.2);
		-webkit-transform-origin: center;
		-moz-transform-origin: center;
		-o-transform-origin: center;
		transform-origin: center;
		z-index: 2;
	}
}
*/

div.video_wrap:hover div.video_title {
	display: none;
}

div.video_wrap:hover div.video_title_zoom {
	z-index: 3;
	opacity: 1;
}

div.video_wrap:hover div.video_country_zoom,
div.video_wrap:hover div.video_year_zoom {
	opacity: 1;
	color: white;
	z-index: 2;
}

div.video_wrap:hover span.video_descr {
	display: inline;
	opacity: 1;
}

.youtube {
	font-family: 'fontello';
	color: red;
	font-size: 120%;
	cursor: pointer;	
}

.youtube:before {
	content: '\f16a';
}

a.trailer {
	text-decoration: none;
}

/*--------------------------------------*/

.off {display: none}

/* Birthdays */

table.calendar th {
	color: white;
	text-align: center;
	padding: 2px;
	background-image: -moz-linear-gradient(#2E9AFE, #00BFFF);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2E9AFE), to(#00BFFF));
    background-image: -webkit-linear-gradient(#2E9AFE, #00BFFF);
    background-image: -o-linear-gradient(#2E9AFE, #00BFFF);
    background-image: -ms-linear-gradient(#2E9AFE, #00BFFF);
	background: linear-gradient(#2E9AFE, #00BFFF);
}

table.calendar td {
	background: #f6f6f6;
	text-align: center;
	padding: 2px;
}

/* Search */

table.searchresults {
	width: 100%;
}

table.searchresults td {
	padding: 5px;
}

.cf:before, .cf:after{
    content:"";
    display:table;
}
 
.cf:after{
    clear:both;
}
 
.cf{
    zoom:1;
}

/* live search */

.highlight {
    background: #FF9;
}

div.lsresult, div.lsresult-active { 
    display: block;
    text-align: left;
    width: 100%;
	float: left;
    min-height: 24px;
    padding: 5px;
    text-decoration: none;
    border: 0px;
	cursor: hand;
	cursor: pointer;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
}

div.lsresult {
    background: #fff;	
}

div.lsresult-active {
    background-color: #3875d7;
	background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
	background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
	background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
	background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
	background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
	color: white;
}
		
#search_advice_wrapper {
	position: absolute;
    width: 50%;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.5);
	
	-moz-border-radius: 0px 0px 3px 3px;
    -webkit-border-radius: 0px 0px 3px 3px;
    -khtml-border-radius: 0px 0px 3px 3px;
    border-radius: 0px 0px 3px 3px;
	
    /* For IE 8 */
    filter: progid:DXImageTransform.Microsoft.dropshadow(offX=-1, offY=1, color=#000000)
            progid:DXImageTransform.Microsoft.dropshadow(offX=1, offY=-1, color=#000000);
    top: 100px;
    left: 0px;
    z-index: 1000;
}

#search_advice_wrapper div {
	border-bottom: 1px dotted #ccc;
}

#search_advice_wrapper div:last-child {
	border-radius: 0px 0px 3px 3px;
	border-bottom: 0px;
}

/* Live search image */

#search_advice_wrapper img {
	float: left;
	vertical-align: top;
	width: 50px;
	margin-right: 5px;
    border-radius: 2px;	
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
}

/* User ratings */

.uservotes {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	margin: 5px;
	border: solid 1px #404040;
	border-radius: 3px;
	box-shadow: 0px 0px 4px #000;
    -moz-box-shadow: 0px 0px 4px #000;
    -webkit-box-shadow: 0px 0px 4px #000;
    /* For IE 8 */
    filter: progid:DXImageTransform.Microsoft.dropshadow(offX=-1, offY=1, color=#000000)
      progid:DXImageTransform.Microsoft.dropshadow(offX=1, offY=-1, color=#000000);
	z-index: 1000;
}

/* --------------- Forum ----------------- */

.topics {
	background: #f0f0f0;
	padding: 10px 10px 0 10px;
	border-radius: 5px;
}

.topics_wrap {
	height: 300px;
	width: 100%;
	display: block;
	overflow-y: scroll;
	border: solid 1px #b3bbc1;
	border-radius: 5px;
}

.topics .row {
	border-collapse: collapse;
	box-shadow:
	    0 0 1px 1px rgba(255, 255, 255, 0.5) inset,
		0 0 3px 1px rgba(128, 128, 128, 0.1) inset,
		1px 1px 3px rgba(0, 0, 0, 0.15),
		0 10px 10px -10px rgba(0, 0, 0, 0.2);
	margin-bottom: 10px;
	border-radius: 5px;
}

.topics .row div:nth-child(2) {
	border-radius: 0 5px 5px 0;
}

@media screen and (max-width: 768px) {
	.topics .row div:nth-child(2) {
		border-radius: 0 0 5px 5px;
	}
}

.forum_data {
	display: table;
	border-spacing: 0;
}

.forum_icon, .forum_title {
	display: table-cell;
	vertical-align: top;
}

.forum_icon {
	width: 35px;
}

a.forum, div.forum, a.forum_tool, input.bbcode {
	all: unset;
	display: inline-block;
	color: #404040;
	border: 1px solid #404040;
	font-size: 100%;
	background-image: -moz-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FAFAFA), to(#D8D8D8));
    background-image: -webkit-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -o-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -ms-linear-gradient(#FAFAFA, #D8D8D8);
	background: linear-gradient(#FAFAFA, #D8D8D8);
	margin: 1px;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	text-decoration: none;
	white-space: nowrap;
}

a.forum, div.forum {
    padding: 2px 4px 2px 2px;
}

a.forum_tool {
	padding: 2px 4px 2px 4px;
}

div.f_icon { /* fontello icon inside a block */
	font-family: "fontello";
	display: inline-block;
}

a.forum_circle,
div.forum_circle,
div.forum_circle_new,
div.forum_circle_online,

div.forum_circle_small,
div.forum_circle_small_new,
div.forum_circle_small_online,
div.forum_circle_small_offline {
	all: unset;
	display: inline-block;
	position: relative;
	width: 30px;
	height: 30px;	
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
    border-radius: 50%;
	-moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
	font-family: "fontello";
	font-size: 20px;
	color: #404040;
	border: 1px solid #0066cc;
	background-image: -moz-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FAFAFA), to(#D8D8D8));
    background-image: -webkit-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -o-linear-gradient(#FAFAFA, #D8D8D8);
    background-image: -ms-linear-gradient(#FAFAFA, #D8D8D8);
	background: linear-gradient(#FAFAFA, #D8D8D8);
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
}


a.forum, a.forum_tool, a.forum_circle {
	cursor: pointer;
}

div.forum_circle_small,
div.forum_circle_small_new,
div.forum_circle_small_online,
div.forum_circle_small_offline {
	width: 24px;
	height: 24px;	
	line-height: 24px;
	font-size: 16px;
}

a.forum_circle {
	text-decoration: none;
}

div.forum_circle_new {
	border: 1px solid orange;
}

div.forum_circle_online, div.forum_circle_small_online {
	border: 1px solid green;
	color: green;
}

div.forum_circle_small_online:before,
div.forum_circle_small_offline:before {
	display: inline-block;
	position: absolute;
	bottom: 1px;
	right: 4px;
	content: '\e814';
}

div.forum_circle_small_offline {
	border: 1px solid red;
	color: red;
}

div.forum_circle_small_new {
	border: 1px solid orange;
	color: orange;
}

a.forum:hover,
a.forum_tool:hover,
div.forum:hover {
	border: 1px solid black;
	color: black;
}

a.forum_circle:hover {
	color: black;
}

.f_edit span:before,
.f_quote span:before,
.f_delete span:before,
.f_www span:before,
.f_pm span:before,
.f_post span:before,
.f_reply span:before,
.f_locked span:before,
.f_unlocked span:before,
.f_move span:before,
.f_gallery span:before,
.f_last_message span:before {
	font-family: "fontello";
	padding-left: 4px;
	padding-right: 4px;
}

.f_delete div:before,
.f_locked div:before,
.f_unlocked div:before,
.f_post div:before,
.f_new_post div:before,
.f_move div:before {
	font-family: "fontello";
	display: inline-block;
}

.f_edit span:before {
	content: '\e807';
}

.f_quote span:before {
	content: '\f10d';
}

.f_delete span:before,
.f_delete div:before {
    content: '\e810';
}

.f_delete div:before {
   right: 6px;
}

.f_www span:before {
    content: '\f14c';
}

.f_pm span:before {
    content: '\f0e0';
}

.f_post span:before,
.f_post div:before {
    content: '\f24a';
}

.f_new_post div:before {
    content: '\f249';
}

.f_new_post span:before,
.f_new_post div:before {
    color: orange;
}

.f_reply span:before {
    content: '\f112';
}

.f_locked span:before,
.f_locked div:before {
    content: '\e80e';
}

.f_locked div:before {
   right: 8px;
}

.f_unlocked span:before,
.f_unlocked div:before {
    content: '\e80f';
}

.f_move span:before,
.f_move div:before {
    content: '\f047';
}

a.f_last_message {
	text-decoration: none;
}

.f_last_message span:before {
    content: '\e802';
	font-size: 80%;
}

div.f_gallery {
	display: inline-block;
}

.f_gallery span:before {
	content: '\f1c5';
}

.f_whosonline div:before {
	font-family: "fontello";
	font-size: 20px;
	content: '\e815';
	display: inline-block;
	position: absolute;
	right: 5px;
}

div.f_text { /* old f_body */
	background: #f9fafb;
	padding: 5px;
}

div.f_text ul {
    list-style: none;
    margin-left: 0;
    padding-left: 1.2em;
    text-indent: -1em;
}

div.f_text li {
	list-style: none;
}

div.f_text li:before {
    content: "\25FE";
    display: block;
    float: left;
    width: 1em;
}

input.bbcode {
    padding: 2px 4px 2px 4px;
	cursor: pointer;
}

input.bbcode:hover {
	border: 1px solid black;
	color: black;
}

.quote {
    display: block;
    width: 90%;
    text-align: left;
    border: 1px #b3bbc1 solid;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 5px;
}

div[rel=user_data] {
	padding: 2px;
}

/*-------------------------- */

.bigtext {
    font-weight: normal;
    font-size: 150%;
    text-decoration: none;
}

a.bigtext {
    font-size: 150%;
    text-decoration: none;
}

.small {
    font-size: 90%;
}

.bold {
    font-weight: bold;
    font-size: 100%;
}

.white {
    font-weight: bold;
    font-size: 100%;
    color: #fff;
}

a.fbut {
	overflow: visible;
    position: relative;
	border: 0;
	margin: 1px;
    cursor: pointer;
    height: 30px;
	line-height: 30px;
	vertical-align: middle;
    font-size: 110%;
    color: #fff;
    background-image: linear-gradient(to bottom, #3bc1ed, #0081d6);
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;      
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);
}

a.fbut {
    border: 0;
	display: inline-block;
	text-decoration: none;
}

.fbut:hover, .fbut:active, .fbut:focus {
	background: #0081d6;	
    text-decoration: none;
}

tr.cellchannel {background-color: #f6f6f6}
tr.cellchannelon {background-color: #e6e6e6}
td.cellchannel {background-color: #f6f6f6}
td.cellchannelon {background-color: #e6e6e6}

.bottom_link {
    font-size: 100%;
    font-weight: bold;
    color: #fff;
}

a.bottom_link {
    font-weight: bold;
    font-size: 100%;
    color: #fff;
    text-decoration: none;
}

a.bottom_link:hover {
    text-decoration: underline;
}

a.adv {
    font-size: 80%;
}

.ok {
    font-weight: bold;
    font-size: 100%;
    color: #008000;
    text-decoration: none;
}

.error {
    font-weight: bold;
    font-size: 100%;
    color: #ff0000;
    text-decoration: none;
}

/* ----------------- arrows up, down ---------------------- */
.go-up, .go-down {
    display: none;
    position: fixed;
    right: 10px;
    cursor: pointer;
    color: #4F4F4F;
	font-family: "fontello";
	font-size: 50px;
    text-shadow: 0 1px 2px #000, 1px 0 2px #E0F1FF;
    opacity: .7;
    z-index: 100;
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
}

.go-up {
    bottom: 60px;
}

.go-down {
    bottom: 5px;
}

.go-down:hover, .go-up:hover {
    opacity: 1;
}

/* ----------------- arrows left, right ---------------------- */
.go-left,
.go-right {
    position: relative;
    z-index: 9;
    background: #4F4F4F;
    border: 2px solid #ccc;
    box-shadow: 0 5px 0.3em -0.1em rgba(0,0,6,0.5);
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    font: normal normal 20px/20px sans-serif;
    text-shadow: 0 1px 2px #000, 0 0 10px #E0F1FF;
    opacity: .7;
    padding: 3px;
    margin-bottom: 5px;
    width: 36px;
    height: 36px;
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
}

.go-left:hover,
.go-right:hover {
    opacity: 1;
}

/* ----------- Warnings --------------- */

.warning, .advise, .notification {
    padding: 20px;
	line-height: 1.5em;
}

.warning {
	background: #fcf2f5;
	border-left: 10px solid crimson;
}

.advise {
	background: #f7fff8;
	border-left: 10px solid #03fc17;
}

.notification {
	background: #f6f6f6;
	border-left: 10px solid #404040;
}

/* Buttons for movie */

.movie_buttons {
    display: inline-block;
	color: #ddd;
	font-family: "fontello";
	font-size: 36px; /* 200%; */
	font-weight: bold;
    margin-right: 5px;
	cursor: pointer;
}

a.search_media {
	position: relative;
    display: inline-block;
	width: 36px;
	height: 36px;
	font-family: "fontello";
	color: #ddd;
	text-decoration: none;
}

.movie_buttons:hover,
a.search_media:hover {
	color: #0081d6;
}

.s_imdb:before {
	content: '\f2d8';
}

.s_youtube:before {
	content: '\f167';
}

.s_google:before {
	content: '\f1a0';
}

.s_vimeo:before {
	content: '\f27d';
}

.s_imdb:before,
.s_youtube:before,
.s_google:before,
.s_vimeo:before {
	position: absolute;
	top: 0px;
	left: 0px;
	font-family: "fontello";
	font-size: 36px;
}

.s_imdb:hover:before,
.s_youtube:hover:before,
.s_google:hover:before,
.s_vimeo:hover:before {
	font-size: 12px;
	top: 10px;
	left: 10px;
}

a.search_media:after {
	content: '\e806';
	font-size: 12px;
	position: absolute;
	font-family: "fontello";
	opacity: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

a.search_media:hover:after {
	opacity: 1;
	font-size: 36px;
}

.addtolist {
	width: 230px;
}

/* buttons */

button {
	overflow: visible;
    position: relative;
	border: 0;
	margin: 1px;
    cursor: pointer;
	font-size: 100%;
	font-weight: bold;
	vertical-align: middle;
    color: #fff;
    background-image: linear-gradient(to bottom, #3bc1ed, #0081d6);
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	padding: 10px;
}

button:hover, button:active, button:focus {
	background: #0081d6;	
    text-decoration: none;
}

/* Movies */

h1 {
	font-size: 150%;
	font-weight: bold;
	text-align: left;
	color: #0caedf;
	padding: 0px;
    margin: 20px 0 0 0;
}

.cover_mini {
	width: 130px;
	height: 180px;
}

.cover_thumb {
	vertical-align: middle;
	border-radius: 10px;
	width: 210px;
}

.cover_thumb_wrap {
	display: inline-block;
	position: relative;
	padding: 10px;
	background: #dcdcdc;
	border-radius: 10px;
	margin-bottom: 10px;
}

.box_rating {
	position: absolute;
	height: 80px;
	width: 100%;
	background: #0caedf;
}

.box_rating_data {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	width: 100%;
	height: 80px;
}

.box_rating_data a {
	color: #fff;
}

@media screen and (max-width: 450px) {
	.box_rating_data {
		color: #404040;
	}
	
	.box_rating_data a {
		color: #0066cc;
	}
}

#comments {
	display: block;
	margin: 20px 0 20px 0;
	font-weight: bold;
}

.comment {
	width: 100%;
	border-collapse: collapse;
}

.comment tr td {
	padding: 25px 5px 25px 5px;
	vertical-align: top;
	border-bottom: 1px solid #d3d3d3;
}

.comment tr td:nth-child(1) {
	width: 70px;
	text-align: center;
}

.comment tr td:nth-child(1) img {
	border-radius: 50%;
	width: 50px;
}

.comment tr td:nth-child(2) i { /* date */
	color: #808080;
}

.movie-data-1, .movie-data-2 {
	display: none;
}

.movie-data-1 + label {
	background-color: #dcdcdc;
	color: #404040;
	padding: 10px;
	border-radius: 3px 3px 0 0;
	display: inline-block;
	position: relative;
	margin-right: 2px;
	font-weight: bold;
	cursor: pointer;	
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
}

.movie-data-1:checked + label,
.movie-data-1:hover + label {
	background-color: #0caedf;
	color: #fff;
	font-weight: bold;
}

.data_baseline {
	display: block;
	width: 100%;
	height: 0;
	border-bottom: 1px solid #d3d3d3;
}

.movie-data-2 + label {
	padding: 5px;
	display: inline-block;
	position: relative;
	margin-right: 2px;
	cursor: pointer;	
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
	border-bottom: 3px solid transparent;
}

.movie-data-2:checked + label,
.movie-data-2:hover + label {
	color: #0caedf;
	border-bottom: 3px solid #0caedf;
}

@media screen and (max-width: 950px) {
	.movie-data-2 + label {
		display: block;
	}
}

.flag {
	width: 16px;
	margin-right: 0.5em;
}

h2.section_heading {
	text-transform: uppercase;
    float: initial;
    padding-left: 25px;
	font-weight: bold;
	font-size: 110%;
    line-height: 20px;	
	text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
	margin: 20px 0 10px 0;
}

h2.section_heading::before {
	font-family: 'fontello';
	color: white;
    content: ' '; /* '\f2dc'; snow */
    position: absolute;
	text-align: center;
    background-color: #0caedf;
    min-width: 20px;
    height: 20px;
    left: 0;
	border-radius: 0 5px 0 5px;
}

h2.section_heading::after {
	content: ' ';
    position: absolute;
    margin-left: 8px;
    width: 100%;
    min-width: 20px;
    background-color: #0caedf;
    height: 20px;
}

@media screen and (max-width: 450px) {
	h2.section_heading::after {
		display: none;
	}
}

/* ----------- bookmarks -------------------- */


/* Social networks */

a.social_networks, a.bookmarks {
	font-family: 'fontello';
	color: white;
	font-size: 200%;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	text-decoration: none;
	margin-right: 5px;
}

.bookmarks:before{ 
    content: '\e800';
}

a.social_networks:hover, a.bookmarks:hover { 
    color: #0caedf;
}

/* twitter */
 
.twitter:before {
    content: '\f304';
}
 
 /* facebook */
 
.facebook:before {  
    content: '\f308';
}

/* Vkontakte */

.vkontakte:before {  
    content: '\f189';
}

/* Pinterest */

.pinterest:before {  
    content: '\f0d3';
}

/* new photos */

.photo_wrap {
	position: relative;
	display: inline-block;
	width: 0x;
	height: 0px;
	vertical-align: top;
	border: solid 1px #404040;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

a.new_photo {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}

.new_photo_image {
	position: absolute;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
}

div.new_photo_text {
	position: absolute;
	width: 100%;
	height: 40px;
	bottom: 0;
	background: rgba(255, 255, 255, .8);
	display: table-cell;
}

div.new_photo_text:before {
	content: ' ';
	display: block;
	position: absolute;
	bottom: 47px;
	background: orange;
	width: 200px;
	height: 5px;
	transform: skew(-5deg, -5deg);
}

div.new_photo_text:after {
	content: ' ';
	display: block;
	position: absolute;
	bottom: 40px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 16px 200px;
	border-color: transparent transparent rgba(255, 255, 255, .8) transparent;
}

div.new_photo_text img {
	vertical-align: middle;
}

div.new_photo_text div {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 180px;
	height: 40px;
	top: -50%;
	font-size: 80%;
	color: #404040;
	white-space: normal !important;
}

/*---------------- Download -------------*/

a.download {
	display: table;
	position: relative;
	margin-left: auto; 
    margin-right: auto;
	padding: 10px;
	vertical-align: middle;
	color: white;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    font-size: 110%;
	font-weight: bold;
	text-decoration: none;
	background-color: #3bc1ed;
	background-image: linear-gradient(to bottom, #3bc1ed, #0081d6);
	-webkit-backface-visibility: hidden;
	z-index: 1;
}

a.download:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
	background-image: linear-gradient(to bottom, #0081d6, #0081d6);
	transition: opacity 0.5s ease-out;
	opacity: 0;
	z-index: 2;
}

a.download:hover:after {
	opacity: 1;
}

a.download span {
	position: relative;
	z-index: 3;
}

a.download span:first-child {	
	font-family: "fontello";
}

/* Voting */

.numvotes {
    display: inline-block;
	vertical-align: middle;
    float: left;
    color: #ceb894;
}

div.like_wrap {
	position: absolute;
	display: block;
	opacity: 0;
	height: 24px;
	line-height: 24px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}

a.like {
	position: relative;
	display: inline-block;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	height: 24px;
	line-height: 24px;
	padding: 0px 5px 0px 5px;
	margin: 1px;
	font-size: 100%;
	text-align: center;
	color: white;
	cursor: pointer;
	background-color: #00a35f;
	text-decoration: none;
}

a.like:hover {
	background-color: #019054;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	color: white;
}

a.like:before {
	content: '+';
}

a.dislike {
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	height: 24px;
	line-height: 24px;
	display: inline-block;
	padding: 0px 5px 0px 5px;
	margin: 1px;
	font-size: 100%;
	text-align: center;
	color: white;
	cursor: pointer;
	background-color: #d51b07;
	text-decoration: none;
}

a.dislike:hover {
	background-color: #c11805;
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a.dislike:before {
	content: '-';
}

/* animated hint */

#tooltip_container {
    position: absolute;
	display: block;
	width: 250px;
    height: 120px;
	opacity: 0;
    z-index: 1000;
}

#tooltip_wrap {
    position: absolute;
	display: block;
    background: black;
	opacity: 0.8;
	width: 100%;
	height: 100%;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#tooltip_wrap_pointer {
	position: absolute;
	display: block;
	opacity: 0.8;
	left: 0;
    top: 0;
	border: 10px solid transparent;
	border-top: 10px solid black;
	z-index: 1000;
}

#tooltip {
	position: absolute;
	width: 100%;
	height: 100%;
    padding: 10px 5px 0px 5px;
	color: white;
	text-align: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* polls */

div.poll_header {
	display: inline-block;
	width: 100%;
	color: white;
	font-weight: bold;
    text-align: center;
	padding: 20px;
}

div.poll {
	display: inline-block;
	width: 100%;
	background-color: #0081d6;
    background-image: -moz-linear-gradient(#3bc1ed, #0081d6);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3bc1ed), to(#0081d6));
    background-image: -webkit-linear-gradient(#3bc1ed, #0081d6);
    background-image: -o-linear-gradient(#3bc1ed, #0081d6);
    background-image: -ms-linear-gradient(#3bc1ed, #0081d6);
    background-image: linear-gradient(#3bc1ed, #0081d6);
	border-radius: 5px;
	padding: 7px;
	margin-bottom: 10px;
    text-align: center;
    font-size: 100%;
}

/* -- animation on loading -- */

div.poll_loader {
	position: relative;
	display: block;
	width: 100%;
	vertical-align: middle;
	height: 20px;
	line-height: 20px;
}

.data_loader {
    position: absolute;
    top: 50%;
    left: 50%;
}
.data_loader .dots {
    position: absolute;
    padding: 5px;
    border-radius: 50%;
	background: #fff;
    -webkit-animation: myani 1s ease-in-out 0s infinite;
    animation: myani 1s ease-in-out 0s infinite;
}
.data_loader .dots:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.data_loader .dots:nth-child(2) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}
.data_loader .dots:nth-child(3) {
    -webkit-animation-delay: 0.30s;
    animation-delay: 0.30s;
}
.data_loader .dots:nth-child(4) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

@keyframes myani {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }
}

div.answer, div.answer_selected, div.answer_result {
	display: table;
	width: 100%;
	height: 30px;
	font-weight: normal;
	color: white;
	border-radius: 2px;
	-moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
	padding: 4px;
	vertical-align: middle;
	margin-top: 7px;
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
}

div.answer, div.answer_selected {
	cursor: pointer;
}

div.answer_result {
	background-image: rgba(255, 255, 255, 0.5);
}

div.answer {
	background: rgba(255, 255, 255, 0.1);	
}

div.answer_selected, div.answer:hover {
	background: rgba(255, 255, 255, 0.3);
}

div.answer input, div.answer_selected input {
	display: none;
}

div.answer_text {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
}

div.answer_perc {
	display: table-cell;
	width: 80px;
	text-align: right;
	vertical-align: middle;
}

div.poll_numallvotes {
	display: block;
	font-weight: bold;
	margin-top: 7px;
	color: white;
}

div.poll_numvotes {
	display: inline-block;
	opacity: 0.5;
	color: white;
}

a.cancel_vote {
	color: white;
	text-decoration: none;
}

a.cancel_vote:hover {
	color: red;
}

/* Private messages */

#pm_tools {
	display: none;
	padding: 0px;
}

.pm_tools {
	width: 100%;
	height: 40px;
}

.pm_tools tr td:first-child {
	width: 30px;
	text-align: left;
	padding-left: 7px;
}

/* Actors */

.new_actors tr td:nth-child(1),
.actors tr td:nth-child(1) {
	width: 100px;
	text-align: center;
}

.new_actors tr td:nth-child(2) {
	text-align: left;
}

.actors tr td:nth-child(2) {
	width: 30%;
	text-align: left;
}

.nobigpicture {
	margin-top: 100px;
	display: inline-block;
}

.actor_image {
	display: block;
	text-align: left !important;
	position: relative;
	height: 300px;
	width: 200px;
	overflow: hidden;
}

.actor_image img {
	position: absolute;
	height: 300px;
	border-radius: 10px;
}

.p_actor, .p_actor_item {
	height: 100px;
	display: inline-block;
	background: #f9fafb;
	overflow: hidden;
}

.p_actor img, .p_actor_item img {
	float: left;
	margin-right: 5px;
}

.p_actor_item {
	width: 100%;
	cursor: pointer;
}

.p_actor_item:hover {
	background: #0caedf;
	color: white;
}

.p_actor {
	position: relative;
	width: 280px;
	margin: 5px;
	padding-right: 30px;
}

.p_actor:after {
	content: '\e805';
	font-family: "fontello";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	height: auto;
}

.actors_list {
	display: block;
	position: absolute;
	width: 280px;
	min-height: 100px;
	max-height: 400px;
	overflow-x: hidden;
	overflow-y: auto;
	left: -9999px;
	top: 0;
	z-index: 2;
	/*border: 1px solid #404040; */
	box-shadow: 0 1px 2px #000;
}

.p_list {
	display: none;
}

/* Cookies */

#accept_cookies {
	z-index: 10;
	bottom: 0;
	position: fixed;
	display: none;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	font-weight: bold;
	background: rgba(0,0,0,0.8);
	width: 100%;
	height: 50px;
}

/* ad_wrap */

#ad_wrap {
	display: table;
	width: 100%;
	height: 100px;
	padding: 5px;
}

@media screen and (max-width: 1200px) {
	#ad_wrap {
		display: none;
	}
}

#ad_wrap div {
	display: table-cell;
	vertical-align: middle;
}
/*
#ad_wrap div:nth-child(1) {
	width: 740px;
}

#ad_wrap div:nth-child(2) {
	text-align: left;
}
*/

/* -- web logo -- */

.web_logo {
	display: inline-block;
}

.web_logo img {
	height: 16px;
	vertical-align: middle;
}

.web_logo a {
	color: white;
}