/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Cascading Style Sheets (CSS) specific to this tutorial can be added
below. CSS intended for all tutorials are in jtat/_cssutil. */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* colors for text */

.greenText
{
	color: #00ff00;
}

.orangeText
{
	color: orange;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* Tables have two borders: an outer one for "table", and an inner one
for "td". The styles below make a single gray border line.
See the use of these styles in the JTAT Demo Tutorial, chapter on
comparing multiple molecules.

Excellent test page: http://www.somacon.com/p141.php
*/

table.tnice
{
	border: none;
	border-collapse: collapse;
	margin-top: 3px;
}

td.tdnice
{
	border: 2px solid #808080;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
