@charset "utf-8";
/* CSS Document */

html { height:100%; }
body { margin:0; padding:0; text-align:center; height:100%; background-color:#FFFFFF; font-family:Arial, Helvetica, sans-serif; font-size:12pt; }

.container {
  max-width: 1050px;
  width: 90%;
  margin: auto;
}
.containerFlex {
	display: flex;
	width:100%;
}
.navbar {
  display: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
    font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
  z-index: 20;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 24px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: lightgray;
  padding: 3px;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 20px;
  background-color: white;
  /* height: 58vh; */
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  z-index: 20;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: sticky;
  top: 5px;
  right: 15px;
  font-size: 1.2rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: translateX(16px); 
  transform: rotate(45deg);
  width:132%;
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: translateX(6px); 
  transform: rotate(-45deg);
  width:132%;
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}



.background {
    height: 200%;
    left: -50%;
    position: fixed;
    top: -50%;
    width: 200%;
	z-index:0;
	text-align:center;
}
.background img {
    bottom: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.titlebar {
	width:472px;
	height:67px;
	background:url(images/title-home.png) no-repeat top center;
	margin:0 auto;
}
.titleimg {
	max-width:90%;
}

.inner .titlebar {
	width:356px;
	height:52px;
	background:url(images/title-inner.png) no-repeat top center;
	margin:0 auto;
}

.navigation {  
	display:inline-block;
	padding-top:25px;
	width:1080px;
	margin: auto;
	height:125px;
	z-index:10;
}
.inner .navigation { padding-top:15px; }

.navigation a {
	background:url("images/star.png") no-repeat top center;
	display:block;
	float:left;
	margin:0 -8px;
	zoom:1;
	/*opacity:0.7;
	filter:alpha(opacity=70); /* For IE8 and earlier */
	height:55px;
}

.navigation a img { display:none; padding-top:10px; }

.navigation a:hover {
	zoom:1;
	/*opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
	background:url("images/star-over.png") no-repeat top center;
}

.navigation .star2 { width: 128px; height: 50px;padding-right:10px;/*margin-top:5px;*/ }
.navigation .star3 { width: 128px; height: 50px;padding-right:10px;/*margin-top:15px;*/ }
.navigation .star4 { width: 128px; height: 50px;padding-right:10px;/*margin:32px -5px 0;*/ }
.navigation .star5 { width: 128px; height: 50px;padding-right:10px;/*margin:60px -3px 0; */}


.photodiv { 
	height:275px;
	display:block;
	background:url(images/JHandler.jpg) no-repeat top center;
	background-size: contain;
	margin:0 auto;
}

.seal { 
	height:140px;
	width:140px;
	display:block;
	background:url("/images/seal.png") no-repeat top center;
	margin:0 auto;
}

#sealhighlight {
    display:block;
    height:140px;
	width:140px;
    border-radius:140px;
	background: url(images/littleshine-gold.png) no-repeat -400px -200px, 0 0;
	-moz-background-size:250% 250%, 100% 100%;
         background-size:250% 250%, 100% 100%;
}
#sealhighlight.sealsheen {
    background-position:400px 400px, 0 0!important;
	-webkit-transition-duration:15.0s;
       -moz-transition-duration:15.0s;
            transition-duration:15.0s;
}

.inner .background img {
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}
#slideshow IMG {
    z-index:8;
}

#slideshow IMG.active {
    z-index:10;
}

#slideshow IMG.last-active {
    z-index:9;
}

.clear { clear:both;}
.webmasteremail { float:left; font-size:12px; margin-left:10px; color:#ffffff; }
.webmasteremail a { color:#ffffff; }
.ewd { float:right; color:#acacac; font-size:11px; margin-right:10px; }
.ewd a { color:#acacac; text-decoration:none; }
.disclaimer { color:#ffffff; padding-bottom:10px; width:100%; float:left; margin-left:10px; font-size:12px; }
.address {float:right; text-align:right; margin-right:10px; color:#ffffff; }

.content {
	display:block;
	position:relative;
	z-index:2;
	min-height:100%;
	width:100%;
	background:url(images/bg_fade.png) repeat-y top center;
	margin:0;
	padding:0;
}
.homenotice {
	display:block;
	width:90%;
	margin:0 auto;
	text-align:center;
	color:#ffffff;
	font-size:14px;
	font-family:Georgia, "Times New Roman", Times, serif;
	padding-top:20px;
	padding-bottom:150px;
}
.homenotice p { margin:0; padding:0; }

.contentwrapper { display:block;
	position:relative;
	width:100%;
	max-width: calc(100% - 0); 
	text-align:center;
	margin:0; padding:0;
	z-index:1;
}
.contenttop { background:url(images/content_top.png) no-repeat bottom center; width:100%; display:block; position:relative; margin:0; padding:0}
.contentbottom { background:url(images/content_bottom.png) no-repeat top center; width:100%; height:180px; position:relative; margin:0; padding:0; }
.inner .contentbottom { height:150px; }
.content img { position: relative;
    z-index: 10;
}
.inner .contentwrapper { background:url(images/content_bg.png) repeat-y top center; margin:0!important; }
.nobg .contentwrapper, .nobg .contenttop, .nobg .contentbottom { background:none; }

.contentcontainer { width:970px; margin:0 auto 0 auto; text-align:left; max-width: calc(100% - 20px); }
.inner .contentcontainer { width:700px; max-width: calc(100% - 20px); }

.footer {
	height:80px;
	width:100%;
	display:block;
	position:absolute;
   	bottom:0;
	z-index:2;
	text-align:left;
	font-weight:bold;
	font-size:13px;
	margin:0; padding:0;
}
.inner .footer { top:70px; }
.footercontainer { max-width:70%; margin:0 auto; }
.footer img { padding-top:10px; }

.contentcontainer p { margin:0; padding:16px 0; }

h1, h2, h3, h4, h5, h6 { margin:0; padding:15px 0; position:relative; }
h1 { line-height:24px; font-size:24px; display:block; padding:10px 0; }
.firsth1 { padding-top:0!important; }
ul, li { margin:0; position:relative; }

/******************** divs to replace old tables - 20220601 NSM ****************************/
.divTable{
	display: table;
	width: 100%;
}
.divTableMulti{
	display: table;
	width: auto;
	max-width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTableRowNoBotPad {
	display: table-row;
	padding-bottom:0;
	border-bottom: 0px;
}
.divTableRowNoTopPad {
	display: table-row;
	padding-top:0;
	border-top: 0px;
}
.divTableCell, .divTableHead {
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px;
}
.divTableCellCentered {
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px;
	text-align: center;
}

/******************** special items for OA calendar - 20220613 NSM ****************************/
.divOATableCaption {
	display: table-caption;
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 25px 25px 0 0;
	background-color: lightblue;
	padding: 3px 10px;
}
.divOATableHeader {
	display: table-caption;
	background-color: gainsboro;
	font-weight: bold;
	padding: 3px 10px;
	font-size: 1rem;
}
.divOATableHeaderCells {
	display: table-cell;
	background-color: #FFF;
	font-weight: bold;
	padding: 3px 10px;
	font-size: 0.75rem;
	border-bottom: 1px solid black;
}
.divCaseInfoTableHeaderCells {
	display: table-cell;
	background-color: #FFFBCF;
	font-weight: bold;
	padding: 3px 10px;
	font-size: 0.75rem;
	border-bottom: 1px solid black;
}
.divOATableBody {
	display: table-row-group;
}
.divOATableRow {
	display: table-row;
}
.divOATableCell {
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px;
	border-bottom: 1px solid black;
	font-size: 0.85rem;
}
.divOATableFooter {
	display: table-footer-group;
	background-color: #FFF;
}
.divOATableFooterFullCell {
	display:table-cell;
	background-color: #FFF;
	font-size: 0.85rem;
	padding: 3px 10px;
	text-align: justify;
	border-radius: 0 0 25px 25px;
	width: 1280px;
}
.divOATableFooterLeftCell {
	display: table-cell;
	padding: 0;
	border-radius: 0 0 0 25px;
}
.divOATableFooterCenterCell {
	display: table-cell;
	padding: 0;
}
.divOATableFooterRightCell {
	display: table-cell;
	padding: 0;
	border-radius: 0 0 25px 0;
}
.divOAWatchVideoCell {
	display: inline-flex;
	position: inherit;
	top: 5px; 
	height:25px;
	background-color: darkgreen;
	font-size: 0.75em;
	text-align: center;
	padding: 5px;
	vertical-align: middle; 
	width:50px;
	border-radius: 15px 15px 15px 15px;
	z-index: 2;
}
.divOAWatchVideoCell a:link, .divOAListenAudioCell a:link, .divOAListenAudioCell1 a:link, .divOAListenAudioCell2 a:link {
	text-decoration: none;
}
.divOAListenAudioCell {
	display: inline-flex;
	position: relative;
	top: 0;
	height:25px;
	left: 40px;
	background-color: darkgoldenrod;
	font-size: 0.75em;
	text-align: center;
	padding: 5px;
	vertical-align: middle; 
	width:50px;
	border-radius: 15px 15px 15px 15px;
	z-index: 2;
}
.divOAListenAudioCell1 {
	display: inline-flex;
	position: relative;
	top: 0;
	height:25px;
	left: 80px;
	background-color: darkgoldenrod;
	font-size: 0.75em;
	text-align: center;
	padding: 5px;
	vertical-align: middle; 
	width:50px;
	border-radius: 15px 15px 15px 15px;
	z-index: 2;
}
.divOAListenAudioCell2 {
	display: inline-flex;
	position: relative;
	top: 0;
	height:25px;
	left: 40px;
	background-color: darkgoldenrod;
	font-size: 0.75em;
	text-align: center;
	padding: 5px;
	vertical-align: middle; 
	width:50px;
	border-radius: 15px 15px 15px 15px;
	z-index: 2;
}


/******************** special items for victim form - 20220614 NSM ****************************/

/* Floating column for labels: 25% width */
.VRFcol-lbl{
  	float: left;
  	background-color: white;
	vertical-align: middle;
  	width: 35%;
  	margin: 6px 0 0 6px;
}

/* Floating column for inputs: 75% width */
.VRFcol-fld {
  	float: left;
	background-color: white;
	vertical-align: middle;
  	width: 55%;
  	margin: 6px 0 0 0;
}

.VRFcol-fld input[type=text], select, textarea{
	width: 100%;
	padding: 6px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	resize: vertical;
}

.VRFrow {
	background-color: white;
}

/* Clear floats after the columns */
.VRFrow:after {
  	content: "";
  	display: table;
  	clear: both;
}

label {
  	padding: 12px 12px 12px 0;
  	display: inline-block;
}





.divTableCellTopRadius {
	border-radius: 25px 25px 0 0;
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px;
}
.divTableCellAllRadius {
	border-radius: 25px 25px 25px 25px;
	background-color: #FFF;
	display: table-cell;
	padding: 10px 10px;
}
.divTableCell2ColL {
	display: table-cell;
	padding: 20px;
	max-width: 35%;
	float: left;
	background-color:white
}
.divTableCell2ColR {
	display: table-cell;
	padding: 20px;
	max-width: 35%;
	float: right;
	background-color:white
}
.divTableCell3Col {
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px;
	column-count:3;
	-moz-column-gap: 50px;
	column-gap: 50px;

}

.divTableCellMultiCol {
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px;
	-moz-column-gap: 50px;
	column-gap: 50px;
	justify-self:center;
	max-width:21.6%;

}
.divTableCell3SubHeader {
	background-color: #FFF;
	display: table-cell;
	padding: 3px 10px 0 0;
	column-count:3;
	-moz-column-gap: 50px;
	column-gap: 50px;
}
.divTableCellWidthAdjusted {
	display: table-cell;
	width: 1280px;
	max-width: calc(100% - 20px);
	border-radius: 0 0 25px 25px;
	background-color: #FFF;
	padding: 3px 10px;
}
.divTable2ndColumnCell {
	display: inline-block;
	width: 250px;
	max-width: calc(100% - 20px);
	background-color: #FFF;
	padding: 3px 10px;
}
.divTableHeading {
	border-radius: 25px 25px 0 0;
	background: #021f58;
	padding: 10px;
	font-weight: bold;
    color: White;
    font-family: Arial,Geneva,Helvetica,sans-serif;
	text-align:center;
	vertical-align:middle;	
}

.divTableSubHeading {
	background-clip: border-box;
	background: #021f58;
	padding-top: -10%;
	font-weight: bold;
	color: White;
	font-family: Arial,Geneva,Helvetica,sans-serif;
	text-align:center;
	vertical-align:middle;
}
.divTableHeadingNoRadius {
	background: #021f58;
	padding: 10px;
	font-weight: bold;
    color: White;
    font-family: Arial,Geneva,Helvetica,sans-serif;
	text-align:center;
	vertical-align:middle;	
}
.divTableCellHeader {
	padding: 10px;
	font-weight: bold;
    color: #000;
    font-family: Arial,Geneva,Helvetica,sans-serif;
	text-align:center;
	vertical-align:middle;
	background-image: -o-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
	background-image: -moz-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
	background-image: -webkit-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
	background-image: -ms-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.20, #af6b39),color-stop(0.50, #e4cebe),color-stop(0.90, #af6b39));
	background-image: linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
/*font-weight:bold;
color:#0E0E39;*/
background-color:#b67d54;
}

.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}
.divFloatingLabel {
	background-color:azure;
	display:inline-block;
}
.divWarningLabel {
	background-color:#FFC0CB;
	display:inline-block;
}


/********************table styles****************************/
/*table {background-color:#FFFFFF; }*/
TR {
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
}
TR.even {
    background-color: #FFFFFF;
    color: black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    text-align: left;
    vertical-align: top;
}
TR.odd {
    background-color: #FFFFCC;
    color: black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    text-align: left;
    vertical-align: top;
}
TH {
    background-color: White;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    text-align: center;
}

TH.dataH { 
background-image: -o-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
background-image: -moz-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
background-image: -webkit-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
background-image: -ms-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);

background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0.20, #af6b39),
	color-stop(0.50, #e4cebe),
	color-stop(0.90, #af6b39)
);
background-image: linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
font-weight:bold;
color:#0E0E39;
background-color:#b67d54;
}
TH.infoH {
    background-color: White;
    color: #800000;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
TH.header1 {
    background-color: #021F58;
    color: White;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 14pt;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
TH.headerf {
    background-color: #003333;
    color: White;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}
TH.headerC, TH.headerc {
    background-color: #021f58;
    color: White;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}
TH.headerr {
    background-color: #800000;
    color: White;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
TH.subheaderl {
    background-color: #CCCCCC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}
TH.subheaderc {
    background-color: #CCCCCC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}
TH.subheaderr {
    background-color: #CCCCCC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: right;
    vertical-align: middle;
}
TH.menubarl {
    background-color: #CCCC99;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}
TH.menubarc {
    background-color: #CCCC99;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}
TH.menubarr {
    background-color: #CCCC99;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: right;
    vertical-align: middle;
}
TD {
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}
.oacalendar TD { font-size:16px; }
TD.background {
    background-color: Black;
    text-align: center;
    vertical-align: top;
}
TD.menubarl {
    background-color: #CCCC99;
    color: white;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
}
TD.menubarc {
    background-color: #CCCC99;
    color: white;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
}
TD.menubarr {
    background-color: #CCCC99;
    color: white;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align: right;
    vertical-align: middle;
}
TD.crumb {
    background-color: #EEEECC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}
TD.theaderl {
    background-color: #EEEECC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 8pt;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
TD.datal {
    background-color: #e2dad7;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}
TD.dataeven {
    background-color: #FFFFFF;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}
TD.dataodd {
    background-color: #FFFFCC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}
TD.datac {
    background-color: #EEEECC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: center;
    vertical-align: top;
}
TD.datar {
    background-color: #EEEECC;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 10pt;
    font-weight: normal;
    text-align: right;
    vertical-align: top;
}
TD.whitel {
    background-color: White;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}
TD.whitec {
    background-color: White;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    text-align: center;
    vertical-align: top;
}
TD.whiter {
    background-color: White;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    text-align: right;
    vertical-align: top;
}
TD.content {
    background-color: White;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    margin: 5px;
    padding: 5px;
    text-align: left;
    vertical-align: top;
}
TD.contentc {
    background-color: White;
    color: Black;
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    margin: 5px;
    padding: 5px;
    text-align: center;
    vertical-align: top;
}
TD.header1 {background-color: #E2DAD7;}
INPUT {
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
}
SELECT {
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
}
FORM {
    font-family: Arial,Geneva,Helvetica,sans-serif;
    font-size: 12pt;
    font-weight: normal;
    padding-bottom: 1pt;
    padding-top: 1pt;
}

table {
    *border-collapse: collapse; /* IE7 and lower */
    border-spacing: 1px; 
}

th.thcurves {
    -moz-border-radius: 40px 40px 0 0;
    -webkit-border-radius: 40px 40px 0 0;
    border-radius: 40px 40px 0 0;
}

th.headerCtop { height:65px; }

#navbar { margin: 0; padding: 0; }

#navbar li {

list-style:none;
padding:10px 5px 10px 10px;
margin-bottom:1px;

background-image: -o-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
background-image: -moz-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
background-image: -webkit-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
background-image: -ms-linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);

background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0.20, #af6b39),
	color-stop(0.50, #e4cebe),
	color-stop(0.90, #af6b39)
);
background-image: linear-gradient(bottom, #af6b39 20%, #e4cebe 50%, #af6b39 90%);
font-weight:bold;
color:#0E0E39;
}

#navbar li a { color:#0E0E39; text-decoration:none; font-size:14px; }
#navbar li a:hover { text-decoration:underline!important; }



@media only screen and (max-width:1280px) {
	.navigation {
		display: none;
	}
	.navbar {
		display: inline;
		width: 100%;
  		box-shadow: 0 1px 4px rgb(146 161 176 / 100%);
		visibility: visible;
		z-index: 20;
	}
	.titlebar {
		object-fit: scale-down;
		max-width: 100%;
	}
	.footercontainer {
		max-width: 100%;
	}
	.VRFrow {
		max-width: calc(100% - 12px);
	}
	.VRFcol-lbl, .VRFcol-fld {
    	width: 100%;
    	margin-top: 0;
		margin-left: 12px;
  	}
	.VRFcol-fld input[type=text], select, textarea{
		width: 95%;
	}
	
}

@media print {
    body{
        background-image: none;
    }
	.inner .background img {
        visibility: hidden; 
    } 
	#slideshow IMG.active {
		visibility: hidden; 
	}
	.navigation {
        visibility: hidden; 
    } 
}

/* FAQ stuff */
/*  NEW  */

.answer {
	max-width: 960px;
	display: block;
	border: 1px solid #fff;
	padding-left: 5px;
	padding-right: 5px;
	margin: 0 auto;
	background-color: #e2dad7;
	font-family: Arial,Geneva,Helvetica,sans-serif;
	font-size: 16px;
	font-weight: normal;
	text-indent: 20px;
	text-align: justify;
	letter-spacing: .5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: none;
}


.faqwrapper{
	max-width: 960px;
	margin:0 auto;
	text-align: center;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 7; /*added 2-20-2020*/
}


.question {
	max-width: 960px;
	border: 2px solid #fff;
	padding: 10px 5px 10px 10px;
	margin: 0 auto;
	background-color: #b67d54;

	background: -moz-linear-gradient(to bottom, #af6b39 10%, #e4cebe 50%, #af6b39 90%); /* FF 3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #af6b39), color-stop(50% #e4cebe), color-stop(90%, #af6b39)); /* Safari 4+, Chrome 2+ */
	background: -webkit-linear-gradient(bottom, #af6b39 10%, #e4cebe 50%, #af6b39 90%); /* Safari 5.1+, Chrome 10+ */
	background: -o-linear-gradient(bottom, #af6b39 10%, #e4cebe 50%, #af6b39 90%); /* Opera 11.10 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#af6b39', endColorstr='#e4cebe');  /* IE6 & IE7 */
	/*-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#af6b39', endColorstr='#e4cebe')"; */ /* IE8+ */ /*if left in incorrect display w/IE11 */
	background-image: linear-gradient(to bottom, #af6b39 10%, #e4cebe 50%, #af6b39 90%);
	cursor: pointer;
	font-family: Arial,Geneva,Helvetica,sans-serif;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color:#0E0E39;
}

p#faqheader {
	max-width: 960px;
	display: block;
	text-align:center;
	background-color:#e2dad7;
	color:#021f58;
	font-family: Arial,Geneva,Helvetica,sans-serif;
	font-size: 16px;
	border-style:solid;
	border-color:white;
	border-width: 1px 2px 1px 2px; /* 1px top, 2px right, 1px bottom, 2 px left */
	text-align: justify;
	margin: 0 auto;
	padding: 2px 5px 2px 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}


/*   END NEW    */