Advertisement
Guest User

template

a guest
Jan 22nd, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 60.70 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
  3. <head>
  4. <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
  5. <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
  6. <meta http-equiv="content-script-type" content="text/javascript" />
  7. <meta http-equiv="content-style-type" content="text/css" />
  8. <!-- BEGIN switch_compat_meta -->
  9. <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
  10. <!-- END switch_compat_meta -->
  11. <!-- BEGIN switch_canonical_url -->
  12. <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
  13. <!-- END switch_canonical_url -->
  14. {META_FAVICO}
  15. {META}
  16. {META_FB_LIKE}
  17. <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
  18. {T_HEAD_STYLESHEET}
  19. {CSS}
  20. <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
  21. <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
  22. <script src="{JQUERY_PATH}" type="text/javascript"></script>
  23. <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script>
  24.  
  25. <!-- BEGIN switch_fb_login -->
  26. <script src="http://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
  27. <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
  28. <!-- END switch_fb_login -->
  29.  
  30. <!-- BEGIN switch_ticker -->
  31. <link type="text/css" rel="stylesheet" href="{JS_DIR}jquery/ticker/ticker.css" />
  32. <script src="{JS_DIR}jquery/ticker/ticker.js" type="text/javascript"></script>
  33. <!-- END switch_ticker -->
  34.  
  35. <!-- BEGIN switch_ticker_new -->
  36. <script src="{JS_DIR}jquery/jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
  37. <script type="text/javascript">//<![CDATA[
  38. /* Definir le sens de direction en fonction du panneau admin */
  39. var tickerDirParam = "{switch_ticker.DIRECTION}";
  40. var slid_vert = false;
  41. var auto_dir = 'next';
  42. var h_perso = parseInt({switch_ticker.HEIGHT});
  43.  
  44. switch( tickerDirParam )
  45. {
  46. case 'top' :
  47. slid_vert = true;
  48. break;
  49.  
  50. case 'left':
  51. break;
  52.  
  53. case 'bottom':
  54. slid_vert = true;
  55. auto_dir = 'prev';
  56. break;
  57.  
  58. case 'right':
  59. auto_dir = 'prev';
  60. break;
  61.  
  62. default:
  63. slid_vert = true;
  64. }
  65.  
  66. $(document).ready(function() {
  67. var w_cont = $('#fa_ticker_container').width();
  68.  
  69. if (w_cont > 0)
  70. {
  71. $('#fa_ticker_container').width(w_cont);
  72.  
  73. /* Affichage de la liste */
  74. $('#fa_ticker_content').css('display','block');
  75.  
  76. /* Calcul des dimensions du conteneur et des ?l?ments */
  77. var width_max = $('ul#fa_ticker_content').width();
  78. var width_item = Math.floor(width_max / {switch_ticker.SIZE});
  79. var height_max = h_perso;
  80.  
  81. /* Calcul de la hauteur maximale du contenur en fonction des ?l?ments et de la hauteur personnalis?e dans l'admin */
  82. $('ul#fa_ticker_content li').each( function () {
  83. if ($(this).height() > height_max)
  84. {
  85. height_max = $(this).height();
  86. }
  87. } );
  88.  
  89. /* Redimensionnement des ?l?ments et des images trop larges */
  90. $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
  91. if ($(this).width() > width_item)
  92. {
  93. var ratio = $(this).width() / width_item;
  94. var new_height = Math.round($(this).height() / ratio);
  95. $(this).height(new_height).width(width_item);
  96. }
  97. });
  98.  
  99. /* Redimensionnement et centrage du conteneur en mode vertical */
  100. if (slid_vert)
  101. {
  102. $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
  103. }
  104.  
  105. /* Initialisation du caroussel */
  106. $('#fa_ticker_content').jcarousel({
  107. vertical: slid_vert,
  108. wrap: 'circular',
  109. auto: {switch_ticker.STOP_TIME},
  110. auto_direction: auto_dir,
  111. scroll: 1,
  112. size: {switch_ticker.SIZE},
  113. height_max: height_max,
  114. animation: {switch_ticker.SPEED}
  115. });
  116. }
  117. else
  118. {
  119. $('ul#fa_ticker_content li:not(:first)').css('display','none');
  120. $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
  121. }
  122. });
  123. //]]>
  124. </script>
  125. <!-- END switch_ticker_new -->
  126.  
  127. <script type="text/javascript">//<![CDATA[
  128. $(document).ready(function(){
  129. <!-- BEGIN switch_enable_pm_popup -->
  130. pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
  131. pm.focus();
  132. <!-- END switch_enable_pm_popup -->
  133. <!-- BEGIN switch_report_popup -->
  134. report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
  135. report.focus();
  136. <!-- END switch_report_popup -->
  137. <!-- BEGIN switch_ticker -->
  138. ticker_start({switch_ticker.HEIGHT}, {switch_ticker.SPACING}, {switch_ticker.SPEED}, '{switch_ticker.DIRECTION}', {switch_ticker.STOP_TIME});
  139. <!-- END switch_ticker -->
  140. });
  141.  
  142. <!-- BEGIN switch_login_popup -->
  143. var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
  144. <!-- END switch_login_popup -->
  145.  
  146. <!-- BEGIN switch_login_popup -->
  147. $(document).ready( function() {
  148. $(window).resize(function() {
  149. var windowWidth = document.documentElement.clientWidth;
  150. var popupWidth = $("#login_popup").width();
  151. var mypopup = $("#login_popup");
  152.  
  153. $("#login_popup").css({
  154. "left": windowWidth/2 - popupWidth/2
  155. });
  156. });
  157. });
  158. <!-- END switch_login_popup -->
  159. //]]>
  160. </script>
  161. {GREETING_POPUP}
  162. <!-- BEGIN switch_ticker_new -->
  163. <style>
  164. .jcarousel-skin-tango .jcarousel-item {
  165. text-align:center;
  166. width: 10px;
  167. }
  168.  
  169. .jcarousel-skin-tango .jcarousel-item-horizontal {
  170. margin-right: {switch_ticker.SPACING}px;
  171. }
  172.  
  173. .jcarousel-skin-tango .jcarousel-item-vertical {
  174. margin-bottom: {switch_ticker.SPACING}px;
  175. }
  176. </style>
  177. <!-- END switch_ticker_new -->
  178. {HOSTING_JS}
  179. <!-- BEGIN google_analytics_code -->
  180. <script type="text/javascript">
  181. //<![CDATA[
  182. var _gaq = _gaq || [];
  183. _gaq.push(['_setAccount', '{G_ANALYTICS_ID}']);
  184. _gaq.push(['_trackPageview']);
  185.  
  186. (function() {
  187. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  188. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  189. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  190. })();
  191. //]]>
  192. </script>
  193. <!-- END google_analytics_code -->
  194. <!-- Debut header -->
  195. <br /><br /><br /><br /><br />
  196.  
  197. <img style="display: none;" src="http://i63.servimg.com/u/f63/11/93/85/24/altitu11.gif" />
  198. <table class="FCK__ShowTableBorders" height="78" cellSpacing="1" cellPadding="0" width="750" align="center" border="0">
  199. <tbody>
  200. <tr>
  201. <td>
  202. <img onmouseover="this.src='http://i63.servimg.com/u/f63/11/93/85/24/altitu11.gif'" src="http://i63.servimg.com/u/f63/11/93/85/24/image_10.gif" onmouseout="this.src='http://i63.servimg.com/u/f63/11/93/85/24/image_10.gif'" />
  203. </td>
  204. </tr>
  205. </tbody>
  206. </table>
  207.  
  208. <br /><br />
  209.  
  210. <!-- Fin header -->
  211.  
  212.  
  213. <!-- Debut container panneau d'administration -->
  214.  
  215. <div style="margin:2; margin-top:0px"><div class="quotetitle"><input type="button"class="go"value=" Afficher le panneau d'accueil " style="width:195px;font-size:12px;color : #67aa00 ;margin:0px;padding:0px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Cacher'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Afficher'; }" /></div><div class="quotecontent"><div style="display: none;">
  216.  
  217.  
  218. <!-- Debut tableau a onglet -->
  219.  
  220. <meta name="generator" content="HTML Tidy for Linux (vers 6 November 2007), see www.w3.org" />
  221. <style type="text/css">
  222. /*<![CDATA[*/
  223.  
  224. /*-------dernieres News infobulle dans equipe altitude tropicale----------- */
  225. a.imginfo {border-bottom:0 solid red;color:#7b9c40;position:relative;text-decoration:none;}
  226.  
  227. a.imginfo span {display:none;}a.imginfo:hover {background:none repeat scroll 0 0 transparent;cursor:help;z-index: 999;white-space:nowrap;}
  228.  
  229. a.imginfo:hover span {background:none repeat scroll 0 0 #f4f0e8;border:2px solid #7b9c40;color:#3D3733;display:inline;left:8px;padding:2px;position:absolute;top:10px;white-space:nowrap;}
  230.  
  231. /***slide profil du staff****/
  232.  
  233. .img-infobulle:hover {-moz-border-radius:6px 0 0 6px;
  234. -webkit-border-top-left-radius: 6px;
  235. -webkit-border-top-right-radius: 0px;
  236. -webkit-border-bottom-left-radius: 0px;
  237. -webkit-border-bottom-right-radius: 6px;
  238. border:3px solid black;}
  239.  
  240. .img-infobulle {-moz-border-radius:6px 6px 6px6px;
  241. -webkit-border-top-left-radius: 6px;
  242. -webkit-border-top-right-radius: 6px;
  243. -webkit-border-bottom-left-radius: 6px;
  244. -webkit-border-bottom-right-radius: 6px;
  245. border:3px solid black;}
  246.  
  247. a.infobulle {position:relative;width:149px;}
  248.  
  249. a.infobulle span {display:none;width:149px;}
  250.  
  251. a.infobulle:hover {background:none repeat scroll 0 0 transparent;z-index: 999;width:168px;
  252.  
  253. }a.infobulle:hover span {
  254. -moz-border-radius-bottomright:12px;
  255. -moz-border-radius-topright:12px;
  256. -webkit-border-top-right-radius: 12px;
  257. -webkit-border-bottom-right-radius: 12px;
  258. background-image: url("http://nsa26.casimages.com/img/2011/03/02/110302044051649359.gif");background-repeat:repeat;border-bottom:3px solid white;border-right:1px solid white;border-top:3px solid white;bottom:2px;display:inline;font-size:12px;left:56px;width:149px;padding:5px;position:absolute;white-space:nowrap;}
  259. a.lierbulle:hover {background:none repeat scroll 0 0 transparent;z-index: 999;}
  260.  
  261. a.lierbulle:hover span {background:none repeat scroll 0 0 #F7F6F2;border:1px solid #781B0F;display:inline;left:100px;padding:3px 5px;position:absolute;top:100px;white-space:nowrap;}
  262.  
  263. /* *****************menu annexe reglement et fonctionnalites */
  264.  
  265. #menu {margin:0;padding:0;height:33em;overflow:hidden;background:#f4f0e8;}
  266.  
  267. #menu li {list-style-type:none;float:left;display:block;width:100%;}
  268.  
  269. #menu li a {display:block;text-decoration:none;color:black;margin:0;width:100%;}
  270.  
  271. #menu li a span {display:none;color:black;}
  272.  
  273. #menu li a.one span {display:block;height:15em;margin:0 10px;}
  274.  
  275. #menu li a:hover span {display:block;height:15em;margin:0 10px;cursor:pointer;}
  276.  
  277. #menu .h2 {text-align: justify;color:#7b9c40;font-variant:small-caps;font-size:1.5em;}
  278.  
  279. /* *****************menu slide dans partie droite réglement*/
  280.  
  281. .curved {width:21em;}.curved .b1, .curved .b2, .curved .b3, .curved .b4 {font-size:1px;display:block;background:black;/* hide overflow:hidden from IE5/Mac *//* \*/overflow: hidden;/* */}
  282.  
  283. .curved .b1, .curved .b2, .curved .b3 {height:1px;}
  284.  
  285. .curved .b2, .curved .b3, .curved .b4 {background:#f0f0f0;border-left:1px solid black;border-right:1px solid clack;}
  286.  
  287. .curved .b1 {margin:0 4px;background: black;}
  288.  
  289. .curved .b2 {margin:0 2px;border-width:0 2px;}
  290.  
  291. .curved .b3 {margin:0 1px;}.curved .b4 {height:2px;margin:0;}
  292.  
  293. .curved .c1 {margin:0 5px;background: black;}
  294.  
  295. .curved .c2 {margin:0 3px;border-width:0 2px;}
  296.  
  297. .curved .c3 {margin:0 2px;}
  298.  
  299. .curved .c4 {height:2px;margin: 0 1px;}
  300.  
  301. .curved .boxcontent {display:block;background:transparent;border-left:1px solid #88c;border-right:1px solid black;font-size:0.9em;text-align:justify;}
  302.  
  303. /* *****************tableau à onglets*/
  304.  
  305. .accueil-ul {list-style-type:none;margin:0;overflow:hidden;padding:0;width:auto;}
  306.  
  307. .accueil-li {-moz-border-radius-bottomleft:10px;-moz-border-radius-bottomright:10px;
  308. -webkit-border-bottom-left-radius: 10px;
  309. -webkit-border-bottom-right-radius: 10px;
  310. background-color: trans;border:1px solid #abb487;float:left;font-size:10px;margin-left:6px;padding-bottom:5px;padding-left:8px;padding-right:8px;position:relative;text-decoration:none;text-transform:uppercase;z-index:0;}
  311.  
  312. .accueil-contenu {background-image:url("");background-repeat:repeat;border : nonepadding:0;}
  313.  
  314. .accueil-contenu2 {background-color:transparent;border:0 none;padding:5px 10px;}
  315.  
  316. .accueil-bloc {-moz-border-radius:10px 10px 10px 10px;
  317. -webkit-border-top-left-radius: 10px;
  318. -webkit-border-top-right-radius: 10px;
  319. -webkit-border-bottom-left-radius:10px;
  320. -webkit-border-bottom-right-radius: 10px;
  321. background-color:black;border:1px solid #abb487;font-size:11px;padding:3px 8px;text-decoration:none;}
  322.  
  323. /* *Lettre couleur verte*/
  324.  
  325. .lettrine {float: left; font-size: 20px; padding-top: 5px; margin-bottom: 0px; color: #7b9c40; font-family: Georgia, 'Times New Roman', Times, serif; font-weight: bold; }
  326.  
  327. /*]]>*/
  328. </style>
  329. <title></title>
  330.  
  331. <style type="text/css">
  332. /*<![CDATA[*/
  333. div.c22 {height: 300px; text-align: center}
  334. img.c18 {opacity: 0.8;}
  335. span.c17 {color: #FFFFFF}
  336. strong.c16 {text-decoration: underline}
  337. span.c15 {color: #7b9c40}
  338. span.c14 {color: #7BBD00}
  339. img.c13 {opacity: 0.5;}
  340. div.c9 {border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(255, 153, 253);}
  341. div.c8 {border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(51, 255, 51);}
  342. img.c6 {width: 55px; height: 89px; opacity: 0.9;}
  343. div.c5 {display: none;}
  344. div.c3 {display: block;}
  345. div.c2 {text-align: justify;}
  346. li.c1 {list-style: none}
  347. /*]]>*/
  348. </style>
  349.  
  350. <br />
  351. <table class="forumline" border="0" cellpadding="0" cellspacing="1" width="100%">
  352. <tbody>
  353. <tr>
  354. <td class="row1" rowspan="3" align="center" valign="middle">
  355. <div class="gensmall"><script type="text/javascript">
  356. //<![CDATA[
  357. function accueilone()
  358. {
  359. document.getElementById('accueil1').style.display='block';
  360. document.getElementById('accueil2').style.display='none';
  361. document.getElementById('accueil3').style.display='none';
  362. document.getElementById('accueil4').style.display='none';
  363. document.getElementById('accueil5').style.display='none';
  364. }
  365.  
  366. function accueiltwo()
  367. {
  368. document.getElementById('accueil2').style.display='block';
  369. document.getElementById('accueil1').style.display='none';
  370. document.getElementById('accueil3').style.display='none';
  371. document.getElementById('accueil4').style.display='none';
  372. document.getElementById('accueil5').style.display='none';
  373. }
  374. function accueilthree()
  375. {
  376. document.getElementById('accueil3').style.display='block';
  377. document.getElementById('accueil4').style.display='none';
  378. document.getElementById('accueil5').style.display='none';
  379. document.getElementById('accueil2').style.display='none';
  380. document.getElementById('accueil1').style.display='none';
  381. }
  382. function accueilfour()
  383. {
  384. document.getElementById('accueil4').style.display='block';
  385. document.getElementById('accueil5').style.display='none';
  386. document.getElementById('accueil3').style.display='none';
  387. document.getElementById('accueil2').style.display='none';
  388. document.getElementById('accueil1').style.display='none';
  389. }
  390. function accueilfive()
  391. {
  392. document.getElementById('accueil5').style.display='block';
  393. document.getElementById('accueil4').style.display='none';
  394. document.getElementById('accueil3').style.display='none';
  395. document.getElementById('accueil2').style.display='none';
  396. document.getElementById('accueil1').style.display='none';
  397. }
  398. //]]>
  399. </script>
  400. <div class="accueil-contenu">
  401. <ul class="accueil-ul">
  402. <li><a class="accueil-li" href="#" onmouseover="javascript:accueilone()">Thème</a></li>
  403. <li><a href="#" class="accueil-li" onmouseover="javascript:accueiltwo()">Règlement</a></li>
  404. <li><a href="#" class="accueil-li" onmouseover="javascript:accueilthree()">Équipe d'Altitude tropicale</a></li>
  405. <li><a href="#" class="accueil-li" onmouseover="javascript:accueilfour()">News du forum</a></li>
  406. <li><a href="#" class="accueil-li" onmouseover="javascript:accueilfive()">Chatbox</a></li>
  407. <li class="c1"><br />
  408. <br /></li>
  409. </ul>
  410. <div class="accueil-contenu2">
  411. <div class="c3" id="accueil1">
  412. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  413. <tbody>
  414. <tr>
  415. <td class="accueil-bloc" valign="top" width="100%">
  416. <div id="bienvenue"><span id="coco">Bienvenue sur Altitude tropicale </span><span id="coco2">Bienvenue sur Altitude tropicale </span></div>
  417. <br />
  418. <br />
  419. <table>
  420. <tbody>
  421. <tr>
  422. <td colspan="1" rowspan="1" align="center" valign="top"><img src="http://i63.servimg.com/u/f63/11/93/85/24/philo_10.png" alt="** PLEASE DESCRIBE THIS IMAGE **" /></td>
  423. <td colspan="1" rowspan="1" align="center">
  424. <div class="c2">
  425. <div class="altitude_encadrement">Cultiver des plantes insolites est un réel plaisir. D'abord en raison de leur rareté, mais aussi pour leur port si différent des végétaux que l'on rencontre sous nos latitudes. L'intérêt qui se manifeste actuellement pour les plantes exotiques va de pair avec l'accroissement du temps libre. On passe de plus en plus de temps dans son jardin et l'on rêve de vacances ensoleillées sous des pays lointains. Or, précisément, les plantes exotiques évoquent ces pays ensoleillés. En avoir chez soi, c'est apporter à son jardin une ambiance exotique qui incite à l'évasion, au rêve, au voyage. Mais créer un jardin de plantes exotiques sous des climats sujets au gel, cela semble généralement un véritable challenge. L'objectif de ce forum est donc de vous faire découvrir un choix de plantes acclimatables dans les jardins tempérés.<br /></div>
  426. <table border="0" cellpadding="0" cellspacing="0" width="360"></table>
  427. </div>
  428. </td>
  429. </tr>
  430. </tbody>
  431. </table>
  432. </td>
  433. </tr>
  434. </tbody>
  435. </table>
  436. </div>
  437. <div id="accueil2" class="c5">
  438. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  439. <tbody>
  440. <tr>
  441. <td valign="top" width="50%">
  442. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  443. <tbody>
  444. <tr>
  445. <td class="accueil-bloc" valign="top">
  446. <div class="lettrine">R</div>
  447. <br />
  448. èglement<br />
  449. <br />
  450. Dans un soucis d'efficacité et de convivialité, veuillez observer ces quelques règles élémentaires<br />
  451. <br /><br />
  452. <strong>En toute occasion restez poli, courtois et respectueux .<br />
  453. <br />
  454. Pour que l'entraide profite au plus grand nombre, évitez le plus possible de poster vos réponses par MP Veillez à poster dans la bonne section et de donner un titre explicite à vos sujets .<br />
  455. <br />
  456. Évitez autant que possible de poser vos questions dans un sujet existant si la question n'est pas en rapport avec le sujet<br />
  457. <br />
  458. Afin d'être compréhensible , on s'abstiendra d'écrire en langage SMS.<br />
  459. <br />
  460. En cas de désaccord avec un membre ou le staff, préférez l'utilisation des MP plutôt qu'un déballage en place publique. Ce genre de manifestation ne pourrait que nuire à la bonne marche du forum.</strong><br />
  461. <br /><br />
  462. Merci par avance pour votre compréhension.<br />
  463. <br /><br />
  464. Les administrateurs du site<br /><br />
  465. <br /></td>
  466. </tr>
  467. </tbody>
  468. </table>
  469. </td>
  470. <td class="accueil-bloc" align="center" valign="top" width="50%">
  471. <table align="center">
  472. <tbody>
  473. <tr>
  474. <td align="center">
  475. <div class="lettrine">L</div>
  476. <br />
  477. es annexes du règlement et fonctionnalités du site<br />
  478. <br />
  479.  
  480. <div class="curved"><b class="b1 c1"></b><b class="b2 c2"></b><b class="b3 c3"></b><b class="b4 c4"></b><div class="boxcontent"><ul id="menu">
  481. <li>
  482.  
  483. <a class="m5 five" href="#nogo">
  484.  
  485. <b class="h2">Règlement </b><span><center><br />
  486.  
  487. <a href="http://altitudetropicale.forums-actifs.com/reglement-f22/">Réglement</a> <br />
  488.  
  489. <a href="http://altitudetropicale.forums-actifs.com/presentation-des-nouveaux-membres-f9/">Se présenter</a><br />
  490.  
  491.  
  492. </center></span></a></li>
  493.  
  494. <li>
  495.  
  496. <a href="#nogo">
  497. <b class="b1"></b><b class="b2"></b><b class="b3"></b><b class="b4"></b><b class="h2">Les fonctions du site</b><span><center><br />
  498.  
  499. <a href="http://altitudetropicale.forums-actifs.com/fonctions-du-site-f34/insertion-d-une-ou-plusieurs-photos-sur-le-forum-t322.htm">Inserer une photo dans un topic</a><br />
  500.  
  501. <a href="http://altitudetropicale.forums-actifs.com/fonctions-du-site-f34/ajout-d-un-nouvel-hebergeur-d-image-et-possibilite-de-coloriser-les-titres-des-sujets-t753.htm">Uploader plusieurs photos </a><br />
  502.  
  503. <a href="http://altitudetropicale.forums-actifs.com/fonctions-du-site-f34/utilisation-des-boutons-de-l-editeur-de-messages-t908.htm">Utiliser l'éditeur de messages</a><br />
  504.  
  505. <a href="http://altitudetropicale.forums-actifs.com/fonctions-du-site-f34/module-dictionnaire-et-traducteur-integre-au-site-t756.htm">Utiliser le dictionnaire intégré</a><br />
  506.  
  507. <br />
  508. </center>
  509.  
  510.  
  511. </span></a></li><li><a href="#nogo">
  512. <b class="b1"></b><b class="b2"></b><b class="b3"></b><b class="b4"></b><b class="h2">Navigation rapide</b><br /><span><center>
  513.  
  514. <a href="http://altitudetropicale.forums-actifs.com/gallery/index.htm">Galerie</a><br />
  515.  
  516. <a href="http://altitudetropicale.forums-actifs.com/faq.htm">Faq</a><br />
  517.  
  518. <a href="http://altitudetropicale.forums-actifs.com/search.forum">Rechercher</a><br />
  519.  
  520. <a href="http://altitudetropicale.forums-actifs.com/memberlist.forum">Membres</a><br />
  521.  
  522. <a href="http://altitudetropicale.forums-actifs.com/profile.forum?mode=editprofile">Profil</a><br />
  523.  
  524. <a href="http://altitudetropicale.forums-actifs.com/contact.forum">Nous contacter</a></center></span></a></li>
  525.  
  526. <li>
  527. <a href="#nogo"><b class="b1"></b><b class="b2"></b><b class="b3"></b><b class="b4"></b><b class="h2">Le journal</b><br /><span>Projet en cours. </span></a></li>
  528.  
  529. <li>
  530.  
  531. </li></ul></div>
  532.  
  533. <b class="b4 c4"></b><b class="b3 c3"></b><b class="b2 c2"></b><b class="b1 c1"></b>
  534. </div>
  535.  
  536.  
  537.  
  538. </td>
  539.  
  540. </tr>
  541. </tbody>
  542. </table>
  543. </td>
  544. </tr>
  545. </tbody>
  546. </table>
  547. </div>
  548. <div id="accueil3" class="c5">
  549. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  550. <tbody>
  551. <tr>
  552. <td valign="top" width="50%">
  553. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  554. <tbody>
  555. <tr>
  556. <td class="accueil-bloc" valign="top">
  557. <div class="lettrine">L</div>
  558. <br />
  559. e staff<br />
  560. <br />
  561. N'hésitez pas nous rejoindre.<br />
  562. <br />
  563. <table align="center" border="0">
  564. <tbody>
  565. <tr>
  566.  
  567.  
  568.  
  569. <td height="100">
  570. <a href="#" class="infobulle"> <img src="http://i63.servimg.com/u/f63/11/93/85/24/1-6612.jpg" style="width: 55px; height: 89px; opacity: 0.9;" class="gradualfader" />
  571.  
  572. <span>
  573. <table border="0" cellpadding="0" cellspacing="0" height="73" width="150">
  574.  
  575. <tbody>
  576. <tr>
  577. <td valign="top"><div style="color: rgb(247, 246, 242); font-size: 20px; font-variant: normal; font-family: Palatino Linotype; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 1px rgb(0, 0, 0); text-align: center;">Admin</div><div style="border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(51, 255, 51);">Fondateur</div><table align="center" border="0" cellpadding="0" cellspacing="0" width="70%"><tbody><tr><td width="50%"><center><div>
  578.  
  579. <a href="http://altitudetropicale.forums-actifs.com/msg.forum?mode=post&amp;u=1" target="_blank"><img src="http://hitskin.com/themes/13/92/27/i_icon_pm.png" border="0" /></a> </div></center></td><td width="50%"><center><div>
  580.  
  581. <a href="http://altitudetropicale.forums-actifs.com/profile.forum?mode=viewprofile&amp;u=1" target="_blank"><img src="http://hitskin.com/themes/13/92/27/i_icon_profile.png" border="0" /></a>
  582. </div>
  583. </center>
  584. </td>
  585. </tr>
  586. </tbody>
  587. </table>
  588. </td></tr>
  589. </tbody>
  590. </table>
  591. </span>
  592. </a>
  593. </td>
  594.  
  595. <td>
  596. <a href="#" class="infobulle"><img src="http://i63.servimg.com/u/f63/11/93/85/24/12-3510.jpg" style="width: 55px; height: 89px; opacity: 0.9;" class="gradualfader" border="2" /> <span><table border="0" cellpadding="0" cellspacing="0" height="73" width="150"><tbody><tr><td valign="top"><div style="color: rgb(247, 246, 242); font-size: 18px; font-variant: normal; font-family: Palatino Linotype; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 1px rgb(0, 0, 0); text-align: center;">Calandrinia</div><div style="border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(255, 153, 253);">Modératrice</div><table align="center" border="0" cellpadding="0" cellspacing="0" width="70%"><tbody><tr><td width="50%"><center><div><a href="http://altitudetropicale.forums-actifs.com/msg.forum?mode=post&amp;u=12" target="_blank"><img src="http://hitskin.com/themes/13/92/27/i_icon_pm.png" border="0" /></a> </div></center></td><td width="50%"><center><div><a href="http://altitudetropicale.forums-actifs.com/profile.forum?mode=viewprofile&amp;u=12" target="_blank"><img src="http://hitskin.com/themes/13/92/27/i_icon_profile.png" border="0" /></a> </div></center></td></tr></tbody></table></td></tr></tbody></table></span></a>
  597.  
  598. </td>
  599. <td>
  600. <a href="#" class="infobulle"><img src="" style="width: 55px; height: 89px; opacity: 0.6;" class="gradualfader" border="0" /> <span><table border="0" cellpadding="0" cellspacing="0" height="73" width="150"><tbody><tr><td valign="top"><div style="color: rgb(247, 246, 242); font-size: 20px; font-variant: normal; font-family: Palatino Linotype; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 1px rgb(0, 0, 0); text-align: center;">?</div><div style="border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(127, 176, 21);"><justify>???</justify></div><table align="center" border="0" cellpadding="0" cellspacing="0" width="70%"><tbody><tr><td width="50%"><center><div><a href="http://altitudetropicale.forums-actifs.com/msg.forum?mode=post&amp;u=" target="_blank"><img src="http://hitskin.com/themes/13/92/27/i_icon_pm.png" border="0" /></a>
  601. </div>
  602. </center>
  603. </td>
  604. <td width="50%"><center><div>
  605. <a href="http://altitudetropicale.forums-actifs.com/profile.forum?mode=viewprofile&amp;u=50" target="_blank"><img src="http://hitskin.com/themes/13/92/27/i_icon_profile.png" border="0" /></a>
  606. </div>
  607. </center>
  608. </td>
  609. </tr>
  610. </tbody>
  611. </table>
  612. </td>
  613. </tr>
  614. </tbody>
  615. </table>
  616. </span>
  617. </a>
  618. </td>
  619. <td> <a href="#" class="infobulle"><img src="http://i33.servimg.com/u/f33/11/93/85/24/sans_185.png" style="width: 55px; height: 89px; opacity: 0.6;" class="gradualfader" border="0" />
  620. <span>
  621. <table border="0" cellpadding="0" cellspacing="0" height="73" width="150">
  622. <tbody>
  623. <tr>
  624. <td valign="top"><div style="color: rgb(247, 246, 242); font-size: 20px; font-variant: normal; font-family: Palatino Linotype; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 1px rgb(0, 0, 0); text-align: center;">Daniele43
  625. </div>
  626. <div style="border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(112, 22, 73);">Animatrice</div>
  627. <table align="center" border="0" cellpadding="0" cellspacing="0" width="70%">
  628. <tbody>
  629. <tr>
  630. <td width="50%">
  631. <center>
  632. <div>
  633. <a target="_blank" href="http://altitudetropicale.forums-actifs.com/privmsg?mode=post&u=232"> <img src="http://hitskin.com/themes/13/92/27/i_icon_pm.png" border="0" />
  634. </a>
  635. </div>
  636. </center>
  637. </td>
  638. <td width="50%">
  639. <center><div> <a target="_blank" href="http://altitudetropicale.forums-actifs.com/u232"> <img src="http://hitskin.com/themes/13/92/27/i_icon_profile.png" border="0" /></a>
  640. </div>
  641. </center>
  642. </td>
  643.  
  644.  
  645.  
  646.  
  647. </tr>
  648. </tbody>
  649. </table>
  650. </td>
  651. </tr>
  652. </tbody>
  653. </table>
  654. </td>
  655. </tr>
  656. </tbody>
  657. </table>
  658.  
  659. <br />
  660. <a class="infobulle" href="#"><img border="2" class="gradualfader" style="width: 55px; height: 89px; opacity: 0.9;" src="http://altitudetropicale.forums-actifs.com/users/2912/61/21/12/avatars/gallery/alpini10.jpg" /> <span><table height="73" width="150" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td valign="top"><div style="color: rgb(247, 246, 242); font-size: 18px; font-variant: normal; font-family: Palatino Linotype; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 1px rgb(0, 0, 0); text-align: center;">Zinna</div><div style="border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(255, 153, 253);">Rédactrice</div><table width="70%" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td width="50%"><center><div> <a target="_blank" href="http://altitudetropicale.forums-actifs.com/privmsg?mode=post&u=258"> <img border="0" src="http://hitskin.com/themes/13/92/27/i_icon_pm.png" /></a> </div></center></td><td width="50%"><center><div><a target="_blank" href="http://altitudetropicale.forums-actifs.com/u258"><img border="0" src="http://hitskin.com/themes/13/92/27/i_icon_profile.png" /></a> </div></center></td></tr></tbody></table></td></tr></tbody></table></span></a>
  661.  
  662.  
  663. <a class="infobulle" href="#"><img border="2" class="gradualfader" style="width: 55px; height: 89px; opacity: 0.9;" src="http://altitudetropicale.forums-actifs.com/users/2912/61/21/12/avatars/204-26.jpg" /> <span><table height="73" width="150" cellspacing="0" cellpadding="0" border="0"><tbody><tr><td valign="top"><div style="color: rgb(247, 246, 242); font-size: 18px; font-variant: normal; font-family: Palatino Linotype; text-transform: uppercase; letter-spacing: 2px; text-shadow: 1px 1px 1px rgb(0, 0, 0); text-align: center;">Tournesol</div><div style="border-top: 1px dashed rgb(185, 180, 160); text-align: center; letter-spacing: 3px; text-transform: uppercase; color: rgb(255, 153, 253);">Rédacteur</div><table width="70%" cellspacing="0" cellpadding="0" border="0" align="center"><tbody><tr><td width="50%"><center><div><a target="_blank" href="http://altitudetropicale.forums-actifs.com/privmsg?mode=post&u=204"><img border="0" src="http://hitskin.com/themes/13/92/27/i_icon_pm.png" /></a> </div></center></td><td width="50%"><center><div><a target="_blank" href="http://altitudetropicale.forums-actifs.com/u204"><img border="0" src="http://hitskin.com/themes/13/92/27/i_icon_profile.png" /></a> </div></center></td></tr></tbody></table></td></tr></tbody></table></span></a>
  664.  
  665.  
  666.  
  667. </td>
  668. </tr>
  669. <tr>
  670. <td class="accueil-bloc" valign="top"><a href="http://altitudetropicale.forums-actifs.com/timur-1-aide-aux-membres-h13.htm"><img src="http://i33.servimg.com/u/f33/11/93/85/24/timur_19.png" alt="Fasci pour vous servir **" /></a><br />
  671. <br />
  672. Besoin d'aide!!! Pas de problème, Fasci est disponible 24 heures sur 24 pour vous aider à naviguer sur le forum.<br /></td>
  673. </tr>
  674. <tr>
  675. <td class="accueil-bloc" valign="top" width="50%">
  676. <div class="lettrine">P</div>
  677. <br />
  678. artenaires et blogs des membres du forum<br />
  679. <br />
  680. <style type="text/css">
  681. /* Scroller Box */
  682. #scroller_container {
  683. width: 350px;
  684. height: 50px;
  685. overflow: hidden;
  686. }
  687. /* Scoller Box */
  688.  
  689. /* CSS Hack Safari */
  690. #dummy {;# }
  691.  
  692. #scroller_container {
  693. overflow: auto;
  694. }
  695.  
  696. </style>
  697.  
  698. <script type="text/javascript" src="http://s3.archive-host.com/membres/up/1696114791/java/jscroller2-161.js"></script>
  699. <div id="scroller_container">
  700. <div class="jscroller2_left jscroller2_speed-40 jscroller2_mousemove" style="font-size:14px; line-height:50px; white-space:nowrap; margin: 0;">
  701.  
  702.  
  703.  
  704. <a href="http://foye.e-monsite.com/accueil.html"><img class="c13" src="http://i63.servimg.com/u/f63/11/93/85/24/83197910.gif" alt=" Entre les bananiers" /></a>
  705.  
  706. <a href="http://www.exometeofraiture.net/"><img class="c13" src="http://i63.servimg.com/u/f63/11/93/85/24/04005210.gif" alt=" Exometeofraiture" /></a>
  707.  
  708. <a href="http://lesamisdabord.un concurrent.fr/index.php" target="_blank"><img class="c13" src="http://i63.servimg.com/u/f63/11/93/85/24/10441510.gif" /></a>
  709.  
  710. <a href="http://www.atelier-forum.com/forum.htm" target="_blank"><img class="c13" src="http://i63.servimg.com/u/f63/11/93/85/24/81162210.gif" /></a>
  711.  
  712. <a href="http://www.xixi-pub.com" target="_blank"><img class="c13" src="http://i63.servimg.com/u/f63/11/93/85/24/56048410.gif" /></a>
  713.  
  714. <a href="http://ww.alderia.biz" target="_blank"><img src="http://i63.servimg.com/u/f63/11/93/85/24/04525110.gif" /></a>
  715.  
  716. <a href="http://digs.forumactif.com/forum" target="_blank"><img src="http://i63.servimg.com/u/f63/11/93/85/24/10843510.gif" /></a>
  717.  
  718. </div>
  719. </div>
  720. <br />
  721. <br />
  722. Si vous souhaitez voir apparaitre votre banniére, n'hésitez pas à en faire la demande dans le forum intitulé <a href="http://altitudetropicale.forums-actifs.com/partenariat-f53/" target="_self"> <span class="c14">partenariat</span></a>.<br /></td>
  723. </tr>
  724. </tbody>
  725. </table>
  726. </td>
  727. <td class="accueil-bloc" valign="top" width="50%">
  728. <div class="lettrine">R</div>
  729. <br />
  730. ecrutement<br />
  731. <br />
  732. Vous aimez Altitude tropicale et souhaitez vous impliquer davantage ? Vous êtes <strong>motivé et actif</strong>? Déposez votre candidature dans les sujets de recherche et peut-être serez-vous choisis pour faire partie du staff !.<br />
  733. <br />
  734. <div class="lettrine">F</div>
  735. <br />
  736. ormulaire à remplir pour proposer sa candidature.<br />
  737. <br />
  738. <a href="http://altitudetropicale.forums-actifs.com/candidatures-f57/" target="_self"> <span class="c14">Veuillez cliquer ici</span></a><br />
  739. <br />
  740. <table>
  741. <tbody>
  742. <tr>
  743. <td width="20px"></td>
  744. <td width="200px">
  745. <div class="c4"><strong class="c16"><span class="c15">Les places à prendre :</span></strong><br />
  746. <br />
  747. <a href="#" onclick="document.getElementById('hahaha').innerHTML='Recrutement ouvert';return false;"><span class="c17">Modérateurs</span></a><br />
  748. <a href="#" onclick="document.getElementById('hahaha').innerHTML='Recrutement ouvert';return false;"><span class="c17">Rédacteurs fiches de plantes</span></a><br />
  749. <a href="#" onclick="document.getElementById('hahaha').innerHTML='Recrutement ouvert';return false;"><span class="c17">Rédacteurs articles</span></a><br />
  750. <a href="#" onclick="document.getElementById('hahaha').innerHTML='Recrutement ouvert';return false;"><span class="c17">Rédacteurs du journal</span></a><br />
  751. <br />
  752. Cliquez sur le poste qui vous interresse pour connaitre la disponibilité des postes</div>
  753. </td>
  754. <td width="20px"></td>
  755. <td valign="center" width="300px">
  756. <div class="c4"><strong>Statut du recrutement :</strong></div>
  757. <div id="hahaha" class="cadre1"><br /></div>
  758. </td>
  759. <td width="10px"></td>
  760. </tr>
  761. <tr>
  762. <td></td>
  763. </tr>
  764. </tbody>
  765. </table>
  766. </td>
  767. </tr>
  768. </tbody>
  769. </table>
  770. </div>
  771. <div id="accueil4" class="c5">
  772. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  773. <tbody>
  774. <tr>
  775. <td class="accueil-bloc" valign="top" width="50%"><a class="imginfo"><font color="#7b9c40"><img style="opacity: 0.8;" src="http://i33.servimg.com/u/f33/11/93/85/24/sans_t11.png" class="gradualfader" /></font><span><table border="0" cellpadding="1" cellspacing="1" width="155">
  776. <tbody>
  777. <tr>
  778. <td style="text-align: center;"><font size="1"><strong>•</strong></font><font size="1"> Le forum évolu tout doucement. Si vous constatez<br /> un disfonctionnement ou si vous souhaitez soumettre une idée ,<br /> n'hésitez pas à poster dans <a href="http://altitudetropicale.forums-actifs.com/vos-suggestions-pour-ameliorez-le-site-f10/"><font color="#7b9c40">ce topic</font></a>.<br /><img src="http://i42.tinypic.com/15qc4yf.png" /><br /></font><font size="1"><strong>•</strong></font><font size="1"> Mise en place d'un pense bête sur les profils des membres. <br /> N'hésitez pas à donner votre avis sur <a href="http://altitudetropicale.forums-actifs.com/fonctions-du-site-f34/pense-bete-ajout-d-une-nouvelle-fonctionnalite-t938.htm#5004"><font color="#7b9c40">ce topic</font></a>.<br /><img src="http://i42.tinypic.com/15qc4yf.png" />
  779. <br />
  780. </font>
  781. <br />
  782.  
  783.  
  784. </td>
  785. </tr>
  786. <tr align="center">
  787. <td></td>
  788.  
  789.  
  790. </tr>
  791. </tbody>
  792. </table>
  793. </td>
  794. <td class="accueil-bloc" valign="top" width="50%">
  795. <div class="lettrine">L</div>
  796. <br />
  797. e journal du forum<br />
  798. <br />
  799. <a href="Alti news
  800. " onclick="window.open('http://altitudetest.forumactif.com/essai-h14.htm','_blank','toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width=400, height=600, left=200, top=200'); return(false)">Journal</a><br />
  801. <br />
  802. Projet en cours<br /></td>
  803. </tr>
  804. <tr>
  805. <td class="accueil-bloc" valign="top" width="50%">
  806. <div class="lettrine">L</div><br/>a dermière fiche mise ligne.
  807. <br /><br/>
  808.  
  809.  
  810. <script type="text/javascript" src="http://www.google.fr/reader/ui/publisher-fr.js"></script> <script type="text/javascript" src="http://www.google.fr/reader/public/javascript/user/06960629220180913602/state/com.google/broadcast?n=5&amp;callback=GRC_p%28%7Bc%3A%22black%22%2Ct%3A%22La%20plante%20%5CxE0%20l%5C%27affiche%22%2Cs%3A%22false%22%2Cn%3A%22true%22%2Cb%3A%22false%22%7D%29%3Bnew%20GRC">
  811. </script><br />
  812. <br /></td>
  813. <td class="accueil-bloc" valign="top" width="50%">
  814. <div class="lettrine">T</div>
  815. <br />
  816. oute copie partielle ou complète de ce forum est strictement interdite.Ce forum et son contexte est la propriété de ses administrateurs.<br />
  817. <br />
  818. Veuillez respecter ce travail et ne rien copier sans autorisations préalables.
  819. <table>
  820. <tbody>
  821. <tr>
  822. <td><img class="opacity" src="http://i33.servimg.com/u/f33/11/93/85/24/sans_t10.png" alt="" /></td>
  823. <td><span class="c20">Forum optimisé pour <strong>Mozilla Firefox .</strong></span></td>
  824. </tr>
  825. </tbody>
  826. </table>
  827. <br />
  828. <br />
  829. <br />
  830. <div class="last-posted"></div>
  831. </td>
  832. </tr>
  833. </tbody>
  834. </table>
  835. </div>
  836. <div id="accueil5" class="c5">
  837. <table border="0" cellpadding="0" cellspacing="3" width="100%">
  838. <tbody>
  839. <tr>
  840. <td class="accueil-bloc" valign="top"><br />
  841. <div class="lettrine">L</div>
  842. <br />
  843. a chatbox est régie par les mêmes règles de convivialité qui dirigent le forum. En toute occasion, merci de rester poli, courtois et respectueux envers les autres membres.</td>
  844. </tr>
  845. <tr>
  846. <td class="accueil-bloc" valign="top">Chatbox<br />
  847. <br />
  848. <div class="c22" id="chatbox_top">
  849.  
  850. <iframe marginheight="0" marginwidth="0" id="frame_chatbox" src="/chatbox/index.forum?page=front amp;" scrolling="no" frameborder="0" height="100%" width="100%">
  851.  
  852.  
  853. </iframe></div>
  854. </td>
  855. </tr>
  856. </tbody>
  857. </table>
  858. </div>
  859. </div>
  860. </div>
  861. </div>
  862. </td>
  863. </tr>
  864. </tbody>
  865. </table>
  866.  
  867. <!-- fin tableau a onglet -->
  868.  
  869.  
  870.  
  871.  
  872.  
  873.  
  874.  
  875.  
  876.  
  877. </div></div></div>
  878.  
  879.  
  880. <!-- fin container panneau d'administration -->
  881.  
  882.  
  883. <meta name="google-site-verification" content="QIt8QdIQrncat0F9agLr9i4MyUk52K2siVNcNtm1V08" />
  884.  
  885. <script type="text/javascript">//<![CDATA[
  886. ss.STEPS = 40;
  887. //]]>
  888. </script>
  889.  
  890. <!-- ======================================================================================== -->
  891. <!-- Alexandria IS DISTRIBUTED "AS IS". NO WARRANTY OF ANY KIND IS EXPRESSED OR IMPLIED. -->
  892. <!-- YOU USE AT YOUR OWN RISK. THE AUTHOR WILL NOT BE LIABLE FOR DATA LOSS, DAMAGES, LOSS OF -->
  893. <!-- PROFITS OR ANY OTHER KIND OF LOSS WHILE USING OR MISUSING THIS SOFTWARE. -->
  894. <!-- ======================================================================================== -->
  895.  
  896.  
  897. <!-- Alexandria's parameters for Webmasters -->
  898. <!-- Download and place on your site the "alexandria.wm.js" to update your special terms. -->
  899. <!-- Customization is only possible for registered customers. -->
  900. <!-- **************************************************************************************** -->
  901. <script type="text/javascript" language="JavaScript1.2" src="http://www.memodata.com/alexandria/alexandria.wm.fr.js"></script>
  902.  
  903. <!-- **************************************************************************************** -->
  904. <!-- Alexandria's engine -->
  905. <!-- Copy the lines below in each page you want Alexandria's functionalities to be available. -->
  906. <!-- **************************************************************************************** -->
  907. <script type="text/javascript" language="JavaScript1.2" src="http://www.sensagent.com/alexandria/scripts/alexandria.main.js"></script>
  908. <link rel="StyleSheet" href="http://www.sensagent.com/alexandria/css/alexandria.window.css" type="text/css" />
  909.  
  910. <!-- ======================================================================================== -->
  911.  
  912. <!--Rajout typographie-->
  913. <link href="http://fonts.googleapis.com/css?family=Playfair+Display&v1" rel="stylesheet" type="text/css" />
  914. <!--Fin rajout typographie-->
  915.  
  916.  
  917. <!-- BEGIN hitskin_preview -->
  918. <style type="text/css">
  919. #hitskin_preview {
  920. margin: 0; padding: 0;
  921. position: fixed;
  922. top: 0; left: 0;
  923. width: 100%;
  924. height: 65px;
  925. background: url('http://illiweb.com/fa/hitskin/hitskin_bar.png') repeat-x left -15px;
  926. color: #fff;
  927. }
  928. * html #hitskin_preview { /* Fix for IE6 since it doesn't implement fixed positionning */
  929. position: absolute;
  930. top:expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop : document.body.scrollTop);
  931. z-index: 2;
  932. background: transparent url('http://illiweb.com/fa/hitskin/hitskin_bar-ie6.gif') repeat-x left -15px;
  933. }
  934. * html { /* Gunlaug's Speed fix for the above positionning fix. Sorry for the fix for the fix */
  935. background: #fff url(foo) fixed;
  936. }
  937. #hitskin_preview h1 {
  938. float: left;
  939. margin: 3px 0 0 0;
  940. padding: 0 0 0 10px;
  941. font: italic normal 25px Arial,sans serif;
  942. color: #fff;
  943. }
  944. #hitskin_preview h1 img {
  945. vertical-align: middle;
  946. }
  947. #hitskin_preview em {
  948. color: #7CBA2C;
  949. font-weight: bold;
  950. }
  951. #hitskin_preview a {
  952. color: #fff;
  953. }
  954. #hitskin_preview a:hover {
  955. text-decoration: underline;
  956. }
  957.  
  958. #hitskin_preview .content {
  959. text-align: right;
  960. }
  961. #hitskin_preview .content p {
  962. margin: 4px 1em 0px 1em;
  963. font-size: 13px;
  964. line-height: 1.8em;
  965. color: #fff;
  966. font-weight: bold;
  967. }
  968. #hitskin_preview .content p span {
  969. font-weight: normal;
  970. font-size: 0.8em;
  971. }
  972. body {
  973. margin-top: 40px !important;
  974. }
  975. {hitskin_preview.HITSKIN_RTL_CSS}
  976. </style>
  977. <!-- END hitskin_preview -->
  978.  
  979.  
  980.  
  981.  
  982.  
  983. <!-- Début du cookie pop up premier message -->
  984.  
  985.  
  986.  
  987. <!-- Début pop up premier message -->
  988.  
  989. <div id="pop-up"><div><br /><br />Bonjour et bienvenue {USER&amp;#8288;NAME},<br />Merci d'avoir choisi de vous joindre à notre belle famille composée de passionnés de jardinage.<br /><br />Pour le bon déroulement du forum et pour améliorer l'esprit de convivialité, veuillez vous présenter sur le forum intitulé présentation des nouveaux membres avant de répondre à ce topic.<br /><br />Si vous y êtes déjà, ne vous formalisez pas sur l'apparition de ce popup ; il est automatique ; il vous suffit de le fermer pour poursuivre votre présentation.<br /><br />En espérant que vous trouverez toute l'aide et les renseignements que vous désirez.<br /><br />Botaniquement vôtre<br /><br />l'équipe administrative d'Altitude tropicale<br />
  990. Nota : Pour une esthétique et une navigation optimales nous vous conseillons d'utiliser les navigateurs <a href="http://www.mozilla-europe.org/fr/firefox/"><font color="ffffff">Mozilla</font>Firefox</a>, <a href="http://www.google.ch/chrome?hl=fr"><font color="ffffff">Google Chrome</font></a> ou <a href="http://www.apple.com/fr/safari/"><font color="ffffff">Safari</font></a>.<br />
  991.  
  992. </div><div id="close">Fermer</div></div>
  993.  
  994.  
  995. <script type="text/javascript">
  996. window.onload=function(){enableTooltips("content")};
  997. </script>
  998.  
  999. <!-- Fin popup premier message -->
  1000.  
  1001. <!-- Fin cookie bandeau premier message -->
  1002.  
  1003. <script type="text/javascript">
  1004. //<!--
  1005. function change_onglet(name)
  1006. {
  1007. document.getElementById('onglet_'+anc_onglet).className = 'onglet_0 onglet';
  1008. document.getElementById('onglet_'+name).className = 'onglet_1 onglet';
  1009. document.getElementById('contenu_onglet_'+anc_onglet).style.display = 'none';
  1010. document.getElementById('contenu_onglet_'+name).style.display = 'block';
  1011. anc_onglet = name;
  1012. }
  1013. //-->
  1014. </script>
  1015. <style type="text/css">
  1016. .onglet
  1017. { display:inline-block;
  1018. margin-left:3px;
  1019. margin-right:3px;
  1020. padding:3px;
  1021. border:2px inset black;
  1022. padding-right: 10px;
  1023. padding-left: 10px;
  1024. font-weight: bold;
  1025. -moz-border-radius-topright: 20px;
  1026. -moz-border-radius-topleft: 20px;
  1027. -webkit-border-top-left-radius: 20px;
  1028. -webkit-border-top-right-radius: 20px;
  1029. font-size: 12px;
  1030. cursor:pointer;
  1031. }
  1032.  
  1033. .onglet_0
  1034. { background: transparent;
  1035. filter:alpha(opacity=65);
  1036. opacity:0.65;
  1037. background-color: #2e552e;
  1038. border-bottom:1px inset black;
  1039. }
  1040.  
  1041. .onglet_1
  1042. { color:#1D3C40;
  1043. background-color: #bbbbbb;
  1044. border-bottom:0px inset black;
  1045. padding-bottom:4px;
  1046. }
  1047.  
  1048. .contenu_onglet
  1049. { background: transparent;
  1050. filter:alpha(opacity=95);
  1051. opacity:0.95;
  1052. background-image:url(http://i13.servimg.com/u/f13/11/93/85/24/image_10.png);
  1053. background-position:center bottom;
  1054. background-repeat:repeat-x;
  1055. border:1px outset black;
  1056. margin-top:-1px;
  1057. padding:5px;
  1058. display:none;
  1059. }
  1060.  
  1061. img.contenu_onglet { float : left ; margin-right : 10px}
  1062.  
  1063. </style>
  1064.  
  1065. <!--Début Pense bête-->
  1066.  
  1067. <script type="text/javascript" src="http://sd-2.archive-host.com/membres/up/22406661265772126/cssjavascript1pensebete.js"></script>
  1068. <script type="text/javascript" src="http://sd-2.archive-host.com/membres/up/22406661265772126/cssjavascript2pensebete.js"></script>
  1069.  
  1070. <!-- fin pense bête -->
  1071.  
  1072. </head>
  1073.  
  1074. <!-- debut bouton haut bas-->
  1075. <body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
  1076. <div class="hautbas"><a href="#top"><img src="http://img10.hostingpics.net/pics/4181657.png" alt="Revenir en haut" /></a> <a href="#bottom"><img src="http://img10.hostingpics.net/pics/510262arrow_down.png" alt="Aller en bas" /></a></div><!-- FIN BOUTON HAUT BAS-->
  1077.  
  1078. <!-- début infobar -->
  1079. <div id="infobar">Pour le bon déroulement du forum et pour améliorer l'esprit de convivialité, veuillez vous présenter afin que la communauté puisse vous connaitre. Le <br />passage par cette section est obligatoire avant de pouvoir poster sur le forum.- <br />Pour une esthétique et une navigation optimales nous vous conseillons d'utiliser les navigateurs suivants : Mozilla Firefox, Google Chrome ou Safari. Activation du Html dans votre profil recommandée. <br />Bonne navigation! <img src="http://i63.servimg.com/u/f63/11/93/85/24/sans_t17.gif" onclick="this.parentNode.style.display='none';" /></div>
  1080.  
  1081. <!-- Fin infobar -->
  1082.  
  1083.  
  1084.  
  1085.  
  1086. <!-- BEGIN hitskin_preview -->
  1087. <div id="hitskin_preview" style="display: block;">
  1088. <h1><img src="http://illiweb.com/fa/hitskin/hitskin_logo.png" alt="" /> Hit<em>skin</em>.com</h1>
  1089. <div class="content">
  1090. <p>
  1091. {hitskin_preview.L_THEME_SITE_PREVIEW}
  1092. <br />
  1093. <span>{hitskin_preview.U_INSTALL_THEME}<a href="http://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
  1094. </p>
  1095. </div>
  1096. </div>
  1097. <!-- END hitskin_preview -->
  1098.  
  1099. <!-- BEGIN switch_login_popup -->
  1100. <div id="login_popup">
  1101. <table class="forumline" width="{LOGIN_POPUP_WIDTH}" height="{LOGIN_POPUP_HEIGHT}" border="0" cellspacing="1" cellpadding="0">
  1102. <tr height="25">
  1103. <td class="catLeft">
  1104. <span class="genmed module-title">{SITENAME}</span>
  1105. </td>
  1106. </tr>
  1107. <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
  1108. <td class="row1" align="left" valign="top">
  1109. <div id="login_popup_buttons">
  1110. <form action="{S_LOGIN_ACTION}" method="get">
  1111. <input type="submit" class="mainoption" value="{L_LOGIN}" />
  1112. <input type="button" class="mainoption" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
  1113. <input id="login_popup_close" type="button" class="button" value="{L_DONT_DISPLAY_AGAIN}" />
  1114. </form>
  1115. </div>
  1116. <span class="genmed">{LOGIN_POPUP_MSG}</span>
  1117. </td>
  1118. </tr>
  1119. </table>
  1120. </div>
  1121. <!-- END switch_login_popup -->
  1122.  
  1123.  
  1124. {JAVASCRIPT}
  1125. <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="10" border="0" align="center">
  1126. <tr>
  1127. <td class="bodyline"><a name="top"></a>
  1128. <table width="100%" cellspacing="0" cellpadding="0" border="0">
  1129. <tr>
  1130. <!-- BEGIN switch_logo_left -->
  1131. <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
  1132. <td align="center" width="100%" valign="middle">
  1133. <div class="maintitle">{MAIN_SITENAME}</div>
  1134. <br />
  1135. <span class="gen">{SITE_DESCRIPTION}<br /> </span>
  1136.  
  1137.  
  1138.  
  1139. </td>
  1140. <!-- END switch_logo_left -->
  1141.  
  1142. <!-- BEGIN switch_logo_center -->
  1143. <td align="center" width="100%" valign="middle">
  1144. <a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a><br />
  1145. <div class="maintitle">{MAIN_SITENAME}</div>
  1146. <br />
  1147. <span class="gen">{SITE_DESCRIPTION}</span>
  1148.  
  1149. <br /><br />
  1150.  
  1151.  
  1152. </td>
  1153. <!-- END switch_logo_center -->
  1154.  
  1155.  
  1156. <!-- BEGIN switch_logo_right -->
  1157. <td align="center" width="100%" valign="middle">
  1158. <div class="maintitle">{MAIN_SITENAME}</div>
  1159. <br />
  1160. <span class="gen">{SITE_DESCRIPTION}<br /> </span>
  1161. </td>
  1162. <td>
  1163. <a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a>
  1164. </td>
  1165. <!-- END switch_logo_right -->
  1166. </tr>
  1167. </table>
  1168.  
  1169.  
  1170. <table cellspacing="0" cellpadding="0" border="0" align="center">
  1171. <tr> <td><div id="selecteur"></div></td></tr></table>
  1172.  
  1173.  
  1174. <table cellspacing="0" cellpadding="0" border="0" align="{MENU_POSITION}">
  1175. <tr>
  1176. <td align="{MENU_POSITION}"{MENU_NOWRAP} class="navig"><span id="true_bar"> <div align="center">{GENERATED_NAV_BAR}</div> </span><script type="text/javascript">
  1177. if(document.getElementById('i_icon_mini_logout'))
  1178. {
  1179. var message = document.createElement("li");
  1180. message.innerHTML='<a href="/msg.forum?folder=inbox">Messagerie</a>';
  1181. document.getElementById('yeah').appendChild(message);
  1182. var logout= document.createElement("li");
  1183. logout.innerHTML='<a href="/login.forum?logout=true">Déconnexion</a>';
  1184. document.getElementById('yeah').appendChild(logout);
  1185. }
  1186. else
  1187. {
  1188. var register= document.createElement("li");
  1189. register.innerHTML='<a href="/profile.forum?mode=register">S\'inscrire</a>';
  1190. document.getElementById('yeah').appendChild(register);
  1191. var login = document.createElement("li");
  1192. login.innerHTML='<a href="/login.forum?connexion">Se connecter</a>';
  1193. document.getElementById('yeah').appendChild(login);
  1194. }
  1195. </script></td>
  1196. </tr>
  1197. </table>
  1198.  
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208. <div style="clear: both;"></div>
  1209.  
  1210. <!-- BEGIN switch_ticker -->
  1211. <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
  1212. <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
  1213. <tr>
  1214. <td {CLASS_TABLE_TYPE} align="left" class="row1">
  1215. <div id="fa_ticker_container">
  1216. <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
  1217. <div class="fa_ticker_content">
  1218. <!-- BEGIN ticker_row -->
  1219. <div>{switch_ticker.ticker_row.ELEMENT}</div>
  1220. <!-- END ticker_row -->
  1221. </div>
  1222. </div>
  1223. </div>
  1224. </td>
  1225. </tr>
  1226. </table>
  1227. </div>
  1228. <!-- END switch_ticker -->
  1229.  
  1230.  
  1231.  
  1232. <div id="page-body">
  1233. <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
  1234. <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
  1235. <tbody>
  1236. <tr>
  1237. <td valign="top">
  1238. <table cellpadding="0" cellspacing="0" width="auto"><tr><td class="widgetleft" width="{C1SIZE}"><span class="mainwidgetleft">
  1239.  
  1240.  
  1241. <div id="{ID_LEFT}">
  1242. <!-- BEGIN giefmod_index1 -->
  1243. {giefmod_index1.MODVAR}
  1244. <!-- BEGIN saut -->
  1245. <div style="height:{SPACE_ROW}px"></div>
  1246. <!-- END saut -->
  1247. <!-- END giefmod_index1 -->
  1248. </div>
  1249.  
  1250. </span></td></tr></table>
  1251.  
  1252. </td>
  1253.  
  1254.  
  1255.  
  1256. <td valign="top" width="100%">
  1257. <!-- BEGIN html_validation -->
  1258. </td>
  1259. </tr>
  1260. </tbody>
  1261. </table>
  1262. </div>
  1263. </div>
  1264. </td>
  1265. </tr>
  1266. </table>
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272.  
  1273. </body>
  1274. </html>
  1275.  
  1276.  
  1277.  
  1278.  
  1279. <!-- END html_validation -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement