﻿ 
/* Overall formatting */
html,
body {
    /*position: absolute;*/
/*    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
*/    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
/*    overscroll-behavior-y: none;
    overflow:auto;
*/    /*height: 100%;
    width: 100%;*/
    /*overflow: hidden;*/
}

/*html {
    height:100%;
}
*/


/*@media only screen and (min-width : 320px) and (max-width : 560px) {
    body {
        -webkit-text-size-adjust: none;
    }
}*/

/*******************************************************/
/* MAIN CONTAINER                                      */
/*******************************************************/
.container {
    height: 100%;
    /*min-height: 100%;*/
    display: flex;
    flex-direction: column;
    overflow:auto;
    overscroll-behavior-y:contain;
    /*background-color:red;*/
    /*border-left: solid;
    border-right: solid;
    border-color: seagreen;
    border-width: 5px;*/
    /*overflow: -moz-hidden-unscrollable;*/
}

/*******************************************************/
/* HEADER                                              */
/*******************************************************/
.divheader {
    /*height: 50px;*/
    background-color: rgb(13,63,139);
}

.divheaderMobile {
    /*height: 10%;*/
    background-color: rgb(13,63,139);
}

/*******************************************************/
/* BODY */
/*******************************************************/
.divbody {
    flex: 1;
    height: 100%;
    overflow: hidden;
    overflow-behavior-y:none;
}

/*******************************************************/
/* DROP DOWN                                           */
/*******************************************************/
.divdrop {
    background-color: green;
}

/*******************************************************/
/* POP UP                                              */
/*******************************************************/
.divpop {
    background-color: green;
}

/*******************************************************/
/* FOOTER                                              */
/*******************************************************/
.divfooter {
    /*height: 50px;*/
    background-color: rgb(13,63,139);
}

.divfooterMobile {
    /*height: 100px;*/
    background-color: rgb(13,63,139);
}

/*******************************************************/
/* OTHER                                               */
/*******************************************************/

/*******************************************************/
/* SLIDER FOR DROP DOWN AND POP UP */
/*******************************************************/
.slideInit {
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease;
    -moz-transition: height 0.3s ease;
    -ms-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    -webkit-transition: height 0.3s ease;
    transition-timing-function: ease-out;
}
.slideOut {
    height: 300px;
}