/* CSS Document */

/*for css3*/

.round_box {
    width:100%;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	height:50px;
	background-color:#CCCCCC;
	border:solid #999999 1px;
	}

.round_box02 {
    width:100%;
	-webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
	height:50px;
	background-color:#CCCCCC;
	border:solid #999999 1px;
	}

.round_box_mov{
    background:#CCCCCC;
	width:100%;
	height:50px;
	border:solid #999999 1px;
    -webkit-transition: 0.5s ease-in-out;
	}

.round_box_mov:hover{
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
	}

.btn a {
	width:289px;
	height:89px;
	display:block;
	text-indent:-10000em;
	background: url(../images/btn_a.jpg) no-repeat;
	-webkit-transition: 0.5s ease-in-out;
	}

.btn a:hover{
    width:289px;
	height:89px;
	display:block;
	text-indent:-10000em;
	background: url(../images/btn_hover.jpg) no-repeat;
	}