/*CSS MENU: 12/1/2020*/

/*CSS MENU: Comment of 5/26*/
/*line height controls height of background main menu*/
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 11;
}
#cssmenu:after,
#cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#cssmenu #menu-button {
  display: none;
}
/*main background and hamburger background*/
#cssmenu {
  font-family: Arial, Helvetica, sans-serif;
  background: RGB(24,48,81);
}
#cssmenu > ul > li {
  float: left;
}
#cssmenu.align-center > ul {
  font-size: 0;
  text-align: center;
}
#cssmenu.align-center > ul > li {
  display: inline-block;
  float: none;
}
#cssmenu.align-center ul ul {
  text-align: left;
}
#cssmenu.align-right > ul > li {
  float: right;
}
/*top and bottom padding determines height of background*/
/*font weighting and font color main menu*/
#cssmenu > ul > li > a {
  padding-top: 8px;
  padding-bottom: 9px;
  padding-right: 17px;
  padding-left: 17px;
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}
/*hover color for main menu*/
#cssmenu > ul > li:hover > a {
  color: #d8d8d8;
}
/*padding controls horiz. space between main menu items*/
/*originally 30*/
#cssmenu > ul > li.has-sub > a {
  padding-right: 17px;
  padding-left: 17px;
}
/*+/- sign cross part in main menu*/
/*color originally #d8d8d8*/
#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 21px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: RGB(24,48,81);
  content: '';
}
/*+/- sign up down part in main menu*/
/*color originally #d8d8d8*/
#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 18px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: RGB(24,48,81);
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
/*motion of the + to - change over main menu*/
#cssmenu > ul > li.has-sub:hover > a:before {
  top: 23px;
  height: 0;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
}
#cssmenu.align-right ul ul {
  text-align: right;
}
#cssmenu ul ul li {
  height: 0;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu li:hover > ul {
  left: auto;
}
#cssmenu.align-right li:hover > ul {
  left: auto;
  right: 0;
}
/*controls background line spacing of pull down box - was 34 orig*/
#cssmenu li:hover > ul > li {
  height: 28px;
}
#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}
#cssmenu.align-right ul ul ul {
  margin-left: 0;
  margin-right: 100%;
}
/*bottom line width in pull down box main menu*/
/*pull down box color & font weighting*/
/*2nd padding controls indent of 2nd teer font main menu*/
/*1st padding controls pulldown box length main menu*/
#cssmenu ul ul li a {
  border-bottom: 1px solid rgba(150, 150, 150, 0.15);
  padding: 8px 19px;
  width: 193px;
  font-size: 12px;
  text-decoration: none;
  color: #cecece;
  font-weight: 400;
  background: RGB(24,48,81);
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}
/*1st teer rollover text color and rollover positioning main menu*/
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #ffffff;
  padding-left: 20px;
}
/*color of the left right part of the + sign main menu*/
/*color originally was cecece*/
#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 15.5px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: RGB(24,48,81);
  content: '';
}
#cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}
/*color of the up down part of the + sign main menu*/
/*color originally was cecece*/
#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 12.5px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: RGB(24,48,81);
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 14px;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}
/*controls width of the hamburger bar*/
#cssmenu.small-screen {
  width: 100%;
}
#cssmenu.small-screen ul {
  width: 100%;
  display: none;
}
#cssmenu.small-screen.align-center > ul {
  text-align: left;
}
/*controls bottom line size of hamburger*/
#cssmenu.small-screen ul li {
  width: 100%;
  border-top: 1px solid rgba(120, 120, 120, 0.2);
}
#cssmenu.small-screen ul ul li,
#cssmenu.small-screen li:hover > ul > li {
  height: auto;
}
#cssmenu.small-screen ul li a,
#cssmenu.small-screen ul ul li a {
  width: 100%;
  border-bottom: 0;
}
#cssmenu.small-screen > ul > li {
  float: none;
}
/*padding controls 2nd teer menu items indent mobile menu*/
#cssmenu.small-screen ul ul li a {
  padding-left: 35px;
}
/*padding controls 3rd teer menu items indent mobile menu*/
#cssmenu.small-screen ul ul ul li a {
  padding-left: 50px;
}
/*controls color of 2nd & 3rd teer text mobile menu*/
#cssmenu.small-screen ul ul li a {
  color: #c3cad9;
  background: none;
}
/*rollover color of 2nd teer text mobile menu*/
#cssmenu.small-screen ul ul li:hover > a,
#cssmenu.small-screen ul ul li.active > a {
  color: #ffffff;
}
#cssmenu.small-screen ul ul,
#cssmenu.small-screen ul ul ul,
#cssmenu.small-screen.align-right ul ul {
  position: relative;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: left;
}
#cssmenu.small-screen > ul > li.has-sub > a:after,
#cssmenu.small-screen > ul > li.has-sub > a:before,
#cssmenu.small-screen ul ul > li.has-sub > a:after,
#cssmenu.small-screen ul ul > li.has-sub > a:before {
  display: none;
}
/*padding controls background width of line 1 mobile menu*/
/*color controls "menu" title, font size controls size */
#cssmenu.small-screen #menu-button {
  display: block;
  padding: 8px;
  color: #253550;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
/*top controls position of upper two bars hamburger*/
/*height controls position of lower bar hamburger*/
/*border top and bottom control color of bottom 2 lines of hamburger*/
#cssmenu.small-screen #menu-button:after {
  position: absolute;
  top: 13px;
  right: 11px;
  display: block;
  height: 3px;
  width: 20px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  content: '';
  box-sizing: content-box;
}
/*top controls position of higher bar hamburger*/
/*height chnages thickness of bar hamburger*/
/*background controls color of top bar of hamburger*/
#cssmenu.small-screen #menu-button:before {
  position: absolute;
  top: 8px;
  right: 11px;
  display: block;
  height: 2px;
  width: 20px;
  background: #ffffff;
  content: '';
  box-sizing: content-box;
}
/*background color is that of half of the "X" that replaces hamburger*/
/*top controls position of part "X" that replaces hamburger*/
/*height does strange things to "X"*/
#cssmenu.small-screen #menu-button.menu-opened:after {
  top: 14px;
  border: 0;
  height: 2px;
  width: 17px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*background color is that of half of the "X" that replaces hamburger*/
/*top controls position of part "X" that replaces hamburger*/
#cssmenu.small-screen #menu-button.menu-opened:before {
  top: 14px;
  background: #ffffff;
  width: 17px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*Large +/- box*/
#cssmenu.small-screen .submenu-button {
  position: absolute;
  z-index: 99;
  right: 0;
  top: 0;
  display: block;
  border-left: 1px solid rgba(120, 120, 120, 0.2);
  height: 28px;
  width: 33px;
  cursor: pointer;
}
/*background color of small and large +/- boxes*/
#cssmenu.small-screen .submenu-button.submenu-opened {
  background: #adb5c4;
}
/*small +/- box size*/
#cssmenu.small-screen ul ul .submenu-button {
  height: 27px;
  width: 33px;
}
/*larger +/-'s up/down part*/
#cssmenu.small-screen .submenu-button:after {
  position: absolute;
  top: 13px;
  right: 14px;
  width: 8px;
  height: 2px;
  display: block;
  background: #d8d8d8;
  content: '';
}
/*controls position of cross part of + sign in small boxes*/
#cssmenu.small-screen ul ul .submenu-button:after {
  top: 12.5px;
  right: 15.5px;
}
/*controls color of +/- sign in boxes*/
#cssmenu.small-screen .submenu-button.submenu-opened:after {
  background: #ffffff;
}
/*large +/-'s cross part*/
#cssmenu.small-screen .submenu-button:before {
  position: absolute;
  top: 10px;
  right: 17px;
  display: block;
  width: 2px;
  height: 8px;
  background: #d8d8d8;
  content: '';
}
/*controls up down part of the "+" in small boxes*/
#cssmenu.small-screen ul ul .submenu-button:before {
  top: 9.5px;
  right: 18.5px;
}
#cssmenu.small-screen .submenu-button.submenu-opened:before {
  display: none;
}
#cssmenu.small-screen.select-list {
  padding: 5px;
}
/*END CSS MENU*/





/* Begin Index Pg Slide Show CSS */

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1080px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 10px 10px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 11px;
  padding: 10px 0px 0px 15px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .1} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

/* End Index Pg Slide Show CSS */





/* W3.CSS 4.10 February 2018 */
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
a{background-color:transparent;-webkit-text-decoration-skip:objects}
a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}svg:not(:root){overflow:hidden}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-input-placeholder{color:inherit;opacity:0.54}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
html,body{font-family:Verdana,sans-serif;font-size:15px;line-height:1.5}html{overflow-x:hidden}
h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}.w3-serif{font-family:serif}
h1,h2,h3,h4,h5,h6{font-family:"Segoe UI",Arial,sans-serif;font-weight:400;margin:10px 0}.w3-wide{letter-spacing:4px}
hr{border:0;border-top:1px solid #eee;margin:20px 0}
.w3-image{max-width:100%;height:auto}img{vertical-align:middle}a{color:inherit}
.w3-table,.w3-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}.w3-table-all{border:1px solid #ccc}
.w3-bordered tr,.w3-table-all tr{border-bottom:1px solid #ddd}.w3-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.w3-table-all tr:nth-child(odd){background-color:#fff}.w3-table-all tr:nth-child(even){background-color:#f1f1f1}
.w3-hoverable tbody tr:hover,.w3-ul.w3-hoverable li:hover{background-color:#ccc}.w3-centered tr th,.w3-centered tr td{text-align:center}
.w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{padding:8px 8px;display:table-cell;text-align:left;vertical-align:top}
.w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{padding-left:16px}

/* Green Buy/Quote Button, Features/Specs font*/
.w3-btn,.w3-button{border:none;display:inline-block;padding:5px 105px 20px 15px;font-weight:500;vertical-align:middle;overflow:hidden;text-decoration:none;color:inherit;background-color:inherit;text-align:center;cursor:pointer;white-space:nowrap}
.w3-btn:hover{box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)}
.w3-btn,.w3-button{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}   
.w3-disabled,.w3-btn:disabled,.w3-button:disabled{cursor:not-allowed;opacity:0.3}.w3-disabled *,:disabled *{pointer-events:none}
.w3-btn.w3-disabled:hover,.w3-btn:disabled:hover{box-shadow:none}
.w3-badge,.w3-tag{background-color:#000;color:#fff;display:inline-block;padding-left:8px;padding-right:8px;text-align:center}.w3-badge{border-radius:50%}
.w3-ul{list-style-type:none;padding:0;margin:0}.w3-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.w3-ul li:last-child{border-bottom:none}
.w3-input{padding:8px;display:block;border:none;border-bottom:1px solid #ccc;width:100%}
.w3-select{padding:9px 0;width:100%;border:none;border-bottom:1px solid #ccc}

/* Icons*/
.w3-dropdown-click,.w3-dropdown-hover{position:relative;display:inline-block;cursor:pointer}
.w3-dropdown-hover:hover .w3-dropdown-content{display:block}
.w3-dropdown-hover:first-child,.w3-dropdown-click:hover{background-color:#ccc;color:#000}
.w3-dropdown-hover:hover > .w3-button:first-child,.w3-dropdown-click:hover > .w3-button:first-child{background-color:#ccc;color:#000}

/* Icon Dropdown - background color, min-width, padding*/
.w3-dropdown-content{cursor:auto;color:#000;background-color:rgb(240,242,255);display:none;position:absolute;min-width:175px;margin:0;padding:5px 0px 0px 0px;z-index:1}

.w3-check,.w3-radio{width:24px;height:24px;position:relative;top:6px}
.w3-sidebar{height:100%;width:200px;background-color:#fff;position:fixed!important;z-index:1;overflow:auto}
.w3-bar-block .w3-dropdown-hover,.w3-bar-block .w3-dropdown-click{width:100%}
.w3-bar-block .w3-dropdown-hover .w3-dropdown-content,.w3-bar-block .w3-dropdown-click .w3-dropdown-content{min-width:100%}
.w3-bar-block .w3-dropdown-hover .w3-button,.w3-bar-block .w3-dropdown-click .w3-button{width:100%;text-align:left;padding:8px 16px}
.w3-main,#main{transition:margin-left .4s}

/* Pic enlarge */
.w3-modal{z-index:3;display:none;padding-top:100px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}

/* Tab Bar - font size */
.w3-bar .w3-bar-item{padding:0px 20px;font-size: 18px;float:left;width:auto;height:30px;border:none;display:block;outline:0}
.w3-bar .w3-dropdown-hover,.w3-bar .w3-dropdown-click{position:static;float:left}
.w3-bar .w3-button{white-space:normal}
.w3-bar{width:100%;overflow:hidden}.w3-center .w3-bar{display:inline-block;width:auto}

/* Icon Dropdown - text padding */
.w3-bar-block .w3-bar-item{width:100%;display:block;padding:7px 0px 0px 10px;text-align:left;border:none;white-space:normal;float:none;outline:0}
.w3-bar-block.w3-center .w3-bar-item{text-align:center}.w3-block{display:block;width:100%}

.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-col,.w3-half,.w3-third,.w3-twothird,.w3-threequarter,.w3-quarter{float:left;}
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}
.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}
.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}

@media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%}
.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}
.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}}

/* min-width is part of the lower purple bar */
@media (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%}
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}}
.w3-content{max-width:980px;margin:auto}.w3-rest{overflow:hidden}
.w3-cell-row{display:table;width:100%}.w3-cell{display:table-cell}
.w3-cell-top{vertical-align:top}.w3-cell-middle{vertical-align:middle}.w3-cell-bottom{vertical-align:bottom}
.w3-hide{display:none!important}.w3-show-block,.w3-show{display:block!important}.w3-show-inline-block{display:inline-block!important}

/* W3-MODAL-CONTENT width sets with width of enlarged pics for the medium(a) range*/	
@media (max-width:768px){.w3-modal-content{width:625px}.w3-modal{padding-top:100px}}
/* W3-MODAL-CONTENT width sets with width of enlarged pics for the medium(b) range*/
@media (min-width:769px) and (max-width:992px){.w3-modal-content{width:800px}.w3-modal{padding-top:100px}}

/* min-width sets the lower limit of W3-HIDE-LARGE, W3-MODAL-CONTENT width sets with width of enlarged pics for the large range*/
@media (min-width:993px){.w3-modal-content{width:1080px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}}
/* max-width / min-width sets the range of W3-HIDE-MEDIUM */
@media (max-width:993px) and (min-width:601px){.w3-hide-medium{display:none!important}}
/* max-width sets the upper limit for W3-HIDE-SMALL, no pic enlargements below this limit*/
@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}
.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}	
.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}

/* Appears to do nothing, part of the upper green bar */
@media (max-width:992px){.w3-sidebar.w3-collapse{display:none}.w3-main{margin-left:0!important;margin-right:0!important}}

.w3-top,.w3-bottom{position:fixed;width:100%;z-index:1}.w3-top{top:0}.w3-bottom{bottom:0}
.w3-overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.5);z-index:2}

/* Pic enlarge */
.w3-display-topleft{position:absolute;left:0;top:0}.w3-display-topright{position:absolute;right:0;top:0}

.w3-display-bottomleft{position:absolute;left:0;bottom:0}.w3-display-bottomright{position:absolute;right:0;bottom:0}
.w3-display-middle{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}
.w3-display-left{position:absolute;top:50%;left:0%;transform:translate(0%,-50%);-ms-transform:translate(-0%,-50%)}
.w3-display-right{position:absolute;top:50%;right:0%;transform:translate(0%,-50%);-ms-transform:translate(0%,-50%)}
.w3-display-topmiddle{position:absolute;left:50%;top:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-bottommiddle{position:absolute;left:50%;bottom:0;transform:translate(-50%,0%);-ms-transform:translate(-50%,0%)}
.w3-display-container:hover .w3-display-hover{display:block}.w3-display-container:hover span.w3-display-hover{display:inline-block}.w3-display-hover{display:none}
.w3-display-position{position:absolute}
.w3-circle{border-radius:50%}
.w3-round-small{border-radius:2px}.w3-round,.w3-round-medium{border-radius:4px}.w3-round-large{border-radius:8px}.w3-round-xlarge{border-radius:16px}.w3-round-xxlarge{border-radius:32px}
.w3-row-padding,.w3-row-padding>.w3-half,.w3-row-padding>.w3-third,.w3-row-padding>.w3-twothird,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-col{padding:0 0px}
.w3-container,.w3-panel{padding:0.01em 0px}.w3-panel{margin-top:16px;margin-bottom:0px}
.w3-code,.w3-codespan{font-family:Consolas,"courier new";font-size:16px}
.w3-code{width:auto;background-color:#fff;padding:8px 12px;border-left:4px solid #4CAF50;word-wrap:break-word}
.w3-codespan{color:crimson;background-color:#f1f1f1;padding-left:4px;padding-right:4px;font-size:110%}
.w3-card,.w3-card-2{box-shadow:0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)}
.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.w3-spin{animation:w3-spin 2s infinite linear}@keyframes w3-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}
.w3-animate-fading{animation:fading 10s infinite}@keyframes fading{0%{opacity:0}100%{opacity:1}100%{opacity:0}}
.w3-animate-opacity{animation:opac 0.8s}@keyframes opac{from{opacity:0} to{opacity:1}}
.w3-animate-top{position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}}
.w3-animate-left{position:relative;animation:animateleft 0.4s}@keyframes animateleft{from{left:-300px;opacity:0} to{left:0;opacity:1}}
.w3-animate-right{position:relative;animation:animateright 0.4s}@keyframes animateright{from{right:-300px;opacity:0} to{right:0;opacity:1}}
.w3-animate-bottom{position:relative;animation:animatebottom 0.4s}@keyframes animatebottom{from{bottom:-300px;opacity:0} to{bottom:0;opacity:1}}

/* Pic enlarge */
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}

.w3-animate-input{transition:width 0.4s ease-in-out}.w3-animate-input:focus{width:100%!important}
.w3-opacity,.w3-hover-opacity:hover{opacity:0.60}.w3-opacity-off,.w3-hover-opacity-off:hover{opacity:1}
.w3-opacity-max{opacity:0.25}.w3-opacity-min{opacity:0.75}
.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}
.w3-topbar{border-top:6px solid #ccc!important}.w3-bottombar{border-bottom:6px solid #ccc!important}
.w3-leftbar{border-left:6px solid #ccc!important}.w3-rightbar{border-right:6px solid #ccc!important}
.w3-section,.w3-code{margin-top:16px!important;margin-bottom:16px!important}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}
.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-padding-small{padding:5px 5px!important}.w3-padding{padding:5px 10px 0px 2px!important}.w3-padding-large{padding:12px 24px!important}


/* Buy Online Get a Quote */
.w3-padding-top{padding:0px 0px 25px 0px!important}

/* Buy Online Get a Quote */
.w3-padding-top1{padding:5px 0px 20px 100px!important}

/* Splash */
.w3-padding-top2{padding:0px 0px 10px 0px!important}

/* Padding for vertical line in specs */
.w3-padding-top3{padding:130px 0px 20px 0px!important}

/* Padding Index pg Buy/Quote */
.w3-padding-right{padding:20px 30px 0px 15px!important}

/* Padding Index pg How to order */
.w3-padding-right1{padding:10px 25px 10px 0px!important}

/* Padding EC pages */
.w3-padding-right2{padding:25px 250px 0px 0px!important}

/* Padding Index pg Buy/Quote */
.w3-padding-right3{padding:20px 30px 0px 40px!important}

.w3-padding-left{padding:20px 0px 0px 10px!important}

/* New Padding prod pg body */
.w3-padding-body{padding:10px 20px 0px 25px!important}

.w3-padding-20{padding:45px 0px 0px 30px!important}

/* Reps Padding */
.w3-padding-reps{padding:25px 0px 10px 20px!important}

/* New Padding FP/RP pics*/
.w3-padding-fprp{padding:0px 0px 0px 0px!important}

/* Index footer */
.w3-padding-16{padding-top:20px!important;padding-bottom:0px!important;padding-left:0px!important}

/* New Padding Main pic small */
.w3-padding-16a{padding-top:20px!important;padding-bottom:20px!important;padding-left:65px!important;padding-right:5px!important}

/* Price */
.w3-padding-16b{padding-top:27px!important;padding-bottom:0px!important;padding-left:0px!important}

/* Buy / Quote */
.w3-padding-16c{padding-top:30px!important;padding-bottom:0px!important;padding-left:90px!important;padding-right:0px!important}

/* Index new products from srs */
.w3-padding-16d{padding-top:5px!important;padding-bottom:10px!important;padding-left:0px!important}

/* Index footer */
.w3-padding-16e{padding-top:85px!important;padding-bottom:0px!important;padding-left:35px!important}


.w3-padding-mult{padding-top:0px;padding-bottom:0px;padding-left:15px}
.w3-left{float:left!important}.w3-right{float:right!important}
.w3-transparent,.w3-hover-none:hover{background-color:transparent!important}
.w3-hover-none:hover{box-shadow:none!important}


/* Index how to order, Background color NASA/RGA */
.w3-lightblue-background,.w3-hover-blue:hover{color:#fff!important;background-color:#f1f5fd!important}

/* Index - how to order, Rollover Font color of Tab bar, Rollover Tab bar background color */
.w3-srslightblue,.w3-hover-srslightblue:hover{color:#fff!important;background-color:rgb(114,137,177)!important}

/* Font color of active state of Tab bar, Active state Tab bar background color */
.w3-red,.w3-hover-red:hover{color:#fff; font-family: Arial, Helvetica, sans-serif; font-weight: 500; font-style: italic!important; background-color:rgb(61,78,115)!important}


.w3-srsblue,.w3-hover-black:hover{color:#d8d8d8; font-family: Arial, Helvetica, sans-serif; font-weight: 500; font-style: normal!important; background-color:rgb(83,103,148)!important}

/* Pic enlarge */
.w3-button:hover{color:#000!important;background-color:rgb(160,173,204)!important}

/* Pic enlarge */
.w3-white,.w3-hover-white:hover{color:#000!important;background-color:#fff!important}

/* Pic enlarge */
.w3-dark-grey,.w3-hover-dark-grey:hover,.w3-dark-gray,.w3-hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}

/* RMA stuff */
.w3-orange,.w3-hover-orange:hover{color:#fff!important;background-color:#ea791f!important}
.w3-light-orange,.w3-hover-light-orange:hover{color:#fff!important;background-color:#ea9546!important}

/* Buy / Quote */
.w3-green,.w3-hover-green:hover{color:#fff!important;background-color:#85ca66!important}
.w3-light-green,.w3-hover-light-green:hover{color:#fff!important;background-color:#a6e08d!important}


.w3-blue-background,.w3-hover-blue:hover{color:#fff!important;background-color:#dce2ed!important}
.w3-blue,.w3-hover-blue:hover{color:#fff!important;background-color:#cccfd6!important}
.w3-light-blue,.w3-hover-light-blue:hover{color:#000!important;background-color:#87CEEB!important}
.w3-deep-orange,.w3-hover-deep-orange:hover{color:#fff!important;background-color:#ff6522!important}
.w3-pink,.w3-hover-pink:hover{color:#fff!important;background-color:#e91e63!important}
.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#000!important}
.w3-grey,.w3-hover-grey:hover,.w3-gray,.w3-hover-gray:hover{color:#000!important;background-color:#bebebe!important}
.w3-light-grey,.w3-hover-light-grey:hover,.w3-light-gray,.w3-hover-light-gray:hover{color:#000!important;background-color:#e8e8e8!important}
.w3-text-blue,.w3-hover-text-blue:hover{color:#2196F3!important}
.w3-text-light-blue,.w3-hover-text-light-blue:hover{color:#87CEEB!important}
.w3-text-green,.w3-hover-text-green:hover{color:#4CAF50!important}
.w3-text-orange,.w3-hover-text-orange:hover{color:#ff9800!important}
.w3-text-deep-orange,.w3-hover-text-deep-orange:hover{color:#ff5722!important}
.w3-text-red,.w3-hover-text-red:hover{color:#f44336!important}
.w3-text-white,.w3-hover-text-white:hover{color:#fff!important}
.w3-text-black,.w3-hover-text-black:hover{color:#000!important}
.w3-text-grey,.w3-hover-text-grey:hover,.w3-text-gray,.w3-hover-text-gray:hover{color:#757575!important}
.w3-text-light-grey,.w3-hover-text-light-grey:hover,.w3-text-light-gray,.w3-hover-text-light-gray:hover{color:#f1f1f1!important}
.w3-text-dark-grey,.w3-hover-text-dark-grey:hover,.w3-text-dark-gray,.w3-hover-text-dark-gray:hover{color:#3a3a3a!important}
.w3-border-red,.w3-hover-border-red:hover{border-color:#f44336!important}
	
	
/*class="responsive" makes size change with browser width*/
.responsive {
	max-width: 100%;
	height: auto;
}

/*How to Order spacing*/
div.a1 {
    line-height: normal;
	padding: 10px 25px 25px 25px;
}

/*prod.html*/
div.a2 {
    line-height: normal;
	padding: 10px 0px 0px 25px;
}


/*overview text*/
div.b1 {
    line-height: 140%;
	padding: 0px 10px 15px 25px;
}

/*links on index page*/
div.b2 {
    line-height: 125%;
	padding: 20px 0px 0px 25px;
}

/*links on index page*/
div.b3 {
    line-height: 125%;
	padding: 5px 0px 20px 25px;
}

/*Buy/Get Quote EC pages*/
div.c1 {
	padding: 21px 0px 0px 85px;
}

/*icons downloads & related prods*/
div.d1 {
    line-height: normal;
	padding: 20px 60px 0px 32px;
}

/*icons downloads & related prods*/
div.d1a {
    line-height: 15%;
	padding: 20px 0px 0px 32px;
}

/*icons downloads & related prods*/
div.d2 {
    line-height: 15%;
	padding: 0px 61px 40px 27px;
}

/*icons downloads & related prods*/
div.d2a {
    line-height: 100%;
	padding: 0px 0px 40px 27px;
}

/*icons downloads & related prods*/
div.d2b {
    line-height: 75%;
	padding: 0px 61px 40px 27px;
}

/*Text spacing*/
div.d3 {
    line-height: 140%;
}

/*Text spacing*/
div.d4 {
    line-height: normal;
}

/*bullets*/
div.e1 {
    line-height: 220%;
	padding: 30px 0px 90px 25px;
}

/*bullets*/
div.e2 {
    line-height: 220%;
	padding: 0px 0px 90px 5px;
}

/*bullets*/
div.e3 {
    line-height: 200%;
	padding: 10px 0px 30px 40px;
}

/*sim.html*/
div.e1a {
    line-height: 180%;
	padding: 30px 0px 90px 25px;
}

/*sim.html*/
div.e2a {
    line-height: 180%;
	padding: 0px 0px 90px 0px;
}

/*sim.html*/
div.e3a {
    line-height: 160%;
	padding: 10px 0px 30px 40px;
}

/*Price title*/
div.f1 {
    line-height: normal;
	padding: 45px 0px 0px 0px;
}

/*Price title*/
div.f2 {
    line-height: normal;
	padding: 20px 0px 0px 65px;
}

/*Product pg title*/
div.f3 {
    line-height: 230%;
	padding: 25px 0px 0px 25px;
}

/*specs*/
div.g1 {
    line-height: normal;
	padding: 0px 0px 0px 0px;
}

/*spec 1*/
div.g2 {
  	line-height: normal;
	padding: 25px 25px 0px 25px;
}

/*spec 1*/
div.g2a {
  	line-height: 120%;
	padding: 25px 25px 0px 25px;
}

/*spec 2*/
div.g3 {
  	line-height: normal;
	padding: 124px 25px 0px 25px;
}

/*sci, test, etc.*/
div.g4 {
	padding: 30px 25px 0px 75px;
	line-height: 120%;
}

/*rep page*/
div.g4a {
  	padding: 30px 0px 0px 25px;
	line-height: 120%;
}

/*sci, test, etc.*/
div.g4b {
  	padding: 30px 25px 0px 25px;
	line-height: 120%;
}

/*About SRS*/
div.g4c {
	padding: 0px 25px 0px 0px;
	line-height: 95%;
}


/*sci, test, etc.*/
div.g5 {
  	padding: 0px 0px 0px 50px;
}

/*datassheet*/
div.g5a {
  	padding: 30px 0px 0px 50px;
	line-height: 90%;
}

/*datassheet*/
div.g5b {
  	padding: 30px 25px 0px 50px;
	line-height: 100%;
}

/*Prod Pg Pics Backgound*/
div.h1 {
  	background-color: rgb(226,244,235);
  	padding: 5px 5px 5px 5px;
}

/*Prod Pg Pics Backgound*/
div.h2 {
    background-color: rgb(39,96,164);
  	padding: 1px 1px 1px 1px;
}

/*Splash Pic Index pg*/
div.i1 {
    margin: 55px 30px 0px 30px;
}

/*SRS Manufactures and Designs ...*/
div.j1 {
    line-height: 100%;
	padding: 3px 0px 0px 0px;
}

/*navigation line*/
div.n1 {
    line-height: 180%;
	padding: 0px 0px 10px 25px;
}

/*About SRS*/
div.n1a {
    line-height: 100%;
	padding: 10px 0px 0px 25px;
}

/*Sci - Pic*/
div.o1 {
    line-height: 100%;
	padding: 25px 0px 0px 0px;
}

/*NASA - links*/
div.p1 {
    line-height: 175%;
	padding: 20px 0px 0px 50px;
}

div.p2 {
    line-height: 200%;
	padding: 20px 0px 0px 75px;
}

/*Overview*/
div.q1 {
    line-height: 100%;
	padding: 0px 25px 5px 25px;
}

/*vertical line*/
div.v1 {
  border-left: 1px solid black;
  padding: 0px 0px 0px 0px;
}

/*Spec footer*/
div.x1 {
    line-height: 150%;
	padding: 0px 0px 20px 25px;
}

/*buy online & get a quote buttons*/
.w3-button {
	width:105px;
	Height: 30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px; 
	font-style: normal;
	color: fff; 
}

/*navigation link*/
a:link {
color:rgb(123,168,246);
text-decoration: none;
outline: none;
}

a:visited {
color: rgb(123,168,246);
text-decoration: none;
outline: none; 
}

a:hover {
color: rgb(7,64,167);
text-decoration: none;
outline: none; 
} 

a:active {color:rgb(7,64,167);
text-decoration: none;
outline: none; 
}

/*common downloads link*/
a.class1:link { 
color: rgb(120,137,175);
text-decoration: none;
outline: none;
}

a.class1:visited {
color: rgb(120,137,175);
text-decoration: none;
outline: none; 
}

a.class1:hover {
color: rgb(33,65,139);
text-decoration: none;
outline: none; 
} 

a.class1:active {
color: rgb(33,65,139);
text-decoration: none;
outline: none; 
}

/*Footer link*/
a.class2:link { 
color: rgb(35,54,88);
text-decoration: none;
outline: none;
}

a.class2:visited {
color: rgb(35,54,88);
text-decoration: none;
outline: none; 
}

a.class2:hover {
color: rgb(149,162,184);
text-decoration: none;
outline: none; 
} 

a.class2:active {
color: rgb(149,162,184);
text-decoration: none;
outline: none; 
}

/*Header link*/
a.class3:link { 
color: rgb(255,255,255);
text-decoration: none;
outline: none;
}

a.class3:visited {
color: rgb(255,255,255);
text-decoration: none;
outline: none; 
}

a.class3:hover {
color: rgb(180,180,180);
text-decoration: none;
outline: none; 
} 

a.class3:active {
color: rgb(180,180,180);
text-decoration: none;
outline: none; 
}

/*navigation link*/
a.class4:link { 
color: rgb(75,114,203);
text-decoration: none;
outline: none;
}

a.class4:visited {
color: rgb(75,114,203);
text-decoration: none;
outline: none; 
}

a.class4:hover {
color: rgb(143,181,250);
text-decoration: none;
outline: none; 
} 

a.class4:active {
color: rgb(143,181,250);
text-decoration: none;
outline: none; 
}

/*navigation link*/
a.class5:link { 
color: rgb(33,65,139);
text-decoration: none;
outline: none;
}

a.class5:visited {
color: rgb(33,65,139);
text-decoration: none;
outline: none; 
}

a.class5:hover {
color: rgb(113,139,198);
text-decoration: none;
outline: none; 
} 

a.class5:active {
color: rgb(113,139,198);
text-decoration: none;
outline: none; 
}

/*tech support link*/
a.class6:link { 
color: rgb(33,65,139);
text-decoration: none;
outline: none;
}

a.class6:visited {
color: rgb(33,65,139);
text-decoration: none;
outline: none; 
}

a.class6:hover {
color: rgb(113,139,198);
text-decoration: none;
outline: none; 
} 

a.class6:active {
color: rgb(113,139,198);
text-decoration: none;
outline: none; 
}

body {
	-webkit-text-size-adjust: 100%;
	max-width: 1080px;
	margin: 0 auto !important;
	float: none !important;

}

#container {
	position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -540px;
}


.Bullets2021 {font-family: Arial, Helvetica, sans-serif; font-size: 26px; font-stretch: semi-condensed; font-style: normal; font-weight: 100; color: rgb(120,137,175)}
.SmallBullets2021 {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-stretch: semi-condensed; font-style: normal; font-weight: 100; color: rgb(120,137,175)}
.SmallBullets2021a {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-stretch: semi-condensed; font-style: normal; font-weight: 100; color: rgb(33,65,139)}
.captions2021 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; color: rgb(35,54,88)}
.captionsblack2021 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; color: rgb(0,0,0)}
.Phone2021 {font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-style: normal; font-weight: normal; color: rgb(255,255,255)}

.Price2021 {font-family: Arial, Helvetica, sans-serif; font-size: 24px; font-style: italic; font-weight: 500; color: rgb(165,38,8)}
.Pricea2021	{font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-style: italic; font-weight: 500; color: rgb(165,38,8)}
.SmallPrice2021 {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-style: italic; font-weight: 500; color: rgb(165,38,8)}
.ProdPgTITLESa2021 {font-family: Arial, Helvetica, sans-serif; font-size: 46px; font-stretch: semi-condensed; font-style: normal; font-weight: 100; color: rgb(33,65,139)}
.ProdPgTITLESb2021 {font-family: Arial, Helvetica, sans-serif; font-size: 24px; font-stretch: semi-condensed; font-style: normal; font-weight: 500; color: rgb(33,65,139)}
.ProdPgTITLESc2021 {font-family: Arial, Helvetica, sans-serif; font-size: 30px; font-stretch: semi-condensed; font-style: normal; font-weight: 500; color: rgb(33,65,139); line-height: 120%;}
.ProdPgTITLESd2021 {font-family: Arial, Helvetica, sans-serif; font-size: 36px; font-stretch: semi-condensed; font-style: normal; font-weight: 100; color: rgb(33,65,139)}
.ProdPgTITLESe2021 {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-stretch: semi-condensed; font-style: normal; font-weight: 500; color: rgb(33,65,139)}
.ProdPgTITLESf2021 {font-family: Arial, Helvetica, sans-serif; font-size: 18px; font-stretch: semi-condensed; font-style: normal; font-weight: 500; color: rgb(33,65,139)}
.NewProd2021 {font-family: Arial, Helvetica, sans-serif; font-size: 24px; font-stretch: semi-condensed; font-style: italic; font-weight: 100; color: rgb(33,65,139)}
.NewProdSmall2021 {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-stretch: semi-condensed; font-style: italic; font-weight: 100; color: rgb(33,65,139)}



.IconDrop2021 {font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-stretch: semi-condensed; font-style: normal; font-weight: 500; color: rgb(33,65,139)}
.Pictures2021 {font-family: Arial, Helvetica, sans-serif; font-size: 18px; font-style: normal; color: rgb(35,54,88)}
.IconTITLES2021 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; font-weight: bold; color: rgb(87,111,154)}
.TextTITLESa2021 {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-stretch: semi-condensed; font-style: normal; font-weight: 500; color: rgb(33,65,139)}
.TextTITLESb2021 {font-family: Arial, Helvetica, sans-serif; font-size: 20px; font-style: normal; font-weight: 500; color: rgb(33,65,139)}
.Text2021 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; color: rgb(25,25,25)}
.BlueText2021 {font-family: Arial, Helvetica, sans-serif; font-size: 16px; color: rgb(33,65,139)}
.SmallText2021 {font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-style: normal; color: rgb(50,50,50)}
.MedText2021 {font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; color: rgb(50,50,50)}
.Tag2021 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: italic; color: rgb(50,50,50)}


.Specs2021 {font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-style: normal; color: rgb(25,25,25)}
.SmallSpecs2021 {font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-style: italic; color: rgb(0,0,0)}
.SpecsColor2021 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; color: rgb(33,65,139)}
.BuyQuote2021 {font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-weight: 500; color: rgb(255,255,255)}
.RMA2021 {font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-weight: 500; color: rgb(255,255,255)}
.FooterTITLES2021 {font-family: Arial, Helvetica, sans-serif; font-size: 14.5px; font-style: normal; font-weight: 500; color: rgb(0,0,0)}
.FooterSmall2021 {font-family: Arial, Helvetica, sans-serif; font-size: 14.5px; font-style: normal; font-weight: 500; color: rgb(35,54,88)}

/*Rep drop down menu*/
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 5px 5px 5px 5px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #ddd}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
