ul.tabs {
    list-style: none;
    height: 32px;
    text-align: center;
}

ul.tabs li { /* float: left; */
    height: 32px;
    line-height: 32px;
    border: 1px solid #999;
    border-left: none;
    background: #e0e0e0;
    display: inline;
    padding: 7px 0px;
}

body.body-ltr ul.tabs li {
    border-left: 1px solid #999;
    border-right: none;
}

ul.tabs li.last { /* float: left; */
    border-left: 1px solid #999;
}

body.body-ltr ul.tabs li.last {
    border-right: 1px solid #999;
}

ul.tabs li a {
    text-decoration: none;
    color: #333;
    padding: 5px 12px;
}

ul.tabs li a:hover { /* background: #ccc; */
    color: black;
}

ul.tabs li.active,ul.tabs li.active a:hover {
    background: #fff;
    border-bottom: 1px solid #fff;
}

.tab-container {
    border: 1px solid #999;
    border-top: none;
    background: #fff;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.tab-content {
    padding: 20px;
    text-align: center;
}