.multiplechoice {
	width:500px;
	margin:4px;
	padding:4px;
	font-family:sans-serif;
	font-size:14px;
	font-weight: bold;
	color:#28386A;
}

.multiplechoice .container {
	background-color: #E7E8EE;
	border:1px solid #262628;
	border-bottom:2px solid #262628;
}

.multiplechoice .progress {
	background-color: #B3B5C0;
	line-height: 20px;
	padding-left:4px;
	padding-right:0px;
}

.multiplechoice .pip {
	display: inline-block;
	width:6px;
	height:6px;
	margin-left:1px;
	margin-right:1px;
	margin-top:4px;
	background-color: #F7F8FF;
	border: 2px solid #737582;
	border-radius:6px;
}

.multiplechoice .incompletepips {
	display: inline-block;
}

.multiplechoice .completedpips {
	float:right;
}

.multiplechoice .completedpips .pip {
	background-color: #43903F;
	border: 2px solid #103704;
}

.multiplechoice .resetbutton {
	float:right;
	text-align: center;
	background-color: #434C53;
	color: #FFFFFF;
	padding: 0px 4px;
	margin-left: 4px;
	cursor:pointer;
	-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;    
}

.multiplechoice .question {
	animation-name: slidein;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
}

.multiplechoice .question.hidden {
	display:none;
}

.multiplechoice .question .text {
	min-height:200px;
	margin-top:4px;
	padding:4px;
}

.multiplechoice .answerchoice {
	background-color: #CFD1DE;
	border:1px solid #262628;
	border-radius: 4px;
	margin:4px;
	padding:4px;
	cursor: pointer;
}

.multiplechoice .answerchoice:hover {
	background-color: #B6BBD1;
	border:1px solid #262628;
}

.multiplechoice .answerchoice.sleep:hover {
	background-color: #CFD1DE;
	border:1px solid #262628;
	border-radius: 4px;
	margin:4px;
	padding:4px;
	cursor: auto;
}

.multiplechoice .answerchoice.wrong {
	background-color: #BA3920;
	color: #FFFFFF;
	border:1px solid #BA3920;
	border-radius: 4px;
	margin:4px;
	padding:4px;
	cursor: pointer;
	animation-name: wronghit;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}

.multiplechoice .answerchoice.right {
	background-color: #7FCA43;
	color: #FFFFFF;
	border:1px solid #7FCA43;
	border-radius: 4px;
	margin:4px;
	padding:4px;
	cursor: pointer;
	animation-name: righthit;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}

.multiplechoice .answerchoice.wrong:hover {
	background-color: #BA3920;
	border:1px solid #000000;
	cursor: pointer;
}

.multiplechoice .answerchoice.right:hover {
	background-color: #7FCA43;
	border:1px solid #000000;
	cursor: pointer;
}

.multiplechoice .answerchoice.current {
	border:1px solid #000000;
}

.multiplechoice .feedbackholder {
	height:100px;
	overflow: hidden;
}

.multiplechoice .feedback {
	margin-top:-100px;
	padding:4px;
}

.multiplechoice .feedback .text {
	display: inline-block;
	width:390px;
}

.multiplechoice .feedback .buttonholder {
	text-align: center;
	height:20px;
}

.multiplechoice .feedback .button {
	display: none;
	float: right;
	text-align: center;
	background-color: #8D6D9B;
	color: #FFFFFF;
	width:100px;
	cursor: pointer;
}

.multiplechoice .feedback .button.show {
	display: inline-block;
}

.multiplechoice .feedback .nextbutton {
	display:none;
	width:100px;
	line-height:24px;
	text-align: center;
	background-color: #8D6D9B;
	color: #FFFFFF;
	cursor: pointer;
}

.multiplechoice .feedback .nextbutton.show {
	display:inline-block;
}

.multiplechoice .feedback.show {
	margin-top:0px;
	animation-name: feedbackslidein;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}

@keyframes slidein {
    0%   {
    	transform: translate(10px,0px);
    	-ms-transform: translate(10px,0px);
    	-webkit-transform: translate(10px,0px);
    	opacity:0;
    }
    100% {
    	transform: translate(0px,0px);
    	-ms-transform: translate(0px,0px);
    	-webkit-transform: translate(0px,0px);
    	opacity:1;
    }
}

@keyframes wronghit {
    0%   {
			background-color: #691100;
    	transform: translate(0px,0px);
    	-ms-transform: translate(0px,0px);
    	-webkit-transform: translate(0px,0px);
    }
    20% {
 			background-color: #BA3920;
   	transform: translate(-4px,0px);
    	-ms-transform: translate(-4px,0px);
    	-webkit-transform: translate(-4px,0px);
    }
    100% {
			background-color: #BA3920;
    	transform: translate(0px,0px);
    	-ms-transform: translate(0px,0px);
    	-webkit-transform: translate(0px,0px);
    }
}

@keyframes righthit {
    0%   {
			background-color: #4D8620;
    	transform: translate(0px,0px);
    	-ms-transform: translate(0px,0px);
    	-webkit-transform: translate(0px,0px);
    }
    20% {
 			background-color: #7FCA43;
   	transform: translate(-4px,0px);
    	-ms-transform: translate(-4px,0px);
    	-webkit-transform: translate(-4px,0px);
    }
    100% {
			background-color: #7FCA43;
    	transform: translate(0px,0px);
    	-ms-transform: translate(0px,0px);
    	-webkit-transform: translate(0px,0px);
    }
}

@keyframes feedbackslidein {
    0%   {
    	margin-top: -100px;
    }
    100% {
    	margin-top: -0px;
    }
}

