/* CSS Document */

.historyArea {
	padding: 60px 0 0;
}
.historyArea .txt {
	margin-bottom: 60px;
	text-align: center;
	color: #666;
}
.historyArea ul {
	overflow: hidden;
	padding: 0 110px;
}
.historyArea ul li {
	float: left;
	width: 360px;
	position: relative;
}
.historyArea ul li:first-child {
	margin-right: 60px;
}
.historyArea ul li a {
	height: 100px;
	border: 2px solid #0C2050;
	border-radius: 6px;
	display: block;
}
.historyArea ul li a:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 4px;
	width: 350px;
	height: 90px;
	border: 1px solid #0C2050;
	border-radius: 6px;
}
.historyArea ul li a:after {
	content: "\f138";
	position: absolute;
	top: 50%;
	right: 30px;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "fontawesome";
	color: #AA3E3E;
	font-size: 16px;
}
.historyArea ul li a:hover {
	border: 4px solid #0C2050;
}
.historyArea ul li a:hover:before {
	border-radius: 0;
}
.historyArea ul li a span {
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	color: #333;
	font-size: 24px;
	font-weight: bold;
}
.infoArea {
	padding: 60px 0 100px;
	background-color: #fcfcfc;
}
.infoArea .inner {
	padding: 0 90px;
}
.infoArea dl {
	margin-bottom: 60px;
	overflow: hidden;
	border: 1px solid #ccc;
}
.infoArea dl dt {
	float: left;
	width: 248px;
	padding: 0 30px;
	clear: left;
	background-color: #eee;
	color: #000;
	font-size: 15px;
	line-height: 50px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.infoArea dl dd {
	float: left;
	width: 570px;
	padding: 0 20px;
	font-size: 15px;
	line-height: 50px;
	border-bottom: 1px solid #ccc;
}
.infoArea dl dt:last-of-type,
.infoArea dl dd:last-of-type {
	border-bottom: none;
}
.infoArea dl dd a {
	color: #999;
}
.infoArea dl dd a:hover {
	color: #000;
}