/**
* CSS
*
* @version Down Quark 1.0
* @author Derek Kinsman // Unttld
*/
* {
	margin: 0;
	padding: 0;
}
html {
	font-size: 100%;
}
body {
	font-family: Helvetica / Helvetica, sans-serif;
	background-color: #fff;
	color: #fffff;
	text-decoration: none;
	word-spacing: normal;
	letter-spacing: 10;
	line-height: 1.2em;
	font-size: .7em;
}
body.section-1 {
}
body.section-2 {
}
body.section-3 {
}
a {
	font-style: normal !important;
	outline: none;
}
a:link {
	color:#000;
	text-decoration:none;
}
a:visited {
	color:#000;
	text-decoration:none;
}
a:hover {
	color:#FF0;
	text-decoration:none;
}
a:active {
	color:#3e96f9;
	text-decoration:none;
}
a img {
	border:medium none;
}
p, ul {
	font-size: 1em;
}
h1 {
	font-size: 1.260em;
	font-weight: normal;
}
h2 {
	font-size: 1.6em;
	font-weight: bold;
}
h3 {
	font-size: 1.4em;
	font-weight: normal;
}
h4 {
	font-size: 1.2em;
	font-weight: normal;
}
h5 {
	font-size: 1em;
	font-weight: bold;
}
h6 {
	font-size: 1em;
	font-style: italic;
}
span.header {
	font-size: 2em;
	font-weight: bold;
	line-height: 1em;
}
#menu {
	width: 215px;
	overflow: auto;
	top: 0;
	bottom: 0;
	left: 0;
	position: fixed;
	height: 100%;
	background-color: #fff;
}
#menu ul {
	list-style: none;
	margin: 0 0 12px 0;
}
#menu ul li.section-title {
}
#content {
	height: 100%;
	margin: 0 0 0 215px;
	top: 0;
}
.container {
	padding: 5px 5px 25px 5px;
}
#content p {
	width: 400px;
	margin-bottom: 9px;
}
p {
	margin: 0 0 9px 0;
}
 function expandingMenu(num) {
 var speed = 500;
 var item_title = $("#menu ul").eq(num).children(":first");
 var items = $("#menu ul").eq(num).children().filter(function (index) {
return index > 0;
}
);
	
	/* hide items if not active */
	if (items.is(".active") == false) {
 items.hide();
}

	/* add click functions + pointer to title */
	item_title.css( {
cursor:"pointer"
}
).toggle(  function () {
 items.show(speed);
}, function () {
 items.hide(speed);
}
 )
}

