﻿/* -------------------------------------------------------------------------------- */
/* タグのプロパティ */
/* -------------------------------------------------------------------------------- */
/* h3のタグ */
h3
{
    background-color     : #FFE5CC   ;                    /* 背景色指定 */
    border-bottom-color  : #F26D7D   ;                    /* 下側枠線の色指定 */
    border-bottom-style  : solid     ;                    /* 下側枠線のスタイル指定 */
    border-bottom-width  : 5px       ;                    /* 下側枠線の幅指定 */
	color                : #333333   ;                    /* 文字色指定 */    
   	font-size            : 14px      ;                    /* フォントサイズ指定 */  
	padding              : 5px 10px  ;                    /* パディング領域指定(上下、左右) */
    margin-bottom        : 0px       ;                    /* 下側マージン指定 */
    margin-left          : 16px      ;                    /* 左側マージン指定 */
    margin-right         : 0px       ;                    /* 右側マージン指定 */
    margin-top           : 10px      ;                    /* 上側マージン指定 */
    width                : 485px     ;                    /* 幅指定 */ 
}

/* ulタグのreadmeプロパティ */
ul.readme 
{
    background-color     : #FFEEEE   ;                    /* 背景色指定 */
    list-style-type      : disc      ;                    /* リスト項目の行頭記号指定 */ 
    list-style-position  : inside    ;                    /* リスト項目の行頭記号の位置指定 */ 
    margin               : 0px 16px  ;                    /* マージン指定(上下、左右) */
	padding              : 10px 0px  ;                    /* パディング領域指定(上下、左右) */
    width                : 485px     ;                    /* 幅指定 */ 
}

/* ulタグのreadmeのliタグ */
ul.readme li
{
    list-style-type      : disc      ;                    /* リスト項目の行頭記号指定 */ 
    list-style-position  : inside    ;                    /* リスト項目の行頭記号の位置指定 */ 
	padding              : 0px 5px   ;                    /* パディング領域指定(上下、左右) */
    vertical-align       : middle    ;                    /* 文字の縦方向位置指定 */
}

/* テーブルのプロパティ */
table 
{
    border-collapse      : collapse  ;                    /* 枠線の表示指定 */
    border-color         : #999999   ;                    /* 枠線の色指定 */
    border-style         : solid     ;                    /* 枠線のスタイル指定 */
    border-width         : 1px       ;                    /* 枠線の幅指定 */
    margin               : 15px 16px ;                    /* マージン指定(上下、左右) */
}

/* tdタグ */
td 
{
    border-color         : #999999   ;                    /* 枠線の色指定 */
    border-style         : solid     ;                    /* 枠線のスタイル指定 */
    border-width         : 1px       ;                    /* 枠線の幅指定 */
    margin               : 15px      ;                    /* マージン指定(上下左右) */
}

/* tdタグのinput_leftプロパティ */
td.input_left 
{
    background-color     : #FFE5CC   ;                    /* 背景色指定 */
    border-right-color   : #FFBBBB   ;                    /* 右側枠線の色指定 */
    border-right-style   : solid     ;                    /* 右側枠線のスタイル指定 */
    border-right-width   : 5px       ;                    /* 右側枠線の幅指定 */
	padding              : 5px       ;                    /* パディング領域指定(上下左右) */
    vertical-align       : top       ;                    /* 文字の縦方向位置指定 */
    width                : 150px     ;                    /* 幅指定 */ 
}

/* tdタグのinput_rightプロパティ */
td.input_right 
{
	padding              : 5px 9px   ;                    /* パディング領域指定(上下、左右) */
    width                : 300px     ;                    /* 幅指定 */ 
}
