.menu {
	
	width: 176px; 
	margin-left: 0.5em ;
	margin-right:0.5em;
	margin-bottom:0em;
	margin-top:0em;
  	padding: 0em 0em 0em 0em;
	background-color: #990066;
	border: 2px solid #FF9933; 
	color:#FFF;
}

ul.makeMenu, ul.makeMenu ul {
                /* sets the size of the menu blocks */
	width: 176px; 	 
  background-color: #990066;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
 
  cursor: default;             /* gives an arrow cursor */
 
  margin: 1em 0em 1em 0em;
  padding: 0em 0em 0em 0em;
  text-indent: 10px;
}

ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #fff;                 /* sets the default font colour to white */
  margin: 0em 0em 0em 0em;
  padding: 0em 0em 0.4em 0em;
  text-indent: 5px;
  
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  	display: none;               /* hides child menu blocks - one of the most important declarations */
  	position: absolute;          /* make child blocks hover without leaving space for them */
  	top: 2px;                    /* position slightly lower than the parent menu item */
	left: 176px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
 	margin: 0em 0em 0em 0em;
  	padding: 0em 0em 0.4em 0em;                     
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  	background-color: #FF9933;      /* gives the active menu items a yellow background */
  	color: #000;                 /* makes the active menu item text black */ 
  	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0.4em 0em;
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
	display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
	display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a {  
	color: #fff; 
	display: block; 
	width: 100%; 
	text-decoration: none;   
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0.4em 0em;}
	
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { 

	color: #000;
	background-color: #FF9933;
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0.4em 0em; 
}

ul.makeMenu li:hover > a {
	color: #000;
	background-color: #FF9933;
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0.4em 0em; 
} /* supports links in branch headings - must not be display: block; */

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url( http://www.turquie.com/turquie/includes/IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector */
	display: none; 
	position: absolute; 
	top: 2px; 
	left: 176px;
	margin: 0em 0em 0em 0em;
  	padding: 0em 0em 0.4em 0em;
	border: 2px solid #FF9933;
}
/* menu fin */
.meteo {
	
	font-weight: bold;
	width: 140px;    
	background-color: #FF9933;
	border: 2px solid #CC0066;
	margin-left: 2.3em ;
	margin-right:0em;
	margin-bottom:0em;
	margin-top:0em;
  	padding: 0em 0em 0em 0em;
	
}
.news {
	width: 160px; 
	margin-left: 1.5em ;
	margin-right:1.5em;
	margin-bottom:0em;
	margin-top:0em;
	padding: 0em 0em 0em 0em;
	background-color: #990066;
	border: 2px solid #FF9933; 
	color:#FFF;
}
.news a { 
color: #FFF;
background-color: #990066;
text-indent: 10px;
font-weight: bold;
 }

.news a:hover { 
text-indent: 10px;
font-weight: bold;
color: #000;
background-color: #FF9933;
 }

.blank {


	width: 190px; 
	margin: 2em 0em 2em 0em;
  	padding: 0em 0em 0.5em 0em;
	background-color: #FF9933;
	 
}
.blanktitle {


	width: 190px; 
	margin: 0em 0em 2em 0em;
  	padding: 0em 0em 0.5em 0em;
	background-color: #FF9933;
	 
}
.blankmenu {

	text-indent: 10px;
	font-weight: bold;
	
}
.blankmenutitle {

	font-weight: bold;
	text-indent: 5px;
	background-color:#3399CC;
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0em 0em;
	
}

.titlemenu {


	width: 190px; 
	margin: 0em 0em 0.5em 0em;
  	padding: 0em 0em 0.5em 0em;
	background-color: #3399CC;
	color:#FFF;
	text-align:center;
	font-size:13px;
}

.titlemenu a {
	color:#FFF;
	text-decoration:none;
	
}
.titlemenu a:hover {
	color:#FFF;
	text-decoration: underline;
	
}

.turquie-rss {


	width: 190px; 
	text-align:center;
	margin-bottom:2em;
}
body {
	color:#FFF;
	text-align:center;
}
a {
	color:#FFF;
	text-decoration:none;	
}
a:hover {
	color:#FF9933;
	text-decoration: underline;	
}