/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* 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;
}

.lightGreenText
{
	color: #90ff90;
/*
	margin-left:10px; 
	margin-right:10px; 
*/
}

.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;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* was 1.3em */
.contents
{
	font-size: 1.3em; 
}

/* put space between list items in contents.
To suppress the definition in _cssutil, we must redefine it, not just
comment it out!
Formerly:
	margin-top: 20px;
*/
.contents li
{ 
	margin-top: 4px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
