@charset "UTF-8";
/* CSS Document */

/* The colors used in the website can be changed in this stylesheet as noted */

/*  background color for the browser window */
#body-style{
	background-color:#0000FF;
}

/* background color for the page container div (needed to fill in behind some rounded corners) */
#page-container{
	background-color:#eec900;
}

/* background color for top bar of page, where the project name appears */
#header{
	background-color:#eec900;
}

/* color of Project title lettering in header */
#name-header{
    color: #0000FF;
    text-shadow: 4px 4px 2px #aaaafe;
}

#aside-left{
	background-color:#eec900;
	color: #aaaafe;
}

/* background color for the thin right bar of the page */
#aside-right{
	background-color:#eec900;
}

/* background color for the thin bottom, or footer, bar of the page */
#footer{
	background-color:#eec900;
}

/* background color for the main content area of the page */
#mainContent{
	background-color:#ccccfe;
}

#nav {
	background-color: #0000FF;
}

/* main level link */
#nav a {
	color: #ffbb99;
	/*text-shadow: 0 1px 1px rgba(0,0,0, .3);*/
}

#nav a:hover {
	background-color: #000;
	color: #fff;
}

#nav ul li {
	/*background-color:#ffbb99;*/
}

#nav li:hover > a {
	background-color: #eec900;
	color: #0000ff;
	/*text-shadow: 0 1px 0 rgba(255,255,255, 1);*/
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	backgound-color: #green;
	color: #000;
}

#nav ul a:hover {
	background: #0000ff !important;
	color: #fff !important;
	/*text-shadow: 0 1px 1px rgba(0,0,0, .1);*/
}


/* level 2 list */
#nav ul {
	background: #eec900;
	border: solid 1px #b4b4b4;
	/*-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);*/
}

#red{
	color:#FF0000;
}