/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* {
	margin: 0px;
	padding: 0;
}

html, body, #bg, #bg table, #bg td, #cont {
	height:100%;
	width:100%;
	overflow:hidden;
	margin: 0px;
}

#bg { 
    position: fixed; 
}

#bg div {
    height:200%;
    left:-50%;
    position:absolute;
    top:-50%;
    width:200%;
	overflow:hidden;
}

#bg td {
    text-align:center;
    vertical-align:middle;
}

#bg img {
    margin:0 auto;
    min-height:50%;
    min-width:50%;
}

#cont {
	position:absolute;
	top:0px;
	left:6px;
	z-index:5;
	overflow:hidden;
}

.box {
	width: 175px;
	padding-bottom:100px;
	font: 14px/2.8 Arial;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 10px;
	position: absolute;
}

#focus-stealer      { position: absolute; left: -9999px; }

.arrowlistmenu{
width: 190px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #000;
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	text-transform: uppercase; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: bold;
	background-color: #FFF;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	line-height: normal;
	filter:alpha(opacity=40);
	/* CSS3 standard */
    opacity:0.4;
	text-decoration: none;
	display: block;
}

.arrowlistmenu .menuheader a:hover{
  filter:alpha(opacity=100);
  /* CSS3 standard */
  opacity:1.0;
}

.arrowlistmenu .openheader a{ /*CSS class to apply to expandable header when it's expanded*/
  filter:alpha(opacity=100.0);
  /* CSS3 standard */
  opacity:100.0;
}

/*SUB-MENU*/
.arrowlistmenu .submenuheader a{ /*CSS class for menu headers in general (expanding or not!)*/
	color: #000;
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	text-transform: Capitalize; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	font-family: Georgia, Times New Roman, serif;
	font-size: 12px;
	font-weight: bold;
	font-style:italic;
	background-color: #FFF;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	line-height: normal;
	filter:alpha(opacity=100);
	/* CSS3 standard */
    opacity:1.0;
	;
	text-decoration: none;
	display: block;
}

.arrowlistmenu .submenuheader a:hover{
		filter:alpha(opacity=100);
	/* CSS3 standard */
  opacity:1.0;
}

.arrowlistmenu .opensubheader a{ /*CSS class to apply to expandable header when it's expanded*/
  filter:alpha(opacity=40);
  /* CSS3 standard */
  opacity:.4;
}

/*********************************************************/

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 2px; /*bottom spacing between each UL and rest of content*/
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	line-height: normal;
}

.arrowlistmenu ul li{
	padding-bottom: 5px; /*bottom spacing between menu items*/
	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: normal;
	background-color: #FFF;
	padding-top: 5px;
	padding-right: 5px;
	padding-left: 5px;
}

.arrowlistmenu ul li a{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: bold;
	display: block;
	padding-left: 10px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 90%;
	margin-top: 2px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	color: #000;
	background-color: #FFF;
	filter:alpha(opacity=100);
	/* CSS3 standard */
  opacity:1.0;
}

.arrowlistmenu ul li a:visited{
color: #000;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #000;
	filter:alpha(opacity=100);
	/* CSS3 standard */
  opacity:1.0;
	background-color: #FFF;
}

.arrowlistmenu ul li a:active{ /*hover state CSS*/
	color: #000;
	filter:alpha(opacity=100);
	/* CSS3 standard */
  opacity:1.0;
	background-color: #FFF;
}

.arrowlistmenu ul .opensubheader a{
	color: #000;
	filter:alpha(opacity=20);
	/* CSS3 standard */
  opacity:.2;
	background-color: #FFF;
}  
