/*==================================================================
Project:     Multiple Carousel
Version:     1.0
Last change: 12/Oct/16
Description: Multiple Carousel optimizes your layout by showing until four different content types organized in a single compact carousel.
Author:      Webdesign Trade
Author URI:  http://webdesigntrade.net
--------------------------------------------------------------------
[COLOR SCHEME] Search these colors and replace by your favorites
--------------------------------------------------------------------
#016ea1 PRIMARY
#014d71 SECONDARY
/*------------------------------------------------------------------
[MULTIPLE CAROUSEL]
------------------------------------------------------------------*/
/*
@font-face{
    font-family: 'multiple';
    font-weight: normal;
    font-style: normal;
    src: url('./fonts/multiple.eot');
    src: url('./fonts/multiple.eot?#iefix') format('embedded-opentype'), url('./fonts/multiple.woff') format('woff'), url('./fonts/multiple.ttf') format('truetype'), url('./fonts/multiple.svg#multiple') format('svg');
}
*/
.multiple{
    white-space: nowrap;
    min-height: 180px;
    background-image:url(../images/loading/loading1.gif);
    background-repeat: no-repeat;
    background-position: center;
    /* DEFAULT FONTS */
    /* font-family: "Helvetica Neue",Arial,sans-serif; */
    /* CONFIGURE YOUR OWN FONT HERE - OPTIONAL */
    /* font-family: 'Roboto', sans-serif; */
}
.multiple a {
    color: #016ea1;
    text-decoration: none;
}
.multiple a:hover {
    color: #014d71;
    text-decoration: none;
}
.m-content,
.m-nav{
    /* display: none; */
}
.multiple{
    position:relative;
    overflow: hidden;
}
.multiple *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.multiple *:before,
.multiple *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.multiple html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
.multiple {
    z-index: 18;
    width: 100%;
}
.m-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.m-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.m-list:focus{
    outline: none;
}
.m-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.m-slider .m-track,
.m-slider .m-list{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.m-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.m-track:before,
.m-track:after{
    display: table;
    content: '';
}
.m-track:after{
    clear: both;
}
.m-loading .m-track{
    visibility: hidden;
}
.m-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .m-slide{
    float: right;
}
.m-slide img{
    display: block;
}
.m-slide.m-loading img{
    display: none;
}
.m-slide.dragging img{
    pointer-events: none;
}
.m-initialized .m-slide{
    display: block;
}
.m-loading .m-slide{
    visibility: hidden;
}
.m-vertical .m-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.m-arrow.m-hidden {
    display: none;
}
.m-loading .m-list{
    background: #fff url('../images/loading/ajax-loader.gif') center center no-repeat;
}
.m-prev,
.m-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.m-prev:hover,
.m-prev:focus,
.m-next:hover,
.m-next:focus{
    color: transparent;
    outline: none;
    background: transparent;
}
.m-prev:hover:before,
.m-prev:focus:before,
.m-next:hover:before,
.m-next:focus:before{
    opacity: 1;
}
.m-prev.m-disabled:before,
.m-next.m-disabled:before{
    opacity: .25;
}
.m-prev:before,
.m-next:before{
    font-family: 'multiple';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.m-prev{
    left: -25px;
}
[dir='rtl'] .m-prev{
    right: -25px;
    left: auto;
}
.m-prev:before{
    content: '←';
}
[dir='rtl'] .m-prev:before{
    content: '→';
}
.m-next{
    right: -25px;
}
[dir='rtl'] .m-next{
    right: auto;
    left: -25px;
}
.m-next:before{
    content: '→';
}
[dir='rtl'] .m-next:before{
    content: '←';
}
/* Dots */
.m-dotted.m-slider{
    margin-bottom: 30px;
}
.m-dots{
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.m-dots li{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.m-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.m-dots li button:hover,
.m-dots li button:focus{
    outline: none;
}
.m-dots li button:hover:before,
.m-dots li button:focus:before{
    opacity: 1;
}
.m-dots li button:before{
    font-family: 'multiple';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.m-dots li.m-active button:before{
    opacity: .75;
    color: black;
}
.m-list {
    overflow: visible;
}
.m-item{
    float:left;
    position:relative;
}
.m-1-2 .m-item{
    float:right;
}
.m-block{
    width:70000px;
}
.multiple .m-recipient {
	top: -300000px;
    white-space: normal;
    width: 100%;
    background: #ffffff;	/* #ececec; */
    overflow: hidden;
    position: relative;
    z-index: 5;
}
.multiple.m-topnav .m-recipient {
    padding-top: 42px;
}
.multiple.m-bottomnav .m-recipient {
    padding-bottom: 42px;
}
.multiple .m-content.m-1-2 {
    padding-top: 4px;
    padding-bottom: 3px;
    width: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    margin-left: -21px;
    z-index: 36;
}
.multiple .m-content.m-2-2 {
    padding-top: 4px;
    padding-bottom: 3px;
    width: 50%;
    overflow: hidden;
    position: absolute;
    right: 0;
    margin-right: -21px;
    z-index: 36;
}
.multiple.m-mono .m-content.m-1-1 {
    padding-top: 4px;
    padding-bottom: 3px;
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 36;
}
.multiple.m-triple .m-content.m-1-3,
.multiple.m-triple .m-content.m-2-3,
.multiple.m-triple .m-content.m-3-3 {
    text-align: right !important;
    padding-top: 4px;
    padding-bottom: 3px;
    width: 33.333333%;
    overflow: hidden;
    position: absolute;
    margin-left: auto;
    left: auto;
    right: 66.66666666%;
    margin-right: 0;
    z-index: 36;
}
.multiple.m-triple .m-content.m-2-3 {
    right: 33.33333333%;
}
.multiple.m-triple .m-content.m-3-3 {
    right: 0;
}
.multiple.m-mono .m-list,
.multiple.m-triple .m-list,
.multiple.m-quadruple .m-list{
    width: 2500px;
}

.multiple.m-quadruple .m-content.m-1-4,
.multiple.m-quadruple .m-content.m-2-4,
.multiple.m-quadruple .m-content.m-3-4,
.multiple.m-quadruple .m-content.m-4-4 {
    text-align: right !important;
    padding-top: 4px;
    padding-bottom: 3px;
    width: 25%;
    overflow: hidden;
    position: absolute;
    margin-left: auto;
    left: auto;
    right: 75%;
    margin-right: 0;
    z-index: 36;
}
.multiple.m-quadruple .m-content.m-2-4 {
    right: 50%;
}
.multiple.m-quadruple .m-content.m-3-4 {
    right: 25%;
}
.multiple.m-quadruple .m-content.m-4-4 {
    right: 0;
}
.multiple.m-leftnav .m-content.m-1-2,
.multiple.m-rightnav .m-content.m-1-2,
.multiple.m-2-2nav .m-content.m-1-2 {
    margin-left: -2px;
}
.multiple.m-leftnav .m-content.m-2-2,
.multiple.m-rightnav .m-content.m-2-2,
.multiple.m-2-2nav .m-content.m-2-2 {
    margin-right: -2px;
}
.multiple .m-content.m-1-2 .m-block {
    width: 2500px;
    float: right;
    right: 0;
}
.multiple .m-content.m-2-2 .m-block {
    width: 2500px;
    float: left;
    left: 0;
}
.multiple .m-content.m-1-2 .m-list {
    padding-right: 4px;
}
.multiple .m-content.m-2-2 .m-list {
    padding-left: 0;
}
.m-carousel-titles{
    width:100%;
    z-index: 2;
    position: relative;
    font-size: 0;
    border-top: 6px solid #ececec;
    background: #fff;
    padding-top: 20px;
}
.m-title-1-1,
.m-title-1-2,
.m-title-2-2,
.m-title-1-3,
.m-title-2-3,
.m-title-3-3,
.m-title-1-4,
.m-title-2-4,
.m-title-3-4,
.m-title-4-4{
    font-size: 15px;
    width: 50%;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    color: #aaa;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.m-title-1-1{
    width:100%;
}
.m-title-1-2{
   padding-right: 34px;
}
.m-title-2-2{
    padding-left: 40px;
}
.m-title-1-3,
.m-title-2-3,
.m-title-3-3{
    width: 33.333333%;
}.m-title-1-3{
    padding-right: 7px;
}
.m-title-3-3{
    padding-left: 7px;
}
.m-leftnav .m-title-1-2,
.m-rightnav .m-title-1-2{
    padding-right: 0;
    padding-left: 12px;
}
.m-leftnav .m-title-2-2,
.m-rightnav .m-title-2-2{
    padding-left: 0;
    padding-right: 0;
}
.m-topnav .m-title-1-2,
.m-bottomnav .m-title-1-2{
    padding-left: 0;
    padding-right: 0;
}
.m-topnav .m-title-2-2,
.m-bottomnav .m-title-2-2{
    padding-left: 0;
    padding-right: 0;
}
.m-title-1-4,
.m-title-2-4,
.m-title-3-4,
.m-title-4-4{
    width: 25%;
}
.m-arrow {
    display: none !important;
}
.multiple .m-item {
    background: #fff;
    margin-left: 2px;
    margin-right: 2px;
    /*-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;*/
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 2px solid #ffffff;	/* #e9e9e9; */
}
.catnav.companies .m-track {
    text-align: right;
    padding-right: 15px;
}
.multiple .m-item:hover {
    background: #fff;
    border: 2px solid #ffffff;	/* #016ea1; */
}
.multiple .m-2-2 .m-item-title a {
    position: relative;
    left: 0;
}
.multiple .m-item:hover .m-item-title a {
    color: #016ea1;
}
.multiple .m-item .m-item-title a:hover {
    color: #014d71;
}
.multiple .m-item:hover .m-icon i {
    color: #014d71;
}
.m-img {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.m-img .m-view {
    position: absolute;
    z-index: 60;
    width: 100%;
    height: 100%;
    top: -35px;
    /* internet explorer */
    filter: alpha(opacity=0);
    /* fx, safari, opera, chrome */
    opacity: 0;
    /*IE8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)";
}
.multiple.only-excerpt .m-img .m-view {
    /* internet explorer */
    filter: alpha(opacity=100);
    /* fx, safari, opera, chrome */
    opacity: 1;
    /*IE8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
}
.m-img .m-view a {
    padding-top: 70px;
    color: #016ea1;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
}
.m-img .m-view,
.only-excerpt .m-img .m-view {
    display: table;
}
.m-img .m-view a,
.only-excerpt .m-img .m-view a {
    display: table-cell;
    vertical-align: middle;
    padding:12px;
    padding-top: 0;
    font-size: 0;
}
.m-img .m-view a span{
    display: block;
    padding-top:5px;
    margin-bottom: 10px;
    font-size: 14px;
	color: #222;
}
.m-hover-excerpt .m-item:hover .m-img .m-view a,
.only-excerpt .m-item:hover .m-img .m-view a {
    color: #222;
}
.m-img .m-view i {
    font-size: 20px;
    width: 34px;
    height: 34px;
    padding-top: 4px;
    margin-top: 800px;
    margin-left: 3px;
    margin-right: 3px;
    background: #fff;
    border: 2px solid #016ea1;
    /*-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;*/
    overflow: hidden;
}
.m-img .m-view i.fa-shopping-basket {
    font-size: 18px;
    padding-top: 6px;
}
.m-img .m-view i.m-zoom-out {
    position: relative;
    width: 26px;
    height: 26px;
    font-size: 16px;
    bottom: 2px;
    padding-top: 3px;
}
.m-img .m-view i:hover {
    background: #016ea1;
    color: #fff;
}
.m-img img {
    position: absolute;
    width: 100%;
    left: 0;
}
.m-icon i:hover {
    color: #016ea1 !important;
}
.m-item-title {
    display: inline-block;
    height: 50px;
    text-align: center;
    margin-left: 5px;
}
.m-item-title a {
    position: relative;
    color: #7f7f7f;
    text-align: center;
    height: 55px;
    line-height: 15px;
    display: table-cell;
    vertical-align: middle;
    padding-top: 3px;
}
[dir='rtl'] .m-item-title a{
    direction: ltr;
}
.m-item-title a:hover {
    text-decoration: none;
}
.m-item-category {
    width: 100%;
    height: 24px;
    text-align: center;
    position: relative;
    border-top: 1px solid #ddd;
	overflow: hidden;
}
.m-item-category a {
    display: block;
    padding-top: 4px;
    color: #888;
    font-size: 12px;
    text-decoration: none;
}
.m-item-category:hover {
    background: #016ea1 !important;
}
.multiple .m-item:hover .m-item-category {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #eee;
}
.m-item-category:hover a {
    color: #fff
}
.m-icon {
    z-index: 6000;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    display: table-cell;
    vertical-align: middle;
}
.m-icon-icon {
    height: 24px;
    text-align: left;
    position: relative;
    top: 0;
    left: 0;
    font-size: 16px;
    color: #bbb;
    display: table-cell;
    vertical-align: middle;
    padding-left: 5px;
    padding-top: 2px;
}
.m-icon-icon a {
    color: #bbb;
    font-size: 16px;
}
.m-icon .fa-home {
    font-size: 19px;
}
.m-footer-link {
    overflow: hidden;
    width: 100%;
    height: 22px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    background: #eaeaea; /* #dddddd;		#9a9fa9; 	#014d71; */
    z-index: 60;
}
.m-footer-link .m-f-link:after {
    width:   18px;
    overflow: hidden;
    position: absolute;
    z-index: 5;
    padding-top: 3px;
    padding-bottom: 2px;
    padding-left: 6px;
    top: -11px;
    right: -18px;
    background: #eaeaea; /* #dddddd;	#016ea1; */
    color: #eaeaea;	/* #dddddd;	 #9a9fa9; 	 #014d71; */
    content: "\f0d9";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 37px;
}
.m-footer-link div {
    float: left;
    margin-left: -1px;
}
.m-footer-link .ribbon-end i {
    font-size: 37px;
    position: relative;
    padding-left: 4px;
    top: -8px;
    background: #016ea1;
    color: #014d71;
}
.m-footer-link .ribbon-end i:before {
    position: relative;
    left: 1px;
}
.m-footer-link .m-star {
    position: relative;
    z-index: 6;
    color: #ffff00;
    background: #016ea1;
    padding-top: 2px;
    padding-left: 7px;
}
.m-footer-link .m-f-link {
    margin-left: -1px;
    position: relative;
    z-index: 5;
    height: 22px;
    background: #eaeaea; /* #dddddd;  #016ea1; */
    padding-left: 6px;
    font-size: 12px;
}
.m-footer-link .m-f-link a {
    color: #333;	/* #9a9fa9; 	#ffffff; */
    height: 24px;
    line-height: 24px;
}
.m-detail {
    height: 22px;
    position: absolute;
    z-index: 65;
    bottom: 0;
    right: 0;
    display: inline-block;
}
.m-detail div {
    float: right;
    height: 22px;
    margin-right: -1px;
}
.m-detail .detail {
    height:22px;
    overflow:hidden;
    padding-top: 2px;
    padding-left: 1px;
    padding-right: 6px;
    background: #eaeaea; /* #dddddd; 	#016ea1; */
    color: #9a9fa9; 	/* #fff; */
    font-size: 14px;
}
.m-detail .detail:before{
        width:   18px;
        overflow: hidden;
        position: absolute;
        z-index: 5;
        padding-top: 3px;
        padding-bottom: 2px;
        padding-right: 6px;
        top: -11px;
        left: -12px;
        color: #eaeaea; /* #dddddd;	#016ea1; */
        content: "\f0d9";
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 37px;
}
.multiple .m-content.m-1-2 .m-item,
.multiple .m-content.m-2-2 .m-item {
    margin-bottom:30px;
}
/* NAVIGATION */
.m-nav {
    width: 30px;
    background: #ffffff;	/* #fff; */
    position: absolute;
    z-index: 32;
    left: 50%;
    margin-left: -15px;
    margin-top: 6px;
    text-align: center;
    /*-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;*/
}
.m-mono .m-nav,
.m-double.m-leftnav .m-nav,
.m-double.m-rightnav .m-nav,
.m-double.m-2-2nav .m-nav,
.m-2c.m-2-2nav .m-nav,
.m-2c .m-nav {
    width: 46px;
    border: 8px solid #ffffff;	/* #ececec; */
    background: #ffffff;	/* #fff; */
    position: absolute;
    z-index: 32;
    left: 50%;
    margin-left: -23px;
    margin-top: -2px;
    text-align: center;
    /*-webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;*/
}


.m-nav .up {
    margin-top: -2px;
    font-size: 20px;
    display: inline-block;
    color: #aaa; /* #bbb; */
}
.m-nav .player {
    font-size: 24px;
    display: inline-block;
    color: #bbb;
    position: absolute;
    top: 50%;
    margin-top: -16.5px;
    left: 5.5px;
}
.m-nav .down {
    font-size: 20px;
    display: inline-block;
    color: #aaa; /* #bbb; */
    position: absolute;
    left: 5px;
    bottom: 0;
}

.multiple.m-topnav .m-content.m-1-2 .m-list,
.multiple.m-bottomnav .m-content.m-1-2 .m-list {
    padding-right:0;
}
.multiple.m-topnav .m-content.m-2-2 .m-list,
.multiple.m-bottomnav .m-content.m-2-2 .m-list {
    padding-left:0;
}
.multiple.m-topnav .m-content.m-2-2,
.multiple.m-bottomnav .m-content.m-2-2{
    margin-right:-4px;
}
.multiple.m-topnav .m-content.m-1-2,
.multiple.m-bottomnav .m-content.m-1-2{
    margin-left:-4px;
}
.multiple.m-triple .m-content.m-1-3{
    margin-left: auto;
    margin-right:8px;
}
.multiple.m-triple .m-content.m-3-3{
    margin-right:-7px;
}
.multiple.m-double.m-topnav .m-content.m-1-2 .m-list,
.multiple.m-double.m-bottomnav .m-content.m-1-2 .m-list {
    padding-right:4px;
}
.multiple.m-double.m-topnav .m-content.m-2-2,
.multiple.m-double.m-bottomnav .m-content.m-2-2{
    margin-right:-2px;
    z-index: 35;
}
.multiple.m-double.m-topnav .m-content.m-1-2,
.multiple.m-double.m-bottomnav .m-content.m-1-2{
    margin-left:-2px;
    z-index: 35;
}
.multiple.m-2c .m-content.m-2-2{
    z-index: 36;
}
.multiple.m-2c .m-content.m-1-2{
    z-index: 36;
}
.multiple.m-2c.m-leftnav .m-content.m-1-2{
    left: -2px;
}
.multiple.m-2c.m-topnav .m-nav {
    width: 46px;
    border: 8px solid #ffffff;	/* #ececec; */
    background: #fff;
    position: absolute;
    z-index: 32;
    left: 50%;
    margin-left: -23px;
    margin-top: -2px;
    text-align: center;
    /*-webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    border-radius: 14px;*/
}



.m-nav .up {
    width: 20px;
    margin-top: -2px;
    font-size: 20px;
    display: inline-block;
    color: #bbb; /* #ffffff; */
}
.m-nav .player {
    width: 240px; 	/* 21px; */
    font-size: 20px;
	font-weight: normal;
    display: inline-block;
    color: #ffffff; /* #bbb; */
}
.m-nav .down {
    width: 20px;
    font-size: 20px;
    display: inline-block;
    color: #bbb; /*	#ffffff;	 */
}



.m-nav i:hover {
    cursor: pointer;
    color: #016ea1;
}
.m-mono.m-leftnav .m-nav,
.m-double.m-leftnav .m-nav,
.m-2c.m-leftnav .m-nav{
    left: 0;
    top: 0;
    margin-left: 0;
    z-index: 40;
}
.m-mono.m-rightnav .m-nav,
.m-double.m-rightnav .m-nav,
.m-2c.m-rightnav .m-nav{
    right: 0;
    top: 0;
    margin-left: auto;
    margin-right: 0;
    z-index: 40;
}
.m-mono.m-2-2nav .m-nav,
.m-double.m-2-2nav .m-nav,
.m-2c.m-2-2nav .m-nav{
    left: auto;
    margin-left: auto;
    right: 0;
    top: 0;
    margin-right: 0;
    z-index: 40;
}
.m-topnav .m-nav,
.multiple.m-2c.m-topnav .m-nav,
.m-bottomnav .m-nav{
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    margin-left: 0;
    height: 48px;
    margin-top: 0;
    top: 0;
    border: 6px solid #ffffff;	/* #ececec; */
}
.m-topnav .m-nav .up,
.m-bottomnav .m-nav .up{
    position: absolute;
    top: 5px;
    left: 8px;
}
.m-topnav .m-nav .down,
.m-bottomnav .m-nav .down{
    position: absolute;
    top: 5px;
    left: auto;
    right: 8px;
    margin-top: 0
}
.m-topnav .m-nav .player,
.m-bottomnav .m-nav .player{
    top: 50%;
    margin-top: -16.5px;
    left: 41%; /* 50%; */
    margin-left: -10px;
}
.m-bottomnav .m-nav{
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    margin-left: 0;
    height: 48px;
    margin-top: 0;
    top: auto;
    bottom: 1px;
    border: 6px solid #ffffff; /* #ececec; */
}
.m-topnav .m-nav .up i,
.m-topnav .m-nav .down i,
.m-bottomnav .m-nav .up i,
.m-bottomnav .m-nav .down i{
    behavior:url(-ms-transform.htc);
    /* Firefox */
    -moz-transform:rotate(270deg);
    /* Safari and Chrome */
    -webkit-transform:rotate(270deg);
    /* Opera */
    -o-transform:rotate(270deg);
    /* IE9 */
    -ms-transform:rotate(270deg);
}
.m-topnav .m-nav .up,
.m-bottomnav .m-nav .up{
    left: 4px;
}
.m-topnav .m-nav .up i,
.m-bottomnav .m-nav .up i{
    padding-right: 2px;
}
.m-topnav .m-nav .down i,
.m-bottomnav .m-nav .down i{
    padding-left: 1px;
}
.m-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.m-overlay img {
    width: 100%;
    height: 100%;
}
.m-no-overlay .m-overlay{
    display:none;
}
.m-black-overlay .m-item-category{
    background: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.multiple.m-black-overlay .m-item .m-item-category:hover{
    border-top: 1px solid #fff;
}
.m-black-overlay .m-item-category a{
    color: #bbb;
}
.m-black-overlay .m-item:hover .m-item-category a{
    color: #888;
}
.m-black-overlay .m-item .m-item-category a:hover{
    color: #fff;
}
.m-black-overlay .m-item:hover .m-overlay{
    display: none;
}
/* Black Slide BG */
.multiple.m-slide-bg-black .m-item{
    background: #000;
}
.multiple.m-slide-bg-black .m-item-category{
    background: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.multiple.m-slide-bg-black .m-item:hover{
    background: #fff;
}
.m-slide-bg-black .m-item-title a{
    color: #fff;
}
/* Custom Slide BG */
.multiple.m-slide-bg-custom .m-item{
    background: #ffffff;	/* JENIFER 016ea1 */
}
.multiple.m-slide-bg-custom .m-item-category{
    background: #014d71;
    border-top: 1px solid #014d71;
    border-bottom: 1px solid #014d71;
}
.multiple.m-slide-bg-custom .m-item:hover{
    background: #fff;
}
.multiple.m-slide-bg-custom .m-item:hover .m-item-category a{
    color: #888;
}
.m-slide-bg-custom .m-item-title a,
.m-slide-bg-custom .m-icon-icon a,
.m-slide-bg-custom .m-item-category a,
.multiple.m-slide-bg-custom .m-item .m-item-category:hover a{
    color: #fff;
}
/* End Custom*/
.m-no-aw1{
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 2px !important;
    margin-top: 0 !important;
    font-style: normal !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
    font-size: 24px !important;
    line-height: 0 !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    border-radius: 8px !important;
}
.m-no-aw2{
    font-style: normal !important;
    font-size: 24px !important;
    line-height: 0 !important;
}
.m-no-aw3{
    font-size: 28px !important;
    line-height: 28px !important;
}
.m-no-aw4{
    font-size: 28px !important;
    line-height: 0 !important;
}
.m-no-bo{
    position: absolute;
    width:100%;
    z-index: 600;
    color: #444;
    font-size: 14px;
    top: 30px;
}
.m-bg{
    /*
	padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
	*/
}
.m-bg-shadow{
    display: none;
}
.m-bg-sh .m-bg-shadow{
	top: -300000px;
    display:block;
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    -moz-box-shadow: inset 0 0 100px #000000;
    -webkit-box-shadow: inset 0 0 100px #000000;
    box-shadow: inset 0 0 100px #000000;
}
.m-bg .m-carousel-titles{
	top: -30000px;
    /* internet explorer */
    filter: alpha(opacity=50);
    /* fx, safari, opera, chrome */
    opacity: 0.5;
    /*IE8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
}
.m-bg .m-title-1-1,
.m-bg .m-title-1-2,
.m-bg .m-title-2-2,
.m-bg .m-title-1-3,
.m-bg .m-title-2-3,
.m-bg .m-title-3-3,
.m-bg .m-title-1-4,
.m-bg .m-title-2-4,
.m-bg .m-title-3-4,
.m-bg .m-title-4-4 {
    color: #000;
}
.m-bg-color{
	top: -300000px;
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    background-color:#fff;
    z-index:-2;
	
    /* internet explorer */
    filter: alpha(opacity=70);
    /* fx, safari, opera, chrome */
    opacity:0.7;
    /*IE8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)";
}
.m-bg-image{
	top: -300000px;
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    z-index:-3;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    -o-background-size: 100%;
    -moz-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
}
.m-bg .m-bg-image{
    display:block;
}
.m-ocult .m-detail{
    display:none;
}.m-click-mask{
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.m-click-mask.m-left-mouse:hover{
    cursor: w-resize;
}
.m-click-mask.m-right-mouse:hover{
    cursor: e-resize;
}
.m-alert{
    z-index: 999999;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffff00;
    font-size: 25px;
    font-weight:bold;
    text-align:center;
    padding-top:8px;
    padding-bottom:8px;
}
.m-alert span{
    color: #ff0000;
    white-space: nowrap;
}
/*360 hover animation */
.multiple .m-item .m-footer-link .m-star i,
.multiple .m-item .m-icon-icon i,
.multiple .m-item .m-img i{
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
}
.multiple .m-item:hover .m-footer-link .m-star i,
.multiple .m-item .m-icon-icon:hover i,
.multiple .m-item:hover .m-img i{
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
}
/*------------------------------------------------------------------
[TOOLTIPS]
------------------------------------------------------------------*/
.tooltip {
    z-index: 51000;
    font-size: 14px;
}
.m-icon .tooltip {
    margin-top: 4px;
}
.m-icon .tooltip-inner {
    white-space: nowrap;
}
/*------------------------------------------------------------------
[RESPONSIVE]
------------------------------------------------------------------*/
@media (max-width: 767px) {
    .m-bg .m-bg-image{
        -o-background-size: 250%;
        -moz-background-size: 250%;
        -webkit-background-size: 250%;
        background-size: 250%;
    }
}
@media (max-width: 530px) {
    .m-bg .m-bg-image{
        -o-background-size: 420%;
        -moz-background-size: 420%;
        -webkit-background-size: 420%;
        background-size: 420%;
    }
	
	.m-topnav .m-nav .player,
	.m-bottomnav .m-nav .player{
		top: 50%;
		margin-top: -16.5px;
		left: 20%; /* 50%; */
		margin-left: -10px;
	}
}


/*------------------------------------------------------------------
[CUSTOM LLEWELLYN STYLES]
------------------------------------------------------------------*/

.m-item-content {
	/*padding: 10px 13px 7px 13px; */
	text-align: center;
	line-height: normal; 
	font-size: .9em; 
	color: #333;
	overflow:hidden; 
	/* height: 400px; */
}

.m-item-product-name {
	padding-top: 8px;	
}

.m-item-product-name > A {
	color: #23527c; 
	/* font-weight: normal;	*/
}

.m-item-aliases {
	padding-top: 4px;	
}

.m-item-aliases > A {
	color: #769ed3 ;	
	font-size: .9em;
}

