/*
*** BASIC & GENERAL FONTS DEFINITIONS, SIZES, LINE-HEIGHTS ETC.
*/

/* Body */
body {
  color: #000000;
  font-family: "Open Sans",sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  padding-top: 51px;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
  padding: 0;
}

body.page h1 {
  font-size: 48px;
  letter-spacing: -3.6px;
  line-height: 48px;
  margin-bottom: 20px;
}

h2 {
  font-size: 22px;
  line-height: 22px;
}

h3 {
  font-size: 18px;
  line-height: 18px;
}

h4 {
  font-size: 16px;
  line-height: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/* Links */
a {
  color: #3A6CD1;
  text-decoration: none;
  transition: color 0.2s ease-in-out 0s;
}

a:hover,
a:focus {
  color: #002A6D;
  text-decoration: none;
}

/*
*** PAGE
*/

.description {
  line-height: 30px;
}

.description p:first-child {
  font-weight: 700;
}

.description p {
  margin-bottom: 20px;
}

.description h2 {
  margin-bottom: 20px;
}

.description h3, 
.description h4, 
.description h5, 
.description h6 {
  margin-bottom: 10px;
}

.description img {
  border-radius: 1px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
}

.description table {
  border: 1px solid #DDDDDD;
  font-size: 14px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.description table tr:nth-child(2n+1) td {
  background-color: #F9F9F9;
}

.description table th {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  padding: 3px 20px;
}

.description table td {
  border: 1px solid #DDDDDD;
  padding: 3px;
}

/* BREADCRUMBS - START */
#breadcrumbs {
  clear: both;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 20px;
}

#breadcrumbs span > a {
  font-weight: 700;
}

#breadcrumbs span > .breadcrumb_last {
  
}
/* BREADCRUMBS - STOP */