/*
 * Created on 27 nov. 06
 *
 * To change the template for this generated file go to
 * Window - Preferences - PHPeclipse - PHP - Code Templates
 */

/*****************************************
* travian
*****************************************/
#travian {
    position: relative;
	height: 600px;
    width: 800px;
    background-color:#333;	
	overflow: hidden;
	margin: auto;
}

#map {
    position: absolute;
    top: 300px;
    left: 400px;
    min-height: 50px;
    min-width: 50px;
	overflow: visible;
	display: block;
}
.map2 {
	z-index : 1;
	position: absolute ;
    height: 18px;
    width: 18px;
	background-color: green;
	border: 1px solid gray;
}

.travianBulle {
	z-index : 100;
	display: none; /* on masque l'infobulle */
	position: absolute;
	white-space: nowrap; /* on change la valeur de la propriété white-space pour qu'il n'y ait pas de retour à la ligne non-désiré */
	background: white;
	color: green;
	padding: 3px;
	margin: 20px;
	border: 1px solid green;
	border-left: 4px solid green;
}


