<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
/*Container Styles*/
#container { 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	width:100%;
	max-width: 800px;
	background: #FFFFFF;
	border: 1px solid #000000;
} 
@media only screen and (max-width: 640px) {
#container { 
	width:100%;
	padding: 0;
	margin:0;
	background: #F6C332;
	border: none;
} 
}

/*Header Styles*/
@media only screen and (min-width: 641px) {
#header { 
	background: #F6C332; 
	padding: 0 10px 0 20px;
	text-align:center;
} 
#header h1 {
	margin: 0;
	padding: 20px 0 10px 0;
}
	#header p {
	padding: 0 0 20px 0;
	margin:0;
}
}
@media only screen and (max-width: 640px) {
	#header {
	background: #000;
	color:#FFF;
	text-align:center;
} 
	#header h1 {
	font-size: 110%;
	margin:0;
	padding: 6px 0;
}
	#header p {
	font-size: 95%;
	padding: 0 0 10px 0;
	margin:0;
}
}


/*Mobile menu Styles*/
@media only screen and (min-width: 641px) {
.rmm {
	display:none;
}
}

/*Sidebar and main menu Styles*/
#sidebar1 {
	float: left;
	width: 200px;
	background: #F6C332;
	padding: 55px 1px 15px 1px;
}
/*Menu */
.list{
	margin:0;
	padding:0;
	overflow:hidden;
	width:200px;
	background : #F6C332;
}
#active{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	cursor : pointer;
	color : #6B3A6B;
	display : block;
	width : 100%;
	background : #f5f5dc;
}
#current{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	cursor : pointer;
	color: #6B3A6B;
	display : block;
	width : 100%;
	background : #f5f5dc;
}
.list li a{
	list-style:none;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	padding : 5px;
	margin : 2px;
	cursor : pointer;
	color : #000;
	font-weight : bold;
	text-decoration : none;
	display : block;
	width : 100%;
}
#current a{
	color:#6B3A6B;
}
/* End Menu*/
@media only screen and (max-width: 640px) {
	#sidebar1 {
		display:none
	}
}

/*Main Content Styles*/

#mainContent { 
	margin: 0 0 0 200px;
	padding: 0 2px; 
} 
@media only screen and (min-width: 641px) {
.IndentText {
	padding-left: 20px;
}
.noShow {
	display:none;
}
}
@media only screen and (max-width: 640px) {
	#mainContent {
		margin:0;
		padding: 0 1px;
		font-size: 95%;
	}
	.IndentText {
	padding: 4px;
}
.noShowMob {
	display:none;
}
}

/*Other Styles*/
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/*responsive youtube videos - http://www.smashingmagazine.com/2014/02/27/making-embedded-content-work-in-responsive-design/*/
.video-container {
    position: relative;
    padding-bottom: 56.25%; /*16:9 aspect ratio video*/
    padding-top: 35px;
    height: 0;
    overflow: hidden;
	margin:10px 0;
}
.video-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*feedback boxes*/
#rcorners {
    border-radius: 25px;
    border: 2px solid #000;
    padding: 0 6px; 
    width: 95%;
	margin: 10px 0;
}
@media only screen and (max-width: 640px) {
#rcorners {
	background-color:#FFF;
}
}
.etabs { margin: 0; padding: 0; }
.tab { display: inline-block; zoom:1; *display:inline; background: #FF9; border: solid 1px #999; border-bottom: none; -moz-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0; }
.tab a { font-size: 14px; line-height: 2em; display: block; padding: 0 10px; outline: none; }
.tab a:hover { text-decoration: underline; }
.tab.active { background: #fff; padding-top: 6px; position: relative; top: 1px; border-color: #666; }
.tab a.active { font-weight: bold; }
.tab-container .panel-container { background: #fff; border: solid #666 1px; padding: 10px; -moz-border-radius: 0 4px 4px 4px; -webkit-border-radius: 0 4px 4px 4px; }</pre></body></html>