	/* Layout properties for your question  */	.question{		font-weight:bold;	/* Bold font */				color: #FF6600;		/* The questions is in orange */		cursor:pointer;		/* Cursor is like a hand when someone rolls the mouse over the question */	}			.answer{		/* Layout properties - You can change these */				border: 1px solid #ccc;		padding:1px;		width:370px;		background-color:#E2EBED;				/* This one should not be changed */		display:none;		}		
