@charset "utf-8";
/*This keeps footer at the bottom of the page.  
It works with the WrapperWithFooter.html template.*/
:root{
    /*Material Design Blue Grey*/
    /*Material Design Light Blue*/
    /*Material Design Amber*/
    /*100*/
    --primary-color-100: #cfd8dc;
    --primary-color-100: #B3E5FC;
    --primary-color-100: #FFECB3;
    /*200*/
    /*--primary-color-200: #b0bec5;*/
    /*300*/
    /*--primary-color-300: #90afae;*/
    /*400*/
    /*--primary-color-400: #78909c;*/
    /*500*/
    --primary-color-500: #607d8b;
    --primary-color-500: #03A9F4;
    --primary-color-500: #FFC107;
    /*700*/
    --primary-color-700: #455a64;
    --primary-color-700: #0288D1;
    --primary-color-700: #FFA000;

    /*Material Design Indigo*/
    /*Material Design Light Blue*/
    /*Material Design Amber*/
    /*Material Design Cyan*/
    /*A100*/
    --accent-color-A100: #8c9eff;
    --accent-color-A100: #80D8FF;
    --accent-color-A100: #FFE57F;
    /*--accent-color-A100: #84FFFF;*/
    /*A200*/
    --accent-color-A200: #536dfe;
    --accent-color-A200: #40C4FF;
    --accent-color-A200: #FFD740;
    /*--accent-color-A200: #18FFFF;*/
    /*A400*/
    --accent-color-A400: #3d5afe;
    --accent-color-A400: #00B0FF;
    --accent-color-A400: #FFC400;
    /*--accent-color-A400: #00E5FF;*/
    /*A700*/
    --accent-color-A700: #304FFE;
    --accent-color-A700: #0091EA;
    --accent-color-A700: #FFAB00;
    /*--accent-color-A700: #00B8D4;*/

    --primary-text-dark: rgba(0,0,0,0.87);
    --secondary-text-dark: rgba(0,0,0,0.54);
    --disabled-text-dark: rgba(0,0,0,0.38);
    --dividers-dark: rgba(0,0,0,0.12);

    --primary-text-light: rgba(255,255,255,1.0);
    --secondary-text-light: rgba(255,255,255,0.70);
    --disabled-text-light: rgba(255,255,255,0.50);
    --dividers-light: rgba(255,255,255,0.12);
}

body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    background: var(--primary-color-100);
    margin: 0;
    padding: 0;
    color: var(--primary-text-dark);
    height:100%;
}
#wrapper {
    min-height:100%;
    position:relative;
}
#headerW {
}
#contentW {
    padding-bottom:100px;   /* Height of the footer element */
}
#footerW {
    width:100%;
    height:100px;
    position:absolute;
    bottom:0;
    left:0;
}



ul,ol,dl {
    padding: 0;
    margin: 0;
}

h1,h2,h3,h4,h5,h6,p {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
}

a img {
    border: none;
}

a:link {
    color: var(--primary-text-dark);

}

a:visited {
    color: var(--secondary-text-dark);

}

a:hover,
a:active,
a:focus {
    color: var(--accent-color-A700);
}

.container {
    width: 100%;
    max-width: auto;
    min-width: auto;
    background-color: var(--primary-color-100);
    margin: 0 auto;
}

.header {
    background: var(--primary-color-700);
    color: var(--primary-text-light);
}

.header a:link,
.header a:visited {
    /*    color: var(--secondary-text-light);*/
    color: var(--primary-text-light);
    text-decoration: underline;
}

.header a:hover{
    color: var(--accent-color-A100);
}

.content {
    padding: 10px 0;
    width: 70%;
    float: left;
}

.sidebar1 {
    float: left;
    width: 30%;
    color: var(--secondary-text-dark);
    /*background: var(--primary-color-700);*/   
    padding-bottom: 10px;
}

.sidebar2 {
    float: right;
    width: 20%;
    color: var(--secondary-text-dark);
    background: var(--primary-color-700); 
    padding: 10px;
}

.tooltip {
    display: inline;
    position: relative;
}

.tooltip:hover:after,
.tooltip:focus:after
{
    background: transparent;
    background-color: var(--accent-color-A700);
    border-radius: 5px;
    bottom: 26px;
    color: var(--secondary-text-light);
    color: var(--secondary-text-dark);
    color: var(--primary-text-light);
    color: var(--primary-text-dark);
    content: attr(title);
    left: 20%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 220px;
}

.content ul,
.content ol {
    padding: 0 15px 15px 40px;
}

ul.nav {
    list-style: none;
    border-top: 2px solid var(--primary-color-100);
    margin-bottom: 15px;
}

ul.nav li {
    border-bottom:  2px solid var(--primary-color-100);
}

ul.nav a,
ul.nav a:visited {
    padding: 5px 5px 5px 15px;
    display: block;
    text-decoration: none;
    background: var(--primary-color-500);
    color: var(--primary-text-dark);

}

ul.nav a:hover,
ul.nav a:active,
ul.nav a:focus {
    background: var(--accent-color-A700);
    /*background-color: #00B8D4;*/
    color: var(primary-text-dark);
}

.footer {
    padding: 10px 0;
    background: var(--primary-color-500);
    position: relative;
    clear: both;
}

.fltrt {
    float: right;
    margin-left: 8px;
}

.fltlft {
    float: left;
    margin-right: 8px;
}

.clearfloat {
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

.centerAlign {
    text-align: center
}

.leftAlign{
    text-align: left
}

.rightAlign{
    text-align: right
}