.dhtmlgoodies_question {	/* Styling question */
	/* Start layout CSS */
	color:#3B3B3B;
	font-size:0.9em;
	background-color:#FFFFCC;
	width:160px;
	margin-bottom:2px;
	margin-top:5px;
	padding-top:5px;
	padding-left:2px;
	/*	background-image:url('images/bg_answer.gif'); */
	background-repeat:no-repeat;
	background-position:top right;
	height:20px;
	/* End layout CSS */
	
	overflow:hidden;
	cursor:pointer;
}
.dhtmlgoodies_answer {	/* Parent box of slide down content */
	/* Start layout CSS */
	border:1px solid #35332F;
	background-color:#E2EBED;
	width:50%;
	padding-left:2px;
	padding-bottom:2px;
	/* End layout CSS */
	
	visibility:hidden;
	height:0px;
	overflow:hidden;
	position:relative;
}
.dhtmlgoodies_answer_content {	/* Content that is slided down */
	padding:1px;
	font-size:0.9em;
	position:relative;
}

/*for showing thumbnails */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color:  rgb(255,255,153);
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}
