/*-- custom grid system [16 cols]
        but first...
        let me take a selfie *snap* 
        hauskeeping
--*/

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/*-- reset --*/
*{margin: 0;    padding: 0;}
.container{margin: auto; padding: 0 10px;}

/*-- fix the clears --*/
.cf:before, .cf:after,
.container:before, .container:after {
  display: table;
  content: "";
}
.cf:after, .container:after {
  clear: both;
}

[class*="col-"]{
    float: left;
}
[class*="col-"]:first-of-type{
    padding-left: 0;
}
[class*="col-"]:last-of-type{
    padding-right: 0;
}

/*-- define the grid --*/
@media screen and (min-width: 1280px) {
    .container{
        width: 100%;
        max-width: 1280px;
        margin: auto;
    }
    .col-1{
    width: calc(1 / 16 * 100%);
    padding: 0 10px;
    }
    .col-2{
        width: calc(2 / 16 * 100%);
        padding: 0 10px;
    }
    .col-3{
        width: calc(3 / 16 * 100%);
        padding: 0 10px;
    }
    .col-4{
        width: calc(4 / 16 * 100%);
        padding: 0 10px;
    }
    .col-5{
        width: calc(5 / 16 * 100%);
        padding: 0 10px;
    }
    .col-6{
        width: calc(6 / 16 * 100%);
        padding: 0 10px;
    }
    .col-7{
        width: calc(7 / 16 * 100%);
        padding: 0 10px;
    }
    .col-8{
        width: calc(8 / 16 * 100%);
        padding: 0 10px;
    }
    .col-9{
        width: calc(9 / 16 * 100%);
        padding: 0 10px;
    }
    .col-10{
        width: calc(10 / 16 * 100%);
        padding: 0 10px;
    }
    .col-11{
        width: calc(11 / 16 * 100%);
        padding: 0 10px;
    }
    .col-12{
        width: calc(12 / 16 * 100%);
        padding: 0 10px;
    }
    .col-13{
        width: calc(13 / 16 * 100%);
        padding: 0 10px;
    }
    .col-14{
        width: calc(14 / 16 * 100%);
        padding: 0 10px;
    }
    .col-15{
        width: calc(15 / 16 * 100%);
        padding: 0 10px;
    }
    .col-16{
        width: calc(16 / 16 * 100%);
        padding: 0 10px;
    }
}
@media screen and (max-width: 1279px) {
    .container{
        width: 100%;
        max-width: 1279px;
        min-width: 768px;
        margin: auto;
    }
    .col-t-1{
    /*width: calc(768px/12);*/
    width: calc(100% * 1 / 12);
    padding: 0 10px;
    }
    .col-t-2{
        /*width: calc(768px/12*2);*/
        width: calc(100% * 2 / 12);
        padding: 0 10px;
    }
    .col-t-3{
        /*width: calc(768px/12*3);*/
        width: calc(100% * 3 / 12);
        padding: 0 10px;
    }
    .col-t-4{
        /*width: calc(768px/12*4);*/
        width: calc(100% * 4 / 12);
        padding: 0 10px;
    }
    .col-t-5{
        /*width: calc(768px/12*5);*/
        width: calc(100% * 5 / 12);
        padding: 0 10px;
    }
    .col-t-6{
        /*width: calc(768px/12*6);*/
        width: calc(100% * 6 / 12);
        padding: 0 10px;
    }
    .col-t-7{
        /*width: calc(768px/12*7);*/
        width: calc(100% * 7 / 12);
        padding: 0 10px;
    }
    .col-t-8{
        /*width: calc(768px/12*8);*/
        width: calc(100% * 8 / 12);
        padding: 0 10px;
    }
    .col-t-9{
        /*width: calc(768px/12*9);*/
        width: calc(100% * 9 / 12);
        padding: 0 10px;
    }
    .col-t-10{
        /*width: calc(768px/12*10);*/
        width: calc(100% * 10 / 12);
        padding: 0 10px;
    }
    .col-t-11{
        /*width: calc(768px/12*11);*/
        width: calc(100% * 11 / 12);
        padding: 0 10px;
    }
    .col-t-12{
        /*width: calc(768px/12*12);*/
        width: calc(100% * 12 / 12);
        padding: 0 10px;
    }
}
@media screen and (max-width: 767px) {
    .container{
        width: 100%;
        max-width: 767px;
        min-width: 320px;
        margin: auto;
    }
    .col-t-1{
    width: calc(320px/8);
    padding: 0 10px;
    }
    .col-t-2{
        width: calc(320px/8*2);
        padding: 0 10px;
    }
    .col-t-3{
        width: calc(320px/8*3);
        padding: 0 10px;
    }
    .col-t-4{
        width: calc(320px/8*4);
        padding: 0 10px;
    }
    .col-t-5{
        width: calc(320px/8*5);
        padding: 0 10px;
    }
    .col-t-6{
        width: calc(320px/8*6);
        padding: 0 10px;
    }
    .col-t-7{
        width: calc(320px/8*7);
        padding: 0 10px;
    }
    .col-t-8{
        width: calc(320px/8*8);
        padding: 0 10px;
    }
}
.container .container{min-width: auto;}

/*-- GENERAL SETTINGS[utils] --*/
/*top menu*/
#menu > div > ul > li:hover .sub-menu li a:hover{}

.btn{
    border: 0;
    color: #fff;
    border-radius: 0;
}

hr{
    border: 0;
    border-bottom: 5px solid;
}
*{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #333;
}
/*.entry{width: calc(100% - 20px);}*/
/*-- END GENERAL SETTINGS --*/

/*-- GENERAL SETTINGS[COLOR] --*/
#secondary{background-color: #eeeeee;}
#secondary section h2{
    font-size: 1.875em;
    margin: 25px 0 30px;
}
.hilite{color: #00adff; background-color: transparent!important;}
.btn.light{
    background-color: #43b2e7;
}
.btn.dark{

    background-color: #333333;
}
.btn:hover{
    background-color: #333;
    text-decoration: none;
}
.btn.light.more{
    background-color: #00adff;
}
a{
    color: #43b2e7;
    text-decoration: none;
    font-weight: 600;
}
a:hover{
    text-decoration: underline;
}
.exhibitor-list form input[type=submit]{
    background-color: #00adff;
    color: #fff;
}
.exhibitor-list form .reset {
    background-color: #333;
    display: inline-block;
    color: #fff;
    padding: 11px;
    text-decoration: none;
    width: 100%;
    max-width: 75px;
    margin-right: 0;
    text-align: center;
}
.exhibitor-list form div{display: inline-block;}
/*-- END GENERAL SETTINGS --*/

/*-- HEADER --*/
header{}
body > .ad-space{
    margin-bottom: 45px;
}
header .logo{}
header .show-info{text-align: right;}
header .social{
    float: right;
}
header .social a{
    float: right;
    margin-left: 20px;
    color: #333;
}
header .social a:hover{
    color: #00adff;
}
header .social a i{
    font-size: 1.875em;
    color: inherit;
}
#menu{
    background-color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
}
#menu ul{}
#menu ul li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
    margin-left: 0;
}
#menu > div > ul > li a{
    display: block;
    padding: 10px 10px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
#menu > div > ul > li > a{padding: 20px 10px;}

#menu > div > ul > li:hover{
}
#menu > div > ul > li:hover > a {
    color: #43b2e7;
    border-top: 6px solid #43b2e7;
    padding-top: 14px;
}

#menu .sub-menu{display: none;position: absolute;background-color: #222;z-index: 100;}
#menu > div > ul > li:hover .sub-menu li{
    margin-left: 0;
    display: block;
}
#menu > div > ul > li:hover .sub-menu li a{white-space: nowrap;}

#search{
    width: 53px;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    margin-top: 8px;
}
#search form{display: none;}
#search form input{
    height: 40px;
    float: left;
    background-color: #fff;
}
#search form input[type='text']{
    width: calc(100% - 40px);
    border: 0;
    padding-left: 15px;
}
#search form input[type='submit']{
    width: 40px;
    border: 0;
    color: transparent;
    background-image: url('../img/sprite.png');
    background-position: -4px 104px;
}
#search.open form{
    display: block;
}
/*-- END HEADER --*/

/*--
    SLIDER STYLE
WITNESS THE FITNESS
--*/

#slider{
    margin-bottom: 60px;
    margin-top: 20px;
}
#slider2.container{
    margin: 20px auto;
}
#slider .royalSlider{}
#slider .royalSlider{}

/*-- SLIDER STYLE 1 --*/
/*#slider .royalSlider .caption{
    position: absolute;
    bottom: -0px;
    text-align: center;
    width: 100%;
    height: 100%;
}
#slider .royalSlider .caption section{
    margin-top: 5%;
    float: none;
}
#slider .royalSlider .caption h1{font-size: 6em}
#slider .royalSlider .caption h2{font-size: 6.0em;font-weight: normal;}
#slider .royalSlider .caption .learn-more{
    display: block;
    border: 3px solid  #fff;
    width: 295px;
    height: 60px;
    font-size: 1.5em;
    font-weight: bold;
    margin: auto;
    padding: 12px;
    color: #fff!important;
    margin-top: 15px;
}
#slider .royalSlider .rsBullet{
    border-radius: 0;
    width: 26px;
    height: 9px;
}
#slider .royalSlider .rsBullet span{
    border-radius: 0;
    width: 26px;
    height: 9px;
    background-color: #fff;
    border: 3px solid #333;
}
#slider .royalSlider .rsBullet.rsNavSelected span{background-color: #333;}*/

/*-- SLIDER STYLE 2 --*/
#slider2 .royalSlider .caption{
    position: absolute;
    bottom: 60px;
    left: 45px;
    /*text-align: center;*/
    width: calc(100% - 45px);
    height: auto;
}
#slider2 .royalSlider .caption h1{font-size: 4.5em}
#slider2 .royalSlider .caption h2{font-size: 4.50em;font-weight: normal;}
#slider2 .royalSlider .rsBullet{
    border-radius: 0;
    width: 12px;
    height: 12px;
    padding: 7px;
}
#slider2 .royalSlider .rsBullet span{
    border-radius: 12px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 3px solid #333;
}
#slider2 .royalSlider .rsBullet.rsNavSelected span{background-color: #333;}

/*-- SLIDER STYLE 3 --*/
#slider3{
    margin-bottom: 30px;
    padding: 0;
    width: 100%;
    float: left;
}
#slider3 .rsUni .rsBullets{line-height: normal;}
#slider3 .royalSlider .caption{
    display: none;
    /*text-align: center;*/
    width: calc(100% - 45px);
    height: auto;
    color: #fff;
}
#slider3 .cap{
    color: #fff;
    background-color: #323332;
    padding: 0 30px;
    padding-bottom: 40px;
}

#slider3 .cap h1{font-size: 2.25em}
#slider3 .cap h2{font-size: 1.185em;font-weight: normal;}
#slider3 .royalSlider .rsBullet{
    border-radius: 0;
    width: 12px;
    height: 12px;
}
#slider3 .royalSlider .rsBullet span{
    border-radius: 12px;
    width: 12px;
    height: 12px;
    background-color: #333;
    border: 3px solid #fff;
}
#slider3 .royalSlider .rsBullet.rsNavSelected span{background-color: #fff;}

/*-- PAGE --*/
.Simple_sitemap_wprdpress_plugin_markup ol li, .Simple_sitemap_wprdpress_plugin_markup ul li{
    list-style: none;
    margin-left: 30px;
}

.entry .floor-plan{display: block; float: left; margin-right:20px;margin-bottom: 35px;}
.main{margin-bottom: 50px;}
.entry{
    margin: auto;
    float: none;
}
.entry.col-12{
    margin-left: 0;
    width: calc(100% - 20px);
}
.entry.col-10{
    width: calc(100% - (6 / 16 * 1280px));
}
.entry .entry-header{
    border-top: 5px solid #323332;
    padding: 15px 0;
}
.entry .entry-header h1{
    font-size: 1.875em;
}
.entry h2{
    font-size: 1.5em;
    margin-top: 45px;
    margin-bottom: 15px;
}
.entry h3{
    margin-top: 45px;
    font-size: 1.125em;
    margin-bottom: 15px;
}
.entry table{
    border-collapse: collapse;
    margin: 10px 0;
}
.entry table tr{
    border-top: 1px solid #111;
}
.entry table tr:last-of-type{
    border-bottom: 1px solid #111;
    margin: 0;
}
.entry table tr td{
    padding: 10px 0;
}
.entry .schedule tr td:first-of-type{
    font-weight: bold;
}
.entry p{
    line-height: 22px;
    margin: 10px 0;
}
.entry img{max-width: 100%;height: auto;}
ul{}
ul li{
    margin-left: 20px;
    list-style-type: disc;
}

/*press index*/
.entry.press{}
.press .nav{border-top: 2px solid #333333;margin-top: 45px;}
.entry.press h2.entry-header{
    border-top: 0;
}
.entry.press h2.entry-header a{
    font-size: 1.5em;
    color: #333333;
}
.entry.press.single h2.entry-header{margin-top: 35px;}
.entry.press.single h2.entry-header a{
    font-size: 24px;
}
.entry.press article .entry-header{padding: 0;}
.entry.press article .entry-header a{font-size: inherit;}
.press .pgntn-page-pagination-intro, .press .pgntn-page-pagination .current {
    background-color: #fff !important;
}

/*search page*/
.result{
    margin-bottom: 15px;
}
.result .entry-header{padding: 0;margin: 0;border-top: 0;}
.result p{
    margin: 0;
}
.search.nav{
    text-align: center;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    /*padding: 10px 0;*/
}
.search.nav span, .search.nav a{
    text-align: center;
}
.search.nav .page-numbers{
    margin: 5px 0;
    border-right: 1px solid #333!important;
    padding: 0 5px;
}
.search.nav .next.page-numbers, .search.nav .previous.page-numbers{
    border-right: none!important;
}
.search.nav .pgntn-page-pagination{margin: 0; padding: 10px;}
/* exhibitor list */
.exhibitor-list{
    width: 100%;
    max-width: 940px;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}
.exhibitor-list form{
    padding: 10px;
    background-color: #e1e1e1;
    /*border-top: 2px solid #333;*/
    border-bottom: 1px solid #333;
}
.exhibitor-list form > *{
    margin-right: 5px;
    float: left;
}
.exhibitor-list form input, .exhibitor-list form select{
    padding: 11px;
    border: 0;
}
.exhibitor-list form input{}
.exhibitor-list form input[type=text]{
    width: 100%;
    max-width: 329px;
}
.exhibitor-list form div{
    width: 100%;
    max-width: 131px;
    overflow: hidden;
}
.exhibitor-list form div.category{
    width: 100%;
    max-width: 242px;
}
.exhibitor-list form .more{
    width: 100%;
    max-width: 100%;
    padding-top: 15px;
}
.exhibitor-list form .more .option{
    width: 100%;
    max-width: 242px;
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
}
.exhibitor-list form .more .option select{    width: calc(100% + 26px);}
.exhibitor-list form div select{
    width: calc(100% + 26px);
    background-image: url('../img/drop.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-position-x: calc(100% - 35px);
    height: 42px;
    border-radius: 0;
}
.exhibitor-list form div select option{
    width: 50px;
}
.exhibitor-list form input[type=submit]{
    width: 100%;
    max-width: 110px;
}

/*404 page*/
.error{text-align: center;}
.error .entry-header{
    border-top: 0;
}
.error .entry-header h1{
    font-size: 4em;
    color: #ed1c24;
}

/*-- END PAGE --*/

/*-- jquery UI stuff --*/
.entry .ui-widget-content, .entry .ui-state-default, .entry .ui-widget-content .entry .ui-state-default, .entry .ui-widget-header .entry .ui-state-default{
    border-top: 1px solid #333333;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    margin-top: 0px!important;
}
.entry h3.ui-accordion-header{font-weight: bold;}

/*-- SIDEBAR ---*/
#sidebar{
    width: 300px;
    margin-bottom: 20px;
}
#sidebar .btn.light, #sidebar .btn.dark{
    width: 300px;
    height: 64px;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 7px;
    display: inline-block;
}
#sidebar .btn.exl{
    float: right;
}
#sidebar .btn.fpl, #sidebar .btn.exl{
    width: 48%;
    background-color: transparent;
    border: 3px solid #111;
    padding: 12px;
    color: #111;
    font-size: 18px;
}
#sidebar .btn.fpl:hover > *, #sidebar .btn.exl:hover > *{
    color: #fff;
    background-color: #333;
}
#sidebar .btn.fpl:hover, #sidebar .btn.exl:hover{
    color: #fff;
    background-color: #333;
}
#sidebar .btn.fpl span{
    float: left;
    background-image: url('../img/sprite.png');
    background-repeat: no-repeat;
}
#sidebar .btn.exl span{
    float: right;
    background-image: url('../img/sprite.png');
    background-repeat: no-repeat;
}
#sidebar .widget{
    padding: 15px;
    margin-top: 20px;
    background-color: #f2f2f2;
}
#sidebar .widget h3{
    font-size: 1.5em;
}
#sidebar .ibps-product-link img{
    width: 100%;
}
#sidebar .ibps-product-name{color: #43b2e7; font-weight: 500;}
#sidebar .fa.fa-envelope-o{font-size: 48px;color: #333;}
#sidebar .widget .email{
    display: inline-block;
    /* width: 48px; */
    /* height: 38px; */
    /* background-image: url('../img/sprite.png'); */
    /* background-position: -5px 57px; */
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}
#sidebar .widget p{}


/*-- HOME PAGE --*/

/*-- flex spots --*/
.flex-spot{
    margin-bottom: 35px;
    width: 100%;
    padding: 0;
}
.flex-spot:nth-of-type(2n){
    float: left;
    /*margin-right: 20px;*/
}
.flex-spot:nth-of-type(2n+1){
    float: left;
    margin-right: 20px;
}
.flex-spot h3{
    border-top: 5px solid #323332;
    padding-top: 15px;
    margin-bottom: 15px;
    font-size: 1.875em;
}
.flex-spot a img{
    width: 100%;
    height: auto;
    /*max-height: 283px;*/
}
.flex-spot.news-feed{}
.flex-spot.news-feed{}
.flex-spot.news-feed > a{}
.flex-spot.news-feed img{max-width: 130px;}


.main .youtube{
    padding-top: 30px;
    padding-bottom: 80px;
    margin-right: 20px;
    border-top: 5px solid #323332;
}
.main .youtube .col-4{
    width: 300px;
}
.main .youtube h2{
    font-size: 1.5em;
    margin-bottom: 35px;
}
.main .youtube.col-t-7{
    padding-left: 0;
    max-width: 100%;
}
.main .youtube.col-t-7 img{
    width: 100%;
    height: auto;
}
/*-- single entry --*/
.featured img{
    width: 100%;
    height: auto;
}
.social-share{
    border-bottom: 1px solid #111;
    border-top: 1px solid #111;
    padding: 10px 0;
}
.social-share i{
    margin-right: 7px;
    font-size: 1.5em;
}
.social-share i.fa-facebook{color: #3a5795;}
.social-share i.fa-twitter{color: #55acee;}
.social-share i.fa-envelope-o{color: #a1a1a1;}
.social-share i.fa-print{color: #a1a1a1;}

/*-- product showcase --*/
#secondary{
    padding-top: 50px;
}
.showcase > div{
    padding: 0;
    float: left;
    margin: 0 10px 40px;
    max-width: 300px;
}
.showcase > div hr{
    margin-top: 10px;
    border-bottom: 1px solid;
}
.showcase > div a.name{
    margin-top: 5px;
    display: inline-block;
    font-weight: bold;
    color: #333;
}

/*-- exhibitor list --*/
#exhibitor-list{}
#exhibitor-list .list{}
#exhibitor-list .list .item:first-of-type:hover{
    background-color: #e1e1e1;
}

#exhibitor-list .list .item{
    background-color: #e1e1e1;
    list-style: none;
    margin-left: 0;    
}
#exhibitor-list .list .item.open{

}
#exhibitor-list .list .item:nth-of-type(2n){
    background-color: #fff;
}
#exhibitor-list .list .item > div{padding: 15px 7px;}
#exhibitor-list .list .item > div:nth-of-type(2){
    display: none;
    padding: 0 7px;
}
#exhibitor-list .list .item.open > div:nth-of-type(2){
    display: block;
    padding-top: 10px;
}
#exhibitor-list .list .item:hover > div:first-of-type{
    background-color: #333;
}
#exhibitor-list .list .item.open > div:first-of-type{
    background-color: #333;
}
#exhibitor-list .list .item.open > div:first-of-type > span {
    color: #fff;
}
#exhibitor-list .list .item:hover{}
#exhibitor-list .list .item > div:first-of-type{}
#exhibitor-list .list .item:hover > div:first-of-type > span{
    color: #fff;
}
#exhibitor-list .list .item > div:first-of-type > span:first-of-type{
    float: left;
}
#exhibitor-list .list .item > div:first-of-type > span:nth-of-type(2){
    float: right;
    margin-right: 40px;
}
#exhibitor-list .list .item > div:nth-of-type(2) > * {
    float: left;
}

/*-- seminar page --*/
#seminar-list .list .item{
    list-style-type: none;
    margin-left: 0;
    padding-bottom: 20px;
    border-top: 1px solid #333;
}
#seminar-list .list .item{padding-top: 20px;}
#seminar-list .list .item .description{display: none;}
#seminar-list .list .item > div > span{
    display: block;
}
#seminar-list .list .item .time{font-style: italic;}
#seminar-list .list .item .title{font-size: 1.875em;}
#seminar-list .list .item .speaker{
    font-size: 1.125em;
    margin-bottom: 30px;
}
#seminar-list .list .item .description p{
    margin-top: 0;
    margin-bottom: 10px;
}
#seminar-list .list .item .read-more{font-weight: bold;}
#seminar-list .list .item .read-more i{color: #333;}

/*-- photo video --*/
.photo-video{}
.photo-video .rsOverflow{width: 100% !important;}
.photo-video .rsOverflow.grab-cursor, .photo-video .rsOverflow.grabbing-cursor {
    border-bottom: 2px solid #333;
    margin-bottom: 10px;
    padding: 0 10px;
    background: #000;
}
.photo-video .rsUni .rsThumb.rsNavSelected .thumbIco{
    border: 5px solid #00adff;
}
.main.photo-video #tabs{
    padding: 0;
}
.main.photo-video .ui-widget-content{
    background-color: #000;
    color: #fff;
    /*padding: 0 10px;*/
    padding: 0 0px;
}
.main.photo-video .ui-widget-header{
    background-color: #000;
    border: none;
    padding: 10px;
}
.main.photo-video .ui-state-default, .main.photo-video .ui-widget-content .ui-state-default, .main.photo-video .ui-widget-header .ui-state-default{background-color: #707177; border: 0;}

.main.photo-video .ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.main.photo-video .ui-state-active, .main.photo-video .ui-widget-content .ui-state-active, .main.photo-video .ui-widget-header .ui-state-active{
    background-color: #00adff;
    border:0;
}
 .main.photo-video .ui-state-default a,  .main.photo-video .ui-state-default a:link,  .main.photo-video .ui-state-default a:visited{color: #fff;}
 
/*HTML only*/
.photo-video .rsUni .rsThumb{
    height: 86px;
    width: 118px;
}
.photo-video .rsNav.rsThumbs.rsThumbsHor{
    margin-top: 0px;
    margin-bottom: 12px;
    background: transparent;
    height: 86px;
}
.photo-video .rsUni .rsThumb.rsNavSelected {
    background: #333;
    border: 5px solid #00adff;
    height: 77px;
    width: 108px;
}

.photo-video .rsUni .rsThumbsArrow {background-color: #898989;width: 35px;}
.photo-video .rsUni .rsThumbsArrow:hover {background-color: #00adff;}
.photo-video img.rsImg {
    max-width: 100%;
    width: 100%!important;
    height: auto!important;
}
.photo-video .rsUni .rsThumbsArrowIcn {
    left: 53%;
    height: 22px;
}
.photo-video .rsUni.rsHor .rsArrowLeft .rsArrowIcn {
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('../img/left.png');
    height: 44px;
}
.photo-video .rsUni.rsHor .rsArrowRight .rsArrowIcn {
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('../img/right.png');
    height: 44px;
}
.photo-video .rsUni.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn{
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('../img/t-left.png');
}
.photo-video .rsUni.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn{
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('../img/t-right.png');
}
.photo-video .epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb {
    width: 20%;
    min-height: 180px;
}
.photo-video .epyt-gallery-clear, .photo-video .epyt-gallery-rowbreak {
    clear: both;
    display: none;
}
/*-- AD THINGS --*/
.ad-space{
    margin: auto;
    margin-top: 20px;
    /*padding: 10px 0;*/
    /*width: 728px; */
}

/*-- FOOTER --*/
footer{
    background-color: #333333;
    padding-bottom: 20px;
}
footer .ad-space{
    border-top: 1px solid #444444;
    border-bottom: 1px solid #444444;
    margin-bottom: 30px;
    padding: 10px 0;
}
footer .ad-space img, body > .ad-space img{
    width: 728px;
    margin: auto;
    display: block;
}

footer .sitemap{
    float: right;
    color: #eee;
}
    footer .sitemap a{color: #eee;
}
#seo{margin: 20px 0;color: #888888;}
#seo p, #seo h4{
    font-size: 11px;
}
.copy a{
    color: #eee;
}
.copy p{
    color: #eee;
}
.copy >p:nth-of-type(2) a{
    color:#888;
    font-size: 0.875em;
}

@media screen and (min-width: 1280px) {
    .toggle{display: none;}
    #menu .top-menu, #search{
        display: block;
    }
    #search{
        position: relative;
        position: relative;
        height: 55px;
        margin: 0;
        float: right;
    }
    #search form{
        position: absolute;
        z-index: 100;
        width: 300px;
        right: 0;
        bottom: -70px;
        padding: 15px;
        background: #D83F21;
    }
    #menu > div > ul > li:hover .sub-menu{display: block!important;}
    .flex-spot{max-width: 460px;}
    .showcase div:nth-of-type(4n){
        padding-right: 0;
        margin-right: 0px;
    }
    .showcase div:nth-of-type(4n+1){
        padding-left: 0;
        margin-left: 0px;
    }
    .photo-video #tabs > ul{display: block!important;}
    #toggle{display: none;}
}
@media screen and (max-width: 1279px) and (min-width: 768px){
    #search{
        display: block;
        /*position: absolute;*/
        /*top: 0;*/
        /*right: 10px;*/
        /*margin-bottom: 10px;*/
        margin: 0;
        float: right;
        height: 54px;
    }
}
@media screen and (max-width: 1279px) {
    #menu > div > ul > li.open > a {
        color: #43b2e7;
        border-top: 6px solid #43b2e7;
        padding-top: 14px;
    }
    .main.photo-video .ui-widget-header{}
    #search .search-toggle{
        margin: 0!important;
        padding: 10px 14px 11px 15px;
    }
    #search.open{position: relative;}
    #search.open form {
        display: block;
        position: absolute;
        z-index: 100;
        width: 315px;
        right: 0;
        padding: 15px;
        background-color: #d83f21;
    }
    #toggle{display: none;}
    header .show-info {
        padding-left: 15px;
    }
    .main{
        /*max-width: 427px;*/
        width: calc(100% - 320px);
    }
    #slider1 .royalSlider .caption h1{font-size: 4em}
    #slider1 .royalSlider .caption h2{font-size: 4.0em;font-weight: normal;}

    #slider2 .royalSlider .caption h1{font-size: 2em}
    #slider2 .royalSlider .caption h2{font-size: 2em;font-weight: normal;}
    #slider2 .royalSlider .caption{
        bottom: 30px;
        left: 25px; 
    }
    #slider3{
        width: 100%;
    }
    #slider3 .cap h1{font-size: 1.5em}
    #slider3 .cap h2{font-size: 1.125em;font-weight: normal;}
    #slider3 .cap{
        padding: 0 10px 15px;
    }
    #sidebar{
        float: right;
    }
    #menu .toggle{
        padding: 14px 0;
        display: inline-block;
        float: left;
    }
    #menu .toggle a{
        display: inline-block;
        height: 24px;
        width: 24px;
        background-image: url('../img/toggle.png');
        background-repeat: no-repeat;
        color: transparent;
    }
    #menu .toggle .nav{
        background-position: -6px -5px;
    }
    #menu .toggle .search{
        background-position: -5px -34px;
        float: right;
    }
    .top-menu{float: none;}
    #menu .top-menu{
        display: none;
        margin-bottom: 10px;
    }
    #menu .top-menu.open{
        display: block;
        margin-top: 54px;
        /*width: calc(100% + 20px);*/
        /*margin-left: -10px;*/
    }
    .top-menu li{
        float: none;
    }
    .menu li a{}
    #menu ul li{
        display: block;
        margin: 0;
    }
    #menu .sub-menu{
        position: relative;
    }
    #menu .sub-menu.open{display: block;}
    #menu li.open ul{display: block;}
    .container{
        position: relative;
    }
    .flex-spot{
        max-width: 404px;
        max-width: 100%;
        float: none;
    }
    .flex-spot a img {
        width: 100%;
        height: auto;
         max-height: auto; 
    }
    .flex-spot:nth-of-type(2n+1){margin-right: 0;float: left;}
    .flex-spot:nth-of-type(2n){margin-right: 0;float: left;}
    .showcase > div{
        max-width: 226px;
        padding: 0px;
        margin-right: 10px;
        margin-left: 10px;
    }
    .showcase > div img{
        width: 100%;
        height: auto;
    }
    .showcase div:nth-of-type(4n),.showcase div:nth-of-type(4n+1) {
        /*padding: 0 10px;*/
        margin-left: 10px;
        margin-right: 10px;
    }
    .showcase div:nth-of-type(3n) {
        padding-right: 0px;
        margin-right: 0px;
    }
    .showcase div:nth-of-type(3n+1) {
        padding-left: 0px;
        margin-left: 0px;
    }

    .exhibitor-list form{}
    .exhibitor-list form input[type=text]{
        max-width: 100%;
        margin-bottom: 10px;
    }
    .exhibitor-list form div{
        margin-bottom: 10px;
        max-width: calc(30% - 5px);
    }
    .exhibitor-list form div.category{
        max-width: calc(70%);
        margin-right: 0;
    }

    .exhibitor-list form .more{
        width: 100%;
        max-width: 100%;
        padding-top: 15px;
    }
    .exhibitor-list form .more .option{
        width: 100%;
        max-width: 100%;
        /*float: left;*/
        /*margin-right: 5px;*/
        margin-bottom: 5px;
    }
    .exhibitor-list form > br{
        clear: both;
    }
    .exhibitor-list form .more .option select{    width: calc(100% + 26px);}
    .exhibitor-list form div select{
        width: calc(100% + 26px);
        background-image: url('../img/drop.png');
        background-repeat: no-repeat;
        background-position: center right;
        background-position-x: calc(100% - 35px);
    }
    .exhibitor-list form div select option{
        width: 50px;
    }
    .exhibitor-list form input[type=submit]{
        width: 100%;
        max-width: 110px;
    }
}
@media screen and (min-width: 768px) {
    #sidebar{float: right;}
    .show-info{float: right;}
}
@media screen and (max-width: 767px) {
    body > .ad-space, footer .ad-space{display: none;}
    header .show-info{
        padding-left: 0;
        float: none;
        text-align: center;
    }
    .logo a img{max-width: 100%;}
    #menu .sub-menu {
        background-color: #222;
    }
    /* Responsive Menu */
    #slider .royalSlider .caption section{
        margin-top: 1%;
    }
    #slider1 .royalSlider .caption h1{font-size: 2em}
    #slider1 .royalSlider .caption h2{font-size: 2em;font-weight: normal;}
    #slider1 .royalSlider .caption .learn-more{
        display: block;
        border: 3px solid  #fff;
        width: 195px;
        height: 60px;
        font-size: 1.5em;
        font-weight: bold;
        padding: 12px;
        color: #fff!important;
    }
    #slider2 .royalSlider .caption h1{font-size: 1.5em}
    #slider2 .royalSlider .caption h2{font-size: 1.5em;font-weight: normal;}
    #slider2 .royalSlider .caption{
        bottom: 15px;
        left: 10px; 
    }
    #search{
        margin-bottom: 7px;
        /*display: none;*/
        margin: 0;
        float: right;
    }
    #search.open form {
        left: -127px;
    }
    .flex-spot{
        width: 100%!important;
    }
    .main{width: 100%; margin-bottom: 0px;}
    .entry{width: 100%;}

    .main .ui-tabs-nav > li{
        width: 100%;
        margin-bottom: 5px;
    } 
    .main .ui-tabs-nav > li > a{
        width: 100%;
    }
    #sidebar{
        float: none;
        margin: auto;
        margin-top: 25px;
    }

    .showcase > div{
        max-width: 144px;
        padding: 0px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .showcase div:nth-of-type(2n) {
        padding-right: 0px;
        margin-left: 6px;
    }
    .showcase div:nth-of-type(2n+1) {
        padding-right: 0px;
        margin-right: 6px;
    }
    .showcase > div img{
        width: 100%;
        height: auto;
    }
    .exhibitor-list form div{
        margin-bottom: 10px;
        max-width: 100%;
    }
    .exhibitor-list form div.category{
        max-width: 100%;
        margin-right: 0;
    }
    .photo-video{}
    .photo-video #tabs{}
    /*.photo-video #tabs > ul li:nth-of-type(1){display: block;}*/
    /*.ui-tabs .ui-tabs-nav li {
        list-style: none;
        float: left;
        position: relative;
        top: 0;
        margin: 1px .2em 0 0;
        border-bottom-width: 0;
        padding: 0;
        white-space: nowrap;
        width: 100%;
        margin-bottom: 8px;
    }*/
    #toggle{display: block;}
    .photo-video #tabs > ul{display: none;}
    .photo-video #tabs > ul.open{display: block;}

}
#toggle{
    padding: 10px;
}
#toggle > a{
    color: #fff;
    display: block;
    padding: 8px 16px;
    background-color: #707177;
}

/** 
 * styles for block of pagination
 */
.pgntn-page-pagination { 
    margin: 1em 0; 
    padding: 0; 
    overflow: hidden; 
    text-align: center;
    clear: both;
}
.pgntn-page-pagination .dots {
    display: inline-block;
    text-align: center;
    margin-bottom: 0.5em;
    margin-left: 0.5em;
    padding: 0.3em 0.5em;
}
.pgntn-page-pagination-intro { 
    padding: 0.3em 0.5em; 
    margin: 0 1em 1em 0; 
    background: #efefef; 
    border: .1em solid #ccc; 
    text-align: center;
}
.pgntn-multipage .pgntn-elipses,
.pgntn-multipage .pgntn-page-pagination-intro {
    display: inline-block;
    margin-right: 0;
    text-align: center;
}
.pgntn-multipage .pgntn-page-pagination-block a:first-of-type {
    margin-left: 0;
}
.pgntn-multipage .pgntn-page-pagination-block span:first-of-type ~ a {
    margin-left: 0.5em;
}

.pgntn-comments *,
.pgntn-multipage * { 
    font-size: 0.8rem;
}
.pgntn-page-pagination-intro,
.pgntn-page-pagination a,
.pgntn-page-pagination .current {
    display: inline-block;
    text-align: center;
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.5rem;
}