/* clearfix */

.mn-rescrollerk2 .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.mnclear {
	clear:both;
}

/* display none until init */

.mn-rescrollerk2{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.mn-rescrollerk2 .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.mn-rescrollerk2 .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}

.mn-rescrollerk2 .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.mn-rescrollerk2 .owl-item {
	float: left;
	transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsk2-modern .owl-controls {
	margin: 0 !important;
}

.rsk2-modern .owl-controls .owl-prev {
	position: absolute;
	left: 0;
	top: 40%;
	background: transparent;
	border-color:transparent;
	font-size: 28px !important;
	line-height: 30px;
	padding: 0 !important;
}

.rsk2-modern .owl-controls .owl-next {
	position: absolute;
	right: 0;
	top: 40%;
	background: transparent;
	border-color: transparent;
	font-size: 28px !important;
	line-height: 30px;
	padding: 0 !important;
}

.rsk2-modern .owl-controls .owl-prev i,
.rsk2-modern .owl-controls .owl-next i {
	width: 30px;
	height: 30px;
}

.rsk2-modern .owl-controls .owl-buttons div {
	background: none !important;
	border: 0 !important;	
	border-radius: 50% !important;
	color: #ddd !important;
	text-shadow: 0 0 12px #000000;
}

.rsk2-modern .owl-controls .owl-buttons div:hover {
	background: rgba(0,0,0,0.4) !important;
}

/* mouse grab icon */

.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */

.mn-rescrollerk2 .owl-wrapper,
.mn-rescrollerk2 .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  	-webkit-transform: translate3d(0,0,0);
  	-moz-transform: translate3d(0,0,0);
  	-ms-transform: translate3d(0,0,0);
}

/* CSS3 Transitions */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}

/* fade */

.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */

.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */

.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */

.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/

@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}

.mn-rescrollerk2 .owl-controls{
	margin: 10px 0;
	text-align: center;
}

/* Styling Next and Prev buttons */

.mn-rescrollerk2 .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	background: #869791;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */

.mn-rescrollerk2 .owl-controls.clickable .owl-buttons div:hover{
	text-decoration: none;
}

/* Styling Pagination Gravity theme*/

.mn-rescrollerk2 .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
}

.mn-rescrollerk2 .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	background:#fff;
	color:#777;
	border:1px solid #d5d5d5;
	font-size:18px;
	line-height:18px;
	cursor: pointer;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 5px 12px;
}

.mn-rescrollerk2 .owl-controls .owl-page.active span,
.mn-rescrollerk2 .owl-controls.clickable .owl-page:hover span{
		background:#E6E3E3;
}

/* If PaginationNumbers is true */

.mn-rescrollerk2 .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #777;
	padding: 3px 10px;
	font-size: 12px;
}

.mn-rescrollerk2 .owl-controls .owl-buttons div{
	background:#fff;
	color:#777;
	border:1px solid #d5d5d5;
	font-size:18px;
	line-height:18px;
	cursor: pointer;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 5px 12px;
}

.mn-rescrollerk2 .owl-controls .owl-buttons div:hover{
	border:1px solid #b5b5b5;
}

/* preloading images */

.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* -----------------------------------------------*/
/* CORE */
/* -----------------------------------------------*/

.mn-rescrollerk2 .mn-scroller-item{
	padding: 0;
	border: 0;
}

.mn-rescrollerk2 .mn-scroller-item img{
	display: block;
	width: 100%;
	height: auto;
}

/* -----------------------------------------------*/
/* MEDIA mn-rescroller-media */
/* -----------------------------------------------*/

.mn-rescroller-media {
	position: relative;
	overflow: hidden;
	width: 100%;
}

/* HOVER IMAGE */

.resk2-rescroller-hover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.5);
	z-index: 21;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}

.resk2-rescroller-hover:hover {
	-moz-opacity: 1;
	filter: alpha(opacity=1);
	opacity: 1;
}

/* HOVER ICONS */

.resk2-link-ico, .resk2-fancy-ico {
	position:absolute; left:50%;top:50%;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
	color:#fff; font-size:28px; 
	font-weight:bold;
	margin-top:-16px; 
	margin-left:-15px;
}

.resk2-link-ico.notalone {
	margin-left:8px;
}

.resk2-fancy-ico.notalone {
	margin-left:-38px;
}

.resk2-rescroller-hover .resk2-link-ico,
.resk2-rescroller-hover .resk2-fancy-ico {
	top:65%;
	-webkit-transition: all 0.2s ;
	-moz-transition: all 0.2s ;
	-o-transition: all 0.2s ;
	-ms-transition: all 0.2s ;
	-moz-opacity:0; filter:alpha(opacity=0); opacity:0;
	font-size: 24px;
}

.resk2-rescroller-hover:hover .resk2-link-ico,
.resk2-rescroller-hover:hover .resk2-fancy-ico {
	top:50%;
	-moz-opacity:1;
	filter:alpha(opacity=100);
	opacity:1;
}

.resk2-rescroller-hover:hover .resk2-fancy-ico {
	transition-delay: 0.1s;
	-moz-transition-delay: 0.1s; /* Firefox 4 */
	-webkit-transition-delay: 0.1s; /* Safari and Chrome */
	-o-transition-delay: 0.1s; /* Opera */
}    

/* -----------------------------------------------*/
/* Details mn-rescroller-details */
/* -----------------------------------------------*/

.resk2-rescroller-details {
	padding: 15px 0 10px;
	font-size: 13px;
}

.resk2-rescroller-details .resk2-title{
}

.resk2-rescroller-details .resk2-title h4{
	margin:0;
	padding-bottom:10px;
	font-size:21px;
}

.resk2-rescroller-details .resk2-comments,
.resk2-rescroller-details .resk2-readmore {
}

/* Other */

.hide_on_ready {
	display: none !important;
}

/* -----------------------------------------------*/
/* light Theme */
/* -----------------------------------------------*/

.rsk2-light .mn-scroller-item {
	border-radius: 6px;
	overflow: hidden;	
}

.rsk2-light span {
	line-height:20px;
}

.rsk2-light .resk2-rescroller-details {
	background-color: #fff;
	padding: 10px 20px 10px;
	border-right: 1px solid #e7e7e7;
	border-left: 1px solid #e8e8e8;
	border-top: 0;
	border-bottom: 2px solid #e8e8e8;
	border-radius: 0 0 6px 6px;
}

.rsk2-light .txt-center {
	text-align: center;
}

.rsk2-light .resk2-title a {
	color:#555;
	font-size: 15px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	margin: 5px 0;
}

.rsk2-light .resk2-intro {
	color: #555;
	font-size: 13px;
	line-height: 22px;
	color: #777;
	position: relative;
}

.rsk2-light .resk2-date{
	font-size:13px;
	color: #777;
}

.rsk2-light .resk2-hits{
	font-size:13px;
	color: #777;
}

.rsk2-light .resk2-tags{
	font-size:13px;
	color: #777;
}

.rsk2-light .resk2-tags a {
}

.rsk2-light .resk2-category {
	font-size:13px;
	color: #777;
}

.rsk2-light .resk2-category a {
}

.rsk2-light .resk2-author{
	font-size:13px;
	color: #777;
}

.rsk2-light .resk2-author a {
}

.rsk2-light .resk2-rescroller-media {
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.rsk2-light .resk2-rescroller-hover {
}

.rsk2-light .resk2-readmore a {
	padding: 4px 15px !important;
	color: #777;
	text-decoration: none !important;
	height: 40px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-size: 13px ;
	line-height: 42px;
	font-weight: 600;
	text-shadow: 0px 1px #fff;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #fff;
}

.rsk2-light .resk2-readmore a:hover,
.rsk2-light .resk2-readmore a:focus {
	background: #eee;
	color: #555;
}

.rsk2-light a {
}

/* -----------------------------------------------*/
/* Gray Theme */
/* -----------------------------------------------*/

.rsk2-gray span {
	line-height:20px;
}

.rsk2-gray .resk2-rescroller-details {
	padding: 5px 0px 0px;
	border-top: 0;
}

.rsk2-gray .txt-center {
	text-align: center;
}

.rsk2-gray .resk2-title a {
	color:#555;
	font-size: 15px;
	text-decoration: none;
	font-weight: 700;
	margin: 5px 0;
}

.rsk2-gray .resk2-intro {
	color: #555;
	font-size: 13px;
	line-height: 18px;
	color: #777;
	position: relative;
}

.rsk2-gray .resk2-date{
	font-size:13px;
	color: #777;
}

.rsk2-gray .resk2-hits{
	font-size:13px;
	color: #777;
}

.rsk2-gray .resk2-tags{
	font-size:13px;
	color: #777;
}

.rsk2-gray .resk2-tags a {
}

.rsk2-gray .resk2-category {
	font-size:13px;
	color: #777;
}

.rsk2-gray .resk2-category a {
}

.rsk2-gray .resk2-author{
	font-size:13px;
	color: #777;
}

.rsk2-gray .resk2-author a {
}

.rsk2-gray .resk2-rescroller-media {
	padding:0px;
	overflow: hidden;
	width: 100%;
	background:none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.rsk2-gray .resk2-rescroller-media-inner {
	position: relative;
}

.rsk2-gray .resk2-rescroller-media img {
}

.rsk2-gray .resk2-rescroller-hover {
}

.rsk2-gray .resk2-readmore a {
	padding: 4px 15px !important;
	color: #777;
	text-decoration: none !important;
	height: 40px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-size: 13px ;
	line-height: 42px;
	font-weight: 600;
	text-shadow: 0px 1px #fff;
	cursor: pointer;
	border: 1px solid #ccc;
	background: #fff;
}

.rsk2-gray .resk2-readmore a:hover,
.rsk2-gray .resk2-readmore a:focus {
	background: #eee;
	color: #555;
}

.rsk2-gray .resk2-rescroller-details .resk2-title h4 {
	padding-bottom:0;
	line-height: 18px;
	margin: 0 0 5px;
}
/* -----------------------------------------------*/
/* Modern Theme */
/* -----------------------------------------------*/

.rsk2-modern .mn-scroller-item {
	border:0;
}

.rsk2-modern .resk2-rescroller-media {
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.rsk2-modern .resk2-rescroller-details {
	position:absolute;
	width: 100%;
	bottom:0;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
	color:#eee;
	padding:5px 15px;
	z-index:22;
}

.rsk2-modern .resk2-category {
	position:absolute;
	top:10px;
	left:10px;
	background:@theme-color;
	padding: 2px 7px;
	color: #fff;
	text-transform:uppercase;
	line-height: 19px; 
}

.rsk2-modern .resk2-category a , .rsk2-modern .resk2-author a{
	color:#fff;
}

.rsk2-modern .resk2-rescroller-details .resk2-title h4 {
	padding:10px 0;
	font-size: 16px;
}

.rsk2-modern .resk2-rescroller-details .resk2-title h4 a {
	color:#fff;
	font-weight: 500;
	text-transform: uppercase;
}

.rsk2-modern .resk2-tags a {
	color:#fff;
}

.rsk2-modern .resk2-readmore {
	float: right;
}	
.rsk2-modern .resk2-readmore a {
	margin-left: 7px;
}
.rsk2-modern .resk2-readmore i {
	font-size: 15px;	
}

/*.rsk2-modern .mn-scroller-item:hover .resk2-readmore a {
	opacity: 1;
}*/

.rsk2-modern .resk2-readmore a {
	color:#fff;
}

.rsk2-modern .resk2-intro-outer {
	height: 0;
	transition: all 0.4s ease-out 0s;
	overflow: hidden;
	margin: 0;
}

.rsk2-modern .resk2-intro-outer .resk2-intro {
	padding-bottom: 10px;
	margin: 0;
	line-height: 15px;
}

.rsk2-modern .darkhover {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: all 0.2s ease-out 0s;
	width: 100%;
}

.rsk2-modern .mn-scroller-item:hover .darkhover {
	background: rgba(0,0,0,0.65);	
}

.rsk2-modern .resk2-comments a,
.rsk2-modern .resk2-author a,
.rsk2-modern .resk2-tags a,
.rsk2-modern .resk2-readmore {
	color: #eee; 
}

.rsk2-modern .resk2-comments a:hover,
.rsk2-modern .resk2-author a:hover,
.rsk2-modern .resk2-tags a:hover,
.rsk2-modern .resk2-readmore a:hover {
	text-decoration: underline;
}

/* -----------------------------------------------*/
/* Retro Light Theme */
/* -----------------------------------------------*/

.rsk2-retro-light .resk2-rescroller-media {
	padding: 4px;
	border: 1px solid #cecece;
}

.rsk2-retro-light .resk2-rescroller-media-inner {
	position:relative;
}

.rsk2-retro-light .owl-wrapper-outer{
}

.rsk2-retro-light .mn-scroller-item {
}

.rsk2-retro-light {
	background: #fff;
	padding: 28px 20px 0;
	-webkit-box-shadow: 0px 0px 5px 1px rgba(100,100,100,0.1);
	-moz-box-shadow: 0px 0px 5px 1px rgba(100,100,100,0.1);
	box-shadow: 0px 0px 5px 1px rgba(100,100,100,0.1);
}

.rsk2-retro-light .mn-scroller-item img {
}

.rsk2-retro-light .resk2-rescroller-details {
	font-size: 13px;
	line-height: 20px;
}

.rsk2-retro-light .resk2-title a {
	font-weight: 400;
	font-size: 18px;
	text-shadow: #fff 1px 1px 1px;
	margin: 0px;
	width: 100%;
	color: #656565;
}

.rsk2-retro-light .resk2-title a:hover {
	color: #333;	
}

.rsk2-retro-light .resk2-date {
	color:#999;
}

.rsk2-retro-light .resk2-intro {
	line-height: 20px;
	color: #777;
	text-shadow: #fff 1px 1px 1px;
	margin: 0 0 12px;
	padding-bottom: 10px;
	font-size: 13px;
}

.rsk2-retro-light .owl-next {
	border-radius: 0 500px 500px 0 !important;
    box-shadow: 4px 0 5px 1px rgba(100, 100, 100, 0.1);
    right: -25px;
    margin: -15px 0 0 !important;
    padding: 10px 7px 10px 0 !important;
    position: absolute;
    top: 50%;
	border: 0 !important;
}
	
.rsk2-retro-light .owl-prev {
	border-radius: 500px 0 0 500px !important;
    box-shadow: -4px 0 5px 1px rgba(100, 100, 100, 0.1);
    left: -25px;
    margin: -15px 0 0 !important;
    padding: 10px 0 10px 7px !important;
    position: absolute;
    top: 50%;
	border: 0 !important;
}

.rsk2-retro-light .owl-prev i,
.rsk2-retro-light .owl-next i {
	line-height: 1em;
	width: 1em;
	font-size: 24px;
	font-weight: bold;
}

.rsk2-retro-light .owl-prev:hover i,
.rsk2-retro-light .owl-next:hover i {
	color: #000;	
}

.rsk2-retro-light .resk2-readmore {
	margin-top: 15px;
	display:block;
}

.rsk2-retro-light .resk2-readmore a {
	padding: 4px 15px !important;
	color: #777 !important;
	text-decoration: none !important;
	height: 40px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-size: 12px ;
	line-height: 42px;
	font-weight: 700;
	text-shadow: 0px 1px #fff;
	cursor: pointer;
	border: 1px solid #ccc;
}

.rsk2-retro-light .resk2-readmore a:hover,
.rsk2-retro-light .resk2-readmore a:focus {
	background: #eee;
	color: #555;
}
	
.rsk2-retro-light .resk2-hits {
	color:#999;
}

/* -----------------------------------------------*/
/* Retro Dark Theme */
/* -----------------------------------------------*/

.rsk2-retro-dark .resk2-rescroller-media {
	position:relative;
	border: 1px solid #111;
}

.rsk2-retro-dark .resk2-rescroller-details {
	color: #777;
	line-height: 20px;
}

.rsk2-retro-dark .resk2-rescroller-details a {
	color: #aaa;
}

.rsk2-retro-dark .mn-scroller-item{
}

.rsk2-retro-dark {
	background:#222;
	padding: 28px 20px 0;
	-webkit-box-shadow: 0px 0px 5px 1px rgba(100,100,100,0.1);
	-moz-box-shadow: 0px 0px 5px 1px rgba(100,100,100,0.1);
	box-shadow: 0px 0px 5px 1px rgba(100,100,100,0.1);
}

.resk2-rescroller-details .resk2-title h4{
	padding-bottom:20px;
}

.rsk2-retro-dark .resk2-title a {
	text-decoration: none;
	font-weight: 400 !important;
	font-size: 18px;
	margin: 0px;
	width: 100%;
	text-decoration: none !important;
	text-transform: none !important;
	color:#ddd;
	text-shadow: 1px 1px 1px #000000;
}

.rsk2-retro-dark .resk2-date {
	color:#999;
}

.rsk2-retro-dark .resk2-intro {
	line-height: 20px;
	color: #888;
	margin: 0 0 12px;
	padding-bottom: 10px;
	font-size:13px;
	text-shadow: #000 1px 1px 1px;
}

.mn-rescrollerk2.rsk2-retro-dark .owl-controls .owl-buttons div {
}

.rsk2-retro-dark .owl-next {
	background: #222 !important;
	border-radius: 0 500px 500px 0 !important;
    box-shadow: 4px 0 5px 1px rgba(100, 100, 100, 0.1);
    right: -25px;
    margin: -15px 0 0 !important;
    padding: 10px 7px 10px 0 !important;
    position: absolute;
    top: 50%;
	border: 0 !important;
}
	
.rsk2-retro-dark .owl-prev {
	background:#222 !important;
	border-radius: 500px 0 0 500px !important;
    box-shadow: -4px 0 5px 1px rgba(100, 100, 100, 0.1);
    left: -25px;
    margin: -15px 0 0 !important;
    padding: 10px 0 10px 7px !important;
    position: absolute;
    top: 50%;
	border: 0 !important;
}

.rsk2-retro-dark .owl-prev i,
.rsk2-retro-dark .owl-next i {
	line-height: 1em;
	width: 1em;
	font-size: 24px;
	font-weight: bold;
}

.rsk2-retro-dark .owl-prev:hover i,
.rsk2-retro-dark .owl-next:hover i {
	color: #eee;	
}

.rsk2-retro-dark .resk2-readmore {
	margin-top: 15px;
	display:block;
}

.rsk2-retro-dark .resk2-readmore a {
	background:#333;
	padding: 4px 15px;
	color: #777;
	text-decoration: none;
	height: 40px;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.2);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	font-size: 12px ;
	line-height: 42px;
	cursor: pointer;
	border: 1px solid #151515;
}

.rsk2-retro-dark .resk2-readmore a:hover {
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2) inset;
	background: #444;
	color: #999;
}

/* -----------------------------------------------*/
/* Caption Theme */
/* -----------------------------------------------*/

.rsk2-caption .mn-scroller-item {
	padding: 5px;
	background: #fff;
}

.rsk2-caption .resk2-rescroller-media {
	position:relative;
	overflow: hidden;
}

.rsk2-caption .resk2-rescroller-details{
	position:absolute;
	bottom:0;
	height:0;
	background: rgba(255,255,255,0.9);	
	color:#777;
	padding:5px 15px 25px 15px;
	z-index:22;
	-webkit-transition: all 0.2s ;
	-moz-transition: all 0.2s ;
	-o-transition: all 0.2s ;
	-ms-transition: all 0.2s ;
}

.rsk2-caption .resk2-title.go-to-top {
	left: 20px;
    margin-top: -40px;
    position: absolute;
    top: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    z-index: 30;
}

.rsk2-caption .revactive .resk2-title.go-to-top {
	left: 20px;
    margin-top: 0;
    position: absolute;
    top: 20px;
    z-index: 30;
}

.rsk2-caption .owl-item .mn-scroller-item {
	position: relative;	
}

.rsk2-caption .resk2-title.go-to-top h4 {
	margin: 0;	
	background-color: #111111;
	line-height: 20px;
}

.rsk2-caption .resk2-title.go-to-top h4 a {
	color: #fff;	
	font-size: 14px;
    font-weight: 600;
	line-height: 20px;
	text-transform: uppercase;
	margin: 0;
	padding: 3px 10px 5px;
	text-decoration: none;
	display: block;
}

.rsk2-caption .resk2-rescroller-details {
	height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    visibility: hidden;
    width: 100%;
	z-index: 29;
}

.rsk2-caption .resk2-rescroller-details .reveal_wrapper {
	-moz-box-sizing: border-box;
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
    height: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 55px 20px 20px;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
    width: 100%;
}

.rsk2-caption .revactive .resk2-rescroller-details .reveal_wrapper {
	height: 100%;
    opacity: 1;
    visibility: visible;
}

.rsk2-caption .reveal_opener.show_on_hover {
    opacity: 0;
    z-index: 31;
	text-decoration: none;
	background-color: #FFFFFF;
    border-radius: 4px 0 0;
    bottom: 0;
    color: #888888;
    cursor: pointer;
    font-family: Arial;
    font-size: 22px;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    transition: opacity 0.2s ease-out 0s;
    width: 45px;
}

.rsk2-caption .reveal_opener .openme {
    display: block;
}

.rsk2-caption .reveal_opener .closeme {
    display: none;
}

.rsk2-caption .owl-item .mn-scroller-item:hover .show_on_hover {
	opacity: 1;	
}
