<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* sticky header */
.Messenger_prompt::before {
	icon:url(../images/circletriangle.ico);
}

#head_container {
	top:-200px;
	transition:3s all ease;
}
#head_container.stickyhead {
	position: fixed;
	position:-webkit-sticky;
	position:sticky;
	top: 0;
	width: 100%;
	background: rgba(0,0,0,0.7);
	color:#fff;
}
.marquee {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
  background-color:white;
  display:none;
}
.marquee span {
  display: inline-block;
  width: max-content;
  padding-top:25px;
  padding-left: 100%;
  font-size:x-large;
  color:#4040bb;
  /* show the marquee just outside the paragraph */
  will-change: transform;
  animation: marquee 60s linear infinite;
}

.marquee span:hover {
  animation-play-state: paused
}


@keyframes marquee {
  0% {
	    transform: translate(0, 0);
		-moz-transform: translate(0,0);
		-webkit-transform: translate(0,0);
  }
  100% {
	  transform: translate(-100%, 0);
		-moz-transform: translate(-100%, 0);
		-webkit-transform: translate(-100%, 0);
  }
}


@-moz-keyframes marquee {
	0% {
		-moz-transform: translate(0,0);
	}
	100% {
		-moz-transform: translate(-100%,0);
	}
}

@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translate(0,0);
	}
	100% {
		-webkit-transform: translate(-100%,0);
	}
}
        

/* The alert message box */
.emergency_info {
  display:none;
  z-index: 9999;
  width: 80%;
  font-size:2em;
  padding:15px 15px 50px 15px;
  background-color:red;
  color:white;
  text-align:center;
  font-family:Arial, Helvetica, sans-serif;
  top:25%;
  left: 0;
  right: 0;
  margin: 0 auto;
  position:fixed;
  border-radius: 25px;
  border-style: solid;
  -moz-box-shadow: 25px 25px 25px rgba(64, 64, 187, 0.3);
  -webkit-box-shadow: 25px 25px 25px rgba(64, 64, 187, .3);
  box-shadow: 25px 25px 25px rgba(64, 64, 187, .3);
}
/* The close button */
.closebtn {
    margin-left: 15px;
	margin-right:30px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}
/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}
.special_info {
 display:none;
 height: 75px;
 overflow: hidden;
 position: relative;
 background-color:#FFFFFF; /* White */
 background-color:#cc0000; /* Red */
 background-color:#4040bb: /* Blue */
 background-color:#008000; /* Green */
}
.special_info p {
 font-size: 2.8em;
 padding-left:25px;
 font-family: Arial, Helvetica, sans-serif;
}
.special_info a {
 text-decoration:none;
 color:#FFFFFF;
 display:block;
}
.xspecial_info {
 height: 75px;
 overflow: hidden;
 position: relative;
}
.xspecial_info p {
 font-size: 3em;
 color: #4040bb;
 white-space: nowrap;
 position: absolute;
 width: 100%;
 height: 100%;
 margin-top: -2px;
 padding-top: 8px;
 /* text-align: center; */
 text-transform: uppercase;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);
 transform:translateX(100%);
 /* Apply animation to this element */
 -moz-animation: SpecialInfo 30s linear infinite;
 -webkit-animation: SpecialInfo 30s linear infinite;
 animation: SpecialInfo 30s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes xSpecialInfo {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}

}
@-webkit-keyframes xSpecialInfo {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes xSpecialInfo {
 0%   { 
 -moz-transform: translateX(100%); /* Firefox bug fix */
 -webkit-transform: translateX(100%); /* Firefox bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Firefox bug fix */
 -webkit-transform: translateX(-100%); /* Firefox bug fix */
 transform: translateX(-100%); 
 }
}

.xspecial_info p:hover {
	animation-play-state:paused;
	cursor:pointer;
}

@media(hover: hover) and (pointer: fine) {
	.xspecial_info p:hover {
	animation-play-state:paused;
	cursor:pointer;
	}
}
#banner {
	background-color:#4040BB;
	display:inline-table;
}
#phone-icon {
display:none;
}

#cssmenu {
	width: inherit;
	line-height: 1;
	background: #4040BB;
	xbackground: #3333cc;
	z-index:100;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button { /* The whole Menu  */
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#cssmenu:after, #cssmenu &gt; ul:after { /* Hide the Mobile Menu */
	content: ".";
	display: block;
	clear: both;
	visibility: hidden; 
	line-height: 0;
	height: 0;
}
#cssmenu #menu-button {
	display: none;
}
#menu-line {
	height: 2px;
	position: absolute;
	background: #FFFFFF;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}
#cssmenu.align-center &gt; ul {
	font-size: 0;
	text-align: center;
}
#cssmenu.align-center &gt; ul &gt; li {
	display: inline-block;
	float: none;
}
#cssmenu.align-center ul ul {
	text-align: left;
}
#cssmenu &gt; ul &gt; li { /* Individual Menu Items */
	float: left;
}
#cssmenu &gt; ul &gt; li &gt; a {
	padding: 20px;
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
	color: #FFFFFF;
	-webkit-transition: color .25s ease;
	-moz-transition: color .25s ease;
	-ms-transition: color .25s ease;
	-o-transition: color .25s ease;
	transition: color .25s ease;
}
#cssmenu &gt; ul &gt; li.has-sub &gt; a {
	padding-right: 25px;
}
#cssmenu &gt; ul &gt; li:active &gt; a, #cssmenu &gt; ul &gt; li:hover &gt; a, #cssmenu &gt; ul &gt; li.hover &gt; a {
	color: #0072FF;
}
/* Down Arrow Stuff */
#cssmenu &gt; ul &gt; li.has-sub &gt; a::after {
	position: absolute;
	top: 24px;
	right: 10px;
    content: " ";   
    border: 4px solid transparent; 
    border-top: 4px solid white; 
}
#cssmenu &gt; ul &gt; li.has-sub:hover &gt; a::after {
	border: 4px solid transparent; 
    border-top: 4px solid #0072FF; 
}
#cssmenu ul ul {
	position: absolute;
	left: -9999px; 
}
#cssmenu li:hover &gt; ul {
	left: auto;
}
#cssmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}
#cssmenu ul ul li {
	height: 0;
	-webkit-transition: height .25s ease;
	-moz-transition: height .25s ease;
	-ms-transition: height .25s ease;
	-o-transition: height .25s ease;
	transition: height .25s ease;
}
#cssmenu ul li:hover &gt; ul &gt; li {
  height: 36px;
  background: #4040BB;
  -moz-transition: height 1s ease;
  -webkit-transition: height 1s ease;
  -o-transition: height 1s ease;
  transition: height 1s ease;
  z-index: 1;
}
#cssmenu ul ul li a { /* Individual PullDowns */
	position:relative;
	padding-top: 10px;
	padding-left: 20px;
	width: 175px;
	font-size: 12px;
	background: #4040BB;
	text-decoration: none;
	color: #FFFFFF;
	-webkit-transition: color .25s ease;
	-moz-transition: color .52s ease;
	-ms-transition: color .25s ease;
	-o-transition: color .25s ease;
	transition: color .25s ease;
	z-index: 5;
}
#cssmenu ul ul li a:after { /* each line */
}
#cssmenu ul ul li:hover &gt; a, #cssmenu ul ul li a:hover {
	color: #0072FF;
}
#cssmenu ul li.has-sub {
}
#cssmenu &gt; ul ul &gt; li.has-sub &gt; a::after {
	position: absolute;
	top: 13px;
	right: 10px;
    content: " ";   
    border: 4px solid transparent; 
    border-top: 4px solid white; 
}

/* @media only screen and (min-width: 950px) { */
@media only screen and (min-width: 1024px) { 
 #cssmenu_br {
	display:none;
 }
}
/* @media only screen and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 768px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 768px), only screen and (min-device-pixel-ratio: 2) and (max-width: 768px), only screen and (min-resolution: 192dpi) and (max-width: 768px), only screen and (min-resolution: 2dppx) and (max-width: 768px) { */
/*@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) { */
@media only screen and (max-width: 767px) {
  #banner {
	  display:none;
  }
  #menu-line {
	  display:none;
  }
  #footer {
  	  font-size:x-small;
  }
  #phone-icon {
	  display:none;
  }
  #xphone-icon { /* phone icon */
	display:block;
	text-align:left;
	position: fixed;
	top: 125px;
	left: 5px;
	width: 98%;
	height: 0px;
  }
  #Xphone-icon { /* phone icon on menubar*/
	display:block;
	text-align:right;
	position: fixed;
	top: 0px;
	left: 5px;
	width: 80%;
	height: 0px;
	z-index: 99;
  }
  #home-link {
	position:absolute;
	width: 45px;
	height:45px;
	z-index:101;
  }
  #cssmenu {
   width: 100%;
  }
  #cssmenu ul {
   width: 100%;
   display: none;
  }
  #cssmenu.align-center &gt; ul,  #cssmenu.align-right ul ul { /* Menu Items */
   text-align: left;
  }
  #cssmenu ul li,  #cssmenu ul ul li,  #cssmenu ul li:hover &gt; ul &gt; li { /* Pulldown Menu */
   padding-left: 25px;
   width: 99%;
   height: auto;
   border-top: 1px solid rgba(120, 120, 120, 0.15);
  }
  #cssmenu ul li a,  #cssmenu ul ul li a {
   width: 100%;
   font-size: 16px;
  }
  #cssmenu &gt; ul &gt; li,  #cssmenu.align-center &gt; ul &gt; li,  #cssmenu.align-right &gt; ul &gt; li {
   float: none;
  }
  #cssmenu ul ul li a { /* Pulldown Text */
   padding: 20px 20px 20px 30px;
   font-size: 16px;
   color: #ffffff;
   background: none;
  }
  #cssmenu ul ul li:hover &gt; a,  #cssmenu ul ul li a:hover { /* Pulldown Text hover */
   color: #0072FF;
  }
  #cssmenu ul ul ul li a {
   padding-left: 48px;
  }
  #cssmenu ul ul,  #cssmenu ul ul ul { /* submenu bar */
   display: none;
   position: relative;
   left: 0;
   right: auto;
   width: 100%;
   margin: 0;
  }
  #cssmenu &gt; ul &gt; li.has-sub &gt; a::after,  #cssmenu ul ul li.has-sub &gt; a::after {
   display: none
  }
  #cssmenu #menu-button { /* head text */
   display: block;
   padding: 20px 50px 15px 50px;
   /* padding: top right bottom left; */
   color: #ffffff;
   cursor: pointer;
   font-size: 14px;
   font-family: Arial, Helvetica, sans-serif;
   text-transform: uppercase;
   }
   
  /* hamburger top */
  #cssmenu #menu-button::before {
    content: '';
    position: absolute;
    top: 17px;
    right: 20px;
    display: block;
    width: 26px;
    height: 3px;
    border-radius:3px;
    background: #ffffff;
    transition: all 0.8s ease;	
  }
  
  /* hamburger meat */
  #cssmenu #menu-button span {
   position: absolute;
   top: 24px;
   right: 20px;
   display: block;
   width: 26px;
   height: 3px;
   border-radius:3px;
   background: #ffffff;
   transition: all 0.8s ease;
  }

  /* hamburger bottom */
  #cssmenu #menu-button::after {
   content: 'MENU';
   font-size:xx-small;
   position: absolute;
   top: 31px;
   right: 20px;
   width: 26px;
   /*
   display: block;
   height: 0px;
   border-radius:3px;
   background: #ffffff;
   */
   transition: all 0.8s ease;
  }
  
  /* hamburger when menu open */

  #menu-button.menu-opened &gt; span {
	  /* for circle 
	  top: 17px !important;
	  right: 20px !important;
	  width: 40px !important;
	  height: 40px !important;
	  background: none !important;
	  border: 5px solid #fff !important;
	  border-radius: 50% !important;	  
	  */
	  top: 24px !important;
	  transform:rotate(-45deg) !important;
  }

  #menu-button.menu-opened::before  {
	  top: 24px !important;
	  transform:rotate(45deg) !important;
  }

  #menu-button.menu-opened::after {
	  content:'CLOSE' !important;
	  top: 38px !important;
	  right: 22px !important;
  }

  /* pulldown bar */
  #cssmenu .submenu-button { 
   position: absolute;
   z-index: 10;
   right: 0;
   top: 0;
   display: block;
   border-left: 1px solid rgba(120, 120, 120, 0.15);
   height: 52px;
   width: 100%;
  }
  #cssmenu .submenu-button::after { /* plus mark */
   content: '';
   position: absolute;
   top: 21px;
   left: 26px;
   display: block;
   width: 1px;
   height: 11px;
   background: #ffffff;
  }
  #cssmenu .submenu-button::before { /* minus mark */
   content:'';
   position: absolute;
   left: 21px;
   top: 26px;
   display: block;
   width: 11px;
   height: 1px;
   background: #ffffff;
  }
  #cssmenu .submenu-button.submenu-opened:after {
   display: none;
  }
  #cssmenu:before { /* menu icon */
   content:'';
   float:left;
   display: block;
   width: 48px;
   height:48px; 
   padding: 0px 5px 0px 0px; 
   background-repeat:no-repeat;
   xbackground-image: url(../images/circletriangle.png); 
   background-image: url(../images/favicon.gif); 
  }
}
@media only screen and (max-width: 390px) {
	#cssmenu #menu-button {
		font-size:12px;
		xcolor:#F00;
	}
}</pre></body></html>