/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
* Liz's edits + notes
*/
* {
	margin: 30; /* not sure */
	padding: 0;
}

body { /* text in right box */
	font-size: 12px;
	font-family: Helvetica, Calibri, Arial, sans-serif;
	text-decoration: none; color: #000000; /* sets the color of all type in the website except for links and other sections overwritten */
	background: #ffffff; /* sets the overall background color */
}

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

a:link { text-decoration: none; color: #585858; } /* none, underline, line-through or overline */
a:active { text-decoration: none; color: #585858; }
a:visited { text-decoration: none; color: #585858; }
a:hover { text-decoration: none; color: #49ff49; }

a img { border: none; } /* any img that is a link */

/* If you use any background colors in your links it is advised that you add these rules so that your images should not have the odd background colors as well:  */
#img-container span.backgrounded a, 
#img-container a.thickbox,
#img-container a.thumb-img,
#img-container #d-col1 a { background: transparent; } 

#menu {  /* left side menu properties */
    width: 150px;
    overflow: auto;
    top: 0;
    bottom: 0;
	left: 30;
    position: fixed;
    height: 100%;
	background-color: #fff;
	color: #000000;
}

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

#menu ul li.section-title { }

#content {
    height: 100%;
    margin: 0 0 0 160px; /* top right bottom left (numerical values)*/
    top: 0;
}

.container { /* margins of text in L menu */
    padding: 10px 10px 25px 10px;
}

#content p { width: 400px; 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; }
