/* CSS Document */
.red_box{
	font-weight: bold;
	color: #FF2124;
	padding: 10px;
	border: solid 1px #FF2124;
	margin-top: 15px;
}

.step_area{
	margin-bottom: 20px;
}

.step_area ul li{
	text-align: left;
	text-indent: -12px;
	padding-left: 12px;
	color: #717171;
}

.step_area h5{
	font-size: 18px;
	border: solid 1px #ccc;
	margin-bottom: 15px;
	color: #ff9900;
}

.step_area h5 .step{
	display: inline-block;
	padding: 10px 10px 10px 20px;
	color: #fff;
	background: #ff9900;
	position: relative;
}
	.step_area h5 .step::after{
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 24px 0 24px 20px;
		border-color: transparent transparent transparent #ff9900;
		position: absolute;
		top: 0;
		right: -20px;
	}

.step_area h5 .txt{
	padding-left: 40px;
}

.step_area p{
	font-size: 14px;
	border-bottom: solid 2px #B3B3B3;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}




