@CHARSET "ISO-8859-1";

body {
  margin: 0;
  padding: 0;
  font-size: 14px !important;
  color: #333 !important;
  font-family: Helvetica;

  /* @media property in Index/DefaultController*/
  background-repeat: no-repeat;
}


#body {
  min-height: 100vh;
  max-width: 99%;
}

.jumbotron {
	background: transparent;
}
.jumbotron h1,
.jumbotron h1 small {
	color: white;
  text-shadow: 4px 4px 8px #ccc;
}

.tabMenu {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}



.tabMenu button {
  background-color: white;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

.tabMenu button:hover {
  background-color: #ddd;
}

.tabMenu button.active,
.tabMenu button:active {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #eee;
}

.tabContent {
  display: none;
  border-bottom: 1px solid #ccc;
  border-top: none;
}

.tabContent {
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

th {
  background-color: #eee;
  padding: 2px !important;
}

td {
  padding: 2px !important;
}

.graph {
  height: 40px;
}

tr:nth-child(even) {
  background-color: #eee;
}

tr:nth-child(odd) {
  background-color: #fff;
}

small {
  font-size: 11px;
}

.max_width {
  max-width: 90px;
}

.max_width2 {
  max-width: 180px;
}

.nav-tabs li {
  animation: tabFadeEffect 1s;
}

.nav-tabs li>a:active {
  animation: tabFadeEffect 1s;
}

@keyframes tabFadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

nav {
  display: flex;
  height: 50px;
  background-color: #F8F8F8;
  border-bottom: solid 1px #ccc;
  margin-bottom: 30px;
}

nav span {
  margin: auto 0;
  padding-left: 20px;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.column p img {
  width: 100%;
  display: block;
}
.column p {
	opacity: 1;
	column-count: 2;
	animation: textFadeIn 1s ease-in both;
}
.column p:nth-child(1) {
  color: #eee;
	animation-delay: 0.5s;
}
.column p:nth-child(2) {
  color: #eee;
  animation-delay: 1s;
}
.column p:nth-child(3) {
  animation-delay: 1.5s;
}
.column p:nth-child(4) {
	animation-delay: 2s;
}
.column p:nth-child(5) {
	animation-delay: 2.5s;
}
.column p:nth-child(6) {
	animation-delay: 3s;
}
.column p:nth-child(7) {
	animation-delay: 3.5s;
}
.column p:nth-child(8) {
  animation-delay: 4s;
}
.column p:nth-child(9) {
  animation-delay: 4.5s;
}
@keyframes textFadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, -20%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}


/*# sourceMappingURL=default.css.map */