label:hover {
  background-color: powderblue;
}
a.tooltip {
  text-decoration: none;
  color: blue;
}
a.tooltip:hover {
  background: lightyellow;
  text-decoration: none;
} 
a.tooltip span {
  display: none; 
  padding: 2px 3px; 
  margin-left: 8px; 
}
a.tooltip:hover span{
  display: inline; 
  position: absolute; 
  background: lightyellow; 
  border: 1px solid navy; 
  color: blue;
  text-align: left;
}
input.csubmit:hover {
  background-color: turquoise;
}

.clsSpanWrap {
  /* wrap long urls */
  white-space: pre;           /* CSS 2.0 */
  white-space: pre-wrap;      /* CSS 2.1 */
  white-space: pre-line;      /* CSS 3.0 */
  white-space: -pre-wrap;     /* Opera 4-6 */
  white-space: -o-pre-wrap;   /* Opera 7 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: -hp-pre-wrap;  /* HP Printers */
  word-wrap: break-word;      /* IE 5+ */
}

.clsTable{
  background-color: #888888;
  border-width: 0px;
  border-style: solid;
  border-color: #000000;
}

.clsTblHeader {
  background-color: khaki;
  font-size: 80%;
  font-weight: bold;
  color: #333333;
  border-width: 0px;
  border-style: solid;
  text-align: center;
}
.clsTblHeaderSub {
  background-color: papayawhip;
  font-size: 80%;
  color: #333333;
  border-width: 0px;
  border-style: solid;
  text-align: center;
}
.clsTblCell {
  background-color: floralwhite;
  font-size: 80%;
  color: #333333;
  border-width: 0px;
  border-style: solid;
}
.clsTblCell2 {
  background-color: papayawhip;
  font-size: 80%;
  color: #333333;
  border-width: 0px;
  border-style: solid;
}

.clsTblIV {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.FreezePaneOff {
  visibility: hidden;
  display: none;
  position: absolute; 
  top: -100px;
  left: -100px;
}

.FreezePaneOn {
  overflow : hidden;
  position: absolute; 
  top: 0px;
  left: 0px;
  visibility: visible;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #666;
  z-index: 999;
  filter: filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
  padding-top: 20%;
  zoom: 1;
}

.InnerFreezePane {
  text-align: center;
  width: 40%;
  background-color: navy;
  color: yellow;
  font-size: large;
  border: solid 2px khaki;
  padding: 9px;
}

input[type="text"]:focus {
   background-color: #DDFFDD;
}
textarea:focus {
   background-color: #DDFFDD;
}
select:focus {
   background-color: #DDFFDD;
}
.clsValue {
  z-index : 1;
  background-color: #ececec;
  color: black;
  border: solid;
  border-color: darkgray;
  border-width: 1px;
  padding: 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: small;
}
.clsHeaderText {
  font-size: small;
}
.clsHeaderErrorText {
  font-size: small;
  font-weight: bold;
  color: red;
}
.clsHeaderInfoText {
  font-size: small;
  font-weight: bold;
  color: blue;
}
.clsTotaAmountText {
  font-size: 125%;
  color: blue;
}

.input-line {
  position:relative;
}

.guide-tip {
  display:none;
  bottom:-56px;
  z-index:2000;
  position:absolute;
  width:105px;
  padding:5px 5px;
  margin: 10px 0px;
  background:paleturquoise;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,.1);
  color:black;
  font-size:1em;
}

.guide-tip .arrow {
  position:absolute;
  top:-20px;
  left:15px;
  z-index:1000;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 20px solid paleturquoise;
}

.guide-tip .arrow.border {
  top:-21px; left:14px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 21px solid powderblue;
}

.clsBlinkBtn {
  animation: blink 1s linear infinite normal;
  -webkit-animation: blink 1s linear infinite normal;
  -moz-animation: blink 1s linear infinite normal;
  -o-animation: blink 1s linear infinite normal;
}
.clsBlinkBtn:hover {
  animation:none;
  -webkit-animation:none;
}

@keyframes blink{
  0% {background-color:#F88017;}
  10% {background-color:#F8D1AE;}
  100% {background-color:#F88017;}
}
@-webkit-keyframes blink{
  0% {background-color:#F88017;}
  10% {background-color:#F8D1AE;}
  100% {background-color:#F88017;}
}
@-moz-keyframes blink{
  0% {background-color:#F88017;}
  10% {background-color:#F8D1AE;}
  100% {background-color:#F88017;}
}
@-o-keyframes blink{
  0% {background-color:#F88017;}
  10% {background-color:#F8D1AE;}
  100% {background-color:#F88017;}
}
