﻿ /* 选项卡样式 */    
.AjaxTabStrip .ajax__tab_tab
{
    font-size: 12px;
    padding: 2px;
    width: 105px;  /* Your proper width */
    height:16px;   /* Your proper height */
    background-color: #CCCCCC;
    float:left;
    border:solid 1px #888888;
    border-bottom-color:#ccc;
}
/* When mouse over */
.AjaxTabStrip .ajax__tab_hover .ajax__tab_tab
{
    font-weight:bold;
    text-decoration: underline;
}
/* 选中的选项卡 */
.AjaxTabStrip .ajax__tab_active .ajax__tab_tab
{
    background-color: #888888;
    font-weight:bold;
    border:solid 1px #888888;
    border-bottom-color:#ccc;
}
/* TabPanel Content选项卡内容面板样式 */
.AjaxTabStrip .ajax__tab_body
{
    border: 1px solid #888888;
    padding:20px;
    background-color: #ffffff;
    margin-right: 0px; /* Your proper right-margin, make your header and the content have the same width */
    margin-left:0;
    width:660px;
    margin:0 auto;
    overflow:auto;
    float:left;
}