@charset "utf-8";
/* jwst core css definitions */

.ssdCoreTest {  /* test successful include  */
color:red;
}

* {
	margin:0;		/* reset padding and margins on ALL elements to 0, override browser def css */
	padding:0;
}
img {
	border:none;   	/* by default I want no borders on images used as links */
}
body {
	/* most elements inherit font from body, so set basics here to minimize css elsewhere */
	font-family: Arial, Helvetica, sans-serif;
	font-size:1em;  /* relative font sz to browser default, allows resizing TBD: TEST TEST TEST! might need to go fixed sx */
	color:#FFFFFF;
	background: #000000;
}


/* GENERAL UTILITY CLASSES */

.floatLeft {
float:left;
}
.floatRight {
float:right;
}
.clearBoth {
clear:both;
}

.hotGoldAccent { 
color:#FFCC00; 
}

a {
color:#0099FF;
text-decoration:none;
}

a:hover{
color:#00CCFF;
text-decoration:underline;
}

a:visited {
color:#888888;
}

