﻿/* -------------------------------------------------------------------------------- */
/* タグのプロパティ */
/* -------------------------------------------------------------------------------- */
/* h3タグのプロパティ */
h3
{
    background-color     : #FFEEEE   ;                    /* 背景色指定 */
    border-bottom-color  : #F26D7D   ;                    /* 下側枠線の色指定 */
    border-bottom-style  : solid     ;                    /* 下側枠線のスタイル指定 */
    border-bottom-width  : 5px       ;                    /* 下側枠線の幅指定 */
   	font-size            : 20px      ;                    /* フォントサイズ指定 */  
	padding              : 5px       ;                    /* パディング領域指定(上下左右) */
    width                : 600px     ;                    /* 幅指定 */
}

/* テーブルのプロパティ */
table 
{
    margin-bottom        : 20px      ;                    /* 下側マージン指定 */
    width                : 600px     ;                    /* 幅指定 */
}

/* tdタグのmonthプロパティ */
td.month
{
    border-bottom-color  : #CCCCCC   ;                    /* 下側枠線の色指定 */
    border-bottom-style  : solid     ;                    /* 下側枠線のスタイル指定 */
    border-bottom-width  : 1px       ;                    /* 下側枠線の幅指定 */
	font-weight          : bold      ;                    /* 文字の太さ指定 */
	padding              : 5px       ;                    /* パディング領域指定(上下左右) */
    vertical-align       : top       ;                    /* 文字の縦方向位置指定 */
    width                : 100px     ;                    /* 幅指定 */
}

/* tdタグのvalueプロパティ */
td.value
{
    border-bottom-color  : #CCCCCC   ;                    /* 下側枠線の色指定 */
    border-bottom-style  : solid     ;                    /* 下側枠線のスタイル指定 */
    border-bottom-width  : 1px       ;                    /* 下側枠線の幅指定 */
	padding              : 5px       ;                    /* パディング領域指定(上下左右) */
    text-align           : left      ;                    /* 文字の横方向位置指定 */ 
    width                : 500px     ;                    /* 幅指定 */
}

