/* Auto Tab Handler */
* { margin: 0; padding: 0; }
#wrap {
   width: 0;
   /* font-size: 1.2em; */
   margin: 0;
}
.tabbed-box {
   width: 0;
   /* background: #fff repeat-x bottom; */
   /* border: 1px solid #ddd; */
}
.tabbed-box .tabs li {
   list-style: none;
   float: left;
}
.tabbed-box .tabs li a {
   display: block;
   width: 0;
   padding: 0 0;
   font-weight: bold;
   text-align: center;
   text-decoration: none;
   color: #888;
   background: #fff repeat-x bottom; 
   border-left: 1px solid #ddd;
   border-bottom: 1px solid #ddd;
}
.tabbed-box .tabs li:first-child a {
   border-left: none;
}
.tabbed-box .tabs li a:hover {
   color: #333;
}
.tabbed-box .tabs li a:focus {
   outline: none;
}
.tabbed-box .tabs li a.active, .tabbed-box .tabs li a.active:hover {
   background: #fff;
   color: #333;
   border-bottom: 1px solid #fff;
}
.tabbed-content {
   padding: 0 0 0 0;
   display: none;
}