/*
CSS for www.ragtag.net
by: Ragnar Brynjulfsson
Style sheet only covers fonts, colors and padding around items. Page layout is done with a simple table.
*/

/* Main Fonts and Colorst */
body {
	font-size: 62.5%; /* Resets 1em to 10px. Mozilla seems to ignore this.*/
	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
	/*background: black url(images/bg_color.jpg);*/
	}
	
h1 {
	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
	font-size: 20px;
	font-weight: bold;
	margin: 0px 0px -5px 0px;
	}
	
h2, h3 {
	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
	font-weight: bold;
	}

p {
	font: 13px 'Lucida Grande', Verdana, Arial, Sans-Serif;
	line-height: 1.4em;
	color: #444;
	}

small {
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	color: gray;
	line-height: 1.5em;
	}

a, a:link, a:visited {
	color: black;
	text-decoration: none;
	}
	
a:hover{
	color: gray;
	}
	
	
/* End Main */

/* Begin Fonts and Colors in Content */

#content {
	background: white;
	padding: 30px 30px;
	}

#content p:first-letter {  /* Not supported in IE 5. */
	font-weight: bold;
	margin: 0px 0px 0px 7px;
	font-size: 18px;
	}

#content td {
	font-size: 11px;
	}
	
/* End Content */


/* Begin Fonts and Colors in Sidebar */

#sidebar {
	padding: 0px 30px 0px 20px;
	background: #f7f7f7;
	text-align: left;
}

#sidebar h2 {
	font-size: 14px;
	margin: 20px 0 -3px 0;
	}

#sidebar p, #sidebar ul {
	font: 10px 'Lucida Grande', Verdana, Arial, Sans-Serif;
	margin: 5px 0 0 0;
	}
	
#sidebar ul {
	list-style: circle;
	padding: 0px 20px 0 30px;
	color: #06a;
	}
	
#sidebar a, #sidebar a:link, #sidebar a:visited {
	color: #06a;
	text-decoration: none;
	}
	
/* End Sidebar */

/* Begin fonts and Colors for Front page */
#frontpage a, #frontpage a:link, #frontpage a:visited {
	color: grey;
	text-decoration: none;
	}

/* End Front page */

