<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */


/* Accordion Menu Style */

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #2F5074;
    color: #ffffff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid black;
    outline: none;
	font-size: inherit;
    transition: 0.4s;
	margin-top: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #3A5322;
}

button.accordion a {color: white}
	.linkTab:after {
    display: none;
  }

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0px;
    background-color: transparent;
	max-height:0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	box-sizing:border-box;
}

/*Add (+/-) icons */
.accordion:after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 18px;
    color: #ffffff;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
}
/*Style Other Bullets*/
.subBullets{
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-left: 20px;
  text-align: left;
}
.list-numbers{
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-left: 20px;
  text-align: left;
}
/* Style Buttons */
.btn-group{
	width:100%;
	padding:0;
	margin: auto;
}
.btn-group .btn{
	background-color: white;
	padding:15px 30px;
	border: 1px solid black;
	text-align:center;
	text-decoration:none;
	display: inline-block;
	font-size: .75em;
	width: 33%;
	cursor:pointer;
	float:left;
}
.btn-group .btn:hover{
	background-color:#e7e7e7;
}
.disabled{
	opacity: .6;
	cursor: not-allowed;
}
</pre></body></html>