/*main.less*/
@-ms-viewport {
  width: device-width;
  zoom: 1.0;
}
.border-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 719px) {
  .no-phone,
  .only-desktop,
  .only-tablet {
    display: none !important;
  }
}
@media only screen and (min-width: 720px) and (max-width: 979px) {
  .no-tablet,
  .only-phone,
  .only-desktop {
    display: none !important;
  }
}
@media only screen and (min-width: 980px) {
  .no-desktop,
  .only-phone,
  .only-tablet {
    display: none !important;
  }
}
/* header.less */
@font-face {
  font-family: "Palace Script MT Std";
  src: url("/fonts/ufonts.com_palace-script-semibold.ttf") format("truetype");
}
#header {
  background: #670000;
}
#header a {
  color: #b5a787;
  text-decoration: none;
  display: inline-block;
}
#header img {
  float: left;
  height: 80px;
  width: auto;
  padding-right: 3px;
  position: absolute;
  top: -2px;
  left: 0px;
}
#header h1,
#header h2 {
  float: left;
  padding: 0;
  padding-left: 75px;
  margin: 0;
  border: none;
}
#header #show-main-nav {
  background: url("/img/css/show-main-nav.png") no-repeat center;
  width: 45px;
  height: 40px;
  float: right;
  padding: 0 0 0 0;
}
@media only screen and (max-width: 719px) {
  #header {
    height: 50px;
  }
  #header a {
    padding: 15px 10px;
  }
  #header img {
    height: 55px;
    width: auto;
    margin-left: 5px;
  }
  #header h1 {
    font-size: 48px;
    line-height: 1;
    font-family: "Palace Script MT Std";
    margin-left: -15px;
    margin-top: -15px;
  }
  #header #show-main-nav {
    margin: 7px 0;
  }
}
@media only screen and (min-width: 720px) {
  #header {
    height: 75px;
  }
  #header a {
    height: 47px;
    width: 400px;
    padding: 10px 10px;
    line-height: 1;
  }
  #header h1 {
    font-size: 62px;
    line-height: ;
    font-family: "Palace Script MT Std";
    margin-top: -22px;
    font-weight: 550;
  }
  #header h2 {
    margin-top: -6px;
    font-size: 15px;
    line-height: 1;
  }
  #header #show-main-nav {
    margin: 20px 0;
  }
}
/* main-nav.less */
#main-nav {
  width: 85%;
  margin-left: 15%;
  border-bottom: 1px solid #792c2c;
  visibility: hidden;
}
#main-nav a {
  text-decoration: none;
  color: #000;
}
#main-nav ul {
  list-style: none;
  margin: 0;
}
#main-nav > ul > li {
  border-top: 1px solid #792c2c;
}
#main-nav > ul > li > a {
  -webkit-transition: border-color 300ms;
  -ms-transition: border-color 300ms;
  transition: border-color 300ms;
  font-size: 20px;
  padding: 7px 10px;
  background: url('/img/css/small-arrow-down.png') no-repeat 95% 50%;
  border-bottom: 1px solid #e6e1d6;
  display: block;
}
#main-nav > ul > li > ul {
  border-top: 1px solid #792c2c;
  padding: 0;
  background: rgba(120, 120, 120, 0.15);
  border: none;
  -webkit-transition: max-height 300ms ease;
  transition: max-height 300ms ease;
  max-height: 0;
  overflow: hidden;
}
#main-nav > ul > li > ul > li > a {
  font-size: 16px;
  padding: 6px 10px;
}
#main-nav > ul > li > ul > li:first-of-type a {
  padding-top: 12px;
}
#main-nav > ul > li > ul > li:last-of-type a {
  padding-bottom: 12px;
}
#main-nav > ul > li > ul a {
  padding-bottom: 6px;
  line-height: 1;
  display: block;
}
#main-nav > ul > li > ul a:hover {
  text-decoration: underline;
}
#main-nav > ul > li.open > a {
  border-bottom-color: #792c2c;
  background: url('/img/css/small-arrow-up.png') no-repeat 95% 50%;
}
#main-nav > ul > li.open ul {
  max-height: 350px;
}
#inner-container {
  position: absolute;
  top: 0;
  z-index: 500;
}
.main-nav-open #main-nav {
  visibility: visible;
}
.no-csstransforms.main-nav-open #inner-container {
  left: -85%;
}
.no-js #inner-container {
  position: static;
  top: 0;
  z-index: 500;
}
.no-js #main-nav {
  visibility: visible;
  width: 100%;
  margin: 0;
}
.no-js #main-nav > ul > li > a {
  border-bottom: 1px solid #e6e1d6;
  display: block;
  font-size: 20px;
}
.no-js #main-nav > ul > li > ul {
  display: none;
  border-top: 1px solid #792c2c;
  padding-bottom: 10px;
}
@media only screen and (max-width: 979px) {
  .main-nav-open #inner-container {
    -webkit-transform: translateX(-85%);
    -moz-transform: translateX(-85%);
    -ms-transform: translateX(-85%);
    -o-transform: translateX(-85%);
    transform: translateX(-85%);
  }
}
@media only screen and (min-width: 720px) and (max-width: 979px) {
  #main-nav {
    width: 40%;
    margin-left: 60%;
  }
  .main-nav-open #inner-container {
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    -o-transform: translateX(-40%);
    transform: translateX(-40%);
  }
  .no-csstransforms.main-nav-open #inner-container {
    right: 40%;
  }
}
@media only screen and (min-width: 980px) {
  #main-nav {
    position: absolute;
    visibility: visible;
    top: 0;
    right: 0;
    z-index: 1000;
    width: auto;
    border: none;
  }
  #main-nav > ul {
    padding: 26px 34px;
  }
  #main-nav > ul > li {
    margin-right: 4px;
    float: left;
    position: relative;
    border: none;
  }
  #main-nav > ul > li:hover,
  #main-nav > ul > li.hover {
    background: #978ea5;
    background: rgba(175, 175, 175, 0.25);
  }
  #main-nav > ul > li:hover > ul,
  #main-nav > ul > li.hover > ul {
    display: block;
  }
  #main-nav > ul > li > a {
    font-family: "PT Serif Caption", Times, "Times New Roman", serif;
    background: none;
    display: block;
    padding: 6px;
    color: #b5a787;
    border: none;
    font-size: 15px;
  }
  #main-nav > ul > li.open a {
    background: none;
  }
  #main-nav > ul > li ul {
    max-height: none;
    padding: 6px;
    background: #e6e1d6;
    position: absolute;
    top: 100%;
    display: none;
    width: 150px;
    border: #670000 1px solid;
  }
  #main-nav > ul > li ul li a {
    display: block;
    color: #000;
    padding: 4px 0;
  }
  #main-nav > ul > li ul li a:hover {
    text-decoration: underline;
  }
  #main-nav > ul > li ul li:first-of-type a {
    padding-top: 3px;
  }
  #main-nav > ul > li ul li:last-of-type a {
    padding-bottom: 3px;
  }
  .no-js #main-nav {
    width: auto;
  }
  .no-js #main-nav > ul > li > a {
    border-bottom: none;
  }
}
/* body.less */
html {
  overflow-y: scroll;
}
body {
  background: url('/img/css/map.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  font-family: "PT Sans", Verdana, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
#outer-container {
  position: relative;
  max-width: 960px;
  min-width: 300px;
  margin: 0 auto;
  min-width: 320px;
}
#inner-container {
  width: 100%;
  background: #b5a787;
  -webkit-box-shadow: 0 0 10px #333333;
  -ms-shadow: 0 0 10px #333333;
  -moz-box-shadow: 0 0 10px #333333;
  box-shadow: 0 0 10px #333333;
}
#content {
  clear: left;
  padding-bottom: 10px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "PT Serif Caption", Times, "Times New Roman", serif;
}
a {
  border: none;
}
a img {
  border: none;
}
ul,
li {
  margin: 0;
  padding: 0;
}
img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
#inner-container {
  -webkit-transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  -webkit-transform: translate3d(0, 0, 0);
}
#main-nav li ul {
  -webkit-transition: all 100ms ease;
  transition: all 100ms ease;
}
@media only screen and (max-width: 719px) {
  #content {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 979px) {
  body {
    padding: 0;
    font-size: 16px;
  }
  #inner-container {
    width: 100%;
  }
  #mid {
    padding: 5px 0 0 0;
  }
}
@media only screen and (min-width: 720px) and (max-width: 979px) {
  #content {
    padding-top: 10px;
  }
}
@media only screen and (min-width: 980px) {
  #content {
    width: 700px;
    float: left;
  }
  .no-side-bar #content {
    width: 100%;
  }
  body {
    margin: 10px 0;
  }
  #inner-container {
    position: static;
  }
  #outer-container {
    min-width: 960px;
    height: 100%;
  }
  #mid {
    padding: 10px 0 0 0;
  }
}
/* crumbs.less */
#crumbs-search {
  background: #670000;
  margin: 5px 0 0 0;
}
#crumbs-search ul {
  list-style: none;
  margin: 0;
}
#crumbs-search ul li {
  display: block;
  float: left;
  padding-right: 10px;
  background: url("/img/css/crumb-spacer.png") no-repeat center right;
}
#crumbs-search ul li.last {
  background: none;
}
#crumbs-search ul li a {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  color: #b5a787;
  display: block;
  text-decoration: none;
}
.svg #crumbs-search ul li {
  background: url("/img/css/crumb-spacer.svg") no-repeat center right;
}
.svg #crumbs-search ul li.last {
  background: none;
}
#crumbs {
  max-height: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 719px) {
  #crumbs-search {
    margin: 0;
  }
}
@media only screen and (min-width: 720px) {
  #crumbs-search {
    margin: 5px 0 0 0;
  }
}
/* footer.less */
#footer {
  font-size: 0.9em;
  background: #670000;
  padding: 10px 0;
}
#footer ul {
  list-style: none;
  margin: 0;
}
#footer li,
#footer li a {
  color: #b5a787;
}
#footer li a {
  text-decoration: none;
}
#footer li a:hover {
  text-decoration: underline;
}
.svg #footer {
  background: #670000;
}
@media only screen and (max-width: 719px) {
  #footer ul {
    text-align: center;
  }
  #footer ul.right {
    padding-top: 66px;
  }
}
@media only screen and (min-width: 720px) {
  #footer ul {
    width: 50%;
    display: inline-block;
    float: left;
    line-height: 1.2;
  }
  #footer ul.right {
    text-align: right;
  }
  #footer ul li {
    padding: 0 10px;
  }
}
/* _template.less */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Serif Caption", Times, "Times New Roman", serif;
  margin: 10px 15px;
  line-height: 1.15;
  font-weight: 400;
}
h1 {
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 4px solid #000;
  padding-bottom: 5px;
}
h1.no-header-line {
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  padding-bottom: 0px;
}
.header-line {
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 4px solid #000;
  padding-bottom: 5px;
}
h2,
h3 {
  margin-top: 20px;
}
p,
ul,
ol {
  margin: 10px 20px;
}
p + ul {
  margin-left: 45px;
}
p + p {
  margin-top: 15px;
}
ul,
ol {
  list-style-position: outside;
  margin-left: 30px;
  margin-right: 10px;
  margin-bottom: 15px;
}
a:link {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 10px;
}
.table-wrapper {
  margin: 10px;
}
.table-wrapper table {
  width: 100%;
  margin: 0;
}
tr {
  margin: 2px 0;
}
thead {
  font-weight: 600 !important;
}
.readable tr:nth-child(odd) {
  background: #ccc;
}
.readable-light-red tr:nth-child(odd) {
  background: #f8a0a2;
}
.border-tr {
  border: 1px #000 solid;
}
.border-tr tr {
  border-bottom: 1px solid #000;
}
.border-tr tr:last-of-type {
  border: none;
}
.border-tr thead {
  border-bottom: 1px solid #000;
}
td {
  margin: 0;
  padding: 2px 5px;
}
@media only screen and (max-width: 719px) {
  h1 {
    font-size: 35.2px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 979px) {
  h1 {
    font-size: 35.2px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 980px) {
  h1 {
    font-size: 35.2px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 21px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
}
/* _template.less */
.no-side-bar #side-bar {
  display: none !important;
}
#side-bar {
  background: #670000;
  padding: 5px;
}
#side-bar select {
  width: 100%;
  font-size: 14px;
}
#back-to-top {
  position: absolute;
  bottom: -100px;
  width: 100%;
  text-align: center;
  visibility: hidden;
}
#back-to-top.open {
  visibility: visible;
}
@media only screen and (max-width: 719px) {
  #side-bar select {
    font-size: 16px;
  }
}
@media only screen and (min-width: 980px) {
  #side-bar {
    padding: 0;
    width: 229px;
    float: right;
    position: relative;
    margin: 0 10px 10px 0;
  }
  #side-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #side-bar li {
    display: block;
  }
  #side-bar a {
    color: #000;
    text-decoration: none;
    display: block;
  }
  #side-bar > ul > li > a {
    text-align: center;
    font-family: "PT Serif Caption", Times, "Times New Roman", serif;
    border-top: 1px #f5f5f5 solid;
    background: #670000;
    padding: 8px;
    color: #b5a787;
  }
  #side-bar ul ul {
    max-height: 0;
    overflow: hidden;
    background: #f5f5f5;
    -webkit-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    transition: all 250ms ease;
  }
  #side-bar .open ul {
    max-height: 400px;
    padding: 5px 0;
  }
  #side-bar ul ul a {
    line-height: 1.6;
    padding: 0 10px;
  }
  #side-bar ul ul a:hover {
    background: #792c2c;
  }
}
@media only screen and (max-width: 979px) {
  .no-js #side-bar-select {
    display: none;
  }
  .no-js #side-bar > ul {
    display: block !important;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .no-js #side-bar > ul li {
    padding: 0;
    margin: 0;
    display: block;
  }
  .no-js #side-bar > ul li a {
    color: #b5a787;
    display: block;
    border-bottom: 2px solid #f5f5f5;
    padding: 5px;
  }
  .no-js #side-bar > ul li > ul {
    display: none;
  }
}
/* _template.less */
#search {
  position: relative;
}
#search #more-search {
  position: absolute;
  height: 0px;
  width: 230px;
  background: #e6e1d6;
  z-index: 550;
  -webkit-transition: height 100ms ease;
  transition: height 100ms ease;
  overflow: hidden;
}
#search input[type="text"] {
  margin: 0;
  width: 100%;
  border: 1px solid #756748;
  background: #e6e1d6;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: block;
  outline: none;
  padding: 0;
}
#search input[type="submit"] {
  width: 26px;
  text-indent: -999px;
  position: absolute;
  top: 2px;
  margin: 0;
  z-index: 5;
  border: none;
  background: #756748 url("/img/css/search.png") center no-repeat;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  cursor: pointer;
  padding: 0;
}
#search label {
  display: inline;
  padding: 0;
}
#search.open #more-search {
  height: 70px;
  width: 228px;
  border: 1px solid #792c2c;
}
.svg #search input[type="submit"] {
  background: #756748 url("/img/css/search.svg") center no-repeat;
}
@media only screen and (max-width: 719px) {
  #search {
    padding: 0 10px 10px 10px;
  }
  #search input[type="text"] {
    font-size: 16px;
    height: 28px;
    padding: 0 31px 0 5px;
  }
  #search input[type="submit"] {
    height: 24px;
    right: 12px;
  }
  #more-search {
    height: 20px;
    top: 27px;
  }
}
@media only screen and (min-width: 720px) {
  #search {
    float: right;
    height: 22px;
    margin: 4px 10px;
    width: 230px;
  }
  #search input[type="text"] {
    height: 22px;
    padding: 0 31px 0 5px;
  }
  #search input[type="submit"] {
    height: 18px;
    right: 2px;
  }
  #more-search {
    top: 100%;
    right: 0;
  }
}
/* _template.less */
.split > div {
  float: left;
}
.split.reverse > div {
  float: right;
}
.split .right {
  width: 50%;
}
.split .left {
  width: 50%;
}
.split .aright {
  width: 15%;
}
.split .aleft {
  width: 15%;
}
.split.l10-r90 > .left {
  width: 10%;
}
.split.l10-r90 > .right {
  width: 90%;
}
.split.l20-r80 > .left {
  width: 20%;
}
.split.l20-r80 > .right {
  width: 80%;
}
.split.l25-r75 > .left {
  width: 25%;
}
.split.l25-r75 > .right {
  width: 75%;
}
.split.l30-r70 > .left {
  width: 30%;
}
.split.l30-r70 > .right {
  width: 70%;
}
.split.l40-r60 > .left {
  width: 40%;
}
.split.l40-r60 > .right {
  width: 60%;
}
.split.l45-r45 > .left {
  width: 45%;
}
.split.l45-r45 > .right {
  width: 45%;
}
.split.l60-r40 > .left {
  width: 60%;
}
.split.l60-r40 > .right {
  width: 40%;
}
.split.l66-r34 > .left {
  width: 66%;
}
.split.l66-r34 > .right {
  width: 34%;
}
.split.l70-r30 > .left {
  width: 70%;
}
.split.l70-r30 > .right {
  width: 30%;
}
.split.l75-r25 > .left {
  width: 75%;
}
.split.l75-r25 > .right {
  width: 25%;
}
.split.l69-r23 > .left {
  width: 73%;
}
.split.l69-r23 > .right {
  width: 23.5%;
}
.split.l80-r20 > .left {
  width: 80%;
}
.split.l80-r20 > .right {
  width: 20%;
}
.split.l90-r10 > .left {
  width: 90%;
}
.split.l90-r10 > .right {
  width: 10%;
}
.even-col {
  width: 46%;
  float: left;
  padding-left: 20px;
  padding-right: 5px;
  padding-bottom: 10px;
}
ul.link-list {
  list-style: none;
  margin-left: 10px;
}
ul.link-list li {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul.link-list li:after {
  content: '';
  clear: both;
  display: table;
}
ul.link-list li.title {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  padding-left: 10px;
}
ul.link-list a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 1px 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
ul.link-list a:hover {
  background: #792c2c;
  color: #b5a787;
}
ul.link-list > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 40%;
}
ul.link-list.col-3 > ul {
  width: 33.333333333333336%;
  float: left;
}
ul.link-list.col-2 > ul {
  width: 50%;
  float: left;
}
ul.link-list.highlight li {
  display: block;
  margin: 5px;
}
ul.link-list.highlight a {
  display: block;
  background: #792c2c;
  padding: 8px 10px;
  color: #b5a787;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
ul.link-list.highlight a:hover {
  background: #444;
}
ul.link-list.irs {
  list-style: none;
  margin-left: 10px;
}
ul.link-list.irs li {
  min-height: 24px;
  font-size: 0;
}
ul.link-list.irs li.no-full-text .db-type-icon {
  background-image: url('/img/css/no-full-text.png');
}
ul.link-list.irs li.some-full-text .db-type-icon {
  background-image: url('/img/css/some-full-text.png');
}
ul.link-list.irs li.full-text .db-type-icon {
  background-image: url('/img/css/full-text.png');
}
ul.link-list.irs li.multimedia .db-type-icon {
  background-image: url('/img/css/multimedia.png');
}
ul.link-list.irs li.no-graphic a {
  padding-left: 10px;
}
ul.link-list.irs .db-type-icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 24px;
  width: 24px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}
ul.link-list.irs .more-info {
  position: absolute;
  right: 0;
  top: 0;
  height: 24px;
  width: 24px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('/img/css/small-arrow-down.png');
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
ul.link-list.irs .more-info:hover {
  background-color: #999;
}
ul.link-list.irs .tut-link {
  background-image: url('/img/css/tutorial.png');
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 26px;
  padding-right: 26px;
}
ul.link-list.irs .tut-link:hover {
  background-color: #792c2c;
}
ul.link-list.irs div {
  float: left;
  font-size: 16px;
  display: none;
  padding-bottom: 10px;
  clear: both;
}
ul.link-list.irs div p {
  margin-left: 24px;
  font-size: .9em;
  margin-top: 10px;
  margin-bottom: 10px;
}
ul.link-list.irs div p a {
  font-size: inherit;
  display: inline;
  float: none;
  padding: 0;
  margin: 0;
  line-height: inherit;
  color: #00e;
}
ul.link-list.irs div p a:hover {
  background-color: transparent;
  color: #00e;
  text-decoration: underline;
}
ul.link-list.irs .open div {
  display: block;
}
ul.link-list.irs .open a {
  white-space: normal;
}
ul.link-list.irs .open .more-info {
  background-image: url('/img/css/small-arrow-up.png');
}
ul.link-list.irs a {
  min-height: 24px;
  float: left;
  font-size: 16px;
  padding: 0 30px 0 24px;
  position: relative;
  line-height: 24px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 89%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.float-box-right,
div.float-box-left {
  width: 200px;
  border: 1px solid #792c2c;
  padding: 10px;
  margin: 0px 10px 10px 10px;
  background: #f5f5f5;
}
div.float-box-right.big,
div.float-box-left.big {
  width: 50%;
}
div.float-box-right p,
div.float-box-left p,
div.float-box-right h1,
div.float-box-left h1,
div.float-box-right h2,
div.float-box-left h2,
div.float-box-right h3,
div.float-box-left h3,
div.float-box-right h4,
div.float-box-left h4,
div.float-box-right h5,
div.float-box-left h5,
div.float-box-right h6,
div.float-box-left h6 {
  margin: 0;
}
div.float-box-right hr,
div.float-box-left hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
div.float-box-right {
  float: right;
}
div.float-box-left {
  float: left;
}
code {
  background: #aaa;
  display: block;
  margin: 10px 10px 10px 20px;
  padding: 10px;
  overflow-x: auto;
}
pre {
  padding: 0;
  margin: 0;
}
div.col-2 {
  width: 50%;
  display: inline-block;
  float: left;
}
div.col-2:first-child {
  margin-top: 0;
}
a.irs-resource {
  position: relative;
}
a.irs-resource .float-description {
  position: absolute;
  top: 100%;
  left: 20px;
  min-width: 400px;
  max-height: 600px;
  display: none;
  z-index: 100;
  background-color: #f5f5f5;
  border: 1px solid #333;
  color: #000;
  padding: 5px 10px;
}
a.irs-resource:hover .float-description {
  display: block;
}
.continuous-float > div {
  float: left;
  width: 180px;
  text-align: center;
}
.continuous-float > div img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}
.continuous-inline > div {
  display: inline-block;
  width: 175px;
  text-align: center;
  vertical-align: top;
}
.continuous-inline > div img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}
.ellison > div,
.bbgc > div {
  padding-bottom: 30px;
}
@media only screen and (max-width: 719px) {
  div.float-box-right,
  div.float-box-left {
    float: none;
    width: auto;
    border: 1px solid #792c2c;
    padding: 10px;
    margin: 0px 10px 10px 10px;
  }
  div.float-box-right p,
  div.float-box-left p,
  div.float-box-right h1,
  div.float-box-left h1,
  div.float-box-right h2,
  div.float-box-left h2,
  div.float-box-right h3,
  div.float-box-left h3,
  div.float-box-right h4,
  div.float-box-left h4,
  div.float-box-right h5,
  div.float-box-left h5,
  div.float-box-right h6,
  div.float-box-left h6 {
    margin: 0;
  }
  ul.link-list.col-3 > ul {
    width: auto;
    float: none;
  }
  ul.link-list.col-2 > ul {
    width: auto;
    float: none;
  }
  .split > div {
    float: none !important;
  }
  .split .right {
    width: auto !important;
  }
  .split .left {
    width: auto !important;
  }
}
.cf:before,
.cf:after,
.cfb:before,
.cfb:after,
.set-wrapper:before,
.set-wrapper:after {
  content: " ";
  display: table;
}
.cf:after,
.cfb:after,
.set-wrapper:after {
  clear: both;
}
.cf,
.cfb,
.set-wrapper {
  *zoom: 1;
}
.cfb {
  width: 100%;
}
.no-js .no-js-hide {
  display: none !important;
}
.no-padding {
  padding: 0 !important;
}
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.padding70 {
  padding: 70px !important;
}
.padding70-top {
  padding-top: 70px !important;
}
.padding70-right {
  padding-right: 70px !important;
}
.padding70-bottom {
  padding-bottom: 70px !important;
}
.padding70-left {
  padding-left: 70px !important;
}
.padding65 {
  padding: 65px !important;
}
.padding65-top {
  padding-top: 65px !important;
}
.padding65-right {
  padding-right: 65px !important;
}
.padding65-bottom {
  padding-bottom: 65px !important;
}
.padding65-left {
  padding-left: 65px !important;
}
.padding60 {
  padding: 60px !important;
}
.padding60-top {
  padding-top: 60px !important;
}
.padding60-right {
  padding-right: 60px !important;
}
.padding60-bottom {
  padding-bottom: 60px !important;
}
.padding60-left {
  padding-left: 60px !important;
}
.padding55 {
  padding: 55px !important;
}
.padding55-top {
  padding-top: 55px !important;
}
.padding55-right {
  padding-right: 55px !important;
}
.padding55-bottom {
  padding-bottom: 55px !important;
}
.padding55-left {
  padding-left: 55px !important;
}
.padding50 {
  padding: 50px !important;
}
.padding50-top {
  padding-top: 50px !important;
}
.padding50-right {
  padding-right: 50px !important;
}
.padding50-bottom {
  padding-bottom: 50px !important;
}
.padding50-left {
  padding-left: 50px !important;
}
.padding45 {
  padding: 45px !important;
}
.padding45-top {
  padding-top: 45px !important;
}
.padding45-right {
  padding-right: 45px !important;
}
.padding45-bottom {
  padding-bottom: 45px !important;
}
.padding45-left {
  padding-left: 45px !important;
}
.padding40 {
  padding: 40px !important;
}
.padding40-top {
  padding-top: 40px !important;
}
.padding40-right {
  padding-right: 40px !important;
}
.padding40-bottom {
  padding-bottom: 40px !important;
}
.padding40-left {
  padding-left: 40px !important;
}
.padding35 {
  padding: 35px !important;
}
.padding35-top {
  padding-top: 35px !important;
}
.padding35-right {
  padding-right: 35px !important;
}
.padding35-bottom {
  padding-bottom: 35px !important;
}
.padding35-left {
  padding-left: 35px !important;
}
.padding30 {
  padding: 30px !important;
}
.padding30-top {
  padding-top: 30px !important;
}
.padding30-right {
  padding-right: 30px !important;
}
.padding30-bottom {
  padding-bottom: 30px !important;
}
.padding30-left {
  padding-left: 30px !important;
}
.padding25 {
  padding: 25px !important;
}
.padding25-top {
  padding-top: 25px !important;
}
.padding25-right {
  padding-right: 25px !important;
}
.padding25-bottom {
  padding-bottom: 25px !important;
}
.padding25-left {
  padding-left: 25px !important;
}
.padding20 {
  padding: 20px !important;
}
.padding20-top {
  padding-top: 20px !important;
}
.padding20-right {
  padding-right: 20px !important;
}
.padding20-bottom {
  padding-bottom: 20px !important;
}
.padding20-left {
  padding-left: 20px !important;
}
.padding15 {
  padding: 15px !important;
}
.padding15-top {
  padding-top: 15px !important;
}
.padding15-right {
  padding-right: 15px !important;
}
.padding15-bottom {
  padding-bottom: 15px !important;
}
.padding15-left {
  padding-left: 15px !important;
}
.padding10 {
  padding: 10px !important;
}
.padding10-top {
  padding-top: 10px !important;
}
.padding10-right {
  padding-right: 10px !important;
}
.padding10-bottom {
  padding-bottom: 10px !important;
}
.padding10-left {
  padding-left: 10px !important;
}
.padding5 {
  padding: 5px !important;
}
.padding5-top {
  padding-top: 5px !important;
}
.padding5-right {
  padding-right: 5px !important;
}
.padding5-bottom {
  padding-bottom: 5px !important;
}
.padding5-left {
  padding-left: 5px !important;
}
.margin20 {
  margin: 20px !important;
}
.margin20-top {
  margin-top: 20px !important;
}
.margin20-right {
  margin-right: 20px !important;
}
.margin20-bottom {
  margin-bottom: 20px !important;
}
.margin20-left {
  margin-left: 20px !important;
}
.margin15 {
  margin: 15px !important;
}
.margin15-top {
  margin-top: 15px !important;
}
.margin15-right {
  margin-right: 15px !important;
}
.margin15-bottom {
  margin-bottom: 15px !important;
}
.margin15-left {
  margin-left: 15px !important;
}
.margin10 {
  margin: 10px !important;
}
.margin10-top {
  margin-top: 10px !important;
}
.margin10-right {
  margin-right: 10px !important;
}
.margin10-bottom {
  margin-bottom: 10px !important;
}
.margin10-left {
  margin-left: 10px !important;
}
.margin5 {
  margin: 5px !important;
}
.margin5-top {
  margin-top: 5px !important;
}
.margin5-right {
  margin-right: 5px !important;
}
.margin5-bottom {
  margin-bottom: 5px !important;
}
.margin5-left {
  margin-left: 5px !important;
}
.no-margin {
  margin: 0 !important;
}
.no-margin-top {
  margin-top: 0 !important;
}
.no-margin-left {
  margin-left: 0 !important;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}
img.right {
  padding: 10px;
  float: right;
}
.underline {
  text-decoration: underline !important;
}
.bold {
  font-weight: 600 !important;
}
.italic {
  font-style: italic !important;
}
.body-font {
  font-family: "PT Sans", Verdana, sans-serif !important;
}
.shrink-text {
  font-size: 0.8em !important;
}
.title-font {
  font-family: "PT Serif Caption", Times, "Times New Roman", serif !important;
}
.center {
  text-align: center !important;
}
a.like-link-list {
  display: inline-block;
  color: #000;
  text-decoration: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
a.like-link-list:hover {
  background: #792c2c;
  color: #b5a787;
}
.hanging-indent {
  padding: 20px;
  text-indent: -20px;
}
img.center {
  display: block;
  margin-right: auto !important;
  margin-left: auto !important;
}
.scroll-y {
  overflow-y: auto;
  display: block;
}
.scroll-x {
  overflow-x: auto;
  display: block;
}
.border-double {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: double;
}
.border-solid {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
}
div.color-grey,
ul.color-grey,
ol.color-grey,
li.color-grey {
  background: #555555;
}
div.color-light-red,
ul.color-light-red,
ol.color-light-red,
li.color-light-red {
  background: #f8a0a2;
}
div.color-light-grey,
ul.color-light-grey,
ol.color-light-grey,
li.color-light-grey {
  background: #cccccc;
}
div.color-black,
ul.color-black,
ol.color-black,
li.color-black {
  background: black;
}
div.color-purple,
ul.color-purple,
ol.color-purple,
li.color-purple {
  background: #670000;
}
div.fcolor-grey,
ul.fcolor-grey,
ol.fcolor-grey,
li.fcolor-grey {
  color: #555555;
}
div.fcolor-light-grey,
ul.fcolor-light-grey,
ol.fcolor-light-grey,
li.fcolor-light-grey {
  color: #cccccc;
}
div.fcolor-black,
ul.fcolor-black,
ol.fcolor-black,
li.fcolor-black {
  color: black;
}
div.fcolor-white,
ul.fcolor-white,
ol.fcolor-white,
li.fcolor-white {
  color: white;
}
div.fcolor-purple,
ul.fcolor-purple,
ol.fcolor-purple,
li.fcolor-purple {
  color: #670000;
}
h1.color-grey,
h2.color-grey,
h3.color-grey,
h4.color-grey,
h5.color-grey,
h6.color-grey,
a.color-grey,
span.color-grey,
p.color-grey {
  color: #555555;
}
h1.color-light-grey,
h2.color-light-grey,
h3.color-light-grey,
h4.color-light-grey,
h5.color-light-grey,
h6.color-light-grey,
a.color-light-grey,
span.color-light-grey,
p.color-light-grey {
  color: #cccccc;
}
h1.color-black,
h2.color-black,
h3.color-black,
h4.color-black,
h5.color-black,
h6.color-black,
a.color-black,
span.color-black,
p.color-black {
  color: black;
}
h1.color-purple,
h2.color-purple,
h3.color-purple,
h4.color-purple,
h5.color-purple,
h6.color-purple,
a.color-purple,
span.color-purple,
p.color-purple {
  color: #670000;
}
/* forms.less */
.field-wrapper {
  padding: 0 20px 15px 20px;
}
.field-wrapper > label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  margin: 0;
  line-height: 1;
}
.field-wrapper p {
  padding: 3px 5px;
  margin: 0;
  font-size: 14px;
}
.field-wrapper input[type=text],
.field-wrapper textarea,
.field-wrapper select {
  padding: 2px 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #792c2c;
}
.field-wrapper textarea {
  margin-right: 20px;
}
.field-wrapper .LV_validation_message.LV_valid {
  display: none;
}
.field-wrapper .LV_validation_message.LV_invalid {
  font-size: 14px;
  padding: 0 0 0 5px;
}
.field-wrapper .LV_invalid_field {
  background-color: #f8a0a2;
}
.field-wrapper .LV_invalid_field::-webkit-input-placeholder {
  color: #792c2c;
}
.field-wrapper .LV_invalid_field:-moz-placeholder {
  /* Firefox 18- */
  color: #792c2c;
}
.field-wrapper .LV_invalid_field::-moz-placeholder {
  /* Firefox 19+ */
  color: #792c2c;
}
.field-wrapper .LV_invalid_field:-ms-input-placeholder {
  color: #792c2c;
}
.radio-wrapper label {
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
}
.radio-wrapper input {
  display: inline-block;
  width: auto;
}
.set-wrapper .field-wrapper {
  float: left;
  width: 25%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.set-wrapper .LV_validation_message {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  input,
  select {
    font-size: 16px !important;
  }
  .set-wrapper .field-wrapper {
    float: none;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  input[type=text] {
    width: 100%;
  }
}
.form-wrapper {
  padding: 0 20px 15px 0px;
  margin-left: 20px;
  width: 50%;
}
.form-wrapper > label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  margin: 0;
  line-height: 1;
}
.form-wrapper p {
  padding: 3px 5px;
  margin: 0;
  font-size: 14px;
}
.form-wrapper input[type=text],
.form-wrapper textarea,
.form-wrapper select {
  padding: 2px 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #792c2c;
}
.form-wrapper textarea {
  margin-right: 20px;
}
.form-wrapper .LV_validation_message.LV_valid {
  display: none;
}
.form-wrapper .LV_validation_message.LV_invalid {
  font-size: 14px;
  padding: 0 0 0 5px;
}
.form-wrapper .LV_invalid_field {
  background-color: #f8a0a2;
}
.form-wrapper .LV_invalid_field::-webkit-input-placeholder {
  color: #792c2c;
}
.form-wrapper .LV_invalid_field:-moz-placeholder {
  /* Firefox 18- */
  color: #792c2c;
}
.form-wrapper .LV_invalid_field::-moz-placeholder {
  /* Firefox 19+ */
  color: #792c2c;
}
.form-wrapper .LV_invalid_field:-ms-input-placeholder {
  color: #792c2c;
}
.radio-wrapper label {
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0;
}
.radio-wrapper input {
  display: inline-block;
  width: auto;
}
.set-wrapper .form-wrapper {
  float: left;
  width: 60%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.set-wrapper .LV_validation_message {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 719px) {
  input,
  select {
    font-size: 16px !important;
  }
  .set-wrapper .form-wrapper {
    float: none;
    width: 60%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
label {
  display: block;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 5px 0 10px 5px;
}
label > p {
  margin: 0;
  padding: 0;
  font-size: .8em;
}
label > span {
  display: inline-block;
  min-width: 25%;
}
label.required span:after {
  content: '*';
  color: #EA3C53;
}
label input[type=text] {
  width: 30%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 5px;
}
textarea {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5px 0;
}
input[type=submit],
input[type=reset] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5px 5px 5px 0;
  width: auto;
}
@media only screen and (max-width: 719px) {
  label > span {
    display: block;
    width: 100%;
  }
  label input[type=text] {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    font-size: 16px;
  }
}
/* flex-box.less */
.thumbnail-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.thumbnail-menu div {
  width: 175px;
  flex-direction: row;
  padding: 5px;
  color: black;
}
.thumbnail-menu div:hover {
  background-color: #792C2C;
  color: #B5A787;
}
.thumbnail-menu div a {
  text-align: center;
  word-wrap: break-word;
  text-decoration: none;
  color: inherit;
}
.thumbnail-menu div a img {
  width: 100%;
}
.image-display {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.image-display img {
  height: 200px;
  margin: 15px;
  border: 3px solid #792c2c;
}
