@charset "utf-8";
/* CSS Document */

th  {font-size: 200%;}
div.box_login {position: relative; top: 100px;left: 0px;}
.txt_setting {
	font-size: 200%;
	font-weight:bold;
	width:700px;
	height:50px;
	text-align:center;
}

td {
	padding: 20px;
	text-align:center;
}
th {padding: 20px;}
button.nextbtn {

    /* 文字サイズを1.4emに指定 */
    font-size: 40px;

    /* 文字の太さをboldに指定 */
    font-weight: bold;

    /* 縦方向に10px、
	* 横方向に30pxの余白を指定 */
    padding: 10px 30px;

    /* 文字色を白色に指定 */
    color: #fff;

    /* ボーダーをなくす */
    border-style: none;

    /* ボタンの影の指定
     * 影の横幅を2px
     * 縦長を2px
     * ぼかしを3px
     * 広がりを1px
     * 色を#666（グレー）に指定 */
    box-shadow: 2px 2px 3px 1px #666;
    -moz-box-shadow: 2px 2px 3px 1px #666;
    -webkit-box-shadow: 2px 2px 3px 1px #666;

    /* テキストの影の指定
     * 影の横幅を1px
     * 縦長を1px
     * ぼかしを2px
     * 色を#000（黒）に指定 */
    text-shadow: 1px 1px 2px #000;

    /* グラデーションの指定 */
    background: -moz-linear-gradient(bottom, #36d, #248 50%, #36d);
    background: -webkit-gradient(linear, left bottom, left top, from(#36d), color-stop(0.5, #248), to(#36d));

    /* 角丸の指定 */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

	/*幅指定*/
	width: 400px;
	height: 70px;
    margin: 20px 50px 0px 0px;
}

button.nextbtn:hover {
    /* グラデーションの指定 */
    background: -moz-linear-gradient(bottom, #e0e0ff, #a0a0ff 50%, #e0e0ff);
    background: -webkit-gradient(linear, left bottom, left top, from(#e0e0ff), color-stop(0.5, #a0a0ff), to(#e0e0ff));
}
