﻿.FullWidth
{
    width:100%;

}


.FullHeight
{
    height:100%;

}


.FullHeightFromTopBar
{
    height:calc(100% - 66px);
    height: -webkit-calc(100% - 66px);
    height: -moz-calc(100% - 66px);
    height: -o-calc(100% - 66px);
    height: expression(100% - 66px);
}


.FullHeightFromPageTitle
{
    height:calc(100% - 66px);
    height: -webkit-calc(100% - 66px);
    height: -moz-calc(100% - 66px);
    height: -o-calc(100% - 66px);
    height: expression(100% - 66px);
}

.FloatLeft
{
    float:left;
}


.FloatRight
{
    float:right;
}



.CenterChildVertically
{
    display:flex;
    align-items: center;
    
    
}

.CenterChildHorizontally
{
    text-align:center;
    justify-content:center;
}



.ImgAutoHeight
{
    height: unset !important;
    height: auto !important;
}

.ImgAutoWidth
{
    width:unset !important;
    width: auto !important;
}

.Height60Percent
{
    height:60% !important;
}