@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: #AACFEE url(images/blue/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: #287EC8; /* text color */
			display: block; /* use 'none' to hide the text */
			}
	
/* 	CONTENT AREA LINKS
		You can change the colors for different states */
		a:active, a:link {color: #1D5A8E} /* default state */
		a:visited {color: #276EAD}	/* a visited link */	
		a:hover {color: #17456D} /* when mouse is over */
		
/*	CONTENT AREA TITLES
		Color for titles	*/
		#content h3, #content h4 {color: #287EC8;}						
	
/*	HEADER IMAGE
		Similar to page, you can set an image background, repetitoin an position */
		#header {
	background-color: #016599;
	background-image: url(images/blue/header.png);
	background-repeat: no-repeat;
	background-position: left top;
}

/* 	WIDEBAR (TOP HORIZONTAL MENU BAR) 
		Here you can set an image for background and colors for different link states */
		
		ul.topmenu {
}
		/* The horizontal bar background. You can use a color, an image or both */
		
		ul.topmenu {border-color: #9FC8EC;}
		/* 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: #BF0000;
}
		
		/* Color & background for link when mouse is over */		
		ul.topmenu li a:hover{
			background: #1D5A8E;
			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: #A5CCED;}	
		
		/* Box title background & color */	
		#menu h2.boxtitle, #box h2.boxtitle {
	color: #BF0000;
	background-color: #FFF;
	padding-top: 10px;
	padding-left: 10px;
	font-size: 12px;
	font-weight: bold;
} 

		/* Color for line between items */		
		ul.menu li {
	border-bottom-color: #B3D4F0;
	padding-left: 25px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}
		ul.submenu li a {
	border-bottom-color: #B3D4F0;
}
		ul.menu li.submenu {
	border-bottom: 1px dotted #B3D4F0;
	;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 35px;
}			
		
		/*	Links colors for different states */
		ul.menu li a { /* Background color and link color for default state */
	color: #1D5A8E;
	text-decoration: none;
}
		ul.menu li a:hover {/* Background color and link color for over state */

}			

		
	
/*	FOOTER */		
		/*	Footer background color */
		#footer {background-color: #C2DCF3;}           
		
		/* 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 *** */		
