.accordionSection
{
	width: 100%;
    margin: 1em auto;
	border: 1px solid #1c31561f;
    border-radius: 5px;
}

.accordionSectionHeader
{
	display: block;
	
    padding: 0.5em;
	border-bottom: 1px solid #1c3156;
	
	font-size: 1.5em;
    font-weight: 300;
    text-align: center;   
	
    cursor: pointer;
}

.accordionSectionExpander
{
	float: right;
	
    font-weight: 900;
}

.accordionSectionBody
{
	display: block;
	
	font-weight: 300;
	text-align: center;
	
	margin: 1em;
	overflow: hidden;	
	max-height: 0px;
}

@media(max-width: 500px)
{
	.accordionSection
	{
		margin: 0.5em auto;
	}
	
	.accordionSectionHeader
	{
		font-size: 1em;
	}
	
	.accordionSectionBody
	{
		font-size: 0.8em;
	}
}