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

body {
	font-size: 11px;
	font-family: "Lucida Grande", "Trebuchet MS", Geneva, Helvetica, Arial, sans-serif;  /* choose overall font*/
	font-style: normal;
	color: $505050;
	background: #fff; /* sets the overall background color */
}

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


/* LINKS */

	/* colors for all links */
	a:link { text-decoration: none; color: #505050; }
	a:active { text-decoration: none; color: #505050; }
	a:visited { text-decoration: none; color: #505050; }
	a:hover { text-decoration: none; background: #ffff66; }
	
	/* any img that is a link */
	a img { border: none; } 


/* MENU */

#menu {
    width: 230px; /* sets the width of your left hand bar - if you change this also change the LEFT margin in #content to match */
    overflow: auto;
    top: 0;
    bottom: 0;
	left: 0;
    position: fixed;
    height: 100%;
	background-color: #FFFFFF;
	
}

#menu li.active a{
	background: #ffff66;
}


/* This section controls each section made */ 
#menu ul {
	list-style: none;
	margin-top: 5px;
	margin-right: 0; 
	margin-bottom: 5px; /* sets the space between each section */ 
	margin-left: 30px;
}


/* The following sets the style for the section heading */
#menu ul li.section-title {
	
	margin-top: 14px;
	margin-bottom: 6px;
	text-decoration: none;
	color: #505050;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-style: bold;
	font-size: 16px
	
	/* Following lines adds a line about each section */
		/*border-top-color: #cccccc;
		border-top-style: solid;
		border-top-width: 1px;*/
}

/* This sets the style for Post-Nav Text which can be accessed in the Exhibit Settings */
		
#copy {
			
			font-family: Georgia, "Times New Roman", Times, serif;
			font-style: italic;
			font-style: bold;
			font-size: 16px;
			color: #505050;
			margin-top: 5px;
			margin-left: 30px;
			padding-top: 10px;
			border-top-color: #cccccc;
			border-top-style: solid;
			border-top-width: 1px;
}


/* CONTENT AREA */

#content {
    height: 100%;
    margin: 0 0 0 230px;
    margin-top: 2px;
}

.container {
    padding: 20px 15px 25px 10px;
	padding-top: 30px;
}

/* sets the properties for all paragraphs in the content area */
#content p { 
width: 400px; 
margin-right: 20px; 
margin-bottom: 9px; /* sets the space between paragraphs */
font-size: 11px;
font-family: "Lucida Grande", "Trebuchet MS", Geneva, Helvetica, Arial, sans-serif;
font-style: normal;
color: #606060;

}


p { /* sets the properties for all paragraphs  */
    margin: 0 0 9px 0;
}

/* HEADINGS */

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

/* IMAGES */

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

#once { clear: left; }
