/* UITLEG
 *
 * Dit document bevat de stijl van alles wat met het nieuws
 * te maken heeft. Hieronder vallen onder andere:
 * - het welkomstvenster
 * - de detailpagina
 * - de overzichtspagina
 */

/* Stijl voor de overzichtspagina */
.nieuws_overview_item, .nieuws_overview_item_HOVER {
	height:75px;
	width:100%;
	background-color: #BCD1C5;
	cursor:pointer;
	border-bottom-width:2px;
	border-bottom-color:#FFFFFF;
	border-bottom-style:solid;
}

.nieuws_overview_item td, .nieuws_overview_item_HOVER td {
	font-size:11px;
	vertical-align:top;
}

.nieuws_overview_item_HOVER {
	background-color: #97B8A4;
}

/* Stijl voor de detailpagina */
.nieuws_detail{
	width:100%;
}

.nieuws_detail td{
	font-size:11px;
	vertical-align:top;
	background-color:#bcd1c5;
}

.nieuws_detail a{
	color:#000000;
	text-decoration:none;
}

.nieuws_detail a:HOVER{
	color:#000000;
	text-decoration:underline;
}

.nieuws_detail img {
	border-width:0;
	padding-top:5px;
}


/* Stijl voor de nieuwsberichten op de welkomstpagina */
.nieuws_welkom , .nieuws_welkom_hover {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:#FFFFFF;
	background-color:#bcd1c5;
	cursor:pointer;
}

.nieuws_welkom_hover {
	background-color:#97B8A4;
}

.nieuws_welkom td , .nieuws_welkom_hover td{
	font-size:10px;
	vertical-align:top;
	font-weight:bold;
}

.nieuws_welkom a , .nieuws_welkom_hover a{
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	color:#000000;
}

.nieuws_welkom a:HOVER , .nieuws_welkom_hover a:HOVER{
	text-decoration:underline;
	color:#000000;
}


