/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0;
	padding: 0;
	padding-left:0px;
	padding-top:-10px;
	cursor:default
	;
}

body {
	font-size: 10.5px;
	font-family:Trebuchet MS, sans-serif;
	background: #fff;
	cursor:default;
}

body.section-1 { }
body.section-2 { }
body.section-3 { }

a:link { text-decoration: none; color: #999;}
a:active { text-decoration: none; color: #999;}
a:visited { text-decoration: none; color: #999; } 
a:hover { text-decoration: none;color: #666;}


a img { border: none; }


#menu {
    width: 200px;
    overflow: auto;
    top: 5px;
    bottom: 0;
	left: 20px;
    position: fixed;
    height: 100%;
	background-color: #fff;
}

#menu ul {
	list-style: none;
	margin-top:-5px;
	margin: 1px -1px 12px 0;
}

#menu ul li.section-title { }

#content {
    height: 100%;
    margin: 3px 2px 15px 215px;
    top: 0;
}

.container {padding-bottom:5px;
padding-left:9px;
padding-right:5px;
padding-top:12px;
}

#content p { width: 400px; margin-bottom: 5px;padding-top:12px; }

p {
margin-bottom:13px;
margin-left:0;
margin-right:0;
margin-top:-2px;}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }

#img-container	{ margin: 0; padding: 0; padding-top:5px;}
#img-container p	{ width: 400px; margin: 0; padding: 0 0 9px 0; }

#once { clear: left; }

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);
		}
	)
}
