/* CSS File for quizzes  */


#rectPizza_cc { page-break-before: always;}

/* ADJUST: set the line height for everything EXCEPT the answerblanks 
   0.7em or 1.0em are reasonable numbers */

td.lineNumberColumn, 
td.question,
td.normalCode,
td.normalCode code,
td.question code
{
   line-height: 0.6em;
   font-size: 1.0em;	
}

/* ADJUST: answer blanks get extra padding 
   reasonable numbers are   20px 0px 20px 10px **or** 10px 0px 10px 10px */

td.answerBlank {   padding: 15px 0px 15px 10px;}

/* ADJUST: Various colors */


td.question    {background-color:white; color: black;}
td.normalCode  {background-color:white; color: black;}
td.answerBlank {background-color:white; color: black;}

/* td.answerBlank {border: 1px solid #CCCCCC; } */

/* grey for the line numbers, e.g. #CCCCCC or #666666 or #333333 */

td.lineNumberColumn {   color: #999999; }

/* this is just a hack to make sure changes are taking place,
	set this color to something other than white each time
	you make a change if you want to be sure your changes
	are making it into the file (e.g. purple, pink, magenta) */

table.codeTable tr
{
   background-color:white;
}




/* MOST STUFF BELOW HERE STAYS AS IS... */


/* set almost all the margins to 0px on all sides */

table.codeTable tr,
td.lineNumberColumn, 
td.question,
td.normalCode,
td.normalCode code,
td.question code,
td.answerBlank 
{
   margin: 0px 0px 0px 0px;
}

/* just a little padding on the left so text doesn't
	 run into the left border */

table.codeTable tr,
td.normalCode code, 
td.question code
{
   padding: 0px 0px 0px 10px;
}

/* a border around the entire code table */

table.codeTable 
{
   border: solid 5px black;
   padding: 5px 5px 5px 5px;
}


/* the line number column has a smaller font, less padding,
  and text aligned to the right */



td.lineNumberColumn 
{
   font-size: 0.8em; 
   padding: 0px 0px 0px 5px; 
   text-align: right;
}

td.normalCode code, td.question code, td.question, td.normalCode
{
   text-align: left;
   white-space: pre;
}


td.question code
{
  font-weight: bold;
}





