
    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_3b9f07f26e31e25c2397c576.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_b7aca3819eca9be62724ed7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_ba8f6d3ee7d0c47c73b53e46.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_64b9421ce6adf6db5d0afb7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_604c90ce06a4b1bfeeb86b4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915000;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_fc12afb3886a57a2d663eea5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743000;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_2125c567571f4d7b17a9e035.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_463fa8c0716cdfd17e249c38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;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_99786cc725368a9c4f5b5291.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_ebd25d794d39e27b29c67814.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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_f93d0efd6f7f687e1efeab99.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.992000;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_2125c567571f4d7b17a9e035.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_fc12afb3886a57a2d663eea5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.743000;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_99786cc725368a9c4f5b5291.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_56a90950a26e10b2a46a2b4d.woff2')format("woff");}.fff{font-family:fff;line-height:0.915000;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_fc12afb3886a57a2d663eea5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.743000;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_2125c567571f4d7b17a9e035.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_99786cc725368a9c4f5b5291.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ebd25d794d39e27b29c67814.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7eefdb742f5d0b6aebfea482.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2125c567571f4d7b17a9e035.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.100098;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:ff16;src:url('chunks/assets/font_fc12afb3886a57a2d663eea5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.743000;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:ff17;src:url('chunks/assets/font_99786cc725368a9c4f5b5291.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.100098;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:ff18;src:url('chunks/assets/font_56a90950a26e10b2a46a2b4d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.915000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.637000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.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;}
}
.wsf{word-spacing:-9.720000px;}
.ws45{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws2{word-spacing:-7.920000px;}
.ws5{word-spacing:-4.914000px;}
.ws25{word-spacing:-2.940000px;}
.ws3e{word-spacing:-2.460000px;}
.wsa{word-spacing:-1.800000px;}
.ws19{word-spacing:-1.500000px;}
.ws17{word-spacing:-1.440000px;}
.ws1b{word-spacing:-1.380000px;}
.ws37{word-spacing:-1.080000px;}
.ws4e{word-spacing:-0.810000px;}
.ws11{word-spacing:-0.780000px;}
.ws1c{word-spacing:-0.480000px;}
.ws47{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.252000px;}
.ws26{word-spacing:-0.240000px;}
.ws31{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws42{word-spacing:0.300000px;}
.ws46{word-spacing:0.378000px;}
.ws15{word-spacing:0.720000px;}
.wsb{word-spacing:0.780000px;}
.ws29{word-spacing:0.840000px;}
.ws52{word-spacing:0.918000px;}
.ws24{word-spacing:1.020000px;}
.ws36{word-spacing:1.200000px;}
.ws13{word-spacing:1.440000px;}
.ws10{word-spacing:1.500000px;}
.ws1a{word-spacing:1.560000px;}
.ws4f{word-spacing:1.566000px;}
.ws48{word-spacing:1.782000px;}
.wsd{word-spacing:1.980000px;}
.ws49{word-spacing:1.998000px;}
.ws2b{word-spacing:2.100000px;}
.ws16{word-spacing:2.160000px;}
.ws9{word-spacing:2.400000px;}
.ws18{word-spacing:2.580000px;}
.ws20{word-spacing:2.700000px;}
.ws33{word-spacing:2.820000px;}
.ws2f{word-spacing:2.880000px;}
.ws28{word-spacing:3.000000px;}
.wsc{word-spacing:3.060000px;}
.ws27{word-spacing:3.120000px;}
.ws14{word-spacing:3.240000px;}
.ws2a{word-spacing:3.360000px;}
.ws12{word-spacing:3.420000px;}
.ws32{word-spacing:3.600000px;}
.ws4{word-spacing:3.672000px;}
.ws3a{word-spacing:4.320000px;}
.ws1d{word-spacing:4.440000px;}
.ws40{word-spacing:4.740000px;}
.ws35{word-spacing:4.920000px;}
.ws4b{word-spacing:4.968000px;}
.ws4d{word-spacing:5.022000px;}
.ws2e{word-spacing:5.220000px;}
.ws30{word-spacing:5.760000px;}
.ws8{word-spacing:5.940000px;}
.ws3b{word-spacing:6.060000px;}
.ws50{word-spacing:6.426000px;}
.ws51{word-spacing:6.696000px;}
.ws21{word-spacing:6.900000px;}
.ws3f{word-spacing:7.140000px;}
.ws43{word-spacing:7.680000px;}
.ws1e{word-spacing:7.860000px;}
.ws38{word-spacing:7.920000px;}
.ws3d{word-spacing:8.400000px;}
.ws4a{word-spacing:8.586000px;}
.ws23{word-spacing:8.820000px;}
.ws34{word-spacing:8.940000px;}
.ws44{word-spacing:9.300000px;}
.ws2c{word-spacing:9.540000px;}
.ws2d{word-spacing:10.740000px;}
.ws3c{word-spacing:12.060000px;}
.ws22{word-spacing:13.260000px;}
.ws41{word-spacing:13.680000px;}
.ws4c{word-spacing:23.544000px;}
.ws39{word-spacing:68.440200px;}
.wse{word-spacing:69.608400px;}
.ws1f{word-spacing:77.845200px;}
.ws1{word-spacing:466.180200px;}
._8{margin-left:-3.924000px;}
._c{margin-left:-2.802000px;}
._0{margin-left:-1.603800px;}
._1{width:1.323000px;}
._2{width:2.964600px;}
._5{width:4.303800px;}
._4{width:5.346000px;}
._3{width:6.976800px;}
._9{width:8.007600px;}
._a{width:11.328000px;}
._11{width:12.792000px;}
._e{width:13.828800px;}
._f{width:14.925600px;}
._10{width:15.930000px;}
._12{width:17.136000px;}
._15{width:18.234000px;}
._13{width:19.842000px;}
._14{width:20.856000px;}
._16{width:21.948000px;}
._17{width:23.517000px;}
._b{width:25.314000px;}
._6{width:718.871400px;}
._7{width:1337.568600px;}
._d{width:1781.160000px;}
.fc9{color:rgb(56,55,55);}
.fc8{color:rgb(101,151,45);}
.fc7{color:rgb(53,145,165);}
.fc5{color:rgb(64,172,173);}
.fc4{color:rgb(254,255,253);}
.fc3{color:rgb(103,104,102);}
.fc1{color:rgb(224,63,93);}
.fca{color:rgb(80,80,80);}
.fc6{color:rgb(46,46,46);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:25.267500px;}
.y42{bottom:27.364200px;}
.y21{bottom:28.176750px;}
.y119{bottom:65.624250px;}
.y10e{bottom:68.032800px;}
.yce{bottom:68.128200px;}
.y11d{bottom:68.162850px;}
.y1e{bottom:70.691250px;}
.y3b{bottom:73.537800px;}
.y6b{bottom:76.868550px;}
.y139{bottom:77.624250px;}
.y16{bottom:78.337800px;}
.y118{bottom:83.624250px;}
.y10c{bottom:85.903350px;}
.y11b{bottom:86.033400px;}
.ycd{bottom:86.128200px;}
.y110{bottom:87.107850px;}
.y11f{bottom:87.237900px;}
.y94{bottom:89.624250px;}
.yea{bottom:90.668400px;}
.y3a{bottom:91.537800px;}
.y6a{bottom:94.868550px;}
.y138{bottom:95.624250px;}
.yb0{bottom:98.128200px;}
.y160{bottom:98.128350px;}
.y186{bottom:101.210400px;}
.yfe{bottom:101.624250px;}
.ycc{bottom:104.128200px;}
.y93{bottom:107.624250px;}
.ye9{bottom:108.668400px;}
.y39{bottom:109.537800px;}
.y69{bottom:112.868550px;}
.y137{bottom:113.624250px;}
.yaf{bottom:116.128200px;}
.y15f{bottom:116.128350px;}
.y15{bottom:116.789700px;}
.yfd{bottom:119.624250px;}
.ycb{bottom:122.128200px;}
.y92{bottom:125.624250px;}
.ye8{bottom:126.668400px;}
.y38{bottom:127.537800px;}
.y185{bottom:127.779000px;}
.y136{bottom:131.624250px;}
.y14{bottom:132.989700px;}
.yae{bottom:134.128200px;}
.y15e{bottom:134.128350px;}
.yfc{bottom:137.624250px;}
.yca{bottom:140.128200px;}
.y184{bottom:142.347900px;}
.y68{bottom:142.868550px;}
.y91{bottom:143.624250px;}
.y37{bottom:145.537800px;}
.y13{bottom:149.189700px;}
.y135{bottom:149.624250px;}
.yad{bottom:152.128200px;}
.y15d{bottom:152.128350px;}
.yfb{bottom:155.624250px;}
.ye7{bottom:156.668400px;}
.y183{bottom:156.916650px;}
.yc9{bottom:158.128200px;}
.y67{bottom:160.868550px;}
.y90{bottom:161.624250px;}
.y12{bottom:165.389700px;}
.y134{bottom:167.624250px;}
.yac{bottom:170.128200px;}
.y15c{bottom:170.128350px;}
.yfa{bottom:173.624250px;}
.ye6{bottom:174.668400px;}
.y36{bottom:175.537800px;}
.yc8{bottom:176.128200px;}
.y66{bottom:178.868550px;}
.y11{bottom:181.589700px;}
.y182{bottom:183.485250px;}
.y133{bottom:185.624250px;}
.yab{bottom:188.128200px;}
.y8f{bottom:191.624250px;}
.ye5{bottom:192.668400px;}
.y35{bottom:193.537800px;}
.y109{bottom:194.128200px;}
.y65{bottom:196.868550px;}
.y10{bottom:197.789700px;}
.y181{bottom:198.054000px;}
.y15b{bottom:200.128350px;}
.y117{bottom:203.624250px;}
.yc7{bottom:206.128200px;}
.y8e{bottom:209.624250px;}
.ye4{bottom:210.668400px;}
.y34{bottom:211.537800px;}
.y180{bottom:212.622750px;}
.yf{bottom:213.989700px;}
.y64{bottom:214.868550px;}
.yaa{bottom:218.128200px;}
.y15a{bottom:218.128350px;}
.y116{bottom:221.624250px;}
.y108{bottom:224.128200px;}
.y8d{bottom:227.624250px;}
.ye3{bottom:228.668400px;}
.y33{bottom:229.537800px;}
.ye{bottom:230.189700px;}
.y63{bottom:232.868550px;}
.y132{bottom:233.624250px;}
.ya9{bottom:236.128200px;}
.y159{bottom:236.128350px;}
.y17f{bottom:239.191650px;}
.yf9{bottom:239.624250px;}
.y107{bottom:242.128200px;}
.y8c{bottom:245.624250px;}
.yd{bottom:246.389700px;}
.ye2{bottom:246.668400px;}
.y32{bottom:247.537800px;}
.y131{bottom:251.624250px;}
.y17e{bottom:253.760400px;}
.ya8{bottom:254.128200px;}
.y158{bottom:254.128350px;}
.yf8{bottom:257.624250px;}
.y106{bottom:260.128200px;}
.y62{bottom:262.868550px;}
.y8b{bottom:263.624250px;}
.y31{bottom:265.537800px;}
.y17d{bottom:268.329000px;}
.y130{bottom:269.624250px;}
.ya7{bottom:272.128200px;}
.y157{bottom:272.128350px;}
.yf7{bottom:275.624250px;}
.ye1{bottom:276.668400px;}
.y105{bottom:278.128200px;}
.yc{bottom:278.789700px;}
.y61{bottom:280.868550px;}
.y12f{bottom:287.624250px;}
.ya6{bottom:290.128200px;}
.y156{bottom:290.128350px;}
.y8a{bottom:293.624250px;}
.ye0{bottom:294.668400px;}
.y17c{bottom:294.897750px;}
.y30{bottom:295.537800px;}
.y104{bottom:296.128200px;}
.y60{bottom:298.868550px;}
.y12e{bottom:305.624250px;}
.ya5{bottom:308.128200px;}
.y89{bottom:311.624250px;}
.ydf{bottom:312.668400px;}
.y2f{bottom:313.537800px;}
.y5f{bottom:316.868550px;}
.yb{bottom:319.899150px;}
.y155{bottom:320.128350px;}
.y17b{bottom:321.466500px;}
.y115{bottom:323.624250px;}
.yc6{bottom:326.128200px;}
.y88{bottom:329.624250px;}
.yde{bottom:330.668400px;}
.y2e{bottom:331.537800px;}
.y17a{bottom:336.035400px;}
.ya4{bottom:338.128200px;}
.y154{bottom:338.128350px;}
.y114{bottom:341.624250px;}
.yc5{bottom:344.128200px;}
.y5e{bottom:346.868550px;}
.y87{bottom:347.624250px;}
.ydd{bottom:348.668400px;}
.y2d{bottom:349.537800px;}
.yd0{bottom:350.502600px;}
.y179{bottom:350.604150px;}
.ya{bottom:353.199150px;}
.ya3{bottom:356.128200px;}
.y153{bottom:356.128350px;}
.y113{bottom:359.624250px;}
.yc4{bottom:362.128200px;}
.y5d{bottom:364.868550px;}
.y86{bottom:365.624250px;}
.ydc{bottom:366.668400px;}
.y2c{bottom:367.537800px;}
.y9{bottom:369.399150px;}
.ycf{bottom:369.429750px;}
.ya2{bottom:374.128200px;}
.y152{bottom:374.128350px;}
.y178{bottom:377.172750px;}
.yf6{bottom:377.624250px;}
.yc3{bottom:380.128200px;}
.y5c{bottom:382.868550px;}
.y85{bottom:383.624250px;}
.yd1{bottom:384.240450px;}
.y2b{bottom:385.537800px;}
.y8{bottom:385.599150px;}
.y177{bottom:391.741500px;}
.ya1{bottom:392.128200px;}
.yf5{bottom:395.624250px;}
.ydb{bottom:396.668400px;}
.yc2{bottom:398.128200px;}
.y5b{bottom:400.868550px;}
.y84{bottom:401.624250px;}
.y7{bottom:401.799150px;}
.y2a{bottom:403.537800px;}
.y151{bottom:404.128350px;}
.y12d{bottom:407.624250px;}
.ya0{bottom:410.128200px;}
.yf4{bottom:413.624250px;}
.yda{bottom:414.668400px;}
.yc1{bottom:416.128200px;}
.y6{bottom:417.999150px;}
.y176{bottom:418.310250px;}
.y83{bottom:419.624250px;}
.y29{bottom:421.537800px;}
.y150{bottom:422.128350px;}
.y12c{bottom:425.624250px;}
.y9f{bottom:428.128200px;}
.y5a{bottom:430.868550px;}
.yf3{bottom:431.624250px;}
.yd9{bottom:432.668400px;}
.y175{bottom:432.879150px;}
.y103{bottom:434.128200px;}
.y5{bottom:434.199150px;}
.y14f{bottom:440.128350px;}
.y12b{bottom:443.624250px;}
.yc0{bottom:446.128200px;}
.y59{bottom:448.868550px;}
.y82{bottom:449.624250px;}
.y4{bottom:450.399150px;}
.yd8{bottom:450.668400px;}
.y28{bottom:451.537800px;}
.y102{bottom:452.128200px;}
.y9e{bottom:458.128200px;}
.y14e{bottom:458.128350px;}
.y174{bottom:459.447900px;}
.y112{bottom:461.624250px;}
.ybf{bottom:464.128200px;}
.y3{bottom:466.599150px;}
.y58{bottom:466.868550px;}
.yf2{bottom:467.624250px;}
.yd7{bottom:468.668400px;}
.y27{bottom:469.537800px;}
.y101{bottom:470.128200px;}
.y173{bottom:474.016500px;}
.y9d{bottom:476.128200px;}
.y14d{bottom:476.128350px;}
.y12a{bottom:479.624250px;}
.ybe{bottom:482.128200px;}
.y2{bottom:482.799150px;}
.y57{bottom:484.868550px;}
.yf1{bottom:485.624250px;}
.yd6{bottom:486.668400px;}
.y26{bottom:487.537800px;}
.y81{bottom:488.128200px;}
.y172{bottom:488.585250px;}
.y9c{bottom:494.128200px;}
.y14c{bottom:494.128350px;}
.y10d{bottom:496.637400px;}
.y129{bottom:497.624250px;}
.ybd{bottom:500.128200px;}
.y56{bottom:502.868550px;}
.yf0{bottom:503.624250px;}
.yd5{bottom:504.668400px;}
.y25{bottom:505.537800px;}
.y80{bottom:506.128200px;}
.y11c{bottom:511.643250px;}
.y9b{bottom:512.128200px;}
.y10b{bottom:513.625050px;}
.y171{bottom:515.154000px;}
.y1{bottom:515.199150px;}
.y128{bottom:515.624250px;}
.ybc{bottom:518.128200px;}
.y55{bottom:520.868550px;}
.y24{bottom:523.537800px;}
.y7f{bottom:524.128200px;}
.y14b{bottom:524.128350px;}
.y10a{bottom:528.025050px;}
.y10f{bottom:529.229550px;}
.y11a{bottom:529.513650px;}
.y11e{bottom:530.718150px;}
.yef{bottom:533.624250px;}
.yd4{bottom:534.668400px;}
.ybb{bottom:536.128200px;}
.y23{bottom:541.537800px;}
.y170{bottom:541.722900px;}
.y7e{bottom:542.128200px;}
.y14a{bottom:542.128350px;}
.y54{bottom:550.868550px;}
.y127{bottom:551.624250px;}
.yd3{bottom:552.668400px;}
.yba{bottom:554.128200px;}
.y16f{bottom:556.291500px;}
.y7d{bottom:560.128200px;}
.y149{bottom:560.128350px;}
.y53{bottom:568.868550px;}
.y22{bottom:571.537800px;}
.yee{bottom:572.128200px;}
.y7c{bottom:578.128200px;}
.y148{bottom:578.128350px;}
.y18{bottom:580.396200px;}
.yd2{bottom:581.624250px;}
.y16e{bottom:582.860250px;}
.yb9{bottom:584.128200px;}
.y52{bottom:586.868550px;}
.yed{bottom:590.128200px;}
.y7b{bottom:596.128200px;}
.y147{bottom:596.128350px;}
.y16d{bottom:597.429000px;}
.y126{bottom:599.624250px;}
.yb8{bottom:602.128200px;}
.y1a{bottom:602.662200px;}
.y51{bottom:604.868550px;}
.yec{bottom:608.128200px;}
.y7a{bottom:614.128200px;}
.y146{bottom:614.128350px;}
.y19{bottom:615.262200px;}
.y125{bottom:617.624250px;}
.yb7{bottom:620.128200px;}
.y50{bottom:622.868550px;}
.y16c{bottom:623.997750px;}
.yeb{bottom:626.128200px;}
.y145{bottom:632.128350px;}
.y124{bottom:635.624250px;}
.y17{bottom:637.656150px;}
.yb6{bottom:638.128200px;}
.y4f{bottom:640.868550px;}
.y79{bottom:644.128200px;}
.y16b{bottom:650.566650px;}
.y123{bottom:653.624250px;}
.yb5{bottom:656.128200px;}
.y78{bottom:662.128200px;}
.y144{bottom:662.128350px;}
.y4e{bottom:670.868550px;}
.y122{bottom:671.624250px;}
.yb4{bottom:674.128200px;}
.y16a{bottom:677.135250px;}
.y77{bottom:680.128200px;}
.y143{bottom:680.128350px;}
.y169{bottom:691.704000px;}
.yb3{bottom:692.128200px;}
.y76{bottom:698.128200px;}
.y142{bottom:698.128350px;}
.y1d{bottom:700.594050px;}
.y121{bottom:701.624250px;}
.y4d{bottom:701.624400px;}
.y41{bottom:705.111000px;}
.y9a{bottom:710.128200px;}
.y75{bottom:716.128200px;}
.y141{bottom:716.128350px;}
.y168{bottom:718.272750px;}
.y99{bottom:728.128200px;}
.y167{bottom:732.841500px;}
.y74{bottom:734.128200px;}
.y140{bottom:734.128350px;}
.y40{bottom:736.911000px;}
.y1c{bottom:738.394050px;}
.y13b{bottom:739.973850px;}
.y120{bottom:740.128200px;}
.y4c{bottom:740.128350px;}
.y98{bottom:746.128200px;}
.y13f{bottom:752.128350px;}
.y3f{bottom:756.711000px;}
.y13a{bottom:756.781350px;}
.y13c{bottom:757.985850px;}
.y111{bottom:758.128200px;}
.y4b{bottom:758.128350px;}
.y166{bottom:759.410400px;}
.y73{bottom:764.128200px;}
.y13e{bottom:770.128350px;}
.y165{bottom:773.979000px;}
.y3e{bottom:774.711000px;}
.yb2{bottom:776.128200px;}
.y4a{bottom:776.128350px;}
.y1b{bottom:776.194050px;}
.y72{bottom:782.128200px;}
.y3d{bottom:792.711000px;}
.yb1{bottom:794.128200px;}
.y49{bottom:794.128350px;}
.y71{bottom:800.128200px;}
.y13d{bottom:800.128350px;}
.y164{bottom:800.547750px;}
.y3c{bottom:810.711000px;}
.y97{bottom:812.128200px;}
.y48{bottom:812.128350px;}
.y70{bottom:818.128200px;}
.y163{bottom:827.116650px;}
.y96{bottom:830.128200px;}
.y47{bottom:830.128350px;}
.y6f{bottom:836.128200px;}
.y162{bottom:841.685250px;}
.y95{bottom:848.128200px;}
.y46{bottom:848.128350px;}
.y100{bottom:854.128200px;}
.y6e{bottom:866.128200px;}
.y45{bottom:866.128350px;}
.y187{bottom:867.651750px;}
.y161{bottom:868.254150px;}
.yff{bottom:872.128200px;}
.y6d{bottom:884.128200px;}
.y44{bottom:884.128350px;}
.y6c{bottom:902.128200px;}
.y43{bottom:902.128350px;}
.y1f{bottom:965.135850px;}
.h16{height:29.268000px;}
.h14{height:30.870000px;}
.h13{height:32.616000px;}
.h8{height:38.052000px;}
.h6{height:38.496000px;}
.h12{height:38.928000px;}
.ha{height:39.690000px;}
.h15{height:39.744000px;}
.hd{height:39.945112px;}
.hb{height:43.195312px;}
.h11{height:43.308000px;}
.h7{height:43.488000px;}
.h3{height:43.902000px;}
.h17{height:45.714000px;}
.h5{height:46.227000px;}
.hc{height:46.875000px;}
.he{height:48.120000px;}
.h10{height:48.660000px;}
.h2{height:48.780000px;}
.h4{height:48.924000px;}
.hf{height:54.360000px;}
.h9{height:101.052000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xe{left:13.181100px;}
.x26{left:20.834700px;}
.x1d{left:49.836450px;}
.xd{left:67.056600px;}
.xc{left:77.171100px;}
.x16{left:85.464600px;}
.x2{left:106.299150px;}
.x17{left:127.564350px;}
.xa{left:133.936950px;}
.x6{left:145.002300px;}
.x5{left:168.239400px;}
.xf{left:170.078700px;}
.x1c{left:175.857750px;}
.x20{left:182.834700px;}
.x7{left:198.392400px;}
.x4{left:205.924500px;}
.x18{left:210.903000px;}
.x10{left:212.603700px;}
.x21{left:225.359700px;}
.x12{left:272.125950px;}
.x1e{left:278.967150px;}
.xb{left:284.128050px;}
.x11{left:314.650950px;}
.x25{left:321.023700px;}
.x1b{left:338.031450px;}
.x24{left:363.548700px;}
.x1a{left:380.556450px;}
.x13{left:391.131750px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.x14{left:413.253600px;}
.x8{left:450.931500px;}
.x1f{left:495.778800px;}
.x28{left:500.669250px;}
.x23{left:514.488150px;}
.x9{left:520.711650px;}
.x27{left:541.275600px;}
.x22{left:559.893750px;}
.x29{left:653.431650px;}
.x15{left:724.298850px;}
.x19{left:726.349650px;}
@media print{
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.344000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.wsf{word-spacing:-8.640000pt;}
.ws45{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws2{word-spacing:-7.040000pt;}
.ws5{word-spacing:-4.368000pt;}
.ws25{word-spacing:-2.613333pt;}
.ws3e{word-spacing:-2.186667pt;}
.wsa{word-spacing:-1.600000pt;}
.ws19{word-spacing:-1.333333pt;}
.ws17{word-spacing:-1.280000pt;}
.ws1b{word-spacing:-1.226667pt;}
.ws37{word-spacing:-0.960000pt;}
.ws4e{word-spacing:-0.720000pt;}
.ws11{word-spacing:-0.693333pt;}
.ws1c{word-spacing:-0.426667pt;}
.ws47{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.224000pt;}
.ws26{word-spacing:-0.213333pt;}
.ws31{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws42{word-spacing:0.266667pt;}
.ws46{word-spacing:0.336000pt;}
.ws15{word-spacing:0.640000pt;}
.wsb{word-spacing:0.693333pt;}
.ws29{word-spacing:0.746667pt;}
.ws52{word-spacing:0.816000pt;}
.ws24{word-spacing:0.906667pt;}
.ws36{word-spacing:1.066667pt;}
.ws13{word-spacing:1.280000pt;}
.ws10{word-spacing:1.333333pt;}
.ws1a{word-spacing:1.386667pt;}
.ws4f{word-spacing:1.392000pt;}
.ws48{word-spacing:1.584000pt;}
.wsd{word-spacing:1.760000pt;}
.ws49{word-spacing:1.776000pt;}
.ws2b{word-spacing:1.866667pt;}
.ws16{word-spacing:1.920000pt;}
.ws9{word-spacing:2.133333pt;}
.ws18{word-spacing:2.293333pt;}
.ws20{word-spacing:2.400000pt;}
.ws33{word-spacing:2.506667pt;}
.ws2f{word-spacing:2.560000pt;}
.ws28{word-spacing:2.666667pt;}
.wsc{word-spacing:2.720000pt;}
.ws27{word-spacing:2.773333pt;}
.ws14{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.986667pt;}
.ws12{word-spacing:3.040000pt;}
.ws32{word-spacing:3.200000pt;}
.ws4{word-spacing:3.264000pt;}
.ws3a{word-spacing:3.840000pt;}
.ws1d{word-spacing:3.946667pt;}
.ws40{word-spacing:4.213333pt;}
.ws35{word-spacing:4.373333pt;}
.ws4b{word-spacing:4.416000pt;}
.ws4d{word-spacing:4.464000pt;}
.ws2e{word-spacing:4.640000pt;}
.ws30{word-spacing:5.120000pt;}
.ws8{word-spacing:5.280000pt;}
.ws3b{word-spacing:5.386667pt;}
.ws50{word-spacing:5.712000pt;}
.ws51{word-spacing:5.952000pt;}
.ws21{word-spacing:6.133333pt;}
.ws3f{word-spacing:6.346667pt;}
.ws43{word-spacing:6.826667pt;}
.ws1e{word-spacing:6.986667pt;}
.ws38{word-spacing:7.040000pt;}
.ws3d{word-spacing:7.466667pt;}
.ws4a{word-spacing:7.632000pt;}
.ws23{word-spacing:7.840000pt;}
.ws34{word-spacing:7.946667pt;}
.ws44{word-spacing:8.266667pt;}
.ws2c{word-spacing:8.480000pt;}
.ws2d{word-spacing:9.546667pt;}
.ws3c{word-spacing:10.720000pt;}
.ws22{word-spacing:11.786667pt;}
.ws41{word-spacing:12.160000pt;}
.ws4c{word-spacing:20.928000pt;}
.ws39{word-spacing:60.835733pt;}
.wse{word-spacing:61.874133pt;}
.ws1f{word-spacing:69.195733pt;}
.ws1{word-spacing:414.382400pt;}
._8{margin-left:-3.488000pt;}
._c{margin-left:-2.490667pt;}
._0{margin-left:-1.425600pt;}
._1{width:1.176000pt;}
._2{width:2.635200pt;}
._5{width:3.825600pt;}
._4{width:4.752000pt;}
._3{width:6.201600pt;}
._9{width:7.117867pt;}
._a{width:10.069333pt;}
._11{width:11.370667pt;}
._e{width:12.292267pt;}
._f{width:13.267200pt;}
._10{width:14.160000pt;}
._12{width:15.232000pt;}
._15{width:16.208000pt;}
._13{width:17.637333pt;}
._14{width:18.538667pt;}
._16{width:19.509333pt;}
._17{width:20.904000pt;}
._b{width:22.501333pt;}
._6{width:638.996800pt;}
._7{width:1188.949867pt;}
._d{width:1583.253333pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:22.460000pt;}
.y42{bottom:24.323733pt;}
.y21{bottom:25.046000pt;}
.y119{bottom:58.332667pt;}
.y10e{bottom:60.473600pt;}
.yce{bottom:60.558400pt;}
.y11d{bottom:60.589200pt;}
.y1e{bottom:62.836667pt;}
.y3b{bottom:65.366933pt;}
.y6b{bottom:68.327600pt;}
.y139{bottom:68.999333pt;}
.y16{bottom:69.633600pt;}
.y118{bottom:74.332667pt;}
.y10c{bottom:76.358533pt;}
.y11b{bottom:76.474133pt;}
.ycd{bottom:76.558400pt;}
.y110{bottom:77.429200pt;}
.y11f{bottom:77.544800pt;}
.y94{bottom:79.666000pt;}
.yea{bottom:80.594133pt;}
.y3a{bottom:81.366933pt;}
.y6a{bottom:84.327600pt;}
.y138{bottom:84.999333pt;}
.yb0{bottom:87.225067pt;}
.y160{bottom:87.225200pt;}
.y186{bottom:89.964800pt;}
.yfe{bottom:90.332667pt;}
.ycc{bottom:92.558400pt;}
.y93{bottom:95.666000pt;}
.ye9{bottom:96.594133pt;}
.y39{bottom:97.366933pt;}
.y69{bottom:100.327600pt;}
.y137{bottom:100.999333pt;}
.yaf{bottom:103.225067pt;}
.y15f{bottom:103.225200pt;}
.y15{bottom:103.813067pt;}
.yfd{bottom:106.332667pt;}
.ycb{bottom:108.558400pt;}
.y92{bottom:111.666000pt;}
.ye8{bottom:112.594133pt;}
.y38{bottom:113.366933pt;}
.y185{bottom:113.581333pt;}
.y136{bottom:116.999333pt;}
.y14{bottom:118.213067pt;}
.yae{bottom:119.225067pt;}
.y15e{bottom:119.225200pt;}
.yfc{bottom:122.332667pt;}
.yca{bottom:124.558400pt;}
.y184{bottom:126.531467pt;}
.y68{bottom:126.994267pt;}
.y91{bottom:127.666000pt;}
.y37{bottom:129.366933pt;}
.y13{bottom:132.613067pt;}
.y135{bottom:132.999333pt;}
.yad{bottom:135.225067pt;}
.y15d{bottom:135.225200pt;}
.yfb{bottom:138.332667pt;}
.ye7{bottom:139.260800pt;}
.y183{bottom:139.481467pt;}
.yc9{bottom:140.558400pt;}
.y67{bottom:142.994267pt;}
.y90{bottom:143.666000pt;}
.y12{bottom:147.013067pt;}
.y134{bottom:148.999333pt;}
.yac{bottom:151.225067pt;}
.y15c{bottom:151.225200pt;}
.yfa{bottom:154.332667pt;}
.ye6{bottom:155.260800pt;}
.y36{bottom:156.033600pt;}
.yc8{bottom:156.558400pt;}
.y66{bottom:158.994267pt;}
.y11{bottom:161.413067pt;}
.y182{bottom:163.098000pt;}
.y133{bottom:164.999333pt;}
.yab{bottom:167.225067pt;}
.y8f{bottom:170.332667pt;}
.ye5{bottom:171.260800pt;}
.y35{bottom:172.033600pt;}
.y109{bottom:172.558400pt;}
.y65{bottom:174.994267pt;}
.y10{bottom:175.813067pt;}
.y181{bottom:176.048000pt;}
.y15b{bottom:177.891867pt;}
.y117{bottom:180.999333pt;}
.yc7{bottom:183.225067pt;}
.y8e{bottom:186.332667pt;}
.ye4{bottom:187.260800pt;}
.y34{bottom:188.033600pt;}
.y180{bottom:188.998000pt;}
.yf{bottom:190.213067pt;}
.y64{bottom:190.994267pt;}
.yaa{bottom:193.891733pt;}
.y15a{bottom:193.891867pt;}
.y116{bottom:196.999333pt;}
.y108{bottom:199.225067pt;}
.y8d{bottom:202.332667pt;}
.ye3{bottom:203.260800pt;}
.y33{bottom:204.033600pt;}
.ye{bottom:204.613067pt;}
.y63{bottom:206.994267pt;}
.y132{bottom:207.666000pt;}
.ya9{bottom:209.891733pt;}
.y159{bottom:209.891867pt;}
.y17f{bottom:212.614800pt;}
.yf9{bottom:212.999333pt;}
.y107{bottom:215.225067pt;}
.y8c{bottom:218.332667pt;}
.yd{bottom:219.013067pt;}
.ye2{bottom:219.260800pt;}
.y32{bottom:220.033600pt;}
.y131{bottom:223.666000pt;}
.y17e{bottom:225.564800pt;}
.ya8{bottom:225.891733pt;}
.y158{bottom:225.891867pt;}
.yf8{bottom:228.999333pt;}
.y106{bottom:231.225067pt;}
.y62{bottom:233.660933pt;}
.y8b{bottom:234.332667pt;}
.y31{bottom:236.033600pt;}
.y17d{bottom:238.514667pt;}
.y130{bottom:239.666000pt;}
.ya7{bottom:241.891733pt;}
.y157{bottom:241.891867pt;}
.yf7{bottom:244.999333pt;}
.ye1{bottom:245.927467pt;}
.y105{bottom:247.225067pt;}
.yc{bottom:247.813067pt;}
.y61{bottom:249.660933pt;}
.y12f{bottom:255.666000pt;}
.ya6{bottom:257.891733pt;}
.y156{bottom:257.891867pt;}
.y8a{bottom:260.999333pt;}
.ye0{bottom:261.927467pt;}
.y17c{bottom:262.131333pt;}
.y30{bottom:262.700267pt;}
.y104{bottom:263.225067pt;}
.y60{bottom:265.660933pt;}
.y12e{bottom:271.666000pt;}
.ya5{bottom:273.891733pt;}
.y89{bottom:276.999333pt;}
.ydf{bottom:277.927467pt;}
.y2f{bottom:278.700267pt;}
.y5f{bottom:281.660933pt;}
.yb{bottom:284.354800pt;}
.y155{bottom:284.558533pt;}
.y17b{bottom:285.748000pt;}
.y115{bottom:287.666000pt;}
.yc6{bottom:289.891733pt;}
.y88{bottom:292.999333pt;}
.yde{bottom:293.927467pt;}
.y2e{bottom:294.700267pt;}
.y17a{bottom:298.698133pt;}
.ya4{bottom:300.558400pt;}
.y154{bottom:300.558533pt;}
.y114{bottom:303.666000pt;}
.yc5{bottom:305.891733pt;}
.y5e{bottom:308.327600pt;}
.y87{bottom:308.999333pt;}
.ydd{bottom:309.927467pt;}
.y2d{bottom:310.700267pt;}
.yd0{bottom:311.557867pt;}
.y179{bottom:311.648133pt;}
.ya{bottom:313.954800pt;}
.ya3{bottom:316.558400pt;}
.y153{bottom:316.558533pt;}
.y113{bottom:319.666000pt;}
.yc4{bottom:321.891733pt;}
.y5d{bottom:324.327600pt;}
.y86{bottom:324.999333pt;}
.ydc{bottom:325.927467pt;}
.y2c{bottom:326.700267pt;}
.y9{bottom:328.354800pt;}
.ycf{bottom:328.382000pt;}
.ya2{bottom:332.558400pt;}
.y152{bottom:332.558533pt;}
.y178{bottom:335.264667pt;}
.yf6{bottom:335.666000pt;}
.yc3{bottom:337.891733pt;}
.y5c{bottom:340.327600pt;}
.y85{bottom:340.999333pt;}
.yd1{bottom:341.547067pt;}
.y2b{bottom:342.700267pt;}
.y8{bottom:342.754800pt;}
.y177{bottom:348.214667pt;}
.ya1{bottom:348.558400pt;}
.yf5{bottom:351.666000pt;}
.ydb{bottom:352.594133pt;}
.yc2{bottom:353.891733pt;}
.y5b{bottom:356.327600pt;}
.y84{bottom:356.999333pt;}
.y7{bottom:357.154800pt;}
.y2a{bottom:358.700267pt;}
.y151{bottom:359.225200pt;}
.y12d{bottom:362.332667pt;}
.ya0{bottom:364.558400pt;}
.yf4{bottom:367.666000pt;}
.yda{bottom:368.594133pt;}
.yc1{bottom:369.891733pt;}
.y6{bottom:371.554800pt;}
.y176{bottom:371.831333pt;}
.y83{bottom:372.999333pt;}
.y29{bottom:374.700267pt;}
.y150{bottom:375.225200pt;}
.y12c{bottom:378.332667pt;}
.y9f{bottom:380.558400pt;}
.y5a{bottom:382.994267pt;}
.yf3{bottom:383.666000pt;}
.yd9{bottom:384.594133pt;}
.y175{bottom:384.781467pt;}
.y103{bottom:385.891733pt;}
.y5{bottom:385.954800pt;}
.y14f{bottom:391.225200pt;}
.y12b{bottom:394.332667pt;}
.yc0{bottom:396.558400pt;}
.y59{bottom:398.994267pt;}
.y82{bottom:399.666000pt;}
.y4{bottom:400.354800pt;}
.yd8{bottom:400.594133pt;}
.y28{bottom:401.366933pt;}
.y102{bottom:401.891733pt;}
.y9e{bottom:407.225067pt;}
.y14e{bottom:407.225200pt;}
.y174{bottom:408.398133pt;}
.y112{bottom:410.332667pt;}
.ybf{bottom:412.558400pt;}
.y3{bottom:414.754800pt;}
.y58{bottom:414.994267pt;}
.yf2{bottom:415.666000pt;}
.yd7{bottom:416.594133pt;}
.y27{bottom:417.366933pt;}
.y101{bottom:417.891733pt;}
.y173{bottom:421.348000pt;}
.y9d{bottom:423.225067pt;}
.y14d{bottom:423.225200pt;}
.y12a{bottom:426.332667pt;}
.ybe{bottom:428.558400pt;}
.y2{bottom:429.154800pt;}
.y57{bottom:430.994267pt;}
.yf1{bottom:431.666000pt;}
.yd6{bottom:432.594133pt;}
.y26{bottom:433.366933pt;}
.y81{bottom:433.891733pt;}
.y172{bottom:434.298000pt;}
.y9c{bottom:439.225067pt;}
.y14c{bottom:439.225200pt;}
.y10d{bottom:441.455467pt;}
.y129{bottom:442.332667pt;}
.ybd{bottom:444.558400pt;}
.y56{bottom:446.994267pt;}
.yf0{bottom:447.666000pt;}
.yd5{bottom:448.594133pt;}
.y25{bottom:449.366933pt;}
.y80{bottom:449.891733pt;}
.y11c{bottom:454.794000pt;}
.y9b{bottom:455.225067pt;}
.y10b{bottom:456.555600pt;}
.y171{bottom:457.914667pt;}
.y1{bottom:457.954800pt;}
.y128{bottom:458.332667pt;}
.ybc{bottom:460.558400pt;}
.y55{bottom:462.994267pt;}
.y24{bottom:465.366933pt;}
.y7f{bottom:465.891733pt;}
.y14b{bottom:465.891867pt;}
.y10a{bottom:469.355600pt;}
.y10f{bottom:470.426267pt;}
.y11a{bottom:470.678800pt;}
.y11e{bottom:471.749467pt;}
.yef{bottom:474.332667pt;}
.yd4{bottom:475.260800pt;}
.ybb{bottom:476.558400pt;}
.y23{bottom:481.366933pt;}
.y170{bottom:481.531467pt;}
.y7e{bottom:481.891733pt;}
.y14a{bottom:481.891867pt;}
.y54{bottom:489.660933pt;}
.y127{bottom:490.332667pt;}
.yd3{bottom:491.260800pt;}
.yba{bottom:492.558400pt;}
.y16f{bottom:494.481333pt;}
.y7d{bottom:497.891733pt;}
.y149{bottom:497.891867pt;}
.y53{bottom:505.660933pt;}
.y22{bottom:508.033600pt;}
.yee{bottom:508.558400pt;}
.y7c{bottom:513.891733pt;}
.y148{bottom:513.891867pt;}
.y18{bottom:515.907733pt;}
.yd2{bottom:516.999333pt;}
.y16e{bottom:518.098000pt;}
.yb9{bottom:519.225067pt;}
.y52{bottom:521.660933pt;}
.yed{bottom:524.558400pt;}
.y7b{bottom:529.891733pt;}
.y147{bottom:529.891867pt;}
.y16d{bottom:531.048000pt;}
.y126{bottom:532.999333pt;}
.yb8{bottom:535.225067pt;}
.y1a{bottom:535.699733pt;}
.y51{bottom:537.660933pt;}
.yec{bottom:540.558400pt;}
.y7a{bottom:545.891733pt;}
.y146{bottom:545.891867pt;}
.y19{bottom:546.899733pt;}
.y125{bottom:548.999333pt;}
.yb7{bottom:551.225067pt;}
.y50{bottom:553.660933pt;}
.y16c{bottom:554.664667pt;}
.yeb{bottom:556.558400pt;}
.y145{bottom:561.891867pt;}
.y124{bottom:564.999333pt;}
.y17{bottom:566.805467pt;}
.yb6{bottom:567.225067pt;}
.y4f{bottom:569.660933pt;}
.y79{bottom:572.558400pt;}
.y16b{bottom:578.281467pt;}
.y123{bottom:580.999333pt;}
.yb5{bottom:583.225067pt;}
.y78{bottom:588.558400pt;}
.y144{bottom:588.558533pt;}
.y4e{bottom:596.327600pt;}
.y122{bottom:596.999333pt;}
.yb4{bottom:599.225067pt;}
.y16a{bottom:601.898000pt;}
.y77{bottom:604.558400pt;}
.y143{bottom:604.558533pt;}
.y169{bottom:614.848000pt;}
.yb3{bottom:615.225067pt;}
.y76{bottom:620.558400pt;}
.y142{bottom:620.558533pt;}
.y1d{bottom:622.750267pt;}
.y121{bottom:623.666000pt;}
.y4d{bottom:623.666133pt;}
.y41{bottom:626.765333pt;}
.y9a{bottom:631.225067pt;}
.y75{bottom:636.558400pt;}
.y141{bottom:636.558533pt;}
.y168{bottom:638.464667pt;}
.y99{bottom:647.225067pt;}
.y167{bottom:651.414667pt;}
.y74{bottom:652.558400pt;}
.y140{bottom:652.558533pt;}
.y40{bottom:655.032000pt;}
.y1c{bottom:656.350267pt;}
.y13b{bottom:657.754533pt;}
.y120{bottom:657.891733pt;}
.y4c{bottom:657.891867pt;}
.y98{bottom:663.225067pt;}
.y13f{bottom:668.558533pt;}
.y3f{bottom:672.632000pt;}
.y13a{bottom:672.694533pt;}
.y13c{bottom:673.765200pt;}
.y111{bottom:673.891733pt;}
.y4b{bottom:673.891867pt;}
.y166{bottom:675.031467pt;}
.y73{bottom:679.225067pt;}
.y13e{bottom:684.558533pt;}
.y165{bottom:687.981333pt;}
.y3e{bottom:688.632000pt;}
.yb2{bottom:689.891733pt;}
.y4a{bottom:689.891867pt;}
.y1b{bottom:689.950267pt;}
.y72{bottom:695.225067pt;}
.y3d{bottom:704.632000pt;}
.yb1{bottom:705.891733pt;}
.y49{bottom:705.891867pt;}
.y71{bottom:711.225067pt;}
.y13d{bottom:711.225200pt;}
.y164{bottom:711.598000pt;}
.y3c{bottom:720.632000pt;}
.y97{bottom:721.891733pt;}
.y48{bottom:721.891867pt;}
.y70{bottom:727.225067pt;}
.y163{bottom:735.214800pt;}
.y96{bottom:737.891733pt;}
.y47{bottom:737.891867pt;}
.y6f{bottom:743.225067pt;}
.y162{bottom:748.164667pt;}
.y95{bottom:753.891733pt;}
.y46{bottom:753.891867pt;}
.y100{bottom:759.225067pt;}
.y6e{bottom:769.891733pt;}
.y45{bottom:769.891867pt;}
.y187{bottom:771.246000pt;}
.y161{bottom:771.781467pt;}
.yff{bottom:775.225067pt;}
.y6d{bottom:785.891733pt;}
.y44{bottom:785.891867pt;}
.y6c{bottom:801.891733pt;}
.y43{bottom:801.891867pt;}
.y1f{bottom:857.898533pt;}
.h16{height:26.016000pt;}
.h14{height:27.440000pt;}
.h13{height:28.992000pt;}
.h8{height:33.824000pt;}
.h6{height:34.218667pt;}
.h12{height:34.602667pt;}
.ha{height:35.280000pt;}
.h15{height:35.328000pt;}
.hd{height:35.506767pt;}
.hb{height:38.395833pt;}
.h11{height:38.496000pt;}
.h7{height:38.656000pt;}
.h3{height:39.024000pt;}
.h17{height:40.634667pt;}
.h5{height:41.090667pt;}
.hc{height:41.666667pt;}
.he{height:42.773333pt;}
.h10{height:43.253333pt;}
.h2{height:43.360000pt;}
.h4{height:43.488000pt;}
.hf{height:48.320000pt;}
.h9{height:89.824000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xe{left:11.716533pt;}
.x26{left:18.519733pt;}
.x1d{left:44.299067pt;}
.xd{left:59.605867pt;}
.xc{left:68.596533pt;}
.x16{left:75.968533pt;}
.x2{left:94.488133pt;}
.x17{left:113.390533pt;}
.xa{left:119.055067pt;}
.x6{left:128.890933pt;}
.x5{left:149.546133pt;}
.xf{left:151.181067pt;}
.x1c{left:156.318000pt;}
.x20{left:162.519733pt;}
.x7{left:176.348800pt;}
.x4{left:183.044000pt;}
.x18{left:187.469333pt;}
.x10{left:188.981067pt;}
.x21{left:200.319733pt;}
.x12{left:241.889733pt;}
.x1e{left:247.970800pt;}
.xb{left:252.558267pt;}
.x11{left:279.689733pt;}
.x25{left:285.354400pt;}
.x1b{left:300.472400pt;}
.x24{left:323.154400pt;}
.x1a{left:338.272400pt;}
.x13{left:347.672667pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.x14{left:367.336533pt;}
.x8{left:400.828000pt;}
.x1f{left:440.692267pt;}
.x28{left:445.039333pt;}
.x23{left:457.322800pt;}
.x9{left:462.854800pt;}
.x27{left:481.133867pt;}
.x22{left:497.683333pt;}
.x29{left:580.828133pt;}
.x15{left:643.821200pt;}
.x19{left:645.644133pt;}
}




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