/*-----------------------------------------------------------------------------
tree.css

version: 1.0
author:  Amos Newcombe
email:   anewc2@gmail.com
URL:     

-------------------------------------------------------------------------------*/
/* ! Appearance */

/*-----------------------------------------------------------------------------*/
/** ! Page in the window **/

/* KLUGE: hack to center #page in IE 5, from CSS Mastery chapter 7 */
body {
	text-align: center; /* makes buggy IE 5 center _everything_ */
}

#page {
	width     : 66em; /* maximum width for easy readability */
	max-width : 100%; /* liquid layout for large fonts, narrow windows */
	margin    : auto; /* makes standards-compliant browsers center the layout */
	text-align: left; /* KLUGE: reset: hack is done (assumes left-to-right language) */
	padding   : 0 1em;
}

/*-----------------------------------------------------------------------------*/
/** ! Colors and Fonts **/

/* Content has normal colors. */
#page {
/* 	color           : %(text)s; */
/* 	background-color: %(back)s; */
	font-family     : Verdana sans-serif;
}

/* Blank side panels have reversed background. */
body {
	background-color: #000;
	color           : #fff;
}

a[href]         {color: #99f}
a[href]:visited {color: #898}
a[href]:hover   {color: #f99}

/*-----------------------------------------------------------------------------*/

#page {text-align: center}

footer {
	text-align: center;
	padding-bottom: 0.5em;
}

#footer-name    {float: left }
#footer-version {float: right}

h1 {
	font-weight: normal;
	font-family: cursive;
}