 <html> <head> <title>Balade Sur Toile - les signets du surfeur - DOSSIERS DE CLASSE</title>  <meta name="GENERATOR" content="Namo WebEditor v5.0">  <meta name="namo-theme" content="UserLib\custom\Theme\MAUDRE"> <style><!-- body { color:rgb(0,0,0); font-family:Tahoma;} h1 { color:rgb(0,0,160); font-size:12pt; font-family:Tahoma;} h2 { color:rgb(128,0,255); font-size:12pt; font-family:Tahoma;} p.namo-list { color:rgb(0,0,255); font-size:12pt; font-family:Tahoma;} p.namo-sublist { color:rgb(153,153,255); font-size:10pt; font-family:Tahoma;} th { color:rgb(0,0,0); font-family:Tahoma;} td { color:rgb(0,0,0); font-family:Tahoma;} a:link {} a:visited {} a:active {} --></style> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta name="author" content="maudre"> <meta name="description" content="Site portail gnraliste destin aux parents, aux enseignants, aux tudiants, aux coliers et  tous les curieux (news, politique, culture, ducation, droits de l'homme, vie pratique, sant,...)"> <meta name="keywords" content="portail dossiers classe maternelle lmentaire collge lyce"> <!--DATE_HEURE_DEBUT--> <script language="JavaScript"> <!-- JavaScript function dateheure() { var mydate=new Date() var year=mydate.getYear() if (year < 1000) year+=1900 var day=mydate.getDay() var month=mydate.getMonth() var daym=mydate.getDate() var hrs = mydate.getHours() var mn = mydate.getMinutes() var message = " " var libh =" " var libm =" " if (hrs<=1)        libh="heure"; if (hrs>1)        libh="heures"; if (mn<=1)        libm="minute"; if (mn>1)        libm="minutes"; if (hrs >=5)          message="Bonne matine"; if (hrs >=10)         message="Bonne journe"; if (hrs >=14)                message="Bon aprs-midi"; if (hrs >=18)                message="Bonne soire"; if (hrs >=23)        message="Bonne nuit"; if (hrs <5)          message="Bonne nuit"; if (daym<10) daym="0"+daym; if (hrs<10) hrs="0"+hrs; if (mn<10) mn="0"+mn; var dayarray=new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi") var montharray=new Array("Janvier","Fvrier","Mars","Avril","Mai","Juin","Juillet","Aot","Septembre","Octobre","Novembre","Dcembre") document.write("<small>"+message+" ! "+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+" - "+hrs+" "+libh+" "+mn+""+"<\/small>") } // - JavaScript - --> </script> <!--DATE_HEURE_FIN--> <meta name="classification" content="le portail  thme - Dossiers de classe"> <script language="JavaScript"> <!-- function na_restore_img_src(name, nsdoc) {   var img = eval((navigator.appName.indexOf('Netscape', 0) != -1) ? nsdoc+'.'+name : 'document.all.'+name);   if (name == '')     return;   if (img && img.altsrc) {     img.src    = img.altsrc;     img.altsrc = null;   }  }  function na_change_img_src(name, nsdoc, rpath, preload) {    var img = eval((navigator.appName.indexOf('Netscape', 0) != -1) ? nsdoc+'.'+name : 'document.all.'+name);   if (name == '')     return;   if (img) {     img.altsrc = img.src;     img.src    = rpath;   }  }  // --> </script> <script language="JavaScript"> <!-- function nn_Menu(label) {     // Menu 990702     // by gary smith, July 1997     // Copyright (c) 1997-1999 Netscape Communications Corp.      this.version = "990702 [Menu; menu.js]";     this.type = "Menu";     this.fontSize = 12;     this.fontWeight = "plain";     this.fontFamily = "arial,helvetica,espy,sans-serif";     this.fontColor = "#000000";     this.fontColorHilite = "#ffffff";     this.bgColor = "#555555"     this.menuBorder = 1;     this.menuItemBorder = 1;     this.menuItemBgColor = "#cccccc";     this.menuLiteBgColor = "#ffffff";     this.menuBorderBgColor = "#777777";     this.menuHiliteBgColor = "#000084";     this.menuContainerBgColor = "#cccccc";     this.childMenuIcon = "images/arrows.gif";     this.childMenuIconHilite = "images/arrows2.gif";     this.items = new Array();     this.actions = new Array();     this.colors = new Array();     this.mouseovers = new Array();     this.mouseouts = new Array();     this.childMenus = new Array();      this.addMenuItem = nn_addMenuItem;     this.addMenuSeparator = nn_addMenuSeparator;     this.writeMenus = nn_writeMenus;     this.showMenu = nn_showMenu;     this.onMenuItemOver = nn_onMenuItemOver;     this.onMenuItemOut = nn_onMenuItemOut;     this.onMenuItemDown = nn_onMenuItemDown;     this.onMenuItemAction = nn_onMenuItemAction;     this.hideMenu = nn_hideMenu;     this.hideChildMenu = nn_hideChildMenu;     this.mouseTracker = nn_mouseTracker;     this.setMouseTracker = nn_setMouseTracker;      if (!window.menus) window.menus = new Array();     this.label = label || "menuLabel" + window.menus.length;     window.menus[this.label] = this;     window.menus[window.menus.length] = this;     if (!window.activeMenus) window.activeMenus = new Array();     if (!window.menuContainers) window.menuContainers = new Array();     if (!window.mDrag) {         window.mDrag    = new Object();         mDrag.startMenuDrag = nn_startMenuDrag;         mDrag.doMenuDrag    = nn_doMenuDrag;         this.setMouseTracker();     }     if (window.MenuAPI) MenuAPI(this); }  function nn_addMenuItem(label, action, color, mouseover, mouseout) {     this.items[this.items.length] = label;     this.actions[this.actions.length] = action;     this.colors[this.colors.length] = color;     this.mouseovers[this.mouseovers.length] = mouseover;     this.mouseouts[this.mouseouts.length] = mouseout; }  function nn_addMenuSeparator() {     this.items[this.items.length] = "separator";     this.actions[this.actions.length] = "";     this.menuItemBorder = 0; }  function nn_writeMenus(container) {     if (!container && document.layers) {         if (eval("document.width"))              container = new Layer(1000);     } else if (!container && document.all) {         if (!document.all["menuContainer"])              document.writeln('<SPAN ID="menuContainer"></SPAN>');         container = document.all["menuContainer"];     }     if (!container && !window.delayWriteMenus) {         window.delayWriteMenus = this.writeMenus;         window.menuContainerBgColor = this.menuContainerBgColor;         setTimeout('delayWriteMenus()', 3000);         return;     }     container.isContainer = "menuContainer" + menuContainers.length;     menuContainers[menuContainers.length] = container;     container.menus = new Array();     for (var i=0; i<window.menus.length; i++)          container.menus[i] = window.menus[i];     window.menus.length = 0;     var countMenus = 0;     var countItems = 0;     var top = 0;     var content = '';     var proto;     for (var i=0; i<container.menus.length; i++, countMenus++) {         var menu = container.menus[i];         proto = menu.prototypeStyles || this.prototypeStyles || menu;         content += ''+         '<DIV ID="menuLayer'+ countMenus +'" STYLE="position:absolute;left:10;top:'+ (i * 100) +';visibility:hidden;">\n'+         '  <DIV ID="menuLite'+ countMenus +'" STYLE="position:absolute;left:'+ proto.menuBorder +';top:'+ proto.menuBorder +';visibility:hide;" onMouseOut="nn_hideMenu(this);">\n'+         '    <DIV ID="menuFg'+ countMenus +'" STYLE="position:absolute;left:1;top:1;visibility:hide;">\n'+         '';         var x=i;         for (var i=0; i<menu.items.length; i++) {             var item = menu.items[i];             var childMenu = false;             var defaultHeight = 20;             var defaultIndent = 15;             if (item.label) {                 item = item.label;                 childMenu = true;             } else if (item.indexOf(".gif") != -1 && item.indexOf("<IMG") == -1) {                 item = '<IMG SRC="' + item + '" NAME="menuItem'+ countItems +'Img">';                 defaultIndent = 0;                 if (document.layers) {                     defaultHeight = null;                 }             }             proto.menuItemHeight = proto.menuItemHeight || defaultHeight;             proto.menuItemIndent = proto.menuItemIndent || defaultIndent;             var itemProps = 'visibility:hide;font-Family:' + proto.fontFamily +';font-Weight:' + proto.fontWeight + ';fontSize:' + proto.fontSize + ';';             if (document.all)                  itemProps += 'font-size:' + proto.fontSize + ';" onMouseOver="nn_onMenuItemOver(null,this);" onMouseOut="nn_onMenuItemOut(null,this);" onClick="nn_onMenuItemAction(null,this);';             var dTag    = '<DIV ID="menuItem'+ countItems +'" STYLE="position:absolute;left:0;top:'+ (i * proto.menuItemHeight) +';'+ itemProps +'">';             var dText   = '<DIV ID="menuItemText'+ countItems +'" STYLE="position:absolute;left:' + proto.menuItemIndent + ';top:2;color:'+ proto.fontColor +';">'+ item +'</DIV>\n<DIV ID="menuItemHilite'+ countItems +'" STYLE="position:absolute;left:' + proto.menuItemIndent + ';top:2;color:'+ proto.fontColorHilite +';visibility:hidden;">'+ item +'</DIV>';             if (item == "separator") {                 content += ( dTag + '<DIV ID="menuSeparator'+ countItems +'" STYLE="position:absolute;left:1;top:2;"></DIV>\n<DIV ID="menuSeparatorLite'+ countItems +'" STYLE="position:absolute;left:1;top:2;"></DIV>\n</DIV>');             } else if (childMenu) {                 content += ( dTag + dText + '<DIV ID="childMenu'+ countItems +'" STYLE="position:absolute;left:0;top:3;'+ itemProps +'"><IMG SRC="'+ proto.childMenuIcon +'"></DIV>\n</DIV>');             } else {                 content += ( dTag + dText + '</DIV>');             }             countItems++;         }         content += '      <DIV ID="focusItem'+ countMenus +'" STYLE="position:absolute;left:0;top:0;visibility:hide;" onClick="nn_onMenuItemAction(null,this);">&nbsp;</DIV>\n';         content += '   </DIV>\n  </DIV>\n</DIV>\n';         i=x;     }     if (!container) return;     if (container.innerHTML) {         container.innerHTML=content;     } else {         container.document.open("text/html");         container.document.writeln(content);         container.document.close();     }     proto = null;     if (container.document.layers) {         container.clip.width = window.innerWidth;         container.clip.height = window.innerHeight;         container.onmouseout = this.hideMenu;         container.menuContainerBgColor = this.menuContainerBgColor;         for (var i=0; i<container.document.layers.length; i++) {             proto = container.menus[i].prototypeStyles || this.prototypeStyles || container.menus[i];             var menu = container.document.layers[i];             container.menus[i].menuLayer = menu;             container.menus[i].menuLayer.Menu = container.menus[i];             container.menus[i].menuLayer.Menu.container = container;             var body = menu.document.layers[0].document.layers[0];             body.clip.width = proto.menuWidth || body.clip.width;             body.clip.height = proto.menuHeight || body.clip.height;             for (var n=0; n<body.document.layers.length-1; n++) {                 var l = body.document.layers[n];                 l.Menu = container.menus[i];                 l.menuHiliteBgColor = proto.menuHiliteBgColor;                 l.document.bgColor = proto.menuItemBgColor;                 l.saveColor = proto.menuItemBgColor;                 l.mouseout  = l.Menu.mouseouts[n];                 l.mouseover = l.Menu.mouseovers[n];                 l.onmouseover = proto.onMenuItemOver;                 l.onclick = proto.onMenuItemAction;                 l.action = container.menus[i].actions[n];                 l.focusItem = body.document.layers[body.document.layers.length-1];                 l.clip.width = proto.menuItemWidth || body.clip.width + proto.menuItemIndent;                 l.clip.height = proto.menuItemHeight || l.clip.height;                 if (n>0) l.top = body.document.layers[n-1].top + body.document.layers[n-1].clip.height + proto.menuItemBorder;                 l.hilite = l.document.layers[1];                 l.document.layers[1].isHilite = true;                 if (l.document.layers[0].id.indexOf("menuSeparator") != -1) {                     l.hilite = null;                     l.clip.height -= l.clip.height / 2;                     l.document.layers[0].document.bgColor = proto.bgColor;                     l.document.layers[0].clip.width = l.clip.width -2;                     l.document.layers[0].clip.height = 1;                     l.document.layers[1].document.bgColor = proto.menuLiteBgColor;                     l.document.layers[1].clip.width = l.clip.width -2;                     l.document.layers[1].clip.height = 1;                     l.document.layers[1].top = l.document.layers[0].top + 1;                 } else if (l.document.layers.length > 2) {                     l.childMenu = container.menus[i].items[n].menuLayer;                     l.icon = proto.childMenuIcon;                     l.iconHilite = proto.childMenuIconHilite;                     l.document.layers[2].left = l.clip.width -13;                     l.document.layers[2].top = (l.clip.height / 2) -4;                     l.document.layers[2].clip.left += 3;                     l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;                 }             }             body.document.bgColor = proto.bgColor;             body.clip.width  = l.clip.width +1;             body.clip.height = l.top + l.clip.height +1;             body.document.layers[n].clip.width = body.clip.width;             body.document.layers[n].captureEvents(Event.MOUSEDOWN);             body.document.layers[n].onmousedown = proto.onMenuItemDown;             //body.document.layers[n].onfocus = proto.onMenuItemDown;             body.document.layers[n].onmouseout = proto.onMenuItemOut;             body.document.layers[n].Menu = l.Menu;             body.document.layers[n].top = -30;             menu.document.bgColor = proto.menuBorderBgColor;             menu.document.layers[0].document.bgColor = proto.menuLiteBgColor;             menu.document.layers[0].clip.width = body.clip.width +1;             menu.document.layers[0].clip.height = body.clip.height +1;             menu.clip.width = body.clip.width + (proto.menuBorder * 2) +1;             menu.clip.height = body.clip.height + (proto.menuBorder * 2) +1;             if (menu.Menu.enableTracker) {                 menu.Menu.disableHide = true;                 nn_setMenuTracker(menu.Menu);             }         }     } else if (container.document.all) {         var menuCount = 0;         for (var x=0; x<container.menus.length; x++) {             var menu = container.document.all("menuLayer" + x);             container.menus[x].menuLayer = menu;             container.menus[x].menuLayer.Menu = container.menus[x];             container.menus[x].menuLayer.Menu.container = menu;             proto = container.menus[x].prototypeStyles || this.prototypeStyles || container.menus[x];             proto.menuItemWidth = proto.menuItemWidth || 200;             menu.style.backgroundColor = proto.menuBorderBgColor;             for (var i=0; i<container.menus[x].items.length; i++) {                 var l = container.document.all["menuItem" + menuCount];                 l.Menu = container.menus[x];                 proto = container.menus[x].prototypeStyles || this.prototypeStyles || container.menus[x];                 l.style.pixelWidth = proto.menuItemWidth;                 l.style.pixelHeight = proto.menuItemHeight;                 if (i>0) l.style.pixelTop = container.document.all["menuItem" + (menuCount -1)].style.pixelTop + container.document.all["menuItem" + (menuCount -1)].style.pixelHeight + proto.menuItemBorder;                 l.style.fontSize = proto.fontSize;                 l.style.backgroundColor = proto.menuItemBgColor;                 l.style.visibility = "inherit";                 l.saveColor = proto.menuItemBgColor;                 l.menuHiliteBgColor = proto.menuHiliteBgColor;                 l.action = container.menus[x].actions[i];                 l.hilite = container.document.all["menuItemHilite" + menuCount];                 l.focusItem = container.document.all["focusItem" + x];                 l.focusItem.style.pixelTop = -30;                 l.mouseover = l.Menu.mouseovers[x];                 l.mouseout  = l.Menu.mouseouts[x];                 var childItem = container.document.all["childMenu" + menuCount];                 if (childItem) {                     l.childMenu = container.menus[x].items[i].menuLayer;                     childItem.style.pixelLeft = l.style.pixelWidth -11;                     childItem.style.pixelTop = (l.style.pixelHeight /2) -4;                     childItem.style.pixelWidth = 30 || 7;                     childItem.style.clip = "rect(0 7 7 3)";                     l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;                 }                 var sep = container.document.all["menuSeparator" + menuCount];                 if (sep) {                     sep.style.clip = "rect(0 " + (proto.menuItemWidth - 3) + " 1 0)";                     sep.style.backgroundColor = proto.bgColor;                     sep = container.document.all["menuSeparatorLite" + menuCount];                     sep.style.clip = "rect(1 " + (proto.menuItemWidth - 3) + " 2 0)";                     sep.style.backgroundColor = proto.menuLiteBgColor;                     l.style.pixelHeight = proto.menuItemHeight/2;                     l.isSeparator = true                 }                 menuCount++;             }             proto.menuHeight = (l.style.pixelTop + l.style.pixelHeight);             var lite = container.document.all["menuLite" + x];             lite.style.pixelHeight = proto.menuHeight +2;             lite.style.pixelWidth = proto.menuItemWidth + 2;             lite.style.backgroundColor = proto.menuLiteBgColor;             var body = container.document.all["menuFg" + x];             body.style.pixelHeight = proto.menuHeight + 1;             body.style.pixelWidth = proto.menuItemWidth + 1;             body.style.backgroundColor = proto.bgColor;             container.menus[x].menuLayer.style.pixelWidth  = proto.menuWidth || proto.menuItemWidth + (proto.menuBorder * 2) +2;             container.menus[x].menuLayer.style.pixelHeight = proto.menuHeight + (proto.menuBorder * 2) +2;             if (menu.Menu.enableTracker) {                 menu.Menu.disableHide = true;                 nn_setMenuTracker(menu.Menu);             }         }         container.document.all("menuContainer").style.backgroundColor = container.menus[0].menuContainerBgColor;         container.document.saveBgColor = container.document.bgColor;     }     window.wroteMenu = true; }  function nn_onMenuItemOver(e, l, a) {     l = l || this;     a = a || window.ActiveMenuItem;     if (document.layers) {         if (a) {             a.document.bgColor = a.saveColor;             if (a.hilite) a.hilite.visibility = "hidden";             if (a.childMenu) a.document.layers[1].document.images[0].src = a.icon;         } else {             a = new Object();         }         if (this.mouseover && this.id != a.id) {             if (this.mouseover.length > 4) {                 var ext = this.mouseover.substring(this.mouseover.length-4);                 if (ext == ".gif" || ext == ".jpg") {                     this.document.layers[1].document.images[0].src = this.mouseover;                 } else {                     eval("" + this.mouseover);                 }             }         }         if (l.hilite) {             l.document.bgColor = l.menuHiliteBgColor;             l.zIndex = 1;             l.hilite.visibility = "inherit";             l.hilite.zIndex = 2;             l.document.layers[1].zIndex = 1;             l.focusItem.zIndex = this.zIndex +2;         }         l.focusItem.top = this.top;         l.Menu.hideChildMenu(l);     } else if (l.style && l.Menu) {         document.onmousedown=l.Menu.onMenuItemDown;         if (a) {             a.style.backgroundColor = a.saveColor;             if (a.hilite) a.hilite.style.visibility = "hidden";         } else {             a = new Object(); 		}         if (l.mouseover && l.id != a.id) {             if (l.mouseover.length > 4) {                 var ext = l.mouseover.substring(l.mouseover.length-4);                 if (ext == ".gif" || ext == ".jpg") {                     l.document.images[l.id + "Img"].src = l.mouseover;                 } else {                     eval("" + l.mouseover);                 }             }         } 		if (l.isSeparator) return;         l.style.backgroundColor = l.menuHiliteBgColor;         if (l.hilite) {             l.style.backgroundColor = l.menuHiliteBgColor;             l.hilite.style.visibility = "inherit";         }         l.focusItem.style.pixelTop = l.style.pixelTop;         l.focusItem.style.zIndex = l.zIndex +1;         l.zIndex = 1;         l.Menu.hideChildMenu(l);     }     window.ActiveMenuItem = l;     l.Menu.visited = true; }  function nn_onMenuItemOut(e, l, a) {     l = l || this; 	a = a || window.ActiveMenuItem;     if (l.id.indexOf("focusItem")) {         if (a && l.top) {             l.top = -30; 			if (a.mouseout && a.id != l.id) { 				if (a.mouseout.length > 4) { 					var ext = a.mouseout.substring(a.mouseout.length-4); 					if (ext == ".gif" || ext == ".jpg") { 						a.document.layers[1].document.images[0].src = a.mouseout; 					} else { 						eval("" + a.mouseout); 					} 				} 			}         } else if (a && l.style) {             document.onmousedown=null;             window.event.cancelBubble=true; 	        if (l.mouseout) { 				if (l.mouseout.length > 4) { 					var ext = l.mouseout.substring(l.mouseout.length-4); 					if (ext == ".gif" || ext == ".jpg") { 						l.document.images[l.id + "Img"].src = l.mouseout; 					} else { 						eval("" + l.mouseout); 					} 				} 			}         }     } }  function nn_onMenuItemAction(e, l) {     l = window.ActiveMenuItem;     if (!l) return;     if (!ActiveMenu.Menu.disableHide) nn_hideActiveMenus(ActiveMenu.menuLayer);     if (l.action) {         eval("" + l.action);     } }  function nn_showMenu(menu, x, y, child) {     if (!window.wroteMenu) return;     if (document.layers) {         if (menu) {             var l = menu.menuLayer || menu;             if (typeof(menu) == "string") {                 for (var n=0; n < menuContainers.length; n++) {                     l = menuContainers[n].menus[menu];                     for (var i=0; i<menuContainers[n].menus.length; i++) {                         if (menu == menuContainers[n].menus[i].label) l = menuContainers[n].menus[i].menuLayer;                         if (l) break;                     }                 } 				if (!l) return;             }             l.Menu.container.document.bgColor = null;             l.left = 1;             l.top = 1;             nn_hideActiveMenus(l);             if (this.visibility) l = this;             window.ActiveMenu = l;             window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);             setTimeout('if(window.ActiveMenu)window.ActiveMenu.Menu.setMouseTracker();', 300);         } else {             var l = child;         }         if (!l) return;         for (var i=0; i<l.layers.length; i++) {                             if (!l.layers[i].isHilite)                  l.layers[i].visibility = "inherit";             if (l.layers[i].document.layers.length > 0)                  nn_showMenu(null, "relative", "relative", l.layers[i]);         }         if (l.parentLayer) {             if (x != "relative")                  l.parentLayer.left = x || window.pageX || 0;             if (l.parentLayer.left + l.clip.width > window.innerWidth)                  l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);             if (y != "relative")                  l.parentLayer.top = y || window.pageY || 0;             if (l.parentLayer.isContainer) {                 l.Menu.xOffset = window.pageXOffset;                 l.Menu.yOffset = window.pageYOffset;                 l.parentLayer.clip.width = window.ActiveMenu.clip.width +2;                 l.parentLayer.clip.height = window.ActiveMenu.clip.height +2;                 if (l.parentLayer.menuContainerBgColor) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;             }         }         l.visibility = "inherit";         if (l.Menu) l.Menu.container.visibility = "inherit";     } else if (document.all) {         var l = menu.menuLayer || menu;         nn_hideActiveMenus(l);         if (typeof(menu) == "string") {             l = document.all[menu];             for (var n=0; n < menuContainers.length; n++) {                 l = menuContainers[n].menus[menu];                 for (var i=0; i<menuContainers[n].menus.length; i++) {                     if (menu == menuContainers[n].menus[i].label) l = menuContainers[n].menus[i].menuLayer;                     if (l) break;                 }             }         }         window.ActiveMenu = l;         l.style.visibility = "inherit";         if (x != "relative")              l.style.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;         if (y != "relative")              l.style.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;         l.Menu.xOffset = document.body.scrollLeft;         l.Menu.yOffset = document.body.scrollTop;     }     if (menu) {         window.activeMenus[window.activeMenus.length] = l;         l.Menu.visited = false;     } }  function nn_hideMenu(e) {     var l = e || window.ActiveMenu;     if (!l) return true;     if (l.menuLayer) {         l = l.menuLayer;     } else if (this.visibility) {         l = this;     }     if (l.menuLayer) {         l = l.menuLayer;     }     var a = window.ActiveMenuItem;     document.saveMousemove = document.onmousemove;     document.onmousemove = nn_mouseTracker;     if (a && document.layers) {         a.document.bgColor = a.saveColor;         a.focusItem.top = -30;         if (a.hilite) a.hilite.visibility = "hidden";         if (a.childMenu) a.document.layers[1].document.images[0].src = a.icon;         if (mDrag.oldX <= e.pageX+3 && mDrag.oldX >= e.pageX-3 && mDrag.oldY <= e.pageY+3 && mDrag.oldY >= e.pageY-3) {             if (a.action && window.ActiveMenu) setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 2);         } else if (document.saveMousemove == mDrag.doMenuDrag) {             if (window.ActiveMenu) return true;         }     } else if (window.ActiveMenu && document.all) {         document.onmousedown=null;         if (a) {             a.style.backgroundColor = a.saveColor;             if (a.hilite) a.hilite.style.visibility = "hidden";         }         if (document.saveMousemove == mDrag.doMenuDrag) {             return true;         } 	}     if (window.ActiveMenu) {         if (window.ActiveMenu.Menu) {             if (window.ActiveMenu.Menu.disableHide) return true;             e = window.event || e;             if (!window.ActiveMenu.Menu.enableHideOnMouseOut && e.type == "mouseout") return true;         }     }     nn_hideActiveMenus(l);     return true; }  function nn_hideChildMenu(menuLayer) {     var l = menuLayer || this;     for (var i=0; i < l.Menu.childMenus.length; i++) {         if (document.layers) {             l.Menu.childMenus[i].visibility = "hidden";         } else if (document.all) {             l.Menu.childMenus[i].style.visibility = "hidden";         }         l.Menu.childMenus[i].Menu.hideChildMenu(l.Menu.childMenus[i]);     }     if (l.childMenu) {         if (document.layers) {             l.Menu.container.document.bgColor = null;             l.Menu.showMenu(null,null,null,l.childMenu.layers[0]);             l.childMenu.zIndex = l.parentLayer.zIndex +1;             l.childMenu.top = l.top + l.parentLayer.top + l.Menu.menuLayer.top;             if (l.childMenu.left + l.childMenu.clip.width > window.innerWidth) {                 l.childMenu.left = l.parentLayer.left - l.childMenu.clip.width + l.Menu.menuLayer.top + 15;                 l.Menu.container.clip.left -= l.childMenu.clip.width;             } else if (l.Menu.childMenuDirection == "left") {                 l.childMenu.left = l.parentLayer.left - l.parentLayer.clip.width;                 l.Menu.container.clip.left -= l.childMenu.clip.width;             } else {                 l.childMenu.left = l.parentLayer.left + l.parentLayer.clip.width  + l.Menu.menuLayer.left -5;             }             l.Menu.container.clip.width += l.childMenu.clip.width +100;             l.Menu.container.clip.height += l.childMenu.clip.height;             l.document.layers[1].zIndex = 0;             l.document.layers[1].document.images[0].src = l.iconHilite;             l.childMenu.visibility = "inherit";         } else if (document.all) {             l.childMenu.style.zIndex = l.Menu.menuLayer.style.zIndex +1;             l.childMenu.style.pixelTop = l.style.pixelTop + l.Menu.menuLayer.style.pixelTop;             if (l.childMenu.style.pixelLeft + l.childMenu.style.pixelWidth > document.width) {                 l.childMenu.style.pixelLeft = l.childMenu.style.pixelWidth + l.Menu.menuLayer.style.pixelTop + 15;             } else if (l.Menu.childMenuDirection == "left") {                 //l.childMenu.style.pixelLeft = l.parentLayer.left - l.parentLayer.clip.width;             } else {                 l.childMenu.style.pixelLeft = l.Menu.menuLayer.style.pixelWidth + l.Menu.menuLayer.style.pixelLeft -5;             }             l.childMenu.style.visibility = "inherit";         }         if (!l.childMenu.disableHide)              window.activeMenus[window.activeMenus.length] = l.childMenu;     } }  function nn_hideActiveMenus(l) {     if (!window.activeMenus) return;     for (var i=0; i < window.activeMenus.length; i++) {     if (!activeMenus[i]) return;         if (activeMenus[i].visibility && activeMenus[i].Menu) {             activeMenus[i].visibility = "hidden";             activeMenus[i].Menu.container.visibility = "hidden";             activeMenus[i].Menu.container.clip.left = 0;         } else if (activeMenus[i].style) {             activeMenus[i].style.visibility = "hidden";         }     }     document.onmousemove = nn_mouseTracker;     window.activeMenus.length = 0; }  function nn_hs_onmenuout() {     if (!document.all) return;      e = window.event;     if (!e) return;      if (!window.activeMenus) return;     for (var i=0; i < window.activeMenus.length; i++) {         if (!activeMenus[i]) return;          l = activeMenus[i].Menu.container.style;  	if ((e.clientX < l.pixelLeft || l.pixelLeft+l.pixelWidth < e.clientX || 	     e.clientY < l.pixelTop  || l.pixelTop+l.pixelHeight < e.clientY) && activeMenus[i].Menu.visited)         {           if (activeMenus[i].visibility && activeMenus[i].Menu) {             activeMenus[i].visibility = "hidden";             activeMenus[i].Menu.container.visibility = "hidden";             activeMenus[i].Menu.container.clip.left = 0;           } else if (activeMenus[i].style) {             activeMenus[i].style.visibility = "hidden";           }         }     } }  function nn_hs_hidemenu(element)  {     if (!document.all) return;     e = window.event;     if (e && element) {        var el, x, y;        x = element.offsetLeft;        for (el = element.offsetParent; el; el = el.offsetParent)          x += el.offsetLeft;        y = element.offsetTop;        for (el = element.offsetParent; el; el = el.offsetParent)          y += el.offsetTop;                var ex, ey;        ex = e.clientX;        ey = e.clientY;         if (x <= ex && ex <= x + element.offsetWidth &&             y <= ey && ey <= y + element.offsetHeight)          return;     }      nn_hideActiveMenus(); }  function nn_mouseTracker(e) {     e = e || window.Event || window.event;     window.pageX = e.pageX || e.clientX;     window.pageY = e.pageY || e.clientY;      nn_hs_onmenuout(); }  function nn_setMouseTracker() {     if (document.captureEvents) {         document.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);     }     document.onmousemove = this.mouseTracker;     document.onmouseup = this.hideMenu; }  function nn_setMenuTracker(menu) {     if (!window.menuTrackers) window.menuTrackers = new Array();     menuTrackers[menuTrackers.length] = menu;     window.menuTrackerID = setInterval('menuTracker()',10); }  function nn_menuTracker() {     for (var i=0; i < menuTrackers.length; i++) {         if (!isNaN(menuTrackers[i].xOffset) && document.layers) {             var off = parseInt((menuTrackers[i].xOffset - window.pageXOffset) / 10);             if (isNaN(off)) off = 0;             if (off < 0) {                 menuTrackers[i].container.left += -off;                 menuTrackers[i].xOffset += -off;             } else if (off > 0) {                 menuTrackers[i].container.left += -off;                 menuTrackers[i].xOffset += -off;             }         }         if (!isNaN(menuTrackers[i].yOffset) && document.layers) {             var off = parseInt((menuTrackers[i].yOffset - window.pageYOffset) / 10);             if (isNaN(off)) off = 0;             if (off < 0) {                 menuTrackers[i].container.top += -off;                 menuTrackers[i].yOffset += -off;             } else if (off > 0) {                 menuTrackers[i].container.top += -off;                 menuTrackers[i].yOffset += -off;             }         }         if (!isNaN(menuTrackers[i].xOffset) && document.body) {             var off = parseInt((menuTrackers[i].xOffset - document.body.scrollLeft) / 10);             if (isNaN(off)) off = 0;             if (off < 0) {                 menuTrackers[i].menuLayer.style.pixelLeft += -off;                 menuTrackers[i].xOffset += -off;             } else if (off > 0) {                 menuTrackers[i].menuLayer.style.pixelLeft += -off;                 menuTrackers[i].xOffset += -off;             }         }         if (!isNaN(menuTrackers[i].yOffset) && document.body) {             var off = parseInt((menuTrackers[i].yOffset - document.body.scrollTop) / 10);             if (isNaN(off)) off = 0;             if (off < 0) {                 menuTrackers[i].menuLayer.style.pixelTop += -off;                 menuTrackers[i].yOffset += -off;             } else if (off > 0) {                 menuTrackers[i].menuLayer.style.pixelTop += -off;                 menuTrackers[i].yOffset += -off;             }         }     } }  function nn_onMenuItemDown(e, l) {     l = l || window.ActiveMenuItem || this;     if (!l.Menu) {     } else {         if (document.layers) {             mDrag.dragLayer = l.Menu.container;             mDrag.startMenuDrag(e);         } else {             mDrag.dragLayer = l.Menu.container.style;             mDrag.startMenuDrag(e);             window.event.cancelBubble=true;         }     } }  function nn_startMenuDrag(e) {     if (document.layers) {         if (e.which > 1) {             if (window.ActiveMenu) ActiveMenu.Menu.container.visibility = "hidden";             window.ActiveMenu = null;             return true;         }         document.captureEvents(Event.MOUSEMOVE);         var x = e.pageX;         var y = e.pageY;     } else {         var x = window.event.clientX;         var y = window.event.clientY;     }     mDrag.offX = x;     mDrag.offY = y;     mDrag.oldX = x;     mDrag.oldY = y;     if (!ActiveMenu.Menu.disableDrag) document.onmousemove = mDrag.doMenuDrag;     return false; }  function nn_doMenuDrag(e) {     if (document.layers) {         mDrag.dragLayer.moveBy(e.pageX-mDrag.offX,e.pageY-mDrag.offY);         mDrag.offX = e.pageX;         mDrag.offY = e.pageY;     } else {         mDrag.dragLayer.pixelLeft = window.event.offsetX;         mDrag.dragLayer.pixelTop  = window.event.offsetY;         return false; //for IE     } }  function nn_menu_left(element, anchor_name, hor)  {   var x = 0;   if (document.layers) {     if (hor) {       x = element.x;     } else {       var anchor = document.anchors[anchor_name];       if (anchor)         x = anchor.x;     }   } else if (document.all) {     x = element.offsetLeft;     for (el = element.offsetParent; el; el = el.offsetParent)       x += el.offsetLeft;     if (hor == false)       x += element.offsetWidth;   }   return x-4; }  function nn_menu_top(element, height, hor)  {   var y = 0;   if (document.layers) {     y = element.y;     if (hor)       y += height;   } else if (document.all) {     y = element.offsetTop;     for (el = element.offsetParent; el; el = el.offsetParent)       y += el.offsetTop;     if (hor)       y += element.offsetHeight;   }   return y-4; }  function nn_init_menu() {   if (document.layers) nn_load_menu(); } function nn_load_menu() {   document.navmenu1 = new nn_Menu();    document.navmenu1.addMenuItem("Actualit", "location='PG_Actualite.html'");   document.navmenu1.addMenuItem("Education", "location='PG_Education.html'");   document.navmenu1.addMenuItem("Culture", "location='PG_Culture.html'");   document.navmenu1.addMenuItem("Droits de l Homme", "location='PG_DroitsHomme.html'");   document.navmenu1.addMenuItem("Vie pratique", "location='PG_ViePratique.html'");   document.navmenu1.addMenuItem("Carnet de villes", "location='PG_CarnetVilles.html'");   document.navmenu1.addMenuItem("Autres sites", "location='PG_AutresSites.html'");   document.navmenu1.addMenuItem("A propos de BST...", "location='PG_AproposdeBST.html'");    document.navmenu1.fontFamily = 'Tahoma';   document.navmenu1.fontSize = 10;   document.navmenu1.fontColor = "#66CCFF";   document.navmenu1.fontColorHilite = "yellow";   document.navmenu1.menuItemBgColor = "blue";   document.navmenu1.menuHiliteBgColor = "blue";   document.navmenu1.menuBorderBgColor = "#000099";   document.navmenu1.menuLiteBgColor = "white";   document.navmenu1.bgColor = "#000099";   document.navmenu1.menuBorder = 1;   document.navmenu1.menuItemWidth = 120;   document.navmenu1.menuItemHeight = 20;    document.navmenu1.writeMenus(); } //--> </script> </head><body background="images/nth_userlib_custom_theme_maudre_bg.gif" bgcolor="white" text="#000000" link="blue" vlink="#CCCCFF" alink="#0080FF" OnLoad="nn_init_menu();">  <table cellpadding="0" cellspacing="0" width="750">     <tr>         <td width="150" height="112">             <p>&nbsp;</p>         </td>         <td width="600" height="112">             <p align="center">&nbsp;</p>                                  <p align="right">                          <a href="PG_PlanDuSite.html"><img src="IMG_Carre.gif" width="43" height="56" border="0" alt="cliquez ici pour consulter le plan du site BST"></a>                     </p>         </td>     </tr>     <tr>         <td width="150" height="78"> &nbsp;             <p>&nbsp;</p>         </td>         <td width="600" height="78"> <a name="Dossiers de la classe"><!--NAMO_NAVBAR_START B H R       -1 50 3 5 4 6 --> <div align="right"> <img src="nav/nav_50_pg_dossiers_bhb.gif" name="nav_PG_Dossiers_BH0"  border="0" class="namo-banner" alt="Dossiers de classe" align="texttop"></div>             <!--NAMO_NAVBAR_END--></a>            <p style="margin-top:0; margin-bottom:0;" align="right">        <!-- DEBUT DU SCRIPT --><SCRIPT LANGUAGE="JavaScript"> dateheure();</SCRIPT><!-- FIN DU SCRIPT -->         </td>     </tr>     <tr>         <td width="150" valign="top">             <!--NAMO_NAVBAR_START C V C h m   273 51 22 43 45 6 --> <div align="center"> <a href="index.html"   onmouseover="na_change_img_src('nav_PG_Dossiers_CV0', 'document', 'nav/nav_51_pg_dossiers_btn_homer.gif', true);nn_showMenu(document.navmenu1, nn_menu_left(this, 'anchor_menu1', false), nn_menu_top(this, 24, false))" onmouseout="na_restore_img_src('nav_PG_Dossiers_CV0', 'document');nn_hs_hidemenu(this)"><img src="nav/nav_51_pg_dossiers_btn_home.gif" name="nav_PG_Dossiers_CV0"  border="0" class="namo-button1" alt="Accueil" align="texttop"></a>&nbsp;<br> <a href="PG_Maternelle.html"   onmouseover="na_change_img_src('nav_PG_Dossiers_CV1', 'document', 'nav/nav_51_pg_maternelle_cvr.gif', true);" onmouseout="na_restore_img_src('nav_PG_Dossiers_CV1', 'document');"><img src="nav/nav_51_pg_maternelle_cv.gif" name="nav_PG_Dossiers_CV1"  border="0" class="namo-button1" alt="Maternelle" align="texttop"></a>&nbsp;<br> <a href="PG_Elementaire.html"   onmouseover="na_change_img_src('nav_PG_Dossiers_CV2', 'document', 'nav/nav_51_pg_elementaire_cvr.gif', true);" onmouseout="na_restore_img_src('nav_PG_Dossiers_CV2', 'document');"><img src="nav/nav_51_pg_elementaire_cv.gif" name="nav_PG_Dossiers_CV2"  border="0" class="namo-button1" alt="Elmentaire" align="texttop"></a>&nbsp;<br> <a href="PG_College.html"   onmouseover="na_change_img_src('nav_PG_Dossiers_CV3', 'document', 'nav/nav_51_pg_college_cvr.gif', true);" onmouseout="na_restore_img_src('nav_PG_Dossiers_CV3', 'document');"><img src="nav/nav_51_pg_college_cv.gif" name="nav_PG_Dossiers_CV3"  border="0" class="namo-button1" alt="Collge" align="texttop"></a>&nbsp;<br> <a href="PG_Lycee.html"   onmouseover="na_change_img_src('nav_PG_Dossiers_CV4', 'document', 'nav/nav_51_pg_lycee_cvr.gif', true);" onmouseout="na_restore_img_src('nav_PG_Dossiers_CV4', 'document');"><img src="nav/nav_51_pg_lycee_cv.gif" name="nav_PG_Dossiers_CV4"  border="0" class="namo-button1" alt="Lyce" align="texttop"></a><a name="anchor_menu1">&nbsp;</a><br> </div>             <!--NAMO_NAVBAR_END-->             <p align="center" style="margin-top:0; margin-bottom:0;">&nbsp;</p>              <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1"><img src="images/index_html_smartbutton47.gif" border="0"></font></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><font color="white"><span style="font-size:10pt;"><b>SIGNETS</b></span></font></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1" color="white">&nbsp;</font></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_Dossiers.html#Escargots et hrissons"><font size="1" color="white">Escargots              &amp; Hrissons</font></a></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_Dossiers.html#Histoire et gographie"><font size="1" color="white">Histoire              &amp; Gographie</font></a></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_Dossiers.html#Lectures"><font size="1" color="white">Lectures</font></a></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_Dossiers.html#Oiseaux migrateurs"><font size="1" color="white">Les              oiseaux migrateurs</font></a></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_Dossiers.html#Voir aussi" title="cliquez ici"><font size="1" color="white">Voir              auss</font></a><font size="1" color="white">i</font></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1" color="white">&nbsp;</font></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_PlanDuSite.html"><font size="1" color="white">Le              plan              du site BST</font></a></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><a href="PG_Dossiers.html#recherche sur toile"><font size="1" color="white">Recherche              sur le WEB mondial</font></a></p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="center"><a title="Imprimer la page"><a name="Imprimer"></a></a><a href="#" OnClick="javascript:window.print()"><img src="images/index_html_smartbutton13.gif" border="0" alt="Cliquez ici pour imprimer la page"></a></p>              <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1" color="white">Imprimer              la page</font></p>              <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center"> <font size="1"><img src="images/index_html_smartbutton52.gif" border="0" alt="Rechercher l'information sur le site Balade Sur Toile">	    <!-- Recherche eXtense --></font>             <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1" color="white">Recherche              sur le site BST</font></p>  <TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0" bgcolor="#0000CC" align="center"> <FORM ACTION="http://www.extense.com/cgi-bin/x2search.cgi" METHOD="get" ALIGN="center" TARGET="result"> <INPUT TYPE="hidden" NAME="userID" VALUE="58357141"><INPUT TYPE="hidden" NAME="searchdefault" VALUE="mots clef">  <TR> <TD>                              <p align="left"><font color="#FFFFFF" size="1"><b>RECHERCHER :</b><br> <INPUT TYPE="text" NAME="query" SIZE="11" ONFOCUS="if(this.value==this.form.searchdefault.value) this.value=''" VALUE="mots clef" style="font-family:Arial; font-size:11;"></font></TD> <TD WIDTH="17" VALIGN="BOTTOM">                             <p align="center"><font size="1"><INPUT TYPE="image" SRC="http://www.extense.com/skins/bleu/xysearch.gif" ALT="Rechercher" BORDER="0" VSPACE="1" HSPACE="2"></font></TD> </TR> </FORM> </TABLE>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p> <CENTER> <FORM action=http://www.google.com/custom method=get> <center> <FORM method=GET action="http://www.google.com/search" TARGET=_blank> <TABLE width="140"><tr><td width="134">              <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1"><img src="images/index_html_smartbutton52.gif" border="0" alt="Rechercher l'information sur le WEB mondial"></font></p>                                          <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1" color="white">Recherche Sur              Toile</font></p>                                         <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1"><a name="recherche sur toile"></a></font><A HREF="http://www.google.com" target="_blank"><IMG SRC="http://www.google.com/logos/Logo_25blk.gif" border="0"  ALT="Google" align="absmiddle"></A> <INPUT TYPE=text name=q size=15 maxlength=255 value=""> <INPUT TYPE=hidden name=hl value=fr> <INPUT type=submit name=btnG VALUE="Recherche"></p>  </td></tr></TABLE> </FORM> </center> </FORM></CENTER>             <p align="center" style="margin-top:0; margin-bottom:0;"> 	  	    &nbsp;</p>                         <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center">&nbsp;</p>             <p style="margin-top:0; margin-bottom:0;" align="center"> 	    <!-- eStat --> <SCRIPT LANGUAGE="JavaScript"> <!-- var _UJS=0; //--> </SCRIPT> <SCRIPT LANGUAGE="JavaScript" SRC="http://perso.estat.com/js/m.js"></SCRIPT> <SCRIPT LANGUAGE="JavaScript"> <!-- if(_UJS) _estat('272072134533','Page_Dossiers de la classe','Education'); //--> </SCRIPT> <!-- /eStat --> 	    </p>                     </td>         <td width="600">                     <div align="right">                         <table border="0" width="98%" bordercolordark="#008040" bordercolorlight="silver" cellspacing="2" height="249">                             <tr>                                 <td width="188" valign="top" height="131">                                     <p style="margin-top:0; margin-bottom:0;">                             <font size="1" face="Tahoma"><b><a name="Histoire et gographie"></a><img src="images/PG_Dossiers_Edu_html_smartbutton4.gif" border="0"></b></font>                                     </p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                                                                                              <font size="1"><b>Grce antique                              </b>(+ collge / lyce)<b><br></b><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://www.arfe-cursus.com/grece-philo.htm" target="_blank">Anneau des ressources francophones</a> de lducation<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Sur le <a href="http://www.info-grece.com/academie.php" target="_blank" title="cliquez ici">portail                              d'information</a> (francophone) et d'actualit de                              la Grce, voir l'acadmie virtuelle.<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://chronomath.irem.univ-mrs.fr/chronomath/Grece.html" target="_blank" title="cliquez ici">Athnes et la Grce antique</a> (les philosophes, les politiciens, les mathmaticiens) sur le site de chronomath                              -<b>Cliquez </b>sur <b>avant Euclide</b>.<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://hellada.free.fr/" target="_blank">La Grce antique</a>&nbsp;: temples, cit, dmocratie, dieux<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://membres.lycos.fr/scullymvp/" target="_blank">Mythologie</a>, culture, grands personnages<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">A la <a href="http://membres.lycos.fr/athenet/accueil.html" target="_blank">dcouverte dAthnes</a><br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Sur le site de lacadmie de Caen : La <a href="http://www.etab.ac-caen.fr/brehal/matieres/histgeo/histoire/travels/six/grece/grece.htm" target="_blank">Grce</a> <br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Parcours <a href="http://jfbradu.free.fr/GRECEANTIQUE/sixiemes/6p1.htm" target="_blank">6mes</a><br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Un lien avec le <a href="http://perso.club-internet.fr/erra/GRECE.htm" target="_blank">site des cyber-profs</a> dhistoire-gographie-ducation civique<br>Le Site dEric Ranguin&nbsp;: documents pdagogiques collge <br>Les fonctions militaires dans lantiquit Greco-orientale<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Sur le <a href="http://www.stratisc.org/act/bru/act_bru_hisguerre_13.html" target="_blank">site stratisc.org</a><br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://greceantique.free.fr/Vocahoplite.htm" target="_blank">Hoplite</a></font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0; padding:0cm; border-style:none;" align="justify"><font size="1"><b>Egypte                              ancienne</b></font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Sur                              le site du <a href="http://www.civilisations.ca/civil/egypt/egintrof.html" target="_blank">muse                              des civilisations</a> (Canada) </font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0; padding:0cm; border-style:none;" align="justify"><font size="1"><b>Les                              autres peuples</b></font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://www.civilisations.ca/civil/maya/mmintfra.html" target="_blank">Les                              Mayas</a></font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">La                              <a href="http://tecfa.unige.ch/tecfa/teaching/UVLibre/9900/bin08/welcome.htm" target="_blank" title="cliquez ici">Culture                              Arabo-Andalouse</a> : histoire de l'Espagne mauresque.</font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify"><font size="1">Voir                              aussi : <a href="PG_College.html#rome antique" title="cliquez ici">Rome                              antique</a> (page college)</font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="1"><img src="images/Index_html_smartbutton28.gif" border="0"></font></p>                                 </td>                                 <td width="1" valign="top" height="131">                             <p>&nbsp;</p>                                 </td>                                 <td width="185" valign="top" height="131">                                     <p style="margin-top:0; margin-bottom:0;">                             <font size="1" face="Tahoma"><b><a name="Lectures"></a><img src="images/PG_Dossiers_Edu_html_smartbutton6.gif" border="0"></b></font>                                     </p>                                     <p align="justify" style="margin-top:0; margin-bottom:0;">  <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Un                              dossier sur &nbsp;<a href="http://corumcle.edres74.ac-grenoble.fr/potter/first.htm" target="_blank" title="cliquez ici">Harry                              Potter</a> ralis par le collge Le Clergeon                               Rumilly (France).</font>                                     </p>                                     <p align="justify" style="margin-top:0; margin-bottom:0;"> <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://poudlard.apinc.org/" target="_blank" title="cliquez ici">Poudlard</a>                              et Harry Potter.</font>                                     </p>                                     <p style="margin-top:0; margin-bottom:0;" align="center"> <img src="images/PG_Dossiers_html_smartbutton1.gif" border="0">                                     </p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://expositions.bnf.fr/hugo/pedago/index.htm" target="_blank" title="cliquez ici">Victor                              Hugo</a>, l'homme ocan. Les dossiers pdagogiques                              de la BNF.</font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify"><font size="1">Site                              d'<a href="http://perso.wanadoo.fr/lapetitesouris/" target="_blank" title="cliquez ici">apprentissage                              de la lecture</a>. Des fiches d'exercices, une&nbsp;bibliothque                              d'ouvrages, des contines...</font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">                              Sur le site <a href="http://philoctetes.free.fr/" target="_blank" title="cliquez ici">Philoctetes</a>                              : met progressivement en ligne des textes fondateurs                              de notre culture. Les textes originaux en grecs                              et en latin sont publis avec leurs traductions                              franaises, anglaises et allemandes. On y trouve                              (entre autres) homre : l'<a href="http://philoctetes.free.fr/homereil.htm" target="_blank" title="cliquez ici">Iliade</a>                              et l'<a href="http://philoctetes.free.fr/homereod2.htm" target="_blank" title="cliquez ici">Odysse</a>.</font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Le                              monde de <a href="http://www.peterrabbit.co.uk/" target="_blank" title="cliquez ici">Batrix Potter</a>, sa vie, son oeuvre...Pierre                              Lapin et ses amis. Site trilingue. </font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://membres.lycos.fr/alice/" target="_blank" title="cliquez ici">Lewis                              Carroll</a> : l'univers d'Alice au pays des merveilles,                              balade  travers l'histoire. Le terrier de l'cole,                              des jeux, de l'auteur... </font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://www.gidiana.net/" target="_blank" title="cliquez ici">Gidiana</a>                              : un site entirement consacr  Andr Gide </font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Un                              site entirement consacr  <a href="http://www.armance.com/" target="_blank" title="cliquez ici">Stendhal</a>                              </font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify">                                          <font size="1"><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Voir                              aussi : &quot;<a href="PG_Livres.html#Lire en ligne" target="_blank" title="cliquez ici">Lire                              en ligne</a>&quot;, &nbsp;&quot;<a href="PG_EspaceEcoliers.html#Francais" target="_blank" title="cliquez ici">franais</a>&quot;                              et &quot;<a href="PG_ContesLegendes.html" target="_blank" title="cliquez ici">contes                              et lgendes</a>&quot;</font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="1"><img src="images/Index_html_smartbutton28.gif" border="0"></font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"></p>                                     <p style="margin-top:0; margin-bottom:0;">                             &nbsp;                                     </p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                             <p style="margin-top:0; margin-bottom:0;">&nbsp;</p>                                 </td>                                 <td width="4" valign="top" height="131">                             <p>&nbsp;</p>                             <p>&nbsp;</p>                                 </td>                                 <td width="188" valign="top" height="131">                                     <p style="margin-top:0; margin-bottom:0;">                               <font size="1" face="Tahoma"><b><a name="Oiseaux migrateurs"></a><img src="images/PG_Dossiers_Edu_html_smartbutton8.gif" border="0"></b></font>                                     </p>                             <p style="margin-top:0; margin-bottom:0;" align="justify"><font size="1">&nbsp;</font><b><font size="1">Les hirondelles<o:p></o:p>                              </font></b><font size="1">(+ Primaire / collge)<br><o:p>&nbsp;</o:p><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Les cahiers naturalistes du cher. <a href="http://membres.lycos.fr/chernature/portraits/hirondelles.htm" target="_blank">Les hirondelles</a>.<o:p>&nbsp;<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Histoire naturelles du grand-pre Soulcie&nbsp;: <a href="http://cyrille.deliry.free.fr/aves/hirdae.htm" target="_blank">Hirondelle</a> de rivage, de rochers, de chemine, de fentre, rousseline.<o:p>&nbsp;</o:p><br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur"><a href="http://boileau.paris.iufm.fr/P_Envir/hirond.htm" target="_blank">Hirondelles</a> dans notre quartier.<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Les <a href="http://www.chez.com/jardins/oiseauhirondelles.htm" target="_blank">hirondelles</a> au jardin.<br></font>                            <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="1"><img src="images/Index_html_smartbutton28.gif" border="0"></font></p>                             <p style="margin-top:0; margin-bottom:0;" align="justify"></p>                                     <p style="margin-top:0; margin-bottom:0;">                             &nbsp;                                     </p>                                     <p style="margin-top:0; margin-bottom:0;">   <font size="1" face="Tahoma"><b><a name="Escargots et hrissons"></a><img src="images/PG_Dossiers_Edu_html_smartbutton10.gif" border="0"></b></font>                                     </p>                             <p style="margin-top:0; margin-bottom:0;" align="justify"><b><font size="1">Lescargot<o:p></o:p>                              </font></b><font size="1">(+ primaire / collge)</font><b><font size="1"><br></font></b><font size="1"><o:p><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">&nbsp;<a href="http://www.inra.fr/Internet/Produits/HYPPZ/ZGLOSS/3g---005.htm" target="_blank">Gasteropoda</a>.<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Les <a href="http://www.mediardenne.com/escargots/escardenne.htm" target="_blank">escargots ardennais</a>.</font>  <div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0cm 0cm 1.0pt 0cm'>  <p class=MsoNormal style="margin-top:0; margin-bottom:0; padding:0cm; border-style:none; mso-border-bottom-alt:solid windowtext 1.5pt;mso-padding-alt:0cm 0cm 1.0pt 0cm" align="justify"><b><font size="1">Le Hrisson<o:p></o:p>                                  </font></b><font size="1">(+ primaire)</font><b><font size="1"><br></font></b><font size="1"><o:p><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Tout sur le <a href="http://perso.wanadoo.fr/faune/pages/mammiferes/herisson.htm" target="_blank">hrisson</a>.<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Le <a href="http://membres.lycos.fr/sjt/anim_herisson.htm" target="_blank">hrisson</a>.<o:p>&nbsp;<o:p>&nbsp;<br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Naturimage                                  : des photos de&nbsp; <a href="http://www.naturimage.com/erinaceus.htm" target="_blank">Hrissons</a>.<o:p>&nbsp;</o:p><br><img src="IMG_Coche.gif" width="11" height="11" border="0" alt="Les signets du surfeur">Le <a href="http://www.cr-auvergne.fr/p14515.htm" target="_blank">hrisson</a> (erinaceus europaeus)</font></p>  </div>                              <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="1"><img src="images/Index_html_smartbutton28.gif" border="0"></font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify">&nbsp;</p>                                     <p style="margin-top:0; margin-bottom:0;"> <font size="1" face="Tahoma"><b><a name="Voir aussi"></a><img src="images/PG_Dossiers_html_smartbutton3.gif" namo_npi=":EmbededNPI1" border="0"></b></font>                                     </p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="1">Les                              pages :<a href="PG_EspaceEcoliers.html" target="_blank" title="cliquez ici">Ecoliers</a>, <a href="PG_Elementaire.html" title="cliquez ici">Elmentaire</a>,                              <a href="PG_College.html" title="cliquez ici">Collge</a>,                              <a href="PG_Lycee.html" title="cliquez ici">Lyce</a>,                              <a href="PG_Culture.html" title="cliquez ici">Culture</a>.</font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="1"><img src="images/Index_html_smartbutton28.gif" border="0"></font></p>                             <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify">&nbsp;</p>                                 </td>                             </tr>                         </table>             <table width="98%" cols="2" rows="10" cellpadding="2" class="namo-table" bordercolordark="#0E5FA0" bordercolorlight="#00ECFF">                 <tr>                     <th align="left" class="namo-th">                              <p class="MsoNormal" style="margin-top:0; margin-bottom:0;" align="justify"><font size="2"><a href="PG_Dossiers.html" title="Cliquez ici pour aller en haut de la page"><img src="images/nth_userlib_custom_theme_maudre_up.gif" border="0" class="namo-up" align="right"></a></font>&nbsp;</p>                     </th>                 </tr>             </table>             </div>             <p style="margin-top:0; margin-bottom:0;" align="center"><img src="images/nth_userlib_custom_theme_maudre_hr.gif" border="0" class="namo-hr"></p>             <p style="margin-top:0; margin-bottom:0;" align="center"><img src="images/Index_html_smartbutton4.gif" border="0" alt="BST, votre nouveau portail  inscrire dans vos favoris !"></p> <font size="1"><!--NAMO_NAVBAR_START T h C h     -1 52 46 5 4 6 --> <div align="center"> <a href="index.html"  onmouseover="" onmouseout="">Accueil</a>-<a href="PG_Actualite.html"  onmouseover="" onmouseout="">Actualit</a>-<a href="PG_Education.html"  onmouseover="" onmouseout="">Education</a>-<a href="PG_Culture.html"  onmouseover="" onmouseout="">Culture</a>-<a href="PG_DroitsHomme.html"  onmouseover="" onmouseout="">Droits de l Homme</a>-<a href="PG_ViePratique.html"  onmouseover="" onmouseout="">Vie pratique</a>-<a href="PG_CarnetVilles.html"  onmouseover="" onmouseout="">Carnet de villes</a>-<a href="PG_AutresSites.html"  onmouseover="" onmouseout="">Autres sites</a>-<a href="PG_AproposdeBST.html"  onmouseover="" onmouseout="">A propos de BST...</a></div>             <!--NAMO_NAVBAR_END--></font>                      <p align="center" style="margin-top:0; margin-bottom:0;"> &nbsp;                     </p>             <p style="margin-top:0; margin-bottom:0;" align="center"><font size="1">Copyright (c) 2002 Balade sur                         toile - les signets du surfeur. Tous droits rservs.<br>                                                  <a href="mailto:baladesurtoile@free.fr?subject=Message  partir du site BALADE SUR TOILE" title="Cliquez ici pour nous contacter"><img src="IMG_Email.gif" width="92" height="53" border="0">                         </a></font></p>         </td>     </tr> </table> <p>&nbsp;</p>  <script namo_navmenu><!-- if (document.all) nn_load_menu(); //--></script>                                                </body>  <!--Namo WebEditor Data 4.0 :EmbededNPI1 IwYAAHheS88rSWRgYGBUZgOSQOCXmJuv4JlXklqUmFySWZYKEUWAS+zsDOwMwgwsDJroUmTx mYC6FNLyUkCmzQGxSzKK41gZGI4C2bn5FnkwOQYGB6ALQTiCkYHBByi7E4ilGP7//8/ACFYI 1RjMkMGQCoQlDAoMBmQ5iTJNufkmeQpFlemTgMaAPEcZ8GFIZKgE+qaITN8AwwoYjEAXlVSU uAOdw0yZc4C6Q4CuqQCHriF5ZqVMBOrrBDosN98sTyEnM80alP7QzTp16v+Hx4lJZ85OYOAA yoEwGAhUOjAwAiMcqDW7pDgbh1awUodwB7gWEKMhDKgVbg8LyFIMazG9BLYqN60C7NuGzUAd UUiKQAagGQLWUJ6TLgWVgimZCfFwSV7aDJABjkWZiTnkhSBVdHEDTVkPc/tEoCODgAKuoBBm 4GIIY8hnyAQnukSGUoZiIMyEJKOMkoKfQLWUJyNQNk1kKAAmJjKzKTgZXQdivMmIoeE/luQD 0UMgGYFCGejVHKUJDAlAZk+rIpMAkF6w+Pt+ipPRFkaGhkj8yQhS0PkBFYEKOnEGBl6QenmT pWBtwBISJMwALIeh8kDFEIVwEZbuNpAKcQZGGAMuAtQOAUyhrsIQA5u3q0EYrusngxnMtSe4 /ik7TfgPAJSifgk= -->                                  </html> 
