/*
 * tabs.css
 * Copyright (c) 2006 Scalix Corporation - All rights reserved
 * Author: Julien Lecomte
 */

.tab {
  font-family:tahoma, helvetica, arial, sans-serif;
  font-size:11px;
  color:black;
  font-weight:normal;
  font-style:normal;
  background-color:#DAD4C2;
  border-style:solid;
  border-width:1px;
  border-color:#949A9C #949A9C #F2EDED #949A9C;
  padding:3px 8px 4px 8px;
  position:absolute;
  z-index:0;
  cursor:default;
}

.tab_selected {
  font-family:tahoma, helvetica, arial, sans-serif;
  font-size:11px;
  color:black;
  font-weight:normal;
  font-style:normal;
  background-color:#F2EDED;
  border-style:solid;
  border-width:1px;
  border-color:#949A9C #949A9C #F2EDED #949A9C;
  padding:3px 8px 4px 8px;
  position:absolute;
  z-index:2;
  cursor:default;
}

.tab_pane {
  background-color:#F2EDED;
  border-style:solid;
  border-width:1px;
  border-color:#949A9C;
  padding:5px;
  z-index:1;
}
