@charset "utf-8";
/* CSS Document */

/* Layout properties for your question  */
.question{
	font:11px Georgia, "Times New Roman", Times, serif;
	font-weight:bold;	/* Bold font */		
	color: #006600;		/* The questions is in red */
	cursor:pointer;		/* Cursor is like a hand when someone rolls the mouse over the question */
	text-decoration:underline;
	margin:10px 0;
}
	
.answer{
	/* Layout properties - You can change these */
	
	border: 1px solid #ccc;
	padding:3px;
	background-color:#ffffee;
	
	/* This one should not be changed */
	display:none;	
}