/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Nov 21, 2018, 9:25:25 AM
    Author     : Yousuf
*/

html { height: 100%; }
body {
    height:100%;
    min-height: 100%;
    background: white;
    color: #FFFFFF;
    position:relative;
}
#header {
    height:50px;
    width:100%;
    top:0px;
    left:0px;
    background: #CCCCCC;
    position:absolute;
}

#content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height:100%;
    padding: 60px 0;
    overflow: hidden;
}

#content #scrollableContent {
    height: 100%;
    width: 100%;
    overflow: auto;
}

#content #scrollableContent #paddingContent {
    padding: 0px;
}
