@charset "iso-8859-1";

/*******************************************************************************
*  hs_layout.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.
 */
dl, h1, h2, h3, h4, h5, h6 {
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1 {
	font-size: 120%;
}
h2 {
	font-family: Verdana;
	text-align: right;
	font-size: 190%;
}
h3 {
	font-size: 160%;
}


a, a:link, a:visited, a:active {
	color: #EEE;
	text-decoration: none;
}
a:hover {
	color: #FFF;
	text-decoration: underline;
}
a:active {
	color: red;
}

div#menu a {
	display: block;
	padding: 2px;
	margin-top: 8px;
}

div#menu a:hover {
	text-decoration: none;
	background: #667;
 
}

img.mnu-icon {
	border: 0;
	padding-right: 4px;
	width: 16px;
	height: 16px;
}

div.dl-title {
	margin-bottom: 0;
	margin-top: 10px;

	font-family: Tahoma;
	font-weight: bold;
	color: #DDD;
	border-bottom: dashed 1px #DDD;

}

div.dl-cont {
	margin-top: 0;
	margin-left: 10px;
	padding: 2px;
	background: #667;

	border-left: dashed 1px #CCC;
	border-right: dashed 1px #778;
	border-bottom: dashed 1px #778;

}


.clear {
	clear: both;
}
#hsSideColumn + .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: #667;
	font-family: Helvetica, sans-serif;
	color: #EEE;
}
#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#hsTitle {
	padding: 0;
	margin: 0 0 -0.275em 20px;
	color: #445;
	font-family: arial, helvetica, sans-serif;
	font-size: 900%;
	z-index: 10;
	position: relative;
}
#hsBorderOutside {
	z-index: 1;
	margin: 0 0 20px 0;
	border: solid 22px #778;
	background-color: #556;
}
#hsBorder {
	border: solid 20px #445;
	margin: -21px;
	padding: 1px;
	width: 100%;
}
#hsColumnWrapper {
	border-left: dotted 2px #778;
	border-bottom: 0 solid transparent;
	width: 100%;
}
#hsSideColumnSpacer {
	border-left: solid 200px #556;
}
#hsMainColumn {
	float: right;
	width: 100%;
}
#hsSideColumn {
	float: left;
	width: 200px;
	margin: 0 0 0 -200px;
}


div#footer {
	border-top: dotted 1px #778;

	text-align: right;
	font-family: Tahoma;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #DDD;
}

div#footer a, div#footer a:visited, div#footer a:hover {
	color: #BBB;
}

* html #hsBorderOutside,
* html #hsBorder,
* html #hsColumnWrapper,
* html #hsMainColumn,
* html #hsSideColumn
{
	position: relative;
}



* html #hsBorderOutside,
* html #hsBorder
{
	height: 0.01%;
}

