:root {
  --bs-body-font-size: 1.1rem; 
}a

form .input {
    margin-bottom: 10px;
    margin-right: 10px;
}

.lined .row {
    border-bottom: 1px dashed #ccc;
    padding: 10px 0px;
}

.checkbox label {
    font-weight: normal;
}
.checkbox input[type=checkbox] {
    margin-right: 10px;
}

.container {
    max-width: 170rem;
}

.is_hidden, .hidden {display:none;}


.mytabs {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mytabs .tab-body {
    overflow: auto;
    flex: 1;
}

#flash_div {
    max-width: 950px;
    text-align: center;    
}

#flash_div .error{
    margin: 20px auto 10px auto;
	padding: 10px 20px;
    color: rgb(188, 72, 72);
    border: 1px solid red;    
}

#flash_div .success{
    margin: 20px auto 10px auto;
	padding: 10px 20px;
    color: #356dc0;
    border: 1px solid #356dc0;    
}

#tab-body {
    overflow: hidden;
    margin-left: 50px;
    padding: 30px;
}
#opscreen_calltypes, #opscreen_company {
    overflow: auto;
    height: 100%;
}

.mytabs .tabs{
    padding: 35px 16px 0px 16px;
    background: #fff;
    border-bottom: 1px solid #eee !important;
    display: flex;
    margin-left: 50px;
}


.mytabs.ui-tabs .ui-tabs-nav li {
    margin-bottom: -1px;
    padding-bottom: 1px;
}


.mytabs a.tab {
    background: #eee;
    margin-right: 10px;
    position: relative;
    padding: 5px 10px;
    color: #777;
    min-width: 100px;
    text-decoration: none;
    border: 1px solid #ccc;
    text-align: center;
}

.mytabs a.tab::after {
    content: "";
    position: absolute;
    bottom: -2.5px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: transparent;
    transition: background-color 0.3s;
}

.mytabs .tab.active::after,
.mytabs a.tab:hover::after {
    background-color: #1f2e84;
}

.mytabs a.tab.active, 
.mytabs a.tab:hover {
    color: #222;
}


#menu{
  width: 100%;
  margin: 0px;
  padding: 10px 0 0 50px;
  list-style: none;
  background: #fff;
 position: fixed;
  top: 0;
  left: 0;
  z-index: 7000;       
  border-bottom: 1px solid #eee; 
}

#menu li{
        float: left;
        padding: 0 0 10px 0;
        position: relative;
}

#menu a{
        float: left;
        height: 25px;
        padding: 0 15px;
        color: #555;
        text-transform: uppercase;
        text-decoration: none;
}

#menu li ul li a {
    color: #fefefe;
}

#menu li:hover > a{
        color: #222;
}

*html #menu li a:hover{ /* IE6 */
        color: #222;
}

#menu li:hover > ul{
        display: block;

}

a.disabled, a.disabled .fa {
    color: #ccc;
    cursor: none;
}
/* Sub-menu */

#menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 99999;
    background: #777;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#menu ul li{
    float: none;
    margin: 0;
    padding: 0;
    display: block;
    color: #fefefe;
}


#menu ul li:last-child{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#menu ul a, #menu ul span{
    padding: 10px 20px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
    border-bottom: 1px dashed #aaa;
}

#menu ul span {
	color: #777;
}

*html #menu ul a{ /* IE6 */
        height: 10px;
        width: 150px;
}

*:first-child+html #menu ul a{ /* IE7 */
        height: 10px;
        width: 150px;
}

#menu ul a:hover{
        background: #0186ba;

}

#menu ul li:first-child a{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#menu ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #444;
}

#menu ul li:first-child a:hover:after{
    border-bottom-color: #04acec;
}

#menu ul li:last-child a{
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

/* Clear floated elements */
#menu:after{
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */
/* drop down menu end */

#main {
    margin-top: 80px;
}

.filter {
  display: flex; /* Activates flexbox layout for children */
  flex-wrap: wrap; /* Allows columns to wrap to new lines if the screen is too small */
  justify-content: space-around; /* Optional: distributes space evenly */
}
.filter input, .filter select {
    padding: 10px;
}
.filter .col {
  flex: 1 0 25%; /* Shorthand: flex-grow, flex-shrink, flex-basis */
  /* flex-grow: 1 (allows columns to grow to fill space) */
  /* flex-shrink: 0 (prevents columns from shrinking below their basis) */
  /* flex-basis: 25% (sets initial width to 25% of the container) */
  padding: 15px; /* Optional: adds space inside the columns */
  /* Add background-color or border for visibility */
}

#filters input:not([type="submit"]), #filters select {
    padding: 8px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333; /* match your nav color */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}
@media (max-width: 1000px) {
	#dr_msg #sr_logo {display:none}
}


/* Mobile styles */
@media (max-width: 768px) {
	#dr_msg {display:none}
	#main {
		margin-top: 30px;
	}
    .hamburger {
        display: flex;
        margin: 20px 0px 0px 10px;
    }

    #menu {
        display: none;
        flex-direction: column;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #menu.open {
        display: flex;
    }

    #menu li {
        width: 100%;
        padding: 0px;
        margin: 0px;
    }

    #menu li a {
        display: block;
        padding: 3px 16px !important;
    }

    /* Dropdowns: always visible when parent is shown on mobile */
    #menu li ul {
        position: static;
        display: none;
        padding-left: 16px;
        list-style: none;
    }

    #menu li.submenu-open > ul {
        display: block;
    }
    
	.mytabs .tabs{
	    padding: 15px 16px 0px 10px;
	    background: #fff;
	    border-bottom: 1px solid #eee !important;
	    display: flex;
	    margin-left: 0px;
	}
    #tab-body {
    	margin-left: 0px;
    }
}

@media (max-width: 768px) {
    /* Override the desktop hover-to-open behavior */
    #menu li:hover > ul {
        display: none;
    }

    /* Only open submenus when JS adds the class */
    #menu li.submenu-open > ul {
        display: block;
        position: static;       /* remove absolute positioning */
        background: #555;       /* slightly different shade to show nesting */
        border-radius: 0;
        box-shadow: none;
    }

    /* Remove the arrow triangle on mobile - it's positioned for desktop */
    #menu ul li:first-child a:after {
        display: none;
    }

    /* Fix floats so items stack vertically */
    #menu li {
        float: none;
    }

    #menu a {
        float: none;
        height: auto;
        padding: 6px 16px;
    }

    #menu ul a, #menu ul span {
        padding: 10px 16px 10px 28px; /* indent submenu items */
    }
    
	.paginator a, .pagination a {
	    color: var(--color-cakephp-blue);
	    display: inline-block;
	    min-width: 3rem;
	    padding: 0;
	    position: relative;
	    text-decoration: none;
	    transition: background .3s,color .3s;
	}    
}


body {
	line-height: 170%;
	margin: 0px;
	color: #333 !important;
	height: 101%;
	padding:0px;
	font-family: Verdana, Tahoma;	

	-webkit-font-smoothing: antialiased;
/*  background: url(/img/theme1/stripe2.png) top center repeat;*/
}
select {
	appearance: auto !important;
}
a, a:visited {
	text-decoration: none;
}

a: hover {
	color: #3366BB ;
	text-decoration: underline;
}

hr {
	border: 0;
	width: 95%;
	color: #ddd;
	background-color: #ddd;
	height: 2px
}
.error-message {display:inline; font-style:italic; color: #ff0000; margin-left:10px;}
.legacy {background: #eeeecc; padding:0px 5px;}

#filters {
	padding: 10px;
	margin-bottom: 20px;
}

/*#filters div {display:inline-block; margin-bottom: 5px;}*/
.fdiv {margin-right: 20px;}
.form_auto label {
	font-weight: bold;
	display: block;
	width: 240px;
	float: left;
	text-align:right;
	margin-right:10px;
}

.form_note label {
	font-weight: bold;
	clear:both;
	display: block;
	width: 150px;
	float: left;
	text-align:right;
	margin-right:10px;
}
input[type="checkbox"]:disabled {
  accent-color: red; /* Sets the checked fill color for disabled state */
  opacity: 0.6;       /* Makes it look "faded" */
}

.form_auto .ui-widget-content, .users .ui-widget-content {border:0px; color : #555; font-size: 0.9em;}

.form_auto, .form_note label:after { content: ": " }

.form_auto div.input {border-bottom: 1px dashed #ccc; margin-bottom:5px; padding-bottom:5px;clear:both;
}

.form_auto input, .form_auto select {
	width: unset;
}

.ui-datepicker  table {font-size: .8em}
.ui-datepicker select.ui-datepicker-year, .ui-datepicker select.ui-datepicker-month {font-size: 0.8em;}

.form_auto .submit {
	text-align:right; 
	position:fixed;
	bottom: 0;
	left: 0;
	z-index: 9999;   
	width: 100%; 		
	background: #efefef;	

}



.alert {color: #cc3333}

table *, input {
	color: #585858;
}

#dialog-modal {
	font-size:12px;
}

.ui-dialog-title {
	font-size: 1.1em;
}

html {
	height:101%; 
	padding:0px; 
	font-size: .9rem;
}

#logo {
	padding:0px;
}

#formtitle{ 
/*	background: url(/img/theme1/nav-bkgd.jpg) repeat-x;*/
	padding: 10px 0px;
}
.logindiv {
	width: 100%; text-align:right; padding-right:20px;  text-align: right; color: #aaa;
}
.logindiv a {
	color: #aaa;
}

.logindiv a:hover {
	color: ##3366BB
}
.qnumber {font-weight:normal; color: #b80000; font-size: 0.9em;}

.f_question label {
	display: inline;
}
.f_question span {
	font-weight: bold;	
}
.question_group {
	/*border: 1px solid #ccc;*/
	padding:20px 40px;
}
/*form .input input[type=text] {display:inline; padding: 2px 4px;color: #555;}*/
form .input input[type=text], form .f_question input[type=text] , form .input input[type=password], input[type=email], input[type=tel], input[type=date], input[type=time], input[type=datetime], form .input select, .f_question select, form .input textarea { 
   border:1px solid #bbb; 
   -webkit-border-radius:1px; 
   -moz-border-radius:1px; 
   border-radius: 5px; 
   padding: 8px;
   background: #f8f8f8;
} 
.formpage {
	padding: 40px;
	border-bottom: 5px solid #888;
	margin: 20px 0px;
}
.inputtbl input[type=text], .inputtbl  input[type=password], .inputtbl select { 
   border:1px solid #bbb; 
   -webkit-border-radius:1px; 
   -moz-border-radius:1px; 
   border-radius:1px; 
   background: #f8f8f8;
   line-height:22px; 
} 

input:focus { outline:none; } 
.inline .time {display:inline;}
#header {border-bottom:1px dotted #ccc; width: 100%; margin-top:60px}
#content .formbody {margin-top:0px; padding:0px 20px;}
#content, .content {
	width: 100%;
	max-width: 1400px;
	line-height:170%;
    margin: 0px auto;
    padding:20px 40px 100px 40px;
}

#content .formbody {
	max-width: 1400px;
	margin: 10px auto;
}
#contentWide {
    width: 100%;
    background: #fefefe;
}

#maintext h1 {
    font-size: 1.6rem;
    margin: 15px 0px 30px 0px;
}


#charts h2 {
    font-size: 1.5em;
}

textarea {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #bbb;
}
.content h1, {
    font-family: 'Lato',  Verdana, Tahoma !important;
    font-size: 2.0rem;
    font-weight: normal;
    margin-top: 20px;
	margin-bottom: 15px;
	padding: 20px 0px;
    color: #444;
    line-height:130%;
}

.content h2 {
    font-family: 'Lato',  Verdana, Tahoma;
    font-size: 1.8rem;
    font-weight: normal;
    margin-top:0px;

	padding: 0px 0px 20px 0px;
    color: #444;
}

h3 {
    font-family: 'Lato',  Verdana, Tahoma;
	font-size: 1.2em; 
    color: #444;
}

.content #formbody h2 {margin-top:40px; font-size: 1.5em;}
.content #formbody h4 {
	font-family: 'Lato',  Verdana, Tahoma;
	font-size: 1.4em; font-weight: bold;
	color: #444;
}


#maintext {margin:0px; padding-top: 0px; height: 95%;}
#formtitle h1 {
    font-family: 'Lato',  Tahoma,Times;
    font-size: 1.3em;
	text-transform: uppercase;
    font-weight: normal;
	margin: 10px 0px;
	padding: 0px;
	color: #999;
}	
th {font-weight:bold;}
.f_question h3 {margin:0px;}
.f_question, .f_question2, .f_question_either, .f_question_check_or_text {
	padding-top: 10px;
	padding-bottom: 20px;
	border-top: 1px dotted #666;
}

.f_question.bottomborder {
	border-top: 0px;
	border-bottom: 1px dotted #666;
}


/* JRW.f_question span, .f_question2, .f_question_check_or_text span, .f_question_either span {font-weight: bold}*/

.f_required {
	background: white url('/img/theme1/asterisk.gif') no-repeat 0px 12px;
}

.f_answer, .f_indent {
	margin: 10px 5px 10px 10px;
	vertical-align: top;
}


.f_prompts { padding: 10px;  margin: 5px 30px 10px 30px; line-height:130%; border:1px solid #ccc; background: white url(/img/theme1/inputbg.gif) top left repeat-x;}
.f_emp { padding: 10px; margin: 5px 30px 10px 30px; line-height:130%; border:1px solid #ccc; background: white url(/img/theme1/inputbg.gif) top left repeat-x;}

.f_answer p {margin:0px 0px 4px 0px;}
.f_label {
	display:inline;
	float:left;
	clear:both;
}
	
.usr_alert {
		margin: 20px; 
		padding: 20px;
		border-radius: 2px;
		border: 1px solid #888;
		background-color: #58ACFA;
		font-style: italic;
		color: #f5f5f5;
}
	
.no_border {border:0px !important}
.label_right label {
	max-width:200px !important;
	width: 50% !important; 
	text-align:right;
	display: inline-block;
	
}
.label_right span:first-of-type {
	display: inline-block;
	width: 200px;
	text-align:right;
}
.label_right {
	border-top: 1px dotted #ccc;
	padding-top: 5px;
}

.f_field {
	float:left;
}

.f_missing span, tr.f_missing td , label.f_missing,  .f_missing label {color: #aa0000 !important}
input.missing, form .input select.missing {border: 1px solid #aa0000; background: yellow}

table tr {vertical-align:top}
.ralign {text-align:right}
.calign {text-align:center}


tr.ul td {border-bottom:1px dashed #ccc}
tr.ul2 td {border-bottom:1px dashed #ddd}

.htable, .htable * { color: #333; font-family: 'Lato', Verdana, Tahoma}
.gentbl {word-wrap:break-word; table-layout: fixed; }
.gentbl tr:nth-child(odd)		{ background-color:#f2f2f2; }
.gentbl tr:nth-child(even)		{ background-color:#fff; } 
.gentbl td { border-bottom:1px solid #ddd;}
.faded {
	/*color: #aaa !important;*/
	}
#formbody { width: 100%; height: 95%;}
#formbody textarea {width:95%;}
form select {color: #555}

.formbody .row {
    padding-top: 5px;
    padding-bottom: 5px;
    box-sizing: border-box;
}

#formbody .row>[class^=col-] {
	padding-top: 5px;
	padding-bottom: 5px;
}

div.sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 50px;
  background: white;
  z-index: 5;
  width: 100%;
}

.navbtns {
	text-align:right; 
	position:fixed;
  	bottom: 0;
  	left: 0;
  	z-index: 7000;   
  	width: 100%; 		
  	background: #efefef;	
	}

.nextbtn a, .nextbtn a:visited {color: white; font-weight:normal; background: #4B9376; padding:8px 14px;text-decoration:none;float:right; margin-left:5px;}
.nextbtn a:hover {text-decoration:underline}

.prevbtn a, .prevbtn a:visited {color: white; font-weight:normal; background: #ccc; padding:8px 14px;text-decoration:none;float:right; margin-left:5px;}
.prevbtn a:hover {text-decoration:underline}

.checkbtn a, .checkbtn a:visited {color: white; font-weight:normal; background: #a50310; padding:8px 14px;text-decoration:none;float:right; margin-left:5px;}

.tip {color: #555; font-style: italic;}

.inline div.input {display:inline; margin-left:12px;}
.vdiv1 {clear:both; height:10px;}
.vdiv2 {clear:both; height:20px;}	

.blank_input {font-style: italic; color:#ccc;}

.is_hidden {display:none}
.hidden {display:none !important}

a {
	color: unset;
}

/*.form-control {
	border-radius: 1px;
	border: 0px;
	font-size: inherit;
}*/

.form-control span {display: block;}
.form-control {font-size: inherit;}

input[type=submit] { 
	border:0px; 
	border-radius: 5px; 
	color:white;
}

.button, button, input[type='button'], input[type='reset'], input[type='submit'] {
	background-color: var(--bs-blue);
	border: 1px solid var(--bs-blue);
}

input[type="checkbox"] { margin-right:5px; vertical-align:middle; }
div.checkbox input {margin:0px; padding:0px;}
div.checkbox label {width:600px;margin: 0px; padding:0px;}

div.checkbox {clear:both; margin-bottom:8px; margin-right: 10px;line-height:130%;}
/*.radiobutton {line-height: 190%;}*/
.radiobutton input[type="radio"] {margin-right: 5px; padding-top:6px;}
.radiobutton label {display: inline-block; min-width: 150px; margin-right:30px;}
.multiline input[type="checkbox"] {margin-bottom:20px;margin-right:10px;float:left;clear: both;}
.multiline label {display:block;}
.multiline div.checkbox {margin: 10px 0px; border-bottom: 1px dashed #ccc; padding:10px 0px;}
.checkboxes label {display: inline-block; width: 90%; vertical-align: top}
.notes {font-style: italic;}
.answer {font-weight:bold;}
.none {color:#ccc; font-style:italic}

/* HAE */
.input label {display: inline-block; text-align: right; margin-right: 10px}
.longlabel .input label {max-width: 400px;}
.input {margin-bottom:5px;}
.inputtbl input[type=checkbox] {margin-bottom:0px;margin-right:5px;}

div.searchbox {margin-bottom:10px; border-bottom:1px dotted #666; padding: 10px 6px;}
div.searchbox label {font-weight:bold;padding-right:5px;}

.paging {
	text-align:right; 
	position:fixed;
	bottom: 0;
	left: 0;
	z-index: 9999;   
	width: 100%; 		
	border-top: 1px dashed #aaa;
	background-color: white;
	color: #333;	
	padding: 4px 20px;
	
}
.paging a {color: #bbb; text-decoration:none;}
.paging a:hover {color: #fff; font-size: 14px;text-decoration:none;}

div.link {border: 1px solid #aaa; background: #eee; color: #444; display:inline; padding:3px 5px; margin: 0px 2px;}
div.link a, div.link a:visited {text-decoration:none;}
div.current {font-weight:bold}
table {clear: both;}

.lined .input {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0px;
}

.lined .row .input {
    border-bottom: 0px !important;
    padding: 0px !important;
}


#jsddm
{	margin: 0;
	padding: 0}
	
	#jsddm li
	{	float: left;
		list-style: none;
		font: 12px Tahoma, Arial}

	#jsddm li a
	{	display: block;
		background: #20548E;
		padding: 5px 12px;
		text-decoration: none;
		border-right: 1px solid white;
		width: 70px;
		color: #EAFFED;
		white-space: nowrap}

	#jsddm li a:hover
	{	background: #1A4473}
		
		#jsddm li ul
		{	margin: 0;
			padding: 0;
			position: absolute;
			visibility: hidden;
			border-top: 1px solid white}
		
		#jsddm li ul li
		{	float: none;
			display: inline}
		
		#jsddm li ul li a
		{	width: auto;
			background: #9F1B1B}
		
		#jsddm li ul li a:hover
		{	background: #7F1616}
		
		#progressbar {width:100%; height: 15px; margin:0 auto; border-radius: 0px;background: #e5e5e5; border:0px;}
		#progressbar .ui-widget-header {background: #507830}
		#percentage {font-size:10px;width:40px; float:right; color: #555; line-height:13px;}
	.calign td {text-align: center; border-bottom:1px dashed #ccc; border-right:1px dotted #ccc;}
	.altbg {background: #ddd;}

	
		/*#progressbar .ui-widget-header {
    background: url("../images/?new=f6a828&w=500&h=100&f=png&q=100&fltr[]=over|textures/12_gloss_wave.png|0|0|35") repeat-x scroll 50% 50% #F6A828;
    border: 1px solid #E78F08;
    color: #FFFFFF;
    font-weight: bold;
}*/
.info {font-size:14px; font-style:italic;}

/* css for timepicker */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 45%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }

.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 45% 10px 10px; }

.form_msg {
	max-width: 700px; width: 90%;font-size: 1.1rem; text-align: center;
}
/* Remove margins and padding from the list, and add a black background color */


.slicknav_menu {
	display:none;
}

.slicknav_menu a, .slicknav_menu a:visited {
	color: #eee;
}
.input33 {max-width:30%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 10px 0px;}
.input33 div:nth-child(2) {display:inline-block; width: 80%;vertical-align:top;}
.input33 div:nth-child(1) {display:inline-block; vertical-align:top;margin-right:10px;}
<div style="background-color: #373737"></div>
.input20 {max-width:15%; width: 100%; margin-right: 4px; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 10px 0px;}
.input20 div:nth-child(2) {display:inline-block; width: 70%;vertical-align:top;}
.input20 div:nth-child(1) {display:inline-block; vertical-align:top;margin-right:10px;}

.input25 {max-width:22%; width: 100%; margin-right: 4px; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 10px 0px;}
.input25 div:nth-child(2) {display:inline-block; vertical-align:top;}
.input25 div:nth-child(1) {display:inline-block; vertical-align:top;margin-right:10px;}

.input50 {max-width:47%; width: 100%; margin-right: 4px; display:inline-block;  vertical-align:top;padding: 10px 0px;}
.input50:not(:last-child) {border-bottom: 1px dashed #ddd;}

.input50 div:nth-child(2) {display:inline-block; width: 80%;vertical-align:top;}
.input50 div:nth-child(1) {display:inline-block; vertical-align:top;margin-right:10px;}

.input100 {max-width:90%; width: 100%; margin-right: 4px; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 10px 0px;}
.input100 div:nth-child(2) {display:inline-block; width: 80%;vertical-align:top;}

.input100 div:nth-child(1) {display:inline-block; vertical-align:top;margin-right:10px;}
.longinput {width: 50% !important;}
.div_indent {margin-left: 260px}
.ui-sortable li {
    background: transparent !important;
    margin-top: 15px !important;
    border: 0px;
}
.ui-sortable .oddrow {
    background: transparent !important;
}

#flash_div {
	max-width: 950px;
	margin: 10px auto;
	color: rgb(188, 72, 72);
}
#tabs { 
    background: transparent; 
    border: none; 
}
 
#tabs .ui-widget-header { 
    background: transparent; 
    border: none; 
    border-bottom: 1px solid #c0c0c0; 
    -moz-border-radius: 0px; 
    -webkit-border-radius: 0px; 
    border-radius: 0px; 
} 
#tabs .ui-tabs-nav .ui-state-default { 
    background: transparent; 
    border: none; 
} 
#tabs .ui-tabs-nav .ui-state-active { 
    background: transparent url(/img/uiTabsArrow.png) no-repeat bottom center; 
    border: none; 
} 
#tabs .ui-tabs-nav .ui-state-default a { 
    color: #c0c0c0; 
} 
#tabs .ui-tabs-nav .ui-state-active a { 
    color: #14639C; 
    font-weight: bold;
}

@media screen and (max-width: 450px) {
#content, .content {
	font-size: 1.1rem;	
}	

.form_auto .ui-widget-content, .users .ui-widget-content {border:0px; color : #555; font-size: 1.0em;}

.input33 {max-width:90%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
.input20 {max-width:90%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
.input25 {max-width:90%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
.input50 {max-width:90%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
	.navbtns .blabel {display:none;}
	#maintext {margin:8px;}
	.f_answer, .f_indent {
	margin: 10px 10px;
	vertical-align: top;
  }
.label_right label {
	width: 90% !important; 
	text-align:left;
	display: block;
	
}
.question_group {
	/*border: 1px solid #ccc;*/
	padding:10px 10px;
}

}
.btn {
	padding: 5px 15px;
	border-radius: 4px;
	margin-bottom: 0px;
}

.btn-primary {
	background-color: #356dc0 !important;
}

.btn-plain {
	border: 2px solid #888;
	background: none;
	color: #333;
}
@media screen and (min-width: 450px) and (max-width: 800px) {
.input33 {max-width:47%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
.input20 {max-width:47%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
.input25 {max-width:47%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-align:top;padding: 5px 0px;}
.input50 {max-width:90%; width: 100%; display:inline-block; border-bottom: 1px dashed #ddd; vertical-alignd:top;padding: 5px 0px;}

}
	
@media screen and (max-width: 800px) {
.fdiv {margin-right: 10px;}	
.input label {display: block; text-align: left; margin-bottom: 5px; width: 100%;}
.longinput {width: 90%;}
.div_indent {margin-left: 20px}


#tabs .ui-tabs-panel {padding: 10px 0px;}

	
	#content { 
		line-height: 150%
	
	}
	
	.f_answer {
		padding: 10px 0px;
	}
	.slicknav_menu {
		display:block;
 		position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 7000;   
  	width: 100%; 		
	}
	
	#logo, #logo img {display:none}
	.wide_only {display:none !important;}
	
	.navbtns .blabel {display:none;}
	
	#content h1 {
	  font-size: 1.3em;
	}	

}

    .dr_msg { font-size: 1.0em; padding: 20px; position:relative; border-bottom:1px solid #ccc;}
    .dr_msg p:before {
        /*top: 20px;
        position: relative;
        content: open-quote;
        color: white;
        font-size:60px;*/
      font-family: "Source Sans Pro";  		  
		  content: "\201C";
		  font-size: 3em;
		  line-height: 0.1em;
		  margin-right: 0.2em;
		  vertical-align: -0.4em;
    
    }
.dr_msg p:after {
        /*top: 20px;
        position: relative;
        content: open-quote;
        color: white;
        font-size:60px;*/
      font-family: "Source Sans Pro";  		  
		  content: "\201d";
		  font-size: 3em;
		  line-height: 0.1em;
		  margin-right: 0.2em;
		  vertical-align: -0.4em;

    }

    .button1 {
      padding: 15px 20px;
      border: 2px solid #f36427;
      color: #666;
      border-radius: 2px;
      background: transparent;
    }


.form_auto .ui-widget-content, .users .ui-widget-content {
    font-family: "Lato";
    font-size: 1.0em;
}
.category_helper {
	font-style: italic;
	margin: 10px;
	padding: 10px;
	border: 1px solid #aaa;
	background: #eee;
}
@media (min-width:1300px)  { 

	div.f_question {margin: 20px 0px;}
}

@media (min-width:600px)  { 
	.multicol .f_question label {
		display: none;
	}	

.multifield_radio .input.radio {margin-top:20px;}
.multifield_radio .input.radio div {display: inline-block; margin-right:20px;}
.multifield_radio .input.radio div label {display: inline-block; margin-left:5px;}

}

@media (max-width:800px)  { 
	.multifield_radio .input.radio div {display: block; margin-right:20px;}
	#formbody option {font-size: 12pt}
	body {
		font-size: 12pt;
	}
	.multicol .indent { margin-left: 20px;margin-top: 10px;}
	.multicol .colname {display: none;}
	
	#content, .content {
		padding: 10px;
	}
	
	.formpage {
		padding: 10px 0px;
	}
	#content #formbody h2 {margin-top:20px; font-size: 1.4em; color: #444;}

	.table td, .table th {	
		padding: .2rem;
	}
}

/* Paginator */
.paginator {
    text-align: right;
}
.paginator p {
    margin-bottom: 0;
}
.paginator {
	list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}
.paginator li, .pagination li {
    display: inline-block;
    margin: 0.25em;
    text-align: center;
}
.paginator a, .pagination a {
    color: var(--color-cakephp-blue);
    display: inline-block;
    min-width: 3rem;
    max-height: 50px;
    padding: 0;
    position: relative;
    text-decoration: none;
    transition: background .3s,color .3s;
}
.pagination li.active a,
.pagination a:hover {
    text-decoration: underline;
}
.pagination .disabled a {
    cursor: not-allowed;
    color: var(--color-lightgray);
    text-decoration: none;
}
.first a,
.prev a,
.next a,
.last a {
    padding: 0 .75rem;
}

 .inline-label input[type='date'], .inline-label input[type='datetime'], .inline-label input[type='datetime-local'], .inline-label input[type='email'], .inline-label input[type='month'], .inline-label input[type='number'], .inline-label input[type='password'], .inline-label input[type='search'], .inline-label input[type='tel'], .inline-label input[type='text'], .inline-label input[type='url'], .inline-label input[type='week'], input:not([type]), .inline-label textarea, .inline-label select {
	width: unset;
}

/* Hamburger button - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333; /* match your nav color */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animate to X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile styles */
@media (max-width: 768px) {
	#main {
		margin-top: 30px;
	}
    .hamburger {
        display: flex;
        margin: 20px 0px 0px 10px;
    }

    #menu {
        display: none;
        flex-direction: column;
        width: 100%;
        list-style: none;
        margin: 45px 0px 0px 0px;
        padding: 0;
    }

    #menu.open {
        display: flex;
    }

    #menu li {
        width: 100%;
    }

    #menu li a {
        display: block;
        padding: 12px 16px;
    }

    /* Dropdowns: always visible when parent is shown on mobile */
    #menu li ul {
        position: static;
        display: none;
        padding-left: 16px;
        list-style: none;
    }

    #menu li.submenu-open > ul {
        display: block;
    }
}

