/*[variables]
colors
{
	@30: #3B5395;
	@20: #283C72;
	@10: #9A98D3;
	@00: #353232;
}
*/
/*$Id: html-elements.css,v 1.1 2008/02/15 16:22:09 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*/
}
#page
{
/*
* To use a 12px font size on the page, delete the 14px declarations.
* to use a 14px font size on the page, delete the 12px declarations.

Use a 12px base font size with a 16px line height*/
	font-size: 0.75em;
/*16px x .75 = 12px*/
	line-height: 1.333em;
/*12px x 1.333 = 16px
Use a 14px base font size with a 18px line height*/
	font-size: 0.875em;
/*16px x .875 = 14px*/
	line-height: 1.286em;
/*14px x 1.286 = 18px*/
	color: #434035;
	text-align: justify;
}
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: "Trebuchet MS";
}
PRE, CODE
{
	font-size: 1.1em;
/*Monospace fonts can be hard to read*/
	font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
}
/** headings **/
H1
{
	font-size: 2em;
	line-height: 1.3em;
	margin-top: 0;
	margin-bottom: 0.5em;
/*0.5em is equavalent to 1em in the page's base font.
Remember, a margin specified in ems is relative to
the element's font-size, not to the pages' base
font size. So, for example, if we want a 1em margin
(relative to the base font), we have to divide that
length by the element's font-size:
1em / 2em = 0.5em*/
}
H2
{
	font-size: 1.2em;
	line-height: 1.3em;
	margin-top: 0.667em;
/*Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em*/
	margin-bottom: 0.667em;
	color: #635D45;
}
H3
{
	font-size: 1.3em;
	line-height: 1.3em;
	margin-top: 0.769em;
/*Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769*/
	margin-bottom: 0.769em;
}
H4, H5, H6
{
	font-size: 1.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;
}
/** 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, .item-list UL
{
	/*[disabled]margin:1em 0;*/
	padding: 0 0 0px 1.8em;
}
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;
	padding: 0;
}
.item-list UL LI
{
	margin: 0;
	padding: 0;
	list-style: inherit;
}
UL.menu LI, LI.expanded, LI.collapsed, LI.leaf
{
	margin: 0 0 2px;
	padding: 0;
}
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: #3B5395; /*[e]@30*/
}
A:visited
{
	color: #385398;
}
A:hover, A:focus
{
	color: #385398;
	text-decoration: none;
	text-transform: none;
	font-weight: bold;
}
A:active
{
	color: #3B5395; /*[e]@30*/
	font-weight: bold;
}
/** tables *
Override Drupal default CSS*/
TABLE
{
	border-collapse: collapse;
}
TH, THEAD TH, TBODY TH
{
	text-align: center;
	padding-right: 0;
	border-bottom: none;
}
TBODY
{
	border-top: none;
}
/** 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;
}
