.accordion_container {
	margin: 2%;
	/* border: 1px solid #ddd; */
    width: 96%;
}
.accordion_head {
	/* border: 1px solid #f93; */
	border-radius: 10px;
	color: #444;
	cursor: pointer;
	font-family: arial;
	font-size: 110%;
	margin: 10px 0 1px 0;
	padding: 20px 0;
	font-weight: bold;
}

.accordion_head:hover {
	color: #666;
}

div#light_green {
	background: #d2ff9d; 
}

div#light_blue {
	background: #dffffb;
}

div#light_red {
	background: #ffd1d1;
}

div#light_pink {
	background: #f3d6ff;
}


.accordion_body {
    /* background: #fff; */
    line-height: 1.5em;
    display: none;
    font-size: 130%;
}
.accordion_body p {
    padding: 10px;
}

.accordion_body ul {
	line-height: 1.5em;
}


.plusminus {
	float: right;
	font-size: 250%;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;           /* Non-prefixed version, currently
}