/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */
/****
**** HTML ELEMENT STYLING
****/
/** fonts **/
/*
* Our font size and line height declarations are based on the following ALA
* article:
*   http://www.alistapart.com/articles/howtosizetextincss
*
* All modern browsrs use a 16px default font size. Specifying the font-size
* and line-height in ems (relative to the 16px default font) allows the user
* to resize the font in the browser and produces the most consistent results
* across different browsers.
*/
body {
	font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
	color: #363636;
	background-color: #535c65;
}

#page {
	font-size: 0.6875em;
	line-height1: 1.1875em;

}


body, caption, th, td, input, textarea, select, option, legend, fieldset {
	/* The following font family declarations are based on the Microsoft core
* web fonts which are common fonts available on most computer systems. The
* Bitstream Vera fonts are commonly available on Linux systems where the MS
* fonts are less common.
*
* A user's web browser will look at the comma-separated list and will
* attempt to use each font in turn until it finds one that is available
* on the user's computer. The final "generic" font (sans-serif or serif)
* hints at what type of font to use if the web browser doesn't find any
* of the fonts in the list.

font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;

font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;

font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;

*/
	font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
}

pre, code {
	font-size: 1.1em; /* Monospace fonts can be hard to read */
	font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
}

/** headings **/
h1 {
	margin-top: 1.227em;
	margin-bottom: 1em;
	font-size: 2em;

	color: #393532;

}

h2 {
	margin-top: 2em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
	margin-bottom: 0.667em;
	padding-left: 0em;

	
	font-size: 1.273em;
	font-weight: bold;
	line-height: 1.286em;
	
	color: #628326;
}

h3 {
	font-size: 1.091em;
	line-height: 1.3em;
	margin-top: 1em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
	margin-bottom: 1em;
	color: #628326;
}

h4, h5, h6 {
	font-size: 1em;
	line-height: 1.3em;
	margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
	margin-bottom: 0.909em;
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

h1.title, h2.title, h3.title {
	margin-top: 0px;
}


/** block-level elements **/
p, ul, ol, dl, pre, table, fieldset, blockquote {
	margin: 1em 0;
}

/** lists **/
/* standardize list item indentation */
ul, ol {
	margin-left: 0;
	padding-left: 2em;
}

.block ul, /* Drupal overrides */
.item-list ul {
	margin: 1em 0;
	padding: 0 0 0 2em;
}

ul ul, ul ol,
ol ol, ol ul,
.block ul ul, .block ul ol,
.block ol ol, .block ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
	margin: 0;
}

li {
	margin: 0.5em 0;
	padding: 0;
}

.item-list ul li {
	margin: 0;
	padding: 0;
	list-style: inherit;
}


ul {
	list-style-type: disc;
}

ul ul {
	list-style-type: circle;
}

ul ul ul {
	list-style-type: square;
}

ul ul ul ul {
	list-style-type: circle;
}

ol {
	list-style-type: decimal;
}

ol ol {
	list-style-type: lower-alpha;
}

ol ol ol {
	list-style-type: decimal;
}

dt {
	margin: 0;
	padding: 0;
}

dd {
	margin: 0 0 0 2em;
	padding: 0;
}

/** links **/
/* The order of link states are based on Eric Meyer's article:
* http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
*/
a:link {
	color: #93320b;
	text-decoration: underline;
}

a:visited {
	color: #93320b;
	text-decoration: underline;	
}

a:hover,
a:focus {
	color: #ff0000;
	text-decoration: underline;
}

a:active {
	color: #ff0000;
}

/** tables **/
/* Override Drupal default CSS */
table {
	border-collapse: collapse;
}
table[align="center"] {
	margin: 0 auto;
}

th,
thead th,
tbody th {
	padding: 0.25em;
	text-align: left;
	border-bottom: none;
	background-color: #3d424b;
}
thead th {
	text-align: center;
}

tbody {
	border-top: none;
}

caption {
	padding-bottom: 2px;
	text-align: left;
	font-weight: bold;
}
/** abbreviations **/
abbr {
	border-bottom: 1px dotted #666;
	cursor: help;
	white-space: nowrap;
}

/* Date-based "abbreviations" show computer-friendly timestamps which are not
human-friendly. */
abbr.created {
	border: none;
	cursor: auto;
	white-space: normal;
}

/** images **/
img {
	border: 0;
}

/** horizontal rules **/
hr {
	height: 1px;
	border: 1px solid #666;
}

/** forms **/
form {
	margin: 0;
	padding: 0;
}

fieldset {
	margin: 1em 0;
	padding: 0.5em;
}

label {
	font-weight: bold;
}
