button.button3 {
	    /* 文字サイズを1.4emに指定 */
	    font-size: 1.4em;
	    /* 文字の太さをboldに指定 */
	    font-weight: bold;
	    /* 縦方向に5px、
	     * 横方向に30pxの余白を指定 */
	    padding: 5px 30px;
	    /* 背景色を濃い白色に指定 */
	    background-color: #ffffff;
	    /* 文字色を白色に指定 */
	    color: #55ACEE;
	   border-style: solid;
		border-color: #55ACEE;

	/* 角丸の指定 */
	    -moz-border-radius: 5px;
	    -webkit-border-radius: 5px;
	    border-radius: 5px;
	}

button.button3:hover {
	    /* 背景色を明るい青色に指定 */
	    background-color: #55ACEE;
	    /* 文字色を白色に指定 */
	    color: #fff;
	}


button.button4 {
	    /* 文字サイズを1.4emに指定 */
	    font-size: 1.4em;
	    /* 文字の太さをboldに指定 */
	    font-weight: bold;
	    /* 縦方向に5px、
	     * 横方向に30pxの余白を指定 */
	    padding: 5px 0px;
	    /* 背景色を濃い白色に指定 */
	    background-color: #cccccc;
	    /* 文字色指定 */
	    color: #000000;
   	    border-style: solid;
	    border-color: #cccccc;
text-align: left;

		

	/* 角丸の指定 */
	    -moz-border-radius: 5px;
	    -webkit-border-radius: 5px;
	    border-radius: 5px;
	}