@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: #E4E6C2 url(images/desert/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: #333333; /* text color */
			display: block; /* use 'none' to hide the text */
			}
			
		h1.sitename {margin: 0 40px; font-size: 1em; visibility:hidden;}									
	
/* 	CONTENT AREA LINKS
		You can change the colors for different states */
		a:active, a:link {color: #333333} /* default state */
		a:hover {color: #000000} /* when mouse is over */
		a:visited {color: #666666}	/* a visited link */	
		
/*	CONTENT AREA TITLES
		Color for titles	*/
		#content h3, #content h4 {color: #333333;}				
	
/*	HEADER IMAGE
		Similar to page, you can set an image background, repetitoin an position */
		#header {background: #aaaaaa url(images/desert/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: #dddddd url(images/desert/bg-widebar.png) repeat-x top left;}
		/* The horizontal bar background. You can use a color, an image or both */
		
		ul.topmenu {border-color: #B8BC58;}
		/* The horizantal bar border color */

		/* Set the color for the line between each option */
		ul.topmenu li{border-right-color: #D7DA9E;}
		
		/* Color for link default state */
		ul.topmenu li a {color: #A5A844;}
		
		/* Color & background for link when mouse is over */		
		ul.topmenu li a:hover{
			background: #A5A844 url("images/black.jpg") repeat-x top left;
			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: #B8BC58;}	
		
		/* Box title background & color */	
		#menu h2.boxtitle, #box h2.boxtitle {
			background: #aaaaaa url(images/desert/bg-titlebar.png) repeat-x top left; color: #B8BD59;} 

		/* Color for line between items */		
		ul.menu li {border-bottom-color: #D7DA9E;}
		
		/*	Links colors for different states */
		ul.menu li a { /* Background color and link color for default state */
			background-color: #efefef; color: #666666;}
		ul.menu li a:hover {/* Background color and link color for over state */
			background-color: #DDDFAD; color: #333333;}							           
	
/*	FOOTER */		
		/*	Footer background color */
		#footer {background-color: #F1F2E8;}           
		
		/* 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: #666;} /* Color for over state */
		
		
/*	*** THE END - ENJOY YOUR CUSTOMIZATION *** */		


