﻿html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8vw;
    background-color: #E8E8E8;
    color: black;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
    margin: 0px;
}
th, td {
    padding: 0px;
    text-align: left;
    vertical-align: top;
}

/*CONT*/
#cont {
    display: block;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    min-width: 1000px;
    min-height: 46vw;
    height: 100%;
    padding: 0px;
    overflow: visible;
}


#header {
    position: relative;
    width: 100%;
    height: 15%;
    min-height: 15%;
    background-color: white;
}
    #header .logo {
        display: block;
        position: absolute;
        top: 10%;
        left: 1%;
        height: 80%;
        width: 10%;
        background-image: url(../Graphics/logo.svg?270319-1);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    #header .nav {
        position: absolute;
        top: 10%;
        right: 1%;
        height: 80%;
        width: 75%;
    }
        #header .nav table {
            width: 100%;
            height: 100%;
        }
        #header .nav td {
            text-align: right;
            vertical-align: middle;
            line-height: 0px;
        }
        #header .nav a {
            margin-left: 3%;
            color: black;
            text-decoration: none;
            font-size: 130%;
            font-weight: bold;
            border-bottom: 2px solid transparent;
        }
            #header .nav a.portal {
                padding: 0.5vw 1vw 0.5vw 1vw;
                color: white;
                background-color: #DC2D27;
                border-bottom: none;
            }
        /*#header .nav a.portal {
            color: #DC2D27;
        }*/
            #header .nav a:hover, #header .nav a.active {
                border-bottom: 2px solid #DC2D27;
            }
            #header .nav a.portal:hover, #header .nav a.portal.active {
                background-color: black;
                border-bottom: none;
            }
            /*#header .nav a.portal:hover, #header .nav a.portal.active {
                border-bottom: 2px solid #000000;
            }*/

#footer {
    position: relative;
    width: 100%;
    height: 15%;
    margin: 0px;
    background-color: white;
}
    #footer .logo {
        position: absolute;
        top: 10%;
        left: 1%;
        height: 80%;
        width: 10%;
        background-image: url(../Graphics/logo.svg?270319-1);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    #footer .nav {
        z-index: 10;
        display: table;
        border-collapse: collapse;
        margin: 0px;
        position: absolute;
        top: 10%;
        left: 14%;
        height: 80%;
        width: 10%;
    }
        #footer .nav div {
            display: table-cell;
            width: 100%;
            height: 100%;
            padding: 0px;
            text-align: left;
            vertical-align: middle;
        }
        #footer .nav a {
            display: block;
            color: black;
            text-decoration: none;
            font-size: 90%;
            margin-top: 1%;
            margin-bottom: 1%;
        }
        #footer .nav a:hover, #footer .nav a:visited:hover {
            text-decoration: underline;
        }
    #footer .powered {
        display: table;
        border-collapse: collapse;
        margin: 0px;
        position: absolute;
        top: 10%;
        left: 1%;
        height: 80%;
        width: 98%;
    }
        #footer .powered .cell {
            position: relative;
            display: table-cell;
            height: 100%;
            padding: 0px;
            text-align: right;
            vertical-align: middle;
            line-height: 0px;
            font-size: 90%;
        }
        #footer .powered .placeholder {
            width: 30%;
        }
        #footer .powered .swin {
            width: 30%;
            text-align: right;
        }
            #footer .powered .swin img {
                width: 17%;
                height: auto;
            }
        #footer .powered .psa {
            width: 40%;
            text-align: center;
        }
            #footer .powered .psa a {
                color: black;
                text-decoration: none;
            }
        #footer .powered img {
            cursor: pointer;
            border: none;
            vertical-align: middle;
            height: auto;
            width: 16.6%;
            margin: 0px;
        }





@media (max-width: 1030px) and (orientation : landscape) {
    body {
        font-size: 9px;
    }
}
@media (max-width: 1050px) and (orientation : portrait)  {
    body {
        font-size: 14px;
    }

    #cont {
        min-width: 760px;
        height: 100%;
    }
    #header {
        position: relative;
        width: 100%;
        height: 10%;
        background-color: white;
    }
        #header .logo {
            height: 80%;
            width: 20%;
        }
        #header .nav a {
            font-size: 110%;
        }
    #footer {
        height: 15%;
    }
            #footer .logo {
                height: 80%;
                width: 15%;
            }
        #footer .nav {
            left: 20%;
            width: 10%;
        }
}