@charset "utf-8";
/* CSS Document */

.faq-title{
	margin-top: 20px;
	margin-bottom: 30px;
	line-height: 18px;
	font-size: 18px;
}
.title-lump{
	width: 7px;
	height: 18px;
}
.faqColumn{
	padding: 15px 60px 20px 40px;
}
.problem-info{
	position: relative;
}
.problem-title:BEFORE{
	content: "•";
	margin-right: 5px;
}
.problem-title{
	font-size: 14px;
	cursor: pointer;
}
.problem-answer{
	font-size: 14px;
	background-color: #e5e5e5;
	padding: 25px;
	border-radius: 5px;
	margin-top: 15px;
}
.problem-answer:before, .problem-answer:after {
    content: "";
    display: block;
    position: absolute;
    top: 35px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 30px solid transparent;
}
.problem-answer:after {
    left: 45px;
    border-right-color: #e5e5e5;
    z-index: 0;
}
