/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */

/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { list-style:none }

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address */
address { font-style:normal }

body {
	font: 0.9em "Verdana",sans-serif;
  background-image: url(images/texture.gif);
	background-color: #FFFCE8;
	}

#container {
	width: 99%;
	margin: 0px;
	line-height: 130%;
	text-align: left;
	}

#header {
	padding-top: 2em;
  margin: 48px 2em 110px 290px;
  border-bottom: 4px solid #00147F;
	max-width: 51em ;
}

#header h1 {
	font: normal bold 1.5em "Palatino", serif;
	color: #000080;
  text-align: left;
}

#sidebar {
	position: absolute;
	top: 0;
	left: 20px;
	width: 150px;
	margin-left: 1em;
	padding: 0;
}

#sidebar img {
	margin: 10px 0 1em -10px;
}

#sidebar ul {
	display: block;
	text-align: center;
}

#sidebar li a {
	display: block;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding: 0.5em;
	background-color: #FFFFE0;
	font-weight: normal;
	text-decoration: none;
	border: 1px solid #404040;
}

#sidebar li.here {
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding: 0.5em;
	background-color: #CCFF66;
  color: #000080;
	font-weight: bold;
	border: 1px solid #404040;
	}

#sidebar li a:link, #sidebar li a:visited {
	background-color: #FFFFE0;
	color: #000080;
	}

#sidebar li a:hover, #sidebar li a:active {
	color: #001EC0;
	background-color: #CCFF66;
	font-weight: bold;
	}

#content {
	margin-left: 220px;
	margin-right: 2em;
	max-width: 56em;
}

#content h2 {
	font: normal bold 1.25em "Palatino", serif;
	color: #000080;
	text-align: left;
	margin-top: 1em;
	margin-bottom: 0.5em;
	}

#content p {
	margin-top: 0.5em;
	margin-bottom: 1em;
}

#content p.address {
	margin-left: 1em;
	font-weight: bold;
}

#content li {
	list-style-type: square;
	margin-left: 2em;
}

#content a:hover, #content a:active {
  border-bottom: 2px solid #000080;
	color: #001EC0;
 }

#content p.boxed {
  float: right;
  clear: both;
	width: 65%;
	border: 2px solid #005B00;
	padding: 1em;
	margin: 1em 0em 1em 1em;
	font-style: italic;
	background-color: #E7FF9B;
}

#content p.response {
	width: 75%;
	border: 3px solid #000080;
	padding: 2em;
	margin: 2em;
  font-size: larger;
	font-style: italic;
	background-color: #E7FF9B;
}

div.rpic {
	float: right;
	text-align: center;
	font-style: italic;
	margin: 0em 0em 1em 1em;
	}

div.lpic {
	float: left;
	text-align: center;
	font-style: italic;
	margin: 0em 1em 1em 0em;
	}

.rpic img, .lpic img {
	padding: 1px;
    border: 2px solid #808080;
	background-color: #CCCCCC;
	margin-bottom: 0.25em;
  }

.clearing {
	height: 0;
	clear: both;
	}

table.form {
	margin-left: 2em;
	line-height: 150%;
	}

table.form td.label {
	font-weight: bold; 
	text-align: right;
	padding-right: 2em;
	}

p.send input {
	margin-top: 1em;
	margin-left: 20em;
	font-weight: bold; 
	}
	
#footer {
	clear: both;
	max-width: 70em;
	margin-left: 220px;
	margin-top: 2em;
	margin-right: 2em;
	padding-top: 0.5em;
	padding-bottom: 1em;
	border-top: 1px solid #000080;
	font-size: smaller;
	text-align: right;
}

