@import "../cool.css";						/* General cool stuff for better browsers */
@import "advanced.css";			/* color scheme for better browsers */

body {
	background : #990000 url(leaves.jpg) repeat-x fixed left;
	color : black;
	font-family : "Trebuchet MS", "Lucida Grande", Verdana, Geneva, Helvetica, Arial, sans-serif;
}

/* div.main - use on all the pages as a wrapper div */
div.main, div.wrapper { width : 700px; }

div.main { background : white; }

/* the front page's two main content divs */
.menu {
	width : 175px;
	margin : 0;
	float : left;
	background : transparent;
}
.content {
	float : right;
	width : 515px;
	background : white;
}

/* links on the menu */
.links {
	font-size : 12px;
	line-height : 16px;
	background : white;
}

/* heading styles.  The uses for each are included in the comments. */

/* h1 - page and topic headers */
h1 {
	font : italic 24px/28px "Calisto MT", Georgia, "Times New Roman", Times, sans-serif;
	text-align : right;
	background-color : #930;
	color : white;
	margin : 0;
	padding-right : 10px;
}

/* h2 - subheaders and dates of entries */
h2 { 
	font-size : 16px;
	text-align : center;
	background-color : transparent;
	color : #900;
}

/* h3 - entry headers and category headers */
h3 {
	font-size : 14px;
	text-align : left;
	background-color : transparent;
	color : #c93;
}

/* h4 - sub-headers in categories */

h4 {
	font-size : 12px;
	text-align : left;
	font-weight : bold;
}

/* h5 - time/link/comment line and other minor things */
h5 {
	font-size : 10px;
	text-align : left;
}

/* link styles */
a:link { color: #990000; background-color : transparent; }
a:visited { color: #996633; background-color : transparent; }
a:hover { color: #c93; background-color : transparent; }
h3 a:link, h3 a:visited { color : #f60; background-color : transparent; text-decoration : none; }
h3 a:hover { background-color : transparent; color : #c93; }

/* basic text styles */

/* only include in styles with a background image */ 

p, h3, .linkbar {
 	padding-left : 5px;
}

p, div, ul, li, blockquote {
	font-family : "Trebuchet MS", "Lucida Grande", Verdana, Geneva, Arial, Helvetica, sans-serif;
}

p {
	text-indent : 2em;
	font : 12px/16px "Trebuchet MS", "Lucida Grande", Verdana, Geneva, Arial, Helvetica, sans-serif;
}

 li, blockquote {
	font-size : 12px;
	line-height : 16px;
}

/* image styles - won't work in NS4, but that shouldn't affect a whole lot */

img {
	border : 0;
	margin : 0% 0% 0% 0%;
}

/* some special span, div, and p styles */

.backlink { text-align : right; }
.center { text-align : center; text-indent : 0; }
.linkbar { font-size : 10px; font-weight : bold; }
.linklist {
	list-style-type : none;
	text-indent : 0;
	margin : 0;
	padding: 0;
}
.right { text-align : right; }
code, .tooltip { color : #633; background-color : transparent; }
acronym, .tooltip { cursor : help; }
acronym { border-bottom : 1px dotted black; }
.noindent { text-indent : 0; }
.red { color : red; background-color : transparent; }