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

/*AFFECTS: Type of border for all tables*/
table {
  border-collapse:collapse;
}

/*AFFECTS: Border around main table. NOT USED*/
table.root{
  border:solid 1px #000066; 
}

/*AFFECTS: Gives table cells a border. Used for borders around images in index.html*/
td.bordered{
	border:1px solid #c5c5c5;
}
  
/* This is for shading the tables because the css class is named shaded.
   Use ../ because css file is in root/css and media is in root/media.
*/
/*AFFECTS: Shaded blocks*/
.shaded {
  position: absolute;
  text-align:center;
  font-size: 10pt;
  font-family:Arial, Helvetica, sans-serif;
  
  border: solid 1px #c5c5c5;
  background: #ffffff url(../dw_media/gif/cell_gradient.gif) top repeat-x;
}

.plainBordered {
   border:1px solid #000033;
   background-color: #d9d0c3;
}