/* multibox *******************************************/

/* multibox menu */

.tab-buttons-panel {
  display:block;
  width:100%;
  height:21px;
  margin:0;
  padding:0;
  position:relative;
  z-index:5;
}

.tab-buttons-panel li {
  display:block;
  float:left;
  height:21px;
  margin:0 2px 0 0;
  padding:0;
  font-size:11px;
  font-weight:bold;
  color:#fff;
  cursor:pointer;
  cursor:hand;
}
.tab-buttons-panel li.active {
  color:#a7931d;
}

.tab-buttons-panel li span.multi_left {
  display:block;
  float:left;
  width:10px;
  height:21px;
	background:url(../images/multi_left.png) left top no-repeat;
}

.tab-buttons-panel li span.multi_center {
  display:block;
  float:left;
  width:auto;
  height:21px;
  line-height:20px;
  padding:0 2px;
	background:url(../images/multi_center.png) left top repeat-x;
}

.tab-buttons-panel li span.multi_right {
  display:block;
  float:left;
  width:10px;
  height:21px;
	background:url(../images/multi_right.png) left top no-repeat;
}

.tab-buttons-panel li.active span.multi_left {
	background:url(../images/multi_left_active.png) left top no-repeat;
}

.tab-buttons-panel li.active span.multi_center {
	background:url(../images/multi_center_active.png) left top repeat-x;
}

.tab-buttons-panel li.active span.multi_right {
	background:url(../images/multi_right_active.png) left top no-repeat;
}


/* multibox content */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  width:271px;
  padding:15px;
  position:relative;
  top:-1px;
  z-index:1;
  border:1px solid #B9C2B6;
  background:#F1F2ED;
}

.tab-content li.right {
  display:block;
  clear:both;
  float:none;
  width:271px;
  height:20px;
  margin:10px 0 0 0;
  text-align:right;
}




























