/****************** HTML ****************/
* {
	margin:0;
	padding:0;
}
body {
	font-family: Tahoma, Verdana, Arial, "Trebuchet MS";
	font-size:13px;
	background-color: #d9e9f3;
}
a {
	color: #000099;	
}
textarea {
	font-family: Tahoma, Verdana, Arial, "Trebuchet MS";
	font-size:13px;
}

#header {
	width: 800px;
	margin: 0px auto;
	margin-top: 10px;
	background: url(../images/logo.gif) no-repeat;
	height: 135px;
}
#nav {
	width: 798px;
	margin: 0px auto;
	background: #efffef none repeat scroll 0 0;
	border-left: 1px solid #cfd8ef;
	border-right: 1px solid #cfd8ef;
}
#nav #links {
	margin-left: 14px;
	margin-right: 14px;
	background: url(../images/nav_a.gif);
	height: 30px;
	overflow: hidden;
}
#nav a {
	text-decoration: none;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	padding-left: 80px;
	padding-right: 80px;
	display: block;
	float: left;
	padding-top: 5px;
	height: 24px;
	border-right: 1px solid #fff;
	text-transform: uppercase;
}
#nav a:hover {
	color: #000;
	font-size: 13px;
	background: url(../images/nav_a_hover.gif);
}

#page {
	margin: 0px auto;
	padding-top: 20px;
	width: 798px;
	background-color: #efffef;
	padding-bottom: 10px;
	border-left: 1px solid #cfd8ef;
	border-right: 1px solid #cfd8ef;
}
#form {
	padding-left: 15px;
	padding-right: 15px;
}

#footer {
	border-left: 1px solid #cfd8ef;
	border-right: 1px solid #cfd8ef;
	background: url(../images/footer.gif) bottom repeat-x #efffef;
	width: 798px;
	margin: 0px auto;
	height: 25px;
	font-size: smaller;
	text-align: center;
	padding-top: 10px;
}
#footer a {
	text-decoration: none;
}

/****************** end of common ****************/
	
/****************** tooltip ****************/
.tooltip {
	color: #000099;	
	text-decoration: none;
}
.tooltip a {
	color: #000099;	
	text-decoration: none;
}
.tooltip iframe {
	display: none;
	visibility: hidden;
	width: 0px;
	height: 0px;

}
.tooltip em {
	display: none;
	font:12px/14px "Courier New", Courier, monospace;
	color:#333333;
}
.tooltip:hover {
	border: 0;
	position: relative;
	z-index: 500;
	
}
.tooltip:hover em {
	display: block;	
	position: absolute;
	left: -290px;
	top: 20px;
	margin-top: 5px;
	border: 2px solid #0f4e99;
	background: #FFF;
	padding: 10px;
	width: 300px;
	z-index: 505;
}
.tooltip iframe {
	display: block;	
	visibility: visible;
	position: absolute;
	left: -205px;
	top: 25px;
	z-index:501;
	width:210px;
	height: 65px;
}
.tooltip:hover em img {
	float: left;
	padding-right: 5px;
	border: 0;
}
.tooltip:hover em .titre {
	line-height: 25px;
	color:#000099;
}