@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: #EAAEAE 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: #AD2D2D; /* text color */
			}
	
/* 	CONTENT AREA LINKS
		You can change the colors for different states */
		a:active, a:link {color: #A2352E} /* default state */
		a:visited {color: #BE6C66}	/* a visited link */	
		a:hover {color: #832821} /* when mouse is over */
		
/*	CONTENT AREA TITLES 	*/
		
		#content h3, #content h4 {color: #A2352E;}				
	
/*	HEADER IMAGE
		Similar to page, you can set an image background, repetitoin an position */
		#header {background: #1E6732 url(images/green/header.jpg) no-repeat top left;}
		#header h1 {visibility: hidden;}

/* 	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: #AD2D2D;}
		/* The horizantal bar border color */		

		/* Set the color for the line between each option */
		ul.topmenu li{border-right-color: #dba5a5;}
		
		/* Color for link default state */
		ul.topmenu li a{color: #c24036;}
		
		/* Color & background for link when mouse is over */		
		ul.topmenu li a:hover{
			background: #c24036;
			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: #AD2D2D;}	
		
		/* Box title background & color */	
		#menu h2.boxtitle, #box h2.boxtitle {
			background: #c2dacf url(images/green/bg-titlebar.png) repeat-x top left; color: #A2352E;} 

		/* Color for line between items */		
		ul.menu li {border-bottom-color: #ECB6B6;}
		
		/*	Links colors for different states */
		ul.menu li a { /* Background color and link color for default state */
			background-color: #ffffff; color: #c24036;}
		ul.menu li a:hover {/* Background color and link color for over state */
			background-color: #EFC0C0; color: #111;}

		ul.menu li.submenu {border-color: #F4D6D6}
	
/*	FOOTER */		
		/*	Footer background color */
		#footer {background-color: #C02A2A; color: #fefefe;}           
		
		/* Color for line between items */
		ul.footerlinks li {border-right-color: #fefefe;}		

		/* Footer links options */
		ul.footerlinks li a {color: #f1f1f1;} /* Color for default state */
		ul.footerlinks li a:hover {color: #fff;} /* Color for over state */
		
		
/*	*** THE END - ENJOY YOUR CUSTOMIZATION *** */		


