
    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_4eb845bb39573df8b987a790.woff')format("woff");}.ff1{font-family:ff1;line-height:1.470215;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_c96e3f9562c63979614fc469.woff')format("woff");}.ff2{font-family:ff2;line-height:1.270996;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_d1ab4a75c86d97471152cba9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.470215;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_2d96f689786d8fbccb991b71.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_72d35778ba5d72f62174b164.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_8ff1af3e24a8ab13b6246913.woff')format("woff");}.ff6{font-family:ff6;line-height:1.270996;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_09e0d3418a3b4302b54eb8dc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.562500;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_ff00111f30e3e769b454a30f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.562500;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_b4979d24a903db684b821e15.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683594;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);}
.v1{vertical-align:-83.880000px;}
.v4{vertical-align:-79.920000px;}
.v3{vertical-align:-24.120000px;}
.v5{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.120000px;}
.ls7b{letter-spacing:-0.504000px;}
.ls29{letter-spacing:-0.432000px;}
.ls7c{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.165600px;}
.lsc{letter-spacing:-0.161400px;}
.ls15{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.112200px;}
.ls12{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.031680px;}
.ls60{letter-spacing:-0.000003px;}
.ls9{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.012600px;}
.ls78{letter-spacing:0.014040px;}
.ls8{letter-spacing:0.027000px;}
.ls16{letter-spacing:0.048000px;}
.ls65{letter-spacing:0.053640px;}
.ls14{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.083400px;}
.ls1a{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.153600px;}
.ls3f{letter-spacing:0.155400px;}
.ls3{letter-spacing:0.166200px;}
.ls4{letter-spacing:0.172080px;}
.ls2{letter-spacing:0.180000px;}
.ls64{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.264000px;}
.ls17{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.336000px;}
.ls31{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.432000px;}
.ls4e{letter-spacing:0.480000px;}
.ls27{letter-spacing:0.504000px;}
.ls2b{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.746280px;}
.ls24{letter-spacing:1.008000px;}
.ls3d{letter-spacing:1.368000px;}
.ls44{letter-spacing:1.656000px;}
.ls42{letter-spacing:1.728000px;}
.ls3a{letter-spacing:2.088000px;}
.ls47{letter-spacing:2.448000px;}
.ls46{letter-spacing:2.568000px;}
.ls3c{letter-spacing:2.736000px;}
.ls36{letter-spacing:2.808000px;}
.ls4f{letter-spacing:3.168000px;}
.ls34{letter-spacing:3.528000px;}
.ls53{letter-spacing:3.888000px;}
.ls4b{letter-spacing:4.248000px;}
.ls18{letter-spacing:4.608000px;}
.ls2c{letter-spacing:4.968000px;}
.ls5b{letter-spacing:5.328000px;}
.ls40{letter-spacing:5.688000px;}
.ls7{letter-spacing:5.786280px;}
.ls7a{letter-spacing:5.976000px;}
.ls41{letter-spacing:6.048000px;}
.ls79{letter-spacing:6.120000px;}
.ls63{letter-spacing:6.408000px;}
.ls6{letter-spacing:6.506280px;}
.ls21{letter-spacing:6.768000px;}
.ls5a{letter-spacing:7.128000px;}
.ls5d{letter-spacing:7.488000px;}
.ls2a{letter-spacing:7.848000px;}
.ls5f{letter-spacing:8.208000px;}
.ls43{letter-spacing:8.496000px;}
.ls2e{letter-spacing:8.568000px;}
.ls0{letter-spacing:8.666280px;}
.ls77{letter-spacing:8.856000px;}
.ls1f{letter-spacing:8.928000px;}
.ls20{letter-spacing:9.288000px;}
.ls25{letter-spacing:9.648000px;}
.ls1e{letter-spacing:10.008000px;}
.ls48{letter-spacing:10.368000px;}
.ls4d{letter-spacing:10.728000px;}
.ls59{letter-spacing:11.448000px;}
.ls56{letter-spacing:11.808000px;}
.ls58{letter-spacing:12.168000px;}
.ls70{letter-spacing:12.528000px;}
.ls38{letter-spacing:12.888000px;}
.ls71{letter-spacing:13.248000px;}
.ls62{letter-spacing:13.968000px;}
.ls3e{letter-spacing:14.328000px;}
.ls37{letter-spacing:14.688000px;}
.ls35{letter-spacing:15.408000px;}
.ls6f{letter-spacing:16.128000px;}
.ls6e{letter-spacing:17.208000px;}
.ls52{letter-spacing:17.568000px;}
.ls57{letter-spacing:17.616000px;}
.ls61{letter-spacing:17.640000px;}
.ls3b{letter-spacing:18.216000px;}
.ls55{letter-spacing:18.288000px;}
.ls69{letter-spacing:18.408000px;}
.ls6d{letter-spacing:18.648000px;}
.ls54{letter-spacing:19.008000px;}
.ls6c{letter-spacing:19.368000px;}
.ls39{letter-spacing:20.088000px;}
.ls2d{letter-spacing:20.448000px;}
.ls5e{letter-spacing:21.528000px;}
.ls10{letter-spacing:21.960000px;}
.ls66{letter-spacing:22.608000px;}
.ls49{letter-spacing:24.048000px;}
.ls4a{letter-spacing:24.408000px;}
.ls5c{letter-spacing:25.776000px;}
.ls4c{letter-spacing:25.848000px;}
.ls73{letter-spacing:26.568000px;}
.ls76{letter-spacing:28.728000px;}
.ls75{letter-spacing:29.088000px;}
.ls68{letter-spacing:35.640000px;}
.ls6a{letter-spacing:35.712000px;}
.ls51{letter-spacing:35.784000px;}
.ls1d{letter-spacing:35.856000px;}
.ls50{letter-spacing:35.928000px;}
.ls67{letter-spacing:35.976000px;}
.ls1b{letter-spacing:36.000000px;}
.ls22{letter-spacing:36.072000px;}
.ls23{letter-spacing:36.120000px;}
.ls1c{letter-spacing:36.144000px;}
.ls6b{letter-spacing:36.192000px;}
.ls74{letter-spacing:36.216000px;}
.ls19{letter-spacing:36.264000px;}
.ls72{letter-spacing:36.336000px;}
.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;}
}
.ws4c{word-spacing:-26.352000px;}
.ws4d{word-spacing:-26.208000px;}
.ws3{word-spacing:-22.486200px;}
.ws50{word-spacing:-20.592000px;}
.wsf{word-spacing:-20.448000px;}
.ws23{word-spacing:-20.376000px;}
.ws10{word-spacing:-20.304000px;}
.ws27{word-spacing:-20.232001px;}
.ws7{word-spacing:-20.232000px;}
.ws4e{word-spacing:-20.160000px;}
.ws12{word-spacing:-20.088000px;}
.ws1a{word-spacing:-20.016000px;}
.ws30{word-spacing:-19.944000px;}
.ws4f{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.584000px;}
.ws11{word-spacing:-19.512000px;}
.wse{word-spacing:-19.440000px;}
.ws2a{word-spacing:-19.368000px;}
.ws4b{word-spacing:-19.296000px;}
.ws6{word-spacing:-18.678480px;}
.ws5{word-spacing:-18.665880px;}
.ws4{word-spacing:-18.512280px;}
.ws15{word-spacing:-18.288000px;}
.ws25{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws46{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.928000px;}
.ws1f{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws33{word-spacing:-17.783997px;}
.wsc{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.640000px;}
.ws26{word-spacing:-17.568000px;}
.ws20{word-spacing:-17.352000px;}
.ws0{word-spacing:-17.073720px;}
.ws1{word-spacing:-16.893720px;}
.ws2{word-spacing:-16.713720px;}
.ws8{word-spacing:-16.232400px;}
.ws34{word-spacing:-16.128000px;}
.ws9{word-spacing:-16.066800px;}
.ws2b{word-spacing:-11.991120px;}
.ws24{word-spacing:-11.919120px;}
.ws3b{word-spacing:-11.835720px;}
.ws4a{word-spacing:-10.417680px;}
.ws36{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.216000px;}
.ws2d{word-spacing:-0.144000px;}
.ws39{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws3a{word-spacing:0.072000px;}
.ws3c{word-spacing:0.216000px;}
.ws2c{word-spacing:0.432000px;}
.ws28{word-spacing:3.312000px;}
.ws3e{word-spacing:7.632000px;}
.ws3d{word-spacing:7.704000px;}
.ws2e{word-spacing:7.776000px;}
.ws29{word-spacing:7.920000px;}
.ws32{word-spacing:8.280000px;}
.ws35{word-spacing:9.072000px;}
.ws47{word-spacing:9.216000px;}
.ws48{word-spacing:9.504000px;}
.ws40{word-spacing:9.624000px;}
.ws44{word-spacing:9.720000px;}
.ws43{word-spacing:9.864000px;}
.ws31{word-spacing:14.976000px;}
.ws37{word-spacing:15.408000px;}
.ws38{word-spacing:15.768000px;}
.ws22{word-spacing:17.712000px;}
.ws1e{word-spacing:17.784000px;}
.ws1c{word-spacing:17.832000px;}
.ws41{word-spacing:17.904000px;}
.ws42{word-spacing:18.000000px;}
.ws1d{word-spacing:18.072000px;}
.ws1b{word-spacing:18.144000px;}
.ws45{word-spacing:18.192000px;}
.ws19{word-spacing:18.216000px;}
.ws17{word-spacing:18.264000px;}
.ws21{word-spacing:18.360000px;}
.ws16{word-spacing:18.552000px;}
.ws49{word-spacing:18.624000px;}
.ws3f{word-spacing:31.752000px;}
._1f{margin-left:-23.448000px;}
._0{margin-left:-1.082160px;}
._1{width:1.623240px;}
._2{width:2.764320px;}
._9{width:4.509000px;}
._4{width:5.591160px;}
._17{width:6.610560px;}
._7{width:7.612320px;}
._5{width:9.198360px;}
._6{width:10.473480px;}
._a{width:12.204360px;}
._3{width:13.406760px;}
._b{width:14.789520px;}
._13{width:16.617600px;}
._14{width:17.640000px;}
._f{width:18.648000px;}
._d{width:20.621160px;}
._c{width:21.643200px;}
._e{width:22.665240px;}
._15{width:24.192000px;}
._11{width:25.680000px;}
._10{width:26.760000px;}
._12{width:27.888000px;}
._19{width:29.450160px;}
._18{width:30.456000px;}
._1e{width:31.536000px;}
._1d{width:32.949360px;}
._20{width:34.370640px;}
._1a{width:35.854680px;}
._21{width:36.986280px;}
._1b{width:40.824000px;}
._1c{width:41.904000px;}
._24{width:43.992000px;}
._23{width:45.000000px;}
._16{width:47.952000px;}
._22{width:712.536000px;}
._8{width:959.721480px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5{bottom:23.310000px;}
.y4{bottom:40.050000px;}
.y3{bottom:56.700000px;}
.y2{bottom:73.350000px;}
.y3e{bottom:76.230000px;}
.y10{bottom:93.420000px;}
.y3d{bottom:95.220000px;}
.yf{bottom:113.670000px;}
.y72{bottom:120.060000px;}
.yd5{bottom:125.190000px;}
.yae{bottom:136.260000px;}
.y84{bottom:137.160000px;}
.y71{bottom:140.040000px;}
.yd4{bottom:145.260000px;}
.ye{bottom:153.630000px;}
.yad{bottom:156.240000px;}
.y83{bottom:157.140000px;}
.y70{bottom:160.110000px;}
.yd{bottom:170.370000px;}
.yd3{bottom:174.240000px;}
.yac{bottom:176.220000px;}
.y6f{bottom:180.090000px;}
.y82{bottom:186.210000px;}
.yc{bottom:187.020000px;}
.ye9{bottom:191.790000px;}
.yd2{bottom:194.220000px;}
.yab{bottom:196.290000px;}
.y6e{bottom:200.160000px;}
.yb{bottom:203.670000px;}
.y81{bottom:206.190000px;}
.yd1{bottom:214.320000px;}
.ye8{bottom:216.300000px;}
.y6d{bottom:220.170000px;}
.ya{bottom:220.440000px;}
.yaa{bottom:225.300000px;}
.y80{bottom:226.290000px;}
.yd0{bottom:234.300000px;}
.ye7{bottom:236.370000px;}
.y9{bottom:237.090000px;}
.y6c{bottom:240.240000px;}
.ya9{bottom:245.370000px;}
.y8{bottom:253.740000px;}
.ycf{bottom:254.370000px;}
.y7f{bottom:255.270000px;}
.ye6{bottom:256.350000px;}
.y6b{bottom:260.220000px;}
.ya8{bottom:265.350000px;}
.y7e{bottom:275.250000px;}
.y6a{bottom:280.290000px;}
.yce{bottom:283.350000px;}
.ya7{bottom:285.420000px;}
.y7{bottom:287.040000px;}
.y69{bottom:300.270000px;}
.ycd{bottom:303.420000px;}
.y7d{bottom:304.320000px;}
.ye5{bottom:305.400000px;}
.ya6{bottom:314.400000px;}
.y68{bottom:320.250000px;}
.y7c{bottom:324.300000px;}
.ycc{bottom:332.400000px;}
.ya5{bottom:334.470000px;}
.y3c{bottom:334.650000px;}
.y67{bottom:340.320000px;}
.ycb{bottom:352.470000px;}
.y7b{bottom:353.370000px;}
.ya4{bottom:354.450000px;}
.y3b{bottom:356.430000px;}
.y66{bottom:360.300000px;}
.y3a{bottom:373.080000px;}
.y7a{bottom:373.350000px;}
.ye4{bottom:374.520000px;}
.y65{bottom:380.370000px;}
.yca{bottom:381.450000px;}
.ya3{bottom:383.520000px;}
.y39{bottom:389.820000px;}
.y79{bottom:393.420000px;}
.y64{bottom:400.350000px;}
.yc9{bottom:401.520000px;}
.ya2{bottom:403.500000px;}
.y38{bottom:406.470000px;}
.y78{bottom:413.400000px;}
.y63{bottom:420.420000px;}
.yc8{bottom:421.500000px;}
.y37{bottom:423.120000px;}
.ye3{bottom:423.570000px;}
.ya1{bottom:432.570000px;}
.y36{bottom:439.860000px;}
.y62{bottom:440.400000px;}
.y77{bottom:442.470000px;}
.ye2{bottom:443.550000px;}
.yc7{bottom:450.570000px;}
.ya0{bottom:452.550000px;}
.y35{bottom:456.510000px;}
.y61{bottom:460.470000px;}
.y76{bottom:462.450000px;}
.yc6{bottom:470.550000px;}
.ye1{bottom:472.530000px;}
.y34{bottom:473.250000px;}
.y60{bottom:480.450000px;}
.y9f{bottom:481.530000px;}
.y33{bottom:489.900000px;}
.y75{bottom:491.520000px;}
.ye0{bottom:492.600000px;}
.yc5{bottom:499.530000px;}
.y5f{bottom:500.520000px;}
.y9e{bottom:501.600000px;}
.y32{bottom:506.550000px;}
.y74{bottom:511.500000px;}
.yc4{bottom:519.600000px;}
.y5e{bottom:520.500000px;}
.ydf{bottom:521.580000px;}
.y31{bottom:523.290000px;}
.y9d{bottom:530.580000px;}
.y73{bottom:531.570000px;}
.yc3{bottom:539.580000px;}
.y30{bottom:539.940000px;}
.y5d{bottom:540.570000px;}
.yde{bottom:541.650000px;}
.y9c{bottom:550.650000px;}
.y2f{bottom:556.590000px;}
.y5c{bottom:560.550000px;}
.yc2{bottom:568.650000px;}
.ydd{bottom:570.630000px;}
.y2e{bottom:573.330000px;}
.y9b{bottom:579.630000px;}
.y5b{bottom:580.530000px;}
.yc1{bottom:588.630000px;}
.y2d{bottom:589.980000px;}
.ydc{bottom:590.700000px;}
.y9a{bottom:599.700000px;}
.y5a{bottom:600.600000px;}
.y2c{bottom:606.720000px;}
.yc0{bottom:608.700000px;}
.ydb{bottom:619.680000px;}
.y59{bottom:620.580000px;}
.y2b{bottom:623.370000px;}
.y99{bottom:628.680000px;}
.ybf{bottom:637.710000px;}
.yda{bottom:639.780000px;}
.y2a{bottom:640.050000px;}
.y58{bottom:640.680000px;}
.y98{bottom:648.780000px;}
.y29{bottom:656.790000px;}
.ybe{bottom:657.780000px;}
.y57{bottom:660.660000px;}
.y97{bottom:668.760000px;}
.y28{bottom:673.440000px;}
.y56{bottom:680.730000px;}
.ybd{bottom:686.760000px;}
.yd9{bottom:688.830000px;}
.y27{bottom:690.180000px;}
.y96{bottom:697.830000px;}
.y55{bottom:700.710000px;}
.y26{bottom:706.830000px;}
.y95{bottom:717.810000px;}
.y54{bottom:720.780000px;}
.y25{bottom:723.480000px;}
.ybc{bottom:735.810000px;}
.yd8{bottom:737.790000px;}
.y24{bottom:740.220000px;}
.y53{bottom:740.760000px;}
.y94{bottom:746.790000px;}
.ybb{bottom:755.790000px;}
.y23{bottom:756.870000px;}
.y52{bottom:760.830000px;}
.y93{bottom:766.860000px;}
.y22{bottom:773.520000px;}
.y51{bottom:780.810000px;}
.yba{bottom:784.860000px;}
.yd7{bottom:786.840000px;}
.y21{bottom:790.260000px;}
.y92{bottom:795.840000px;}
.y50{bottom:800.790000px;}
.yb9{bottom:804.840000px;}
.y20{bottom:806.910000px;}
.y91{bottom:815.910000px;}
.y4f{bottom:820.860000px;}
.y1f{bottom:823.650000px;}
.yb8{bottom:824.910000px;}
.yd6{bottom:835.890000px;}
.y1e{bottom:840.300000px;}
.y4e{bottom:840.840000px;}
.y90{bottom:844.890000px;}
.yb7{bottom:853.890000px;}
.y1d{bottom:856.950000px;}
.y4d{bottom:860.910000px;}
.y8f{bottom:864.960000px;}
.yb6{bottom:873.960000px;}
.y1c{bottom:874.500000px;}
.y4c{bottom:880.890000px;}
.y8e{bottom:884.940000px;}
.yb5{bottom:893.940000px;}
.y1b{bottom:894.120000px;}
.y4b{bottom:900.960000px;}
.y1a{bottom:912.480000px;}
.y8d{bottom:914.010000px;}
.y4a{bottom:920.940000px;}
.yb4{bottom:923.010000px;}
.y19{bottom:930.840000px;}
.y8c{bottom:933.990000px;}
.y49{bottom:941.010000px;}
.yb3{bottom:942.990000px;}
.y18{bottom:949.200000px;}
.y8b{bottom:954.060000px;}
.y48{bottom:960.990000px;}
.y17{bottom:967.560000px;}
.yb2{bottom:972.060000px;}
.y47{bottom:981.060000px;}
.y8a{bottom:983.040000px;}
.y16{bottom:985.830000px;}
.yb1{bottom:992.040000px;}
.y46{bottom:1001.040000px;}
.y89{bottom:1003.110000px;}
.y15{bottom:1003.830000px;}
.yb0{bottom:1012.110000px;}
.y45{bottom:1021.110000px;}
.y14{bottom:1021.290000px;}
.y88{bottom:1023.090000px;}
.yaf{bottom:1032.090000px;}
.y44{bottom:1041.090000px;}
.y13{bottom:1051.080000px;}
.y87{bottom:1052.070000px;}
.y43{bottom:1061.100000px;}
.y86{bottom:1072.170000px;}
.y12{bottom:1074.510000px;}
.y42{bottom:1081.170000px;}
.y85{bottom:1092.150000px;}
.y11{bottom:1096.650000px;}
.y41{bottom:1101.150000px;}
.y6{bottom:1115.550000px;}
.y40{bottom:1121.220000px;}
.y1{bottom:1134.180000px;}
.y3f{bottom:1141.200000px;}
.h6{height:55.239258px;}
.h3{height:61.499707px;}
.h7{height:61.793886px;}
.h4{height:62.233594px;}
.h8{height:67.391895px;}
.h5{height:71.613281px;}
.hb{height:73.652344px;}
.ha{height:74.531250px;}
.hc{height:78.082031px;}
.h2{height:86.130000px;}
.h9{height:86.828906px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.850000px;}
.w4{width:329.700000px;}
.w2{width:331.890000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:98.280000px;}
.x8{left:104.669987px;}
.x6{left:106.379987px;}
.xa{left:148.979987px;}
.x9{left:159.599987px;}
.xc{left:165.269987px;}
.x2{left:185.880000px;}
.x3{left:430.170000px;}
.x7{left:446.549987px;}
.x5{left:481.020000px;}
.xd{left:768.419987px;}
.xb{left:777.599987px;}
@media print{
.v1{vertical-align:-74.560000pt;}
.v4{vertical-align:-71.040000pt;}
.v3{vertical-align:-21.440000pt;}
.v5{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls7b{letter-spacing:-0.448000pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls7c{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.147200pt;}
.lsc{letter-spacing:-0.143467pt;}
.ls15{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.099733pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.028160pt;}
.ls60{letter-spacing:-0.000003pt;}
.ls9{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.011200pt;}
.ls78{letter-spacing:0.012480pt;}
.ls8{letter-spacing:0.024000pt;}
.ls16{letter-spacing:0.042667pt;}
.ls65{letter-spacing:0.047680pt;}
.ls14{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.074133pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.136533pt;}
.ls3f{letter-spacing:0.138133pt;}
.ls3{letter-spacing:0.147733pt;}
.ls4{letter-spacing:0.152960pt;}
.ls2{letter-spacing:0.160000pt;}
.ls64{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.234667pt;}
.ls17{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.298667pt;}
.ls31{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.384000pt;}
.ls4e{letter-spacing:0.426667pt;}
.ls27{letter-spacing:0.448000pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.663360pt;}
.ls24{letter-spacing:0.896000pt;}
.ls3d{letter-spacing:1.216000pt;}
.ls44{letter-spacing:1.472000pt;}
.ls42{letter-spacing:1.536000pt;}
.ls3a{letter-spacing:1.856000pt;}
.ls47{letter-spacing:2.176000pt;}
.ls46{letter-spacing:2.282667pt;}
.ls3c{letter-spacing:2.432000pt;}
.ls36{letter-spacing:2.496000pt;}
.ls4f{letter-spacing:2.816000pt;}
.ls34{letter-spacing:3.136000pt;}
.ls53{letter-spacing:3.456000pt;}
.ls4b{letter-spacing:3.776000pt;}
.ls18{letter-spacing:4.096000pt;}
.ls2c{letter-spacing:4.416000pt;}
.ls5b{letter-spacing:4.736000pt;}
.ls40{letter-spacing:5.056000pt;}
.ls7{letter-spacing:5.143360pt;}
.ls7a{letter-spacing:5.312000pt;}
.ls41{letter-spacing:5.376000pt;}
.ls79{letter-spacing:5.440000pt;}
.ls63{letter-spacing:5.696000pt;}
.ls6{letter-spacing:5.783360pt;}
.ls21{letter-spacing:6.016000pt;}
.ls5a{letter-spacing:6.336000pt;}
.ls5d{letter-spacing:6.656000pt;}
.ls2a{letter-spacing:6.976000pt;}
.ls5f{letter-spacing:7.296000pt;}
.ls43{letter-spacing:7.552000pt;}
.ls2e{letter-spacing:7.616000pt;}
.ls0{letter-spacing:7.703360pt;}
.ls77{letter-spacing:7.872000pt;}
.ls1f{letter-spacing:7.936000pt;}
.ls20{letter-spacing:8.256000pt;}
.ls25{letter-spacing:8.576000pt;}
.ls1e{letter-spacing:8.896000pt;}
.ls48{letter-spacing:9.216000pt;}
.ls4d{letter-spacing:9.536000pt;}
.ls59{letter-spacing:10.176000pt;}
.ls56{letter-spacing:10.496000pt;}
.ls58{letter-spacing:10.816000pt;}
.ls70{letter-spacing:11.136000pt;}
.ls38{letter-spacing:11.456000pt;}
.ls71{letter-spacing:11.776000pt;}
.ls62{letter-spacing:12.416000pt;}
.ls3e{letter-spacing:12.736000pt;}
.ls37{letter-spacing:13.056000pt;}
.ls35{letter-spacing:13.696000pt;}
.ls6f{letter-spacing:14.336000pt;}
.ls6e{letter-spacing:15.296000pt;}
.ls52{letter-spacing:15.616000pt;}
.ls57{letter-spacing:15.658667pt;}
.ls61{letter-spacing:15.680000pt;}
.ls3b{letter-spacing:16.192000pt;}
.ls55{letter-spacing:16.256000pt;}
.ls69{letter-spacing:16.362667pt;}
.ls6d{letter-spacing:16.576000pt;}
.ls54{letter-spacing:16.896000pt;}
.ls6c{letter-spacing:17.216000pt;}
.ls39{letter-spacing:17.856000pt;}
.ls2d{letter-spacing:18.176000pt;}
.ls5e{letter-spacing:19.136000pt;}
.ls10{letter-spacing:19.520000pt;}
.ls66{letter-spacing:20.096000pt;}
.ls49{letter-spacing:21.376000pt;}
.ls4a{letter-spacing:21.696000pt;}
.ls5c{letter-spacing:22.912000pt;}
.ls4c{letter-spacing:22.976000pt;}
.ls73{letter-spacing:23.616000pt;}
.ls76{letter-spacing:25.536000pt;}
.ls75{letter-spacing:25.856000pt;}
.ls68{letter-spacing:31.680000pt;}
.ls6a{letter-spacing:31.744000pt;}
.ls51{letter-spacing:31.808000pt;}
.ls1d{letter-spacing:31.872000pt;}
.ls50{letter-spacing:31.936000pt;}
.ls67{letter-spacing:31.978667pt;}
.ls1b{letter-spacing:32.000000pt;}
.ls22{letter-spacing:32.064000pt;}
.ls23{letter-spacing:32.106667pt;}
.ls1c{letter-spacing:32.128000pt;}
.ls6b{letter-spacing:32.170667pt;}
.ls74{letter-spacing:32.192000pt;}
.ls19{letter-spacing:32.234667pt;}
.ls72{letter-spacing:32.298667pt;}
.ws4c{word-spacing:-23.424000pt;}
.ws4d{word-spacing:-23.296000pt;}
.ws3{word-spacing:-19.987733pt;}
.ws50{word-spacing:-18.304000pt;}
.wsf{word-spacing:-18.176000pt;}
.ws23{word-spacing:-18.112000pt;}
.ws10{word-spacing:-18.048000pt;}
.ws27{word-spacing:-17.984001pt;}
.ws7{word-spacing:-17.984000pt;}
.ws4e{word-spacing:-17.920000pt;}
.ws12{word-spacing:-17.856000pt;}
.ws1a{word-spacing:-17.792000pt;}
.ws30{word-spacing:-17.728000pt;}
.ws4f{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.408000pt;}
.ws11{word-spacing:-17.344000pt;}
.wse{word-spacing:-17.280000pt;}
.ws2a{word-spacing:-17.216000pt;}
.ws4b{word-spacing:-17.152000pt;}
.ws6{word-spacing:-16.603093pt;}
.ws5{word-spacing:-16.591893pt;}
.ws4{word-spacing:-16.455360pt;}
.ws15{word-spacing:-16.256000pt;}
.ws25{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws46{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.936000pt;}
.ws1f{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws33{word-spacing:-15.807997pt;}
.wsc{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.680000pt;}
.ws26{word-spacing:-15.616000pt;}
.ws20{word-spacing:-15.424000pt;}
.ws0{word-spacing:-15.176640pt;}
.ws1{word-spacing:-15.016640pt;}
.ws2{word-spacing:-14.856640pt;}
.ws8{word-spacing:-14.428800pt;}
.ws34{word-spacing:-14.336000pt;}
.ws9{word-spacing:-14.281600pt;}
.ws2b{word-spacing:-10.658773pt;}
.ws24{word-spacing:-10.594773pt;}
.ws3b{word-spacing:-10.520640pt;}
.ws4a{word-spacing:-9.260160pt;}
.ws36{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.192000pt;}
.ws2d{word-spacing:-0.128000pt;}
.ws39{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.064000pt;}
.ws3c{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws28{word-spacing:2.944000pt;}
.ws3e{word-spacing:6.784000pt;}
.ws3d{word-spacing:6.848000pt;}
.ws2e{word-spacing:6.912000pt;}
.ws29{word-spacing:7.040000pt;}
.ws32{word-spacing:7.360000pt;}
.ws35{word-spacing:8.064000pt;}
.ws47{word-spacing:8.192000pt;}
.ws48{word-spacing:8.448000pt;}
.ws40{word-spacing:8.554667pt;}
.ws44{word-spacing:8.640000pt;}
.ws43{word-spacing:8.768000pt;}
.ws31{word-spacing:13.312000pt;}
.ws37{word-spacing:13.696000pt;}
.ws38{word-spacing:14.016000pt;}
.ws22{word-spacing:15.744000pt;}
.ws1e{word-spacing:15.808000pt;}
.ws1c{word-spacing:15.850667pt;}
.ws41{word-spacing:15.914667pt;}
.ws42{word-spacing:16.000000pt;}
.ws1d{word-spacing:16.064000pt;}
.ws1b{word-spacing:16.128000pt;}
.ws45{word-spacing:16.170667pt;}
.ws19{word-spacing:16.192000pt;}
.ws17{word-spacing:16.234667pt;}
.ws21{word-spacing:16.320000pt;}
.ws16{word-spacing:16.490667pt;}
.ws49{word-spacing:16.554667pt;}
.ws3f{word-spacing:28.224000pt;}
._1f{margin-left:-20.842667pt;}
._0{margin-left:-0.961920pt;}
._1{width:1.442880pt;}
._2{width:2.457173pt;}
._9{width:4.008000pt;}
._4{width:4.969920pt;}
._17{width:5.876053pt;}
._7{width:6.766507pt;}
._5{width:8.176320pt;}
._6{width:9.309760pt;}
._a{width:10.848320pt;}
._3{width:11.917120pt;}
._b{width:13.146240pt;}
._13{width:14.771200pt;}
._14{width:15.680000pt;}
._f{width:16.576000pt;}
._d{width:18.329920pt;}
._c{width:19.238400pt;}
._e{width:20.146880pt;}
._15{width:21.504000pt;}
._11{width:22.826667pt;}
._10{width:23.786667pt;}
._12{width:24.789333pt;}
._19{width:26.177920pt;}
._18{width:27.072000pt;}
._1e{width:28.032000pt;}
._1d{width:29.288320pt;}
._20{width:30.551680pt;}
._1a{width:31.870827pt;}
._21{width:32.876693pt;}
._1b{width:36.288000pt;}
._1c{width:37.248000pt;}
._24{width:39.104000pt;}
._23{width:40.000000pt;}
._16{width:42.624000pt;}
._22{width:633.365333pt;}
._8{width:853.085760pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:20.720000pt;}
.y4{bottom:35.600000pt;}
.y3{bottom:50.400000pt;}
.y2{bottom:65.200000pt;}
.y3e{bottom:67.760000pt;}
.y10{bottom:83.040000pt;}
.y3d{bottom:84.640000pt;}
.yf{bottom:101.040000pt;}
.y72{bottom:106.720000pt;}
.yd5{bottom:111.280000pt;}
.yae{bottom:121.120000pt;}
.y84{bottom:121.920000pt;}
.y71{bottom:124.480000pt;}
.yd4{bottom:129.120000pt;}
.ye{bottom:136.560000pt;}
.yad{bottom:138.880000pt;}
.y83{bottom:139.680000pt;}
.y70{bottom:142.320000pt;}
.yd{bottom:151.440000pt;}
.yd3{bottom:154.880000pt;}
.yac{bottom:156.640000pt;}
.y6f{bottom:160.080000pt;}
.y82{bottom:165.520000pt;}
.yc{bottom:166.240000pt;}
.ye9{bottom:170.480000pt;}
.yd2{bottom:172.640000pt;}
.yab{bottom:174.480000pt;}
.y6e{bottom:177.920000pt;}
.yb{bottom:181.040000pt;}
.y81{bottom:183.280000pt;}
.yd1{bottom:190.506667pt;}
.ye8{bottom:192.266667pt;}
.y6d{bottom:195.706667pt;}
.ya{bottom:195.946667pt;}
.yaa{bottom:200.266667pt;}
.y80{bottom:201.146667pt;}
.yd0{bottom:208.266667pt;}
.ye7{bottom:210.106667pt;}
.y9{bottom:210.746667pt;}
.y6c{bottom:213.546667pt;}
.ya9{bottom:218.106667pt;}
.y8{bottom:225.546667pt;}
.ycf{bottom:226.106667pt;}
.y7f{bottom:226.906667pt;}
.ye6{bottom:227.866667pt;}
.y6b{bottom:231.306667pt;}
.ya8{bottom:235.866667pt;}
.y7e{bottom:244.666667pt;}
.y6a{bottom:249.146667pt;}
.yce{bottom:251.866667pt;}
.ya7{bottom:253.706667pt;}
.y7{bottom:255.146667pt;}
.y69{bottom:266.906667pt;}
.ycd{bottom:269.706667pt;}
.y7d{bottom:270.506667pt;}
.ye5{bottom:271.466667pt;}
.ya6{bottom:279.466667pt;}
.y68{bottom:284.666667pt;}
.y7c{bottom:288.266667pt;}
.ycc{bottom:295.466667pt;}
.ya5{bottom:297.306667pt;}
.y3c{bottom:297.466667pt;}
.y67{bottom:302.506667pt;}
.ycb{bottom:313.306667pt;}
.y7b{bottom:314.106667pt;}
.ya4{bottom:315.066667pt;}
.y3b{bottom:316.826667pt;}
.y66{bottom:320.266667pt;}
.y3a{bottom:331.626667pt;}
.y7a{bottom:331.866667pt;}
.ye4{bottom:332.906667pt;}
.y65{bottom:338.106667pt;}
.yca{bottom:339.066667pt;}
.ya3{bottom:340.906667pt;}
.y39{bottom:346.506667pt;}
.y79{bottom:349.706667pt;}
.y64{bottom:355.866667pt;}
.yc9{bottom:356.906667pt;}
.ya2{bottom:358.666667pt;}
.y38{bottom:361.306667pt;}
.y78{bottom:367.466667pt;}
.y63{bottom:373.706667pt;}
.yc8{bottom:374.666667pt;}
.y37{bottom:376.106667pt;}
.ye3{bottom:376.506667pt;}
.ya1{bottom:384.506667pt;}
.y36{bottom:390.986667pt;}
.y62{bottom:391.466667pt;}
.y77{bottom:393.306667pt;}
.ye2{bottom:394.266667pt;}
.yc7{bottom:400.506667pt;}
.ya0{bottom:402.266667pt;}
.y35{bottom:405.786667pt;}
.y61{bottom:409.306667pt;}
.y76{bottom:411.066667pt;}
.yc6{bottom:418.266667pt;}
.ye1{bottom:420.026667pt;}
.y34{bottom:420.666667pt;}
.y60{bottom:427.066667pt;}
.y9f{bottom:428.026667pt;}
.y33{bottom:435.466667pt;}
.y75{bottom:436.906667pt;}
.ye0{bottom:437.866667pt;}
.yc5{bottom:444.026667pt;}
.y5f{bottom:444.906667pt;}
.y9e{bottom:445.866667pt;}
.y32{bottom:450.266667pt;}
.y74{bottom:454.666667pt;}
.yc4{bottom:461.866667pt;}
.y5e{bottom:462.666667pt;}
.ydf{bottom:463.626667pt;}
.y31{bottom:465.146667pt;}
.y9d{bottom:471.626667pt;}
.y73{bottom:472.506667pt;}
.yc3{bottom:479.626667pt;}
.y30{bottom:479.946667pt;}
.y5d{bottom:480.506667pt;}
.yde{bottom:481.466667pt;}
.y9c{bottom:489.466667pt;}
.y2f{bottom:494.746667pt;}
.y5c{bottom:498.266667pt;}
.yc2{bottom:505.466667pt;}
.ydd{bottom:507.226667pt;}
.y2e{bottom:509.626667pt;}
.y9b{bottom:515.226667pt;}
.y5b{bottom:516.026667pt;}
.yc1{bottom:523.226667pt;}
.y2d{bottom:524.426667pt;}
.ydc{bottom:525.066667pt;}
.y9a{bottom:533.066667pt;}
.y5a{bottom:533.866667pt;}
.y2c{bottom:539.306667pt;}
.yc0{bottom:541.066667pt;}
.ydb{bottom:550.826667pt;}
.y59{bottom:551.626667pt;}
.y2b{bottom:554.106667pt;}
.y99{bottom:558.826667pt;}
.ybf{bottom:566.853333pt;}
.yda{bottom:568.693333pt;}
.y2a{bottom:568.933333pt;}
.y58{bottom:569.493333pt;}
.y98{bottom:576.693333pt;}
.y29{bottom:583.813333pt;}
.ybe{bottom:584.693333pt;}
.y57{bottom:587.253333pt;}
.y97{bottom:594.453333pt;}
.y28{bottom:598.613333pt;}
.y56{bottom:605.093333pt;}
.ybd{bottom:610.453333pt;}
.yd9{bottom:612.293333pt;}
.y27{bottom:613.493333pt;}
.y96{bottom:620.293333pt;}
.y55{bottom:622.853333pt;}
.y26{bottom:628.293333pt;}
.y95{bottom:638.053333pt;}
.y54{bottom:640.693333pt;}
.y25{bottom:643.093333pt;}
.ybc{bottom:654.053333pt;}
.yd8{bottom:655.813333pt;}
.y24{bottom:657.973333pt;}
.y53{bottom:658.453333pt;}
.y94{bottom:663.813333pt;}
.ybb{bottom:671.813333pt;}
.y23{bottom:672.773333pt;}
.y52{bottom:676.293333pt;}
.y93{bottom:681.653333pt;}
.y22{bottom:687.573333pt;}
.y51{bottom:694.053333pt;}
.yba{bottom:697.653333pt;}
.yd7{bottom:699.413333pt;}
.y21{bottom:702.453333pt;}
.y92{bottom:707.413333pt;}
.y50{bottom:711.813333pt;}
.yb9{bottom:715.413333pt;}
.y20{bottom:717.253333pt;}
.y91{bottom:725.253333pt;}
.y4f{bottom:729.653333pt;}
.y1f{bottom:732.133333pt;}
.yb8{bottom:733.253333pt;}
.yd6{bottom:743.013333pt;}
.y1e{bottom:746.933333pt;}
.y4e{bottom:747.413333pt;}
.y90{bottom:751.013333pt;}
.yb7{bottom:759.013333pt;}
.y1d{bottom:761.733333pt;}
.y4d{bottom:765.253333pt;}
.y8f{bottom:768.853333pt;}
.yb6{bottom:776.853333pt;}
.y1c{bottom:777.333333pt;}
.y4c{bottom:783.013333pt;}
.y8e{bottom:786.613333pt;}
.yb5{bottom:794.613333pt;}
.y1b{bottom:794.773333pt;}
.y4b{bottom:800.853333pt;}
.y1a{bottom:811.093333pt;}
.y8d{bottom:812.453333pt;}
.y4a{bottom:818.613333pt;}
.yb4{bottom:820.453333pt;}
.y19{bottom:827.413333pt;}
.y8c{bottom:830.213333pt;}
.y49{bottom:836.453333pt;}
.yb3{bottom:838.213333pt;}
.y18{bottom:843.733333pt;}
.y8b{bottom:848.053333pt;}
.y48{bottom:854.213333pt;}
.y17{bottom:860.053333pt;}
.yb2{bottom:864.053333pt;}
.y47{bottom:872.053333pt;}
.y8a{bottom:873.813333pt;}
.y16{bottom:876.293333pt;}
.yb1{bottom:881.813333pt;}
.y46{bottom:889.813333pt;}
.y89{bottom:891.653333pt;}
.y15{bottom:892.293333pt;}
.yb0{bottom:899.653333pt;}
.y45{bottom:907.653333pt;}
.y14{bottom:907.813333pt;}
.y88{bottom:909.413333pt;}
.yaf{bottom:917.413333pt;}
.y44{bottom:925.413333pt;}
.y13{bottom:934.293333pt;}
.y87{bottom:935.173333pt;}
.y43{bottom:943.200000pt;}
.y86{bottom:953.040000pt;}
.y12{bottom:955.120000pt;}
.y42{bottom:961.040000pt;}
.y85{bottom:970.800000pt;}
.y11{bottom:974.800000pt;}
.y41{bottom:978.800000pt;}
.y6{bottom:991.600000pt;}
.y40{bottom:996.640000pt;}
.y1{bottom:1008.160000pt;}
.y3f{bottom:1014.400000pt;}
.h6{height:49.101562pt;}
.h3{height:54.666406pt;}
.h7{height:54.927899pt;}
.h4{height:55.318750pt;}
.h8{height:59.903906pt;}
.h5{height:63.656250pt;}
.hb{height:65.468750pt;}
.ha{height:66.250000pt;}
.hc{height:69.406250pt;}
.h2{height:76.560000pt;}
.h9{height:77.181250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.200000pt;}
.w4{width:293.066667pt;}
.w2{width:295.013333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:87.360000pt;}
.x8{left:93.039988pt;}
.x6{left:94.559988pt;}
.xa{left:132.426655pt;}
.x9{left:141.866655pt;}
.xc{left:146.906655pt;}
.x2{left:165.226667pt;}
.x3{left:382.373333pt;}
.x7{left:396.933322pt;}
.x5{left:427.573333pt;}
.xd{left:683.039988pt;}
.xb{left:691.199988pt;}
}




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