@charset "utf-8";
/* Base Typography */
body {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: #2B292B;
}
div p {
  margin: 0;
  padding: 0;
}
a {
  color: #0f4c81;
  text-decoration: none;
}
a:hover {
  color: #0a3b64;
  text-decoration: underline;
}
/* Container Layout */
#container {
  width: 760px;
  margin-top: 15px;
  background: #FFF url(../images/dotted-line.png) repeat-y;
  overflow: hidden;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 18px;
}
#columnLeft {
  width: 511px;
  float: left;
}
#columnRight {
  width: 249px;
  float: right;
}
#columnLeftPadding, #columnRightPadding {
  padding: 0 15px;
}
#columnRightPadding {
  padding-bottom: 15px;
}
#columnLeft img {
  float: left;
  margin-right: 15px;
}
/* Section Headings */
.title {
  color: #ffffff;
  padding: 8px 12px;
  background-color: #40c0b0;
  font-weight: bold;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
/* Box Containers */
.titlebox {
  border: 1px solid #17a698;
  padding: 10px 12px;
  background-color: #ececec;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.ContainerContentTitle {
  padding: 10px 0;
  border-bottom: 1px solid #40c0b0;
}
.ContainerContentTitleLast {
  padding: 10px 0 5px;
}
/* Column Titles */
.titlecolumn {
  border-top: 1px solid #d0d0d0;
  margin-top: 2em;
  padding-top: 0.5em;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #666;
  font-weight: 600;
}
/* Right Column Links and Logos */
#columnRightPadding a {
  margin-bottom: 0.5em;
  display: inline-block;
  font-size: 12.5px;
  color: #898989;
}
#columnRight a:hover {
  color: #F04628;
}
#columnRight img {
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5em;
}
/* Note Blocks */
.note {
  margin-bottom: 2em;
  border-bottom: 1px solid #17a698;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.note:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.noteHome {
  padding: 1.5em;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
}
.note:nth-child(odd) .noteHome {
  background-color: #f4f4f4;
}
.note strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.75em;
}
.note p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #444;
}
.noteHome img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1em;
}
/* Read More/Less */
.read-more a, .read-less a {
  font-weight: 600;
  color: #007bff;
}
.read-more a:hover, .read-less a:hover {
  color: #0a3b64;
  text-decoration: underline;
}
.details {
  margin-top: 1em;
}
/* Utility */
.clear {
  height: 15px;
  clear: both;
}
/* Cookie Bar */
#cookie-bar {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
  background: #5A5A5A;
  color: #eeeeee;
  text-align: center;
  padding: 8px 0;
  z-index: 1000;
  width: 100%;
  min-height: 32px;
  line-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookie-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
#cookie-bar.fixed.bottom {
  top: auto;
  bottom: 0;
}
#cookie-bar p {
  margin: 0;
  padding: 0;
}
#cookie-bar a {
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  margin-left: 10px;
}
#cookie-bar .cb-enable, #cookie-bar .cb-policy, #cookie-bar .cb-disable {
  cursor: pointer;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  line-height: normal;
  display: inline-block;
  vertical-align: middle;
}
#cookie-bar .cb-enable, #cookie-bar .cb-policy {
  background: #333333;
}
#cookie-bar .cb-enable:hover, #cookie-bar .cb-policy:hover {
  color: #999;
}
#cookie-bar .cb-disable {
  background: #990000;
}
#cookie-bar .cb-disable:hover {
  background: #bb0000;
}