@charset "utf-8";
/* CSS Document */

.tab_area{
    overflow:hidden;
    display:table;
    margin:0;
		padding:0;
   }
     
.tab_area li{
    /*Tabの装飾*/
    width:139px; 
    height:45px;
		line-height:45px;
    text-align:center;
		margin-right: 10px;
    cursor: pointer; 
    vertical-align:middle;
		float:left;  
    color:#333333;
    background-color:#e1e1e1;
		-webkit-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
		-moz-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
		border-radius: 10px 10px 0 0 / 10px 10px 0 0;
    }
     
.all_area { 
    overflow: hidden;
    }
     
.all_area div.content_area{
    /*Tabの内容を表示するエリアの装飾*/
    /*background:#ffffff; */
    /*padding:10px 10px 10px 2px;*/  
    /*border-top: 1px dotted #bbbbbb;*/
    }
 
.tab_area li.select{
    /*アクティブタブの装飾*/
    background-color:#261f4d; 
    background-image:none; 
    color:#fff;
    }
     
.hide{display:none;}