@charset "utf-8";

#important-box *{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#important-box{
	border: 1px solid #C14B8A;
	margin-bottom: 40px;
	margin-top: 40px;
}
#important-box h3{
	display: block;
	width: 100%;
	padding: 12px;
	font-size: 16px;
	text-align: center;
	color: #fff;
	background: #C14B8A;
}
#important-box ul li{
	border-bottom: 1px dotted #e4e4e4;
}
#important-box ul li:last-child{
	border-bottom: none;
}
#important-box ul li a{
	display: block;
	padding: 12px;
	text-indent: -1em;
	padding-left: 2em;
	color: #1880c8;
	vertical-align: middle;
	text-decoration: none;
}
#important-box ul li a:before{
	content: " ";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-top: -2px;
	vertical-align: middle;
	background: #C14B8A;
	border-radius: 50%;
	color: #C14B8A;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
#important-box ul li a:hover:before{
	background: #dddb35;
}