.ui.UI_Video {
	display: inline-block;
	padding: 0;
	margin: 0;
	background-color: black;
	width: 640px;
	height: 360px;
	overflow: hidden;
	text-align: left;
}

.ui.UI_Video, .ui.UI_Video * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-pointer-events: none;
	user-select: none;
}

.ui.UI_Video > .inner {
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

.ui.UI_Video > .inner > video,
.ui.UI_Video > .inner > iframe {
	width: 100%;
	height: calc( 100% - 2px ); /* Leave some padding for the control bar */
	display: block;
	z-index: 10;
	
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;

	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	-o-pointer-events: none;
	pointer-events: none;
}

.ui.UI_Video.iframe-controller > .inner > video {
	display: none !important;
}

.ui.UI_Video > .inner > .logo {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 0px;
	height: 0px;
	padding: 0;
	margin: 0;
	z-index: 10000;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
	-webkit-pointer-events: none;
	-ms-pointer-events: none;
	-moz-pointer-events: none;
	-o-pointer-events: none;
	cursor: pointer;
}

.ui.UI_Video.has-logo > .inner > .logo {
	pointer-events: all;
	-webkit-pointer-events: all;
	-moz-pointer-events: all;
	-ms-pointer-events: all;
	-o-pointer-events: all;
}

.ui.UI_Video.deny-branding > .inner > .logo {
	display: none !important;
}

.ui.UI_Video > .inner > .controlbar {
	position: absolute;
	left: 0px;
	right: 0px;
	display: none;
	bottom: 0px;
	z-index: 10000;
	width: 100%;
	height: 40px;
	background-color: rgba(0,0,0,.8);
}

.ui.UI_Video.controls.activity > .inner > .controlbar,
.ui.UI_Video.controls.show-settings > .inner > .controlbar,
.ui.UI_Video.controls:not(.is-playing) > .inner > .controlbar {
	display: block;
}

.ui.UI_Video > .inner > .controlbar > .progress {
	position: absolute;
	background-color: rgba(255,255,255,.5);
	display: none;
	left: 0px;
	right: 0px;
	top: 0px;
	height: 4px;
	transition: height .3s, top .3s;
}

.ui.UI_Video > .inner > .controlbar > .progress > .bytes {
	height: 100%;
	background-color: rgba(255,255,255,.3);
	width: 0%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	pointer-events: none;
	-webkit-pointer-events: none;
	-ms-pointer-events: none;
	-o-pointer-events: none;
	-moz-pointer-events: none;
}

.ui.UI_Video > .inner > .controlbar > .progress > .seek {
	height: 100%;
	background-color: red;
	width: 0%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 2;
}

.ui.UI_Video > .inner > .controlbar > .progress > .seek:after {
	opacity: 0;
	content: ' ';
	font-size: 1px;
	overflow: hidden;
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 14px;
	height: 14px;
	background-color: red;
	border-radius: 10px;
	transform: translate(-7px, -7px);
	box-shadow: 0px 0px 3px white;
	transition: opacity .5s;
	-webkit-transition: opacity .3s;
}

.ui.UI_Video > .inner > .controlbar > .progress:hover,
.ui.UI_Video.is-seeking > .inner > .controlbar > .progress {
	top: -2px;
	height: 8px;
}

.ui.UI_Video > .inner > .controlbar > .progress:hover > .seek:after,
.ui.UI_Video.is-seeking > .inner > .controlbar > .progress > .seek:after {
	opacity: 1;
	transition: opacity .5s;
	-webkit-transition: opacity .3s;
}

.ui.UI_Video > .inner > .controlbar > .button,
.ui.UI_Video > .inner > .controlbar > .time {
	top: 12px;
}

.ui.UI_Video > .inner > .controlbar > .button {
	display: none;
	position: relative;
	background-repeat: no-repeat;
	background-position: 0% 50%;
	height: 20px;
	width: 20px;
}

.ui.UI_Video > .inner > .controlbar > .button.play {
	background-image: url(btn-play.png);
	background-position: 50% 50%;
}

.ui.UI_Video.is-playing > .inner > .controlbar > .button.play {
	background-image: url(btn-pause.png);
}

.ui.UI_Video.controls-btn-play > .inner > .controlbar > .button.play {
	display: inline-block;
}

.ui.UI_Video > .inner > .controlbar > .button.prev-track {
	background-image: url(btn-previous.png);
}

.ui.UI_Video.src.controls-btn-prev > .inner > .controlbar > .button.prev-track {
	display: inline-block;
	position: relative;
}

.ui.UI_Video > .inner > .controlbar > .button.next-track {
	background-image: url(btn-forward.png);
}

.ui.UI_Video.src.controls-btn-next > .inner > .controlbar > .button.next-track {
	display: inline-block;
	position: relative;
}

.ui.UI_Video > .inner > .controlbar > .button.prev-track > .suggestion,
.ui.UI_Video > .inner > .controlbar > .button.next-track > .suggestion {
	display: none;
}

.ui.UI_Video > .inner > .controlbar > .button.prev-track:hover > .suggestion,
.ui.UI_Video > .inner > .controlbar > .button.next-track:hover > .suggestion {
	position: absolute;
	left: 0px;
	bottom: calc( 100% + 18px );
	width: 250px;
	padding: 0px;
	outline: 1px solid white;
	background-color: rgba(0,0,0,.8);
}

.ui.UI_Video.prev-suggestion-on > .inner > .controlbar > .button.prev-track:hover > .suggestion,
.ui.UI_Video.next-suggestion-on > .inner > .controlbar > .button.next-track:hover > .suggestion {
	display: block;
}

.ui.UI_Video.prev-suggestion-on > .inner > .controlbar > .button.prev-track:hover > .suggestion > p,
.ui.UI_Video.next-suggestion-on > .inner > .controlbar > .button.next-track:hover > .suggestion > p {
	display: block;
	padding: 0;
	margin: 0;
}

.ui.UI_Video.prev-suggestion-on > .inner > .controlbar > .button.prev-track:hover > .suggestion > p > img,
.ui.UI_Video.next-suggestion-on > .inner > .controlbar > .button.next-track:hover > .suggestion > p > img {
	max-width: 64px;
	height: auto;
	float: left;
	border: none;
	margin: 0px 10px 0px 0px;
}

.ui.UI_Video.prev-suggestion-on > .inner > .controlbar > .button.prev-track:hover > .suggestion > p > span.title,
.ui.UI_Video.next-suggestion-on > .inner > .controlbar > .button.next-track:hover > .suggestion > p > span.title {
	display: inline;
	font-family: Arial;
	font-size: 10px;
	color: white;
	line-height: 12px;
}


.ui.UI_Video > .inner > .controlbar > .button.mute {
	background-image: url(btn-vol.png);
	overflow: hidden;
}

.ui.UI_Video.volume-lock > .inner > .controlbar > .button.mute {
	width: 100px;
}

.ui.UI_Video > .inner > .controlbar > .button.mute > .volume {
	width: 74px;
    height: 100%;
    margin-left: 25px;
    display: inline-block;
    background-image: url(vol-thumb.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.ui.UI_Video.is-muted > .inner > .controlbar > .button.mute {
	background-image: url(btn-vol-muted.png);
}

.ui.UI_Video.is-muted > .inner > .controlbar > .button.mute > .volume {
	background-position: 90% 50% !important;
}

.ui.UI_Video.controls-volume > .inner > .controlbar > .button.mute {
	display: inline-block;
	transition: width .5s;
}

.ui.UI_Video.controls-volume > .inner > .controlbar > .button.mute:hover {
	width: 100px;
	transition: width .5s;
}

.ui.UI_Video > .inner > .controlbar > .time {
	width: auto;
	min-width: 20px;
	display: none;
	position: relative;
	height: 20px;
	font-family: Arial;
	font-size: 10px;
	color: white;
}

.ui.UI_Video.controls-time.seekable > .inner > .controlbar > .time {
	display: inline-block;
	vertical-align: middle;
	cursor: default;
	margin-top: -5px;
}

.ui.UI_Video.controls > .inner > .controlbar > .left-aligned {
	margin-left: 10px;
}

.ui.UI_Video > .inner > .controlbar > .button.fullscreen {
	background-image: url(btn-fullscreen.png);
	width: 27px;
}

.ui.UI_Video.is-fullscreen > .inner > .controlbar > .button.fullscreen {
	background-image: url(btn-fullscreen-none.png);
}

.ui.UI_Video.controls-btn-fullscreen > .inner > .controlbar > .button.fullscreen {
	display: inline-block;
	background-size: 95%;
	background-position: 50% 50%;
}

.ui.UI_Video > .inner > .controlbar > .button.fullscreen:hover {
	background-size: 100%;
}

.ui.UI_Video > .inner > .controlbar > .right-aligned {
	float: right;
}

.ui.UI_Video.controls > .inner > .controlbar > .right-aligned {
	margin-right: 10px;
}

.ui.UI_Video > .inner > .controlbar > .button.settings {
	background-image: url(btn-settings.png);
	width: 21px;
}

.ui.UI_Video.controls-settings > .inner > .controlbar > .button.settings {
	display : inline-block;
	position: relative;
}

.ui.UI_Video > .inner > .controlbar > .button.settings:hover {
	background-image: url(btn-settings-hover.png);
}

/**
 * Settings MENU
 */
.ui.UI_Video > .inner > .controlbar > .button.settings > .settings {
	display: none;
}

.ui.UI_Video.show-settings > .inner > .controlbar > .button.settings > .settings {
	display: block;
	position: absolute;
	right: -40px;
	bottom: 39px;
	background-color: rgba(0,0,0,.9);
	min-width: 170px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 0px 4px white;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option {
	display: block;
	position: relative;
	padding: 0;
	margin: 0;
	height: 30px;
	color: rgb(187, 187, 187) !important;
	text-shadow: 1px 1px 2px #888;

}

.ui.UI_Video:not(.src) > .inner > .controlbar > .button.settings > .settings > .option.qualities {
	display: none;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option:hover {
	background-color: #1c1c1c;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option > .caption {
	display: block;
	color: inherit;
	font-family: Arial;
	font-size: 14px;
	cursor: default;
	position: absolute;
    left: 5px;
    top: 7px;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option.qualities > .quality {
	width: 20px;
	height: 16px;
	float: right;
	margin: 4px 2px;
	font-size: 10px;
	font-family: Arial;
	overflow: hidden;
	text-align: center;
	color: #ddd;
	cursor: pointer;
	padding-top: 4px;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option.qualities > .quality.auto {
	width: 30px;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option.qualities > .quality:not(.selected):hover {
	background-color: transparent;
	color: white;
}

.ui.UI_Video > .inner > .controlbar > .button.settings > .settings > .option.qualities > .quality.selected {
	background-color: red;
	color: white;
}

.ui.UI_Video.controls-seek.seekable > .inner > .controlbar > .progress {
	display: block;
}

.ui.UI_Video.is-fullscreen {
	position: fixed;
	width: 100% !important;
	height: 100% !important;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	z-index: 10000000;
}

.ui.UI_Video.is-playing > .inner > .poster,
.ui.UI_Video:not(.poster) > .inner > .poster {
	 visibility: hidden; 
}

.ui.UI_Video.poster > .inner > .poster {
	position: absolute;
	display: block;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9990;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: 50% 50%;
	background-color: black;
	pointer-events: none;
	-webkit-pointer-events: none;
	-ms-pointer-events: none;
	-moz-pointer-events: none;
	-o-pointer-events: none;
}

.ui.UI_Video > .inner > .error {
	position: absolute;
	display: none;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	z-index: 9990;
	background-repeat: repeat;
	background-position: 0px 0px;
	background-color: red;
	pointer-events: none;
	-webkit-pointer-events: none;
	-ms-pointer-events: none;
	-moz-pointer-events: none;
	-o-pointer-events: none;
	color: black;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	padding: 72px 10px 10px 59px;
	background-image: url(white-noise.gif);
	text-shadow: 0px 0px 2px white;
}

.ui.UI_Video > .inner > .error > button {
	pointer-events: all;
	-webkit-pointer-events: all;
	-moz-pointer-events: all;
	-ms-pointer-events: all;
}

.ui.UI_Video.error > .inner > .error {
	display: block;
}

.ui.UI_Video > .inner > .controlbar > .progress > .marker {
	display: block;
	width: 6px;
	background-color: yellow;
	position: absolute;
	top: 0px;
	bottom: 0px;
	transform: translateX( -3px );
	-webkit-transform: translateX(-3px);
	-moz-transform: translateX(-3px);
	-ms-transform: translateX(-3px);
	-o-transform: translateX(-3px);
	z-index: 100;
	pointer-events: none;
	-moz-pointer-events: none;
	-webkit-pointer-events: none;
	-ms-pointer-events: none;
	-o-pointer-events: none;
	opacity: .3;
}

.ui.UI_Video > .inner > .overlay {
	display: block;
	position: absolute;
	z-index: 3000;
}

.ui.UI_Video > .inner > .overlay.add.text {
	outline: 2px solid rgba(128,128,128,.8);
	padding: 10px;
}

.ui.UI_Video > .inner > .overlay.add.text > a {
	color: white;
	text-decoration: none;
	font-family: Arial;
	font-size: 14px;
}

.ui.UI_Video > .inner > .overlay.add.text:hover {
	background-color: rgba(128,128,128,.5);
}

.ui.UI_Video > .inner > .overlay.add.html > .close,
.ui.UI_Video > .inner > .overlay.add.text > .close {
	display: block;
	visibility: hidden;
	right: -10px;
	top: -10px;
	width: 20px;
	height: 20px;
	position: absolute;
	background-image: url(btn-close-text-add.png);
	background-repeat: no-repeat;
	opacity: .5;
}

.ui.UI_Video > .inner > .overlay.add.html:hover > .close,
.ui.UI_Video > .inner > .overlay.add.text:hover > .close {
	visibility: visible;
	cursor: default;
}

.ui.UI_Video > .inner > .overlay.add.html.no-close > .close,
.ui.UI_Video > .inner > .overlay.add.text.no-close > .close {
	display: none;
}

.ui.UI_Video > .inner > .overlay.add.text.top-left {
	top: 20px;
	left: 20px;
}

.ui.UI_Video > .inner > .overlay.add.text.top-center {
	top: 20px;
	left: 50%;

	transform: translateX(-50%);

	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);

	text-align: center;
}

.ui.UI_Video > .inner > .overlay.add.text.top-right {
	top: 20px;
	right: 20px;
}

.ui.UI_Video > .inner > .overlay.add.text.middle-left {
	top: 50%;
	left: 20px;

	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.ui.UI_Video > .inner > .overlay.add.text.center {
	top: 50%;
	left: 50%;

	text-align: center;

	transform: translate(-50%,50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
}

.ui.UI_Video > .inner > .overlay.add.text.middle-right {
	
	top: 50%;
	right: 20px;

	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);

}

.ui.UI_Video > .inner > .overlay.add.text.bottom-left {
	left: 20px;
	bottom: 20px;
}


.ui.UI_Video > .inner > .overlay.add.text.bottom-center {
	left: 50%;
	bottom: 20px;

	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);

	text-align: center;
}

.ui.UI_Video > .inner > .overlay.add.text.bottom-right {
	right: 20px;
	bottom: 20px;
}

.ui.UI_Video.controls.is-playing.activity > .inner > .overlay.add.text.bottom-left,
.ui.UI_Video.controls.is-playing.activity > .inner > .overlay.add.text.bottom-center,
.ui.UI_Video.controls.is-playing.activity > .inner > .overlay.add.text.bottom-right,

.ui.UI_Video.controls.is-playing.show-settings > .inner > .overlay.add.text.bottom-left,
.ui.UI_Video.controls.is-playing.show-settings > .inner > .overlay.add.text.bottom-center,
.ui.UI_Video.controls.is-playing.show-settings > .inner > .overlay.add.text.bottom-right {
	bottom: 60px;
}

.ui.UI_Video > .inner > .overlay.add.picture,
.ui.UI_Video > .inner > .overlay.add.video {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background-color: black;
	display: block;
	z-index: 3010;

	background-repeat: no-repeat;
	background-position: 50% 50%;

	background-size: 100% auto;
}

.ui.UI_Video > .inner > .overlay.add.html {
  	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background-color: rgba(128,128,128,.6);
	display: block;
	z-index: 3010;

	background-repeat: no-repeat;
	background-position: 50% 50%;

	background-size: 100% auto;  
}

.ui.UI_Video > .inner > .overlay.add.picture > .close,
.ui.UI_Video > .inner > .overlay.add.video > .close {
    bottom: 20px;
    right: 12px;
    width: 43px;
    height: 17px;
    background-color: rgba(64,64,64,.5);
    display: block;
    position: absolute;
    border-radius: 3px;
    color: white;
    text-shadow: 1px 1px black;
    font-family: Arial;
    padding: 5px;
    text-align: center;
    cursor: default;
    border: 3px solid rgba(255,255,255,.3);
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    z-index: 100;
}

.ui.UI_Video > .inner > .overlay.add.picture.no-close > .close,
.ui.UI_Video > .inner > .overlay.add.video.no-close > .close {
	width: 80px;
	text-align: right;
}

.ui.UI_Video.controls.activity > .inner > .overlay.add.picture > .close,
.ui.UI_Video.controls.activity > .inner > .overlay.add.video > .close,

.ui.UI_Video.controls.show-settings > .inner > .overlay.add.picture > .close,
.ui.UI_Video.controls.show-settings > .inner > .overlay.add.video > .close {
	bottom: 40px;
}

.ui.UI_Video > .inner > .overlay.add.html > .close {
	display: block;
	visibility: hidden;
	right: 5px;
	top: 5px;
	width: 20px;
	height: 20px;
	position: absolute;
	background-image: url(btn-close-text-add.png);
	background-repeat: no-repeat;
	opacity: .5;
}

.ui.UI_Video > .inner > .overlay.add.html:hover > .close {
	visibility: visible;
	cursor: default;
}

.ui.UI_Video > .inner > .overlay.add.html.no-close > .close {
	display: none;
}



.ui.UI_Video > .inner > .overlay.add.picture > a,
.ui.UI_Video > .inner > .overlay.add.video > a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	z-index: 3;
	position: absolute;
}

.ui.UI_Video > .inner > .overlay.add.video > .ui.UI_Video {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
}

.ui.UI_Video.error > .inner > .logo,
.ui.UI_Video.error > .inner > .poster,
.ui.UI_Video.error > .inner > .controlbar,
.ui.UI_Video.error > .inner > video,
.ui.UI_Video.error > .inner > .overlay,
.ui.UI_Video.error > .inner > .bigplay {
	display: none !important;
}

.ui.UI_Video > .inner > .bigplay {
	display: block;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: 9999;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 64px 64px;
	background-image: url(unloaded.png);
	pointer-events: all;
	-ms-pointer-events: all;
	-webkit-pointer-events: all;
	-o-pointer-events: all;
	-moz-pointer-events: all;
	cursor: pointer;
}

.ui.UI_Video.src > .inner > .bigplay {
	background-image: url(big-play.png);
}

.ui.UI_Video.is-playing > .inner > .bigplay {
	display: none;
}

.ui.UI_Video.is-fullscreen > .inner > iframe {
	width: 100% !important;
	height: calc( 100% - 2px ) !important;
}

/**
 * NAGRA STUFF
 */

.ui.UI_Video > .inner > .overlay.help-file {
	color: black;
	position: absolute;
	left: 8px;
	top: 8px;
	right: 8px;
	bottom: 38px;
	font-family: Arial;
	font-size: 14px;
	display: block;
	position: absolute;
	z-index: 12000;
	background-color: white;

	padding: 10px;

	overflow-y: auto;
	overflow-x: none;

}

.ui.UI_Video > .inner > .overlay.help-file * {
	user-select: text;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	-o-user-select: text;

	pointer-events: all;
	-webkit-pointer-events: all;
	-ms-pointer-events: all;
	-moz-pointer-events: all;
	-o-pointer-events: all;

}

.ui.UI_Video > .inner > .overlay.help-file h1 {
	font-size: 16px;
	margin: 10px 0px;
}

.ui.UI_Video > .inner > .overlay.sysinfo {
	display: block;
	position: absolute;
	left: 10px;
	top: 10px;
	right: 10px;
	bottom: 10px;
	background-color: rgba(255,255,255,.8);
	color: black;
	padding: 10px;
	margin: 0;
	z-index: 15000;
}

.ui.UI_Video > .inner > .overlay.sysinfo h2,
.ui.UI_Video > .inner > .overlay.sysinfo p,
.ui.UI_Video > .inner > .overlay.sysinfo td {
	margin: 10px 0px;
	font-family: Arial;
	font-size: 12px;
}

.ui.UI_Video > .inner > .overlay.video-suggestions {
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;

	background-color: rgba(0,0,0,1);
	z-index: 20000000;

	overflow: hidden;

	color: white;

	padding-left: 120px;

}

.ui.UI_Video > .inner > .overlay.video-suggestions > .replay {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 35px;
    top: 10px;
    display: block;
    background-image: url(./big-replay.png);
    background-size: 80% 80%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: .8;

    cursor: pointer;
}

.ui.UI_Video > .inner > .overlay.video-suggestions > .replay:hover {
	opacity: 1;
	background-color: rgba(255,255,255,.2);
}

.ui.UI_Video > .inner > .overlay.video-suggestions > .suggestion {

	float: left;
	width: 50%;
	height: 100px;
	overflow: hidden;
	display: block;

	max-width: 130px;
	padding: 5px;
	margin-bottom: 3px;

}

.ui.UI_Video > .inner > .overlay.video-suggestions > .suggestion:hover {
	cursor: pointer;
	background-color: rgba(255,255,255,.5);
	color: black;
}

.ui.UI_Video > .inner > .overlay.video-suggestions > .suggestion > .poster {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

.ui.UI_Video > .inner > .overlay.video-suggestions > .suggestion:hover > .poster {
	display: none;
}

.ui.UI_Video > .inner > .overlay.video-suggestions > .suggestion > .title {
	font-family: Arial;
	font-size: 12px;
	display: none;
	text-align: center;
}

.ui.UI_Video > .inner > .overlay.video-suggestions > .suggestion:hover > .title {
	display: block;
}