﻿/*
	You wanna change the look and feel of the entire site?
	Read on:

	First, open master.css (this file, duh)
				layout.css
				content.css
				input.css
				comics.css
				freshman.css

	Now you can do a "global" search and replace provided 
	you do it with the "All open documents" setting.

	Now, here are your colors:

	#a02815		header image background, selected menu item
	#d34a34		menu item hover
	#003399		generic link
	#0066cc		generic link hover
	#e6e6e6		input buttons

	One final note:  sometimes you might want the header
	and link colors to match, but this will throw off the 
	search and replace.  Offset the header by a single value
	(e.g., #ff0000 -> #ff0001).  Cheesy, but works.
*/

@import url( input.css );
@import url( layout.css );
@import url( content.css );

a {
	color:#003399;
	text-decoration:underline;
}

a:hover {
	color:#0066cc;
}

body {
	background-color:#e2e2e2;
	border:0;
	color:#363636;
	cursor:default;
	font-family:Calibri, Tahoma, Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align:center;
}

br.clearfloat {
	clear:both;
}

p, td {
	text-align:justify;
}

a.archive {
	color:#003399;
}

a.archive:hover {
	color:#0066cc;
}

td.week {
	background-color:#a02815;
	color:#ffffff;
}