/**************************MAIN FRAMES***********************/
main > div.main,
main > div.pylon,
main > div.content{
    flex: 0 0 auto;
    align-self: stretch;
    position: relative;
}

main{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    height:100%;
}

main > div.content {
    flex-direction: column;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 0;
}
body main > div.content > header{
    flex: 0 1 37px;
    min-height: 37px;
    max-height: 30%;
}

dialog + main{
    height:calc(100% - 34px);
}

/********MAIN***************/
main > div.main{
    width:60px;
}

/********PYLON***************/
main > div.pylon{
    min-width:200px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
main > div.pylon nav{
    flex: 1 1 auto;
    width: 100%;
    border-right: 2px solid rgb(217,217,217);
    overflow: hidden;
    height:0;
}

main > div.pylon header{
    flex:0 0 40px;
    width:100%;
    border-right: 2px solid #000;
    padding-left: 13px;
}
main > div.pylon footer{
    flex:1 1 auto;
    position: relative;
    width: 100%;
    height:100%;
}

main > div.pylon:empty{
    display:none;
}

/********CONTENT***************/
main > div.content{
    flex: 1 1 auto;
}

/**************************COLUMNS***********************/
.rutanCMS .layout{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rutanCMS .layout .layout{
    padding:0;
}

div.rutanCMS div.cmslightboxContent .layout{
    padding:0;
}


.rutanCMS .fullColumn,
.rutanCMS ._1_1,
.rutanCMS ._1
{
    width: calc(100% - 20px);
}
.rutanCMS .halfColumn,
.rutanCMS ._1_2
{
    width: calc(( 100% / 2 ) - 20px);

}

.rutanCMS .oneThirdColumn,
.rutanCMS ._1_3
{
    width: calc(( 100% / 3 ) - 20px);
}
.rutanCMS .twoThirdsColumn,
.rutanCMS ._2_3
{
    width: calc(( 100% / 3 * 2) - 20px);
}
.rutanCMS .oneFourthColumn,
.rutanCMS ._1_4
{
    width: calc(( 100% / 4 ) - 20px);
}
.rutanCMS .oneFifthColumn,
.rutanCMS ._1_5
{
    width: calc(( 100% / 5 ) - 20px);
}
.rutanCMS ._1_6
{
    width: calc(( 100% / 6 ) - 20px);
}
.rutanCMS ._1_7
{
    width: calc(( 100% / 7 ) - 20px);
}
.rutanCMS ._1_8
{
    width: calc(( 100% / 8 ) - 20px);
}
.rutanCMS [class*='Column'].box{
    padding:15px;
    background: rgb(217,217,217);
}

.rutanCMS [class*='Column'].box h3{
    text-transform: uppercase;
    color:#fff;
    font-family: 'Rutan-Bold';
    background:rgb(235,91,37);
    padding:5px 15px;
    margin:-15px 0 20px -15px;
    width:calc(100% + 30px);
}