/*small Device*/
@media (max-width: 768px)
{

    /* rows and cells*/


    .columns.fluid .col1,.columns.fluid .col2,.columns.fluid .col3,.columns.fluid .col4,.columns.fluid .col5,.columns.fluid .col6,.columns.fluid .col7,.columns.fluid .col8,.columns.fluid .col9,.columns.fluid .col10,.columns.fluid .col11,.columns.fluid .col12{
        width:auto;
        float:none;
        margin:2em 6px 2em 6px;
    }

    /*layouts*/
    .stage .stage-0,.stage .stage-1 {
        float:none;
        width:100%;
        margin-left:0;
        margin-right:0;
        padding-left:0;
        padding-right:0;
        border-left:none;
        border-right:none;
    }
    .stage .stage-0 > .body,
    .stage .stage-1 > .body{
        width:auto;
        margin:0 15px;
    }

    UL.sub-page-list > LI.box
    {
        width: auto;
        float: none;
        margin: 5px 0 1em 0;
    }
    UL.sub-page-list > LI.box-spot
    {
        width: auto;
        float: none;
        margin: 5px 0 1em 0;
    }
    UL.sub-page-list > LI.box-large
    {
        width: auto;
        float: none;
        margin:1px 0 ;
    }



}
/*  medium device */
@media (min-width: 768px) and (max-width: 979px) {


}

/* small + medium device */
@media  (max-width: 979px) {


    .stage{
        width:100%;
        overflow: auto;
    }

    .stage .body table{
        max-width:99.9%;

    }
    .stage .body img {
        max-width: 99.9%;
    }

}




/**
Device visibility
**/


.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

.visible-desktop {
    display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
    .hidden-desktop {
        display: inherit !important;
    }
    .visible-desktop {
        display: none !important ;
    }
    .visible-tablet {
        display: inherit !important;
    }
    .hidden-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-desktop {
        display: inherit !important;
    }
    .visible-desktop {
        display: none !important;
    }
    .visible-phone {
        display: inherit !important;
    }
    .hidden-phone {
        display: none !important;
    }
}



