/*========================================
 * Quiz Generator v 2.1
 * Copyright 2012 Sawa's Factory
 * http://sawa-s.com/quiz-generator.html
========================================*/

/* クイズ出題ボックスの設定 */
#quiz_box{
	position: relative;
	overflow: hidden;
/* 背景や位置、文字の設定　お好きなように変更してください。  */
	margin: 0 auto;
	border: 2px outset #69F;	/* ボックスの枠線 */
	background: #EEFFFF;	/* 背景色 url(･･･.jpg)で背景画像を入れることも可能 */
	color: #000;			/* 文字色 */
	font-size: 14px;
	font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS P Gothic","Osaka",Verdana,Arial, Helvetica, sans-serif;
	font-weight: normal;
	letter-spacing: 3px;
	line-height: 120%;
}
/* クイズタイトル */
#quiz_title{
	margin: 20px auto;
	width: 400px;
	height: 30px;
	text-align: center;
	font-size: 18px;
	line-height: 32px;
	background: #366;
	border: 1px solid #339;
	color: #FFE;
}
/* オープニング　メッセージ　フォントなどは変更可 */
#quiz_msg{
	margin: 40px auto;
	width: 400px;
	height: 300px;
	font-size: 18px;
	text-align: center;
	font-size: 15px;
	line-height: 25px;
}
/* エンディング 得点表示　変更可 */
span.msg_tokuten{
	color: red;
	font-size: 18px;
}
/*--   正解・不正解画像の表示    表示位置(top,left,width)は自由に変えてください --*/
#dsp0, #dsp1 {
	position: absolute;
	top: 80px;
	left: 0px;
	width: 100%;
	margin: 0; padding: 0;
	z-index: 11;
	display:none;
	text-align: center;
}
/* 問題文　変更可 */
#quiz_question {
	margin: 0 auto;
	width: 350px;
	height: 2em;
	padding: 5px 0;
	text-align: left;
	font-size: 15px;
	line-height: 10px;
}
#quiz_start{
	margin: 20px auto;
	width: 250px;
	height: 25px;
	border: 2px outset #ccc;
	font-size: 18px;
	line-height: 25px;
	padding: 5px 0;
	text-align: center;
	background: #369;
	color: #fff;
	cursor: hand;
	cursor: pointer;
}
#quiz_start:hover{
	border: 2px inset #ccc;
}
#quiz_wrap{
	display: none;
	margin: 0 auto;
	width: 400px;
	overflow: hidden;
}
#quiz_answer {
	margin: 0px auto;
	width: 350px;
}
#quiz_answer .qan_list {
	display: block;
	margin: 2px auto;
	text-align: center;
	width: 300px;
	background: #cfc;
	margin-top: 5px;
	padding: 15px 0;
	border: 2px outset #6c6;
	cursor: hand;
	cursor: pointer;
}
#quiz_answer .qan_list:hover {
	background: #FFE;
	border: 2px inset #eee;
}
#quiz_timer{
	position: absolute;
	bottom: 0;
	left: 0.5em;
	width: 200px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	font-weight: normal;
	text-align: left;
	z-index: 10;
}
#quiz_credit {
	position: absolute;
	bottom: 0.2em;
	right: 1em;
	letter-spacing: 1px;
	font-size: 10px;
}
#quiz_credit a{
	color: blue;
	text-decoration: none;
}
#quiz_credit a:hover{
	color: blue;
	background: #FFF;
	text-decoration: underline;
}
