
    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_049c8b6d3f10439cb7114917.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_0f92b2f46f2bb8274c133888.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_321143acd96ac7ef23aba3ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_5102057348bd2e1afe59e4c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_e63908ee329191b105a56c08.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_fa824d27f0ce1e56039d3a8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_d3d29d5131cd51889ed6b541.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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_3f29c0191d5a1970a05fb57a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_a4df56b77bfc3d9fc2cfd993.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_fb79f1f79be353287c1ae56d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_c8d72352d3678378352fffed.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_f88eac9936f142f2abfa4134.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_81a17b5ec97b8fb0e0fa2e4f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.983398;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_a2586128619be29fede4a525.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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:ff14;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.298200px;}
.ls12{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.127200px;}
.ls18{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls7{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.087600px;}
.ls16{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.786240px;}
.ls11{letter-spacing:7.380000px;}
.ls19{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls17{letter-spacing:64.170720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-16.272000px;}
.ws8{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.ws12{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.482000px;}
.ws7{word-spacing:-12.854880px;}
.ws5{word-spacing:-12.258000px;}
.ws4{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.wsd{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._c{margin-left:-6.513840px;}
._3{margin-left:-5.497200px;}
._4{margin-left:-4.487520px;}
._2{margin-left:-2.939760px;}
._0{margin-left:-1.188000px;}
._1{width:1.188000px;}
._5{width:2.585280px;}
._13{width:4.183200px;}
._b{width:5.258880px;}
._8{width:6.358320px;}
._a{width:7.700880px;}
._9{width:8.730480px;}
._6{width:9.979920px;}
._14{width:11.008560px;}
._7{width:12.011760px;}
._d{width:13.572720px;}
._11{width:16.082640px;}
._12{width:18.047520px;}
._10{width:22.129920px;}
._f{width:23.293440px;}
._15{width:29.160000px;}
._e{width:31.799520px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs9{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yae{bottom:2.880000px;}
.y9b{bottom:3.060000px;}
.y47{bottom:3.240000px;}
.y4d{bottom:3.960000px;}
.y19{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y3{bottom:18.180000px;}
.y46{bottom:20.565000px;}
.y4c{bottom:22.320000px;}
.y5{bottom:24.840000px;}
.y4a{bottom:28.980000px;}
.y18{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y4{bottom:34.596000px;}
.y2{bottom:37.296000px;}
.y45{bottom:37.845000px;}
.y4b{bottom:40.500000px;}
.y17{bottom:42.165000px;}
.y49{bottom:43.560000px;}
.ya{bottom:46.620000px;}
.y1{bottom:47.340000px;}
.y44{bottom:55.125000px;}
.y16{bottom:62.325000px;}
.y43{bottom:72.225000px;}
.y9{bottom:73.470000px;}
.y15{bottom:78.885000px;}
.y42{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y14{bottom:94.725000px;}
.y13{bottom:105.165000px;}
.y41{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.y95{bottom:113.256000px;}
.y15a{bottom:113.976000px;}
.ye7{bottom:116.496000px;}
.yf2{bottom:117.036000px;}
.y56{bottom:121.896000px;}
.yb4{bottom:122.616000px;}
.y12{bottom:123.345000px;}
.y40{bottom:124.065000px;}
.yce{bottom:127.656000px;}
.y94{bottom:129.816000px;}
.y159{bottom:130.536000px;}
.yf1{bottom:131.256000px;}
.ye6{bottom:133.416000px;}
.y11c{bottom:133.596000px;}
.yb3{bottom:136.836000px;}
.yf0{bottom:138.276000px;}
.y55{bottom:138.996000px;}
.ycd{bottom:140.256000px;}
.y3f{bottom:141.345000px;}
.y11{bottom:142.425000px;}
.yb2{bottom:143.856000px;}
.ye5{bottom:146.016000px;}
.y93{bottom:146.376000px;}
.y158{bottom:147.096000px;}
.y11b{bottom:150.150000px;}
.y54{bottom:156.270000px;}
.y3e{bottom:158.625000px;}
.y92{bottom:162.930000px;}
.y157{bottom:163.650000px;}
.y11a{bottom:166.710000px;}
.y10{bottom:166.725000px;}
.y53{bottom:173.550000px;}
.y3d{bottom:175.725000px;}
.yff{bottom:176.070000px;}
.y91{bottom:179.310000px;}
.y156{bottom:180.210000px;}
.y119{bottom:183.270000px;}
.y52{bottom:190.830000px;}
.yfe{bottom:192.990000px;}
.y3c{bottom:193.005000px;}
.y90{bottom:195.870000px;}
.y155{bottom:197.490000px;}
.y118{bottom:199.830000px;}
.yfd{bottom:207.210000px;}
.y51{bottom:208.110000px;}
.y3b{bottom:210.285000px;}
.y8f{bottom:212.430000px;}
.yfc{bottom:214.230000px;}
.y154{bottom:214.770000px;}
.y117{bottom:221.430000px;}
.y50{bottom:225.390000px;}
.y3a{bottom:227.565000px;}
.y8e{bottom:228.990000px;}
.y153{bottom:232.050000px;}
.y116{bottom:232.770000px;}
.y4f{bottom:242.490000px;}
.y39{bottom:244.845000px;}
.y8d{bottom:245.550000px;}
.y152{bottom:249.150000px;}
.y115{bottom:249.330000px;}
.y2a{bottom:251.325000px;}
.y4e{bottom:260.490000px;}
.y8c{bottom:262.110000px;}
.y38{bottom:262.125000px;}
.y151{bottom:265.710000px;}
.y29{bottom:266.625000px;}
.y114{bottom:266.970000px;}
.y48{bottom:274.890000px;}
.y8b{bottom:278.490000px;}
.y37{bottom:279.255000px;}
.y150{bottom:282.090000px;}
.y113{bottom:283.530000px;}
.y28{bottom:284.295000px;}
.y8a{bottom:295.050000px;}
.y36{bottom:296.535000px;}
.y14f{bottom:298.650000px;}
.y112{bottom:301.170000px;}
.y27{bottom:301.575000px;}
.y89{bottom:311.790000px;}
.y35{bottom:313.815000px;}
.y14e{bottom:315.210000px;}
.y111{bottom:317.550000px;}
.y26{bottom:318.675000px;}
.y88{bottom:329.070000px;}
.y1c{bottom:329.790000px;}
.y34{bottom:331.095000px;}
.y14d{bottom:331.770000px;}
.y110{bottom:335.190000px;}
.y25{bottom:336.495000px;}
.y87{bottom:346.395000px;}
.y33{bottom:348.375000px;}
.y10f{bottom:351.795000px;}
.y24{bottom:353.955000px;}
.y86{bottom:363.675000px;}
.y14c{bottom:364.935000px;}
.y32{bottom:365.475000px;}
.y10e{bottom:369.435000px;}
.y23{bottom:371.415000px;}
.y85{bottom:380.775000px;}
.y14b{bottom:381.315000px;}
.y31{bottom:382.755000px;}
.y10d{bottom:385.995000px;}
.y22{bottom:388.695000px;}
.y14a{bottom:397.875000px;}
.y84{bottom:398.055000px;}
.y30{bottom:400.035000px;}
.y10c{bottom:403.635000px;}
.y21{bottom:406.155000px;}
.y149{bottom:414.435000px;}
.y83{bottom:415.335000px;}
.y2f{bottom:417.315000px;}
.y10b{bottom:420.015000px;}
.y20{bottom:423.435000px;}
.y148{bottom:430.995000px;}
.y82{bottom:432.615000px;}
.yef{bottom:434.055000px;}
.y2e{bottom:434.595000px;}
.y10a{bottom:436.575000px;}
.ycc{bottom:438.195000px;}
.y1f{bottom:443.775000px;}
.y147{bottom:447.555000px;}
.y81{bottom:449.895000px;}
.yee{bottom:450.975000px;}
.y2d{bottom:451.875000px;}
.ycb{bottom:452.955000px;}
.yb1{bottom:453.135000px;}
.ye4{bottom:457.635000px;}
.y146{bottom:464.115000px;}
.yed{bottom:465.195000px;}
.y80{bottom:467.175000px;}
.yb0{bottom:467.895000px;}
.y2c{bottom:468.975000px;}
.yca{bottom:469.155000px;}
.y109{bottom:469.695000px;}
.y1e{bottom:471.315000px;}
.yec{bottom:472.215000px;}
.ye3{bottom:472.395000px;}
.y145{bottom:480.495000px;}
.yaf{bottom:484.095000px;}
.yc9{bottom:485.535000px;}
.y2b{bottom:486.255000px;}
.ye2{bottom:488.595000px;}
.y1d{bottom:488.955000px;}
.y7f{bottom:489.495000px;}
.y144{bottom:497.055000px;}
.yad{bottom:500.475000px;}
.y7e{bottom:501.555000px;}
.y108{bottom:502.815000px;}
.yc8{bottom:503.355000px;}
.ye1{bottom:504.795000px;}
.yc7{bottom:513.255000px;}
.y143{bottom:513.615000px;}
.yfb{bottom:516.675000px;}
.yac{bottom:518.295000px;}
.y7d{bottom:518.835000px;}
.y107{bottom:519.195000px;}
.ye0{bottom:521.175000px;}
.yab{bottom:528.195000px;}
.yc6{bottom:529.095000px;}
.y142{bottom:530.175000px;}
.yfa{bottom:533.595000px;}
.y106{bottom:535.575000px;}
.y7c{bottom:536.115000px;}
.ydf{bottom:538.995000px;}
.yaa{bottom:544.035000px;}
.yc5{bottom:546.375000px;}
.y141{bottom:546.735000px;}
.yf9{bottom:547.815000px;}
.yde{bottom:548.895000px;}
.y105{bottom:549.795000px;}
.y7b{bottom:553.395000px;}
.yf8{bottom:554.835000px;}
.y104{bottom:556.815000px;}
.ya9{bottom:561.315000px;}
.y140{bottom:563.295000px;}
.yc4{bottom:563.655000px;}
.ydd{bottom:564.735000px;}
.y7a{bottom:570.675000px;}
.ya8{bottom:578.595000px;}
.y13f{bottom:579.675000px;}
.yc3{bottom:580.935000px;}
.ydc{bottom:582.015000px;}
.y79{bottom:587.775000px;}
.ya7{bottom:595.875000px;}
.y13e{bottom:596.235000px;}
.yc2{bottom:598.215000px;}
.ydb{bottom:599.295000px;}
.y78{bottom:605.085000px;}
.y13d{bottom:612.825000px;}
.ya6{bottom:613.185000px;}
.yc1{bottom:615.525000px;}
.yda{bottom:616.605000px;}
.y77{bottom:622.365000px;}
.y13c{bottom:629.385000px;}
.ya5{bottom:630.465000px;}
.yc0{bottom:632.625000px;}
.yd9{bottom:633.885000px;}
.y76{bottom:639.645000px;}
.y13b{bottom:645.945000px;}
.ya4{bottom:647.565000px;}
.ybf{bottom:649.905000px;}
.yd8{bottom:650.985000px;}
.y75{bottom:656.925000px;}
.y13a{bottom:662.505000px;}
.ya3{bottom:664.845000px;}
.ybe{bottom:666.825000px;}
.yd7{bottom:668.085000px;}
.y74{bottom:674.025000px;}
.y139{bottom:678.885000px;}
.yd6{bottom:680.685000px;}
.ybd{bottom:681.045000px;}
.ya2{bottom:682.125000px;}
.ybc{bottom:688.065000px;}
.y73{bottom:691.305000px;}
.y138{bottom:695.445000px;}
.ya1{bottom:699.045000px;}
.y72{bottom:708.585000px;}
.y137{bottom:712.005000px;}
.ya0{bottom:713.265000px;}
.y9f{bottom:720.285000px;}
.y71{bottom:725.865000px;}
.y136{bottom:728.565000px;}
.y70{bottom:743.145000px;}
.y135{bottom:745.125000px;}
.y6f{bottom:760.425000px;}
.y134{bottom:761.685000px;}
.yeb{bottom:772.125000px;}
.y6e{bottom:777.525000px;}
.y133{bottom:778.065000px;}
.yea{bottom:787.605000px;}
.y132{bottom:794.625000px;}
.y6d{bottom:794.805000px;}
.ye9{bottom:801.825000px;}
.ye8{bottom:808.845000px;}
.y131{bottom:811.185000px;}
.y6c{bottom:812.085000px;}
.y130{bottom:827.745000px;}
.y6b{bottom:829.365000px;}
.y1a{bottom:830.085000px;}
.yf7{bottom:839.085000px;}
.y12f{bottom:844.305000px;}
.y6a{bottom:846.645000px;}
.yf6{bottom:854.565000px;}
.yf{bottom:859.605000px;}
.y12e{bottom:860.865000px;}
.y69{bottom:863.925000px;}
.yf5{bottom:868.785000px;}
.y103{bottom:870.405000px;}
.yf4{bottom:875.850000px;}
.y12d{bottom:877.290000px;}
.y68{bottom:881.070000px;}
.y102{bottom:885.930000px;}
.y12c{bottom:893.850000px;}
.y67{bottom:898.350000px;}
.y101{bottom:900.150000px;}
.y100{bottom:907.170000px;}
.y12b{bottom:910.410000px;}
.y66{bottom:915.630000px;}
.y12a{bottom:926.970000px;}
.y65{bottom:932.910000px;}
.y129{bottom:943.530000px;}
.y64{bottom:950.190000px;}
.y128{bottom:960.090000px;}
.ybb{bottom:963.690000px;}
.y63{bottom:967.470000px;}
.y127{bottom:976.470000px;}
.yba{bottom:978.450000px;}
.yd5{bottom:980.970000px;}
.y62{bottom:984.570000px;}
.y126{bottom:993.030000px;}
.yb9{bottom:994.650000px;}
.yd4{bottom:995.730000px;}
.y61{bottom:1001.850000px;}
.y125{bottom:1009.590000px;}
.yb8{bottom:1011.030000px;}
.yd3{bottom:1011.930000px;}
.y60{bottom:1019.130000px;}
.y124{bottom:1026.150000px;}
.yb7{bottom:1027.230000px;}
.yd2{bottom:1028.130000px;}
.y5f{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y123{bottom:1042.710000px;}
.yd1{bottom:1044.510000px;}
.yb6{bottom:1045.050000px;}
.y5e{bottom:1053.690000px;}
.yb5{bottom:1054.950000px;}
.y122{bottom:1059.270000px;}
.yd0{bottom:1062.330000px;}
.y9e{bottom:1065.570000px;}
.y6{bottom:1066.830000px;}
.y5d{bottom:1070.790000px;}
.ycf{bottom:1072.230000px;}
.y121{bottom:1075.650000px;}
.y9d{bottom:1080.330000px;}
.y5c{bottom:1088.070000px;}
.y120{bottom:1092.210000px;}
.y9c{bottom:1097.610000px;}
.y5b{bottom:1105.350000px;}
.y11f{bottom:1108.770000px;}
.y9a{bottom:1114.890000px;}
.y5a{bottom:1122.630000px;}
.y11e{bottom:1125.330000px;}
.y99{bottom:1133.790000px;}
.y59{bottom:1139.940000px;}
.y11d{bottom:1141.920000px;}
.y98{bottom:1143.360000px;}
.y58{bottom:1157.220000px;}
.y97{bottom:1158.480000px;}
.y57{bottom:1174.320000px;}
.y96{bottom:1174.860000px;}
.yf3{bottom:1175.760000px;}
.h26{height:15.480000px;}
.h28{height:15.660000px;}
.h24{height:16.560000px;}
.h25{height:21.336328px;}
.h23{height:21.867891px;}
.hb{height:25.020000px;}
.h20{height:28.115859px;}
.h14{height:29.520000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h27{height:38.100586px;}
.h12{height:38.589961px;}
.h1b{height:38.818125px;}
.h22{height:39.049805px;}
.h1e{height:42.164648px;}
.h1a{height:42.281367px;}
.h1c{height:43.215117px;}
.h4{height:43.453125px;}
.h21{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1f{height:48.995859px;}
.h2{height:50.256000px;}
.h13{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:54.900000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:181.830000px;}
.h16{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w11{width:92.196000px;}
.w12{width:112.680000px;}
.we{width:127.440000px;}
.w5{width:151.950000px;}
.wf{width:156.060000px;}
.w19{width:160.410000px;}
.w1a{width:196.050000px;}
.w14{width:205.050000px;}
.wb{width:212.250000px;}
.w8{width:216.075000px;}
.w15{width:250.590000px;}
.wa{width:255.855000px;}
.wc{width:259.950000px;}
.w16{width:266.115000px;}
.w13{width:272.415000px;}
.w18{width:371.775000px;}
.wd{width:444.705000px;}
.w17{width:462.675000px;}
.w9{width:515.055000px;}
.w10{width:523.365000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.x30{left:28.080000px;}
.xe{left:34.776000px;}
.xb{left:37.296000px;}
.x31{left:39.240000px;}
.x24{left:45.720000px;}
.x26{left:55.800000px;}
.x28{left:56.880000px;}
.x29{left:60.480000px;}
.xd{left:61.776000px;}
.x49{left:73.470000px;}
.x47{left:75.825000px;}
.x1{left:81.000000px;}
.x37{left:84.420000px;}
.x18{left:86.220000px;}
.x40{left:91.650000px;}
.x3a{left:95.760000px;}
.x4{left:98.130000px;}
.x1d{left:102.420000px;}
.x16{left:103.710000px;}
.x1a{left:105.345000px;}
.x14{left:108.035987px;}
.x1c{left:110.565000px;}
.x1b{left:112.350000px;}
.x39{left:114.330000px;}
.x3b{left:118.110000px;}
.x3e{left:120.630000px;}
.x10{left:122.250000px;}
.x42{left:124.410000px;}
.xc{left:137.370000px;}
.x4a{left:144.750000px;}
.x4b{left:148.890000px;}
.x48{left:157.530000px;}
.x27{left:158.790000px;}
.x33{left:180.210000px;}
.x32{left:187.410000px;}
.x2a{left:190.470000px;}
.x22{left:207.615000px;}
.x11{left:215.175000px;}
.x43{left:221.070000px;}
.x41{left:224.490000px;}
.x2e{left:228.135000px;}
.x5{left:232.950000px;}
.xf{left:249.915000px;}
.x54{left:268.049987px;}
.x8{left:272.235000px;}
.x51{left:283.934987px;}
.x12{left:297.075000px;}
.x58{left:300.674987px;}
.x2d{left:307.874987px;}
.x15{left:313.454987px;}
.x36{left:316.694987px;}
.x4f{left:318.134987px;}
.x21{left:323.534987px;}
.x52{left:324.614987px;}
.x6{left:331.995000px;}
.x55{left:336.314987px;}
.x17{left:338.295000px;}
.x3f{left:348.735000px;}
.x20{left:349.994987px;}
.x7{left:351.255000px;}
.x2c{left:355.574987px;}
.x44{left:363.134987px;}
.xa{left:365.475000px;}
.x3d{left:372.134987px;}
.x35{left:382.754987px;}
.x9{left:439.500000px;}
.x1e{left:446.474987px;}
.x45{left:454.215000px;}
.x23{left:527.145000px;}
.x19{left:551.445000px;}
.x38{left:560.805000px;}
.x2f{left:605.805000px;}
.x46{left:615.345000px;}
.x50{left:651.704987px;}
.x4e{left:653.504987px;}
.x25{left:655.350000px;}
.x57{left:668.129987px;}
.x4d{left:676.049987px;}
.x34{left:679.469987px;}
.x3c{left:691.889987px;}
.x2b{left:699.629987px;}
.x4c{left:703.049987px;}
.x1f{left:732.389987px;}
.x3{left:739.050000px;}
.x53{left:760.469987px;}
.x56{left:784.049987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.265067pt;}
.ls12{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls7{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.077867pt;}
.ls16{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls11{letter-spacing:6.560000pt;}
.ls19{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls17{letter-spacing:57.040640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-14.464000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.112000pt;}
.wsc{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.984000pt;}
.ws7{word-spacing:-11.426560pt;}
.ws5{word-spacing:-10.896000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsd{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._c{margin-left:-5.790080pt;}
._3{margin-left:-4.886400pt;}
._4{margin-left:-3.988907pt;}
._2{margin-left:-2.613120pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.056000pt;}
._5{width:2.298027pt;}
._13{width:3.718400pt;}
._b{width:4.674560pt;}
._8{width:5.651840pt;}
._a{width:6.845227pt;}
._9{width:7.760427pt;}
._6{width:8.871040pt;}
._14{width:9.785387pt;}
._7{width:10.677120pt;}
._d{width:12.064640pt;}
._11{width:14.295680pt;}
._12{width:16.042240pt;}
._10{width:19.671040pt;}
._f{width:20.705280pt;}
._15{width:25.920000pt;}
._e{width:28.266240pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:2.560000pt;}
.y9b{bottom:2.720000pt;}
.y47{bottom:2.880000pt;}
.y4d{bottom:3.520000pt;}
.y19{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y3{bottom:16.160000pt;}
.y46{bottom:18.280000pt;}
.y4c{bottom:19.840000pt;}
.y5{bottom:22.080000pt;}
.y4a{bottom:25.760000pt;}
.y18{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y4{bottom:30.752000pt;}
.y2{bottom:33.152000pt;}
.y45{bottom:33.640000pt;}
.y4b{bottom:36.000000pt;}
.y17{bottom:37.480000pt;}
.y49{bottom:38.720000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:42.080000pt;}
.y44{bottom:49.000000pt;}
.y16{bottom:55.400000pt;}
.y43{bottom:64.200000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:70.120000pt;}
.y42{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y14{bottom:84.200000pt;}
.y13{bottom:93.480000pt;}
.y41{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.y95{bottom:100.672000pt;}
.y15a{bottom:101.312000pt;}
.ye7{bottom:103.552000pt;}
.yf2{bottom:104.032000pt;}
.y56{bottom:108.352000pt;}
.yb4{bottom:108.992000pt;}
.y12{bottom:109.640000pt;}
.y40{bottom:110.280000pt;}
.yce{bottom:113.472000pt;}
.y94{bottom:115.392000pt;}
.y159{bottom:116.032000pt;}
.yf1{bottom:116.672000pt;}
.ye6{bottom:118.592000pt;}
.y11c{bottom:118.752000pt;}
.yb3{bottom:121.632000pt;}
.yf0{bottom:122.912000pt;}
.y55{bottom:123.552000pt;}
.ycd{bottom:124.672000pt;}
.y3f{bottom:125.640000pt;}
.y11{bottom:126.600000pt;}
.yb2{bottom:127.872000pt;}
.ye5{bottom:129.792000pt;}
.y93{bottom:130.112000pt;}
.y158{bottom:130.752000pt;}
.y11b{bottom:133.466667pt;}
.y54{bottom:138.906667pt;}
.y3e{bottom:141.000000pt;}
.y92{bottom:144.826667pt;}
.y157{bottom:145.466667pt;}
.y11a{bottom:148.186667pt;}
.y10{bottom:148.200000pt;}
.y53{bottom:154.266667pt;}
.y3d{bottom:156.200000pt;}
.yff{bottom:156.506667pt;}
.y91{bottom:159.386667pt;}
.y156{bottom:160.186667pt;}
.y119{bottom:162.906667pt;}
.y52{bottom:169.626667pt;}
.yfe{bottom:171.546667pt;}
.y3c{bottom:171.560000pt;}
.y90{bottom:174.106667pt;}
.y155{bottom:175.546667pt;}
.y118{bottom:177.626667pt;}
.yfd{bottom:184.186667pt;}
.y51{bottom:184.986667pt;}
.y3b{bottom:186.920000pt;}
.y8f{bottom:188.826667pt;}
.yfc{bottom:190.426667pt;}
.y154{bottom:190.906667pt;}
.y117{bottom:196.826667pt;}
.y50{bottom:200.346667pt;}
.y3a{bottom:202.280000pt;}
.y8e{bottom:203.546667pt;}
.y153{bottom:206.266667pt;}
.y116{bottom:206.906667pt;}
.y4f{bottom:215.546667pt;}
.y39{bottom:217.640000pt;}
.y8d{bottom:218.266667pt;}
.y152{bottom:221.466667pt;}
.y115{bottom:221.626667pt;}
.y2a{bottom:223.400000pt;}
.y4e{bottom:231.546667pt;}
.y8c{bottom:232.986667pt;}
.y38{bottom:233.000000pt;}
.y151{bottom:236.186667pt;}
.y29{bottom:237.000000pt;}
.y114{bottom:237.306667pt;}
.y48{bottom:244.346667pt;}
.y8b{bottom:247.546667pt;}
.y37{bottom:248.226667pt;}
.y150{bottom:250.746667pt;}
.y113{bottom:252.026667pt;}
.y28{bottom:252.706667pt;}
.y8a{bottom:262.266667pt;}
.y36{bottom:263.586667pt;}
.y14f{bottom:265.466667pt;}
.y112{bottom:267.706667pt;}
.y27{bottom:268.066667pt;}
.y89{bottom:277.146667pt;}
.y35{bottom:278.946667pt;}
.y14e{bottom:280.186667pt;}
.y111{bottom:282.266667pt;}
.y26{bottom:283.266667pt;}
.y88{bottom:292.506667pt;}
.y1c{bottom:293.146667pt;}
.y34{bottom:294.306667pt;}
.y14d{bottom:294.906667pt;}
.y110{bottom:297.946667pt;}
.y25{bottom:299.106667pt;}
.y87{bottom:307.906667pt;}
.y33{bottom:309.666667pt;}
.y10f{bottom:312.706667pt;}
.y24{bottom:314.626667pt;}
.y86{bottom:323.266667pt;}
.y14c{bottom:324.386667pt;}
.y32{bottom:324.866667pt;}
.y10e{bottom:328.386667pt;}
.y23{bottom:330.146667pt;}
.y85{bottom:338.466667pt;}
.y14b{bottom:338.946667pt;}
.y31{bottom:340.226667pt;}
.y10d{bottom:343.106667pt;}
.y22{bottom:345.506667pt;}
.y14a{bottom:353.666667pt;}
.y84{bottom:353.826667pt;}
.y30{bottom:355.586667pt;}
.y10c{bottom:358.786667pt;}
.y21{bottom:361.026667pt;}
.y149{bottom:368.386667pt;}
.y83{bottom:369.186667pt;}
.y2f{bottom:370.946667pt;}
.y10b{bottom:373.346667pt;}
.y20{bottom:376.386667pt;}
.y148{bottom:383.106667pt;}
.y82{bottom:384.546667pt;}
.yef{bottom:385.826667pt;}
.y2e{bottom:386.306667pt;}
.y10a{bottom:388.066667pt;}
.ycc{bottom:389.506667pt;}
.y1f{bottom:394.466667pt;}
.y147{bottom:397.826667pt;}
.y81{bottom:399.906667pt;}
.yee{bottom:400.866667pt;}
.y2d{bottom:401.666667pt;}
.ycb{bottom:402.626667pt;}
.yb1{bottom:402.786667pt;}
.ye4{bottom:406.786667pt;}
.y146{bottom:412.546667pt;}
.yed{bottom:413.506667pt;}
.y80{bottom:415.266667pt;}
.yb0{bottom:415.906667pt;}
.y2c{bottom:416.866667pt;}
.yca{bottom:417.026667pt;}
.y109{bottom:417.506667pt;}
.y1e{bottom:418.946667pt;}
.yec{bottom:419.746667pt;}
.ye3{bottom:419.906667pt;}
.y145{bottom:427.106667pt;}
.yaf{bottom:430.306667pt;}
.yc9{bottom:431.586667pt;}
.y2b{bottom:432.226667pt;}
.ye2{bottom:434.306667pt;}
.y1d{bottom:434.626667pt;}
.y7f{bottom:435.106667pt;}
.y144{bottom:441.826667pt;}
.yad{bottom:444.866667pt;}
.y7e{bottom:445.826667pt;}
.y108{bottom:446.946667pt;}
.yc8{bottom:447.426667pt;}
.ye1{bottom:448.706667pt;}
.yc7{bottom:456.226667pt;}
.y143{bottom:456.546667pt;}
.yfb{bottom:459.266667pt;}
.yac{bottom:460.706667pt;}
.y7d{bottom:461.186667pt;}
.y107{bottom:461.506667pt;}
.ye0{bottom:463.266667pt;}
.yab{bottom:469.506667pt;}
.yc6{bottom:470.306667pt;}
.y142{bottom:471.266667pt;}
.yfa{bottom:474.306667pt;}
.y106{bottom:476.066667pt;}
.y7c{bottom:476.546667pt;}
.ydf{bottom:479.106667pt;}
.yaa{bottom:483.586667pt;}
.yc5{bottom:485.666667pt;}
.y141{bottom:485.986667pt;}
.yf9{bottom:486.946667pt;}
.yde{bottom:487.906667pt;}
.y105{bottom:488.706667pt;}
.y7b{bottom:491.906667pt;}
.yf8{bottom:493.186667pt;}
.y104{bottom:494.946667pt;}
.ya9{bottom:498.946667pt;}
.y140{bottom:500.706667pt;}
.yc4{bottom:501.026667pt;}
.ydd{bottom:501.986667pt;}
.y7a{bottom:507.266667pt;}
.ya8{bottom:514.306667pt;}
.y13f{bottom:515.266667pt;}
.yc3{bottom:516.386667pt;}
.ydc{bottom:517.346667pt;}
.y79{bottom:522.466667pt;}
.ya7{bottom:529.666667pt;}
.y13e{bottom:529.986667pt;}
.yc2{bottom:531.746667pt;}
.ydb{bottom:532.706667pt;}
.y78{bottom:537.853333pt;}
.y13d{bottom:544.733333pt;}
.ya6{bottom:545.053333pt;}
.yc1{bottom:547.133333pt;}
.yda{bottom:548.093333pt;}
.y77{bottom:553.213333pt;}
.y13c{bottom:559.453333pt;}
.ya5{bottom:560.413333pt;}
.yc0{bottom:562.333333pt;}
.yd9{bottom:563.453333pt;}
.y76{bottom:568.573333pt;}
.y13b{bottom:574.173333pt;}
.ya4{bottom:575.613333pt;}
.ybf{bottom:577.693333pt;}
.yd8{bottom:578.653333pt;}
.y75{bottom:583.933333pt;}
.y13a{bottom:588.893333pt;}
.ya3{bottom:590.973333pt;}
.ybe{bottom:592.733333pt;}
.yd7{bottom:593.853333pt;}
.y74{bottom:599.133333pt;}
.y139{bottom:603.453333pt;}
.yd6{bottom:605.053333pt;}
.ybd{bottom:605.373333pt;}
.ya2{bottom:606.333333pt;}
.ybc{bottom:611.613333pt;}
.y73{bottom:614.493333pt;}
.y138{bottom:618.173333pt;}
.ya1{bottom:621.373333pt;}
.y72{bottom:629.853333pt;}
.y137{bottom:632.893333pt;}
.ya0{bottom:634.013333pt;}
.y9f{bottom:640.253333pt;}
.y71{bottom:645.213333pt;}
.y136{bottom:647.613333pt;}
.y70{bottom:660.573333pt;}
.y135{bottom:662.333333pt;}
.y6f{bottom:675.933333pt;}
.y134{bottom:677.053333pt;}
.yeb{bottom:686.333333pt;}
.y6e{bottom:691.133333pt;}
.y133{bottom:691.613333pt;}
.yea{bottom:700.093333pt;}
.y132{bottom:706.333333pt;}
.y6d{bottom:706.493333pt;}
.ye9{bottom:712.733333pt;}
.ye8{bottom:718.973333pt;}
.y131{bottom:721.053333pt;}
.y6c{bottom:721.853333pt;}
.y130{bottom:735.773333pt;}
.y6b{bottom:737.213333pt;}
.y1a{bottom:737.853333pt;}
.yf7{bottom:745.853333pt;}
.y12f{bottom:750.493333pt;}
.y6a{bottom:752.573333pt;}
.yf6{bottom:759.613333pt;}
.yf{bottom:764.093333pt;}
.y12e{bottom:765.213333pt;}
.y69{bottom:767.933333pt;}
.yf5{bottom:772.253333pt;}
.y103{bottom:773.693333pt;}
.yf4{bottom:778.533333pt;}
.y12d{bottom:779.813333pt;}
.y68{bottom:783.173333pt;}
.y102{bottom:787.493333pt;}
.y12c{bottom:794.533333pt;}
.y67{bottom:798.533333pt;}
.y101{bottom:800.133333pt;}
.y100{bottom:806.373333pt;}
.y12b{bottom:809.253333pt;}
.y66{bottom:813.893333pt;}
.y12a{bottom:823.973333pt;}
.y65{bottom:829.253333pt;}
.y129{bottom:838.693333pt;}
.y64{bottom:844.613333pt;}
.y128{bottom:853.413333pt;}
.ybb{bottom:856.613333pt;}
.y63{bottom:859.973333pt;}
.y127{bottom:867.973333pt;}
.yba{bottom:869.733333pt;}
.yd5{bottom:871.973333pt;}
.y62{bottom:875.173333pt;}
.y126{bottom:882.693333pt;}
.yb9{bottom:884.133333pt;}
.yd4{bottom:885.093333pt;}
.y61{bottom:890.533333pt;}
.y125{bottom:897.413333pt;}
.yb8{bottom:898.693333pt;}
.yd3{bottom:899.493333pt;}
.y60{bottom:905.893333pt;}
.y124{bottom:912.133333pt;}
.yb7{bottom:913.093333pt;}
.yd2{bottom:913.893333pt;}
.y5f{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y123{bottom:926.853333pt;}
.yd1{bottom:928.453333pt;}
.yb6{bottom:928.933333pt;}
.y5e{bottom:936.613333pt;}
.yb5{bottom:937.733333pt;}
.y122{bottom:941.573333pt;}
.yd0{bottom:944.293333pt;}
.y9e{bottom:947.173333pt;}
.y6{bottom:948.293333pt;}
.y5d{bottom:951.813333pt;}
.ycf{bottom:953.093333pt;}
.y121{bottom:956.133333pt;}
.y9d{bottom:960.293333pt;}
.y5c{bottom:967.173333pt;}
.y120{bottom:970.853333pt;}
.y9c{bottom:975.653333pt;}
.y5b{bottom:982.533333pt;}
.y11f{bottom:985.573333pt;}
.y9a{bottom:991.013333pt;}
.y5a{bottom:997.893333pt;}
.y11e{bottom:1000.293333pt;}
.y99{bottom:1007.813333pt;}
.y59{bottom:1013.280000pt;}
.y11d{bottom:1015.040000pt;}
.y98{bottom:1016.320000pt;}
.y58{bottom:1028.640000pt;}
.y97{bottom:1029.760000pt;}
.y57{bottom:1043.840000pt;}
.y96{bottom:1044.320000pt;}
.yf3{bottom:1045.120000pt;}
.h26{height:13.760000pt;}
.h28{height:13.920000pt;}
.h24{height:14.720000pt;}
.h25{height:18.965625pt;}
.h23{height:19.438125pt;}
.hb{height:22.240000pt;}
.h20{height:24.991875pt;}
.h14{height:26.240000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h27{height:33.867188pt;}
.h12{height:34.302188pt;}
.h1b{height:34.505000pt;}
.h22{height:34.710938pt;}
.h1e{height:37.479688pt;}
.h1a{height:37.583438pt;}
.h1c{height:38.413438pt;}
.h4{height:38.625000pt;}
.h21{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1f{height:43.551875pt;}
.h2{height:44.672000pt;}
.h13{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.800000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:161.626667pt;}
.h16{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w11{width:81.952000pt;}
.w12{width:100.160000pt;}
.we{width:113.280000pt;}
.w5{width:135.066667pt;}
.wf{width:138.720000pt;}
.w19{width:142.586667pt;}
.w1a{width:174.266667pt;}
.w14{width:182.266667pt;}
.wb{width:188.666667pt;}
.w8{width:192.066667pt;}
.w15{width:222.746667pt;}
.wa{width:227.426667pt;}
.wc{width:231.066667pt;}
.w16{width:236.546667pt;}
.w13{width:242.146667pt;}
.w18{width:330.466667pt;}
.wd{width:395.293333pt;}
.w17{width:411.266667pt;}
.w9{width:457.826667pt;}
.w10{width:465.213333pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.x30{left:24.960000pt;}
.xe{left:30.912000pt;}
.xb{left:33.152000pt;}
.x31{left:34.880000pt;}
.x24{left:40.640000pt;}
.x26{left:49.600000pt;}
.x28{left:50.560000pt;}
.x29{left:53.760000pt;}
.xd{left:54.912000pt;}
.x49{left:65.306667pt;}
.x47{left:67.400000pt;}
.x1{left:72.000000pt;}
.x37{left:75.040000pt;}
.x18{left:76.640000pt;}
.x40{left:81.466667pt;}
.x3a{left:85.120000pt;}
.x4{left:87.226667pt;}
.x1d{left:91.040000pt;}
.x16{left:92.186667pt;}
.x1a{left:93.640000pt;}
.x14{left:96.031988pt;}
.x1c{left:98.280000pt;}
.x1b{left:99.866667pt;}
.x39{left:101.626667pt;}
.x3b{left:104.986667pt;}
.x3e{left:107.226667pt;}
.x10{left:108.666667pt;}
.x42{left:110.586667pt;}
.xc{left:122.106667pt;}
.x4a{left:128.666667pt;}
.x4b{left:132.346667pt;}
.x48{left:140.026667pt;}
.x27{left:141.146667pt;}
.x33{left:160.186667pt;}
.x32{left:166.586667pt;}
.x2a{left:169.306667pt;}
.x22{left:184.546667pt;}
.x11{left:191.266667pt;}
.x43{left:196.506667pt;}
.x41{left:199.546667pt;}
.x2e{left:202.786667pt;}
.x5{left:207.066667pt;}
.xf{left:222.146667pt;}
.x54{left:238.266655pt;}
.x8{left:241.986667pt;}
.x51{left:252.386655pt;}
.x12{left:264.066667pt;}
.x58{left:267.266655pt;}
.x2d{left:273.666655pt;}
.x15{left:278.626655pt;}
.x36{left:281.506655pt;}
.x4f{left:282.786655pt;}
.x21{left:287.586655pt;}
.x52{left:288.546655pt;}
.x6{left:295.106667pt;}
.x55{left:298.946655pt;}
.x17{left:300.706667pt;}
.x3f{left:309.986667pt;}
.x20{left:311.106655pt;}
.x7{left:312.226667pt;}
.x2c{left:316.066655pt;}
.x44{left:322.786655pt;}
.xa{left:324.866667pt;}
.x3d{left:330.786655pt;}
.x35{left:340.226655pt;}
.x9{left:390.666667pt;}
.x1e{left:396.866655pt;}
.x45{left:403.746667pt;}
.x23{left:468.573333pt;}
.x19{left:490.173333pt;}
.x38{left:498.493333pt;}
.x2f{left:538.493333pt;}
.x46{left:546.973333pt;}
.x50{left:579.293322pt;}
.x4e{left:580.893322pt;}
.x25{left:582.533333pt;}
.x57{left:593.893322pt;}
.x4d{left:600.933322pt;}
.x34{left:603.973322pt;}
.x3c{left:615.013322pt;}
.x2b{left:621.893322pt;}
.x4c{left:624.933322pt;}
.x1f{left:651.013322pt;}
.x3{left:656.933333pt;}
.x53{left:675.973322pt;}
.x56{left:696.933322pt;}
}




    .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; }
  