/*
This is the sample Cascading Style Sheet (CSS) for Corvid expert systems. 
It supplements the sample .html templates that use CSS.
Customize the look-and-feel of your expert systems by editing only this file.
No changes are needed of your .html template files.
Changes will occur globally to all templates that use this .css file.
Note: relative URLs are relative to this .css file, so images with no path go in same folder.
*/

body { /*This is all text outside the FORM (actually the DIV around the FORM).*/
	background-image:url("background.jpg");
	text-align:center;
	font-family:serif;
}

div.question { /*This is the default for text in the question screen other than prompt and value text.*/ 
	background-color:#ACD;
	background-image:none;
	color:#000;
	font-family:"Arial Black", Arial, Impact, sans-serif;
	width:70%;
	padding: 10px;
	text-align:left;
}


div.Results { /*This is the default for text in the Results other than what Corvid replaces via FOR_EACH VARIABLE.*/
	background-color:#ACD;
	background-image:none;
	color:#000;
	font-family:"Arial Black", Arial, Impact, sans-serif;
	width:70%;
	padding: 10px;
}

strong.prompt { /*This is the prompt text.*/
	font-weight:normal;
}

strong.valuetext { /*This is the Full Text for Static List values and Dynamic List values.*/
	font-weight:normal;
	font-family:Arial, sans-serif;
}

strong.result { /*This is the text displayed in the Results.*/
	font-weight:normal;
	font-family:Arial, sans-serif;
}

.trace {
	background-color:#FFF;
	color:#000;
	font-family:"Arial Black", Arial, Impact, sans-serif;
	visibility:hidden; /*Uncomment this command hide the Trace.*/
}

#SetStyleSheet {
	margin-left:40%;		
}

#SetStyleSheet a {
	float:left;
	clear:both;
}
