.top { 
  position: relative; 
  font-family: "Roboto",sans-serif;
  padding: 5px 0;
  /* border-top: 3px solid #db4437;
  border-bottom: 3px solid #db4437; */
  /* box-shadow: 0 0 5px 2px rgba(0,0,0,.35); */
  box-shadow: 0 3px 1px -1px rgba(0,0,0,0.15);
  width: 100%;
}
.top .wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  
}
.top .logo {
  width: 115px;
  height: 75px;
}

.top .headers {
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.top .slogan {
  color: rgb(5, 141, 217);
  text-transform: uppercase;
  font: 700 13px/15px Verdana,sans-serif;
  letter-spacing: .5px;
  margin: 0 0 5px;
}

.top .slogan.slogan-grey {
  color: rgba(0,0,0,.5);
  font: 700 11px/15px Verdana,sans-serif;
  margin: 0;
}

.top .right-top a:hover {
  color: #333;
  /*border-bottom: 1px dashed #666666;*/
}

.right-top > div {
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  color: #666666;
}
.right-top a {
  text-decoration: none;
  color: #828282;
  border-bottom: 1px dashed #fff;
  font-weight: bold;
}

.right-top .icon-text {
  margin: 0 5px;
}

.menu {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid white;
}
.menu ul {
  width: 1150px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid #eee;
  height: 44px;
}
.menu li {
  list-style-type: none;
  margin: 0 5px;
  /* border-top: 3px solid #fff; */
  /* height: 25px; */
}
.menu a {
  text-decoration: none;
  padding: 7px 10px;
  color: rgba(0,0,0,.40);
  text-transform: capitalize;
  border-radius: 5px;
  border: 1px solid white;
}
.menu .active {
  /* background-color: #eee; */
  /* border-top: 3px solid #eee; */
  /* border-bottom: 2px solid #007ac6; */
  color: rgba(0,0,0,.7);
  color: #007ac6;
}

.menu .active a{
  /* color: #007ac6; */
  color: #004571;
  /* background-color: #e8e9e8; */
  border-color: #e1e1e1;
  background-color: #eee;
}

.content, html, body {
  font-family: 'Open Sans', arial;
}

.content { 
  position: relative; 
  padding: 5px 0;
  width: 100%;
}
.content .wrapper {
  max-width: 1150px;
  margin: 0 auto;
}

.content .stats-table, .content .balance-table {
  border-radius: 5px;
  overflow: hidden;
  /* box-shadow: 0 1px 6px 2px rgba(0,0,0,0.1); */
  /* box-shadow: 0 1px 3px 1px rgba(0,0,0,0.15); */
  /* box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.1); */
}
/* .content .stats-table tr.header {
  border: none;
} */
.content .stats-table tr:last-child {
  border: none;
}
@media (min-width:1000px){    
	.menu.fixed {
    position: fixed;
    top: 0px;
    background: white;
    z-index: 10;
    border-top: none;
    /* box-shadow: 0 0 5px 2px rgba(0,0,0,.35); */
    box-shadow: 0 3px 1px -1px rgba(0,0,0,0.15);
    /* border-top: 3px solid #db4437; */
    /* border-top: 3px solid #db4437;
    border-bottom: 2px solid #db4437; */
  }
	.menu.fixed ul:last-child {border-bottom:none;}
}