/*========================================
 * 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;	/* ボックスの枠線 */
	border:2px solid #fff;
	background:#EEFFFF;	/* 背景色 url(･･･.jpg)で背景画像を入れることも可能 */
	background:#fff;
	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:0 auto;
	width:100%;
	text-align:center;
	font-size:24px;
	line-height:32px;
	background:#ddd;
	border:0;
	padding:8px 0 5px;
	border-radius:2px;
	color:#000;
}
/* オープニング　メッセージ　フォントなどは変更可 */
#quiz_msg{
	text-align:center;
	margin:30px auto;
	line-height:1.5em;
	font-size:18px;
	width:100%;
	height:auto;
}
/* エンディング 得点表示　変更可 */
span.msg_tokuten{
	color:#c00;
	font-size:18px;
}
/*--   正解・不正解画像の表示    表示位置(top,left,width)は自由に変えてください --*/
#dsp0, #dsp1 {
	position:absolute;
	top:165px;
	left:0px;
	width:100%;
	margin:0; padding:0;
	z-index:11;
	display:none;
	text-align:center;
}
/* 問題文　変更可 */
#quiz_question {
	margin:20px auto;
	width:90%;
	min-height:3em;
	padding:10px;
	text-align:left;
	font-size:18px;
	line-height:20px;
	border:3px solid #ddd;
	border-radius:3px;
}
#quiz_start{
	background:#3cafb2;
	margin:30px auto;
	padding:16px 0;
	border-radius:5px;
	text-align:center;
	font-size:18px;
	width:300px;
	border:0;
	color:#fff;
	cursor:pointer;
}
#quiz_start:hover{
	opacity:0.8;
}
#quiz_wrap{
	display:none;
	margin:0 auto;
	width:100%;
	overflow:hidden;
}
#quiz_answer {
	margin:0px auto;
	width:100%;
}
#quiz_answer .qan_list {
	background:#3cafb2;
	text-align:center;
	margin:5px auto 0;
	border-radius:5px;
	padding:16px 0;
	font-size:20px;
	line-height:1.2em;
	display:block;
	cursor:pointer;
	width:70%;
	color:#fff;
	border:0;
}
#quiz_answer .qan_list:hover {
	opacity:0.8;
}
#quiz_timer{
	position:absolute;
	font-weight:normal;
	line-height:30px;
	bottom:0;
	left:0.5em;
	width:100%;
	height:30px;
	font-size:18px;
	text-align:left;
	z-index:10;
	margin-bottom:10px;
}
#quiz_timer .number{
	font-size:45px;
	font-weight:bold;
	position:relative;
	bottom:-8px;
}
#quiz_credit {
	position:absolute;
	bottom:0.2em;
	right:1em;
	letter-spacing:1px;
	font-size:10px;
	display:none;
}
#quiz_credit a{
	color:blue;
	text-decoration:none;
}
#quiz_credit a:hover{
	color:blue;
	background:#FFF;
	text-decoration:underline;
}
