/* CSS Document */



div.navigation{
            position:absolute;
            width: 850px;
            height: 30px;
            left : 30px;
            top: 355px;
            z-index: 6; /*z-index is the ordering of the CSS Layers, the bigger the z-index, the higher the more on top it will be, I set a z-index of 5 so the navigation will remain on top at all time*/
			line-height:24px;
            font-size: 20px;
            color:#FF0000;
			
			
}

a.navigation:link {
            color:#962144;
            text-decoration: none;
			font-size: 20px;		
}
a.navigation:visited {
			text-decoration: none;
			color: #962144;
			font-size: 20px;
		
}
a.navigation:hover {
			text-decoration: none;
			color:#0000A0;	
			font-size:20px;
}
a.navigation:active {
			text-decoration: none;
			color: #0000A0;
			font-size: 20px;
}

div.sidenav{
	color:#000000;
	font-weight:bold;
	
	
}

a.sidenav:link {
            color: #000000;
            text-decoration: none;
			font-size: 16px;
			font-weight:bold;
			
			
}
a.sidenav:visited {
			text-decoration: none;
			color: #000000;
			font-size: 16px;
			font-weight:bold;		
}
a.sidenav:hover {
			text-decoration: none;
			color: #0000A0;	
			font-size:16px;
			font-weight:bold;		
}
a.sidenav:active {
			text-decoration: none;
			color:#0000A0;
			font-size: 16px;
			font-weight:bold;		
}


