#accordion-container {
    margin-bottom: 3%;
	font-size: 1.3vw; /*IMPORTANT base unit*/
	background: #fff;
	padding: 0.25em 0.75em 0.75em 0.75em;
	border: 0.05em solid #cccccc;
	/**-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;**/
}
/*IMPORTANT Must declare explicitly for the width of exam-results accordion box*/
@media only screen and (min-width:1400px) and (orientation: landscape)
    {#accordion-container{width: 80vw;}}
@media only screen and (max-width:1400px) and (orientation: landscape)
    {#accordion-container{width: 96vw;}}
@media only screen and (orientation: portrait)
    {#accordion-container{width: 96vw;}}


.accordion-header {
	background: #ebebeb;
	margin: 0.4em 0 0 0;
    padding: 0.25em 0;
	text-align:center;
	border: 0.05em solid #cccccc;
	cursor: pointer;
	-moz-border-radius: 0.25em;
	-webkit-border-radius: 0.25em;
	border-radius: 0.25em;
}
.accordion-header{/*inactive header year style*/
    font-size: 1.2em;
    color:#39B2EA;
}
.active-header {
	-moz-border-radius: 0.28em 0.28em 0 0;
	-webkit-border-radius: 0.28em 0.28em 0 0;
	border-radius: 0.28em 0.28em 0 0;
}

.inactive-header {
	background: /*url(../ExamAccordion/images/inactive-header.gif)*/ #ebebeb;
	/*background-repeat: no-repeat;
	background-position: right 50%;*/
}

.inactive-header:hover {
	background: /*url(../ExamAccordion/images/inactive-header.gif)*/ #f5f5f5;
	/*background-repeat: no-repeat;
	background-position: right 50%;*/
}

.accordion-content {
	width:100%;
	border: 0.05em solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 0.25em 0.25em;
	-webkit-border-radius: 0 0 0.25em 0.25em;
	border-radius: 0 0 0.25em 0.25em;
	display: none;
    
}
.column1 {
	width: 33%;
	text-align: center;
	padding:0.5em 1em;
    
}
.container-exam { /**Accordion content text title**/
    display: table-cell;
    vertical-align: top;
	padding: 0% 2% 2% 0;
    width:30rem;/*Important! must declare explicitly to prevent column from shrinking. value equals to 1/3 of page-body*/
    height: 100%;
}
@media only screen and (max-width:1400px) and (orientation: landscape)
    {.container-exam {width: 32vw;}}
@media only screen and (orientation: portrait)
    {.container-exam {width: 32vw;}}
    
    
.accordion-content .container-exam,
.accordion-content .container-exam:nth-child(3){
    background-color: #eeeeee;
}
.accordion-content .container-exam:nth-child(2){
    background-color: #f5f5f5;
}
.container-exam li {
    padding-left:3.15em;
    list-style-position: inside;
    list-style-type: square;
    text-indent: -2em;
    font-size:0.7em;
}