StyleSheetソース

/*********************************************
 内容エリア
*********************************************/
.body{
  border-left:      1px solid #919B9C;
  border-right:     1px solid #919B9C;
  border-bottom:    1px solid #919B9C;
  padding:          5px;
  height:           100%;
}

/*********************************************
 タブエリア
*********************************************/
#tabAreaPane{
  width:            100%;
  height:           25px;
  margin:           0px;
  border-bottom:    1px solid #919B9C;
}

#tabAreaPane DIV{
  width:            100px;
  height:           100%;
  border:           1px solid #919B9C;
  background-color: #FFFFFF;
  margin-left:      0px;
  margin-right:     2px;
  cursor:           pointer;
  position:         relative;
  bottom:           -1px;
  float:            left;
  text-align:       center;
}

#tabAreaPane SPAN{
  font-family:      arial;
  vertical-align:   top;
  width:            100%;
  line-height:      1.5em;
}

/*********************************************
 マウスが乗った時のタブ
*********************************************/
#tabAreaPane .overTab{
  border-top:       2px solid #FF0000;
}

/*********************************************
 マウスが離れた時のタブ
*********************************************/
#tabAreaPane .outTab{
  border-top:       1px solid #919B9C;
}

/*********************************************
 指定されているタブ
*********************************************/
#tabAreaPane .activeTab{
  border-top:       3px solid #FF0000;
  border-bottom:    none;
}