/**
* CSS
* 
* @version 1.0
* @author Vaska 
* @author Gregory Cadar
*/
* {
	margin: 0px;
	padding: 0;
}

body {
	font-size: 24px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	color: #000000
	background: #ffffff;
}

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

a:link { text-decoration: none; color: #000000; }
a:active { text-decoration: none; color: #000000; }
a:visited { text-decoration: underline; color: #000000; }
a:hover { text-decoration: underline; color: #000000; }

a img { border: none; }

#menu {
    width: 250px;
    overflow: hidden;
    top: 30px;
    bottom: 0;
	left: 0px;
    position: fixed;
    height: 100%;
	background-color: #ffffff;
}

#menu ul {
	list-style: none;	
	margin-top: 46px;
	margin-right: 0px;
	margin-bottom: 50px; /* sets the space between each section */
	margin-left: 0px;
	/* sets the spacing around the menu - this is normally set to match padding options in #content but can be changed seperately */
	padding-right: 0px;
	padding-left: 0px;
}

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

#menu ul li.section-title {
		font-family: Helvetica, Arial, sans-serif;
		font-size: 24px;
		padding-top: 20px;
		padding-right: 0px;
		padding-bottom: 20px;
		padding-left: 0px;
		color: #000000;
}

	#content {
		height: 100%;
		margin-top: 2px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 250px; /* sets the space so the content starts right when the menu ends - if you change this also change the width of #menu to match */
	    
	    /* sets the spacing around the content area - this is normally set to match padding options in #menu but can be changed seperately */
		padding-top: 0px;  /* change to match the padding-top in #menu if you want them to align */
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}

	.container {
		width: 700px;
		margin-top: 0px;
		margin-bottom: 0px;
		margin-left: 25px;
	}

	#content p { /* sets the properties for all paragraphs in the content area */
		width: 200px;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px; /* sets the space between paragraphs */
		margin-left: 0px; 	
	    line-height: 18px; /* use this the change the leading (space between lines) */
	}

	p { /* sets the properties for all paragraphs  */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	}

/* IMAGES */

	#img-container	{ 
		margin: 0px 0px 0px 0px; 
		padding: 0px; 
	}
	
	#img-container p	{ 
		width: 200px; 
		margin-top: 0px; 
		padding: 0 0 0 0;
	}
	
	.nothumb img {
		margin-top: 0px;  
		margin-right: 0px;
		margin-bottom: 5px;
		margin-left: 0px;
	}
	
	#once { clear: left; }
	
/* HEADINGS */
	
	/*
	when typing your text/descriptions follow this format to use these heading types
	
	<h1>This is the text i want to be a heading which</h1>
	
	start with h1 as your largest most important heading. you may not need all 4 but they are here if you do.
	*/
	
	h1 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 23px;
	color: #000000;
	line-height: 26px;
	}
	
	h2 { 
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
		font-weight: normal;
		color: #000000;
		padding-bottom: 15px; /* sets the spacing between the heading and paragraph below */

	}
	
	h3 { 
		font-size: 16px;
		color: #000000;
	}
	
	h4 { 
		font-size: 12px; 
		color: #000000;
	}

