
    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_95ebe565c7381149bb2a47c7.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_6aed271d547bfdfa99f27545.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_b9b19822a5f560b9dfcfc418.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_01b869e57ebcad2e9e01424f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_59ac75597598691dd26a7a19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914551;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_43b0192c579bde55b77463fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_93b9cb4062dcac7980ca6313.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_51912599cf499ddc6f44149f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_03bf3250359040f594cf5ad6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.754395;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_cb130cf3ed01bd748cb99aaa.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ab98c5c103b7390f91d721f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_827199002d91fe4f96dbc293.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4fb9ffe69b6599fd68d8472c.woff2')format("woff");}.fff{font-family:fff;line-height:0.914551;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_d787cb5cb26355f162a9c5dd.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_9625c34211af3555039528a4.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls45{letter-spacing:-7.860000px;}
.ls46{letter-spacing:-5.292000px;}
.ls48{letter-spacing:-5.148000px;}
.ls3d{letter-spacing:-1.236000px;}
.ls43{letter-spacing:-0.816000px;}
.ls27{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.678000px;}
.ls31{letter-spacing:-0.600000px;}
.ls3c{letter-spacing:-0.513600px;}
.ls34{letter-spacing:-0.460200px;}
.ls30{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.408000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.259800px;}
.lsf{letter-spacing:-0.252000px;}
.ls36{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.127200px;}
.ls42{letter-spacing:-0.115800px;}
.ls2d{letter-spacing:-0.106800px;}
.ls2b{letter-spacing:-0.093600px;}
.ls10{letter-spacing:-0.058320px;}
.ls15{letter-spacing:-0.053280px;}
.ls49{letter-spacing:-0.050700px;}
.lsd{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.042600px;}
.ls1f{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.087600px;}
.ls17{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.132600px;}
.ls41{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.153600px;}
.ls3f{letter-spacing:0.156000px;}
.ls6{letter-spacing:0.174240px;}
.ls1c{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.197400px;}
.lsc{letter-spacing:0.198000px;}
.ls29{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.250800px;}
.lsa{letter-spacing:0.252000px;}
.ls2a{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.297600px;}
.ls21{letter-spacing:0.306600px;}
.ls11{letter-spacing:0.312000px;}
.ls2e{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.350400px;}
.ls16{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.433440px;}
.ls4{letter-spacing:0.447840px;}
.ls13{letter-spacing:0.456000px;}
.ls28{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.786240px;}
.ls37{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.340000px;}
.ls38{letter-spacing:3.060000px;}
.ls35{letter-spacing:3.780000px;}
.ls22{letter-spacing:4.500000px;}
.ls25{letter-spacing:5.940000px;}
.ls39{letter-spacing:6.660000px;}
.ls3a{letter-spacing:8.100000px;}
.ls1e{letter-spacing:8.820000px;}
.ls40{letter-spacing:16.506720px;}
.ls3b{letter-spacing:46.026720px;}
.ls24{letter-spacing:180.156000px;}
.ls23{letter-spacing:201.204000px;}
.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;}
}
.ws6{word-spacing:-16.626360px;}
.ws7{word-spacing:-16.493760px;}
.ws1a{word-spacing:-15.444000px;}
.ws18{word-spacing:-15.408000px;}
.wsf{word-spacing:-15.396000px;}
.ws11{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.290400px;}
.ws13{word-spacing:-15.264000px;}
.wsd{word-spacing:-15.252000px;}
.ws1f{word-spacing:-15.246600px;}
.ws31{word-spacing:-15.237600px;}
.ws1c{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.190800px;}
.ws1b{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.137400px;}
.ws26{word-spacing:-15.093600px;}
.ws12{word-spacing:-15.046800px;}
.ws20{word-spacing:-15.018600px;}
.ws1e{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws33{word-spacing:-14.925300px;}
.ws10{word-spacing:-14.886720px;}
.ws1d{word-spacing:-14.882400px;}
.ws21{word-spacing:-14.833200px;}
.ws2c{word-spacing:-14.824200px;}
.ws2b{word-spacing:-14.733600px;}
.ws28{word-spacing:-14.724000px;}
.ws2e{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.580000px;}
.ws23{word-spacing:-14.544000px;}
.wse{word-spacing:-14.532000px;}
.ws27{word-spacing:-14.479800px;}
.ws29{word-spacing:-14.426400px;}
.ws24{word-spacing:-14.376000px;}
.ws14{word-spacing:-14.298000px;}
.ws19{word-spacing:-14.166000px;}
.ws2d{word-spacing:-14.160000px;}
.ws2a{word-spacing:-13.704000px;}
.ws9{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.ws2{word-spacing:-12.456000px;}
.ws4{word-spacing:-12.402000px;}
.ws1{word-spacing:-12.312000px;}
.ws3{word-spacing:-12.276000px;}
.ws5{word-spacing:-12.186000px;}
.ws0{word-spacing:-12.024000px;}
.ws32{word-spacing:-9.792000px;}
.ws30{word-spacing:-9.648000px;}
.ws8{word-spacing:-8.786880px;}
.wsa{word-spacing:-8.136000px;}
.ws2f{word-spacing:-7.080000px;}
.ws16{word-spacing:0.000000px;}
._14{margin-left:-6.334080px;}
._3{margin-left:-4.740960px;}
._15{margin-left:-3.716160px;}
._2{margin-left:-2.699040px;}
._1{margin-left:-1.176000px;}
._0{width:1.002000px;}
._4{width:2.142000px;}
._7{width:3.177120px;}
._8{width:4.541760px;}
._b{width:6.228960px;}
._e{width:7.967232px;}
._16{width:9.077856px;}
._d{width:11.404320px;}
._c{width:12.497760px;}
._17{width:13.675200px;}
._5{width:16.500240px;}
._6{width:17.646000px;}
._a{width:19.052400px;}
._9{width:20.345520px;}
._11{width:24.004320px;}
._10{width:25.835520px;}
._f{width:26.872800px;}
._13{width:48.913680px;}
._12{width:50.087040px;}
.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);}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.180000px;}
.y3{bottom:3.600000px;}
.y49{bottom:3.960000px;}
.y1a{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y4c{bottom:10.620000px;}
.y1d{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y48{bottom:21.990000px;}
.y4d{bottom:22.320000px;}
.y4b{bottom:25.380000px;}
.y19{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y47{bottom:40.350000px;}
.y5{bottom:41.220000px;}
.y18{bottom:45.720000px;}
.ya{bottom:46.620000px;}
.y46{bottom:57.990000px;}
.y17{bottom:62.325000px;}
.y1{bottom:64.980000px;}
.y9{bottom:73.440000px;}
.y45{bottom:75.315000px;}
.y16{bottom:78.705000px;}
.y44{bottom:92.415000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.545000px;}
.y14{bottom:104.985000px;}
.y43{bottom:109.695000px;}
.y7{bottom:111.450000px;}
.yad{bottom:114.300000px;}
.yc4{bottom:119.340000px;}
.y57{bottom:119.880000px;}
.y95{bottom:122.220000px;}
.y13{bottom:123.345000px;}
.y42{bottom:126.975000px;}
.yac{bottom:131.400000px;}
.yc3{bottom:133.380000px;}
.y56{bottom:137.196000px;}
.y94{bottom:139.536000px;}
.y12{bottom:141.525000px;}
.y41{bottom:144.255000px;}
.yab{bottom:145.476000px;}
.y55{bottom:154.290000px;}
.yd7{bottom:154.470000px;}
.y93{bottom:156.810000px;}
.y11{bottom:160.605000px;}
.y40{bottom:161.535000px;}
.y54{bottom:171.570000px;}
.yd6{bottom:171.750000px;}
.y92{bottom:174.090000px;}
.y3f{bottom:178.635000px;}
.y10{bottom:184.905000px;}
.y53{bottom:188.850000px;}
.yd5{bottom:189.030000px;}
.y91{bottom:191.190000px;}
.y3e{bottom:195.915000px;}
.y52{bottom:206.130000px;}
.y90{bottom:208.470000px;}
.y3d{bottom:213.195000px;}
.y51{bottom:223.410000px;}
.y8f{bottom:225.750000px;}
.y3c{bottom:230.475000px;}
.y2c{bottom:234.045000px;}
.y50{bottom:240.690000px;}
.y8e{bottom:243.030000px;}
.y3b{bottom:247.755000px;}
.y2b{bottom:249.345000px;}
.y4f{bottom:257.790000px;}
.yd4{bottom:257.970000px;}
.y8d{bottom:260.310000px;}
.y3a{bottom:265.035000px;}
.y2a{bottom:267.525000px;}
.y4e{bottom:275.070000px;}
.yd3{bottom:275.250000px;}
.y8c{bottom:277.590000px;}
.y39{bottom:282.135000px;}
.y29{bottom:285.885000px;}
.y4a{bottom:289.110000px;}
.y9e{bottom:291.270000px;}
.yd2{bottom:292.530000px;}
.y8b{bottom:294.690000px;}
.y38{bottom:299.415000px;}
.y28{bottom:304.245000px;}
.y9d{bottom:308.370000px;}
.yd1{bottom:309.630000px;}
.y8a{bottom:311.970000px;}
.y37{bottom:316.725000px;}
.y27{bottom:322.455000px;}
.y9c{bottom:325.650000px;}
.y1e{bottom:325.830000px;}
.y2d{bottom:325.980000px;}
.yd0{bottom:326.910000px;}
.y89{bottom:329.250000px;}
.y36{bottom:334.005000px;}
.y26{bottom:339.735000px;}
.y9b{bottom:342.930000px;}
.ycf{bottom:344.190000px;}
.y88{bottom:346.530000px;}
.y35{bottom:351.285000px;}
.yc2{bottom:353.550000px;}
.y25{bottom:357.195000px;}
.y9a{bottom:360.210000px;}
.yce{bottom:361.470000px;}
.y87{bottom:363.810000px;}
.y34{bottom:368.565000px;}
.yc1{bottom:370.830000px;}
.y24{bottom:374.475000px;}
.y99{bottom:377.490000px;}
.ycd{bottom:378.750000px;}
.y86{bottom:380.910000px;}
.y33{bottom:385.665000px;}
.yc0{bottom:387.975000px;}
.y23{bottom:391.935000px;}
.y98{bottom:394.635000px;}
.ycc{bottom:395.895000px;}
.y85{bottom:398.235000px;}
.y32{bottom:402.945000px;}
.ybf{bottom:405.255000px;}
.y22{bottom:409.395000px;}
.y97{bottom:411.915000px;}
.ycb{bottom:413.175000px;}
.y84{bottom:415.515000px;}
.y31{bottom:420.225000px;}
.ybe{bottom:422.535000px;}
.y96{bottom:425.955000px;}
.y21{bottom:429.555000px;}
.yca{bottom:430.455000px;}
.yaa{bottom:432.255000px;}
.y83{bottom:432.795000px;}
.y30{bottom:437.505000px;}
.ybd{bottom:439.815000px;}
.yc9{bottom:444.495000px;}
.ya9{bottom:446.295000px;}
.y82{bottom:450.075000px;}
.y2f{bottom:454.785000px;}
.y20{bottom:457.095000px;}
.y81{bottom:467.355000px;}
.y2e{bottom:472.065000px;}
.ybc{bottom:474.375000px;}
.y1f{bottom:474.735000px;}
.y80{bottom:484.455000px;}
.ybb{bottom:488.235000px;}
.y7f{bottom:501.735000px;}
.y7e{bottom:519.015000px;}
.y7d{bottom:536.295000px;}
.y7c{bottom:553.575000px;}
.y7b{bottom:570.855000px;}
.y7a{bottom:587.955000px;}
.y79{bottom:605.235000px;}
.y78{bottom:622.515000px;}
.y77{bottom:639.795000px;}
.y76{bottom:657.105000px;}
.y75{bottom:674.205000px;}
.yba{bottom:683.205000px;}
.y74{bottom:691.485000px;}
.yb9{bottom:700.485000px;}
.y73{bottom:708.765000px;}
.yb8{bottom:717.765000px;}
.y72{bottom:726.045000px;}
.ya8{bottom:731.265000px;}
.yb7{bottom:735.045000px;}
.y71{bottom:743.325000px;}
.ya7{bottom:748.545000px;}
.yb6{bottom:752.325000px;}
.y70{bottom:760.605000px;}
.ya6{bottom:765.825000px;}
.yb5{bottom:769.425000px;}
.yc8{bottom:771.765000px;}
.y6f{bottom:777.705000px;}
.ya5{bottom:782.925000px;}
.yb4{bottom:786.705000px;}
.yc7{bottom:789.045000px;}
.y6e{bottom:794.985000px;}
.ya4{bottom:800.205000px;}
.yb3{bottom:803.985000px;}
.yc6{bottom:806.325000px;}
.y1b{bottom:811.905000px;}
.y6d{bottom:812.265000px;}
.ya3{bottom:817.485000px;}
.yc5{bottom:820.185000px;}
.yb2{bottom:821.265000px;}
.y6c{bottom:829.545000px;}
.ya2{bottom:834.765000px;}
.yb1{bottom:838.545000px;}
.yf{bottom:841.605000px;}
.y6b{bottom:846.825000px;}
.ya1{bottom:852.045000px;}
.yb0{bottom:855.825000px;}
.y6a{bottom:864.105000px;}
.ya0{bottom:869.325000px;}
.yaf{bottom:872.925000px;}
.y69{bottom:881.205000px;}
.y9f{bottom:883.185000px;}
.yae{bottom:886.965000px;}
.y68{bottom:898.530000px;}
.y67{bottom:915.810000px;}
.y66{bottom:933.090000px;}
.y65{bottom:950.370000px;}
.y64{bottom:967.650000px;}
.y63{bottom:984.750000px;}
.y62{bottom:1002.030000px;}
.y61{bottom:1019.310000px;}
.y60{bottom:1036.590000px;}
.yd{bottom:1041.630000px;}
.y5f{bottom:1053.870000px;}
.y6{bottom:1067.010000px;}
.y5e{bottom:1070.970000px;}
.y5d{bottom:1088.250000px;}
.y5c{bottom:1105.530000px;}
.y5b{bottom:1122.810000px;}
.y5a{bottom:1140.090000px;}
.y59{bottom:1157.400000px;}
.y58{bottom:1174.500000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h15{height:29.700000px;}
.h2{height:32.940000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h21{height:36.720000px;}
.h1c{height:38.818125px;}
.h1f{height:41.756133px;}
.h20{height:41.856750px;}
.h1e{height:42.164648px;}
.h22{height:42.266250px;}
.h4{height:43.453125px;}
.h23{height:43.506914px;}
.he{height:44.002969px;}
.h14{height:44.088750px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h18{height:47.980898px;}
.h1b{height:48.088125px;}
.ha{height:54.000000px;}
.h6{height:54.333281px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:200.010000px;}
.h1d{height:486.000000px;}
.h17{height:486.075000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:72.936000px;}
.w5{width:151.770000px;}
.w8{width:216.075000px;}
.wa{width:514.440000px;}
.w9{width:514.545000px;}
.w6{width:578.850000px;}
.w2{width:657.690000px;}
.w7{width:730.620000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.xb{left:14.796000px;}
.x10{left:18.576000px;}
.xc{left:20.196000px;}
.x1{left:81.000000px;}
.xf{left:88.770000px;}
.xe{left:93.090000px;}
.x4{left:98.130000px;}
.x28{left:108.035987px;}
.x29{left:135.035987px;}
.x15{left:138.275987px;}
.x22{left:145.835987px;}
.x1b{left:196.769987px;}
.x17{left:200.189987px;}
.x1f{left:202.709987px;}
.x26{left:208.469987px;}
.x12{left:215.175000px;}
.x11{left:231.555000px;}
.x5{left:232.770000px;}
.x1d{left:243.029987px;}
.x8{left:271.875000px;}
.xd{left:288.975000px;}
.x13{left:297.075000px;}
.x6{left:331.635000px;}
.x7{left:350.895000px;}
.xa{left:365.325000px;}
.x20{left:389.594987px;}
.x27{left:421.634987px;}
.x9{left:439.140000px;}
.x1e{left:446.324987px;}
.x1c{left:676.229987px;}
.x1a{left:682.529987px;}
.x24{left:706.469987px;}
.x25{left:714.029987px;}
.x3{left:738.690000px;}
.x23{left:752.729987px;}
.x21{left:763.529987px;}
.x19{left:796.679987px;}
.x18{left:800.999987px;}
.x16{left:819.179987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls45{letter-spacing:-6.986667pt;}
.ls46{letter-spacing:-4.704000pt;}
.ls48{letter-spacing:-4.576000pt;}
.ls3d{letter-spacing:-1.098667pt;}
.ls43{letter-spacing:-0.725333pt;}
.ls27{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.602667pt;}
.ls31{letter-spacing:-0.533333pt;}
.ls3c{letter-spacing:-0.456533pt;}
.ls34{letter-spacing:-0.409067pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.362667pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.230933pt;}
.lsf{letter-spacing:-0.224000pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.113067pt;}
.ls42{letter-spacing:-0.102933pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls2b{letter-spacing:-0.083200pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls49{letter-spacing:-0.045067pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.037867pt;}
.ls1f{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.077867pt;}
.ls17{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls41{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.136533pt;}
.ls3f{letter-spacing:0.138667pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.175467pt;}
.lsc{letter-spacing:0.176000pt;}
.ls29{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.222933pt;}
.lsa{letter-spacing:0.224000pt;}
.ls2a{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.264533pt;}
.ls21{letter-spacing:0.272533pt;}
.ls11{letter-spacing:0.277333pt;}
.ls2e{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.311467pt;}
.ls16{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.385280pt;}
.ls4{letter-spacing:0.398080pt;}
.ls13{letter-spacing:0.405333pt;}
.ls28{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls37{letter-spacing:0.800000pt;}
.ls20{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls38{letter-spacing:2.720000pt;}
.ls35{letter-spacing:3.360000pt;}
.ls22{letter-spacing:4.000000pt;}
.ls25{letter-spacing:5.280000pt;}
.ls39{letter-spacing:5.920000pt;}
.ls3a{letter-spacing:7.200000pt;}
.ls1e{letter-spacing:7.840000pt;}
.ls40{letter-spacing:14.672640pt;}
.ls3b{letter-spacing:40.912640pt;}
.ls24{letter-spacing:160.138667pt;}
.ls23{letter-spacing:178.848000pt;}
.ws6{word-spacing:-14.778987pt;}
.ws7{word-spacing:-14.661120pt;}
.ws1a{word-spacing:-13.728000pt;}
.ws18{word-spacing:-13.696000pt;}
.wsf{word-spacing:-13.685333pt;}
.ws11{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.591467pt;}
.ws13{word-spacing:-13.568000pt;}
.wsd{word-spacing:-13.557333pt;}
.ws1f{word-spacing:-13.552533pt;}
.ws31{word-spacing:-13.544533pt;}
.ws1c{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.502933pt;}
.ws1b{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.455467pt;}
.ws26{word-spacing:-13.416533pt;}
.ws12{word-spacing:-13.374933pt;}
.ws20{word-spacing:-13.349867pt;}
.ws1e{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws33{word-spacing:-13.266933pt;}
.ws10{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-13.228800pt;}
.ws21{word-spacing:-13.185067pt;}
.ws2c{word-spacing:-13.177067pt;}
.ws2b{word-spacing:-13.096533pt;}
.ws28{word-spacing:-13.088000pt;}
.ws2e{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws23{word-spacing:-12.928000pt;}
.wse{word-spacing:-12.917333pt;}
.ws27{word-spacing:-12.870933pt;}
.ws29{word-spacing:-12.823467pt;}
.ws24{word-spacing:-12.778667pt;}
.ws14{word-spacing:-12.709333pt;}
.ws19{word-spacing:-12.592000pt;}
.ws2d{word-spacing:-12.586667pt;}
.ws2a{word-spacing:-12.181333pt;}
.ws9{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.ws2{word-spacing:-11.072000pt;}
.ws4{word-spacing:-11.024000pt;}
.ws1{word-spacing:-10.944000pt;}
.ws3{word-spacing:-10.912000pt;}
.ws5{word-spacing:-10.832000pt;}
.ws0{word-spacing:-10.688000pt;}
.ws32{word-spacing:-8.704000pt;}
.ws30{word-spacing:-8.576000pt;}
.ws8{word-spacing:-7.810560pt;}
.wsa{word-spacing:-7.232000pt;}
.ws2f{word-spacing:-6.293333pt;}
.ws16{word-spacing:0.000000pt;}
._14{margin-left:-5.630293pt;}
._3{margin-left:-4.214187pt;}
._15{margin-left:-3.303253pt;}
._2{margin-left:-2.399147pt;}
._1{margin-left:-1.045333pt;}
._0{width:0.890667pt;}
._4{width:1.904000pt;}
._7{width:2.824107pt;}
._8{width:4.037120pt;}
._b{width:5.536853pt;}
._e{width:7.081984pt;}
._16{width:8.069205pt;}
._d{width:10.137173pt;}
._c{width:11.109120pt;}
._17{width:12.155733pt;}
._5{width:14.666880pt;}
._6{width:15.685333pt;}
._a{width:16.935467pt;}
._9{width:18.084907pt;}
._11{width:21.337173pt;}
._10{width:22.964907pt;}
._f{width:23.886933pt;}
._13{width:43.478827pt;}
._12{width:44.521813pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.160000pt;}
.y3{bottom:3.200000pt;}
.y49{bottom:3.520000pt;}
.y1a{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y4c{bottom:9.440000pt;}
.y1d{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y48{bottom:19.546667pt;}
.y4d{bottom:19.840000pt;}
.y4b{bottom:22.560000pt;}
.y19{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y47{bottom:35.866667pt;}
.y5{bottom:36.640000pt;}
.y18{bottom:40.640000pt;}
.ya{bottom:41.440000pt;}
.y46{bottom:51.546667pt;}
.y17{bottom:55.400000pt;}
.y1{bottom:57.760000pt;}
.y9{bottom:65.280000pt;}
.y45{bottom:66.946667pt;}
.y16{bottom:69.960000pt;}
.y44{bottom:82.146667pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.040000pt;}
.y14{bottom:93.320000pt;}
.y43{bottom:97.506667pt;}
.y7{bottom:99.066667pt;}
.yad{bottom:101.600000pt;}
.yc4{bottom:106.080000pt;}
.y57{bottom:106.560000pt;}
.y95{bottom:108.640000pt;}
.y13{bottom:109.640000pt;}
.y42{bottom:112.866667pt;}
.yac{bottom:116.800000pt;}
.yc3{bottom:118.560000pt;}
.y56{bottom:121.952000pt;}
.y94{bottom:124.032000pt;}
.y12{bottom:125.800000pt;}
.y41{bottom:128.226667pt;}
.yab{bottom:129.312000pt;}
.y55{bottom:137.146667pt;}
.yd7{bottom:137.306667pt;}
.y93{bottom:139.386667pt;}
.y11{bottom:142.760000pt;}
.y40{bottom:143.586667pt;}
.y54{bottom:152.506667pt;}
.yd6{bottom:152.666667pt;}
.y92{bottom:154.746667pt;}
.y3f{bottom:158.786667pt;}
.y10{bottom:164.360000pt;}
.y53{bottom:167.866667pt;}
.yd5{bottom:168.026667pt;}
.y91{bottom:169.946667pt;}
.y3e{bottom:174.146667pt;}
.y52{bottom:183.226667pt;}
.y90{bottom:185.306667pt;}
.y3d{bottom:189.506667pt;}
.y51{bottom:198.586667pt;}
.y8f{bottom:200.666667pt;}
.y3c{bottom:204.866667pt;}
.y2c{bottom:208.040000pt;}
.y50{bottom:213.946667pt;}
.y8e{bottom:216.026667pt;}
.y3b{bottom:220.226667pt;}
.y2b{bottom:221.640000pt;}
.y4f{bottom:229.146667pt;}
.yd4{bottom:229.306667pt;}
.y8d{bottom:231.386667pt;}
.y3a{bottom:235.586667pt;}
.y2a{bottom:237.800000pt;}
.y4e{bottom:244.506667pt;}
.yd3{bottom:244.666667pt;}
.y8c{bottom:246.746667pt;}
.y39{bottom:250.786667pt;}
.y29{bottom:254.120000pt;}
.y4a{bottom:256.986667pt;}
.y9e{bottom:258.906667pt;}
.yd2{bottom:260.026667pt;}
.y8b{bottom:261.946667pt;}
.y38{bottom:266.146667pt;}
.y28{bottom:270.440000pt;}
.y9d{bottom:274.106667pt;}
.yd1{bottom:275.226667pt;}
.y8a{bottom:277.306667pt;}
.y37{bottom:281.533333pt;}
.y27{bottom:286.626667pt;}
.y9c{bottom:289.466667pt;}
.y1e{bottom:289.626667pt;}
.y2d{bottom:289.760000pt;}
.yd0{bottom:290.586667pt;}
.y89{bottom:292.666667pt;}
.y36{bottom:296.893333pt;}
.y26{bottom:301.986667pt;}
.y9b{bottom:304.826667pt;}
.ycf{bottom:305.946667pt;}
.y88{bottom:308.026667pt;}
.y35{bottom:312.253333pt;}
.yc2{bottom:314.266667pt;}
.y25{bottom:317.506667pt;}
.y9a{bottom:320.186667pt;}
.yce{bottom:321.306667pt;}
.y87{bottom:323.386667pt;}
.y34{bottom:327.613333pt;}
.yc1{bottom:329.626667pt;}
.y24{bottom:332.866667pt;}
.y99{bottom:335.546667pt;}
.ycd{bottom:336.666667pt;}
.y86{bottom:338.586667pt;}
.y33{bottom:342.813333pt;}
.yc0{bottom:344.866667pt;}
.y23{bottom:348.386667pt;}
.y98{bottom:350.786667pt;}
.ycc{bottom:351.906667pt;}
.y85{bottom:353.986667pt;}
.y32{bottom:358.173333pt;}
.ybf{bottom:360.226667pt;}
.y22{bottom:363.906667pt;}
.y97{bottom:366.146667pt;}
.ycb{bottom:367.266667pt;}
.y84{bottom:369.346667pt;}
.y31{bottom:373.533333pt;}
.ybe{bottom:375.586667pt;}
.y96{bottom:378.626667pt;}
.y21{bottom:381.826667pt;}
.yca{bottom:382.626667pt;}
.yaa{bottom:384.226667pt;}
.y83{bottom:384.706667pt;}
.y30{bottom:388.893333pt;}
.ybd{bottom:390.946667pt;}
.yc9{bottom:395.106667pt;}
.ya9{bottom:396.706667pt;}
.y82{bottom:400.066667pt;}
.y2f{bottom:404.253333pt;}
.y20{bottom:406.306667pt;}
.y81{bottom:415.426667pt;}
.y2e{bottom:419.613333pt;}
.ybc{bottom:421.666667pt;}
.y1f{bottom:421.986667pt;}
.y80{bottom:430.626667pt;}
.ybb{bottom:433.986667pt;}
.y7f{bottom:445.986667pt;}
.y7e{bottom:461.346667pt;}
.y7d{bottom:476.706667pt;}
.y7c{bottom:492.066667pt;}
.y7b{bottom:507.426667pt;}
.y7a{bottom:522.626667pt;}
.y79{bottom:537.986667pt;}
.y78{bottom:553.346667pt;}
.y77{bottom:568.706667pt;}
.y76{bottom:584.093333pt;}
.y75{bottom:599.293333pt;}
.yba{bottom:607.293333pt;}
.y74{bottom:614.653333pt;}
.yb9{bottom:622.653333pt;}
.y73{bottom:630.013333pt;}
.yb8{bottom:638.013333pt;}
.y72{bottom:645.373333pt;}
.ya8{bottom:650.013333pt;}
.yb7{bottom:653.373333pt;}
.y71{bottom:660.733333pt;}
.ya7{bottom:665.373333pt;}
.yb6{bottom:668.733333pt;}
.y70{bottom:676.093333pt;}
.ya6{bottom:680.733333pt;}
.yb5{bottom:683.933333pt;}
.yc8{bottom:686.013333pt;}
.y6f{bottom:691.293333pt;}
.ya5{bottom:695.933333pt;}
.yb4{bottom:699.293333pt;}
.yc7{bottom:701.373333pt;}
.y6e{bottom:706.653333pt;}
.ya4{bottom:711.293333pt;}
.yb3{bottom:714.653333pt;}
.yc6{bottom:716.733333pt;}
.y1b{bottom:721.693333pt;}
.y6d{bottom:722.013333pt;}
.ya3{bottom:726.653333pt;}
.yc5{bottom:729.053333pt;}
.yb2{bottom:730.013333pt;}
.y6c{bottom:737.373333pt;}
.ya2{bottom:742.013333pt;}
.yb1{bottom:745.373333pt;}
.yf{bottom:748.093333pt;}
.y6b{bottom:752.733333pt;}
.ya1{bottom:757.373333pt;}
.yb0{bottom:760.733333pt;}
.y6a{bottom:768.093333pt;}
.ya0{bottom:772.733333pt;}
.yaf{bottom:775.933333pt;}
.y69{bottom:783.293333pt;}
.y9f{bottom:785.053333pt;}
.yae{bottom:788.413333pt;}
.y68{bottom:798.693333pt;}
.y67{bottom:814.053333pt;}
.y66{bottom:829.413333pt;}
.y65{bottom:844.773333pt;}
.y64{bottom:860.133333pt;}
.y63{bottom:875.333333pt;}
.y62{bottom:890.693333pt;}
.y61{bottom:906.053333pt;}
.y60{bottom:921.413333pt;}
.yd{bottom:925.893333pt;}
.y5f{bottom:936.773333pt;}
.y6{bottom:948.453333pt;}
.y5e{bottom:951.973333pt;}
.y5d{bottom:967.333333pt;}
.y5c{bottom:982.693333pt;}
.y5b{bottom:998.053333pt;}
.y5a{bottom:1013.413333pt;}
.y59{bottom:1028.800000pt;}
.y58{bottom:1044.000000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h15{height:26.400000pt;}
.h2{height:29.280000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h21{height:32.640000pt;}
.h1c{height:34.505000pt;}
.h1f{height:37.116563pt;}
.h20{height:37.206000pt;}
.h1e{height:37.479688pt;}
.h22{height:37.570000pt;}
.h4{height:38.625000pt;}
.h23{height:38.672812pt;}
.he{height:39.113750pt;}
.h14{height:39.190000pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h18{height:42.649687pt;}
.h1b{height:42.745000pt;}
.ha{height:48.000000pt;}
.h6{height:48.296250pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:177.786667pt;}
.h1d{height:432.000000pt;}
.h17{height:432.066667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:64.832000pt;}
.w5{width:134.906667pt;}
.w8{width:192.066667pt;}
.wa{width:457.280000pt;}
.w9{width:457.373333pt;}
.w6{width:514.533333pt;}
.w2{width:584.613333pt;}
.w7{width:649.440000pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.xb{left:13.152000pt;}
.x10{left:16.512000pt;}
.xc{left:17.952000pt;}
.x1{left:72.000000pt;}
.xf{left:78.906667pt;}
.xe{left:82.746667pt;}
.x4{left:87.226667pt;}
.x28{left:96.031988pt;}
.x29{left:120.031988pt;}
.x15{left:122.911988pt;}
.x22{left:129.631988pt;}
.x1b{left:174.906655pt;}
.x17{left:177.946655pt;}
.x1f{left:180.186655pt;}
.x26{left:185.306655pt;}
.x12{left:191.266667pt;}
.x11{left:205.826667pt;}
.x5{left:206.906667pt;}
.x1d{left:216.026655pt;}
.x8{left:241.666667pt;}
.xd{left:256.866667pt;}
.x13{left:264.066667pt;}
.x6{left:294.786667pt;}
.x7{left:311.906667pt;}
.xa{left:324.733333pt;}
.x20{left:346.306655pt;}
.x27{left:374.786655pt;}
.x9{left:390.346667pt;}
.x1e{left:396.733322pt;}
.x1c{left:601.093322pt;}
.x1a{left:606.693322pt;}
.x24{left:627.973322pt;}
.x25{left:634.693322pt;}
.x3{left:656.613333pt;}
.x23{left:669.093322pt;}
.x21{left:678.693322pt;}
.x19{left:708.159988pt;}
.x18{left:711.999988pt;}
.x16{left:728.159988pt;}
}




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