/*
Style class used in the table used as container for the main menu
*/
div.announce{
	display: none;
	position: absolute;
	padding: 10px;
	background-color: transparent;
	z-index: 10000;
}

/*
Style class used in the table used as container for the main menu
*/
table.announce_table{
	border-collapse: separate; /* Use 'collapse' to set the space between all TD elements to zero */
	background-color: black; /* if the border-collpase is equal to 'separate' then this color is showed as the borders between the menu's items */
	border-collapse: collapse; /* Set the space between all TD elements to zero */
	/*width: 100%;*/
	/*height: 100%;*/
	text-align: center;
	font-family: arial;
	font-weight: normal;
	font-size: 12pt;
	padding:15px;
}

/*
Style class used for the menu items when they are not focused
*/
tr.announce_text {
	background-color: #99FF00;
	font-weight: bold;
	height:*;
	vertical-align: middle;
}

/*
Style class used for the menu items when they have the focus on it
*/
tr.announce_bottom {
	background-color: #CCFF00;
	height:30px;
	vertical-align: middle;
}

/*
Style class used for announces
*/
label.suggestion {
	font-family: arial;
	font-weight: bold;
	font-size: 8pt;
}