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


/* クイズ出題ボックスの設定 */
#quiz_box{
	position: relative;
	overflow: hidden;
	/* 背景や位置、文字の設定　お好きなように変更してください。  */
	margin: 0 auto;
	padding:0;
	color: #FFF;			/* 文字色 */
	font-size: 14px;
	font-family:Arial, Helvetica, sans-serif, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo";
	font-weight: normal;
	line-height: 120%;
	background-image: url(bg_quiz03.gif);
	background-repeat: no-repeat;
}
/* クイズタイトル */
*#quiz_title{
    width:500px;
	margin: 20px auto;
	padding:0 0 5px 0;
	text-align: center;
	font-size:15px;
	font-weight:bold;
	border-bottom:1px dotted #CCC;
}
/* オープニング　メッセージ　フォントなどは変更可 */
#quiz_msg{
	margin: 10px auto;
	width: 500px;
	height: 300px;
	font-size: 18px;
	text-align: center;
    font-weight: bold;
	line-height: 150%;
}
/* エンディング　メッセージ　変更可 */
span.end_tk{
	color: #CC0000;
	font-size: 18px;
    font-weight: bold;
}
/*--   正解・不正解画像の表示    表示位置(top,left,width)は自由に変えてください --*/
#dsp0, #dsp1 {
	position: absolute;
	width: 550px;
	margin: 0; 
	padding: 0;
	z-index: 11;
	display:none;
	text-align: center;
	bottom: 60px;
}
/* 問題文　変更可 */
#quiz_question {
	margin: 0 auto;
	width: 500px;
	height: 80px;
	padding: 10px 0;
	text-align: center;
	font-size: 16px;
    font-weight: bold;
	line-height: 150%;
}
#quiz_start{
	margin: 20px auto;
	width: 250px;
	height: 25px;
	font-size: 18px;
	line-height: 25px;
	padding: 5px 0;
	text-align: center;
	color: #fff;
	cursor: hand;
	cursor: pointer;
	background-image: url(bt_start.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
#quiz_start:hover{
	background-image: url(bt_start_ro.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
#quiz_wrap{
	display: none;
	margin: 10px auto;
	width: 500px;
	overflow: hidden;
}
#quiz_answer {
	margin: 0 auto;
	width: 500px;
}
#quiz_answer .qan_list {
	display: block;
	margin: 0px auto;
	text-align: center;
	width: 500px;
	margin-top: 5px;
	padding: 8px 0;
	background: #FFF;
	color:#555;
	cursor: hand;
	cursor: pointer;
    border-radius: 5px;        /* CSS3草案 */  
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 5px;   /* Firefox用 */
}
#quiz_answer .qan_list:hover {
	background: #CEEAD9;
}
#quiz_timer{
    margin: 0;
	position: absolute;
	bottom: 30px;
	width: 550px;
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	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;
}
