/* ############## */
/* DEFAULT STYLES */
/* ############## */

/* Default HTML element styles and default classes */

/*
CONTENTS:
- Default HTML tag styles
- Default classes
*/

/* Arranged alphabetically by tag */

/* ####################### */
/* DEFAULT HTML TAG STYLES */
/* ####################### */

a {
	color: #CCC;
	text-decoration: underline;
}
a:hover {
	text-decoration: underline;
	cursor: pointer;
}

input, label, select, textarea {
	/* font-family - overwrite value set in initial.css */
}

/* <body> */
body {
	margin-top: 0;
	background-color: #000000;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 90%;
	text-align: center;
	color: #ffffff;
}


/* ############### */
/* DEFAULT CLASSES */
/* ############### */

.highlight {
	color: #FDFF00;
	font-weight: bold;
}
input.submit {
	cursor: pointer;
}
