/*********************************************************************************************************/
/*								COMMON.CSS																																						*/
/*********************************************************************************************************/
/*
The settings here are the only ones that matter for the website, these will change 
the entire sites default text color, default background-color, font-family, and the 
font-size. The !important is needed in order to override the default body background-color
setting of white from the inter.css and the tags.css files. 

Tested in Firefox, Opera, IE6, IE7, Safari.
*/

/************************************** GENERAL STYLES *************************************************/
body {
	color: #FFFFFF;
	background-color: #F39D00 !important;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	text-align:justify;
	margin: 0px !important;
	padding: 0px !important;
}
/******************************* End of General styles *************************************************/


/*************************************** LINKS STYLES **************************************************/
a {
	color: #F6FF00;
	background-color: inherit;
}

a:hover {
	color: #AF5A00;
	background-color: inherit;
}

a img {
	border: 0px;
}
/************************************** Enf of Links styles ********************************************/


/************************************** LEFT MENU STYLES **********************************************/
/* Buttons at left of the pages, with a roll-over  */
/* /!\ Warning: The styles of the buttons are in tags.css (near line 83) */
ul#list li a#link_btn_inter {
	margin-top:110px;
	margin-left:-180px;
}

ul#list {
	list-style-type:none;
	padding:0;
	margin:0;
}

ul#list li a {
	width:180px;
	height:100px;
	margin:0;
	margin-bottom:7px;
	padding:0;
	display: block;
	text-decoration:none
	
}

ul#list li a:hover {
	background-position:0 -100px;
}
/************************************** End of Left Menu styles ****************************************/


/************************************** FOOTER STYLES *************************************************/
#footer_top, #centered {
	position: relative;
	width: 100%;
	z-index: 300;
	bottom:0px;
	text-align: center;
	font-size: .8em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
/******************************* End of Footer styles *************************************************/