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

/*In body, you define the background color or image of your page, and default font size and color*/ 


body {
	font-size: 10px;
	font-family: Futura, Verdana, Trebuchet MS, medium;
	background: #283033; 
	background-image:url('/images/gradient.jpg');
	background-repeat: repeat-x;
	color: #c64c44;
	background-attachment:fixed;


}

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

/*a:link, active, visited, and hover describes your links at rest, being clicked, ones you've visited, and when you're mouse-overing it, in that order*/

a:link { text-decoration: none; color: #a5a5a5; }
a:active { text-decoration: none; color: #d3ff85; }
a:visited { text-decoration: none; color: #c64c44; }
a:hover { text-decoration: underline; color: #ffffff; }

/*This is for images that are links*/

a img { border: none; }

#bloglink, #bloglink:hover, #bloglink:active, #bloglink:visited {
	font-size: 14px;
	text-decoration: none; 
	color: #ffffff; 
 }
/*Here you define the properties of your menu: size, position, behaviours, etc. */

#menu {
    width: 250px;
    overflow: auto;
    top: 0;
    bottom: 0;
	left: 0;
    position: fixed;
    height: 100%;
	background: #283033; 
	background-image:url('/images/gradient.jpg');
	background-repeat: repeat-x; 
	padding: 0 0 0 36px;

}

#menu .container { padding: 18px 0 21px 21px; 
}


/*This is for your menu box: how the elements themselves act inside the box*/

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

#menu ul li a {
	margin: 0 0 0 36px;	

}


/*This is for the titles*/

#menu ul li.section-title 
		{ 
	font-size: 14px;
	text-decoration: none; 
	color: #ffffff; 

	margin-center: 50px; 
}

#copyrightfooter {
	font-size: 6pt;
	color: #adadaf;
	bottom: 0px;
	position:fixed;
	
}

.nav {position: fixed;
	top:20px;
	z-index:99;
	
}



/*These are the properties of your content box*/

#content {
    height: 100%;
    margin: 67px 0 0 300px;
    top: 0;

}

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

/*These are the properties for each paragraph as a whole within your content*/

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