/*	This style sheet controls the appearance of Walrus. For those unfamiliar with
	CSS, don't despair--the syntax is almost identical to that used when styling
	HTML. More resources can be found at http://www.w3.org/Style/CSS/learning .
	
	In general, if you would normally use an attribute to style your text
	(by making it a certain colour or font, for instance, or changing its size),
	you'll want to put this attribute in the stylesheet. For instance, in order
	to set Walrus to use a different main background colour, change the 
	background-color declaration in the first line of the first class, labelled 
	"body". Anything inside the <body> tags will be formatted according to that
	unless overridden by another declaration. 
	
	Declarations left empty are unused by default, but left in for your 
	convenience. Uncomment to use.	*/

body {
	background-color: #111111;
	margin: 0;
	color: #111111;
	}

.newsdate { 
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	font-style:bold;
	text-decoration:underline;
	}

.newstext {
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size: 11;
	color: #cccccc;
	
}
/*	Changing stuff here is simple. The best way to figure out what does what is 
	to play around with it; try turning something to hot pink (#ff00bb) and see 
	what changes.	*/
	

.bg1 {

/*	This is the colour for the bar surrounding the strip and newspost, as well
	as the month headings on the archive calendar.	*/ 
	
	background-color: #555555;
}

.bg2 {

/*	This is the colour for the meat of the calendar tables themselves.	*/

	background-color: #666666;
}

td {

/*	This determines the styling of the table cells and all text within. 
	Note that this includes the main body of both the index and archive pages.	*/

	background-color: #000000;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10;
}

th {

/*	This determines the styling of all table headers, specifically the calendar 
	month and day headers. Note that this will override bg1 for the headers only
	if background-color is defined.	*/
	
/*	background-color: ;	*/
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: smaller;
}

a:link {

/*	This defines the style of unvisited links. */

	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #4B73AA;

}

a:visited {

/*	This defines the style of visited links.	*/

	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #375F96;
	
}

a:hover {

/*	This defines the style of links over which the cursor is currently placed.	*/

		font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
	color: #6384B5;
	
}

.entrymeta{
	height: 16px;
	margin-top: 0;
	font-size: 10px;
	color: #666;
	border-top:dotted 1px #666;
	padding-top:4px;
	margin-bottom: 8px;
}

.topnavbar {
	width:100%
	height:10px;
	text-align:left;
	background-color: #000000;
	padding:0px;
	margin:0px;
}

a.topnavbaritem {
	padding:0px;
	margin:0px;
	text-align:center;
	vertical-align:middle;
	font-family : Arial, Verdana, Helvetica, sans-serif;
        text-decoration:none;
        font-size : 10px;
        color: #ffffff;
	font-weight:bold;
}
a.topnavbaritem:ACTIVE {
	color: #ffffff;
}

a.topnavbaritem:VISITED {
	color: #ffffff;
}


a.topnavbaritem:HOVER {
	color: #ffffff;
}
