/* stylesheet.css */

/* Box sizing property */
* {
    box-sizing: border-box;
}

/* Style rule for the wrapper div */
#wrapper {
width: 75%;
 /*min-width: 600px;*/
 /*max-width: 1200px;*/
 margin: 1em auto;
 background-color: #F0F0F0; /* 6% gray */
 text-align: center;
 border: none;
}

/* Eliminate default margins for all heading types */
h1, h2, h3, h4, h5, h6 {
 margin: 0;
}

/* Make HTML5 layout elements block elements for older browsers */
header, nav, aside, article, footer {
 display:block;
}

/* Style rule for the body element */
body {
 font: 12pt Helvetica, Arial, Sans-Serif;
 line-height: 130%;
 color: #2B2B2B; /* 83% gray */
}

/* Style rule for the header element */
header {
 width: 100%;
 height: auto;
 margin: 0px 0px 0px 0px;
}

header img {
 width: 100%;
 display: block;
}

nav {
 width: 100%;
 margin: 0;
 padding: 0;
}


/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add an active class to highlight the current page */
.active {
    background-color: #4CAF50;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}


/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


/* Style rule for the nav ul */
nav ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 overflow: hidden;
 background-color: #000000; /* black */
}

li {
 float:left;
}

li a {
 display: block;
 color: #D4D4D4;  /* 17% gray */
 text-align: center;
 padding: 8px 24px;
 text-decoration: none;
}

li a:hover:not(.active) {
 background-color: #2B2B2B; /* 83% gray */
}

.active {
 background-color: #2B2B2B; /* 83% gray */
}

aside {
 height: auto;
 width: 100%;
 float: left;
 margin: 0;
 padding: 3% 2% 2% 2%;
}

article {
 height: auto;
 width: 100%;
 float: left;
 text-align: left;
 margin: 0;
 padding: 3% 2% 2% 2%;
}

footer {
 height: auto;
 width: 100%;
 float: left;
 text-align: center;
 margin: 0;
/* padding: 10px 10px 10px 10px;*/
padding: 0 0 0 0;
 line-height: 125%;
}


/* Style rule for the header images to span 25% */
.bg25 {
 width: 25%;
}

/* Style rule for the header images to span 50% */
.bg50 {
 width: 50%;
}

/* Style rule for the header images to span 75% */
.bg75 {
 width: 75%;
}

/* Style rule for the header images to span the full width */
.bg85 {
 width: 85%;
}

.bg100 {
 width: 100%;
}

/* Style rule for the social images to span 50% of their height */
.sm {
 width: 32px;
 height: 32px;
}

/* Style class for gray background */
.graybg {
 background-color: #D4D4D4;  /* 17% gray */
}


.right {
 float: right;
}


@media (min-width:601px){.aside{width:25%}.article{width:75%}}

@media only screen and (max-width: 40em) {
 
    thead, th, tr, td {
        display: block;
    }

    td[data-th]:before  {
        content: attr(data-th);
    }
}

@import url(https://fonts.googleapis.com/css?family=Josefin+Sans:400,700);
.Rtable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
}
.Rtable-cell {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 0.8em 1.2em;
  overflow: hidden;
  list-style: none;
  border: 1px solid #2B2B2B;
  background: rgba(112, 128, 144, 0.2);
}
.Rtable-cell > h1,
.Rtable-cell > h2,
.Rtable-cell > h3,
.Rtable-cell > h4,
.Rtable-cell > h5,
.Rtable-cell > h6 {
  margin: 0;
}
/* Table column sizing
================================== */
.Rtable--2cols > .Rtable-cell {
  width: 50%;
}
.Rtable--3cols > .Rtable-cell {
  width: 33.33%;
}
.Rtable--4cols > .Rtable-cell {
  width: 25%;
}
.Rtable--5cols > .Rtable-cell {
  width: 20%;
}
.Rtable--6cols > .Rtable-cell {
  width: 16.6%;
}

/* Apply styles
================================== */
.Rtable {
  position: relative;
  top: 3px;
  left: 3px;
}
.Rtable-cell {
  margin: -3px 0 0 -3px;
  background-color: white;
  border-color: #e2e6e9;
}
/* Cell styles
================================== */
.Rtable-cell--dark {
  background-color: slategrey;
  border-color: #5a6673;
  color: white;
}
.Rtable-cell--dark > h1,
.Rtable-cell--dark > h2,
.Rtable-cell--dark > h3,
.Rtable-cell--dark > h4,
.Rtable-cell--dark > h5,
.Rtable-cell--dark > h6 {
  color: white;
}
.Rtable-cell--medium {
  background-color: #b8c0c8;
  border-color: #a9b3bc;
}
.Rtable-cell--light {
  background-color: white;
  border-color: #e2e6e9;
}
.Rtable-cell--highlight {
  background-color: lightgreen;
  border-color: #64e764;
}
.Rtable-cell--alert {
  background-color: darkorange;
  border-color: #cc7000;
  color: white;
}
.Rtable-cell--alert > h1,
.Rtable-cell--alert > h2,
.Rtable-cell--alert > h3,
.Rtable-cell--alert > h4,
.Rtable-cell--alert > h5,
.Rtable-cell--alert > h6 {
  color: white;
}
.Rtable-cell--head {
  background-color: slategrey;
  border-color: #5a6673;
  color: white;
}
.Rtable-cell--head > h1,
.Rtable-cell--head > h2,
.Rtable-cell--head > h3,
.Rtable-cell--head > h4,
.Rtable-cell--head > h5,
.Rtable-cell--head > h6 {
  color: white;
}
.Rtable-cell--foot {
  background-color: #b8c0c8;
  border-color: #a9b3bc;
}
/* Responsive
==================================== */
@media all and (max-width: 500px) {
  .Rtable--collapse {
    display: block;
  }
  .Rtable--collapse > .Rtable-cell {
    width: 100% !important;
  }
  .Rtable--collapse > .Rtable-cell--foot {
    margin-bottom: 1em;
  }
}
.no-flexbox .Rtable {
  display: block;
}
.no-flexbox .Rtable > .Rtable-cell {
  width: 100%;
}
.no-flexbox .Rtable > .Rtable-cell--foot {
  margin-bottom: 1em;
}
  border: solid @bw white;
  background: fade(slategrey,20%);
  > h1, > h2, > h3, > h4, > h5, > h6 { margin: 0; }
}

/* Table column sizing
================================== */
.Rtable--2cols > .Rtable-cell  { width: 50%; }
.Rtable--3cols > .Rtable-cell  { width: 33.33%; }
.Rtable--4cols > .Rtable-cell  { width: 25%; }
.Rtable--5cols > .Rtable-cell  { width: 20%; }
.Rtable--6cols > .Rtable-cell  { width: 16.6%; }

