
    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_3a0f473edefb4fca90e67add.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_f048a9b05171c89c8e874760.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873000;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_a98addb39540a098ce2f3dc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f64ee4845582564d8160a553.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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_9b70308d8d972fb34fb3c725.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_16938f7e0021c723aae1819d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_b07b02729f3a1ab4aeab9e5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_18ed6b72314e424a7650b424.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_ba4cd5a461bd3005e982b11e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_18ed6b72314e424a7650b424.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_788325c790585121a895f6dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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_441426e22bc87e86a2d37462.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_612246f8964ecdb842e235f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.979000;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_e3d3b16441a41ad37cae6640.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.988000;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_18ed6b72314e424a7650b424.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,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);}
.m2{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.984000px;}
.v3{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.lsa{letter-spacing:-4.320000px;}
.ls8{letter-spacing:-3.747960px;}
.ls5{letter-spacing:-3.123300px;}
.ls12{letter-spacing:-2.940000px;}
.ls9{letter-spacing:-2.640000px;}
.lsc{letter-spacing:-2.400000px;}
.ls2{letter-spacing:-1.987731px;}
.ls1{letter-spacing:-1.920000px;}
.ls6{letter-spacing:-1.873980px;}
.lsd{letter-spacing:-1.800000px;}
.lse{letter-spacing:-1.620000px;}
.ls4{letter-spacing:-1.491984px;}
.ls7{letter-spacing:-1.249320px;}
.lsb{letter-spacing:-1.119360px;}
.ls11{letter-spacing:-0.120000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.080000px;}
.ls10{letter-spacing:5.455800px;}
.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;}
}
.ws3{word-spacing:-20.820000px;}
.ws4{word-spacing:-20.034000px;}
.ws8b{word-spacing:-17.328000px;}
.ws0{word-spacing:-16.320000px;}
.ws2{word-spacing:-14.367180px;}
.ws5{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.742520px;}
.ws63{word-spacing:-8.880000px;}
.ws83{word-spacing:-4.500000px;}
.ws6e{word-spacing:-4.260000px;}
.ws82{word-spacing:-3.360000px;}
.ws76{word-spacing:-2.940000px;}
.ws55{word-spacing:-2.640000px;}
.ws18{word-spacing:-2.520000px;}
.ws12{word-spacing:-2.400000px;}
.ws51{word-spacing:-2.280000px;}
.ws36{word-spacing:-2.160000px;}
.ws59{word-spacing:-1.980000px;}
.ws2c{word-spacing:-1.800000px;}
.ws6f{word-spacing:-1.680000px;}
.ws6b{word-spacing:-1.620000px;}
.ws4c{word-spacing:-1.560000px;}
.ws47{word-spacing:-1.380000px;}
.ws40{word-spacing:-1.260000px;}
.ws24{word-spacing:-1.200000px;}
.ws61{word-spacing:-1.080000px;}
.ws56{word-spacing:-1.020000px;}
.ws75{word-spacing:-0.840000px;}
.ws5e{word-spacing:-0.660000px;}
.ws2a{word-spacing:-0.600000px;}
.ws29{word-spacing:-0.420000px;}
.ws71{word-spacing:-0.180000px;}
.ws2b{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws52{word-spacing:0.240000px;}
.ws86{word-spacing:0.300000px;}
.ws5d{word-spacing:0.420000px;}
.ws4a{word-spacing:0.540000px;}
.ws37{word-spacing:0.600000px;}
.ws45{word-spacing:0.780000px;}
.ws28{word-spacing:0.840000px;}
.ws57{word-spacing:0.900000px;}
.ws7e{word-spacing:0.960000px;}
.wsa{word-spacing:1.119360px;}
.ws80{word-spacing:1.200000px;}
.ws17{word-spacing:1.260000px;}
.ws9{word-spacing:1.440000px;}
.ws87{word-spacing:1.500000px;}
.ws19{word-spacing:1.680000px;}
.ws68{word-spacing:1.740000px;}
.ws1e{word-spacing:1.800000px;}
.ws1c{word-spacing:1.860000px;}
.ws3d{word-spacing:1.920000px;}
.ws5c{word-spacing:2.040000px;}
.ws11{word-spacing:2.400000px;}
.ws46{word-spacing:2.460000px;}
.ws8a{word-spacing:2.520000px;}
.ws1a{word-spacing:2.700000px;}
.wsb{word-spacing:2.940000px;}
.ws7f{word-spacing:3.120000px;}
.ws7{word-spacing:3.123300px;}
.wsc{word-spacing:3.480000px;}
.ws20{word-spacing:3.600000px;}
.ws10{word-spacing:3.720000px;}
.ws8{word-spacing:3.747960px;}
.ws42{word-spacing:3.960000px;}
.ws81{word-spacing:4.140000px;}
.wsf{word-spacing:4.260000px;}
.ws53{word-spacing:4.320000px;}
.ws58{word-spacing:4.860000px;}
.ws14{word-spacing:4.980000px;}
.ws77{word-spacing:5.040000px;}
.ws38{word-spacing:5.100000px;}
.ws43{word-spacing:5.220000px;}
.ws3a{word-spacing:5.340000px;}
.ws6c{word-spacing:5.460000px;}
.ws1f{word-spacing:5.520000px;}
.ws13{word-spacing:5.580000px;}
.ws25{word-spacing:5.760000px;}
.ws74{word-spacing:5.820000px;}
.ws54{word-spacing:6.060000px;}
.ws16{word-spacing:6.180000px;}
.ws4b{word-spacing:6.240000px;}
.ws5f{word-spacing:6.300000px;}
.wsd{word-spacing:6.420000px;}
.ws5b{word-spacing:6.540000px;}
.ws33{word-spacing:6.720000px;}
.ws15{word-spacing:6.780000px;}
.ws23{word-spacing:6.960000px;}
.ws67{word-spacing:7.200000px;}
.ws4e{word-spacing:7.260000px;}
.ws5a{word-spacing:7.440000px;}
.ws48{word-spacing:7.500000px;}
.ws2d{word-spacing:7.620000px;}
.ws1d{word-spacing:7.860000px;}
.ws31{word-spacing:7.920000px;}
.ws1b{word-spacing:8.040000px;}
.ws30{word-spacing:8.100000px;}
.ws72{word-spacing:8.400000px;}
.ws65{word-spacing:8.760000px;}
.ws39{word-spacing:8.940000px;}
.ws22{word-spacing:9.000000px;}
.ws70{word-spacing:9.120000px;}
.ws62{word-spacing:9.720000px;}
.ws6d{word-spacing:9.840000px;}
.ws35{word-spacing:9.960000px;}
.ws3c{word-spacing:10.380000px;}
.ws49{word-spacing:10.440000px;}
.ws27{word-spacing:10.500000px;}
.ws78{word-spacing:10.560000px;}
.ws4f{word-spacing:10.920000px;}
.ws7d{word-spacing:11.640000px;}
.ws6a{word-spacing:11.760000px;}
.ws85{word-spacing:11.820000px;}
.ws69{word-spacing:11.940000px;}
.ws50{word-spacing:12.060000px;}
.ws34{word-spacing:12.480000px;}
.ws3b{word-spacing:12.720000px;}
.ws66{word-spacing:12.840000px;}
.ws44{word-spacing:12.900000px;}
.ws64{word-spacing:13.140000px;}
.ws7b{word-spacing:13.500000px;}
.ws2e{word-spacing:13.920000px;}
.ws41{word-spacing:14.400000px;}
.ws26{word-spacing:14.700000px;}
.ws73{word-spacing:15.120000px;}
.ws79{word-spacing:15.300000px;}
.ws21{word-spacing:15.720000px;}
.ws88{word-spacing:16.380000px;}
.wse{word-spacing:17.160000px;}
.ws89{word-spacing:18.240000px;}
.ws3f{word-spacing:19.380000px;}
.ws4d{word-spacing:19.800000px;}
.ws7a{word-spacing:20.220000px;}
.ws7c{word-spacing:22.860000px;}
.ws60{word-spacing:24.900000px;}
.ws3e{word-spacing:25.980000px;}
.ws84{word-spacing:30.660000px;}
.ws32{word-spacing:31.800000px;}
.ws2f{word-spacing:34.620000px;}
._b{margin-left:-2871.952800px;}
._14{margin-left:-46.499400px;}
._11{margin-left:-40.020000px;}
._c{margin-left:-33.420000px;}
._13{margin-left:-28.260000px;}
._9{margin-left:-24.840000px;}
._f{margin-left:-15.060000px;}
._e{margin-left:-14.040000px;}
._d{margin-left:-12.780000px;}
._a{margin-left:-8.773800px;}
._3{margin-left:-7.204800px;}
._4{margin-left:-5.940000px;}
._5{margin-left:-4.675200px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.440000px;}
._2{width:1.920000px;}
._8{width:3.000000px;}
._6{width:4.910400px;}
._7{width:7.151160px;}
._18{width:14.280000px;}
._19{width:16.360800px;}
._12{width:25.969200px;}
._17{width:27.544200px;}
._16{width:29.239200px;}
._15{width:35.571600px;}
._10{width:741.553200px;}
._1a{width:1821.765600px;}
.fc4{color:rgb(177,28,40);}
.fc3{color:rgb(16,15,14);}
.fc2{color:rgb(46,162,65);}
.fc1{color:rgb(58,56,56);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs2{font-size:37.299600px;}
.fs7{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:49.693267px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:62.466000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:92.834700px;}
.yd9{bottom:102.015150px;}
.y7b{bottom:110.834700px;}
.y33{bottom:111.385650px;}
.y4f{bottom:111.416100px;}
.yd1{bottom:111.577350px;}
.yaa{bottom:111.605700px;}
.yd8{bottom:116.415150px;}
.y32{bottom:129.385650px;}
.y4e{bottom:129.416100px;}
.yd0{bottom:129.577350px;}
.ya9{bottom:129.605700px;}
.y31{bottom:147.385650px;}
.y4d{bottom:147.416100px;}
.ycf{bottom:147.577350px;}
.ya8{bottom:147.605700px;}
.yd7{bottom:152.759100px;}
.y30{bottom:165.385650px;}
.y4c{bottom:165.416100px;}
.yce{bottom:165.577350px;}
.ya7{bottom:165.605700px;}
.yd6{bottom:167.159100px;}
.yd5{bottom:181.559100px;}
.y2f{bottom:183.385650px;}
.y4b{bottom:183.416100px;}
.ycd{bottom:183.577350px;}
.ya6{bottom:183.605700px;}
.y2e{bottom:201.385650px;}
.y4a{bottom:201.416100px;}
.ycc{bottom:201.577350px;}
.ya5{bottom:201.606900px;}
.yd4{bottom:210.359100px;}
.y2d{bottom:219.385650px;}
.y49{bottom:219.416100px;}
.ycb{bottom:219.577350px;}
.y2c{bottom:237.385650px;}
.y48{bottom:237.416100px;}
.yca{bottom:237.577350px;}
.ya4{bottom:237.591450px;}
.yd3{bottom:239.159100px;}
.yd2{bottom:253.559100px;}
.y2b{bottom:255.385650px;}
.y47{bottom:255.416100px;}
.yc9{bottom:255.577350px;}
.ya3{bottom:255.591450px;}
.y2a{bottom:273.385650px;}
.y46{bottom:273.416100px;}
.yc8{bottom:273.577350px;}
.ya2{bottom:273.591450px;}
.y29{bottom:291.385650px;}
.y45{bottom:291.416100px;}
.yc7{bottom:291.577350px;}
.ya1{bottom:291.591450px;}
.y28{bottom:309.385650px;}
.y44{bottom:309.416100px;}
.yc6{bottom:309.577350px;}
.ya0{bottom:309.591450px;}
.y27{bottom:327.385650px;}
.y43{bottom:327.416100px;}
.yc5{bottom:327.577350px;}
.y9f{bottom:327.591450px;}
.y26{bottom:345.385650px;}
.y42{bottom:345.416100px;}
.yc4{bottom:345.577350px;}
.y9e{bottom:345.592800px;}
.y25{bottom:363.385650px;}
.y41{bottom:363.416100px;}
.yc3{bottom:363.577350px;}
.y24{bottom:381.385650px;}
.y40{bottom:381.416100px;}
.y9d{bottom:381.577350px;}
.y23{bottom:399.385650px;}
.y3f{bottom:399.416100px;}
.y9c{bottom:399.577350px;}
.y22{bottom:417.385650px;}
.y3e{bottom:417.416100px;}
.y9b{bottom:417.577350px;}
.y21{bottom:435.385650px;}
.y3d{bottom:435.416100px;}
.y9a{bottom:435.577350px;}
.y20{bottom:453.385650px;}
.y3c{bottom:453.416100px;}
.y99{bottom:453.577350px;}
.y1f{bottom:471.385650px;}
.y3b{bottom:471.416100px;}
.y98{bottom:471.577350px;}
.y1e{bottom:489.385650px;}
.y3a{bottom:489.417300px;}
.yc2{bottom:489.577350px;}
.y97{bottom:489.578550px;}
.y1d{bottom:507.385650px;}
.yc1{bottom:507.577350px;}
.y1c{bottom:525.385650px;}
.y39{bottom:525.402000px;}
.y96{bottom:525.563250px;}
.yc0{bottom:525.577350px;}
.y1b{bottom:543.385650px;}
.y38{bottom:543.402000px;}
.y95{bottom:543.563250px;}
.ybf{bottom:543.577350px;}
.y1a{bottom:561.385650px;}
.y37{bottom:561.402000px;}
.y94{bottom:561.563250px;}
.ybe{bottom:561.577350px;}
.y19{bottom:579.385650px;}
.y36{bottom:579.402000px;}
.y93{bottom:579.563250px;}
.ybd{bottom:579.577350px;}
.y18{bottom:597.386850px;}
.y35{bottom:597.402000px;}
.y92{bottom:597.564450px;}
.ybc{bottom:597.577350px;}
.y17{bottom:614.636850px;}
.y34{bottom:615.402000px;}
.ybb{bottom:615.577350px;}
.y91{bottom:633.549000px;}
.yba{bottom:633.578550px;}
.y90{bottom:651.550200px;}
.y16{bottom:668.709150px;}
.yb9{bottom:669.563250px;}
.y6a{bottom:687.478200px;}
.y8f{bottom:687.534900px;}
.yb8{bottom:687.563250px;}
.y69{bottom:705.478200px;}
.y8e{bottom:705.534900px;}
.yb7{bottom:705.563250px;}
.y15{bottom:720.724950px;}
.y68{bottom:723.478200px;}
.y8d{bottom:723.534900px;}
.yb6{bottom:723.564450px;}
.y14{bottom:738.724950px;}
.y67{bottom:741.478200px;}
.y8c{bottom:741.534900px;}
.y13{bottom:756.724950px;}
.y7a{bottom:759.478200px;}
.y8b{bottom:759.536100px;}
.yb5{bottom:759.549000px;}
.y12{bottom:774.724950px;}
.y79{bottom:777.478200px;}
.y66{bottom:777.506400px;}
.yb4{bottom:777.550200px;}
.y8a{bottom:777.686100px;}
.y11{bottom:792.724950px;}
.y78{bottom:795.478200px;}
.y65{bottom:795.506400px;}
.y10{bottom:810.724950px;}
.y77{bottom:813.478200px;}
.y64{bottom:813.506400px;}
.y89{bottom:813.520650px;}
.yb3{bottom:813.534900px;}
.yf{bottom:828.724950px;}
.y76{bottom:831.478200px;}
.y63{bottom:831.506400px;}
.y88{bottom:831.520650px;}
.yb2{bottom:831.534900px;}
.ye{bottom:846.724950px;}
.y75{bottom:849.478200px;}
.y62{bottom:849.506400px;}
.y87{bottom:849.520650px;}
.yb1{bottom:849.534900px;}
.yd{bottom:864.724950px;}
.y74{bottom:867.478200px;}
.y61{bottom:867.506400px;}
.y86{bottom:867.520650px;}
.yb0{bottom:867.534900px;}
.yc{bottom:882.724950px;}
.y73{bottom:885.478200px;}
.y60{bottom:885.506400px;}
.y85{bottom:885.520650px;}
.yaf{bottom:885.534900px;}
.y72{bottom:903.478200px;}
.y5f{bottom:903.506400px;}
.y84{bottom:903.520650px;}
.yae{bottom:903.534900px;}
.y71{bottom:921.478200px;}
.y5e{bottom:921.506400px;}
.y83{bottom:921.520650px;}
.yad{bottom:921.534900px;}
.yb{bottom:934.740750px;}
.yac{bottom:939.386100px;}
.y70{bottom:939.478200px;}
.y5d{bottom:939.506400px;}
.y82{bottom:939.520650px;}
.ya{bottom:953.136600px;}
.y6f{bottom:957.478200px;}
.y5c{bottom:957.506400px;}
.y81{bottom:957.520650px;}
.y9{bottom:967.792650px;}
.y6e{bottom:975.478200px;}
.y5b{bottom:975.506400px;}
.y80{bottom:975.520650px;}
.y6d{bottom:993.478200px;}
.y5a{bottom:993.506400px;}
.y7f{bottom:993.520650px;}
.yab{bottom:993.521850px;}
.y8{bottom:1006.400550px;}
.y6c{bottom:1011.478200px;}
.y59{bottom:1011.506400px;}
.y7e{bottom:1011.520650px;}
.y6b{bottom:1029.478200px;}
.y58{bottom:1029.506400px;}
.y7d{bottom:1029.521850px;}
.y7{bottom:1038.800700px;}
.y57{bottom:1047.506400px;}
.y56{bottom:1065.506400px;}
.y6{bottom:1079.704500px;}
.y55{bottom:1083.506400px;}
.y54{bottom:1101.506400px;}
.y53{bottom:1119.506400px;}
.y52{bottom:1137.506400px;}
.y51{bottom:1155.506400px;}
.y3{bottom:1171.282650px;}
.y2{bottom:1185.682650px;}
.y5{bottom:1187.783850px;}
.y1{bottom:1200.082650px;}
.y4{bottom:1200.849900px;}
.y50{bottom:1210.252050px;}
.h9{height:21.547680px;}
.h4{height:25.102631px;}
.ha{height:36.000000px;}
.h2{height:36.960000px;}
.h3{height:38.263815px;}
.hc{height:41.580000px;}
.h5{height:42.039618px;}
.hf{height:44.940000px;}
.he{height:45.180000px;}
.hd{height:46.020000px;}
.hb{height:46.200000px;}
.h6{height:50.820000px;}
.h8{height:56.297520px;}
.h10{height:70.516800px;}
.h7{height:81.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:80.787450px;}
.x12{left:89.291400px;}
.x3{left:93.543300px;}
.xa{left:95.668950px;}
.x4{left:102.053100px;}
.x5{left:106.305150px;}
.xb{left:110.799450px;}
.xf{left:114.414000px;}
.x10{left:123.307050px;}
.x15{left:133.299150px;}
.x14{left:228.669600px;}
.x16{left:324.528600px;}
.x8{left:370.603650px;}
.xe{left:449.078700px;}
.x1{left:457.500000px;}
.x6{left:461.840550px;}
.xc{left:463.960200px;}
.x7{left:474.596400px;}
.xd{left:479.090700px;}
.x11{left:483.094500px;}
.x2{left:584.158500px;}
.x13{left:713.078550px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.lsa{letter-spacing:-3.840000pt;}
.ls8{letter-spacing:-3.331520pt;}
.ls5{letter-spacing:-2.776267pt;}
.ls12{letter-spacing:-2.613333pt;}
.ls9{letter-spacing:-2.346667pt;}
.lsc{letter-spacing:-2.133333pt;}
.ls2{letter-spacing:-1.766872pt;}
.ls1{letter-spacing:-1.706667pt;}
.ls6{letter-spacing:-1.665760pt;}
.lsd{letter-spacing:-1.600000pt;}
.lse{letter-spacing:-1.440000pt;}
.ls4{letter-spacing:-1.326208pt;}
.ls7{letter-spacing:-1.110507pt;}
.lsb{letter-spacing:-0.994987pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls10{letter-spacing:4.849600pt;}
.ws3{word-spacing:-18.506667pt;}
.ws4{word-spacing:-17.808000pt;}
.ws8b{word-spacing:-15.402667pt;}
.ws0{word-spacing:-14.506667pt;}
.ws2{word-spacing:-12.770827pt;}
.ws5{word-spacing:-12.480000pt;}
.ws1{word-spacing:-12.215573pt;}
.ws63{word-spacing:-7.893333pt;}
.ws83{word-spacing:-4.000000pt;}
.ws6e{word-spacing:-3.786667pt;}
.ws82{word-spacing:-2.986667pt;}
.ws76{word-spacing:-2.613333pt;}
.ws55{word-spacing:-2.346667pt;}
.ws18{word-spacing:-2.240000pt;}
.ws12{word-spacing:-2.133333pt;}
.ws51{word-spacing:-2.026667pt;}
.ws36{word-spacing:-1.920000pt;}
.ws59{word-spacing:-1.760000pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws6f{word-spacing:-1.493333pt;}
.ws6b{word-spacing:-1.440000pt;}
.ws4c{word-spacing:-1.386667pt;}
.ws47{word-spacing:-1.226667pt;}
.ws40{word-spacing:-1.120000pt;}
.ws24{word-spacing:-1.066667pt;}
.ws61{word-spacing:-0.960000pt;}
.ws56{word-spacing:-0.906667pt;}
.ws75{word-spacing:-0.746667pt;}
.ws5e{word-spacing:-0.586667pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws29{word-spacing:-0.373333pt;}
.ws71{word-spacing:-0.160000pt;}
.ws2b{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws52{word-spacing:0.213333pt;}
.ws86{word-spacing:0.266667pt;}
.ws5d{word-spacing:0.373333pt;}
.ws4a{word-spacing:0.480000pt;}
.ws37{word-spacing:0.533333pt;}
.ws45{word-spacing:0.693333pt;}
.ws28{word-spacing:0.746667pt;}
.ws57{word-spacing:0.800000pt;}
.ws7e{word-spacing:0.853333pt;}
.wsa{word-spacing:0.994987pt;}
.ws80{word-spacing:1.066667pt;}
.ws17{word-spacing:1.120000pt;}
.ws9{word-spacing:1.280000pt;}
.ws87{word-spacing:1.333333pt;}
.ws19{word-spacing:1.493333pt;}
.ws68{word-spacing:1.546667pt;}
.ws1e{word-spacing:1.600000pt;}
.ws1c{word-spacing:1.653333pt;}
.ws3d{word-spacing:1.706667pt;}
.ws5c{word-spacing:1.813333pt;}
.ws11{word-spacing:2.133333pt;}
.ws46{word-spacing:2.186667pt;}
.ws8a{word-spacing:2.240000pt;}
.ws1a{word-spacing:2.400000pt;}
.wsb{word-spacing:2.613333pt;}
.ws7f{word-spacing:2.773333pt;}
.ws7{word-spacing:2.776267pt;}
.wsc{word-spacing:3.093333pt;}
.ws20{word-spacing:3.200000pt;}
.ws10{word-spacing:3.306667pt;}
.ws8{word-spacing:3.331520pt;}
.ws42{word-spacing:3.520000pt;}
.ws81{word-spacing:3.680000pt;}
.wsf{word-spacing:3.786667pt;}
.ws53{word-spacing:3.840000pt;}
.ws58{word-spacing:4.320000pt;}
.ws14{word-spacing:4.426667pt;}
.ws77{word-spacing:4.480000pt;}
.ws38{word-spacing:4.533333pt;}
.ws43{word-spacing:4.640000pt;}
.ws3a{word-spacing:4.746667pt;}
.ws6c{word-spacing:4.853333pt;}
.ws1f{word-spacing:4.906667pt;}
.ws13{word-spacing:4.960000pt;}
.ws25{word-spacing:5.120000pt;}
.ws74{word-spacing:5.173333pt;}
.ws54{word-spacing:5.386667pt;}
.ws16{word-spacing:5.493333pt;}
.ws4b{word-spacing:5.546667pt;}
.ws5f{word-spacing:5.600000pt;}
.wsd{word-spacing:5.706667pt;}
.ws5b{word-spacing:5.813333pt;}
.ws33{word-spacing:5.973333pt;}
.ws15{word-spacing:6.026667pt;}
.ws23{word-spacing:6.186667pt;}
.ws67{word-spacing:6.400000pt;}
.ws4e{word-spacing:6.453333pt;}
.ws5a{word-spacing:6.613333pt;}
.ws48{word-spacing:6.666667pt;}
.ws2d{word-spacing:6.773333pt;}
.ws1d{word-spacing:6.986667pt;}
.ws31{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.146667pt;}
.ws30{word-spacing:7.200000pt;}
.ws72{word-spacing:7.466667pt;}
.ws65{word-spacing:7.786667pt;}
.ws39{word-spacing:7.946667pt;}
.ws22{word-spacing:8.000000pt;}
.ws70{word-spacing:8.106667pt;}
.ws62{word-spacing:8.640000pt;}
.ws6d{word-spacing:8.746667pt;}
.ws35{word-spacing:8.853333pt;}
.ws3c{word-spacing:9.226667pt;}
.ws49{word-spacing:9.280000pt;}
.ws27{word-spacing:9.333333pt;}
.ws78{word-spacing:9.386667pt;}
.ws4f{word-spacing:9.706667pt;}
.ws7d{word-spacing:10.346667pt;}
.ws6a{word-spacing:10.453333pt;}
.ws85{word-spacing:10.506667pt;}
.ws69{word-spacing:10.613333pt;}
.ws50{word-spacing:10.720000pt;}
.ws34{word-spacing:11.093333pt;}
.ws3b{word-spacing:11.306667pt;}
.ws66{word-spacing:11.413333pt;}
.ws44{word-spacing:11.466667pt;}
.ws64{word-spacing:11.680000pt;}
.ws7b{word-spacing:12.000000pt;}
.ws2e{word-spacing:12.373333pt;}
.ws41{word-spacing:12.800000pt;}
.ws26{word-spacing:13.066667pt;}
.ws73{word-spacing:13.440000pt;}
.ws79{word-spacing:13.600000pt;}
.ws21{word-spacing:13.973333pt;}
.ws88{word-spacing:14.560000pt;}
.wse{word-spacing:15.253333pt;}
.ws89{word-spacing:16.213333pt;}
.ws3f{word-spacing:17.226667pt;}
.ws4d{word-spacing:17.600000pt;}
.ws7a{word-spacing:17.973333pt;}
.ws7c{word-spacing:20.320000pt;}
.ws60{word-spacing:22.133333pt;}
.ws3e{word-spacing:23.093333pt;}
.ws84{word-spacing:27.253333pt;}
.ws32{word-spacing:28.266667pt;}
.ws2f{word-spacing:30.773333pt;}
._b{margin-left:-2552.846933pt;}
._14{margin-left:-41.332800pt;}
._11{margin-left:-35.573333pt;}
._c{margin-left:-29.706667pt;}
._13{margin-left:-25.120000pt;}
._9{margin-left:-22.080000pt;}
._f{margin-left:-13.386667pt;}
._e{margin-left:-12.480000pt;}
._d{margin-left:-11.360000pt;}
._a{margin-left:-7.798933pt;}
._3{margin-left:-6.404267pt;}
._4{margin-left:-5.280000pt;}
._5{margin-left:-4.155733pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.706667pt;}
._8{width:2.666667pt;}
._6{width:4.364800pt;}
._7{width:6.356587pt;}
._18{width:12.693333pt;}
._19{width:14.542933pt;}
._12{width:23.083733pt;}
._17{width:24.483733pt;}
._16{width:25.990400pt;}
._15{width:31.619200pt;}
._10{width:659.158400pt;}
._1a{width:1619.347200pt;}
.fs8{font-size:24.874667pt;}
.fs2{font-size:33.155200pt;}
.fs7{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:44.171793pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:55.525333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:82.519733pt;}
.yd9{bottom:90.680133pt;}
.y7b{bottom:98.519733pt;}
.y33{bottom:99.009467pt;}
.y4f{bottom:99.036533pt;}
.yd1{bottom:99.179867pt;}
.yaa{bottom:99.205067pt;}
.yd8{bottom:103.480133pt;}
.y32{bottom:115.009467pt;}
.y4e{bottom:115.036533pt;}
.yd0{bottom:115.179867pt;}
.ya9{bottom:115.205067pt;}
.y31{bottom:131.009467pt;}
.y4d{bottom:131.036533pt;}
.ycf{bottom:131.179867pt;}
.ya8{bottom:131.205067pt;}
.yd7{bottom:135.785867pt;}
.y30{bottom:147.009467pt;}
.y4c{bottom:147.036533pt;}
.yce{bottom:147.179867pt;}
.ya7{bottom:147.205067pt;}
.yd6{bottom:148.585867pt;}
.yd5{bottom:161.385867pt;}
.y2f{bottom:163.009467pt;}
.y4b{bottom:163.036533pt;}
.ycd{bottom:163.179867pt;}
.ya6{bottom:163.205067pt;}
.y2e{bottom:179.009467pt;}
.y4a{bottom:179.036533pt;}
.ycc{bottom:179.179867pt;}
.ya5{bottom:179.206133pt;}
.yd4{bottom:186.985867pt;}
.y2d{bottom:195.009467pt;}
.y49{bottom:195.036533pt;}
.ycb{bottom:195.179867pt;}
.y2c{bottom:211.009467pt;}
.y48{bottom:211.036533pt;}
.yca{bottom:211.179867pt;}
.ya4{bottom:211.192400pt;}
.yd3{bottom:212.585867pt;}
.yd2{bottom:225.385867pt;}
.y2b{bottom:227.009467pt;}
.y47{bottom:227.036533pt;}
.yc9{bottom:227.179867pt;}
.ya3{bottom:227.192400pt;}
.y2a{bottom:243.009467pt;}
.y46{bottom:243.036533pt;}
.yc8{bottom:243.179867pt;}
.ya2{bottom:243.192400pt;}
.y29{bottom:259.009467pt;}
.y45{bottom:259.036533pt;}
.yc7{bottom:259.179867pt;}
.ya1{bottom:259.192400pt;}
.y28{bottom:275.009467pt;}
.y44{bottom:275.036533pt;}
.yc6{bottom:275.179867pt;}
.ya0{bottom:275.192400pt;}
.y27{bottom:291.009467pt;}
.y43{bottom:291.036533pt;}
.yc5{bottom:291.179867pt;}
.y9f{bottom:291.192400pt;}
.y26{bottom:307.009467pt;}
.y42{bottom:307.036533pt;}
.yc4{bottom:307.179867pt;}
.y9e{bottom:307.193600pt;}
.y25{bottom:323.009467pt;}
.y41{bottom:323.036533pt;}
.yc3{bottom:323.179867pt;}
.y24{bottom:339.009467pt;}
.y40{bottom:339.036533pt;}
.y9d{bottom:339.179867pt;}
.y23{bottom:355.009467pt;}
.y3f{bottom:355.036533pt;}
.y9c{bottom:355.179867pt;}
.y22{bottom:371.009467pt;}
.y3e{bottom:371.036533pt;}
.y9b{bottom:371.179867pt;}
.y21{bottom:387.009467pt;}
.y3d{bottom:387.036533pt;}
.y9a{bottom:387.179867pt;}
.y20{bottom:403.009467pt;}
.y3c{bottom:403.036533pt;}
.y99{bottom:403.179867pt;}
.y1f{bottom:419.009467pt;}
.y3b{bottom:419.036533pt;}
.y98{bottom:419.179867pt;}
.y1e{bottom:435.009467pt;}
.y3a{bottom:435.037600pt;}
.yc2{bottom:435.179867pt;}
.y97{bottom:435.180933pt;}
.y1d{bottom:451.009467pt;}
.yc1{bottom:451.179867pt;}
.y1c{bottom:467.009467pt;}
.y39{bottom:467.024000pt;}
.y96{bottom:467.167333pt;}
.yc0{bottom:467.179867pt;}
.y1b{bottom:483.009467pt;}
.y38{bottom:483.024000pt;}
.y95{bottom:483.167333pt;}
.ybf{bottom:483.179867pt;}
.y1a{bottom:499.009467pt;}
.y37{bottom:499.024000pt;}
.y94{bottom:499.167333pt;}
.ybe{bottom:499.179867pt;}
.y19{bottom:515.009467pt;}
.y36{bottom:515.024000pt;}
.y93{bottom:515.167333pt;}
.ybd{bottom:515.179867pt;}
.y18{bottom:531.010533pt;}
.y35{bottom:531.024000pt;}
.y92{bottom:531.168400pt;}
.ybc{bottom:531.179867pt;}
.y17{bottom:546.343867pt;}
.y34{bottom:547.024000pt;}
.ybb{bottom:547.179867pt;}
.y91{bottom:563.154667pt;}
.yba{bottom:563.180933pt;}
.y90{bottom:579.155733pt;}
.y16{bottom:594.408133pt;}
.yb9{bottom:595.167333pt;}
.y6a{bottom:611.091733pt;}
.y8f{bottom:611.142133pt;}
.yb8{bottom:611.167333pt;}
.y69{bottom:627.091733pt;}
.y8e{bottom:627.142133pt;}
.yb7{bottom:627.167333pt;}
.y15{bottom:640.644400pt;}
.y68{bottom:643.091733pt;}
.y8d{bottom:643.142133pt;}
.yb6{bottom:643.168400pt;}
.y14{bottom:656.644400pt;}
.y67{bottom:659.091733pt;}
.y8c{bottom:659.142133pt;}
.y13{bottom:672.644400pt;}
.y7a{bottom:675.091733pt;}
.y8b{bottom:675.143200pt;}
.yb5{bottom:675.154667pt;}
.y12{bottom:688.644400pt;}
.y79{bottom:691.091733pt;}
.y66{bottom:691.116800pt;}
.yb4{bottom:691.155733pt;}
.y8a{bottom:691.276533pt;}
.y11{bottom:704.644400pt;}
.y78{bottom:707.091733pt;}
.y65{bottom:707.116800pt;}
.y10{bottom:720.644400pt;}
.y77{bottom:723.091733pt;}
.y64{bottom:723.116800pt;}
.y89{bottom:723.129467pt;}
.yb3{bottom:723.142133pt;}
.yf{bottom:736.644400pt;}
.y76{bottom:739.091733pt;}
.y63{bottom:739.116800pt;}
.y88{bottom:739.129467pt;}
.yb2{bottom:739.142133pt;}
.ye{bottom:752.644400pt;}
.y75{bottom:755.091733pt;}
.y62{bottom:755.116800pt;}
.y87{bottom:755.129467pt;}
.yb1{bottom:755.142133pt;}
.yd{bottom:768.644400pt;}
.y74{bottom:771.091733pt;}
.y61{bottom:771.116800pt;}
.y86{bottom:771.129467pt;}
.yb0{bottom:771.142133pt;}
.yc{bottom:784.644400pt;}
.y73{bottom:787.091733pt;}
.y60{bottom:787.116800pt;}
.y85{bottom:787.129467pt;}
.yaf{bottom:787.142133pt;}
.y72{bottom:803.091733pt;}
.y5f{bottom:803.116800pt;}
.y84{bottom:803.129467pt;}
.yae{bottom:803.142133pt;}
.y71{bottom:819.091733pt;}
.y5e{bottom:819.116800pt;}
.y83{bottom:819.129467pt;}
.yad{bottom:819.142133pt;}
.yb{bottom:830.880667pt;}
.yac{bottom:835.009867pt;}
.y70{bottom:835.091733pt;}
.y5d{bottom:835.116800pt;}
.y82{bottom:835.129467pt;}
.ya{bottom:847.232533pt;}
.y6f{bottom:851.091733pt;}
.y5c{bottom:851.116800pt;}
.y81{bottom:851.129467pt;}
.y9{bottom:860.260133pt;}
.y6e{bottom:867.091733pt;}
.y5b{bottom:867.116800pt;}
.y80{bottom:867.129467pt;}
.y6d{bottom:883.091733pt;}
.y5a{bottom:883.116800pt;}
.y7f{bottom:883.129467pt;}
.yab{bottom:883.130533pt;}
.y8{bottom:894.578267pt;}
.y6c{bottom:899.091733pt;}
.y59{bottom:899.116800pt;}
.y7e{bottom:899.129467pt;}
.y6b{bottom:915.091733pt;}
.y58{bottom:915.116800pt;}
.y7d{bottom:915.130533pt;}
.y7{bottom:923.378400pt;}
.y57{bottom:931.116800pt;}
.y56{bottom:947.116800pt;}
.y6{bottom:959.737333pt;}
.y55{bottom:963.116800pt;}
.y54{bottom:979.116800pt;}
.y53{bottom:995.116800pt;}
.y52{bottom:1011.116800pt;}
.y51{bottom:1027.116800pt;}
.y3{bottom:1041.140133pt;}
.y2{bottom:1053.940133pt;}
.y5{bottom:1055.807867pt;}
.y1{bottom:1066.740133pt;}
.y4{bottom:1067.422133pt;}
.y50{bottom:1075.779600pt;}
.h9{height:19.153493pt;}
.h4{height:22.313450pt;}
.ha{height:32.000000pt;}
.h2{height:32.853333pt;}
.h3{height:34.012280pt;}
.hc{height:36.960000pt;}
.h5{height:37.368549pt;}
.hf{height:39.946667pt;}
.he{height:40.160000pt;}
.hd{height:40.906667pt;}
.hb{height:41.066667pt;}
.h6{height:45.173333pt;}
.h8{height:50.042240pt;}
.h10{height:62.681600pt;}
.h7{height:72.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:71.811067pt;}
.x12{left:79.370133pt;}
.x3{left:83.149600pt;}
.xa{left:85.039067pt;}
.x4{left:90.713867pt;}
.x5{left:94.493467pt;}
.xb{left:98.488400pt;}
.xf{left:101.701333pt;}
.x10{left:109.606267pt;}
.x15{left:118.488133pt;}
.x14{left:203.261867pt;}
.x16{left:288.469867pt;}
.x8{left:329.425467pt;}
.xe{left:399.181067pt;}
.x1{left:406.666667pt;}
.x6{left:410.524933pt;}
.xc{left:412.409067pt;}
.x7{left:421.863467pt;}
.xd{left:425.858400pt;}
.x11{left:429.417333pt;}
.x2{left:519.252000pt;}
.x13{left:633.847600pt;}
}




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