<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * SmartTab plugin v2.0
 * jQuery Tab Control Plugin
 *
 * by Dipu Raj
 * http://techlaboratory.net/smarttab
 *
 * License
 * http://creativecommons.org/licenses/by-sa/3.0/
 */
.stMain {
  display:block;
  margin:0;
  padding:0;
  color: #282828;/*#666666;*/
  border: 0px solid #CCC;
  /*font-family: "Segoe UI",Tahoma,arial,sans-serif;*/
  /*font-size: 100%;*/
  width:960px;
}
.stContainer {
  display:block;
  margin:0;
  padding:0;
  border: 1px solid #CCC;
  height:450px;
  overflow:hidden;
  position: relative;
  min-height: 300px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.stMain div.tabContent {
  display:block;
  /*position: absolute;*/
  margin:0;
  padding:10px;
  border: 0px solid #D4D4D4;
  background-color: #FFF;
  text-align:left;
}
.stMain ul.tabAnchor {
  display: inline-block;
  list-style-type: none;
  position:relative;
  padding:0;
  margin:0;
  margin-left: 20px;
  clear: both;
  margin-bottom: -1px;
  z-index: 100;
  text-align: center;
}
.stMain ul.tabAnchor li{
  position: relative;
  margin: 0;
  padding: 0;
  float: left;
}
.stMain ul.tabAnchor li a {
  display:block;
  margin:0;
  margin-right: 3px;
  padding:5px;
  height:55px;
  width:200px;
  font-size: 15px;
  font-weight: bold;
  color:#666;
  text-decoration: none;
  outline-style:none;
  border: 1px solid #D4D4D4;
  background: #f6f6f6; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
}
.stMain ul.tabAnchor li a small {
  font-size:13px;
  font-weight: normal;
}
.stMain ul.tabAnchor li a:hover {
  color:#FFF !important;
  background: #800000;
}
.stMain ul.tabAnchor li a {
  color: #282828 !important;
}
.stMain ul.tabAnchor li a.sel, .stMain ul.tabAnchor li a.sel:hover {
  color:#660033 !important;
  border-bottom-color: #FFF;
  cursor:text;
  background: rgb(249,249,249); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(249,249,249,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,249,249,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom, rgba(249,249,249,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.loader{
  position: absolute;
  left:48%;
  top:40%;
  display:block;
  margin:0;
  padding:5px;
  padding-top: 35px;
  font-size: 10px;
  color:#666;
  text-decoration: none;
  outline-style:none;
  border: 1px solid #D4D4D4;
  background: #f6f6f6 url(../images/loader.gif) no-repeat 10px 10px ;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
a.stLinks {
  margin:0;
  padding:5px;
  color:#666;
  text-decoration: none;
  outline-style:none;
  border: 1px solid #D4D4D4;
  background-color: #f6f6f6;
 }
a.stLinks:hover {
  color:#FFF !important;
  background-color: #800000;
}</pre></body></html>