@charset "UTF-8";
@media all 
{
	/* General */
	body {
		font-family: arial;
		font-size: 14px;
		color: #000;
		background-color: #55C5E9;
		background-image: url('../images/bg-wizard.png');
		background-repeat: repeat-x;
		background-position: top left;
		padding: 0;
		margin: 0;
	}

	/* DIVs */	
	#page_margins {
		border: 0 none;
		margin: 0 auto;
		max-width: 800px;
		min-width: 800px;
		height: 600px;
		padding: 0;
	}
	#page { position: relative; padding: 0px; }
	#header { height: 125px; padding-top: 15px; }
	#logo {}
	#NameClaimDesc { padding: 10px 40px 10px 40px; }
	#main {
		height: 429px;
		background-image: url('../images/bg-main.png');
		background-repeat: no-repeat;
		background-position:left top;
		padding: 30px 40px 0px 40px;
	}
	#main-right { float: right;}
	#choices {
		width: 310px;
		height: 260px;
		text-align: left; 
		background-image: url('../images/bg-choices.png');
		background-repeat: no-repeat;
		background-position:center top;
		padding: 10px 15px;
	}
	#main-left {
		float: left;
		width: 350px; 
		height: 280px; }
	#question { margin-bottom: 10px; height: 59px; }
	#error { margin: 10px 0; height: 16px; }
	#answers { height: 160px; }
	#buttons { }
	.clearfix { clear:both; }
	#main-bottom {float: none; }
	#suggestion { padding: 10px 0; height: 31px; }
	#progress { }
	#footer { height: 20px; }
	#copyright { position: absolute; right: 0px; bottom: 0px; }
	
	/* Links  outside main */
	a, :link { color: #000; text-decoration: none; }
	a:hover { color: #000; text-decoration: underline; }
	a:active { color: #000; text-decoration: underline; }
	a:visited { color: #000; }
	a img { border: none; }
	
	/* Links inside main */
	#main a, #main :link { color: #fff; text-decoration: none; }
	#main a:hover { color: #fff; }
	#main a:active { color: #fff; }
	#main a:visited { color: #fff; }
	#main a img { border: none; }
	
	/* Links in buttons  */
	#main a.button, .button:link { color: #000; text-decoration: none; }
	#main a.button:hover { color: #000; }
	#main a.button:active { color: #000; }
	#main a.button:visited { color: #000; }
	
	/* NameClaimDesc */
	.wizardname { font-weight: bold; font-size: 16px; line-height: 22px; }
	.wizardclaim { font-style: italic;; font-size: 16px; line-height: 22px; }
	.wizarddesc {}
	
	/* Question */
	h2 { font-size: 16px; font-weight: bold; margin-top: 0; margin-bottom: 0px; display: inline; }
	
	/* Error */
	.error { font-size: 14px; font-weight: bold; color: yellow; }
	
	/* Choices */
	.choices { font-size: 12px; }
	ul { padding-left: 30px; margin: 0; list-style-image: url('../images/choice_check.png'); }
	li { padding-left: 0px; line-height: 18px; }
	
	/* Answers */
	.answers {}
	
	/* Buttons */
	.button {
		background-image: url('../images/button.png');
		background-repeat: no-repeat;
		text-align: center;
		display: inline-block;
		line-height: 24px;
		width: 92px;
		cursor: pointer;
	}
	
	/* Suggestion */
	.suggestion {
		font-weight: bold;
	}
	.suggestion_note {
		font-size: 12px;
	}
	
	/* Tooltip */
	a.tooltip:hover {
		text-decoration: none;
		
	}
	a.tooltip span {
		display: none;
		padding: 2px 3px;
		margin-left: 8px;
		width: 200px;
	}
	a.tooltip:hover span {
		display: inline;
		position: absolute;
		background: #55C5E9;
		font-size: 10px;
		letter-spacing: 1px;
		padding: 4px 8px;
	}
}