﻿/* 2021.12.19 */

ul.tabs {
  font-size: 0;
  height: 22px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
  }

ul.tabs li {
  float:left;
  margin: 0;
  margin-right: 3px; /*distance between tabs*/
  }
        
ul.tabs li a {
  background: #F0F0F0 url(tabbg.gif) 0 0 repeat-x;
  border: 1px solid lightgray;
  border-bottom-color: lightgray;
  border-radius: 3px 3px 0 0;
  color: #000;
  display: block; 
  font: normal 11px Arial;
  padding: 4px 16px;
  text-decoration: none;
  }
    
ul.tabs li a:visited {
  color: #000;
  }
        
ul.tabs li a:hover {
  background:#F0F0F0 url(tabbg.gif) 0 -36px repeat-x;
  border: 1px solid lightgray;
  }
        
ul.tabs li.selected a, ul.tabs li.selected a:hover {
  background: white;
  border: 1px solid lightgray;
  border-bottom-color: white;
  font-weight: bold;
  }
        
ul.tabs li.selected a:hover {
  text-decoration: none;
  }
     
div.tabcontents {
  background-color: #FFF;
  border: 1px solid lightgray;
  padding: 12px;
  width: 712px;
  }
