html {
  height: 100% !important;
}

body {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  height: 100% !important;
}

a {
  text-decoration: none;
}

/* default forms and fields */
.form-row label {
  margin-left: 0.8rem;
  color: gray;
}

.form-control, .form .btn {
  border-radius: 15px;
  outline: none !important;
  height: 45px;
}

.form-control {
  font-size: 16px;
  transition: all 0.4s;
  box-shadow: none;
}

.g-recaptcha {
  display: inline-block;
  padding-bottom: 30px;
}

.ck.ck-editor__editable {
  min-height: 300px;
}

.ck.ck-rounded-corners {
  border: 1px solid #ced4da;
  border-radius: 15px;
  outline: none !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-file {
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 15px;
  outline: none !important;
  height: 45px;
  font-size: 16px;
  transition: all 0.4s;
  box-shadow: none;
}

/* General content */
.container.restrictMedium {
  max-width: 750px;
}

.container .hintText {
  color: #999;
  padding: 0 20px;
  margin: 0 auto 20px auto;
}
.container h1 {
  margin: 30px 0 20px 0;
  font-weight: 100;
  font-size: 1.8em;
  text-align: center;
}

/* Login and Registration */
.container.login {
  margin-bottom: 40px;
  max-width: 720px;
}
.container.login .social .lost {
  color: #999;
  text-align: center;
  margin-bottom: 20px;
}
.container.login .social a {
  background: #fff;
  border: 1px solid lightgray;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 50px;
  border-radius: 15px;
  padding: 0 37px 0 0;
  overflow: hidden;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 46px;
  width: 100%;
}
.container.login .social img {
  display: inline-block;
  width: 30px;
  height: 32px;
  margin: 10px 15px 10px 20px;
}
.container.login .social.Facebook a {
  background-color: white;
}
.container.login .social.Facebook a img {
  height: 28px;
  content: url("/images/auth/fb-logo.png");
}
.container.login .social.Google a {
  background-color: white;
}
.container.login .social.Google a img {
  margin-top: 7px;
  margin-left: 5px;
  content: url("/images/auth/google-logo.png");
}
.container.login div.orDivider {
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  margin: 30px 0 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}
.container.login div.orDivider p {
  margin: 0 auto 0 auto;
  padding: 0 10px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
  background: #fff;
  display: inline-block;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  position: relative;
  top: -22px;
  z-index: 1;
}
.container.login div.form-check {
  margin: 13px 0 10px 0;
  padding-left: 40px;
}
.container.login div.form-check input {
  margin-top: 0.25rem;
}
.container.login .btn-primary {
  width: 100%;
  transition: all 0.4s;
}
.container.login #register_btn {
  width: 55%;
}
.container.login #login_lost_btn {
  width: 40%;
}
.container.login .switchToSignIn span {
  line-height: 45px;
}

/* Default text styling */
.text-muted {
  color: #6c757d !important;
}

.error-message {
  color: darkred;
}

div.error-message {
  margin: 10px 0 20px 0;
  text-align: center;
  width: 100%;
}

/* Form Validation */
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border-radius: 2px;
  padding: 4px 14px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
  pointer-events: none;
  color: #c80000;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "!";
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 20px;
  font-weight: bold;
  font-family: monospace;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
a.picEdit {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/images/core/theme/picEdit.png");
  background-size: contain;
}

a.generalEdit {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("/images/core/theme/edit.png") center no-repeat;
  background-size: 20px 20px;
}

div.myProfile {
  margin-bottom: 40px;
}
div.myProfile img.profile150 {
  width: 150px;
  height: 150px;
  position: relative;
}
div.myProfile .accountHeader {
  background: url("/images/core/theme/dark.png");
  padding: 10px 10px 0 10px;
  margin-top: -20px;
  border-radius: 8px;
  -moz-border-radius: 8px 8px 0 0;
  -webkit-border-top-right-radius: 8px 8px;
  -webkit-border-top-left-radius: 8px;
  border: 1px darkgray;
  overflow: hidden;
}
div.myProfile .accountHeader .mainRow {
  width: 100%;
  position: relative;
}
div.myProfile .accountHeader a.profile150 {
  display: block;
  width: 150px;
  height: 150px;
  margin: 10px auto;
}
div.myProfile .accountHeader a.profile150 .profileImage {
  width: 150px;
  height: 150px;
}
div.myProfile .accountHeader a.profile150 .editIcon {
  background: url(/images/core/theme/picEdit.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 115px;
  left: 120px;
}
div.myProfile .accountHeader div.accountDetail {
  margin: 10px auto 30px;
  text-align: center;
}
div.myProfile .accountHeader div.accountDetail .name-large {
  font-size: 2rem;
}
div.myProfile .accountHeader div.accountDetail div.memberId {
  color: #6c757d;
  position: relative;
  font-size: 1.15rem;
}
div.myProfile .accountHeader div.accountDetail div.memberId span {
  color: black;
}
div.myProfile .accountHeader div.accountDetail div.memberId .generalEdit {
  margin-left: 10px;
  position: absolute;
  bottom: -5px;
}
div.myProfile .accountHeader .controlPanel a {
  display: block;
  text-align: center;
  margin: 15px;
}
div.myProfile .accountHeader .mobileToggle {
  left: 0;
  bottom: 0;
}
div.myProfile .headerContent {
  padding: 20px 0 0 0;
  margin-top: 10px;
}
div.myProfile .bodyContent {
  background: url("/images/core/theme/light.png");
  padding: 20px 20px 10px 20px;
  margin: 5px -15px 0 -15px;
  border-radius: 8px;
  -moz-border-radius: 8px 8px 0 0;
  -webkit-border-top-right-radius: 8px 8px;
  -webkit-border-top-left-radius: 8px;
  border: 1px darkgray;
  overflow: hidden;
}
div.myProfile .bodyContent .controlOptions {
  margin-bottom: -10px;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 0;
}
div.myProfile .bodyContent .controlOptions a {
  display: inline-block;
  float: right;
  padding: 0 0 0 20px;
}
div.myProfile span.subject {
  display: inline-block;
  min-width: 200px;
  color: #6c757d;
}
div.myProfile span.result {
  display: inline-block;
}

@media (min-width: 500px) {
  div.myProfile .accountHeader {
    height: 230px;
    margin-top: 20px;
  }
  div.myProfile .accountHeader a.profile150 {
    display: inline-block;
    margin: 10px 10px;
    position: absolute;
  }
  div.myProfile .accountHeader .controlPanel {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  div.myProfile .accountHeader .controlPanel a {
    display: inline-block;
    float: right;
    padding: 0 0 0 20px;
    margin: 15px 0 0 15px;
  }
  div.myProfile .accountHeader div.accountDetail {
    margin: 10px 0 30px 190px;
    text-align: left;
  }
  div.myProfile .accountHeader div.accountDetail .memberId {
    padding-left: 20px;
  }
  div.myProfile .mobileToggle {
    left: 0;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  div.myProfile .accountHeader {
    height: 190px;
  }
  div.myProfile a.profile150 {
    margin: 10px 30px;
  }
  div.myProfile div.accountDetail {
    margin-left: 210px;
  }
  div.myProfile .bodyContent .mobileToggle {
    visibility: hidden;
    opacity: 0;
    position: absolute;
  }
}
.container.changeAvatar form {
  margin-top: 40px;
}

/*admin bar*/
div#adminBar {
  margin: 0 0 20px 0;
  max-width: 100%;
  background-color: lightblue;
  border: 1px solid;
  border-color: darkgray;
}

div#adminBar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

div#adminBar li {
  display: inline;
  font-size: 14px;
  padding: 0 15px 0 15px;
}

div#adminBar a {
  color: #993333;
  font-weight: 500;
  text-decoration: none;
}

div#adminBar .selectedGallery {
  color: #7B7B7A;
}

div#adminBar a:hover {
  color: #ff0000;
  text-decoration: none;
}

div.adminSubBar {
  margin: -20px 0 20px 0;
  padding: 2px 0 2px 0;
  background-color: lightcyan;
  border: 1px solid;
  border-color: darkgray;
}

div.adminSubBar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

div.adminSubBar li {
  display: inline;
  font-size: 14px;
  padding: 0 15px 0 15px;
  width: 150px;
  height: 20px;
}

div.adminSubBar a {
  color: #993333;
  font-weight: 500;
  text-decoration: none;
}

div.adminSubBar .selectedGallery {
  color: #7B7B7A;
}

div.adminSubBar a:hover {
  color: #ff0000;
  text-decoration: none;
}

/* Order Info
****************/
div.orderInvoice.container {
  padding-bottom: 20px;
}

div.orderInvoice h2 {
  text-align: center;
}
div.orderInvoice .transactionDate {
  width: 200px;
  text-align: left;
  display: inline-block;
}
div.orderInvoice .transactionDesc {
  width: 450px;
  text-align: left;
  display: inline-block;
}
div.orderInvoice .transactionAmount {
  width: 80px;
  text-align: right;
  display: inline-block;
}
div.orderInvoice .transactionStatus {
  width: 80px;
  text-align: center;
  display: inline-block;
}
div.orderInvoice .orderItemTitle {
  text-align: left;
}
div.orderInvoice .orderItemDesc {
  margin-left: 30px;
  text-align: left;
  display: inline-block;
  color: #333333;
}
div.orderInvoice .orderItemPrice {
  text-align: right;
  display: inline-block;
}
div.orderInvoice .orderItem {
  padding-top: 1em;
}
div.orderInvoice .header {
  font-size: 1.1em;
  text-align: center;
  background-color: #dddddd;
}
div.orderInvoice .checkOutLine {
  text-align: right;
  padding-right: 10px;
}
div.orderInvoice .subtotal {
  float: left;
  width: 125px;
  padding-right: 5px;
  text-align: right;
  font-weight: bold;
}
div.orderInvoice .paymentPanel {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

form.inlineLink {
  display: inline;
}
form.inlineLink button {
  background: none;
  border: none;
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1em;
  font-family: serif;
}
form.inlineLink button:focus {
  outline: none;
}
form.inlineLink button:active {
  color: red;
}

/* DOLL ORDER FORM
****************/
div.orderDoll h2 {
  font-size: 1.4em;
}
div.orderDoll h3 {
  font-size: 1.2em;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  color: darkblue;
}
div.orderDoll h4 {
  font-size: 1.1em;
  font-style: italic;
  padding-bottom: 20px;
  padding-top: 20px;
}
div.orderDoll .imageCell {
  display: inline-table;
  position: relative;
  width: 120px;
  height: 212px;
  padding: 0 8px 0 8px;
  text-align: center;
}
div.orderDoll .imageCell img {
  width: 120px;
}
div.orderDoll .orderImageDetail {
  top: 20px;
  left: 0;
  width: 150px;
  text-align: center;
}
div.orderDoll div.ui-dialog-content div.imageCell {
  border: 1px solid white;
  padding: 20px 8px 5px 8px;
  height: 123px;
  margin: 4px;
}
div.orderDoll .ui-dialog, div.orderDoll .ui-widget-content {
  font-size: 0.9em;
}
div.orderDoll .ui-dialog .orderImageDetail {
  top: 0;
  left: 0;
  width: 100px;
}
div.orderDoll div.ui-dialog-content div.imageCell-hover {
  border-color: #666666;
  background-color: #fff0f0;
}
div.orderDoll div.ui-dialog-content div.imageCell-select {
  border-color: #cccccc;
  background-color: #eee;
  font-weight: bold;
}
div.orderDoll .ui-widget-overlay {
  opacity: 0.6;
  background: black;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:focus {
  position: relative;
  width: auto;
  height: auto;
  clip: initial;
  margin: inherit;
  padding: inherit;
  border: initial;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* NAV HEADER NEW
************************/
#header.header-scrolled, #header.header-inner-pages {
  top: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#header .logo h1 a, #header #header .logo h1 a:hover {
  color: #2b2320;
  text-decoration: none;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

#header.fixed-top {
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.1);
}

#header div {
  max-width: 100%;
}

.scrolled-offset {
  margin-top: 70px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus, .navbar a:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 13px;
  color: #65534c;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #f03c02;
}

.navbar .getstarted, .navbar .getstarted:focus {
  background: #f03c02;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #fd490f;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  color: #581601;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #f03c02;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 40px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: calc(100% - 10px);
  visibility: visible;
}

@media (max-width: 768px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #2b2320;
  font-size: 28px;
  cursor: pointer;
  display: none;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  #navbar > ul {
    display: none;
  }

  #navbar.navbar-mobile > ul {
    display: block;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(14, 11, 10, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #581601;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #f03c02;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #f03c02;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar a.signinbutton {
  padding: 10px 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.return-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0d6efd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.return-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.return-to-top:hover {
  background: #084298;
  color: #fff;
}

.return-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Presentation Table Layout
***********************/
.presentationTable thead {
  color: #FFFFFF;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4em;
  text-decoration: none;
  background: #a2c1f2;
  background: -moz-linear-gradient(top, #a2c1f2 0%, #627aa3 100%);
  background: -webkit-linear-gradient(color-stop(0%, #a2c1f2), color-stop(100%, #627aa3));
  background: -webkit-linear-gradient(top, #a2c1f2 0%, #627aa3 100%);
  background: -o-linear-gradient(top, #a2c1f2 0%, #627aa3 100%);
  background: -ms-linear-gradient(top, #a2c1f2 0%, #627aa3 100%);
  background: linear-gradient(to bottom, #a2c1f2 0%, #627aa3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a2c1f2", endColorstr="#627aa3", GradientType=0 );
}

.presentationTable {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border-collapse: separate;
}

.presentationTable td:last-child {
  width: 180px;
}

.presentationTable td:nth-last-child(2) {
  width: 120px;
}

.presentationTable td, #forumBody th {
  padding: 3px;
}

.presentationTable td:first-child, #forumBody th:first-child {
  border-left: none;
}

.presentationTable th:first-child {
  -moz-border-radius: 6px 0 0 0;
  -webkit-border-radius: 6px 0 0 0;
  border-radius: 6px 0 0 0;
}

.presentationTable th:last-child {
  -moz-border-radius: 0 6px 0 0;
  -webkit-border-radius: 0 6px 0 0;
  border-radius: 0 6px 0 0;
}

.presentationTable th:only-child {
  -moz-border-radius: 6px 6px 0 0;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}

.presentationTable tr:last-child td:first-child {
  -moz-border-radius: 0 0 0 6px;
  -webkit-border-radius: 0 0 0 6px;
  border-radius: 0 0 0 6px;
}

.presentationTable tr:last-child td:last-child {
  -moz-border-radius: 0 0 6px 0;
  -webkit-border-radius: 0 0 6px 0;
  border-radius: 0 0 6px 0;
}

.presentationTable th {
  border-top: none;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.5);
}

.presentationTable a.thead:link, .presentationTable a.thead:visited, .presentationTable a.thead:active {
  color: #FFFFFF;
  text-decoration: underline;
}

.presentationTable a.thead:hover {
  color: orangered;
  text-decoration: none;
}

/* First post in the thread */
.presentationTable .tcat {
  background: #C0C0C0;
  line-height: 20px;
}

/* First alternating background color for row. */
.presentationTable .trowfinalhead {
  background: silver;
}

#forumMenu {
  margin: 0 0 2px 0;
  padding: 2px 0 2px 0;
  background-image: url("/forum/images/parchment.gif");
  border-bottom: 1px solid lightgray;
}

#forumMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#forumMenu li {
  list-style-type: none;
  color: inherit;
  display: inline;
  font-size: 14px;
  padding: 0 5px 0 20px;
  width: 100px;
  height: 100px;
}

#forumMenu a {
  color: #000000;
  font-family: "Tahoma", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
}

#forumMenu a:link,
#forumMenu a:visited,
#forumMenu a:active {
  color: #000000;
  font-family: "Tahoma", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  text-decoration: none;
}

#forumMenu a:hover {
  text-decoration: underline;
}

@keyframes fluidboxLoading {
  0% {
    transform: translate(-50%, -50%) rotateX(0) rotateY(0);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(0);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(-180deg) rotateY(-180deg);
  }
}
.fluidbox {
  outline: none;
}

.fluidbox__overlay {
  background-color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: -100%;
  /* Negative top and bottom is to fix some Safari cases where image got blurry */
  left: 0;
  bottom: -100%;
  /* Negative top and bottom is to fix some Safari cases where image got blurry */
  right: 0;
  /* Transition time for overlay is halved to ensure that flickering doesn't happen */
  transition: all 0.5s ease-in-out;
}
.fluidbox--opened .fluidbox__overlay {
  pointer-events: auto;
}

.fluidbox__wrap {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.fluidbox__thumb {
  transition: opacity 0s ease-in-out 0s;
  /* To prevent flickering, we delay the showing of the image */
}
.fluidbox--closed .fluidbox__thumb {
  transition: opacity 0s ease-in-out 0s;
}

.fluidbox__ghost {
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  transition: opacity 0s 0s, transform 0.5s 0s;
}
.fluidbox--opened .fluidbox__ghost {
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}
.fluidbox--closed .fluidbox__ghost {
  transition: opacity 0s 0.5s, transform 0.5s 0s;
}

.fluidbox__loader {
  opacity: 0;
  perspective: 200px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.fluidbox__loader::before {
  /* You can replace this with any color you want, or even a loading gif if desired */
  background-color: rgba(255, 255, 255, 0.85);
  content: "";
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20%;
  padding-bottom: 20%;
  transform: translate(-50%, -50%);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0s;
}

.fluidbox--loading .fluidbox__loader {
  opacity: 1;
  transition: opacity 0.5s ease-in-out 0.5s;
}
.fluidbox--loading .fluidbox__loader::before {
  animation: fluidboxLoading 1s 0s infinite ease-in-out forwards;
}

@keyframes right {
  from {
    transform: translateX(calc((-4vw + -4vh + -4%)/3)) rotate(0.01deg);
    -ms-transform: translateX(-4%);
  }
  to {
    transform: translateX(calc((4vw + 4vh + 4%)/3)) rotate(0.01deg);
    -ms-transform: translateX(4%);
  }
}
@keyframes left {
  from {
    transform: translateX(calc((4vw + 4vh + 4%)/3)) rotate(0.01deg);
    -ms-transform: translateX(4%);
  }
  to {
    transform: translateX(calc((-4vw + -4vh + -4%)/3)) rotate(0.01deg);
    -ms-transform: translateX(-4%);
  }
}
@keyframes down {
  from {
    transform: translateY(calc((-4vw + -4vh + -4%)/3)) rotate(0.01deg);
    -ms-transform: translateY(-4%);
  }
  to {
    transform: translateY(calc((4vw + 4vh + 4%)/3)) rotate(0.01deg);
    -ms-transform: translateY(4%);
  }
}
@keyframes up {
  from {
    transform: translateY(calc((4vw + 4vh + 4%)/3)) rotate(0.01deg);
    -ms-transform: translateY(4%);
  }
  to {
    transform: translateY(calc((-4vw + -4vh + -4%)/3)) rotate(0.01deg);
    -ms-transform: translateY(-4%);
  }
}
@keyframes out {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
@keyframes in {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
#slides {
  position: fixed;
  width: 1px;
  height: 1px;
  left: -9999px;
}

#slideshow {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#slideshow .slide, #slideshow span, #slideshow .static-content {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#slideshow .slide span {
  background-size: cover;
  background-position: center;
}
#slideshow .slide span.animate.right, #slideshow .slide span.animate.left {
  left: calc((-4vw + -4vh + -4%)/3);
  right: calc((-4vw + -4vh + -4%)/3);
}
#slideshow .slide span.animate.up, #slideshow .slide span.animate.down {
  top: calc((-4vw + -4vh + -4%)/3);
  bottom: calc((-4vw + -4vh + -4%)/3);
}
#slideshow span.animate {
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
#slideshow span.animate.right {
  animation-name: right;
}
#slideshow span.animate.left {
  animation-name: left;
}
#slideshow span.animate.up {
  animation-name: up;
}
#slideshow span.animate.down {
  animation-name: down;
}
#slideshow span.animate.in {
  animation-name: in;
}
#slideshow span.animate.out {
  animation-name: out;
}
#slideshow span.animate.paused {
  animation-play-state: paused;
}

.gdpr__A, .gdpr__B {
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Arial, "sans-serif";
}

.gdpr__A {
  display: block !important;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 0 15px;
  color: #333;
  z-index: 1040;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px 0 rgba(36, 36, 36, 0.25);
  box-shadow: 0 4px 5px 0 rgba(36, 36, 36, 0.25);
}

.gdpr__C {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 15px 0;
}

@media (min-width: 992px) {
  .gdpr__C {
    flex-direction: row;
  }
}
.gdpr__D {
  display: flex;
  align-items: center;
}

.gdpr__E {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 15px;
}

@media (min-width: 992px) {
  .gdpr__E {
    padding-right: 60px;
    margin: 0;
  }
}
.gdpr__A .gdpr__F {
  flex-shrink: 0;
  font-size: 15px;
}

.gdpr__G {
  overflow: hidden;
}

.gdpr__G .gdpr__B {
  display: block;
}

.gdpr__B {
  padding: 0 10px;
  color: #333;
  z-index: 1999;
  display: none;
  overflow: auto;
}

.gdpr__B, .gdpr__B:before {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.gdpr__B:before {
  content: "";
  background-color: #000;
  opacity: 0.5;
}

.gdpr__H {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 10px auto;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

@media (min-width: 900px) {
  .gdpr__H {
    margin: 30px auto;
  }
}
.gdpr__I .gdpr__H {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.gdpr__J, .gdpr__K, .gdpr__L {
  margin: 0;
  padding: 15px;
}

.gdpr__J {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.42857143;
}

.gdpr__K {
  font-size: 14px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.gdpr__K .gdpr__M {
  margin-top: 2em;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.125;
  font-size: 18px;
}

.gdpr__K .gdpr__N {
  margin-top: 0;
  margin-bottom: 10px;
}

.gdpr__L {
  text-align: right;
}

.gdpr__L .gdpr__F {
  font-size: 14px;
}

.gdpr__O {
  list-style-type: disc;
  margin: 0;
  padding: 10px 0 0 40px;
}

.gdpr__P {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.gdpr__P td, .gdpr__P th {
  padding: 8px;
  line-height: 1.42857143;
  border: 1px solid #ddd;
}

.gdpr__P th {
  border-bottom-width: 2px;
  text-align: left;
}

.gdpr__link {
  color: #0091eb;
}

.gdpr__link, .gdpr__link:active, .gdpr__link:visited, a.gdpr__F {
  text-decoration: none;
}

a.gdpr__F {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  background-color: #0091eb;
  border: 1px solid #2e6da4;
  border-radius: 3px;
  line-height: 1.5;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a.gdpr__F:hover {
  background-color: #286090;
  border-color: #204d74;
}

a.gdpr__F:active {
  background-color: #204d74;
  border-color: #122b40;
}

.gdpr__marketing {
  display: flex;
  align-items: center;
}

.gdpr__marketing #gdpr__marketing {
  margin-right: 5px;
}

.gdpr__Q {
  margin-bottom: 0;
}

.gdpr__R {
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  opacity: 0.2;
  cursor: pointer;
  background: none;
  border: 0;
  -webkit-appearance: none;
}

body {
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  height: 100%;
}

/* its me who make this magic */
#container:before {
  content: " ";
  display: table;
}

#container:after {
  clear: both;
}

body {
  background-color: #fcfdfe !important;
}

div.blogpost {
  border-bottom: 1px dashed #DDDDDD;
  padding-bottom: 20px;
  padding-top: 30px;
  width: auto;
  position: relative;
}
div.blogpost .postDate {
  background: url("/images/date.png") repeat scroll 0 0 #FFFFFF;
  position: absolute;
  left: 0;
  top: 35px;
  padding: 0;
  text-align: center;
  height: 50px;
  width: 45px;
}
div.blogpost .postDate span.postmonth {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: normal;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  display: block;
}
div.blogpost .postDate span.postdayofmonth {
  color: darkred;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  width: 45px;
  margin: 0;
  text-transform: uppercase;
  display: block;
}
div.blogpost h2 {
  color: #8a2be2;
  font-size: 1.3em;
  font-weight: 700;
  padding-left: 80px;
  min-height: 50px;
}
div.blogpost div.postDetail {
  margin-left: 65px;
}
div.blogpost div.postDetail.single {
  min-height: 500px;
}
div.blogpost .postImage {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-width: 100%;
  margin: 0 auto;
  max-width: 500px;
}
div.blogpost .postImage img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: contain;
}

div.blogposts:after {
  clear: both;
}

@media (min-width: 576px) {
  div.blogpost .postImage {
    position: relative;
    z-index: 2;
    width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
    min-width: unset;
  }
  div.blogpost .postImage img {
    display: block;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
  }
}
/* Gallery Images */
.thumbnailView {
  margin-top: 20px;
}

.thumbFrame {
  padding-bottom: 15px;
}

.thumbFrame .thumbTitle {
  position: relative;
  border: 0 solid #ccc;
  font-family: Helvetica, sans-serif;
  font-size: 1em;
  width: 200px;
  height: 36px;
  float: left;
  text-align: center;
}

.thumbFrame img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* ImageGallery Settings default */
div.siteHeader {
  font-style: italic;
  color: #696969;
  background-color: whitesmoke;
  margin-top: 20px;
  flex: 0 0 auto;
}

div.siteHeader h2 {
  font-size: 2.5em;
  margin: -10px 10px 13px 10px;
}

@media (min-width: 768px) {
  div.siteHeader {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  div.siteHeader h2 {
    margin: 0 0 0 10px;
  }
}
div.siteHeaderVertical {
  font-style: italic;
  color: #696969;
  background-color: whitesmoke;
  margin-top: 20px;
  flex: 1 0 auto;
}

div.siteHeaderVertical h2 {
  font-size: 2.5em;
  margin: -10px 10px 13px 10px;
}

/* Gallery Splitter*/
ul.splitter {
  text-align: center;
  margin: 10px 0;
  font-size: 1.2em;
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

ul.splitter:after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

ul.splitter {
  margin: -12px auto 12px auto;
  padding: 0;
}

ul.splitter > li a {
  border-bottom: 0;
  position: static;
}

ul.splitter > li, ul.splitter > li a {
  line-height: 0.7em;
  display: inline-block;
}

ul.splitter > li {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #bbbbbb;
  padding: 10px;
  color: #ccc;
  background-color: #f9f9f9;
  list-style: none;
  /* Shadow */
  -webkit-box-shadow: inset 0 0 3px rgba(50, 50, 50, 0.4);
  -moz-box-shadow: inset 0 0 3px rgba(50, 50, 50, 0.4);
  box-shadow: inset -1px 0 5px rgba(50, 50, 50, 0.2);
}

ul.splitter > li:first-child {
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}

ul.splitter > li:last-child {
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}

ul.splitter > li > a {
  color: #333;
  text-decoration: none;
}

ul.splitter .selected a {
  color: #800080;
  text-shadow: rgba(0, 0, 0, 0.25) 0 1px 0;
}

ul.splitter .selected {
  background-color: #f9f9f9;
  /* Shadow */
  -webkit-box-shadow: inset 0 0 12px rgba(50, 50, 50, 0.3);
  -moz-box-shadow: inset 0 0 12px rgba(50, 50, 50, 0.3);
  box-shadow: inset 0 0 12px rgba(50, 50, 50, 0.3);
}

@media (min-width: 768px) {
  ul.splitter {
    text-align: center;
    margin: 10px 0;
    font-size: 1.2em;
  }
}
/*Beauty Bio on the Gallery*/
/* gallery class
---------------------------------------------------------------------- */
.gallery {
  flex: 1 1 auto;
}

/* gallery Grid
---------------------------------------------------------------------- */
.gallery-grid {
  min-height: 900px;
  padding: 0;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.gallery-grid:after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

.gallery-grid li {
  margin: 10px 0;
  text-align: center;
  line-height: 17px;
  color: #686f74;
  overflow: hidden;
}

.gallery-grid li img {
  display: block;
  margin-bottom: 8px;
  margin-right: 7px;
  width: 100%;
}

.gallery-grid li strong {
  display: block;
  color: black;
}

.gallery-grid a {
  text-decoration: none;
}

/* GGF */
h2 {
  color: #666666;
  font-size: 1.3em;
  font-weight: 700;
  min-height: 50px;
}

h3 {
  color: #333399;
}

.home h1 {
  margin: 0 auto 0 auto;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-style: italic;
  font-size: 1.8rem;
  font-variant: normal;
  font-weight: 700;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  top: 15%;
  text-align: center;
  color: #ddddddff;
  z-index: 1000;
}
@media (min-width: 768px) {
  .home h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  .home h1 {
    font-size: 2.8rem;
  }
}
.home .announce {
  font-family: Times, serif;
  font-weight: bolder;
  font-size: 36px;
  padding: 0;
}
.home .theme {
  color: #003300;
  font-family: Times, serif;
  font-weight: bolder;
  font-size: 2rem;
}
.home .location {
  font-size: 1.2rem;
}
.home .artCall {
  color: black;
  border: 1px solid #C60;
  background-color: #F0F0dd;
  font-size: 1em;
  padding: 3px 3px 5px 3px;
}
@media (min-width: 992px) {
  .home .artCall {
    width: 526px;
    padding: 5px 5px 10px 15px;
  }
}

.entertainment .stage {
  font-size: larger;
  margin: 1rem 0;
}
.entertainment .time {
  width: 100px;
  display: inline-block;
  text-align: right !important;
}
.entertainment h2 {
  margin: 30px 0 20px 0;
  font-weight: 100;
  font-size: 1.8em;
  text-align: center;
}

.gridSchedule table {
  border: 0;
}
.gridSchedule td {
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  border-left: 1px solid black;
  min-height: 30px;
}
.gridSchedule .mulcols {
  border-bottom: 0;
}
.gridSchedule .height_hour {
  min-height: 60px;
}
.gridSchedule .col_time {
  width: 110px;
  text-align: right;
}
.gridSchedule .col_pres {
  width: 120px;
  font-weight: bold;
  text-align: right;
}
.gridSchedule .col_kids, .gridSchedule .col_activities {
  width: 172px;
  font-weight: bold;
  text-align: right;
}
.gridSchedule .col_kids_event {
  background-color: yellow;
  text-align: center;
}
.gridSchedule .col_pres_event {
  background-color: #FF9900;
  text-align: center;
}
.gridSchedule .col_activities_event {
  background-color: #9F3;
  text-align: center;
}
.gridSchedule .col_movies_event {
  background-color: #00FFFF;
  text-align: center;
}
.gridSchedule .col_stage {
  width: 200px;
}
.gridSchedule .col_stage_event {
  width: 200px;
  background-color: #FF99CC;
  text-align: center;
}
.gridSchedule .row_header {
  background-color: #fff;
  padding-top: 5px;
}
.gridSchedule .row_header td {
  text-align: center;
  height: 31px;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  size: 18px;
  background-color: white;
  border-top: 1px solid black;
}
.gridSchedule .row_header span {
  color: #660000;
  font-weight: bold;
}
.gridSchedule .blueText {
  color: #0000FF;
}

.participate h2 {
  text-align: center;
}
.participate table.details {
  border-collapse: separate;
  border-spacing: 0 0.7rem;
}
.participate .details .align-text-top {
  font-weight: bold;
}

.textAreaSmall textarea {
  height: 200px;
}
@media (min-width: 768px) {
  .textAreaSmall textarea {
    height: 100px;
  }
}

.textAreaMedium textarea {
  height: 250px;
}
@media (min-width: 768px) {
  .textAreaMedium textarea {
    height: 200px;
  }
}

form .sectionHint {
  color: #999;
  margin: 0 auto 20px auto;
}

.adjustSubmitHeight .form-control[type=file] {
  height: auto;
}

table.tableHeaderNormal th {
  font-weight: normal;
}

.applicationFormSectionHint {
  color: #333399;
  background-color: #EEEEFF;
  padding: 5px 5px 5px 10px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  padding-right: 15px;
}

.header-social-links a {
  color: #6f6f6f;
  padding-left: 6px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  font-size: 16px;
}

.header-social-links a:hover {
  color: #34b7a7;
}

/* Main Splash
************************/
section {
  padding: 60px 0;
}

#homeSplash {
  background: url("/images/home_splash.jpg") repeat scroll center center/cover;
  height: 100vh;
  width: 100%;
}
#homeSplash.lore {
  background: url("/images/lore/home_splash.jpg") repeat scroll center center/cover;
}
#homeSplash .container {
  padding: 20px 0;
  position: relative;
  background: rgba(54, 54, 54, 0.5);
  margin-top: 20vh;
}
#homeSplash h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5);
}
#homeSplash h2 {
  color: #dddddd;
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.5);
  margin: 10px 0 0 0;
  font-size: 22px;
  text-align: center;
}
#homeSplash .btn-about {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #b37400;
}
#homeSplash .btn-about:hover {
  background: #3dc8b7;
}

@media (min-width: 1024px) {
  #homeSplash {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #homeSplash .container {
    padding-top: 58px;
  }

  #homeSplash h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #homeSplash h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
/* Rules
************************/
.threeColumns {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

/* Table of Contents and Columns
*************************/
#download {
  margin: 20px 0 0 0;
  color: #333;
}

#download h1 {
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}

#download h2 {
  margin-top: 20px;
  text-align: left;
  font-size: 1em;
  font-weight: bold;
  text-align: left;
}

/* renegade Document
*************************/
#renDoc {
  font-family: "HoeflerText-Regular", "Hoefler Text", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1em;
  list-style: none;
  color: #333;
}

#renDoc h1 {
  font-size: 2em;
  margin: 0 0 20px 0;
  text-align: center;
  font-style: italic;
  font-weight: bold;
}

#renDoc h2 {
  font-size: 1.75em;
  margin: 20px 0 5px 0;
  font-style: italic;
}

#renDoc h3 {
  font-size: 1.5em;
  margin: 20px 0 5px 0;
}

#renDoc h4 {
  font-size: 1.25em;
  margin: 20px 0 5px 0;
  font-style: italic;
}

#renDoc h5 {
  font-size: 1em;
  margin: 10px 0 0 0;
}

#renDoc h6 {
  font-size: 1em;
  font-weight: normal;
  font-style: italic;
  margin: 10px 0 0 0;
}

/* Table of Contents and Columns
*************************/
#renDoc .toc {
  margin: 40px -10px 0 -10px;
  color: #333;
}

#renDoc .toc h2:first-child {
  margin-top: 0;
  text-align: left;
}

#renDoc .toc h2 {
  font-size: 1em;
  font-weight: bold;
  margin: 0.5em 0 0.1em 0;
  text-align: left;
}

#renDoc .toc h3 {
  font-size: 0.9em;
  font-weight: 100;
  margin: 0.1em 0 0 0.9em;
  text-align: left;
}

#renDoc .toc h4 {
  font-size: 0.9em;
  font-weight: 100;
  margin: 0.1em 0 0 1.8em;
  font-style: italic;
  text-align: left;
}

#renDoc .toc .column {
  width: 210px;
}

#docTitle {
  font-size: 1em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  text-align: center;
}

#docTitle p {
  margin: 0;
  padding: 0;
}

#docTitle p:first-child {
  font-size: 1.2em;
  font-style: italic;
}

#renDoc a {
  outline: none;
}

#renDoc a img {
  border: none;
}

#renDoc a:hover, #renDoc a:active, #renDoc th a:hover, #renDoc th a:active {
  color: #000066;
  text-decoration: none;
  background-repeat: repeat-x;
  background-position: left center;
}

#renDoc a:link, a:visited {
  color: #000066;
  text-decoration: none;
}

#renDoc .dieRollTest {
  display: block;
  width: 80%;
  text-align: center;
  margin: 5px auto 10px;
  font-style: italic;
}

#renDoc ul.keyedList {
  margin-left: 15px;
  margin-top: 0;
  list-style: none;
}

#renDoc ul.keyedList li span {
  font-weight: bold;
}

#renDoc ul.noMargin {
  margin-left: 0;
  padding-left: 0;
}

#renDoc ul.noMargin li {
  margin-bottom: 8px;
  margin-left: 0;
  padding-left: 0;
}

#renDoc ul.noMargin {
  margin-left: 0;
  padding-left: 0;
}

#renDoc ul.padBottom li {
  margin-bottom: 8px;
}

#renDoc .docNav {
  margin: 5px 0 5px 0;
  position: absolute;
  width: 100%;
}

#renDoc .docNav div {
  display: inline;
}

#renDoc .docNav div:first-child {
  float: left;
}

#renDoc .docNav div:last-child {
  float: right;
}

#renDoc .column {
  float: left;
  clear: right;
  margin-right: 7px;
}

#renDoc .column .twoColumn {
  width: 470px;
  margin-right: 10px;
}

#renDoc .column .final {
  margin-right: 0;
}

#renDoc .column a:hover, #renDoc .column a:active {
  color: #AA0000;
}

#renDoc .column hr {
  width: 100px;
  margin: 5px 0 5px 30px;
  border-color: #806959;
  border-width: 1px;
  border-style: solid none;
}

#renDoc .column li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#renDoc .wideTable {
  width: 100%;
  text-align: left;
}

#renDoc thead {
  background-color: #e6eeee;
  font-weight: bolder;
}

#renDoc .tableData {
  text-align: center;
  padding: 10px 0 20px 0;
}

#renDoc .tableData > span {
  font-style: italic;
  margin: 5px 0 5px 0;
}

#renDoc .tableData > h3 {
  margin: 20px 0 20px 0;
  font-size: 1.2em;
}

#renDoc .tableData > h2 {
  margin: 20px 0 20px 0;
  font-size: 1.3em;
}

/* Pantheon
*************************/
#renDoc .pantheonTable, .pantheonTable th, .pantheonTable td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
}

#renDoc .pantheonTable {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

#renDoc .pantheonTable td {
  padding: 0.2em 0.5em;
}

#renDoc tbody .deityIndent0 {
  border: 0;
}

#renDoc tbody .deityIndent0 td {
  paddding: 1em 0 0 0;
  color: red;
}

#renDoc tbody .deityIndent1 {
  border: 0;
}

#renDoc tbody .deityIndent1 td {
  paddding-top: 15px;
}

#renDoc tbody .deityIndent1 td:first-of-type {
  padding-left: 2em;
}

#renDoc tbody .deityIndent2 {
  border: 0;
}

#renDoc tbody .deityIndent2 td:first-of-type {
  padding-left: 3em;
}

#renDoc .deity {
  padding-top: 2em;
}

#renDoc .deity .deityTitle {
  padding-left: 0;
  font-weight: bold;
  color: #333399;
}

#renDoc .deityPortfolio div.deityHeader {
  padding-left: 1.5em;
}

#renDoc .deityHeader div {
  display: inline-block;
}

#renDoc .deityHeader div:first-of-type {
  font-weight: bolder;
  width: 150px;
}

#renDoc .ward {
  padding: 1em 0 0 0.5em;
}

#renDoc .deity .wardTitle {
  display: inline-block;
  font-weight: bold;
  color: #333399;
}

#renDoc .ward div.deityHeader {
  padding-left: 1.5em;
}

/* Page Navigation
*************************/
#renDoc .newPage {
  margin: 0;
  padding: 0;
  height: 60px;
  width: 100%;
  display: block;
}
