.readmore a{ color:#C90; text-decoration:none}
.readmore a:hover{ color:#00C; text-decoration:none}

.news a{ color:#06F; text-decoration:none}
.news a:hover{ color:#00F; text-decoration:none}

/*------------------------------------*\
	nav_ch_trad
\*------------------------------------*/
#nav_ch_trad{
	list-style:none;
	font-weight:bold;
	/* Clear floats */
	float:left;
	border:0px solid;
	width:659px;
	margin-top:0px;
	background-image:url(../images/minister/1.png); background-repeat:repeat-x;
	height:28px;
	border:0px solid;
	/* Bring the nav_ch_trad above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav_ch_trad li{
	float:left;
	margin-right:0px;
	position:relative;
	border:0px solid;
	top:2px;

}
#nav_ch_trad a{
	display:block;
	padding:1px;
	color:#fff;
	text-decoration:none;
	padding-left:10px;
	text-align:center;
	border:0px solid;
	height:24px;
}
#nav_ch_trad a:hover{
	color:#fff;
	background:#6b0c36;
	text-decoration:none;
}

/*--- DROPDOWN ---*/
#nav_ch_trad ul{
	 /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	 border:0px solid;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav_ch_trad ul li{
	padding-top:0px;; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;


}
#nav_ch_trad ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	text-align:left;
	
}
#nav_ch_trad li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav_ch_trad li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#3849aa;
	text-decoration:none;
	
}
#nav_ch_trad li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	
	margin-left:-40px;

}
#nav_ch_trad li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#963;
}