/**
* CSS
* 
* @Devastator version 2.0
* @author Dylan McCrae 
*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 12px;
	font-family: Helvetica, Arial, Sans-Serif;
	color: #999999; /* sets the color of all type in the website except for links and other sections overwritten */
        background: #fff; /* sets the overall background color */
}

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

a:link { text-decoration: none; color: #999999;}
a:active { text-decoration: none;}
a:visited { text-decoration: none; color: #999999;; }
a:hover { text-decoration: none; color: #ff0066}

a img { border: none; }

#menu {
    width: 240px;
    overflow: auto;
    top: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    height: 100%;
    background-color: #fff;
    padding-top: 0px; /* change to match the padding-top in #content if you want them to align */
    padding-left: 35px;
    padding-bottom: 0px;
    /* padding-left & right can be changed in #menu ul - below */
    font-size: 11px;
}

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

#menu ul li { 
	margin-top: 0px;
        margin-bottom: 5px;
}

#menu ul li.section-title {
	text-transform: uppercase;
	font-family: Helvetica, Arial, Sans-Serif;
	font-size: 12px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #cccccc;
 }

/* The following selectors style the "Built with Indexhibit" on the menu */			

#menu ul.built {
	margin-bottom: ;
}

#menu ul.built li {
	padding-top: 0px;
	border-top-color: #cccccc;
	border-top-style: solid;
	border-top-width: 1px;
	color: #cccccc;
}

/* The following changes the link colors for only the "Built with Indexhibit" link */

#menu ul.built a {
	color: #cccccc;
}

#menu ul.built a:hover {
	text-decoration: none;
	color: #cccccc;
}

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

.container {
    padding: 25px 0px 0px 0px;
}

#content p { width: 400px; margin-bottom: 0px; }

p {
    margin: 0px 0 0px 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; }
