/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #000;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #000;
}

a:hover,
a:active,
a:focus {
  color: #000;
  outline: none;
  text-decoration: underline;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 10px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
    display: none;
}
.animated.hide {
	display: none;
}
.sliderUpDown {
    overflow-y: hidden;
    max-height: 600px; /* approximate max height */

    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.sliderUpDown.closed {
    max-height: 0;
}


table {
    border-spacing: 0px;
    width: 100%;

}
table tbody tr:nth-child(odd) td {
  background-color: #f5f5f5 !important;
}
table tbody tr:nth-child(even) td {
  background-color: #fafafa !important;
}

table thead tr th,table tfoot th {
    border-top: solid 0px #FFFFFF;
    border-right: solid 0px #FFFFFF;
    border-bottom: solid 0px #FFFFFF;
    border-left: solid 1px #FFFFFF;
    background-color: #7f7350;
    padding: 2px;
    text-align: center;
    color: #FFF;
}
table thead tr:first-child th:first-child,table tfoot tr:first-child th:first-child{
    background-color: #91845f;
}
table thead tr > th,table tfoot tr > th{
    border-left: solid 0px transparent !important;
}



table tbody tr td {
    border-top: solid 1px #FFF;
    border-right: solid 0px #FFF;
    border-bottom: solid 0px #FFF;
    border-left: solid 1px #FFF;
    padding: 2px;
}
table tbody tr:last-child td:first-child{
    border-left: solid 0px #FFF;
}
table tfoot tr td {
    border-top: solid 1px #FFF;
    border-right: solid 0px #FFF;
    border-bottom: solid 0px #FFF;
    border-left: solid 1px #FFF;
    padding: 2px;
}
table tfoot tr:last-child td:first-child{
    border-left: solid 0px #FFF;
}
table tbody tr td:first-child {
    border-left: solid 1px transparent;
}
table tbody tr td:last-child {
    border-right: solid 1px transparent;
}
table tbody tr td {
    border-left: solid 1px #FFF;
    border-top: solid 1px #FFF;
    border-bottom: solid 1px transparent;
}
.show-print {
    display: block !important;
}
.hide-print {
    display: none !important;
}