@charset "utf-8";

/* 
	----	USE THIS CSS FILE TO CUSTOMIZE THE SITE	----
				You can change graphics, colors and sideber position.
				See to comments for more information
*/				 

/*	PAGE BACKGROUND 
		Posible Values: color, image url, repeat (y or x) and position */
		body {background: #c0d9ce url(images/green/bg-page.png) repeat-x top left;}
		/* body {background: #eee url(images/image.gif) repeat-y 10px 5px;} 
				-> example. The background image repetas vertically from position 10 (top) and 5 (left) */

/*	TOP TEXT
		This is the text for the very beginnig of the page */
		h1 {
			color: #5a957b; /* text color */
			display: block; /* use 'none' to hide the text */
			}
			
		h1.sitename {margin: 0 40px; font-size: 3.8em; visibility:hidden;}						
	
/* 	CONTENT AREA LINKS
		You can change the colors for different states */
		a:active, a:link {color: #406a57} /* default state */
		a:visited {color: #73a28d}	/* a visited link */	
		a:hover {color: #22382F} /* when mouse is over */
		
/*	CONTENT AREA TITLES 	*/
		
		#content h3, #content h4 {color: #5a957b;}				
	
/*	HEADER IMAGE
		Similar to page, you can set an image background, repetitoin an position */
		#header {background: #84b59f url(images/green/banner.jpg) no-repeat top left;}

/* 	WIDEBAR (TOP HORIZONTAL MENU BAR) 
		Here you can set an image for background and colors for different link states */
		
		ul.topmenu {background: #d3e4dc url(images/green/bg-widebar.png) repeat-x top left;}
		/* The horizontal bar background. You can use a color, an image or both */
		
		ul.topmenu {border-color: #8bb9a5;}
		/* The horizantal bar border color */		

		/* Set the color for the line between each option */
		ul.topmenu li{border-right-color: #dfebe6;}
		
		/* Color for link default state */
		ul.topmenu li a{color: #4f826b;}
		
		/* Color & background for link when mouse is over */		
		ul.topmenu li a:hover{
			background: #4f826b;
			color: #ffffff;
			}
	
/* 	LATERAL MENU POSTION */
		#sidebar {float: left;}		
		#content {float: right;}	
		/* Menus is on the left - To put on the right change values
					#sidebar {float: right;}		
					#content {float: left;}			*/
	
/*	LATERAL MENU OPTIONS */	
		/* Box border color */		
		#box, #menu, #content {border-color: #a1c6b6;}	
		
		/* Box title background & color */	
		#menu h2.boxtitle, #box h2.boxtitle {
			background: #c2dacf url(images/green/bg-titlebar.png) repeat-x top left; color: #416b58;} 

		/* Color for line between items */		
		ul.menu li {border-bottom-color: #c6dcd2;}
		
		/*	Links colors for different states */
		ul.menu li a { /* Background color and link color for default state */
			background-color: #ffffff; color: #95e4e;}
		ul.menu li a:hover {/* Background color and link color for over state */
			background-color: #84B59F; color: #ffffff;}			           
	
/*	FOOTER */		
		/*	Footer background color */
		#footer {background-color: #d5e5de;}           
		
		/* Color for line between items */
		ul.footerlinks li {border-right-color: #aaaaaa;}		

		/* Footer links options */
		ul.footerlinks li a {color: #666;} /* Color for default state */
		ul.footerlinks li a:hover {color: #222;} /* Color for over state */
		
		
/*	*** THE END - ENJOY YOUR CUSTOMIZATION *** */		



