/* 
    Document   : tab
    Created on : 2014/05/22, 18:38:33
    Author     : nagamine
    Description:
        Purpose of the stylesheet follows.
*/

.full_content {
        display:table;
        position:relative;
        width:93%;
        min-width:868px;
        margin:20px;
}
.tab-menu{
        width:100px;
        height:25px;
        background:#BBB;
        float:left;
        list-style:none;
        padding:10px 0 0;
        margin-left:2px;
        text-align:center;
        display:block;
        cursor: pointer;
        color:#FFF;
}
.tab-menu:first-child {
        margin-left:0;
}
.tab-active {
        background:#555;
        font-weight:bold;
}
.hover{
        background:#999;  
}
.tab-content {
    display:table;
        width:100%;
        height:100%;
        border:#555 5px solid;
        background:#FFF;
        top:32px;
        left:0;
        padding:10px;
        position:absolute;
}

