
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_57eff4ee764c7a755eeccd6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bc79b129b2d26acfb9ec7bc7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5cded5642191c159140548a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.221191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ba5f5b42d3b4e688addf66ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d65f7515f5108321204a6010.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_872bd9da91a749624424a8ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e1d053c6457f0fc8b7b4ccb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9190525743b3fddcd00fb289.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9a41942d8c9500765d2dbb30.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8045023946acc4f4f3460e23.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dff6464c990e2516d9435405.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c573aaf86f126d4adebbd575.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d7f215b2e06ccf64f2ca32e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.759277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f67f1585024f3fafda681c53.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e522d2768e713f2b370cf71d.woff2')format("woff");}.fff{font-family:fff;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f34da909b376b48eae45dc00.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f91199ffb2975dd7f6cf79c6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f2f63d1dd95d5bc7f2f6740a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_849991a92d0170053504d3e7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-75.600000px;}
.v7{vertical-align:-33.096000px;}
.v8{vertical-align:-30.240000px;}
.v5{vertical-align:-27.360000px;}
.v6{vertical-align:-23.736000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls50{letter-spacing:-0.828000px;}
.ls33{letter-spacing:-0.678000px;}
.ls22{letter-spacing:-0.337200px;}
.ls3b{letter-spacing:-0.328200px;}
.ls2a{letter-spacing:-0.319800px;}
.ls1b{letter-spacing:-0.317400px;}
.ls3f{letter-spacing:-0.292200px;}
.ls15{letter-spacing:-0.274200px;}
.ls4f{letter-spacing:-0.263400px;}
.ls25{letter-spacing:-0.247800px;}
.ls23{letter-spacing:-0.231000px;}
.lsf{letter-spacing:-0.219000px;}
.ls28{letter-spacing:-0.181200px;}
.ls32{letter-spacing:-0.175200px;}
.ls48{letter-spacing:-0.157800px;}
.ls12{letter-spacing:-0.152400px;}
.ls3e{letter-spacing:-0.144000px;}
.ls51{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.069600px;}
.ls27{letter-spacing:-0.053280px;}
.ls35{letter-spacing:-0.012240px;}
.lse{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.005040px;}
.ls4b{letter-spacing:0.009840px;}
.ls18{letter-spacing:0.023040px;}
.ls1d{letter-spacing:0.033840px;}
.ls37{letter-spacing:0.050160px;}
.ls20{letter-spacing:0.053280px;}
.ls49{letter-spacing:0.076200px;}
.ls2d{letter-spacing:0.079200px;}
.ls31{letter-spacing:0.084000px;}
.ls52{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.152400px;}
.ls44{letter-spacing:0.152640px;}
.ls26{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.164160px;}
.ls36{letter-spacing:0.164400px;}
.lsc{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.185520px;}
.ls10{letter-spacing:0.209400px;}
.ls54{letter-spacing:0.214800px;}
.ls3c{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.228960px;}
.ls16{letter-spacing:0.229200px;}
.ls1c{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.261360px;}
.ls4a{letter-spacing:0.272640px;}
.ls1a{letter-spacing:0.331800px;}
.ls46{letter-spacing:0.332640px;}
.lsd{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.445800px;}
.ls2{letter-spacing:0.498240px;}
.ls13{letter-spacing:0.544800px;}
.ls19{letter-spacing:0.567600px;}
.ls2b{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.804000px;}
.ls43{letter-spacing:0.872640px;}
.ls3a{letter-spacing:0.900000px;}
.ls2c{letter-spacing:0.906000px;}
.ls3d{letter-spacing:0.936000px;}
.ls11{letter-spacing:0.948000px;}
.ls30{letter-spacing:4.250160px;}
.ls53{letter-spacing:5.034240px;}
.ls1f{letter-spacing:6.474240px;}
.ls4e{letter-spacing:7.505280px;}
.ls3{letter-spacing:7.672320px;}
.ls29{letter-spacing:7.914240px;}
.ls4c{letter-spacing:15.066720px;}
.ls4d{letter-spacing:20.874240px;}
.ls4{letter-spacing:22.164480px;}
.ls47{letter-spacing:26.945280px;}
.ls7{letter-spacing:27.745920px;}
.ls1{letter-spacing:30.096000px;}
.ls41{letter-spacing:30.545280px;}
.ls45{letter-spacing:31.626720px;}
.ls2f{letter-spacing:32.346720px;}
.ls2e{letter-spacing:33.786720px;}
.ls42{letter-spacing:36.666720px;}
.ls1e{letter-spacing:38.106720px;}
.ls40{letter-spacing:38.826720px;}
.ls6{letter-spacing:86.940480px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws27{word-spacing:-72.936000px;}
.ws28{word-spacing:-72.000000px;}
.ws2f{word-spacing:-66.240000px;}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-28.591080px;}
.ws2{word-spacing:-24.624000px;}
.ws2b{word-spacing:-24.480000px;}
.wsa{word-spacing:-22.325760px;}
.ws1d{word-spacing:-21.983520px;}
.ws1f{word-spacing:-21.941520px;}
.ws23{word-spacing:-21.839520px;}
.ws1e{word-spacing:-21.695520px;}
.ws9{word-spacing:-21.481320px;}
.wsc{word-spacing:-21.367320px;}
.ws8{word-spacing:-21.264720px;}
.ws35{word-spacing:-21.250320px;}
.ws1{word-spacing:-21.244920px;}
.ws25{word-spacing:-21.199920px;}
.ws7{word-spacing:-21.187920px;}
.ws20{word-spacing:-21.119520px;}
.ws4{word-spacing:-21.040560px;}
.ws6{word-spacing:-21.035520px;}
.ws14{word-spacing:-20.965920px;}
.ws21{word-spacing:-20.860320px;}
.ws13{word-spacing:-20.804520px;}
.ws5{word-spacing:-20.761320px;}
.ws26{word-spacing:-20.707320px;}
.ws12{word-spacing:-20.698320px;}
.ws2d{word-spacing:-20.437920px;}
.ws24{word-spacing:-20.425680px;}
.ws22{word-spacing:-20.357520px;}
.ws2e{word-spacing:-20.280120px;}
.ws1c{word-spacing:-20.118120px;}
.ws37{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.093600px;}
.ws1a{word-spacing:-14.993280px;}
.wse{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.886720px;}
.ws32{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.685760px;}
.ws34{word-spacing:-13.680000px;}
.ws17{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.437960px;}
.ws33{word-spacing:-13.392000px;}
.ws1b{word-spacing:-13.229520px;}
.ws31{word-spacing:-12.672000px;}
.wsd{word-spacing:-9.720000px;}
.ws2c{word-spacing:-9.145560px;}
.ws10{word-spacing:-9.000000px;}
.ws16{word-spacing:-6.237720px;}
.ws36{word-spacing:-4.617720px;}
.ws29{word-spacing:-3.357720px;}
.ws11{word-spacing:0.000000px;}
.ws2a{word-spacing:1.682280px;}
.ws30{word-spacing:6.722280px;}
._12{margin-left:-12.817920px;}
._19{margin-left:-5.874720px;}
._15{margin-left:-3.407040px;}
._0{margin-left:-1.061280px;}
._2{width:1.314720px;}
._3{width:2.994240px;}
._d{width:4.045920px;}
._c{width:5.073360px;}
._5{width:6.206160px;}
._e{width:7.928640px;}
._11{width:9.640800px;}
._4{width:11.424720px;}
._1a{width:12.792000px;}
._14{width:13.955760px;}
._6{width:15.208320px;}
._7{width:16.211520px;}
._f{width:17.492880px;}
._1{width:19.206720px;}
._10{width:22.362240px;}
._13{width:23.760480px;}
._1c{width:24.873600px;}
._17{width:25.982160px;}
._1b{width:27.155520px;}
._b{width:28.313280px;}
._16{width:30.206640px;}
._8{width:32.210640px;}
._9{width:33.317760px;}
._a{width:34.421760px;}
._1d{width:35.920800px;}
._1e{width:37.080720px;}
._1f{width:53.843760px;}
._20{width:55.921440px;}
._18{width:75.219840px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.060000px;}
.y7c{bottom:3.240000px;}
.y8b{bottom:3.285000px;}
.y91{bottom:4.320000px;}
.y83{bottom:21.420000px;}
.y38{bottom:57.600000px;}
.y37{bottom:77.796000px;}
.y36{bottom:93.456000px;}
.y35{bottom:130.716000px;}
.y6e{bottom:131.256000px;}
.y113{bottom:138.096000px;}
.ye5{bottom:139.716000px;}
.y112{bottom:148.536000px;}
.y34{bottom:152.130000px;}
.y109{bottom:153.570000px;}
.y93{bottom:155.370000px;}
.y6d{bottom:157.170000px;}
.ye4{bottom:158.250000px;}
.y33{bottom:162.210000px;}
.ybf{bottom:165.630000px;}
.y92{bottom:166.530000px;}
.y6c{bottom:169.230000px;}
.y108{bottom:169.410000px;}
.y111{bottom:172.470000px;}
.ye3{bottom:175.350000px;}
.y107{bottom:178.950000px;}
.y32{bottom:186.330000px;}
.ybe{bottom:189.750000px;}
.y6b{bottom:193.170000px;}
.ye2{bottom:194.250000px;}
.y31{bottom:196.770000px;}
.y106{bottom:200.550000px;}
.yf9{bottom:201.090000px;}
.ybd{bottom:207.030000px;}
.y6a{bottom:210.450000px;}
.ye1{bottom:214.410000px;}
.y105{bottom:217.470000px;}
.ybc{bottom:218.370000px;}
.y30{bottom:220.890000px;}
.y110{bottom:224.310000px;}
.ye0{bottom:226.110000px;}
.yf8{bottom:226.830000px;}
.y104{bottom:227.370000px;}
.y90{bottom:230.610000px;}
.y2f{bottom:238.170000px;}
.ybb{bottom:239.430000px;}
.y10f{bottom:241.590000px;}
.y103{bottom:242.850000px;}
.ydf{bottom:243.390000px;}
.y69{bottom:245.010000px;}
.y8f{bottom:249.690000px;}
.y2e{bottom:255.270000px;}
.yba{bottom:257.610000px;}
.y10e{bottom:258.870000px;}
.y68{bottom:262.290000px;}
.yf7{bottom:263.190000px;}
.y102{bottom:264.270000px;}
.yde{bottom:266.610000px;}
.y8e{bottom:268.590000px;}
.y2d{bottom:272.550000px;}
.y10d{bottom:275.070000px;}
.y101{bottom:275.250000px;}
.yb9{bottom:275.790000px;}
.y67{bottom:279.570000px;}
.yf6{bottom:281.370000px;}
.y2c{bottom:283.890000px;}
.ydd{bottom:284.790000px;}
.y10c{bottom:286.410000px;}
.y8d{bottom:287.490000px;}
.yb8{bottom:293.970000px;}
.ydc{bottom:295.050000px;}
.y100{bottom:295.950000px;}
.y66{bottom:296.670000px;}
.yf5{bottom:299.730000px;}
.y8c{bottom:306.570000px;}
.y10b{bottom:309.630000px;}
.yb7{bottom:312.330000px;}
.y2b{bottom:313.410000px;}
.y65{bottom:313.950000px;}
.yff{bottom:314.310000px;}
.yf4{bottom:317.910000px;}
.ydb{bottom:320.790000px;}
.y10a{bottom:321.870000px;}
.y64{bottom:325.290000px;}
.y8a{bottom:325.470000px;}
.yb6{bottom:330.555000px;}
.y2a{bottom:331.635000px;}
.yfe{bottom:332.535000px;}
.yf3{bottom:336.135000px;}
.yda{bottom:339.375000px;}
.y89{bottom:344.595000px;}
.yb5{bottom:348.735000px;}
.yd9{bottom:349.815000px;}
.y29{bottom:349.995000px;}
.y63{bottom:350.715000px;}
.yfd{bottom:351.435000px;}
.yf2{bottom:354.495000px;}
.y88{bottom:366.735000px;}
.yb4{bottom:366.915000px;}
.y28{bottom:368.175000px;}
.y62{bottom:369.075000px;}
.yf1{bottom:372.675000px;}
.yd8{bottom:373.935000px;}
.yd7{bottom:384.375000px;}
.y87{bottom:384.915000px;}
.yb3{bottom:385.275000px;}
.y61{bottom:387.255000px;}
.y27{bottom:387.615000px;}
.yf0{bottom:390.855000px;}
.y86{bottom:403.095000px;}
.yb2{bottom:403.455000px;}
.y60{bottom:405.435000px;}
.yd6{bottom:408.315000px;}
.yef{bottom:409.035000px;}
.y26{bottom:410.475000px;}
.yd5{bottom:418.755000px;}
.y85{bottom:421.275000px;}
.yb1{bottom:421.635000px;}
.y5f{bottom:423.615000px;}
.yee{bottom:427.395000px;}
.y84{bottom:437.295000px;}
.yb0{bottom:439.995000px;}
.y5e{bottom:441.975000px;}
.yd4{bottom:442.875000px;}
.yed{bottom:445.575000px;}
.y25{bottom:452.775000px;}
.yd3{bottom:454.215000px;}
.y82{bottom:456.195000px;}
.yaf{bottom:458.535000px;}
.y5d{bottom:460.155000px;}
.yec{bottom:463.755000px;}
.y24{bottom:471.135000px;}
.yae{bottom:476.715000px;}
.y5c{bottom:478.335000px;}
.yfc{bottom:481.935000px;}
.yeb{bottom:482.115000px;}
.y23{bottom:489.315000px;}
.yd2{bottom:490.215000px;}
.y81{bottom:493.455000px;}
.yad{bottom:495.075000px;}
.y5b{bottom:496.695000px;}
.yea{bottom:500.295000px;}
.y22{bottom:508.395000px;}
.y80{bottom:512.355000px;}
.yac{bottom:513.255000px;}
.y5a{bottom:514.875000px;}
.ye9{bottom:518.475000px;}
.yd1{bottom:526.755000px;}
.y21{bottom:529.455000px;}
.y7f{bottom:531.435000px;}
.y59{bottom:533.055000px;}
.ye8{bottom:536.655000px;}
.yd0{bottom:544.935000px;}
.y20{bottom:547.635000px;}
.yab{bottom:549.615000px;}
.y7d{bottom:550.335000px;}
.y58{bottom:551.235000px;}
.yfb{bottom:554.835000px;}
.ye7{bottom:555.015000px;}
.ycf{bottom:563.115000px;}
.y1f{bottom:565.815000px;}
.yaa{bottom:567.975000px;}
.y7b{bottom:569.235000px;}
.y57{bottom:569.595000px;}
.ye6{bottom:573.195000px;}
.yce{bottom:581.115000px;}
.y1e{bottom:584.175000px;}
.ya9{bottom:586.155000px;}
.y56{bottom:587.775000px;}
.y7a{bottom:591.375000px;}
.ycd{bottom:599.505000px;}
.y1d{bottom:602.385000px;}
.ya8{bottom:604.365000px;}
.y55{bottom:605.985000px;}
.y79{bottom:609.585000px;}
.y1c{bottom:620.565000px;}
.ya7{bottom:622.725000px;}
.y54{bottom:624.165000px;}
.y78{bottom:627.945000px;}
.y1b{bottom:638.925000px;}
.ya6{bottom:640.905000px;}
.y53{bottom:642.525000px;}
.y77{bottom:646.125000px;}
.yfa{bottom:646.305000px;}
.y1a{bottom:657.105000px;}
.ya5{bottom:659.085000px;}
.y52{bottom:660.705000px;}
.y76{bottom:664.305000px;}
.y19{bottom:675.285000px;}
.ya4{bottom:677.265000px;}
.y51{bottom:678.885000px;}
.y75{bottom:682.665000px;}
.y18{bottom:693.465000px;}
.ya3{bottom:695.625000px;}
.y50{bottom:697.245000px;}
.y74{bottom:700.845000px;}
.ycc{bottom:711.825000px;}
.y17{bottom:712.545000px;}
.ya2{bottom:713.805000px;}
.y4f{bottom:715.425000px;}
.y73{bottom:719.025000px;}
.ycb{bottom:730.005000px;}
.ya1{bottom:731.985000px;}
.y16{bottom:733.425000px;}
.y4e{bottom:733.605000px;}
.y72{bottom:737.205000px;}
.yca{bottom:748.185000px;}
.ya0{bottom:750.345000px;}
.y15{bottom:750.885000px;}
.y4d{bottom:751.785000px;}
.y71{bottom:755.565000px;}
.yc9{bottom:766.365000px;}
.y9f{bottom:768.525000px;}
.y14{bottom:769.965000px;}
.y4c{bottom:770.145000px;}
.y70{bottom:773.745000px;}
.yc8{bottom:784.725000px;}
.y9e{bottom:786.705000px;}
.y4b{bottom:789.045000px;}
.y13{bottom:791.025000px;}
.y6f{bottom:791.925000px;}
.yc7{bottom:802.905000px;}
.y9d{bottom:804.885000px;}
.y12{bottom:809.205000px;}
.y4a{bottom:810.285000px;}
.yc6{bottom:821.085000px;}
.y9c{bottom:823.245000px;}
.y11{bottom:827.565000px;}
.y49{bottom:828.465000px;}
.yc5{bottom:839.445000px;}
.y9b{bottom:841.425000px;}
.y10{bottom:845.745000px;}
.y48{bottom:846.645000px;}
.yc4{bottom:857.625000px;}
.y9a{bottom:859.605000px;}
.yf{bottom:863.970000px;}
.y47{bottom:864.870000px;}
.y99{bottom:875.490000px;}
.yc3{bottom:875.850000px;}
.ye{bottom:882.330000px;}
.y46{bottom:883.230000px;}
.yc2{bottom:894.030000px;}
.y98{bottom:894.570000px;}
.yd{bottom:900.510000px;}
.y45{bottom:901.410000px;}
.yc1{bottom:913.110000px;}
.y97{bottom:913.470000px;}
.yc{bottom:918.690000px;}
.y44{bottom:919.590000px;}
.y96{bottom:932.550000px;}
.yc0{bottom:934.890000px;}
.yb{bottom:936.870000px;}
.y43{bottom:937.770000px;}
.y95{bottom:951.450000px;}
.ya{bottom:955.950000px;}
.y42{bottom:956.130000px;}
.y94{bottom:970.530000px;}
.y41{bottom:974.310000px;}
.y9{bottom:976.830000px;}
.y40{bottom:992.490000px;}
.y8{bottom:994.110000px;}
.y3f{bottom:1010.850000px;}
.y7{bottom:1011.750000px;}
.y3e{bottom:1029.030000px;}
.y6{bottom:1029.930000px;}
.y3d{bottom:1047.210000px;}
.y5{bottom:1048.830000px;}
.y3c{bottom:1065.390000px;}
.y4{bottom:1069.890000px;}
.y3b{bottom:1083.750000px;}
.y3{bottom:1088.790000px;}
.y3a{bottom:1101.930000px;}
.y2{bottom:1114.350000px;}
.y39{bottom:1120.110000px;}
.y1{bottom:1198.800000px;}
.h15{height:18.180000px;}
.h14{height:18.360000px;}
.h17{height:18.396000px;}
.h18{height:19.440000px;}
.h1a{height:28.485703px;}
.hf{height:35.332031px;}
.h1c{height:35.838281px;}
.h16{height:36.540000px;}
.hd{height:38.158594px;}
.h1b{height:38.846250px;}
.hc{height:45.184219px;}
.h2{height:50.312812px;}
.h10{height:52.998047px;}
.h4{height:56.907773px;}
.he{height:58.651172px;}
.h6{height:59.789180px;}
.ha{height:60.577031px;}
.h13{height:62.211094px;}
.h11{height:62.327813px;}
.hb{height:66.082500px;}
.h9{height:66.258984px;}
.h19{height:69.086250px;}
.h8{height:72.035156px;}
.h7{height:72.984375px;}
.h12{height:75.093750px;}
.h5{height:82.019531px;}
.h3{height:85.391719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:312.735000px;}
.w2{width:312.915000px;}
.w4{width:615.030000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x5{left:141.156000px;}
.x1{left:148.896000px;}
.x2{left:175.890000px;}
.x9{left:180.930000px;}
.x8{left:202.890000px;}
.x4{left:452.985000px;}
.x7{left:454.785000px;}
.x3{left:851.040000px;}
@media print{
.v4{vertical-align:-67.200000pt;}
.v7{vertical-align:-29.418667pt;}
.v8{vertical-align:-26.880000pt;}
.v5{vertical-align:-24.320000pt;}
.v6{vertical-align:-21.098667pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls50{letter-spacing:-0.736000pt;}
.ls33{letter-spacing:-0.602667pt;}
.ls22{letter-spacing:-0.299733pt;}
.ls3b{letter-spacing:-0.291733pt;}
.ls2a{letter-spacing:-0.284267pt;}
.ls1b{letter-spacing:-0.282133pt;}
.ls3f{letter-spacing:-0.259733pt;}
.ls15{letter-spacing:-0.243733pt;}
.ls4f{letter-spacing:-0.234133pt;}
.ls25{letter-spacing:-0.220267pt;}
.ls23{letter-spacing:-0.205333pt;}
.lsf{letter-spacing:-0.194667pt;}
.ls28{letter-spacing:-0.161067pt;}
.ls32{letter-spacing:-0.155733pt;}
.ls48{letter-spacing:-0.140267pt;}
.ls12{letter-spacing:-0.135467pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls51{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.061867pt;}
.ls27{letter-spacing:-0.047360pt;}
.ls35{letter-spacing:-0.010880pt;}
.lse{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.004480pt;}
.ls4b{letter-spacing:0.008747pt;}
.ls18{letter-spacing:0.020480pt;}
.ls1d{letter-spacing:0.030080pt;}
.ls37{letter-spacing:0.044587pt;}
.ls20{letter-spacing:0.047360pt;}
.ls49{letter-spacing:0.067733pt;}
.ls2d{letter-spacing:0.070400pt;}
.ls31{letter-spacing:0.074667pt;}
.ls52{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.135467pt;}
.ls44{letter-spacing:0.135680pt;}
.ls26{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.145920pt;}
.ls36{letter-spacing:0.146133pt;}
.lsc{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.164907pt;}
.ls10{letter-spacing:0.186133pt;}
.ls54{letter-spacing:0.190933pt;}
.ls3c{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.203520pt;}
.ls16{letter-spacing:0.203733pt;}
.ls1c{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.232320pt;}
.ls4a{letter-spacing:0.242347pt;}
.ls1a{letter-spacing:0.294933pt;}
.ls46{letter-spacing:0.295680pt;}
.lsd{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.396267pt;}
.ls2{letter-spacing:0.442880pt;}
.ls13{letter-spacing:0.484267pt;}
.ls19{letter-spacing:0.504533pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.714667pt;}
.ls43{letter-spacing:0.775680pt;}
.ls3a{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.805333pt;}
.ls3d{letter-spacing:0.832000pt;}
.ls11{letter-spacing:0.842667pt;}
.ls30{letter-spacing:3.777920pt;}
.ls53{letter-spacing:4.474880pt;}
.ls1f{letter-spacing:5.754880pt;}
.ls4e{letter-spacing:6.671360pt;}
.ls3{letter-spacing:6.819840pt;}
.ls29{letter-spacing:7.034880pt;}
.ls4c{letter-spacing:13.392640pt;}
.ls4d{letter-spacing:18.554880pt;}
.ls4{letter-spacing:19.701760pt;}
.ls47{letter-spacing:23.951360pt;}
.ls7{letter-spacing:24.663040pt;}
.ls1{letter-spacing:26.752000pt;}
.ls41{letter-spacing:27.151360pt;}
.ls45{letter-spacing:28.112640pt;}
.ls2f{letter-spacing:28.752640pt;}
.ls2e{letter-spacing:30.032640pt;}
.ls42{letter-spacing:32.592640pt;}
.ls1e{letter-spacing:33.872640pt;}
.ls40{letter-spacing:34.512640pt;}
.ls6{letter-spacing:77.280427pt;}
.ws27{word-spacing:-64.832000pt;}
.ws28{word-spacing:-64.000000pt;}
.ws2f{word-spacing:-58.880000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-25.414293pt;}
.ws2{word-spacing:-21.888000pt;}
.ws2b{word-spacing:-21.760000pt;}
.wsa{word-spacing:-19.845120pt;}
.ws1d{word-spacing:-19.540907pt;}
.ws1f{word-spacing:-19.503573pt;}
.ws23{word-spacing:-19.412907pt;}
.ws1e{word-spacing:-19.284907pt;}
.ws9{word-spacing:-19.094507pt;}
.wsc{word-spacing:-18.993173pt;}
.ws8{word-spacing:-18.901973pt;}
.ws35{word-spacing:-18.889173pt;}
.ws1{word-spacing:-18.884373pt;}
.ws25{word-spacing:-18.844373pt;}
.ws7{word-spacing:-18.833707pt;}
.ws20{word-spacing:-18.772907pt;}
.ws4{word-spacing:-18.702720pt;}
.ws6{word-spacing:-18.698240pt;}
.ws14{word-spacing:-18.636373pt;}
.ws21{word-spacing:-18.542507pt;}
.ws13{word-spacing:-18.492907pt;}
.ws5{word-spacing:-18.454507pt;}
.ws26{word-spacing:-18.406507pt;}
.ws12{word-spacing:-18.398507pt;}
.ws2d{word-spacing:-18.167040pt;}
.ws24{word-spacing:-18.156160pt;}
.ws22{word-spacing:-18.095573pt;}
.ws2e{word-spacing:-18.026773pt;}
.ws1c{word-spacing:-17.882773pt;}
.ws37{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.416533pt;}
.ws1a{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.280000pt;}
.ws19{word-spacing:-13.232640pt;}
.ws32{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.165120pt;}
.ws34{word-spacing:-12.160000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.944853pt;}
.ws33{word-spacing:-11.904000pt;}
.ws1b{word-spacing:-11.759573pt;}
.ws31{word-spacing:-11.264000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws2c{word-spacing:-8.129387pt;}
.ws10{word-spacing:-8.000000pt;}
.ws16{word-spacing:-5.544640pt;}
.ws36{word-spacing:-4.104640pt;}
.ws29{word-spacing:-2.984640pt;}
.ws11{word-spacing:0.000000pt;}
.ws2a{word-spacing:1.495360pt;}
.ws30{word-spacing:5.975360pt;}
._12{margin-left:-11.393707pt;}
._19{margin-left:-5.221973pt;}
._15{margin-left:-3.028480pt;}
._0{margin-left:-0.943360pt;}
._2{width:1.168640pt;}
._3{width:2.661547pt;}
._d{width:3.596373pt;}
._c{width:4.509653pt;}
._5{width:5.516587pt;}
._e{width:7.047680pt;}
._11{width:8.569600pt;}
._4{width:10.155307pt;}
._1a{width:11.370667pt;}
._14{width:12.405120pt;}
._6{width:13.518507pt;}
._7{width:14.410240pt;}
._f{width:15.549227pt;}
._1{width:17.072640pt;}
._10{width:19.877547pt;}
._13{width:21.120427pt;}
._1c{width:22.109867pt;}
._17{width:23.095253pt;}
._1b{width:24.138240pt;}
._b{width:25.167360pt;}
._16{width:26.850347pt;}
._8{width:28.631680pt;}
._9{width:29.615787pt;}
._a{width:30.597120pt;}
._1d{width:31.929600pt;}
._1e{width:32.960640pt;}
._1f{width:47.861120pt;}
._20{width:49.707947pt;}
._18{width:66.862080pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.720000pt;}
.y7c{bottom:2.880000pt;}
.y8b{bottom:2.920000pt;}
.y91{bottom:3.840000pt;}
.y83{bottom:19.040000pt;}
.y38{bottom:51.200000pt;}
.y37{bottom:69.152000pt;}
.y36{bottom:83.072000pt;}
.y35{bottom:116.192000pt;}
.y6e{bottom:116.672000pt;}
.y113{bottom:122.752000pt;}
.ye5{bottom:124.192000pt;}
.y112{bottom:132.032000pt;}
.y34{bottom:135.226667pt;}
.y109{bottom:136.506667pt;}
.y93{bottom:138.106667pt;}
.y6d{bottom:139.706667pt;}
.ye4{bottom:140.666667pt;}
.y33{bottom:144.186667pt;}
.ybf{bottom:147.226667pt;}
.y92{bottom:148.026667pt;}
.y6c{bottom:150.426667pt;}
.y108{bottom:150.586667pt;}
.y111{bottom:153.306667pt;}
.ye3{bottom:155.866667pt;}
.y107{bottom:159.066667pt;}
.y32{bottom:165.626667pt;}
.ybe{bottom:168.666667pt;}
.y6b{bottom:171.706667pt;}
.ye2{bottom:172.666667pt;}
.y31{bottom:174.906667pt;}
.y106{bottom:178.266667pt;}
.yf9{bottom:178.746667pt;}
.ybd{bottom:184.026667pt;}
.y6a{bottom:187.066667pt;}
.ye1{bottom:190.586667pt;}
.y105{bottom:193.306667pt;}
.ybc{bottom:194.106667pt;}
.y30{bottom:196.346667pt;}
.y110{bottom:199.386667pt;}
.ye0{bottom:200.986667pt;}
.yf8{bottom:201.626667pt;}
.y104{bottom:202.106667pt;}
.y90{bottom:204.986667pt;}
.y2f{bottom:211.706667pt;}
.ybb{bottom:212.826667pt;}
.y10f{bottom:214.746667pt;}
.y103{bottom:215.866667pt;}
.ydf{bottom:216.346667pt;}
.y69{bottom:217.786667pt;}
.y8f{bottom:221.946667pt;}
.y2e{bottom:226.906667pt;}
.yba{bottom:228.986667pt;}
.y10e{bottom:230.106667pt;}
.y68{bottom:233.146667pt;}
.yf7{bottom:233.946667pt;}
.y102{bottom:234.906667pt;}
.yde{bottom:236.986667pt;}
.y8e{bottom:238.746667pt;}
.y2d{bottom:242.266667pt;}
.y10d{bottom:244.506667pt;}
.y101{bottom:244.666667pt;}
.yb9{bottom:245.146667pt;}
.y67{bottom:248.506667pt;}
.yf6{bottom:250.106667pt;}
.y2c{bottom:252.346667pt;}
.ydd{bottom:253.146667pt;}
.y10c{bottom:254.586667pt;}
.y8d{bottom:255.546667pt;}
.yb8{bottom:261.306667pt;}
.ydc{bottom:262.266667pt;}
.y100{bottom:263.066667pt;}
.y66{bottom:263.706667pt;}
.yf5{bottom:266.426667pt;}
.y8c{bottom:272.506667pt;}
.y10b{bottom:275.226667pt;}
.yb7{bottom:277.626667pt;}
.y2b{bottom:278.586667pt;}
.y65{bottom:279.066667pt;}
.yff{bottom:279.386667pt;}
.yf4{bottom:282.586667pt;}
.ydb{bottom:285.146667pt;}
.y10a{bottom:286.106667pt;}
.y64{bottom:289.146667pt;}
.y8a{bottom:289.306667pt;}
.yb6{bottom:293.826667pt;}
.y2a{bottom:294.786667pt;}
.yfe{bottom:295.586667pt;}
.yf3{bottom:298.786667pt;}
.yda{bottom:301.666667pt;}
.y89{bottom:306.306667pt;}
.yb5{bottom:309.986667pt;}
.yd9{bottom:310.946667pt;}
.y29{bottom:311.106667pt;}
.y63{bottom:311.746667pt;}
.yfd{bottom:312.386667pt;}
.yf2{bottom:315.106667pt;}
.y88{bottom:325.986667pt;}
.yb4{bottom:326.146667pt;}
.y28{bottom:327.266667pt;}
.y62{bottom:328.066667pt;}
.yf1{bottom:331.266667pt;}
.yd8{bottom:332.386667pt;}
.yd7{bottom:341.666667pt;}
.y87{bottom:342.146667pt;}
.yb3{bottom:342.466667pt;}
.y61{bottom:344.226667pt;}
.y27{bottom:344.546667pt;}
.yf0{bottom:347.426667pt;}
.y86{bottom:358.306667pt;}
.yb2{bottom:358.626667pt;}
.y60{bottom:360.386667pt;}
.yd6{bottom:362.946667pt;}
.yef{bottom:363.586667pt;}
.y26{bottom:364.866667pt;}
.yd5{bottom:372.226667pt;}
.y85{bottom:374.466667pt;}
.yb1{bottom:374.786667pt;}
.y5f{bottom:376.546667pt;}
.yee{bottom:379.906667pt;}
.y84{bottom:388.706667pt;}
.yb0{bottom:391.106667pt;}
.y5e{bottom:392.866667pt;}
.yd4{bottom:393.666667pt;}
.yed{bottom:396.066667pt;}
.y25{bottom:402.466667pt;}
.yd3{bottom:403.746667pt;}
.y82{bottom:405.506667pt;}
.yaf{bottom:407.586667pt;}
.y5d{bottom:409.026667pt;}
.yec{bottom:412.226667pt;}
.y24{bottom:418.786667pt;}
.yae{bottom:423.746667pt;}
.y5c{bottom:425.186667pt;}
.yfc{bottom:428.386667pt;}
.yeb{bottom:428.546667pt;}
.y23{bottom:434.946667pt;}
.yd2{bottom:435.746667pt;}
.y81{bottom:438.626667pt;}
.yad{bottom:440.066667pt;}
.y5b{bottom:441.506667pt;}
.yea{bottom:444.706667pt;}
.y22{bottom:451.906667pt;}
.y80{bottom:455.426667pt;}
.yac{bottom:456.226667pt;}
.y5a{bottom:457.666667pt;}
.ye9{bottom:460.866667pt;}
.yd1{bottom:468.226667pt;}
.y21{bottom:470.626667pt;}
.y7f{bottom:472.386667pt;}
.y59{bottom:473.826667pt;}
.ye8{bottom:477.026667pt;}
.yd0{bottom:484.386667pt;}
.y20{bottom:486.786667pt;}
.yab{bottom:488.546667pt;}
.y7d{bottom:489.186667pt;}
.y58{bottom:489.986667pt;}
.yfb{bottom:493.186667pt;}
.ye7{bottom:493.346667pt;}
.ycf{bottom:500.546667pt;}
.y1f{bottom:502.946667pt;}
.yaa{bottom:504.866667pt;}
.y7b{bottom:505.986667pt;}
.y57{bottom:506.306667pt;}
.ye6{bottom:509.506667pt;}
.yce{bottom:516.546667pt;}
.y1e{bottom:519.266667pt;}
.ya9{bottom:521.026667pt;}
.y56{bottom:522.466667pt;}
.y7a{bottom:525.666667pt;}
.ycd{bottom:532.893333pt;}
.y1d{bottom:535.453333pt;}
.ya8{bottom:537.213333pt;}
.y55{bottom:538.653333pt;}
.y79{bottom:541.853333pt;}
.y1c{bottom:551.613333pt;}
.ya7{bottom:553.533333pt;}
.y54{bottom:554.813333pt;}
.y78{bottom:558.173333pt;}
.y1b{bottom:567.933333pt;}
.ya6{bottom:569.693333pt;}
.y53{bottom:571.133333pt;}
.y77{bottom:574.333333pt;}
.yfa{bottom:574.493333pt;}
.y1a{bottom:584.093333pt;}
.ya5{bottom:585.853333pt;}
.y52{bottom:587.293333pt;}
.y76{bottom:590.493333pt;}
.y19{bottom:600.253333pt;}
.ya4{bottom:602.013333pt;}
.y51{bottom:603.453333pt;}
.y75{bottom:606.813333pt;}
.y18{bottom:616.413333pt;}
.ya3{bottom:618.333333pt;}
.y50{bottom:619.773333pt;}
.y74{bottom:622.973333pt;}
.ycc{bottom:632.733333pt;}
.y17{bottom:633.373333pt;}
.ya2{bottom:634.493333pt;}
.y4f{bottom:635.933333pt;}
.y73{bottom:639.133333pt;}
.ycb{bottom:648.893333pt;}
.ya1{bottom:650.653333pt;}
.y16{bottom:651.933333pt;}
.y4e{bottom:652.093333pt;}
.y72{bottom:655.293333pt;}
.yca{bottom:665.053333pt;}
.ya0{bottom:666.973333pt;}
.y15{bottom:667.453333pt;}
.y4d{bottom:668.253333pt;}
.y71{bottom:671.613333pt;}
.yc9{bottom:681.213333pt;}
.y9f{bottom:683.133333pt;}
.y14{bottom:684.413333pt;}
.y4c{bottom:684.573333pt;}
.y70{bottom:687.773333pt;}
.yc8{bottom:697.533333pt;}
.y9e{bottom:699.293333pt;}
.y4b{bottom:701.373333pt;}
.y13{bottom:703.133333pt;}
.y6f{bottom:703.933333pt;}
.yc7{bottom:713.693333pt;}
.y9d{bottom:715.453333pt;}
.y12{bottom:719.293333pt;}
.y4a{bottom:720.253333pt;}
.yc6{bottom:729.853333pt;}
.y9c{bottom:731.773333pt;}
.y11{bottom:735.613333pt;}
.y49{bottom:736.413333pt;}
.yc5{bottom:746.173333pt;}
.y9b{bottom:747.933333pt;}
.y10{bottom:751.773333pt;}
.y48{bottom:752.573333pt;}
.yc4{bottom:762.333333pt;}
.y9a{bottom:764.093333pt;}
.yf{bottom:767.973333pt;}
.y47{bottom:768.773333pt;}
.y99{bottom:778.213333pt;}
.yc3{bottom:778.533333pt;}
.ye{bottom:784.293333pt;}
.y46{bottom:785.093333pt;}
.yc2{bottom:794.693333pt;}
.y98{bottom:795.173333pt;}
.yd{bottom:800.453333pt;}
.y45{bottom:801.253333pt;}
.yc1{bottom:811.653333pt;}
.y97{bottom:811.973333pt;}
.yc{bottom:816.613333pt;}
.y44{bottom:817.413333pt;}
.y96{bottom:828.933333pt;}
.yc0{bottom:831.013333pt;}
.yb{bottom:832.773333pt;}
.y43{bottom:833.573333pt;}
.y95{bottom:845.733333pt;}
.ya{bottom:849.733333pt;}
.y42{bottom:849.893333pt;}
.y94{bottom:862.693333pt;}
.y41{bottom:866.053333pt;}
.y9{bottom:868.293333pt;}
.y40{bottom:882.213333pt;}
.y8{bottom:883.653333pt;}
.y3f{bottom:898.533333pt;}
.y7{bottom:899.333333pt;}
.y3e{bottom:914.693333pt;}
.y6{bottom:915.493333pt;}
.y3d{bottom:930.853333pt;}
.y5{bottom:932.293333pt;}
.y3c{bottom:947.013333pt;}
.y4{bottom:951.013333pt;}
.y3b{bottom:963.333333pt;}
.y3{bottom:967.813333pt;}
.y3a{bottom:979.493333pt;}
.y2{bottom:990.533333pt;}
.y39{bottom:995.653333pt;}
.y1{bottom:1065.600000pt;}
.h15{height:16.160000pt;}
.h14{height:16.320000pt;}
.h17{height:16.352000pt;}
.h18{height:17.280000pt;}
.h1a{height:25.320625pt;}
.hf{height:31.406250pt;}
.h1c{height:31.856250pt;}
.h16{height:32.480000pt;}
.hd{height:33.918750pt;}
.h1b{height:34.530000pt;}
.hc{height:40.163750pt;}
.h2{height:44.722500pt;}
.h10{height:47.109375pt;}
.h4{height:50.584688pt;}
.he{height:52.134375pt;}
.h6{height:53.145938pt;}
.ha{height:53.846250pt;}
.h13{height:55.298750pt;}
.h11{height:55.402500pt;}
.hb{height:58.740000pt;}
.h9{height:58.896875pt;}
.h19{height:61.410000pt;}
.h8{height:64.031250pt;}
.h7{height:64.875000pt;}
.h12{height:66.750000pt;}
.h5{height:72.906250pt;}
.h3{height:75.903750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:277.986667pt;}
.w2{width:278.146667pt;}
.w4{width:546.693333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x5{left:125.472000pt;}
.x1{left:132.352000pt;}
.x2{left:156.346667pt;}
.x9{left:160.826667pt;}
.x8{left:180.346667pt;}
.x4{left:402.653333pt;}
.x7{left:404.253333pt;}
.x3{left:756.480000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  