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

body {
	font-size: 10px;
	font-family: Verdana, sans-serif;
	background: #fff;
}

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


/* LINKS */
    
    
    /* colors for all links */
    a:link { 
    text-decoration: none; 
    color: #6E6E6E;
    background-color: #FFFFFF;
    }
    
    a:active {
    text-decoration: none;
    color: #6E6E6E;
    background-color: #FFFFFF;
    }
    
    /* highlights links that you have already clicked. This can be helpful for users to identify which items they have already seen*/
    a:visited { 
    text-decoration: none;
    color: #6E6E6E;
    background-color: #FFFFFF; /* the color can also be changed */
    }
    
    /* sets the properties for links when mouse rolls over */
    a:hover { 
    text-decoration: none;
    color: #6E6E6E;
    background-color: #2ECCFA;
    
    }

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


a img { border: none; }

#menu {
    width: 215px;
    overflow: auto;
    top: 10px;
    bottom: 25;
	left: 5px;
    position: fixed;
    height: 100%;
	background-color: white;
}

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

#menu ul li.section-title { }

   #menu ul.built {
	margin-bottom: 0;
	}
   #menu ul.built li {   
   	color: #909090;
	}
   #menu ul.built a {
	color: #909090;
	}
   #menu ul.built a:hover {
	text-decoration: underline;
	color: #909090;
		}

#content {
    height: 100%;
    margin: 27px 0 0 215px;
    background: 10px 0 0 215px;
}

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

#content p { width: 600px; margin-bottom: 9px; font-size: 1Opx;}

p {
    margin: 0 0 9px 0;
    font-size: 10px;
}

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

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

#once { clear: left; }
