/* 此样式支持页面的左右两栏设计 */

/*  因为主页面Default.aspx的Pane是RunAtServer的，因此不能使用#作为ID来指定CSS */

/*  重要：右侧面板的宽度，需要调整左右空白,微调到理想的结果 
    右侧如果仅需要1栏，请放在TopPane。ContentPane和RightPane可以按需调整。会影响所有页面。
 */

.LeftPane
{
    width: 0px;
    margin-right: 0px;
}

.ContentArea
{
    width: 950px;
    margin-left: 0px;
    overflow: hidden;
}

.TopPane
{
    display: block;
    width: 100%;
}

.ContentPane
{
    width: 350px;
    margin-right: 5px;
}


.RightPane
{
    width: 590px;
    margin-left: 5px;
}



