/*



	Jules: to change the link's color, just edit the line below here

	you want to change the color code fom #0B0 to whatever you want!

	

	( # RED GREEN BLUE )

	

	In you might want to do some blind guesses, I'll tell you how this works:

	

	each component (red, green, blue; in that order) has a range of values from 0 to F

	

	so 0 is   0%    of that component

	   F is 100%    of that component

	   

	This is called Hexadecimal code, and instead of going from 0 to 9, 

	it goes from 0 to F, but it's nothing scary really

	

	Your possible values in order are "0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F"

	

	So if you want maximum (pure) red you do

	

		#F00

		

	If you want blue you do

	

		#00F

		

	And green is

	

		#0F0

	

	So let's say you want a little less green in the proposed color (#0B0)...

	You would decrease the green component (the second one) you would try

	

	#0B0 >> #0A0 (to decrease green in one unit, from B to A)

	

	if you want to decrease even more, and add some red to it you do:

	

	#0B0 >> #380 (to decrease green in one unit, from B to A)

		

	Hope I was clear enough....

	Good luck! xx

*/





.custom a, .custom a:hover { color: #FA5858; text-decoration: none; font-weight: bold; }
ul#nav li a.current, ul#nav li a.current:visited, ul#nav li a.current:hover { color: #FA5858; text-decoration: underline; }

#header_img {	position: relative; 
				margin: 0 0 0 0; 
				padding-top: 10px; 
				padding-bottom: 10px; 
				border-bottom: 0px solid #000; 
				float: left; 
				clear: both;  
				margin-bottom: 15px;
}

ul#nav {
margin-bottom: 15px;
}

