@charset "iso-8859-1";

/*******************************************************************************
*  main.css : 2005.03.29
* -----------------------------------------------------------------------------
*  
*  
*******************************************************************************/


/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't want this. If you do,
 * feel free to change it.
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
	color: #FF0000;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style to provide greater consistency
 * across browser platforms. these styles are of a more personal choice,
 * meaning you can change/delete these as you see fit.
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

.clear
{
	clear: both;
}
#indexSideColumn + .clear
{
	border-bottom: 1px solid;
	border-color: transparent;
}

/* because of how IE calculates an element's width, we don't want to add padding or
 * margins or borders to any element with a specified width, such as the column
 * elements. but we will want padding on these elements to separate the text
 * from the column/border surrounding it. so this columnLiner element is placed
 * inside each column and is where all column padding should be specified
 */
div.columnLiner
{
	margin: 10px;
}

body
{
	background-color: #FFFFE2;
	color: #3300AA;
}
#layoutContainer
{
	/* applying padding to the body element to achieve the side padding
	 * triggers a bug in IE which generates padding on child
	 * elements where none should be. 
	 */
	margin: 0 10% 20px;
	width: auto;
}
h1#indexTitle
{
	padding: 0;
	margin: 0 0 -0.275em 20px;
	color: #804040;
	font-family: arial, helvetica, sans-serif;
	font-size: 300%;
	z-index: 10;
	position: relative;
}
#indexBorderOutside
{
	z-index: 1;
	margin: 0 0 20px 0;
   background-color: #FFFFEE;
}
#indexBorder
{
	border: solid 20px #eda;
	margin: -21px;
	padding: 1px;
	width: 100%;
}
#indexColumnWrapper
{
	border-left: dotted 2px #3300AA;
	border-bottom: 0 solid transparent;
	width: 100%;
}
#indexSideColumnSpacer
{
	border-left: solid 200px #FFFFEE;
}
#indexMainColumn
{
	float: right;
	width: 100%;
}
#indexSideColumn
{
	float: left;
	width: 200px;
	margin: 0 0 0 -200px;
}


* html #indexBorderOutside,
* html #indexBorder,
* html #indexColumnWrapper,
* html #indexMainColumn,
* html #indexSideColumn
{
	position: relative;
}



* html #indexBorderOutside,
* html #indexBorder
{
	height: 0.01%;
}
