html {
    margin:0;
    padding:0;
    height:100%;
    min-width: 100%;
}

body {
    position: relative;
    height: auto;
    min-height: 100% !important;
    margin: 0 auto;
    min-width: 320px;
    /*font-family: 'Source Sans Pro', 'sans-serif';*/
    font-family: Arial;
    font-size: 16px;
    background: none repeat scroll 0% 0%;
    color: #222;
    margin: 0;
}

div#container {
    height: auto !important; /*Cause footer to stick to bottom in IE 6*/
    margin: 0 auto -200px;   /*Allow for footer height*/    
    width: 90%;
    padding-bottom: 50px;
    overflow-y: auto;
    overflow-x: auto;
    z-index: 1;
}

main#content {
    min-width: 1040px;
    margin-top: 60px;
    padding: 2em;
}

h1, h2, h3, h4, h5, h6 {color: #07412b;}
a {color: #038f0c;}
b, strong {font-weight: 600;}
samp {    display: none;}
article, aside, details, header, h1, main, menu, nav, section, summary {display: block;}

header {
    position: fixed;
    right: 0px; top: 0px; left: 0px;
    background-color: #038f0c;
    height: 70px;        
    min-width: 320px;
    padding: 0px 10px 5px;
    margin: 0px auto;
    text-align: left;
    transform: translate3d(0px, 0px, 0px);
    z-index: 50;
}
header h2 {
    margin-left: 10px;
    float: left;
}
header h2 a, header h2 a:hover {
    font-size: 1.2em;
    padding: 10px 5px;
    letter-spacing: -2px;
    border-bottom: none;
    font-weight: bold;
    text-decoration: none;
    color: white;
}
header h2 a strong {
    color: #5D87DA;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 1.5em;
    background: #038f0c;
}
footer a{
    float: right;
    font-size: 12px;
    text-decoration: none;
    margin-top: 3px;
}
footer a{
    color:white;
}

/* standard classes */
.right {float: right;}
.left {float: left;}
.clear{clear: both}

.relative {position: relative;}
.absolute {position: absolute;}
.inline {display: inline;}
.inline-block {display: inline-block;border:1px solid gray;}
.block {display: block;}
.top {vertical-align: top;}
.table {display: table;}
.table-row {display: table-row;}

table, th , td  {
  border: 0px solid grey;
  border-collapse: collapse;
  padding: 2px;
}
table tr {
    background-color: #f1f1f1;
}
table tr:nth-child(odd) {
  /*background-color: #f1f1f1;*/
}
table tr:nth-child(even) {
  /*background-color: #ffffff;*/
}

.w30{width: 30%;}
.w50{width: 49%;}
.w45{width: 46%;}
.w90{width: 90%;}
.w100{width: 100%;}

.w100px {width: 100px !important;}
.w200px {width: 200px !important;}
.w400px {width: 400px !important;}

.inner {padding: 10px;}
.outer {margin:  10px;}
.center{margin-left: auto; margin-right: auto;}

@-webkit-keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}
@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}