/*
Tabs styles
*/

#tabs {
  position:relative;
  width:180px;
  /*height:90px;*/
  overflow:hidden;
}

.tabs_title {
  list-style-image: none;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  height: 24px;
}

.tabs_title li {
  float: left;
  background-color: #fff;
  padding: 2px 8px 2px 8px;
  margin-right: 2px;
  cursor: pointer;
  color: #666;
  font-family: "Trebuchet MS";
  font-size: 12px;
  height: 24px;
  line-height: 24px;
}

.tabs_title a {
  text-decoration:none;
  color: #fff;
}

.tabs_title li.over {
  /*font-weight: bold;*/
}

.tabs_title li.active {
  background-color: #E4E4E4;
}

.tabs_panelwrap {
  /*position: absolute;*/
  top:28px;
  overflow: hidden;
  width:179px;
  /*height:60px;*/
  background-color: #E4E4E4;
}

.tabs_panel {
  /*position:absolute;
  top:28px;*/
  width:179px;
  /*height:50px;*/
  display:none;
  /*overflow: auto;*/
  background-color: #E4E4E4;
  color: #fff;
  clear: both;
}

.tabs_panel.active {
  display: block;
}

.tabs_panel p {
  margin-left:5px;
}

