@charset "UTF-8";
/* CSS Document */

/* body margin/padding */
BODY {
	margin: 0;
	padding: 10px;
}

/* font and line spacing for filelist */
#filelist {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size:11px;
	line-height: 1.5em;
}

/* disable bullets, margin and padding in filelist lists */
#filelist ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

ol {
	margin-top:15px;
}

ul {
	margin-top:15px;
}

/* set indent on filelist list items */
#filelist li {
	padding: 0;
	margin: 0;
	padding-left: 20px;
}

/* set normal and hover styles for filelist links */
#filelist a {
	text-decoration: none;
	color: #000000;
}
#filelist a:hover {
	text-decoration: underline;
	color: #00A4E4;
}

/* style for "collapsed" filelist link */
#filelist li.collapsed {
	background: url('images/common/plusbutton.gif') no-repeat top left;
	background-position: 0px 2px;
}

/* style for "expanded" filelist link */
#filelist li.expanded {
	background: url('images/common/minusbutton.gif') no-repeat top left;
	background-position: 0px 2px;
}

/* style for "square" body bullets */
#filelist li.square {
	list-style-type: square;
	padding-left: 15px;
	margin-left: 15px;
	margin-bottom:10px;
	line-height:15px;
}

/* style for "roman numeral" body bullets */
#filelist li.romnumerals {
	list-style-type: lower-roman;
	padding-left: 15px;
	margin-left: 15px;
	margin-bottom:10px;
	line-height:15px;
}

/* style for "numbers" body bullets */
#filelist li.numbers {
	list-style-type: decimal;
	padding-left: 15px;
	margin-left: 15px;
	margin-bottom:10px;
	line-height:15px;
}

/* style for "letters" body bullets */
#filelist li.letters {
	list-style-type: lower-alpha;
	padding-left: 15px;
	margin-left: 15px;
	margin-bottom:10px;
	line-height:15px;
}

/* styles to show/hide the subfilelists */
#filelist li.collapsed ul {
	display: none;
	list-style: none;
}
#filelist li.expanded ul {
	display: block;
	list-style: none;
}

/* hack to prevent "expanded" style propagating to all lower-level */
/* child filelists */
#filelist li.expanded ul li.collapsed ul {
	display: none;
}
.blue {color: #00A4E4}