@charset "utf-8";
/*------------------------------------------------------------------------------
 * 画面スタイル
 *----------------------------------------------------------------------------*/
html {
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "ＭＳ Ｐゴシック";
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    background-color: #FFFFFF;
    -webkit-text-size-adjust: 100%;
    text-align: left;
}

form {
    margin: 0px;
}

img {
    border-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
}

input,select,textarea {
    font-size: 99%;
    padding: 0.1em 3px;
}

input {
    line-height: 1.2;
}

/*------------------------------------------------------------------------------
 * キャンバススタイル
 *----------------------------------------------------------------------------*/
div.baseStyle body,div.baseStyle input,div.baseStyle textarea,div.baseStyle th,div.baseStyle td
    {
    font-size: 13px;
    font-family: "ＭＳ Ｐゴシック";
}

/*------------------------------------------------------------------------------
 * 汎用スタイル
 *----------------------------------------------------------------------------*/
/* ボタン：極小 */
.btnMinimum {
    width: 35px;
    height: 22px;
}
/* ボタン：小 */
.btnSmall {
    width: 55px;
    height: 22px;
}
/* ボタン：標準 */
.btnNormal {
    width: 95px;
    height: 22px;
}
/* ボタン：大 */
.btnLarge {
    width: 155px;
    height: 22px;
}

.hankaku {
    ime-mode: disabled;
}

.defHankaku {
    ime-mode: inactive;
}

.zenkaku {
    ime-mode: active;
}

/* プロテクトフィールド背景色 */
.protect {
    background-color: #E0E0E0;
}

/* 読取り専用 */
.readonly {
    border: 0px solid;
    background-color: inherit;
}

/* 中央寄せ */
.acenter {
    text-align: center;
}
/* 左寄せ */
.aleft {
    text-align: left;
}
/* 右寄せ */
.aright {
    text-align: right;
}
/* 通常メッセージ */
span.messageInfo {
    color: #0000FF;
    font-size: 15px;
}
/* エラーメッセージ */
span.messageError {
    color: #FF0000;
    font-size: 15px;
}
/* 警告メッセージ */
span.messageWarn {
    color: #FF9900;
    font-size: 15px;
}

/*------------------------------------------------------------------------------
 * テーブル表示
 *----------------------------------------------------------------------------*/
/*
table.tableStyle {
}
*/

/*------------------------------------------------------------------------------
 * 入力系テーブル
 *----------------------------------------------------------------------------*/
/* テーブル（項目） */
table.item {
    width: 100%;
    /* border: 1px solid #E0E0E0; */
    border: none;
    border-collapse: collapse;
}

/* テーブル（項目）ヘッダ */
table.item th {
    vertical-align: middle;
    background-color: #C8DDFF;
    color: #000000;
    font-weight: bold;
    border: 1px solid #FFFFFF;
    padding: 3px 5px 3px 5px;
    white-space: nowrap;
    background-color: #C8DDFF;
    text-align: center;
    line-height: 25px;
}

/* テーブル（項目）データ */
table.item td {
    vertical-align: middle;
    empty-cells: show;
    word-wrap: break-word;
    padding: 3px 5px 3px 5px;
    white-space: nowrap;
    line-height: 25px;
    border: 1px solid #FFFFFF;
}

/* テーブル（項目）奇数行データ */
table.item tr.odd {
    background-color: #FFFFFF;
}

/* テーブル（項目）偶数行データ */
table.item tr.even {
    background-color: #E6EEFF;
}

/* テーブル（項目）数値データ */
table.item td.num {
    text-align: right;
}

/*------------------------------------------------------------------------------
 * 一覧系テーブル
 *----------------------------------------------------------------------------*/
/* テーブル（一覧） */
table.list {
    width: 100%;
    border: 1px solid #D3D3D3;
    border-collapse: collapse;
}

table.list thead th {
    text-align: center;
    background-color: #e9f2fe;
}

table.list tbody th {
    background-color: #e9f2fe;
}

/* テーブル（一覧）ヘッダ */
table.list th {
    vertical-align: middle;
    background-color: #CDCDCD;
}

/* テーブル（一覧）データ */
table.list td {
    vertical-align: middle;
    empty-cells: show;
    word-wrap: break-word;
}

table.list th,table.list td {
    line-height: 22px;
    border: 1px solid #D3D3D3;
    padding: 2px 2px 2px 2px;
}

/* テーブル（一覧）数値データ */
table.list td.num {
    text-align: right;
}

/* テーブル（一覧）奇数行データ */
table.list tr.odd {
    background-color: #f2faff;
}

/* テーブル（一覧）偶数行データ */
table.list tr.even {
    background-color: #FFFFFF;
}

/* テーブル（一覧）選択データ */
table.list tr.select {
    background-color: #7FFFD4;
}

/* テーブル（一覧）マウスオーバー */
table.list tr.over,table.list tbody.over {
    background-color: #e6e6e6;
}

/* テーブル（一覧）明細展開データ */
table.list tr.open {
    background-color: #FFFFCC;
}

table.list th.ln,table.list td.ln {
    line-height: normal;
}

table.list th.la,table.list td.la {
    height: auto;
}

table.la td,table.la th {
    height: auto;
}

/*------------------------------------------------------------------------------
 * モーダル表示
 *----------------------------------------------------------------------------*/
div.modalStyle {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 400px;
    padding: 10px;
    background: #fff;
    border: 5px solid #eee;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    overflow: auto;
}

div.modalStyle #modalStyleClose {
    color: #FF0000;
    text-decoration: none;
}

.modalStyleBackground {
    opacity: 0;
    filter: alpha(opacity = 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    background: #000;
}

div.modalStyle ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

div.modalStyle li {
    list-style-type: none;
    border: none;
    border-bottom: 1px solid #C0C0C0;
}

div.modalStyle li a {
    display: block;
    color: #000000;
    font-size: 12px;
    text-decoration: none;
    background-color: #FFFFFF;
    line-height: 20px;
}

div.modalStyle li a:hover {
    color: #FFFFFF;
    background-color: #4d4d4d;
    text-decoration: none;
}
/*------------------------------------------------------------------------------
 * メニュー表示
 *----------------------------------------------------------------------------*/
/*
ul.menuStyles {
    margin: 0px;
    font-size: 15px;
    border: none;
}

ul.menuStyles .top {
    font-size: 15px;
    border-collapse: collapse;
    background-color: #FFFFFF;
    border: 1px solid #5389D6;
    text-align: center;
    color: #286BCC;
    line-height: 25px;
    width: 142px;
}

ul.menuStyles .open {
    background-color: #286BCC;
    color: #FFFFFF;
}

ul.menuStyles .select {
    background-color: #286BCC;
    color: #FFFFFF;
}

ul.menuStyle {
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 90;
    display: none;
    border-top: 1px solid #C0C0C0;
    border-left: 1px solid #C0C0C0;
    border-right: 1px solid #C0C0C0;
}

ul.menuStyle li {
    list-style-type: none;
    border: none;
    border-bottom: 1px solid #C0C0C0;
}

ul.menuStyle li a {
    display: block;
    width: 138px;
    _width: 140px;
    line-height: 25px;
    text-align: center;
    color: #003A91;
    background-color: #FFFFFF;
    text-decoration: underline;
    font-size: 12px;
}

ul.menuStyle li a:hover {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #5389D6;
}
*/

/*------------------------------------------------------------------------------
 * メニュー表示
 *----------------------------------------------------------------------------*/
div.menu {
    font-size: 15px;
    color: #286BCC;
    border: 1px solid #5389D6;
    background-color: #FFFFFF;
    cursor: pointer;
    /* 上右下左 */
    padding: 1px 0px 0px 1px;
    display: inline-block;
    /* IE7以下対応用 */
    *padding: 1px 0px 1px 1px;
    *display: inline;
    *zoom: 1;
}

div.menu .open {
    color: #FFFFFF;
    background-color: #5389D6;
}

div.menu .select {
    background-color: #286BCC;
    color: #FFFFFF;
}

div.menu div {
    float: left;
    overflow: hidden;
    text-align: center;
    line-height: 25px;
    border: none;
    background-color: #FFFFFF;
    /* 上右下左 */
    margin: 0px 1px 1px 0px;
    width: 140px;
    display: inline;
    /* Quirks対応用 */
    *overflow: inherit;
}

div.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    z-index: 90;
    background-color: #C0C0C0;
    display: none;
}

div.menu li {
    font-size: 12px;
    border: none;
    margin: 1px 1px 1px 1px;
    background-color: #FFFFFF;
    color: #003A91;
    white-space: nowrap;
}

div.menu a {
    font-size: 12px;
    border: none;
    margin: 1px 1px 1px 1px;
    background-color: #FFFFFF;
}

div.menu li a {
    display: block;
    color: #003A91;
    background-color: #FFFFFF;
    /* text-decoration: underline; */
    text-decoration: none;
}

div.menu li a:hover {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #5389D6;
}

/*------------------------------------------------------------------------------
 * スタイルボタン
 *----------------------------------------------------------------------------*/
a.btnStyle {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    vertical-align: bottom;
    font: 12px 'ＭＳ Ｐゴシック', Arial, Helvetica;
    border: 1px solid rgba(0, 0, 0, 0.3);
    /*
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    */
    box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 .05em rgba(0, 0, 0, 0.4);
}

a.btnStyle,.btnStyle span {
    -moz-border-radius: .3em;
    border-radius: .3em;
}

a.btnStyle span {
    /*
    border-top: 1px solid #FFFFFF;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    */
    display: inline;
    /*
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(0, 0, 0,
        0.05) ), color-stop(.25, transparent), to(transparent) ),
        -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(0, 0, 0,
        0.05) ), color-stop(.25, transparent), to(transparent) ),
        -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.75, transparent),
        color-stop(.75, rgba(0, 0, 0, 0.05) ) ),
        -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.75, transparent),
        color-stop(.75, rgba(0, 0, 0, 0.05) ) );
    background-image: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%,
        transparent 25%, transparent ),
        -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%,
        transparent ),
        -moz-linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75% ),
        -moz-linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%
        );
*/
    -moz-background-size: 3px 3px;
    -webkit-background-size: 3px 3px;
    background-size: 3px 3px;
}

a.btnStyle:hover {
    box-shadow: 0 0 .1em rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 .1em rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 .1em rgba(0, 0, 0, 0.4);
}

a.btnStyle:active {
    position: relative;
    top: 1px;
}

/*------------------------------------------------------------------------------
 * スタイルボタン（非活性）
 *----------------------------------------------------------------------------*/
a.btnDisabled {
    color: #808080;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #808080;
    text-decoration: none;
    background-color: #C0C0C0;
}

a.btnDisabled:hover {
    color: #808080;
    text-decoration: none;
    background: #C0C0C0;
}

a.btnDisabled:active {
    color: #808080;
    text-decoration: none;
    background: #C0C0C0;
}
/*------------------------------------------------------------------------------
 * スタイルボタン（青）
 *----------------------------------------------------------------------------*/
a.btnBlue {
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #5e8eed;
}

a.btnBlue:hover {
    color: #FFFFFF;
    text-decoration: none;
    border-style: solid;
    background: #d5dded;
    background: -webkit-gradient(linear, left top, left bottom, from(#5e8eed),
        to(#d5dded));
    background: -moz-linear-gradient(-90deg, #5e8eed, #d5dded);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.gradient(
          GradientType= 0, startColorstr= '#5e8eed', endColorstr= '#d5dded');
}

a.btnBlue:active {
    color: #003A91;
    text-decoration: none;
    background: #5e8eed;
}
/*------------------------------------------------------------------------------
 * スタイルボタン（オレンジ）
 *----------------------------------------------------------------------------*/
a.btnOrange {
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #FFA500;
}

a.btnOrange:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: #ffe5cc;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFA500),
        to(#ffe5cc));
    background: -moz-linear-gradient(-90deg, #FFA500, #ffe5cc);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.Gradient(
        GradientType= 0, StartColorStr= '#FFA500', EndColorStr= '#ffe5cc');
}

a.btnOorange:active {
    color: #FFFFFF;
    text-decoration: none;
    background: #FFA500;
}
/*------------------------------------------------------------------------------
 * スタイルボタン（シルバー）
 *----------------------------------------------------------------------------*/
a.btnSilver {
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #808080;
}

a.btnSilver:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: #C5C5C5;
    background: -webkit-gradient(linear, left top, left bottom, from(#808080),
        to(#C5C5C5));
    background: -moz-linear-gradient(-90deg, #808080, #C5C5C5);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.Gradient(
        GradientType= 0, StartColorStr= '#808080', EndColorStr= '#C5C5C5');
}

a.btnSilver:active {
    color: #FFFFFF;
    text-decoration: none;
    background: #808080;
}
/*------------------------------------------------------------------------------
 * スタイルボタン（赤）
 *----------------------------------------------------------------------------*/
a.btnRed {
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #E84B6E;
}

a.btnRed:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: #ffa899;
    background: -webkit-gradient(linear, left top, left bottom, from(#E84B6E),
        to(#ffa899));
    background: -moz-linear-gradient(-90deg, #E84B6E, #ffa899);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.Gradient(
        GradientType= 0, StartColorStr= '#E84B6E', EndColorStr= '#ffa899');
}

a.btnRed:active {
    color: #FFFFFF;
    text-decoration: none;
    background: #E84B6E;
}
/*------------------------------------------------------------------------------
 * スタイルボタン（黒）
 *----------------------------------------------------------------------------*/
a.btnBlack {
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #000000;
}

a.btnBlack:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000),
        to(#696969));
    background: -moz-linear-gradient(-90deg, #000000, #696969);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.Gradient(
        GradientType= 0, StartColorStr= '#000000', EndColorStr= '#696969');
}

a.btnBlack:active {
    color: #FFFFFF;
    text-decoration: none;
    background: #696969;
}

/*------------------------------------------------------------------------------
 * スタイルボタン（白）
 *----------------------------------------------------------------------------*/
a.btnWhite {
    color: #000000;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #C0C0C0;
}

a.btnWhite:hover {
    color: #000000;
    text-decoration: none;
    background: #FFFFFF;
    background: -webkit-gradient(linear, left top, left bottom, from(#C0C0C0),
        to(#FFFFFF));
    background: -moz-linear-gradient(-90deg, #C0C0C0, #FFFFFF);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.gradient(
          GradientType= 0, startColorstr= '#C0C0C0', endColorstr= '#FFFFFF');
}

a.btnWhite:active {
    color: #000000;
    text-decoration: none;
    background: #C0C0C0;
}

/*------------------------------------------------------------------------------
 * スタイルボタン（ピンク）
 *----------------------------------------------------------------------------*/
a.btnPink {
    color: #FFFFFF;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    border-color: #000033;
    text-decoration: none;
    background-color: #FF74BE;
}

a.btnPink:hover {
    color: #FFFFFF;
    text-decoration: none;
    background: #FFD3E8;
    background: -webkit-gradient(linear, left top, left bottom, from(#FF74BE),
        to(#FFD3E8));
    background: -moz-linear-gradient(-90deg, #FF74BE, #FFD3E8);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.Gradient(
        GradientType= 0, StartColorStr= '#FF74BE', EndColorStr= '#FFD3E8');
}

a.btnPink:active {
    color: #FFFFFF;
    text-decoration: none;
    background: #FFD3E8;
}

/*------------------------------------------------------------------------------
 * フラットボタンスタイル
 *----------------------------------------------------------------------------*/
a.btnStyleFlat {
    line-height: 22px;
    width: 95px;
    font-size: 12px;
}

a.btnStyleFlatS {
    line-height: 22px;
    width: 55px;
    font-size: 12px;
}

a.btnStyleFlatL {
    line-height: 22px;
    width: 150px;
    font-size: 12px;
}

a.btnStyleFlatB {
    line-height: 32px;
    width: 150px;
    font-size: 16px;
    font-weight: bold;
}

a.btnStyleFlat,a.btnStyleFlatS,a.btnStyleFlatL,a.btnStyleFlatB {
    color: #FFFFFF;
    display: inline;
    cursor: pointer;
    background-color: #5e8eed;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

a.btnStyleFlat:hover,a.btnStyleFlatS:hover,a.btnStyleFlatL:hover,a.btnStyleFlatB:hover
    {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity = 70);
    -ms-filter: "alpha( opacity=70 )";
}

a.btnStyleFlat:active,a.btnStyleFlatS:active,a.btnStyleFlatL:active,a.btnStyleFlatB:active
    {
    color: #FFFFFF;
    text-decoration: none;
}

/*------------------------------------------------------------------------------
 * フラットボタン（青）
 *----------------------------------------------------------------------------*/
a.btnBlueFlat {
    background-color: #5e8eed;
}

/*------------------------------------------------------------------------------
 * フラットボタン（オレンジ）
 *----------------------------------------------------------------------------*/
a.btnOrangeFlat {
    background-color: #FFA500;
}

/*------------------------------------------------------------------------------
 * フラットボタン（シルバー）
 *----------------------------------------------------------------------------*/
a.btnSilverFlat {
    background-color: #808080;
}

/*------------------------------------------------------------------------------
 * フラットボタン（赤）
 *----------------------------------------------------------------------------*/
a.btnRedFlat {
    background-color: #E84B6E;
}

/*------------------------------------------------------------------------------
 * フラットボタン（黒）
 *----------------------------------------------------------------------------*/
a.btnBlackFlat {
    background-color: #000000;
}

/*------------------------------------------------------------------------------
 * フラットボタン（白）
 *----------------------------------------------------------------------------*/
a.btnWhiteFlat {
    background-color: #C0C0C0;
}

/*------------------------------------------------------------------------------
 * フラットボタン（ピンク）
 *----------------------------------------------------------------------------*/
a.btnPinkFlat {
    background-color: #FF74BE;
}

/*------------------------------------------------------------------------------
 * フラットボタン（非活性）
 *----------------------------------------------------------------------------*/
a.btnDisabledFlat {
    color: #808080;
    background-color: #C0C0C0;
    cursor: default;
}

a.btnDisabledFlat:hover {
    color: #808080;
    text-decoration: none;
    background: #C0C0C0;
    opacity: 1.0;
    filter: alpha(opacity = 100);
    -ms-filter: "alpha( opacity=100 )";
    cursor: default;
}

a.btnDisabledFlat:active {
    color: #808080;
    text-decoration: none;
}

/*------------------------------------------------------------------------------
 * ソートボタン
 *----------------------------------------------------------------------------*/
a.btnSortStyle {
    font-size: 9px;
    height: auto;
    text-align: center;
    display: inline-block;
}

/*------------------------------------------------------------------------------
 * マウスオーバーイベント表示
 *----------------------------------------------------------------------------*/
.mouseOverStyle {
    opacity: 0.7;
    filter: alpha(opacity = 70);
    -ms-filter: "alpha( opacity=70 )";
    background: #FFFFFF;
    cursor: pointer;
}

.mouseOverLinkStyle {
    color: #0000FF;
    cursor: pointer;
}

/*------------------------------------------------------------------------------
 * バルーンヘルプ
 *----------------------------------------------------------------------------*/
span.balloonStyle {

}

span.balloon {
    z-index: 100;
}

span.balloon .balloonStyleBody {
    background-color: #FFA500;
    border: solid 2px #FFA500;
    border-radius: 4px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
    position: absolute;
    left: 0px;
    top: 30px;
    visibility: hidden;
    padding: 3px 5px;
    zoom: 1;
    color: #FFFFFF;
    text-align: left;
    white-space: nowrap;
}

span.balloon .balloonStyleBody .balloonStyleAngle {
    border-right: solid 10px transparent;
    border-left-width: 0;
    border-bottom: solid 10px #FFA500;
    line-height: 0;
    position: absolute;
    left: 10px;
    top: -12px;
}

/*------------------------------------------------------------------------------
 * タブ表示
 *----------------------------------------------------------------------------*/
.tabStyle {

}

ul.tab {
    margin-left: 0;
    padding-left: 0;
    margin-top: 10px; /* タブ上部とその上の間隔 */
    margin-bottom: 0px; /* タブ下線とその下の間隔 */
    border-bottom: 1px solid #286BCC;
    height: 25px;
    overflow: hidden;
    width: 100%;
}

ul.tab li {
    /* タブを右寄せ */
    /* float: right; */
    float: left;
    width: 140px; /* タブ間の隙間用に1px */
    height: 25px;
    list-style-type: none;
}

ul.tabright li {
    /* タブを右寄せ */
    float: right;
}

ul.tab li a {
    display: block;
    width: 138px;
    _width: 140px; /* IE */
    height: 25px;
    border: 1px solid #CCCCCC;
    border-bottom: 0;
    color: #1f5a9c;
    text-align: center;
    background-color: #FFFFFF;
    font-size: 15px;
    margin-bottom: 1px;
    padding-top: 3px;
    text-decoration: none;
}

ul.tab li a:hover {
    color: #FFFFFF;
    background-color: #5389D6;
    text-decoration: none;
}

ul.tab li.select a {
    color: #FFFFFF;
    background-color: #286BCC;
    text-decoration: none;
}

/*
.tabItemSmall {
    font-size: 12px;
}
*/
.tabBoderStyle {
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 10px;
    font-size: 1px;
    border: none;
    background: #FFFFFF;
    background: -webkit-gradient(linear, left top, left bottom, from(#286BCC),
        to(#FFFFFF));
    background: -moz-linear-gradient(-90deg, #286BCC, #FFFFFF);
    /* progid:DXImageTransform.Microsoft.gradientはスペース禁止 */
    filter: progid:DXImageTransform.Microsoft.gradient(
          GradientType= 0, startColorstr='#286BCC', endColorstr= '#FFFFFF');
}
/*------------------------------------------------------------------------------
 * カレンダースタイル
 *----------------------------------------------------------------------------*/
/** カレンダー利用箇所 */
.calStyle {
    cursor: pointer;
}

/** カレンダーキャンバス */
div.calendarStyle {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    border: 1px solid #666666;
    width: 250px;
    font-family: "ＭＳ Ｐゴシック";
}

/** カレンダーテーブル */
div.calendarStyle table {
    border-collapse: separate;
    border-spacing: 2px;
}

/** カレンダーヘッダー */
div.calendarStyle .calendarStyleHeader {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #FFFFFF;
    font-weight: bold;
    /** ヘッダー背景色 */
    /* background-color: #FF8C00; */
    background-color: #286BCC;
}

/** カレンダー：ヘッダーボタン */
div.calendarStyle .calendarStyleHeader th {
    width: 30px;
    line-height: 16px;
    font-size: 13px;
    font-weight: normal;
    color: #666666;
    background-color: #f5f5f5;
    cursor: pointer;
    text-align: center;
}

/** カレンダーフッター */
div.calendarStyle .calendarStyleFooter {
    width: 100%;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #C0C0C0;
    color: #666666;
}

/** クリア、閉じる */
div.calendarStyle .calendarStyleFooter td {
    width: 50%;
    line-height: 16px;
    cursor: pointer;
}

/** カレンダーメイン */
div.calendarStyle .calendarStyleBody {
    width: 100%;
    font-size: 16px;
    text-align: center;
    color: #000000;
}

div.calendarStyle .calendarStyleBody th {
    font-weight: normal;
    font-size: 10px;
}

div.calendarStyle .calendarStyleBody td {
    text-decoration: underline;
    cursor: pointer;
    line-height: 22px;
}

/** カレンダー：日曜 */
div.calendarStyle .sundayStyle {
    color: #FF0000;
}

/** カレンダー：土曜 */
div.calendarStyle .saturdayStyle {
    color: #0000FF;
}

/** カレンダー：今日 */
div.calendarStyle .todayStyle {
    background-color: #FF9900;
}

/** カレンダー：月違い */
div.calendarStyle .otherMonthStyle {
    background-color: #dcdcdc;
}

img.calendarIcon {
    border: none;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-left: 2px;
    margin-bottom: 2px;
}

/*------------------------------------------------------------------------------
 * ツリー表示
 *----------------------------------------------------------------------------*/
ul.tree {
    list-style: none;
    margin: 0px;
    padding: 0px;
    border: none;
}

ul.tree li {
    list-style: none;
}

ul.tree li.block_open ul {
    display: block;
    margin: 0px;
    padding: 0px;
    padding-left: 17px;
}

ul.tree li.block_open img {
    cursor: pointer;
}

ul.tree li.block_close ul {
    display: none;
    margin: 0px;
    padding: 0px;
    padding-left: 17px;
}

ul.tree li.block_close img {
    cursor: pointer;
}

ul.tree li.item img {
    cursor: default;
}

ul.tree span.block {
}

ul.tree span.block a {
    color: #000000;
    text-decoration: none;
}

ul.tree span.block a:hover {
    color: #0000FF;
    text-decoration: underline;
}

ul.tree span.item {
}

ul.tree span.item a {
    color: #000000;
    text-decoration: none;
}

ul.tree span.item a:hover {
    color: #0000FF;
    text-decoration: underline;
}

ul.tree var {
    display: none;
}
