p {
font-size: 12pt;
}
/* Form Style */
a:hover,a:focus{
 text-decoration: none;
 outline: none;
}

#accordion .panel{
 border: none;
 box-shadow: none;
 border-radius: 0;
 margin-bottom: 5px;
}

#accordion .panel-heading{
 padding: 0;
 border-radius: 0;
 text-align: center;
 border: none;
}

#accordion .panel-title a{
 display: block;
 padding: 15px;
 font-size: 16px;
 font-weight: bold;
 color: #fff;
 background: #b90075;
 transition: all 0.5s ease 0s;
}

#accordion .panel-title a:hover{
 background: #9f005B;
}

#accordion .panel-body{
 font-size: 14px;
 color: #393b40;
 background: #f8e6f1;
 padding: 15px 20px;
 line-height: 25px;
 border: none;
 position: relative;
}

#accordion .panel-body:after{
 content: "";
 position: absolute;
 top: -30px;
 left: 40px;
 border: 15px solid transparent;
 border-bottom: 15px solid #f8e6f1;
}

