/**
* CSS
* 
* @version 1.0
* @author Michael Leung
* 
*/

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

* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 10.3px;
	font-family: Veranda, sans-serif;
	background: #fff;
}

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

a:link { text-decoration: none; color: #777; 
cursor: crosshair;}
a:active { text-decoration: none; color: #777; 
cursor: crosshair;}
a:visited { text-decoration: none; color: #777; 
cursor: crosshair;}
a:hover { text-decoration: none; color: #009; 
cursor: crosshair;}

a img { border: none; }

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

#menu ul { 
	list-style: none;
	margin: 0 0 12px 0;

}

#menu ul li.section-title { font-weight:bold;
}

#content {
    height: 100%;
    margin: 28px 0 0 275px;
    top: 0;
}

.container {
    padding: 18px 5px 25px 5px;
}

#content p { width: 650px; margin-bottom: 9px;}

p {
    margin: 0 0 9px 0;
}

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

#img-container	{ margin: 0; padding: 0; }
#img-container p	{ width: 400px; margin: 0; padding: 0 0 12px 0; }

#once { clear: left; }
