{"id":681,"date":"2020-10-23T13:18:07","date_gmt":"2020-10-23T13:18:07","guid":{"rendered":"https:\/\/onp.nougat.work\/the-award\/"},"modified":"2021-01-12T14:54:50","modified_gmt":"2021-01-12T14:54:50","slug":"the-award","status":"publish","type":"page","link":"https:\/\/onp.nougat.work\/fr\/the-award\/","title":{"rendered":"The Award"},"content":{"rendered":"<p><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container fusion-parallax-none fullPageHeaderFixed nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-image: url(&quot;https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/backAward.jpg&quot;);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#e2e2e2;border-style:solid;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fullPageHeaderFixed\">  \n<div id=\"canvas\">\n<\/div>\n<\/div>\n<script id=\"vertexShader\" type=\"x-shader\/x-vertex\">\n  \/\/\n  \/\/ GLSL textureless classic 3D noise \"cnoise\",\n  \/\/ with an RSL-style periodic variant \"pnoise\".\n  \/\/ Author:  Stefan Gustavson (stefan.gustavson@liu.se)\n  \/\/ Version: 2011-10-11\n  \/\/\n  \/\/ Many thanks to Ian McEwan of Ashima Arts for the\n  \/\/ ideas for permutation and gradient selection.\n  \/\/\n  \/\/ Copyright (c) 2011 Stefan Gustavson. All rights reserved.\n  \/\/ Distributed under the MIT license. See LICENSE file.\n  \/\/ https:\/\/github.com\/ashima\/webgl-noise\n  \/\/\n  \n  vec3 mod289(vec3 x)\n  {\n    return x - floor(x * (1.0 \/ 289.0)) * 289.0;\n  }\n  \n  vec4 mod289(vec4 x)\n  {\n    return x - floor(x * (1.0 \/ 289.0)) * 289.0;\n  }\n  \n  vec4 permute(vec4 x)\n  {\n    return mod289(((x*34.0)+1.0)*x);\n  }\n  \n  vec4 taylorInvSqrt(vec4 r)\n  {\n    return 1.79284291400159 - 0.85373472095314 * r;\n  }\n  \n  vec3 fade(vec3 t) {\n    return t*t*t*(t*(t*6.0-15.0)+10.0);\n  }\n  \n  \/\/ Classic Perlin noise\n  float cnoise(vec3 P)\n  {\n    vec3 Pi0 = floor(P); \/\/ Integer part for indexing\n    vec3 Pi1 = Pi0 + vec3(1.0); \/\/ Integer part + 1\n    Pi0 = mod289(Pi0);\n    Pi1 = mod289(Pi1);\n    vec3 Pf0 = fract(P); \/\/ Fractional part for interpolation\n    vec3 Pf1 = Pf0 - vec3(1.0); \/\/ Fractional part - 1.0\n    vec4 ix = vec4(Pi0.x, Pi1.x, Pi0.x, Pi1.x);\n    vec4 iy = vec4(Pi0.yy, Pi1.yy);\n    vec4 iz0 = Pi0.zzzz;\n    vec4 iz1 = Pi1.zzzz;\n  \n    vec4 ixy = permute(permute(ix) + iy);\n    vec4 ixy0 = permute(ixy + iz0);\n    vec4 ixy1 = permute(ixy + iz1);\n  \n    vec4 gx0 = ixy0 * (1.0 \/ 7.0);\n    vec4 gy0 = fract(floor(gx0) * (1.0 \/ 7.0)) - 0.5;\n    gx0 = fract(gx0);\n    vec4 gz0 = vec4(0.5) - abs(gx0) - abs(gy0);\n    vec4 sz0 = step(gz0, vec4(0.0));\n    gx0 -= sz0 * (step(0.0, gx0) - 0.5);\n    gy0 -= sz0 * (step(0.0, gy0) - 0.5);\n  \n    vec4 gx1 = ixy1 * (1.0 \/ 7.0);\n    vec4 gy1 = fract(floor(gx1) * (1.0 \/ 7.0)) - 0.5;\n    gx1 = fract(gx1);\n    vec4 gz1 = vec4(0.5) - abs(gx1) - abs(gy1);\n    vec4 sz1 = step(gz1, vec4(0.0));\n    gx1 -= sz1 * (step(0.0, gx1) - 0.5);\n    gy1 -= sz1 * (step(0.0, gy1) - 0.5);\n  \n    vec3 g000 = vec3(gx0.x,gy0.x,gz0.x);\n    vec3 g100 = vec3(gx0.y,gy0.y,gz0.y);\n    vec3 g010 = vec3(gx0.z,gy0.z,gz0.z);\n    vec3 g110 = vec3(gx0.w,gy0.w,gz0.w);\n    vec3 g001 = vec3(gx1.x,gy1.x,gz1.x);\n    vec3 g101 = vec3(gx1.y,gy1.y,gz1.y);\n    vec3 g011 = vec3(gx1.z,gy1.z,gz1.z);\n    vec3 g111 = vec3(gx1.w,gy1.w,gz1.w);\n  \n    vec4 norm0 = taylorInvSqrt(vec4(dot(g000, g000), dot(g010, g010), dot(g100, g100), dot(g110, g110)));\n    g000 *= norm0.x;\n    g010 *= norm0.y;\n    g100 *= norm0.z;\n    g110 *= norm0.w;\n    vec4 norm1 = taylorInvSqrt(vec4(dot(g001, g001), dot(g011, g011), dot(g101, g101), dot(g111, g111)));\n    g001 *= norm1.x;\n    g011 *= norm1.y;\n    g101 *= norm1.z;\n    g111 *= norm1.w;\n  \n    float n000 = dot(g000, Pf0);\n    float n100 = dot(g100, vec3(Pf1.x, Pf0.yz));\n    float n010 = dot(g010, vec3(Pf0.x, Pf1.y, Pf0.z));\n    float n110 = dot(g110, vec3(Pf1.xy, Pf0.z));\n    float n001 = dot(g001, vec3(Pf0.xy, Pf1.z));\n    float n101 = dot(g101, vec3(Pf1.x, Pf0.y, Pf1.z));\n    float n011 = dot(g011, vec3(Pf0.x, Pf1.yz));\n    float n111 = dot(g111, Pf1);\n  \n    vec3 fade_xyz = fade(Pf0);\n    vec4 n_z = mix(vec4(n000, n100, n010, n110), vec4(n001, n101, n011, n111), fade_xyz.z);\n    vec2 n_yz = mix(n_z.xy, n_z.zw, fade_xyz.y);\n    float n_xyz = mix(n_yz.x, n_yz.y, fade_xyz.x);\n    return 2.2 * n_xyz;\n  }\n  \n  \/\/ Classic Perlin noise, periodic variant\n  float pnoise(vec3 P, vec3 rep)\n  {\n    vec3 Pi0 = mod(floor(P), rep); \/\/ Integer part, modulo period\n    vec3 Pi1 = mod(Pi0 + vec3(1.0), rep); \/\/ Integer part + 1, mod period\n    Pi0 = mod289(Pi0);\n    Pi1 = mod289(Pi1);\n    vec3 Pf0 = fract(P); \/\/ Fractional part for interpolation\n    vec3 Pf1 = Pf0 - vec3(1.0); \/\/ Fractional part - 1.0\n    vec4 ix = vec4(Pi0.x, Pi1.x, Pi0.x, Pi1.x);\n    vec4 iy = vec4(Pi0.yy, Pi1.yy);\n    vec4 iz0 = Pi0.zzzz;\n    vec4 iz1 = Pi1.zzzz;\n  \n    vec4 ixy = permute(permute(ix) + iy);\n    vec4 ixy0 = permute(ixy + iz0);\n    vec4 ixy1 = permute(ixy + iz1);\n  \n    vec4 gx0 = ixy0 * (1.0 \/ 7.0);\n    vec4 gy0 = fract(floor(gx0) * (1.0 \/ 7.0)) - 0.5;\n    gx0 = fract(gx0);\n    vec4 gz0 = vec4(0.5) - abs(gx0) - abs(gy0);\n    vec4 sz0 = step(gz0, vec4(0.0));\n    gx0 -= sz0 * (step(0.0, gx0) - 0.5);\n    gy0 -= sz0 * (step(0.0, gy0) - 0.5);\n  \n    vec4 gx1 = ixy1 * (1.0 \/ 7.0);\n    vec4 gy1 = fract(floor(gx1) * (1.0 \/ 7.0)) - 0.5;\n    gx1 = fract(gx1);\n    vec4 gz1 = vec4(0.5) - abs(gx1) - abs(gy1);\n    vec4 sz1 = step(gz1, vec4(0.0));\n    gx1 -= sz1 * (step(0.0, gx1) - 0.5);\n    gy1 -= sz1 * (step(0.0, gy1) - 0.5);\n  \n    vec3 g000 = vec3(gx0.x,gy0.x,gz0.x);\n    vec3 g100 = vec3(gx0.y,gy0.y,gz0.y);\n    vec3 g010 = vec3(gx0.z,gy0.z,gz0.z);\n    vec3 g110 = vec3(gx0.w,gy0.w,gz0.w);\n    vec3 g001 = vec3(gx1.x,gy1.x,gz1.x);\n    vec3 g101 = vec3(gx1.y,gy1.y,gz1.y);\n    vec3 g011 = vec3(gx1.z,gy1.z,gz1.z);\n    vec3 g111 = vec3(gx1.w,gy1.w,gz1.w);\n  \n    vec4 norm0 = taylorInvSqrt(vec4(dot(g000, g000), dot(g010, g010), dot(g100, g100), dot(g110, g110)));\n    g000 *= norm0.x;\n    g010 *= norm0.y;\n    g100 *= norm0.z;\n    g110 *= norm0.w;\n    vec4 norm1 = taylorInvSqrt(vec4(dot(g001, g001), dot(g011, g011), dot(g101, g101), dot(g111, g111)));\n    g001 *= norm1.x;\n    g011 *= norm1.y;\n    g101 *= norm1.z;\n    g111 *= norm1.w;\n  \n    float n000 = dot(g000, Pf0);\n    float n100 = dot(g100, vec3(Pf1.x, Pf0.yz));\n    float n010 = dot(g010, vec3(Pf0.x, Pf1.y, Pf0.z));\n    float n110 = dot(g110, vec3(Pf1.xy, Pf0.z));\n    float n001 = dot(g001, vec3(Pf0.xy, Pf1.z));\n    float n101 = dot(g101, vec3(Pf1.x, Pf0.y, Pf1.z));\n    float n011 = dot(g011, vec3(Pf0.x, Pf1.yz));\n    float n111 = dot(g111, Pf1);\n  \n    vec3 fade_xyz = fade(Pf0);\n    vec4 n_z = mix(vec4(n000, n100, n010, n110), vec4(n001, n101, n011, n111), fade_xyz.z);\n    vec2 n_yz = mix(n_z.xy, n_z.zw, fade_xyz.y);\n    float n_xyz = mix(n_yz.x, n_yz.y, fade_xyz.x);\n    return 1.5 * n_xyz;\n  }\n  \n  \/\/ Turbulence By Jaume Sanchez => https:\/\/codepen.io\/spite\/\n  \n  varying vec2 vUv;\n  varying float noise;\n  varying float qnoise;\n  varying float displacement;\n  \n  uniform float time;\n  uniform float pointscale;\n  uniform float decay;\n  uniform float complex;\n  uniform float waves;\n  uniform float eqcolor;\n  uniform bool fragment;\n  \n  float turbulence( vec3 p) {\n    float t = - 0.1;\n    for (float f = 1.0 ; f <= 3.0 ; f++ ){\n      float power = pow( 2.0, f );\n      t += abs( pnoise( vec3( power * p ), vec3( 10.0, 10.0, 10.0 ) ) \/ power );\n    }\n    return t;\n  }\n  \n  void main() {\n  \n    vUv = uv;\n  \n    noise = (1.0 *  - waves) * turbulence( decay * abs(normal + time));\n    qnoise = (2.0 *  - eqcolor) * turbulence( decay * abs(normal + time));\n    float b = pnoise( complex * (position) + vec3( 1.0 * time ), vec3( 100.0 ) );\n    \n    if (fragment == true) {\n      displacement = - sin(noise) + normalize(b * 0.5);\n    } else {\n      displacement = - sin(noise) + cos(b * 0.5);\n    }\n  \n    vec3 newPosition = (position) + (normal * displacement);\n    gl_Position = (projectionMatrix * modelViewMatrix) * vec4( newPosition, 1.0 );\n    gl_PointSize = (pointscale);\n    \/\/gl_ClipDistance[0];\n  \n  }\n  \n  \n<\/script>\n<script id=\"fragmentShader\" type=\"x-shader\/x-vertex\">\n  varying float qnoise;\n  \n  uniform float time;\n  uniform bool redhell;\n  \n  void main() {\n    float r, g, b;\n  \n    \n    if (!redhell == true) {\n      r = cos(qnoise + 0.5);\n      g = cos(qnoise - 0.5);\n      b = 0.0;\n    } else {\n      r = cos(qnoise + 0.5);\n      g = cos(qnoise - 0.5);\n      b = abs(qnoise);\n    }\n    gl_FragColor = vec4(r, g, b, 1.0);\n  }\n<\/script>\n<script>\n    \/\/ Three JS\n\nwindow.addEventListener(\"load\", init, false);\n\nfunction init() {\n  createWorld();\n  createPrimitive();\n  \/\/---\n  animation();\n}\n\nvar Theme = { _darkred: 0x000000 };\n\n\/\/--------------------------------------------------------------------\n\nvar scene, camera, renderer, container;\nvar start = Date.now();\nvar _width, _height;\nfunction createWorld() {\n  \/\/---\n  scene = new THREE.Scene();\n  \/\/scene.fog = new THREE.Fog(Theme._darkred, 8, 20);\n    renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });\n  renderer.setClearColor( 0x000000, 0 );\n  \n  container = document.getElementById('canvas');\n  _width = window.innerWidth;\n  _height = window.innerHeight;\n\n  renderer.setSize(_width, _height);\n  \n  container.appendChild(renderer.domElement);\n\n\n\/\/---\n  camera = new THREE.PerspectiveCamera(55, _width \/ _height, 1, 1000);\n  camera.position.z = 3;\n  \/\/---\n  \/\/---\n  window.addEventListener(\"resize\", onWindowResize, false);\n}\n\nfunction onWindowResize() {\n  _width = window.innerWidth;\n  _height = window.innerHeight;\n  renderer.setSize(_width, _height);\n  camera.aspect = _width \/ _height;\n  camera.updateProjectionMatrix();\n  console.log(\"- resize -\");\n}\n\n\/\/--------------------------------------------------------------------\n\nvar mat;\nvar primitiveElement = function () {\n  this.mesh = new THREE.Object3D();\n  mat = new THREE.ShaderMaterial({\n    wireframe: false,\n    \/\/fog: true,\n    uniforms: {\n      time: {\n        type: \"f\",\n        value: 0.0\n      },\n      pointscale: {\n        type: \"f\",\n        value: 0.0\n      },\n      decay: {\n        type: \"f\",\n        value: 0.0\n      },\n      complex: {\n        type: \"f\",\n        value: 0.0\n      },\n      waves: {\n        type: \"f\",\n        value: 0.0\n      },\n      eqcolor: {\n        type: \"f\",\n        value: 0.0\n      },\n      fragment: {\n        type: \"i\",\n        value: true\n      },\n      redhell: {\n        type: \"i\",\n        value: true\n      }\n    },\n    vertexShader: document.getElementById(\"vertexShader\").textContent,\n    fragmentShader: document.getElementById(\"fragmentShader\").textContent\n  });\n  var geo = new THREE.IcosahedronBufferGeometry(3, 7);\n  var mesh = new THREE.Points(geo, mat);\n\n  \/\/---\n  this.mesh.add(mesh);\n};\n\nvar _primitive;\nfunction createPrimitive() {\n  _primitive = new primitiveElement();\n  scene.add(_primitive.mesh);\n}\n\n\/\/--------------------------------------------------------------------\n\nvar options = {\n  perlin: {\n    vel: 0.0004,\n    speed: 0.00007,\n    perlins: 1.0,\n    decay: 0.4,\n    complex: 0.16,\n    waves: 16.0,\n    eqcolor: 3.0,\n    fragment: true,\n    redhell: true\n  },\n  spin: {\n    sinVel: 0.0,\n    ampVel: 27.0\n  }\n};\n\n\n\n\/\/--------------------------------------------------------------------\n\nfunction animation() {\n  requestAnimationFrame(animation);\n  var performance = Date.now() * 0.003;\n\n  _primitive.mesh.rotation.y += options.perlin.vel;\n  _primitive.mesh.rotation.x =\n    (Math.sin(performance * options.spin.sinVel) *\n      options.spin.ampVel *\n      Math.PI) \/\n    180;\n  \/\/---\n  mat.uniforms[\"time\"].value = options.perlin.speed * (Date.now() - start);\n  mat.uniforms[\"pointscale\"].value = options.perlin.perlins;\n  mat.uniforms[\"decay\"].value = options.perlin.decay;\n  mat.uniforms[\"complex\"].value = options.perlin.complex;\n  mat.uniforms[\"waves\"].value = options.perlin.waves;\n  mat.uniforms[\"eqcolor\"].value = options.perlin.eqcolor;\n  mat.uniforms[\"fragment\"].value = options.perlin.fragment;\n  mat.uniforms[\"redhell\"].value = options.perlin.redhell;\n  \/\/---\n  camera.lookAt(scene.position);\n  renderer.render(scene, camera);\n}\n\n<\/script>\n<\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-0{width:100% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-0 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 1.92%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 1.92%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-0{width:100% !important;order : 0;}.fusion-builder-column-0 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-1{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-2 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-small-visibility fusion-no-medium-visibility\" style=\"background-color: #ffffff;background-position: center center;background-repeat: no-repeat;border-width: 10px 0px 0px 0px;border-color:#b39a60;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-1\" style=\"color:#b39a60;\"><h1 style=\"text-align: left;\">Le Prix<\/h1>\n<\/div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-1 hover-type-none\"><img width=\"150\" height=\"150\" title=\"awardCircle\" src=\"https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/awardCircle-150x150.png\" class=\"img-responsive wp-image-682\"\/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-1{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-1 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 5.76%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 5.76%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-1{width:33.333333333333% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 5.76%;margin-left : 5.76%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-1{width:100% !important;order : 0;}.fusion-builder-column-1 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_2_3 2_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#ffffff;padding: 0px 5% 0px 5%;\"><div class=\"fusion-text fusion-text-2\" style=\"color:#b39a60;\"><p>Le \u00ab\u00a0Prix Otto Naegeli pour la recherche m\u00e9dicale\u00a0\u00bb est consid\u00e9r\u00e9 comme l&rsquo;un des prix scientifiques les plus importants en Suisse. Il jouit d&rsquo;une grande reconnaissance internationale.<\/p>\n<p>Le Prix Otto Naegeli a pour but la promotion de la recherche m\u00e9dicale (recherche biom\u00e9dicale fondamentale et recherche clinique). Il est g\u00e9n\u00e9ralement d\u00e9cern\u00e9 tous les deux ans \u00e0 des chercheurs en Suisse.<\/p>\n<p>Le montant du prix est actuellement de CHF 200&rsquo;000.<\/p>\n<p>Le prix Otto Naegeli est \u00e9galement destin\u00e9 \u00e0 encourager les jeunes chercheurs \u00e0 poursuivre leurs recherches.<\/p>\n<\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-2{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-2 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 5% !important;margin-right : 2.88%;padding-bottom : 0px !important;padding-left : 5% !important;margin-left : 2.88%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-2{width:66.666666666667% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 2.88%;margin-left : 2.88%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-2{width:100% !important;order : 0;}.fusion-builder-column-2 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-2{ padding-top : 5%;margin-top : 200px;padding-right : 10%;padding-bottom : 0px;margin-bottom : 0px;padding-left : 10%;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-3 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling fusion-no-large-visibility\" style=\"background-color: #ffffff;background-position: center center;background-repeat: no-repeat;border-width: 10px 0px 0px 0px;border-color:#b39a60;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_3 1_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-3\" style=\"color:#b39a60;\"><h1 style=\"text-align: left;\">Le Prix<\/h1>\n<\/div><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-2 hover-type-none\"><img width=\"150\" height=\"150\" title=\"awardCircle\" src=\"https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/awardCircle-150x150.png\" class=\"img-responsive wp-image-682\"\/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-3{width:33.333333333333% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-3 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 5.76%;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 5.76%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-3{width:33.333333333333% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 5.76%;margin-left : 5.76%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-3{width:100% !important;order : 0;}.fusion-builder-column-3 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion_builder_column_2_3 2_3 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;background-color:#ffffff;padding: 0px 5% 0px 5%;\"><div class=\"fusion-text fusion-text-4\" style=\"color:#b39a60;\"><p>Le \u00ab\u00a0Prix Otto Naegeli pour la recherche m\u00e9dicale\u00a0\u00bb est consid\u00e9r\u00e9 comme l&rsquo;un des prix scientifiques les plus importants en Suisse. Il jouit d&rsquo;une grande reconnaissance internationale.<\/p>\n<p>Le Prix Otto Naegeli a pour but la promotion de la recherche m\u00e9dicale (recherche biom\u00e9dicale fondamentale et recherche clinique). Il est g\u00e9n\u00e9ralement d\u00e9cern\u00e9 tous les deux ans \u00e0 des chercheurs en Suisse.<\/p>\n<p>Le montant du prix est actuellement de CHF 200&rsquo;000.<\/p>\n<p>Le prix Otto Naegeli est \u00e9galement destin\u00e9 \u00e0 encourager les jeunes chercheurs \u00e0 poursuivre leurs recherches.<\/p>\n<\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-4{width:66.666666666667% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-4 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 5% !important;margin-right : 2.88%;padding-bottom : 0px !important;padding-left : 5% !important;margin-left : 2.88%;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-4{width:66.666666666667% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 2.88%;margin-left : 2.88%;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-4{width:100% !important;order : 0;}.fusion-builder-column-4 > .fusion-column-wrapper {margin-right : 1.92%;margin-left : 1.92%;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-3{ padding-top : 5%;margin-top : 0px;padding-right : 10%;padding-bottom : 0px;margin-bottom : 0px;padding-left : 10%;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-4 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: #b39a60;background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#e2e2e2;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:calc( 1200px + 30px );margin-left: calc(-30px \/ 2 );margin-right: calc(-30px \/ 2 );\"><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion_builder_column_1_5 1_5 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div style=\"text-align:center;\"><span class=\" fusion-imageframe imageframe-none imageframe-3 hover-type-none\" style=\"margin-top:0px;margin-bottom:0px;\"><img width=\"243\" height=\"299\" title=\"ottoBadge\" src=\"https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/ottoBadge.png\" class=\"img-responsive wp-image-692\" srcset=\"https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/ottoBadge-200x246.png 200w, https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/ottoBadge.png 243w\" sizes=\"(max-width: 640px) 100vw, 243px\" \/><\/span><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-5{width:20% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-5 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 15px;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 15px;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-5{width:20% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-5{width:100% !important;order : 0;}.fusion-builder-column-5 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-6 fusion_builder_column_2_5 2_5 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-text fusion-text-5\" style=\"color:#b39a60;\"><h1 style=\"text-align: left; color: white;\">L&rsquo;un des prix m\u00e9dicaux les plus prestigieux en Suisse<\/h1>\n<\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-6{width:40% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-6 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 15px;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 15px;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-6{width:40% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-6{width:100% !important;order : 0;}.fusion-builder-column-6 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-7 fusion_builder_column_2_5 2_5 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 5% 5% 5% 5%;\"><div class=\"fusion-text fusion-text-6\" style=\"color:#000000;\"><p>Le Prix Otto Naegeli fut cr\u00e9\u00e9 en l\u2019honneur et au souvenir du grand scientifique et enseignant de m\u00e9decine interne \u00e0 l\u2019Universit\u00e9 de Z\u00fcrich, le Professeur Otto Naegeli. Jusqu\u2019en 1984, le prix d\u2019un montant de CHF 100&rsquo;000 \u00e9tait d\u00e9cern\u00e9 annuellement par la Fondation Otto Naegeli.<\/p>\n<p>A partir de 1986 la Fondation Bonizzi-Theler continuait \u00e0 d\u00e9cerner le prix. D\u00e8s 1988 le prix fut remis seulement tous les deux ans, mais avec un montant de CHF 200&rsquo;000. Lors de la dissolution de la Fondation Bonizzi-Theler, une partie du capital f\u00fbt attribu\u00e9e \u00e0 une nouvelle Fondation Otto Naegeli.<\/p>\n<p>A partir de l\u2019ann\u00e9e 2020 la Fondation finance le Prix Otto Naegeli gr\u00e2ce \u00e0 des moyens financiers mis \u00e0 sa disposition en m\u00e9moire du Dr. Alex Vannod, d\u00e9c\u00e9d\u00e9 en 2019.<\/p>\n<\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-7{width:40% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-7 > .fusion-column-wrapper {padding-top : 5% !important;padding-right : 5% !important;margin-right : 15px;padding-bottom : 5% !important;padding-left : 5% !important;margin-left : 15px;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-7{width:40% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-7{width:100% !important;order : 0;}.fusion-builder-column-7 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}<\/style><\/div><div class=\"fusion-layout-column fusion_builder_column fusion-builder-column-8 fusion_builder_column_1_1 1_1 fusion-flex-column\"><div class=\"fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column\" style=\"background-position:left top;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;padding: 0px 0px 0px 0px;\"><div class=\"fusion-content-boxes content-boxes columns row fusion-columns-2 fusion-columns-total-2 fusion-content-boxes-1 content-boxes-clean-vertical content-left content-boxes-icon-on-top\" data-animationOffset=\"100%\" style=\"margin-top:;margin-bottom:;\"><style type=\"text\/css\">.fusion-content-boxes-1 .heading .content-box-heading {color:#212934;}\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover .heading .content-box-heading,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover .heading .heading-link .content-box-heading,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover .heading .content-box-heading,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover .heading .heading-link .content-box-heading,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover.link-area-box .fusion-read-more,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover.link-area-box .fusion-read-more::after,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover.link-area-box .fusion-read-more::before,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .fusion-read-more:hover:after,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .fusion-read-more:hover:before,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .fusion-read-more:hover,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover.link-area-box .fusion-read-more,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover.link-area-box .fusion-read-more::after,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover.link-area-box .fusion-read-more::before,\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover .icon .circle-no,\n\t\t\t\t\t.fusion-content-boxes-1 .heading .heading-link:hover .content-box-heading {\n\t\t\t\t\t\tcolor: #65bc7b;\n\t\t\t\t\t}\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover .icon .circle-no {\n\t\t\t\t\t\tcolor: #65bc7b !important;\n\t\t\t\t\t}.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box.link-area-box-hover .fusion-content-box-button {background: #b39a60;color: #ffffff;}.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box.link-area-box-hover .fusion-content-box-button .fusion-button-text {color: #ffffff;}\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover .heading .icon > span {\n\t\t\t\t\t\tbackground-color: #65bc7b !important;\n\t\t\t\t\t}\n\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover .heading .icon > span {\n\t\t\t\t\t\tborder-color: #65bc7b !important;\n\t\t\t\t\t}<\/style><div style=\"border-color:rgba(255,255,255,0);\" class=\"fusion-column content-box-column content-box-column content-box-column-1 col-lg-6 col-md-6 col-sm-6 fusion-content-box-hover content-box-column-first-in-row\"><div class=\"col content-box-wrapper content-wrapper link-area-link-icon content-icon-wrapper-yes icon-hover-animation-fade\" style=\"background-color:rgba(255,255,255,0);\" data-animationOffset=\"100%\"><div class=\"heading heading-with-icon icon-left\"><div aria-hidden=\"true\" class=\"image\"><img src=\"https:\/\/onp.nougat.work\/wp-content\/uploads\/2020\/10\/ottoNaegeli.png\" width=\"348\" height=\"525\" alt=\"\" \/><\/div><\/div><\/div><\/div><div style=\"border-color:rgba(255,255,255,0);\" class=\"fusion-column content-box-column content-box-column content-box-column-2 col-lg-6 col-md-6 col-sm-6 fusion-content-box-hover content-box-column-last content-box-column-last-in-row\"><div class=\"col content-box-wrapper content-wrapper link-area-link-icon content-icon-wrapper-yes icon-hover-animation-fade\" style=\"background-color:rgba(255,255,255,0);\" data-animationOffset=\"100%\"><div class=\"fusion-clearfix\"><\/div><div class=\"content-container\" style=\"color:#4a4e57;\">\n<h1 style=\"color: white; text-align: left;\">Prof. Otto Naegeli<br \/>\n(1871 \u2014 1938)<\/h1>\n<p style=\"text-align: left; color: #000;\">Otto Naegeli est n\u00e9 en 1871 \u00e0 Ermatingen, Thurgovie. Il a termin\u00e9 les \u00e9tudes de m\u00e9decine \u00e0 Z\u00fcrich en 1896, suivi de l\u2019obtention d\u2019un titre de privat-docent en 1899. Jusqu\u2019en 1912 il pratiquait la m\u00e9decine dans son propre cabinet, date \u00e0 laquelle il fut nomm\u00e9 Professeur extraordinaire \u00e0 T\u00fcbingen. Appel\u00e9 comme directeur \u00e0 la Policlinique universitaire de M\u00e9decine \u00e0 Zurich en 1918. En 1921 il reprit \u00e9galement la direction de la Clinique m\u00e9dicale universitaire et la fonction de Professeur ordinaire de m\u00e9decine jusqu\u2019\u00e0 son d\u00e9part \u00e0 la retraite en 1937. Il d\u00e9c\u00e9da le 11 mars 1938.<\/p>\n<p style=\"text-align: left; color: #000;\">Ses travaux scientifiques couvrent un vaste \u00e9ventail de th\u00e8mes: \u00e9tudes dans le domaine de la tuberculose, de l\u2019h\u00e9matologie, des n\u00e9vroses li\u00e9es aux accidents et le diagnostic diff\u00e9rentiel.<\/p>\n<\/div><\/div><\/div><style type=\"text\/css\">\n\t\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .heading-link:hover .icon i.circle-yes,\n\t\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box:hover .heading-link .icon i.circle-yes,\n\t\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-link-icon-hover .heading .icon i.circle-yes,\n\t\t\t\t\t\t.fusion-content-boxes-1 .fusion-content-box-hover .link-area-box-hover .heading .icon i.circle-yes {\n\t\t\t\t\t\t\tbackground-color: #65bc7b !important;\n\t\t\t\t\t\t\tborder-color: #65bc7b !important;\n\t\t\t\t\t\t}<\/style><div class=\"fusion-clearfix\"><\/div><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-builder-column-8{width:100% !important;margin-top : 0px;margin-bottom : 20px;}.fusion-builder-column-8 > .fusion-column-wrapper {padding-top : 0px !important;padding-right : 0px !important;margin-right : 15px;padding-bottom : 0px !important;padding-left : 0px !important;margin-left : 15px;}@media only screen and (max-width:1024px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}@media only screen and (max-width:640px) {.fusion-body .fusion-builder-column-8{width:100% !important;order : 0;}.fusion-builder-column-8 > .fusion-column-wrapper {margin-right : 15px;margin-left : 15px;}}<\/style><\/div><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-4{ padding-top : 30px;margin-top : 0px;padding-right : 50px;padding-bottom : 30px;margin-bottom : 100px;padding-left : 50px;}<\/style><\/div><div class=\"fusion-fullwidth fullwidth-box fusion-builder-row-5 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling\" style=\"background-color: rgba(255,255,255,0);background-position: center center;background-repeat: no-repeat;border-width: 0px 0px 0px 0px;border-color:#e2e2e2;border-style:solid;\" ><div class=\"fusion-builder-row fusion-row fusion-flex-align-items-flex-start\" style=\"max-width:1248px;margin-left: calc(-4% \/ 2 );margin-right: calc(-4% \/ 2 );\"><\/div><style type=\"text\/css\">.fusion-body .fusion-flex-container.fusion-builder-row-5{ padding-top : 0px;margin-top : 0px;padding-right : 0px;padding-bottom : 0px;margin-bottom : 0px;padding-left : 0px;}<\/style><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"_links":{"self":[{"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/pages\/681"}],"collection":[{"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/comments?post=681"}],"version-history":[{"count":5,"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/pages\/681\/revisions"}],"predecessor-version":[{"id":1553,"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/pages\/681\/revisions\/1553"}],"wp:attachment":[{"href":"https:\/\/onp.nougat.work\/fr\/wp-json\/wp\/v2\/media?parent=681"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}