/*
	astronomy css
*/
jtg {
	background-color: lightgrey;
	width: 300px;
	border: 15px solid green;
	padding: 50px;
	margin: 20px;
	}

body {
	background-color : black;
	color : #FF6666;
	}
	
/*	hyperlinks	*/
a:link {		/* unvisited link */
	color : #FFFF33;
	}
a:visited {		/* visited link */
	color : #FF6666;
	}
a:hover {		/* mouse over link */
	color: hotpink;
	}

/*	classes		*/
.title {
	font-size :	25px;
	}
.subtitle {
	font-size : 15px;

table, th, tr, td {
	border: 1px solid white;
	}
table {
	width: 100%;
	}
td.fitwidth {
	width: 1px;
	white-space: nowrap;
	}
td {
	vertical-align: text-top;
	}
