﻿/*----- Accordion -----*/
.accordion,
.accordion * {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	
	background:#fff;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    padding: 5px 5px 5px 0px;
    display: inline-block;
   border-bottom: 1px dashed rgba(102,102,102,.3);
    background: #fff;
    transition: all linear 0.15s;
    font-size: 1.200em;
    /* text-shadow: 0px 1px 0px #1a1a1a; */
    color: #3a3a3a;
}

.accordion-section-title.active,
.accordion-section-title:hover {
	
	    color: #046a92;
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:10px;
	display:none;    background: #f2f2f2;   border-bottom: 1px dashed rgba(102,102,102,.3);
	   border-left: 1px dashed rgba(102,102,102,.3);   border-right: 1px dashed rgba(102,102,102,.3);
}