﻿@font-face {
    font-family: 'Agency FB'; /*a name to be used later*/
    src: url('/includes/fonts/AGENCYR.TTF'); /*URL to font*/
    font-weight: normal;
}
@font-face {
    font-family: 'Agency FB'; /*a name to be used later*/
    src: url('/includes/fonts/AGENCYB.TTF'); /*URL to font*/
    font-weight: bold;
}

html, body{
    width: 100%;
    min-height: 100%;
    font-family: 'Lato' !important;
    background-color: #e9e9e9 !important;
    font-size: 14px;
}

body{
    padding-top: 5rem;
    padding-bottom: 2rem;
}

th{
    font-weight: bold;
}

/** Generic */
.flex{
    display: -webkit-flex;
    display: flex;
}

.flex.vcenter{
    align-items: center;
}
td.vcenter{
    vertical-align: middle;
}

.flex.hcenter{
    justify-content: center;
}

.padded{
    padding: 0.4rem;
}

.marged{
    margin: 0.4rem;
}

hr.normal{
    margin: 4px 0 4px 0;
}

.imgButton{
    cursor: pointer;
}

/** Master page */
.page{
    width: 100%;
    height: 100%;
}

tr.pageHeader{
    height: 0;
}

td.pageHeader{
    height: 5rem;
    box-shadow: 0px 5px 5px #e9e9e9;
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.pageHeader .content{
    width: 100%;
    height: 5rem;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.pageHeader .logo img{
    max-height: 3rem;
    margin: 1rem;
}

.pageHeader .menu{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-grow: 0.5;
    align-items: flex-end;

}

.pageHeader .menu a{
    color: black;
    text-transform:uppercase;
}

.pageHeader .links{
    align-self: flex-start;
    margin: 1rem;
    text-align: right;
}

.pageHeader .links a{
    margin: 0 2rem;
    cursor: pointer;    
    color: black;
    text-transform:uppercase;
}

.pageHeader .links .cie{
    padding: 0.5rem 2rem 0 0;
}

.pageBottom{
    height: 2rem;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    background-color: white;
}

.pageBottom .content{   
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
    height: 2rem;
    overflow: hidden;
    align-items: center;
    padding: 0 2rem;    
    font-size: 0.8rem;
}

.pagebody{
    overflow: auto;
}

/** Bootsrap tweeks */
.panel-primary>.panel-heading{
    background-color: #2c3f4c !important;
    border-color: #335063 !important;
}
.panel-primary{
    border-color: #335063 !important;
}
.input-group-btn .btn{
    height: 34px;
}