.accordion-container {
		width: 100%;
		margin: 0 0 20px;
		clear: both;
	}
	.accordion-toggle {
		position: relative;
		display: block;
		padding: 10px;		
		font-weight: 300;
		background: #eaeaea;
		font-family: 'neosans';
	    font-size: 14px;
		border-bottom:1px solid #fff; 
		color: #464646;
		text-decoration: none;
	}
	.accordion-toggle.open {
		background: #ee1c25;
		color: #fff;
	}
	.accordion-toggle:hover {
		background: #ee1c25;
	}
	.accordion-toggle span.toggle-icon {
		position: absolute;
		top: 9px;
		right: 20px;
		font-size: 1.5em;
	}
	.accordion-content {
		display: none;
		padding: 10px 0px;
		overflow: auto;
	}
	.accordion-content img {
		display: block;
		float: left;
		margin: 0 15px 10px 0;
		max-width: 100%;
		height: auto;
	}
	
	/* media query for mobile */
	@media (max-width: 767px) {
		.accordion-content {
			padding: 10px 0;
			overflow: inherit;
		}
	}