
    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_9eaeab6203f21c6e47bfff58.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_c952230323c2ab72c8629859.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_2080ed0ddec49335d946b91c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.707031;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_fd61deb3c3cc134ed6b776d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5d6c7ae85c7d48e74cfa6d17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.867676;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_5d017a017fa386325c2add17.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9b9bb15dcb5a074c296473ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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);}
.v2{vertical-align:-135.029520px;}
.v4{vertical-align:-126.025800px;}
.v8{vertical-align:-101.304000px;}
.v7{vertical-align:-95.514600px;}
.v5{vertical-align:-25.500000px;}
.v3{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:39.486600px;}
.v1{vertical-align:43.200000px;}
.v6{vertical-align:66.001200px;}
.ls17{letter-spacing:-10.150560px;}
.ls22{letter-spacing:-7.992000px;}
.ls11{letter-spacing:-7.373520px;}
.lsb{letter-spacing:-3.652560px;}
.ls16{letter-spacing:-2.872800px;}
.ls21{letter-spacing:-1.836000px;}
.ls1d{letter-spacing:-1.095120px;}
.ls1c{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.384480px;}
.lsd{letter-spacing:-0.336960px;}
.ls3{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.287280px;}
.ls6{letter-spacing:-0.240480px;}
.ls7{letter-spacing:-0.239760px;}
.ls1{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.191520px;}
.lsa{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.037440px;}
.ls1e{letter-spacing:0.120240px;}
.ls1b{letter-spacing:0.144000px;}
.lse{letter-spacing:0.191520px;}
.ls0{letter-spacing:0.192240px;}
.ls1a{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.240480px;}
.ls23{letter-spacing:0.248400px;}
.ls8{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.324000px;}
.ls20{letter-spacing:0.336960px;}
.ls5{letter-spacing:0.360720px;}
.ls19{letter-spacing:15.840000px;}
.ls18{letter-spacing:19.440000px;}
.ls13{letter-spacing:22.356600px;}
.ls14{letter-spacing:25.950960px;}
.lsf{letter-spacing:26.244000px;}
.ls25{letter-spacing:111.600000px;}
.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;}
}
.ws11{word-spacing:-66.413520px;}
.ws86{word-spacing:-66.060000px;}
.ws16{word-spacing:-53.442720px;}
.ws87{word-spacing:-53.058240px;}
.ws15{word-spacing:-39.888000px;}
.wse{word-spacing:-33.667200px;}
.ws32{word-spacing:-33.186240px;}
.ws69{word-spacing:-30.024000px;}
.ws71{word-spacing:-29.808000px;}
.ws3b{word-spacing:-29.700000px;}
.ws6e{word-spacing:-28.188000px;}
.ws67{word-spacing:-27.324000px;}
.ws1{word-spacing:-27.000000px;}
.ws3c{word-spacing:-26.784000px;}
.ws0{word-spacing:-26.676000px;}
.ws27{word-spacing:-26.621280px;}
.ws43{word-spacing:-26.429760px;}
.ws7a{word-spacing:-24.624000px;}
.ws45{word-spacing:-23.748480px;}
.ws53{word-spacing:-23.418720px;}
.ws1b{word-spacing:-23.334480px;}
.ws1c{word-spacing:-23.081760px;}
.ws70{word-spacing:-22.032000px;}
.ws3d{word-spacing:-20.723040px;}
.ws38{word-spacing:-20.304000px;}
.ws4b{word-spacing:-20.232000px;}
.ws5b{word-spacing:-20.160000px;}
.ws4c{word-spacing:-20.016000px;}
.ws37{word-spacing:-19.944000px;}
.ws50{word-spacing:-19.872000px;}
.ws39{word-spacing:-19.800000px;}
.ws52{word-spacing:-19.584000px;}
.ws26{word-spacing:-19.247760px;}
.ws5f{word-spacing:-13.410720px;}
.ws7c{word-spacing:-7.497360px;}
.ws79{word-spacing:-5.184000px;}
.ws58{word-spacing:-4.680000px;}
.ws2e{word-spacing:-4.500720px;}
.ws60{word-spacing:-3.744000px;}
.ws34{word-spacing:-3.366720px;}
.ws49{word-spacing:-3.351600px;}
.ws7b{word-spacing:-3.083184px;}
.ws55{word-spacing:-3.024000px;}
.ws5a{word-spacing:-2.864160px;}
.ws64{word-spacing:-2.765520px;}
.ws24{word-spacing:-2.527200px;}
.ws1e{word-spacing:-2.442960px;}
.ws51{word-spacing:-2.304000px;}
.ws4{word-spacing:-2.268000px;}
.ws1f{word-spacing:-2.190240px;}
.ws4f{word-spacing:-2.088000px;}
.wsf{word-spacing:-1.923840px;}
.ws46{word-spacing:-1.915200px;}
.ws8{word-spacing:-1.836000px;}
.ws2{word-spacing:-1.730160px;}
.ws88{word-spacing:-1.728000px;}
.ws22{word-spacing:-1.684800px;}
.ws35{word-spacing:-1.683360px;}
.wsd{word-spacing:-1.563120px;}
.ws85{word-spacing:-1.512000px;}
.ws36{word-spacing:-1.442880px;}
.ws1d{word-spacing:-1.432080px;}
.ws68{word-spacing:-1.404000px;}
.ws3e{word-spacing:-1.224000px;}
.ws33{word-spacing:-1.202400px;}
.ws74{word-spacing:-1.188000px;}
.ws23{word-spacing:-1.095120px;}
.ws6d{word-spacing:-1.080000px;}
.ws17{word-spacing:-1.008000px;}
.wsb{word-spacing:-0.972000px;}
.ws48{word-spacing:-0.961920px;}
.ws3{word-spacing:-0.961200px;}
.ws57{word-spacing:-0.864000px;}
.ws41{word-spacing:-0.758160px;}
.ws65{word-spacing:-0.756000px;}
.ws10{word-spacing:-0.721440px;}
.ws2d{word-spacing:-0.670320px;}
.ws4d{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.480960px;}
.ws5e{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.384480px;}
.ws42{word-spacing:-0.336960px;}
.ws7{word-spacing:-0.324000px;}
.ws18{word-spacing:-0.288000px;}
.ws12{word-spacing:-0.239760px;}
.ws82{word-spacing:-0.216000px;}
.ws4e{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.108000px;}
.ws59{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws54{word-spacing:0.084240px;}
.ws56{word-spacing:0.144000px;}
.ws47{word-spacing:0.191520px;}
.ws40{word-spacing:0.216000px;}
.ws7d{word-spacing:0.288000px;}
.ws66{word-spacing:0.324000px;}
.ws21{word-spacing:0.336960px;}
.ws5d{word-spacing:0.360000px;}
.ws6a{word-spacing:0.432000px;}
.wsc{word-spacing:0.540000px;}
.ws25{word-spacing:0.574560px;}
.ws72{word-spacing:0.648000px;}
.ws6b{word-spacing:0.651168px;}
.ws3a{word-spacing:0.669600px;}
.ws14{word-spacing:0.719280px;}
.ws2c{word-spacing:0.766080px;}
.ws81{word-spacing:0.896400px;}
.ws6c{word-spacing:0.957600px;}
.ws7e{word-spacing:1.008000px;}
.ws6{word-spacing:1.080000px;}
.ws63{word-spacing:1.095120px;}
.ws2b{word-spacing:1.244880px;}
.ws80{word-spacing:1.296000px;}
.ws5c{word-spacing:1.368000px;}
.ws20{word-spacing:1.432080px;}
.ws29{word-spacing:1.436400px;}
.ws7f{word-spacing:1.684800px;}
.ws75{word-spacing:1.876896px;}
.ws13{word-spacing:2.157840px;}
.ws2f{word-spacing:2.202480px;}
.ws6f{word-spacing:2.559600px;}
.ws84{word-spacing:2.592000px;}
.ws28{word-spacing:2.681280px;}
.ws77{word-spacing:2.700000px;}
.ws2a{word-spacing:2.872800px;}
.ws30{word-spacing:3.160080px;}
.wsa{word-spacing:3.348000px;}
.ws31{word-spacing:3.638880px;}
.ws1a{word-spacing:3.652560px;}
.ws4a{word-spacing:10.150560px;}
.ws83{word-spacing:42.876000px;}
.ws44{word-spacing:197.602416px;}
.ws61{word-spacing:309.236472px;}
.ws76{word-spacing:411.566400px;}
.ws78{word-spacing:595.296600px;}
.ws62{word-spacing:1299.207720px;}
.ws73{word-spacing:1776.555000px;}
._9{margin-left:-21.393936px;}
._14{margin-left:-15.559200px;}
._a{margin-left:-13.956624px;}
._7{margin-left:-10.655568px;}
._3{margin-left:-9.579600px;}
._0{margin-left:-7.516584px;}
._d{margin-left:-6.482952px;}
._b{margin-left:-5.391360px;}
._2{margin-left:-3.864024px;}
._6{margin-left:-2.228616px;}
._1{margin-left:-1.114992px;}
._4{width:1.015200px;}
._8{width:2.124792px;}
._5{width:3.164400px;}
._c{width:5.232240px;}
._e{width:7.892712px;}
._10{width:21.431016px;}
._11{width:25.378776px;}
._12{width:498.273144px;}
._13{width:608.036568px;}
._f{width:1196.753160px;}
.fc6{color:rgb(0,0,204);}
.fc4{color:rgb(23,55,94);}
.fc3{color:rgb(255,153,0);}
.fc2{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,255,0);}
.fs8{font-size:48.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.fs0{font-size:192.240000px;}
.fs3{font-size:239.760000px;}
.fs9{font-size:264.240000px;}
.fsa{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:20.556750px;}
.y88{bottom:27.483900px;}
.yae{bottom:27.560100px;}
.y93{bottom:28.059000px;}
.yb2{bottom:28.994250px;}
.y13{bottom:37.431750px;}
.ydb{bottom:45.605400px;}
.y6f{bottom:52.872750px;}
.y8f{bottom:54.306900px;}
.y8e{bottom:61.310400px;}
.ya7{bottom:64.010400px;}
.y5b{bottom:67.408350px;}
.y83{bottom:68.938200px;}
.y90{bottom:69.747900px;}
.y80{bottom:75.611730px;}
.ya9{bottom:78.005400px;}
.y9f{bottom:87.637200px;}
.y82{bottom:90.538200px;}
.y5a{bottom:92.608350px;}
.y7f{bottom:100.820550px;}
.y17{bottom:105.307470px;}
.y81{bottom:112.138200px;}
.yad{bottom:113.506200px;}
.y42{bottom:117.340800px;}
.yd9{bottom:117.744300px;}
.y59{bottom:117.808350px;}
.y9e{bottom:120.037200px;}
.yc6{bottom:124.831950px;}
.y8c{bottom:125.192100px;}
.yab{bottom:128.630850px;}
.y55{bottom:141.119100px;}
.y7{bottom:142.649400px;}
.y58{bottom:143.008350px;}
.y23{bottom:143.010000px;}
.yac{bottom:145.906200px;}
.y41{bottom:146.140620px;}
.y12{bottom:151.751340px;}
.y9d{bottom:152.437200px;}
.yd8{bottom:160.944300px;}
.y2d{bottom:168.424830px;}
.y54{bottom:173.519100px;}
.y40{bottom:174.940440px;}
.y6{bottom:175.049400px;}
.y16{bottom:176.935770px;}
.y9c{bottom:184.837200px;}
.y61{bottom:187.086630px;}
.y2c{bottom:193.633650px;}
.yc0{bottom:193.687500px;}
.y3f{bottom:203.740260px;}
.yd7{bottom:204.144300px;}
.y53{bottom:205.919100px;}
.y5{bottom:207.449400px;}
.y60{bottom:215.886450px;}
.y9b{bottom:217.237200px;}
.yb1{bottom:218.946450px;}
.y48{bottom:219.667710px;}
.yce{bottom:223.378650px;}
.ybf{bottom:226.087500px;}
.y3e{bottom:232.540080px;}
.y52{bottom:238.319100px;}
.y4{bottom:239.849400px;}
.y1b{bottom:244.800450px;}
.y15{bottom:248.923710px;}
.y9a{bottom:249.637200px;}
.y47{bottom:255.679590px;}
.ybe{bottom:258.487500px;}
.y3d{bottom:261.339900px;}
.y62{bottom:266.519550px;}
.y3{bottom:272.249400px;}
.yc2{bottom:281.857200px;}
.y99{bottom:282.037200px;}
.y24{bottom:285.697500px;}
.y1a{bottom:288.000600px;}
.ybd{bottom:290.887500px;}
.y11{bottom:295.738740px;}
.y68{bottom:300.262050px;}
.yd6{bottom:307.824150px;}
.yc1{bottom:314.257200px;}
.y98{bottom:314.437200px;}
.y6e{bottom:314.935950px;}
.y3c{bottom:318.940620px;}
.y85{bottom:320.197200px;}
.y14{bottom:320.911650px;}
.y8d{bottom:322.694700px;}
.ybc{bottom:323.287500px;}
.y46{bottom:327.673290px;}
.y19{bottom:331.200600px;}
.y22{bottom:338.676180px;}
.y3b{bottom:347.740440px;}
.y87{bottom:348.111150px;}
.y6b{bottom:350.887350px;}
.yd5{bottom:351.024150px;}
.ybb{bottom:355.687500px;}
.y45{bottom:363.685170px;}
.y21{bottom:363.885000px;}
.y51{bottom:374.107500px;}
.y3a{bottom:376.540260px;}
.y67{bottom:381.150330px;}
.y2{bottom:387.087420px;}
.y84{bottom:387.697500px;}
.yba{bottom:388.087500px;}
.yd4{bottom:394.224150px;}
.y56{bottom:398.812650px;}
.y39{bottom:405.340080px;}
.y50{bottom:406.507500px;}
.y66{bottom:409.950150px;}
.y92{bottom:415.507800px;}
.yb9{bottom:420.487500px;}
.y6a{bottom:426.825300px;}
.y18{bottom:432.000450px;}
.y38{bottom:434.139900px;}
.y6d{bottom:435.264600px;}
.y44{bottom:435.678870px;}
.yd3{bottom:437.424150px;}
.y10{bottom:439.726140px;}
.y1{bottom:444.663300px;}
.yb8{bottom:452.887500px;}
.y64{bottom:466.801590px;}
.y43{bottom:471.690750px;}
.y25{bottom:474.322950px;}
.yaa{bottom:474.570750px;}
.ya6{bottom:474.778380px;}
.yc8{bottom:475.920900px;}
.y94{bottom:477.546150px;}
.yb7{bottom:485.287500px;}
.yaf{bottom:491.625900px;}
.y37{bottom:491.740440px;}
.ya5{bottom:499.987200px;}
.y20{bottom:506.760000px;}
.yc7{bottom:508.320900px;}
.y6c{bottom:508.999800px;}
.yb6{bottom:517.687500px;}
.y36{bottom:520.540260px;}
.y73{bottom:533.737500px;}
.yd{bottom:537.971550px;}
.yd2{bottom:541.104300px;}
.yf{bottom:547.731720px;}
.y86{bottom:548.011200px;}
.y35{bottom:549.340080px;}
.yb5{bottom:550.087500px;}
.ya4{bottom:550.612500px;}
.yda{bottom:551.182500px;}
.y7e{bottom:554.267700px;}
.y63{bottom:561.819450px;}
.y95{bottom:567.338850px;}
.yc{bottom:573.071550px;}
.y97{bottom:573.656550px;}
.y7d{bottom:575.867700px;}
.y34{bottom:578.139900px;}
.ye{bottom:583.743600px;}
.yd1{bottom:584.304300px;}
.y1e{bottom:592.205790px;}
.y7c{bottom:597.467700px;}
.y65{bottom:598.254150px;}
.yb{bottom:605.471550px;}
.ycc{bottom:613.622400px;}
.y2b{bottom:616.187700px;}
.y7b{bottom:619.067700px;}
.yd0{bottom:627.504300px;}
.yb4{bottom:627.847500px;}
.y33{bottom:635.740440px;}
.ya{bottom:637.871550px;}
.y7a{bottom:640.667700px;}
.y2a{bottom:641.387700px;}
.y8b{bottom:643.501950px;}
.ycb{bottom:646.022400px;}
.y96{bottom:649.261950px;}
.y1d{bottom:649.781670px;}
.ya8{bottom:651.759450px;}
.ya3{bottom:655.810200px;}
.y79{bottom:662.267700px;}
.yc5{bottom:662.897550px;}
.y32{bottom:664.540260px;}
.yb3{bottom:671.047500px;}
.yca{bottom:678.422400px;}
.y4c{bottom:679.890000px;}
.y78{bottom:683.867700px;}
.ya2{bottom:688.210200px;}
.y57{bottom:691.449750px;}
.y5e{bottom:691.761240px;}
.y29{bottom:691.770060px;}
.y31{bottom:693.340080px;}
.yc4{bottom:695.297550px;}
.y4b{bottom:696.765000px;}
.y9{bottom:703.379670px;}
.y77{bottom:705.467700px;}
.y72{bottom:706.728060px;}
.y1c{bottom:707.357550px;}
.ycf{bottom:707.807700px;}
.y1f{bottom:708.324900px;}
.yc9{bottom:710.822400px;}
.y5d{bottom:716.970060px;}
.y28{bottom:716.978880px;}
.ya1{bottom:720.610200px;}
.y4d{bottom:720.765000px;}
.y30{bottom:722.139900px;}
.y5f{bottom:724.817400px;}
.y76{bottom:727.067700px;}
.y2f{bottom:727.090380px;}
.yc3{bottom:727.697550px;}
.y4f{bottom:729.047700px;}
.y4a{bottom:734.790000px;}
.y71{bottom:735.527880px;}
.y91{bottom:736.315050px;}
.y8{bottom:739.391550px;}
.y5c{bottom:742.178880px;}
.y27{bottom:742.187700px;}
.y75{bottom:748.667700px;}
.y89{bottom:750.310200px;}
.ya0{bottom:753.010200px;}
.y2e{bottom:755.890200px;}
.y49{bottom:756.390000px;}
.yb0{bottom:757.087500px;}
.y4e{bottom:761.447700px;}
.y70{bottom:764.327700px;}
.y69{bottom:764.338950px;}
.y26{bottom:767.387700px;}
.y74{bottom:770.267700px;}
.ycd{bottom:771.499350px;}
.ha{height:75.093750px;}
.hb{height:84.898125px;}
.h8{height:87.859687px;}
.h11{height:99.773438px;}
.h9{height:99.874688px;}
.hd{height:105.943359px;}
.h2{height:108.843750px;}
.h4{height:112.640625px;}
.h5{height:121.179375px;}
.h3{height:125.406562px;}
.hf{height:145.125000px;}
.he{height:148.330350px;}
.h7{height:150.187500px;}
.hc{height:153.860887px;}
.h1{height:200.500313px;}
.h6{height:250.062187px;}
.h10{height:266.304375px;}
.h12{height:290.250000px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1e{left:6.557550px;}
.x3f{left:10.800000px;}
.x2f{left:15.452550px;}
.x62{left:19.233750px;}
.x2e{left:21.014550px;}
.x54{left:25.996950px;}
.x22{left:27.671400px;}
.x3b{left:28.801350px;}
.x2d{left:32.003550px;}
.x5c{left:36.108900px;}
.x4a{left:37.209480px;}
.x4c{left:43.541400px;}
.x4b{left:44.546400px;}
.x49{left:50.519400px;}
.x57{left:52.984050px;}
.x6e{left:54.994650px;}
.x5a{left:61.421550px;}
.x53{left:69.859200px;}
.x6b{left:75.384000px;}
.x66{left:77.355000px;}
.xf{left:78.535920px;}
.x5d{left:82.272150px;}
.x5e{left:85.136310px;}
.x6a{left:87.075000px;}
.x69{left:88.884000px;}
.x27{left:100.125000px;}
.x67{left:101.844000px;}
.x23{left:103.609350px;}
.x45{left:105.239820px;}
.x75{left:110.314200px;}
.x65{left:119.115000px;}
.x30{left:121.130550px;}
.x12{left:129.778200px;}
.xd{left:131.103300px;}
.xe{left:133.440960px;}
.x40{left:137.359650px;}
.x2{left:144.561870px;}
.x6c{left:150.984000px;}
.x5{left:159.195000px;}
.x6d{left:161.784000px;}
.x11{left:168.298200px;}
.x38{left:177.708420px;}
.x31{left:179.547450px;}
.x28{left:194.062500px;}
.xb{left:196.422450px;}
.x68{left:202.635000px;}
.x15{left:216.622650px;}
.x14{left:239.758200px;}
.x64{left:251.285250px;}
.x42{left:255.488820px;}
.x3e{left:263.916360px;}
.x46{left:267.768480px;}
.x16{left:277.466610px;}
.x26{left:278.632500px;}
.x9{left:294.735000px;}
.x8{left:295.815000px;}
.x52{left:297.673200px;}
.x1{left:300.420450px;}
.x72{left:309.057600px;}
.x6{left:320.106180px;}
.x7{left:324.975000px;}
.x1a{left:328.252320px;}
.x50{left:331.423500px;}
.xa{left:332.535000px;}
.x58{left:337.757250px;}
.x5b{left:338.848500px;}
.x21{left:339.861000px;}
.x78{left:341.900100px;}
.x77{left:356.988750px;}
.x59{left:374.464830px;}
.x10{left:385.968180px;}
.x33{left:390.490200px;}
.x41{left:395.106900px;}
.x44{left:410.163600px;}
.x1f{left:415.798950px;}
.x24{left:430.095000px;}
.x3{left:433.990800px;}
.x17{left:445.196010px;}
.x13{left:446.938200px;}
.x25{left:454.935000px;}
.x61{left:458.554800px;}
.x20{left:466.195530px;}
.x19{left:474.300000px;}
.x4f{left:491.768550px;}
.x4{left:494.470800px;}
.x18{left:517.049850px;}
.x35{left:542.362500px;}
.x73{left:551.438250px;}
.x36{left:557.492580px;}
.x34{left:559.237500px;}
.x56{left:568.323450px;}
.x74{left:575.198250px;}
.x3a{left:581.169240px;}
.x71{left:586.928400px;}
.x76{left:592.987800px;}
.x1d{left:595.426200px;}
.x32{left:609.862950px;}
.x60{left:617.557560px;}
.x5f{left:629.431800px;}
.x1b{left:635.925000px;}
.x48{left:637.244400px;}
.x1c{left:644.362500px;}
.x6f{left:661.097400px;}
.x63{left:677.363400px;}
.x70{left:688.799400px;}
.x29{left:709.125000px;}
.x2b{left:719.008650px;}
.x2a{left:724.056000px;}
.x55{left:725.060400px;}
.x2c{left:730.186650px;}
.x4e{left:737.748750px;}
.x51{left:744.863850px;}
.x43{left:778.614000px;}
.xc{left:787.051650px;}
.x4d{left:789.552300px;}
.x37{left:793.062180px;}
.x3c{left:837.677100px;}
.x47{left:839.016300px;}
.x39{left:846.113220px;}
.x3d{left:965.827920px;}
@media print{
.v2{vertical-align:-120.026240pt;}
.v4{vertical-align:-112.022933pt;}
.v8{vertical-align:-90.048000pt;}
.v7{vertical-align:-84.901867pt;}
.v5{vertical-align:-22.666667pt;}
.v3{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:35.099200pt;}
.v1{vertical-align:38.400000pt;}
.v6{vertical-align:58.667733pt;}
.ls17{letter-spacing:-9.022720pt;}
.ls22{letter-spacing:-7.104000pt;}
.ls11{letter-spacing:-6.554240pt;}
.lsb{letter-spacing:-3.246720pt;}
.ls16{letter-spacing:-2.553600pt;}
.ls21{letter-spacing:-1.632000pt;}
.ls1d{letter-spacing:-0.973440pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.341760pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.255360pt;}
.ls6{letter-spacing:-0.213760pt;}
.ls7{letter-spacing:-0.213120pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.170240pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.033280pt;}
.ls1e{letter-spacing:0.106880pt;}
.ls1b{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.170240pt;}
.ls0{letter-spacing:0.170880pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.213760pt;}
.ls23{letter-spacing:0.220800pt;}
.ls8{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls20{letter-spacing:0.299520pt;}
.ls5{letter-spacing:0.320640pt;}
.ls19{letter-spacing:14.080000pt;}
.ls18{letter-spacing:17.280000pt;}
.ls13{letter-spacing:19.872533pt;}
.ls14{letter-spacing:23.067520pt;}
.lsf{letter-spacing:23.328000pt;}
.ls25{letter-spacing:99.200000pt;}
.ws11{word-spacing:-59.034240pt;}
.ws86{word-spacing:-58.720000pt;}
.ws16{word-spacing:-47.504640pt;}
.ws87{word-spacing:-47.162880pt;}
.ws15{word-spacing:-35.456000pt;}
.wse{word-spacing:-29.926400pt;}
.ws32{word-spacing:-29.498880pt;}
.ws69{word-spacing:-26.688000pt;}
.ws71{word-spacing:-26.496000pt;}
.ws3b{word-spacing:-26.400000pt;}
.ws6e{word-spacing:-25.056000pt;}
.ws67{word-spacing:-24.288000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws3c{word-spacing:-23.808000pt;}
.ws0{word-spacing:-23.712000pt;}
.ws27{word-spacing:-23.663360pt;}
.ws43{word-spacing:-23.493120pt;}
.ws7a{word-spacing:-21.888000pt;}
.ws45{word-spacing:-21.109760pt;}
.ws53{word-spacing:-20.816640pt;}
.ws1b{word-spacing:-20.741760pt;}
.ws1c{word-spacing:-20.517120pt;}
.ws70{word-spacing:-19.584000pt;}
.ws3d{word-spacing:-18.420480pt;}
.ws38{word-spacing:-18.048000pt;}
.ws4b{word-spacing:-17.984000pt;}
.ws5b{word-spacing:-17.920000pt;}
.ws4c{word-spacing:-17.792000pt;}
.ws37{word-spacing:-17.728000pt;}
.ws50{word-spacing:-17.664000pt;}
.ws39{word-spacing:-17.600000pt;}
.ws52{word-spacing:-17.408000pt;}
.ws26{word-spacing:-17.109120pt;}
.ws5f{word-spacing:-11.920640pt;}
.ws7c{word-spacing:-6.664320pt;}
.ws79{word-spacing:-4.608000pt;}
.ws58{word-spacing:-4.160000pt;}
.ws2e{word-spacing:-4.000640pt;}
.ws60{word-spacing:-3.328000pt;}
.ws34{word-spacing:-2.992640pt;}
.ws49{word-spacing:-2.979200pt;}
.ws7b{word-spacing:-2.740608pt;}
.ws55{word-spacing:-2.688000pt;}
.ws5a{word-spacing:-2.545920pt;}
.ws64{word-spacing:-2.458240pt;}
.ws24{word-spacing:-2.246400pt;}
.ws1e{word-spacing:-2.171520pt;}
.ws51{word-spacing:-2.048000pt;}
.ws4{word-spacing:-2.016000pt;}
.ws1f{word-spacing:-1.946880pt;}
.ws4f{word-spacing:-1.856000pt;}
.wsf{word-spacing:-1.710080pt;}
.ws46{word-spacing:-1.702400pt;}
.ws8{word-spacing:-1.632000pt;}
.ws2{word-spacing:-1.537920pt;}
.ws88{word-spacing:-1.536000pt;}
.ws22{word-spacing:-1.497600pt;}
.ws35{word-spacing:-1.496320pt;}
.wsd{word-spacing:-1.389440pt;}
.ws85{word-spacing:-1.344000pt;}
.ws36{word-spacing:-1.282560pt;}
.ws1d{word-spacing:-1.272960pt;}
.ws68{word-spacing:-1.248000pt;}
.ws3e{word-spacing:-1.088000pt;}
.ws33{word-spacing:-1.068800pt;}
.ws74{word-spacing:-1.056000pt;}
.ws23{word-spacing:-0.973440pt;}
.ws6d{word-spacing:-0.960000pt;}
.ws17{word-spacing:-0.896000pt;}
.wsb{word-spacing:-0.864000pt;}
.ws48{word-spacing:-0.855040pt;}
.ws3{word-spacing:-0.854400pt;}
.ws57{word-spacing:-0.768000pt;}
.ws41{word-spacing:-0.673920pt;}
.ws65{word-spacing:-0.672000pt;}
.ws10{word-spacing:-0.641280pt;}
.ws2d{word-spacing:-0.595840pt;}
.ws4d{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.427520pt;}
.ws5e{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.341760pt;}
.ws42{word-spacing:-0.299520pt;}
.ws7{word-spacing:-0.288000pt;}
.ws18{word-spacing:-0.256000pt;}
.ws12{word-spacing:-0.213120pt;}
.ws82{word-spacing:-0.192000pt;}
.ws4e{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.096000pt;}
.ws59{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws54{word-spacing:0.074880pt;}
.ws56{word-spacing:0.128000pt;}
.ws47{word-spacing:0.170240pt;}
.ws40{word-spacing:0.192000pt;}
.ws7d{word-spacing:0.256000pt;}
.ws66{word-spacing:0.288000pt;}
.ws21{word-spacing:0.299520pt;}
.ws5d{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.384000pt;}
.wsc{word-spacing:0.480000pt;}
.ws25{word-spacing:0.510720pt;}
.ws72{word-spacing:0.576000pt;}
.ws6b{word-spacing:0.578816pt;}
.ws3a{word-spacing:0.595200pt;}
.ws14{word-spacing:0.639360pt;}
.ws2c{word-spacing:0.680960pt;}
.ws81{word-spacing:0.796800pt;}
.ws6c{word-spacing:0.851200pt;}
.ws7e{word-spacing:0.896000pt;}
.ws6{word-spacing:0.960000pt;}
.ws63{word-spacing:0.973440pt;}
.ws2b{word-spacing:1.106560pt;}
.ws80{word-spacing:1.152000pt;}
.ws5c{word-spacing:1.216000pt;}
.ws20{word-spacing:1.272960pt;}
.ws29{word-spacing:1.276800pt;}
.ws7f{word-spacing:1.497600pt;}
.ws75{word-spacing:1.668352pt;}
.ws13{word-spacing:1.918080pt;}
.ws2f{word-spacing:1.957760pt;}
.ws6f{word-spacing:2.275200pt;}
.ws84{word-spacing:2.304000pt;}
.ws28{word-spacing:2.383360pt;}
.ws77{word-spacing:2.400000pt;}
.ws2a{word-spacing:2.553600pt;}
.ws30{word-spacing:2.808960pt;}
.wsa{word-spacing:2.976000pt;}
.ws31{word-spacing:3.234560pt;}
.ws1a{word-spacing:3.246720pt;}
.ws4a{word-spacing:9.022720pt;}
.ws83{word-spacing:38.112000pt;}
.ws44{word-spacing:175.646592pt;}
.ws61{word-spacing:274.876864pt;}
.ws76{word-spacing:365.836800pt;}
.ws78{word-spacing:529.152533pt;}
.ws62{word-spacing:1154.851307pt;}
.ws73{word-spacing:1579.160000pt;}
._9{margin-left:-19.016832pt;}
._14{margin-left:-13.830400pt;}
._a{margin-left:-12.405888pt;}
._7{margin-left:-9.471616pt;}
._3{margin-left:-8.515200pt;}
._0{margin-left:-6.681408pt;}
._d{margin-left:-5.762624pt;}
._b{margin-left:-4.792320pt;}
._2{margin-left:-3.434688pt;}
._6{margin-left:-1.980992pt;}
._1{margin-left:-0.991104pt;}
._4{width:0.902400pt;}
._8{width:1.888704pt;}
._5{width:2.812800pt;}
._c{width:4.650880pt;}
._e{width:7.015744pt;}
._10{width:19.049792pt;}
._11{width:22.558912pt;}
._12{width:442.909461pt;}
._13{width:540.476949pt;}
._f{width:1063.780587pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.fs0{font-size:170.880000pt;}
.fs3{font-size:213.120000pt;}
.fs9{font-size:234.880000pt;}
.fsa{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:18.272667pt;}
.y88{bottom:24.430133pt;}
.yae{bottom:24.497867pt;}
.y93{bottom:24.941333pt;}
.yb2{bottom:25.772667pt;}
.y13{bottom:33.272667pt;}
.ydb{bottom:40.538133pt;}
.y6f{bottom:46.998000pt;}
.y8f{bottom:48.272800pt;}
.y8e{bottom:54.498133pt;}
.ya7{bottom:56.898133pt;}
.y5b{bottom:59.918533pt;}
.y83{bottom:61.278400pt;}
.y90{bottom:61.998133pt;}
.y80{bottom:67.210427pt;}
.ya9{bottom:69.338133pt;}
.y9f{bottom:77.899733pt;}
.y82{bottom:80.478400pt;}
.y5a{bottom:82.318533pt;}
.y7f{bottom:89.618267pt;}
.y17{bottom:93.606640pt;}
.y81{bottom:99.678400pt;}
.yad{bottom:100.894400pt;}
.y42{bottom:104.302933pt;}
.yd9{bottom:104.661600pt;}
.y59{bottom:104.718533pt;}
.y9e{bottom:106.699733pt;}
.yc6{bottom:110.961733pt;}
.y8c{bottom:111.281867pt;}
.yab{bottom:114.338533pt;}
.y55{bottom:125.439200pt;}
.y7{bottom:126.799467pt;}
.y58{bottom:127.118533pt;}
.y23{bottom:127.120000pt;}
.yac{bottom:129.694400pt;}
.y41{bottom:129.902773pt;}
.y12{bottom:134.890080pt;}
.y9d{bottom:135.499733pt;}
.yd8{bottom:143.061600pt;}
.y2d{bottom:149.710960pt;}
.y54{bottom:154.239200pt;}
.y40{bottom:155.502613pt;}
.y6{bottom:155.599467pt;}
.y16{bottom:157.276240pt;}
.y9c{bottom:164.299733pt;}
.y61{bottom:166.299227pt;}
.y2c{bottom:172.118800pt;}
.yc0{bottom:172.166667pt;}
.y3f{bottom:181.102453pt;}
.yd7{bottom:181.461600pt;}
.y53{bottom:183.039200pt;}
.y5{bottom:184.399467pt;}
.y60{bottom:191.899067pt;}
.y9b{bottom:193.099733pt;}
.yb1{bottom:194.619067pt;}
.y48{bottom:195.260187pt;}
.yce{bottom:198.558800pt;}
.ybf{bottom:200.966667pt;}
.y3e{bottom:206.702293pt;}
.y52{bottom:211.839200pt;}
.y4{bottom:213.199467pt;}
.y1b{bottom:217.600400pt;}
.y15{bottom:221.265520pt;}
.y9a{bottom:221.899733pt;}
.y47{bottom:227.270747pt;}
.ybe{bottom:229.766667pt;}
.y3d{bottom:232.302133pt;}
.y62{bottom:236.906267pt;}
.y3{bottom:241.999467pt;}
.yc2{bottom:250.539733pt;}
.y99{bottom:250.699733pt;}
.y24{bottom:253.953333pt;}
.y1a{bottom:256.000533pt;}
.ybd{bottom:258.566667pt;}
.y11{bottom:262.878880pt;}
.y68{bottom:266.899600pt;}
.yd6{bottom:273.621467pt;}
.yc1{bottom:279.339733pt;}
.y98{bottom:279.499733pt;}
.y6e{bottom:279.943067pt;}
.y3c{bottom:283.502773pt;}
.y85{bottom:284.619733pt;}
.y14{bottom:285.254800pt;}
.y8d{bottom:286.839733pt;}
.ybc{bottom:287.366667pt;}
.y46{bottom:291.265147pt;}
.y19{bottom:294.400533pt;}
.y22{bottom:301.045493pt;}
.y3b{bottom:309.102613pt;}
.y87{bottom:309.432133pt;}
.y6b{bottom:311.899867pt;}
.yd5{bottom:312.021467pt;}
.ybb{bottom:316.166667pt;}
.y45{bottom:323.275707pt;}
.y21{bottom:323.453333pt;}
.y51{bottom:332.540000pt;}
.y3a{bottom:334.702453pt;}
.y67{bottom:338.800293pt;}
.y2{bottom:344.077707pt;}
.y84{bottom:344.620000pt;}
.yba{bottom:344.966667pt;}
.yd4{bottom:350.421467pt;}
.y56{bottom:354.500133pt;}
.y39{bottom:360.302293pt;}
.y50{bottom:361.340000pt;}
.y66{bottom:364.400133pt;}
.y92{bottom:369.340267pt;}
.yb9{bottom:373.766667pt;}
.y6a{bottom:379.400267pt;}
.y18{bottom:384.000400pt;}
.y38{bottom:385.902133pt;}
.y6d{bottom:386.901867pt;}
.y44{bottom:387.270107pt;}
.yd3{bottom:388.821467pt;}
.y10{bottom:390.867680pt;}
.y1{bottom:395.256267pt;}
.yb8{bottom:402.566667pt;}
.y64{bottom:414.934747pt;}
.y43{bottom:419.280667pt;}
.y25{bottom:421.620400pt;}
.yaa{bottom:421.840667pt;}
.ya6{bottom:422.025227pt;}
.yc8{bottom:423.040800pt;}
.y94{bottom:424.485467pt;}
.yb7{bottom:431.366667pt;}
.yaf{bottom:437.000800pt;}
.y37{bottom:437.102613pt;}
.ya5{bottom:444.433067pt;}
.y20{bottom:450.453333pt;}
.yc7{bottom:451.840800pt;}
.y6c{bottom:452.444267pt;}
.yb6{bottom:460.166667pt;}
.y36{bottom:462.702453pt;}
.y73{bottom:474.433333pt;}
.yd{bottom:478.196933pt;}
.yd2{bottom:480.981600pt;}
.yf{bottom:486.872640pt;}
.y86{bottom:487.121067pt;}
.y35{bottom:488.302293pt;}
.yb5{bottom:488.966667pt;}
.ya4{bottom:489.433333pt;}
.yda{bottom:489.940000pt;}
.y7e{bottom:492.682400pt;}
.y63{bottom:499.395067pt;}
.y95{bottom:504.301200pt;}
.yc{bottom:509.396933pt;}
.y97{bottom:509.916933pt;}
.y7d{bottom:511.882400pt;}
.y34{bottom:513.902133pt;}
.ye{bottom:518.883200pt;}
.yd1{bottom:519.381600pt;}
.y1e{bottom:526.405147pt;}
.y7c{bottom:531.082400pt;}
.y65{bottom:531.781467pt;}
.yb{bottom:538.196933pt;}
.ycc{bottom:545.442133pt;}
.y2b{bottom:547.722400pt;}
.y7b{bottom:550.282400pt;}
.yd0{bottom:557.781600pt;}
.yb4{bottom:558.086667pt;}
.y33{bottom:565.102613pt;}
.ya{bottom:566.996933pt;}
.y7a{bottom:569.482400pt;}
.y2a{bottom:570.122400pt;}
.y8b{bottom:572.001733pt;}
.ycb{bottom:574.242133pt;}
.y96{bottom:577.121733pt;}
.y1d{bottom:577.583707pt;}
.ya8{bottom:579.341733pt;}
.ya3{bottom:582.942400pt;}
.y79{bottom:588.682400pt;}
.yc5{bottom:589.242267pt;}
.y32{bottom:590.702453pt;}
.yb3{bottom:596.486667pt;}
.yca{bottom:603.042133pt;}
.y4c{bottom:604.346667pt;}
.y78{bottom:607.882400pt;}
.ya2{bottom:611.742400pt;}
.y57{bottom:614.622000pt;}
.y5e{bottom:614.898880pt;}
.y29{bottom:614.906720pt;}
.y31{bottom:616.302293pt;}
.yc4{bottom:618.042267pt;}
.y4b{bottom:619.346667pt;}
.y9{bottom:625.226373pt;}
.y77{bottom:627.082400pt;}
.y72{bottom:628.202720pt;}
.y1c{bottom:628.762267pt;}
.ycf{bottom:629.162400pt;}
.y1f{bottom:629.622133pt;}
.yc9{bottom:631.842133pt;}
.y5d{bottom:637.306720pt;}
.y28{bottom:637.314560pt;}
.ya1{bottom:640.542400pt;}
.y4d{bottom:640.680000pt;}
.y30{bottom:641.902133pt;}
.y5f{bottom:644.282133pt;}
.y76{bottom:646.282400pt;}
.y2f{bottom:646.302560pt;}
.yc3{bottom:646.842267pt;}
.y4f{bottom:648.042400pt;}
.y4a{bottom:653.146667pt;}
.y71{bottom:653.802560pt;}
.y91{bottom:654.502267pt;}
.y8{bottom:657.236933pt;}
.y5c{bottom:659.714560pt;}
.y27{bottom:659.722400pt;}
.y75{bottom:665.482400pt;}
.y89{bottom:666.942400pt;}
.ya0{bottom:669.342400pt;}
.y2e{bottom:671.902400pt;}
.y49{bottom:672.346667pt;}
.yb0{bottom:672.966667pt;}
.y4e{bottom:676.842400pt;}
.y70{bottom:679.402400pt;}
.y69{bottom:679.412400pt;}
.y26{bottom:682.122400pt;}
.y74{bottom:684.682400pt;}
.ycd{bottom:685.777200pt;}
.ha{height:66.750000pt;}
.hb{height:75.465000pt;}
.h8{height:78.097500pt;}
.h11{height:88.687500pt;}
.h9{height:88.777500pt;}
.hd{height:94.171875pt;}
.h2{height:96.750000pt;}
.h4{height:100.125000pt;}
.h5{height:107.715000pt;}
.h3{height:111.472500pt;}
.hf{height:129.000000pt;}
.he{height:131.849200pt;}
.h7{height:133.500000pt;}
.hc{height:136.765233pt;}
.h1{height:178.222500pt;}
.h6{height:222.277500pt;}
.h10{height:236.715000pt;}
.h12{height:258.000000pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:5.828933pt;}
.x3f{left:9.600000pt;}
.x2f{left:13.735600pt;}
.x62{left:17.096667pt;}
.x2e{left:18.679600pt;}
.x54{left:23.108400pt;}
.x22{left:24.596800pt;}
.x3b{left:25.601200pt;}
.x2d{left:28.447600pt;}
.x5c{left:32.096800pt;}
.x4a{left:33.075093pt;}
.x4c{left:38.703467pt;}
.x4b{left:39.596800pt;}
.x49{left:44.906133pt;}
.x57{left:47.096933pt;}
.x6e{left:48.884133pt;}
.x5a{left:54.596933pt;}
.x53{left:62.097067pt;}
.x6b{left:67.008000pt;}
.x66{left:68.760000pt;}
.xf{left:69.809707pt;}
.x5d{left:73.130800pt;}
.x5e{left:75.676720pt;}
.x6a{left:77.400000pt;}
.x69{left:79.008000pt;}
.x27{left:89.000000pt;}
.x67{left:90.528000pt;}
.x23{left:92.097200pt;}
.x45{left:93.546507pt;}
.x75{left:98.057067pt;}
.x65{left:105.880000pt;}
.x30{left:107.671600pt;}
.x12{left:115.358400pt;}
.xd{left:116.536267pt;}
.xe{left:118.614187pt;}
.x40{left:122.097467pt;}
.x2{left:128.499440pt;}
.x6c{left:134.208000pt;}
.x5{left:141.506667pt;}
.x6d{left:143.808000pt;}
.x11{left:149.598400pt;}
.x38{left:157.963040pt;}
.x31{left:159.597733pt;}
.x28{left:172.500000pt;}
.xb{left:174.597733pt;}
.x68{left:180.120000pt;}
.x15{left:192.553467pt;}
.x14{left:213.118400pt;}
.x64{left:223.364667pt;}
.x42{left:227.101173pt;}
.x3e{left:234.592320pt;}
.x46{left:238.016427pt;}
.x16{left:246.636987pt;}
.x26{left:247.673333pt;}
.x9{left:261.986667pt;}
.x8{left:262.946667pt;}
.x52{left:264.598400pt;}
.x1{left:267.040400pt;}
.x72{left:274.717867pt;}
.x6{left:284.538827pt;}
.x7{left:288.866667pt;}
.x1a{left:291.779840pt;}
.x50{left:294.598667pt;}
.xa{left:295.586667pt;}
.x58{left:300.228667pt;}
.x5b{left:301.198667pt;}
.x21{left:302.098667pt;}
.x78{left:303.911200pt;}
.x77{left:317.323333pt;}
.x59{left:332.857627pt;}
.x10{left:343.082827pt;}
.x33{left:347.102400pt;}
.x41{left:351.206133pt;}
.x44{left:364.589867pt;}
.x1f{left:369.599067pt;}
.x24{left:382.306667pt;}
.x3{left:385.769600pt;}
.x17{left:395.729787pt;}
.x13{left:397.278400pt;}
.x25{left:404.386667pt;}
.x61{left:407.604267pt;}
.x20{left:414.396027pt;}
.x19{left:421.600000pt;}
.x4f{left:437.127600pt;}
.x4{left:439.529600pt;}
.x18{left:459.599867pt;}
.x35{left:482.100000pt;}
.x73{left:490.167333pt;}
.x36{left:495.548960pt;}
.x34{left:497.100000pt;}
.x56{left:505.176400pt;}
.x74{left:511.287333pt;}
.x3a{left:516.594880pt;}
.x71{left:521.714133pt;}
.x76{left:527.100267pt;}
.x1d{left:529.267733pt;}
.x32{left:542.100400pt;}
.x60{left:548.940053pt;}
.x5f{left:559.494933pt;}
.x1b{left:565.266667pt;}
.x48{left:566.439467pt;}
.x1c{left:572.766667pt;}
.x6f{left:587.642133pt;}
.x63{left:602.100800pt;}
.x70{left:612.266133pt;}
.x29{left:630.333333pt;}
.x2b{left:639.118800pt;}
.x2a{left:643.605333pt;}
.x55{left:644.498133pt;}
.x2c{left:649.054800pt;}
.x4e{left:655.776667pt;}
.x51{left:662.101200pt;}
.x43{left:692.101333pt;}
.xc{left:699.601467pt;}
.x4d{left:701.824267pt;}
.x37{left:704.944160pt;}
.x3c{left:744.601867pt;}
.x47{left:745.792267pt;}
.x39{left:752.100640pt;}
.x3d{left:858.513707pt;}
}




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