/* gvim.css */

/* This style is loosely based on the look of gvim with color syntax
 * highlighting turned on
 */

/* color guide */

/* color : #e5e5e5; /* gray90 */

/* body */

body { 
	background: silver;
	color: black;
}

/* ids */

#masthead {
	color: black;
	background-color: transparent; 
	border: none;
	text-align: center;
}

#title { /* no style */ }

#tagline { /* no style */ }

#common { /* no style */ }

#navigation, #links, #intro { display: none; }

#footer {
	text-align: center;
}

/* classes */

.menu { display: inherit; }

.story { /* no style */ }

.date {
	background: #e5e5e5; /* gray90 */
	color: black;
	border: 2px solid;
	border-color : maroon; 
	padding: 1%;
	margin: 1% 3% 1% 3%;
}

.timestamp { /* no style */ }

.titleline { /* no style */ }

/* text */

h1, h2, h3, h4, h5, h6 { color: gray; } 

strong { color: maroon; }

em { color: green; }

/*links */

a:link {
	text-decoration: none;
	color: blue; 
}

a:visited {
	text-decoration: underline;
	color: blue; 
}

a:hover { 
	color: white;
	background-color: blue; 
}

/* tables */

/* table { border: thin solid black; } */

