a { text-decoration: underline; color: #000099; font-family: Arial; font-size: 10pt; }
a:active { color: #000099; }
a:visited { color: #000099; }
a:hover { text-decoration: underline; color: #000099; }

root { 
  display: block;
}

html {
  overflow: -moz-scrollbars-vertical;
  overflow-y: scroll;
}

body {
  margin: 0px;
  background-color: white;
  color: #666666;
}

.CustomButton1 {
  height: 38px;
  border: 0px;
  border-radius: 4px;
  background-color: #4169E1;
  font-family: Arial; 
  font-size: 14pt;
  color: #fff;
  cursor: pointer;
}
.CustomButton1:hover {
  background-color: steelblue;
}

.SectionPanel {
  margin: auto;
  width: 350px;
  text-align: left;
}

.InputBox {
  border: 2px solid lightslategray;
  border-radius: 4px;
  font-family: Arial; 
  font-size: 14pt; 
  height: 34px;
  background-color: #fff;
  padding-left: 5px;
}
.InputBox:focus { 
  border: 2px solid #4169E1; 
  background-color: #f0f0f0;
}
.InputBox2 { /* same as above except focus color is opposite */
  border: 2px solid lightslategray;
  border-radius: 4px;
  font-family: Arial; 
  font-size: 14pt; 
  height: 26px;
  background-color: #f0f0f0;
  padding-left: 5px;
}
.InputBox2:focus { 
  border: 2px solid #4169E1; 
  background-color: #fff;
}
.SelectBox {
  border: 2px solid lightslategray;
  border-radius: 4px;
  font-family: Arial; 
  font-size: 13pt; 
  height: 26px;
  background-color: #fff;
}
.SelectBox:focus { 
  border: 2px solid #4169E1; 
  background-color: #f0f0f0;
}

#MainFooter {
   position:fixed;
   left:0px;
   bottom:0px;
   height:40px;
   width:100%;
   background:#fff;
   padding: 4px 6px 6px 12px; 
   font-size: 10pt;
}

.CellDiv1 {
  padding: 12px 3px 0px 0px;
  vertical-align: top;
}
.CellDiv2 {
  padding: 0px 3px 0px 0px;
  border-bottom: 1px solid #c0c0c0;
  vertical-align: top;
}
