
    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_49766113f18220146aee447e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c5b5525a18ba43832d312e2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.955000;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_135b94ff85c40e24b36efb44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944000;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_49766113f18220146aee447e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c5b5525a18ba43832d312e2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.955000;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_cc17b1e1af908e9a7abe25f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.156000;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_773fcf8453559d0922532cfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_94d825ace290efb72ac98a07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_dd9c286e018ca5dc27f61b8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_3dec0aa10681d462d268f3f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1103f84ad525161805291d35.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_28f02d5479142acc5cf5f8b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5bbc46008333e59eb2911c2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_86622cf3c95a70c89f953952.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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_a5db5f3e28e92960d003c73e.woff2')format("woff");}.fff{font-family:fff;line-height:0.694336;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_d43ec96daaa9bc066a7df19a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_472e2a3d2143989e0299ba1c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;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_a09973bcc05fa9de535f6221.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.691406;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_8eef31eda65e9d3212457a6a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.024902;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;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_35aeaea5bfdf891d71318a30.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.024902;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_9e2ac784c63991df0ed815e7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.024902;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_257d1cac4056779b4d5c3f18.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284668;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:ff19;src:url('chunks/assets/font_06acf70c49c7b638f8324f49.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.774414;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;}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{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);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:42.480000px;}
.ls2{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.lsa{letter-spacing:7.200000px;}
.ls5{letter-spacing:138.360000px;}
.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:-21.035537px;}
.ws10{word-spacing:-19.008015px;}
.wsb{word-spacing:-18.720000px;}
.wse{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wsa{word-spacing:-15.226440px;}
.ws0{word-spacing:-15.011994px;}
.ws6{word-spacing:-14.970240px;}
.wsd{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.790600px;}
.ws8{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-2.180130px;}
._1{margin-left:-1.053523px;}
._0{width:1.133930px;}
._12{width:2.205523px;}
._a{width:3.456000px;}
._b{width:5.184000px;}
._5{width:7.056000px;}
._1f{width:8.424000px;}
._22{width:9.468139px;}
._10{width:10.485523px;}
._3{width:12.456000px;}
._4{width:13.698070px;}
._18{width:14.805244px;}
._f{width:16.272000px;}
._2{width:19.944000px;}
._c{width:21.672000px;}
._1d{width:22.968000px;}
._d{width:24.264000px;}
._e{width:26.010070px;}
._13{width:27.792000px;}
._8{width:28.872000px;}
._9{width:29.970070px;}
._14{width:31.680000px;}
._15{width:33.552000px;}
._16{width:35.568000px;}
._17{width:36.927592px;}
._23{width:38.274039px;}
._26{width:39.384000px;}
._2b{width:40.440031px;}
._25{width:41.832000px;}
._1e{width:42.984000px;}
._2d{width:44.640000px;}
._1c{width:46.440000px;}
._1a{width:48.312000px;}
._1b{width:49.728000px;}
._27{width:50.904000px;}
._28{width:52.296139px;}
._2c{width:55.224000px;}
._2e{width:68.376000px;}
._20{width:85.176000px;}
._21{width:86.184000px;}
._2a{width:104.376000px;}
._6{width:134.926808px;}
._29{width:140.376000px;}
._24{width:1364.195521px;}
._7{width:1397.969760px;}
._11{width:1606.596000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,96,159);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:53.999978px;}
.fsc{font-size:54.000043px;}
.fsa{font-size:59.760048px;}
.fsb{font-size:60.000000px;}
.fs0{font-size:66.239974px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:71.999971px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:72.000058px;}
.fs2{font-size:84.239966px;}
.fs8{font-size:84.240067px;}
.y0{bottom:0.000000px;}
.y11d{bottom:2.699831px;}
.yd9{bottom:3.059394px;}
.yfe{bottom:3.059584px;}
.y95{bottom:3.059615px;}
.y92{bottom:3.059630px;}
.yf9{bottom:3.059635px;}
.y8d{bottom:3.059681px;}
.y89{bottom:3.059717px;}
.yc0{bottom:3.059780px;}
.y7c{bottom:3.059921px;}
.y7{bottom:3.240549px;}
.y19{bottom:3.240792px;}
.y9{bottom:3.240801px;}
.yb8{bottom:3.599882px;}
.yb{bottom:4.500801px;}
.y10{bottom:4.680568px;}
.y5{bottom:4.680624px;}
.y26{bottom:57.636000px;}
.yc{bottom:57.901477px;}
.y25{bottom:77.796000px;}
.y129{bottom:111.540989px;}
.y77{bottom:112.536000px;}
.yac{bottom:122.880998px;}
.ye4{bottom:131.521605px;}
.yab{bottom:141.241013px;}
.y57{bottom:146.196000px;}
.y3f{bottom:146.736000px;}
.y112{bottom:150.961621px;}
.y76{bottom:153.930000px;}
.ye3{bottom:158.881627px;}
.yaa{bottom:169.141635px;}
.ye2{bottom:177.061642px;}
.y56{bottom:187.590000px;}
.y3e{bottom:187.770000px;}
.y5b{bottom:188.130000px;}
.ye1{bottom:195.241656px;}
.y75{bottom:195.330000px;}
.ya9{bottom:199.921660px;}
.y111{bottom:204.421664px;}
.ye0{bottom:213.421671px;}
.y110{bottom:222.781678px;}
.ya8{bottom:225.481680px;}
.y55{bottom:228.990000px;}
.y3d{bottom:229.170000px;}
.y5a{bottom:229.530000px;}
.y74{bottom:236.730000px;}
.ydf{bottom:240.781693px;}
.y10f{bottom:240.961693px;}
.ya{bottom:243.660600px;}
.ya7{bottom:243.661695px;}
.y8{bottom:244.920600px;}
.yde{bottom:258.961707px;}
.ya6{bottom:262.021710px;}
.y18{bottom:265.620600px;}
.y10e{bottom:268.141715px;}
.y1a{bottom:268.861392px;}
.y54{bottom:270.390000px;}
.y3c{bottom:270.930000px;}
.ydd{bottom:277.141722px;}
.y73{bottom:278.175000px;}
.ya5{bottom:280.201724px;}
.y10d{bottom:286.501729px;}
.ya4{bottom:298.381739px;}
.ydc{bottom:304.501744px;}
.y10c{bottom:304.681744px;}
.y53{bottom:311.835000px;}
.y3b{bottom:312.375000px;}
.y72{bottom:319.575000px;}
.ydb{bottom:322.681758px;}
.y10b{bottom:322.861758px;}
.ya3{bottom:325.741761px;}
.ya2{bottom:343.921775px;}
.yda{bottom:349.861780px;}
.y10a{bottom:350.041780px;}
.y52{bottom:353.235000px;}
.y3a{bottom:353.775000px;}
.y71{bottom:360.975000px;}
.ya1{bottom:362.101790px;}
.yd8{bottom:364.982400px;}
.yd7{bottom:368.041794px;}
.y109{bottom:368.401795px;}
.ya0{bottom:380.281804px;}
.yd6{bottom:386.401809px;}
.y51{bottom:394.635000px;}
.y39{bottom:395.175000px;}
.y108{bottom:395.581816px;}
.y128{bottom:396.841817px;}
.y9f{bottom:398.641819px;}
.y70{bottom:402.375000px;}
.y17{bottom:403.681339px;}
.yd5{bottom:413.581831px;}
.y107{bottom:413.761831px;}
.y127{bottom:415.021832px;}
.y9e{bottom:425.821841px;}
.y106{bottom:431.941846px;}
.y38{bottom:436.035000px;}
.y4c{bottom:436.395000px;}
.yd4{bottom:440.761853px;}
.y16{bottom:441.661323px;}
.y6f{bottom:443.775000px;}
.y9d{bottom:453.001862px;}
.yd3{bottom:458.941867px;}
.y105{bottom:459.301867px;}
.y50{bottom:477.255000px;}
.y37{bottom:477.435000px;}
.y104{bottom:477.481882px;}
.y59{bottom:477.795000px;}
.y9c{bottom:480.181884px;}
.y15{bottom:480.361308px;}
.y6e{bottom:485.175000px;}
.yd2{bottom:486.301889px;}
.y103{bottom:495.661897px;}
.yd1{bottom:504.481904px;}
.y9b{bottom:507.541906px;}
.y102{bottom:514.021911px;}
.y4f{bottom:518.655000px;}
.y36{bottom:518.835000px;}
.y4b{bottom:519.195000px;}
.y14{bottom:519.241292px;}
.yd0{bottom:522.661918px;}
.y6d{bottom:526.575000px;}
.y9a{bottom:534.721928px;}
.y101{bottom:541.201933px;}
.ycf{bottom:550.021940px;}
.y99{bottom:552.901942px;}
.y13{bottom:557.941277px;}
.y100{bottom:559.381948px;}
.y4e{bottom:560.265000px;}
.y35{bottom:560.625000px;}
.y6c{bottom:568.005000px;}
.yce{bottom:577.201962px;}
.y98{bottom:580.261964px;}
.yff{bottom:586.561969px;}
.ycd{bottom:595.381976px;}
.y12{bottom:596.821261px;}
.y97{bottom:598.441979px;}
.yfd{bottom:601.862400px;}
.y34{bottom:602.025000px;}
.yfc{bottom:604.921984px;}
.y6b{bottom:609.045000px;}
.ycc{bottom:613.561991px;}
.yfb{bottom:623.101998px;}
.y96{bottom:625.622000px;}
.ycb{bottom:631.922006px;}
.y11{bottom:635.521246px;}
.y94{bottom:640.742400px;}
.y33{bottom:643.065000px;}
.y4a{bottom:643.425000px;}
.y93{bottom:643.802015px;}
.y6a{bottom:646.485000px;}
.yca{bottom:650.102020px;}
.yfa{bottom:650.282020px;}
.y91{bottom:659.102400px;}
.y90{bottom:662.162030px;}
.yf8{bottom:665.582400px;}
.yc9{bottom:668.282035px;}
.y8f{bottom:680.342044px;}
.y32{bottom:684.465000px;}
.y49{bottom:684.825000px;}
.y4{bottom:686.280600px;}
.yc8{bottom:686.642049px;}
.yf7{bottom:686.822049px;}
.y3{bottom:690.961224px;}
.y126{bottom:691.322053px;}
.y69{bottom:696.885000px;}
.yc7{bottom:704.822064px;}
.yf6{bottom:705.002064px;}
.y8e{bottom:707.522066px;}
.y8c{bottom:722.822400px;}
.yc6{bottom:723.002078px;}
.y31{bottom:725.865000px;}
.y8b{bottom:725.882081px;}
.y48{bottom:726.225000px;}
.y2{bottom:729.481208px;}
.yf5{bottom:732.182086px;}
.y68{bottom:738.285000px;}
.yc5{bottom:741.182093px;}
.y125{bottom:746.402097px;}
.yf4{bottom:750.542100px;}
.y8a{bottom:753.062102px;}
.yc4{bottom:759.542108px;}
.y30{bottom:767.265000px;}
.y47{bottom:767.625000px;}
.y24{bottom:767.805000px;}
.y88{bottom:768.182400px;}
.y124{bottom:771.782117px;}
.yc3{bottom:777.722122px;}
.y67{bottom:778.425000px;}
.yf3{bottom:795.902137px;}
.y123{bottom:797.342138px;}
.y87{bottom:798.422139px;}
.yc2{bottom:804.902144px;}
.y2f{bottom:808.665000px;}
.y46{bottom:809.025000px;}
.y23{bottom:809.205000px;}
.y122{bottom:813.722151px;}
.yf2{bottom:814.082151px;}
.y66{bottom:818.745000px;}
.yf{bottom:825.420600px;}
.y86{bottom:825.782161px;}
.ye{bottom:830.101168px;}
.yc1{bottom:832.082166px;}
.y121{bottom:839.102171px;}
.yf1{bottom:841.442173px;}
.y85{bottom:843.962175px;}
.ybf{bottom:847.382400px;}
.y2e{bottom:850.110000px;}
.ybe{bottom:850.442180px;}
.y45{bottom:850.470000px;}
.y22{bottom:850.650000px;}
.y120{bottom:855.482184px;}
.y65{bottom:859.110000px;}
.yf0{bottom:859.622188px;}
.y84{bottom:862.142190px;}
.yd{bottom:868.441153px;}
.ybd{bottom:868.622195px;}
.y11f{bottom:871.862197px;}
.y6{bottom:874.200600px;}
.yef{bottom:877.802202px;}
.y83{bottom:880.322204px;}
.ybc{bottom:886.802209px;}
.y2d{bottom:891.510000px;}
.y44{bottom:891.870000px;}
.y21{bottom:892.050000px;}
.yee{bottom:896.162217px;}
.y11e{bottom:897.242218px;}
.y64{bottom:899.430000px;}
.ybb{bottom:905.162224px;}
.y82{bottom:907.682226px;}
.y11c{bottom:910.922400px;}
.yed{bottom:914.342231px;}
.yba{bottom:923.342239px;}
.y81{bottom:925.862241px;}
.y11b{bottom:930.182244px;}
.yec{bottom:932.522246px;}
.y2c{bottom:932.910000px;}
.y43{bottom:933.270000px;}
.y20{bottom:933.450000px;}
.y63{bottom:939.750000px;}
.y80{bottom:944.042255px;}
.y11a{bottom:946.562257px;}
.yb9{bottom:950.522260px;}
.yeb{bottom:950.702261px;}
.y7f{bottom:962.402270px;}
.y119{bottom:962.942270px;}
.yb7{bottom:974.102400px;}
.y5d{bottom:974.310000px;}
.y2b{bottom:974.670000px;}
.y1f{bottom:974.850000px;}
.yb6{bottom:977.702282px;}
.yea{bottom:978.062282px;}
.y62{bottom:979.890000px;}
.y7e{bottom:980.582284px;}
.y118{bottom:981.122285px;}
.yb5{bottom:996.062297px;}
.ye9{bottom:1005.242304px;}
.y7d{bottom:1007.762306px;}
.yb4{bottom:1014.242311px;}
.y42{bottom:1015.710000px;}
.y2a{bottom:1016.070000px;}
.y1e{bottom:1016.250000px;}
.y61{bottom:1020.210000px;}
.y7b{bottom:1022.882400px;}
.ye8{bottom:1023.422319px;}
.yb3{bottom:1032.422326px;}
.ye7{bottom:1041.602333px;}
.y7a{bottom:1044.302335px;}
.y117{bottom:1050.422340px;}
.y29{bottom:1057.110000px;}
.y4d{bottom:1057.470000px;}
.y1d{bottom:1057.650000px;}
.yb2{bottom:1059.602348px;}
.y60{bottom:1060.530000px;}
.y116{bottom:1066.802353px;}
.ye6{bottom:1068.962355px;}
.y79{bottom:1072.922358px;}
.yb1{bottom:1077.962362px;}
.ye5{bottom:1087.142370px;}
.y115{bottom:1092.182374px;}
.yb0{bottom:1096.142377px;}
.y5c{bottom:1098.510000px;}
.y28{bottom:1098.870000px;}
.y1c{bottom:1099.050000px;}
.y5f{bottom:1100.850000px;}
.yaf{bottom:1114.322391px;}
.y114{bottom:1117.562394px;}
.y78{bottom:1135.922409px;}
.y27{bottom:1139.940000px;}
.y1b{bottom:1140.120000px;}
.y58{bottom:1140.300000px;}
.y5e{bottom:1141.200000px;}
.yae{bottom:1141.682413px;}
.y113{bottom:1143.122414px;}
.y41{bottom:1174.140000px;}
.y40{bottom:1194.300000px;}
.y1{bottom:1194.421022px;}
.yad{bottom:1236.405000px;}
.h5{height:15.480000px;}
.h1b{height:16.380000px;}
.h7{height:16.740000px;}
.h19{height:16.920000px;}
.h16{height:18.000000px;}
.h4{height:23.580000px;}
.h6{height:39.095984px;}
.ha{height:40.013984px;}
.h1{height:44.149201px;}
.h1a{height:44.191442px;}
.h11{height:45.248906px;}
.he{height:45.345937px;}
.h15{height:48.905195px;}
.h9{height:50.543980px;}
.h2{height:53.351979px;}
.h17{height:58.651219px;}
.h18{height:58.886719px;}
.h3{height:62.421815px;}
.h8{height:67.391973px;}
.h13{height:68.938649px;}
.hf{height:70.628906px;}
.hd{height:70.664062px;}
.h14{height:70.664119px;}
.hc{height:72.562500px;}
.h10{height:74.953125px;}
.h12{height:81.736875px;}
.hb{height:1262.880000px;}
.h0{height:1263.000000px;}
.w14{width:3.060000px;}
.w8{width:3.780000px;}
.w5{width:7.380000px;}
.w3{width:7.560000px;}
.wa{width:9.720000px;}
.w1{width:10.620000px;}
.wb{width:10.800000px;}
.w6{width:12.060000px;}
.w2{width:15.120000px;}
.w9{width:22.500000px;}
.w4{width:26.280000px;}
.wc{width:28.620000px;}
.w7{width:32.400000px;}
.w12{width:86.040000px;}
.w16{width:393.660000px;}
.w15{width:462.420000px;}
.w13{width:480.600000px;}
.w11{width:492.840000px;}
.w10{width:675.000000px;}
.w0{width:892.500000px;}
.wd{width:892.800000px;}
.we{width:892.980000px;}
.wf{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:83.519217px;}
.x17{left:106.416000px;}
.x1{left:127.619199px;}
.x24{left:132.300106px;}
.x28{left:165.600132px;}
.x22{left:167.760134px;}
.x25{left:196.020157px;}
.x23{left:305.820245px;}
.x1b{left:309.780000px;}
.x1d{left:322.020000px;}
.x21{left:340.200000px;}
.x27{left:346.860277px;}
.x15{left:384.299846px;}
.x1a{left:409.035000px;}
.x19{left:446.475000px;}
.x13{left:491.580157px;}
.x14{left:515.700158px;}
.x10{left:550.619780px;}
.x2{left:551.879779px;}
.x26{left:566.640453px;}
.x12{left:706.679388px;}
.x1c{left:716.580000px;}
.xb{left:740.160000px;}
.x5{left:749.880000px;}
.xc{left:752.220000px;}
.x1e{left:760.560000px;}
.x6{left:765.000000px;}
.x7{left:772.560000px;}
.x16{left:778.470000px;}
.x8{left:780.120000px;}
.xd{left:784.620000px;}
.x18{left:786.750000px;}
.xe{left:788.400000px;}
.x20{left:795.060000px;}
.x1f{left:799.560000px;}
.x9{left:806.400000px;}
.xf{left:810.900000px;}
.xa{left:813.780000px;}
.x4{left:817.920000px;}
.x11{left:830.699323px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:37.760000pt;}
.ls2{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls5{letter-spacing:122.986667pt;}
.wsf{word-spacing:-18.698255pt;}
.ws10{word-spacing:-16.896014pt;}
.wsb{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.343995pt;}
.ws6{word-spacing:-13.306880pt;}
.wsd{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.480533pt;}
.ws8{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-1.937893pt;}
._1{margin-left:-0.936465pt;}
._0{width:1.007938pt;}
._12{width:1.960465pt;}
._a{width:3.072000pt;}
._b{width:4.608000pt;}
._5{width:6.272000pt;}
._1f{width:7.488000pt;}
._22{width:8.416124pt;}
._10{width:9.320465pt;}
._3{width:11.072000pt;}
._4{width:12.176062pt;}
._18{width:13.160217pt;}
._f{width:14.464000pt;}
._2{width:17.728000pt;}
._c{width:19.264000pt;}
._1d{width:20.416000pt;}
._d{width:21.568000pt;}
._e{width:23.120062pt;}
._13{width:24.704000pt;}
._8{width:25.664000pt;}
._9{width:26.640062pt;}
._14{width:28.160000pt;}
._15{width:29.824000pt;}
._16{width:31.616000pt;}
._17{width:32.824526pt;}
._23{width:34.021368pt;}
._26{width:35.008000pt;}
._2b{width:35.946694pt;}
._25{width:37.184000pt;}
._1e{width:38.208000pt;}
._2d{width:39.680000pt;}
._1c{width:41.280000pt;}
._1a{width:42.944000pt;}
._1b{width:44.202667pt;}
._27{width:45.248000pt;}
._28{width:46.485457pt;}
._2c{width:49.088000pt;}
._2e{width:60.778667pt;}
._20{width:75.712000pt;}
._21{width:76.608000pt;}
._2a{width:92.778667pt;}
._6{width:119.934940pt;}
._29{width:124.778667pt;}
._24{width:1212.618241pt;}
._7{width:1242.639787pt;}
._11{width:1428.085333pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:47.999981pt;}
.fsc{font-size:48.000038pt;}
.fsa{font-size:53.120042pt;}
.fsb{font-size:53.333333pt;}
.fs0{font-size:58.879976pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:63.999974pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:64.000051pt;}
.fs2{font-size:74.879970pt;}
.fs8{font-size:74.880060pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:2.399850pt;}
.yd9{bottom:2.719462pt;}
.yfe{bottom:2.719630pt;}
.y95{bottom:2.719658pt;}
.y92{bottom:2.719671pt;}
.yf9{bottom:2.719675pt;}
.y8d{bottom:2.719716pt;}
.y89{bottom:2.719748pt;}
.yc0{bottom:2.719805pt;}
.y7c{bottom:2.719930pt;}
.y7{bottom:2.880488pt;}
.y19{bottom:2.880704pt;}
.y9{bottom:2.880712pt;}
.yb8{bottom:3.199895pt;}
.yb{bottom:4.000712pt;}
.y10{bottom:4.160505pt;}
.y5{bottom:4.160554pt;}
.y26{bottom:51.232000pt;}
.yc{bottom:51.467979pt;}
.y25{bottom:69.152000pt;}
.y129{bottom:99.147546pt;}
.y77{bottom:100.032000pt;}
.yac{bottom:109.227554pt;}
.ye4{bottom:116.908094pt;}
.yab{bottom:125.547567pt;}
.y57{bottom:129.952000pt;}
.y3f{bottom:130.432000pt;}
.y112{bottom:134.188107pt;}
.y76{bottom:136.826667pt;}
.ye3{bottom:141.228113pt;}
.yaa{bottom:150.348120pt;}
.ye2{bottom:157.388126pt;}
.y56{bottom:166.746667pt;}
.y3e{bottom:166.906667pt;}
.y5b{bottom:167.226667pt;}
.ye1{bottom:173.548139pt;}
.y75{bottom:173.626667pt;}
.ya9{bottom:177.708142pt;}
.y111{bottom:181.708145pt;}
.ye0{bottom:189.708152pt;}
.y110{bottom:198.028158pt;}
.ya8{bottom:200.428160pt;}
.y55{bottom:203.546667pt;}
.y3d{bottom:203.706667pt;}
.y5a{bottom:204.026667pt;}
.y74{bottom:210.426667pt;}
.ydf{bottom:214.028171pt;}
.y10f{bottom:214.188171pt;}
.ya{bottom:216.587200pt;}
.ya7{bottom:216.588173pt;}
.y8{bottom:217.707200pt;}
.yde{bottom:230.188184pt;}
.ya6{bottom:232.908186pt;}
.y18{bottom:236.107200pt;}
.y10e{bottom:238.348191pt;}
.y1a{bottom:238.987904pt;}
.y54{bottom:240.346667pt;}
.y3c{bottom:240.826667pt;}
.ydd{bottom:246.348197pt;}
.y73{bottom:247.266667pt;}
.ya5{bottom:249.068199pt;}
.y10d{bottom:254.668204pt;}
.ya4{bottom:265.228212pt;}
.ydc{bottom:270.668217pt;}
.y10c{bottom:270.828217pt;}
.y53{bottom:277.186667pt;}
.y3b{bottom:277.666667pt;}
.y72{bottom:284.066667pt;}
.ydb{bottom:286.828229pt;}
.y10b{bottom:286.988230pt;}
.ya3{bottom:289.548232pt;}
.ya2{bottom:305.708245pt;}
.yda{bottom:310.988249pt;}
.y10a{bottom:311.148249pt;}
.y52{bottom:313.986667pt;}
.y3a{bottom:314.466667pt;}
.y71{bottom:320.866667pt;}
.ya1{bottom:321.868257pt;}
.yd8{bottom:324.428800pt;}
.yd7{bottom:327.148262pt;}
.y109{bottom:327.468262pt;}
.ya0{bottom:338.028270pt;}
.yd6{bottom:343.468275pt;}
.y51{bottom:350.786667pt;}
.y39{bottom:351.266667pt;}
.y108{bottom:351.628281pt;}
.y128{bottom:352.748282pt;}
.y9f{bottom:354.348283pt;}
.y70{bottom:357.666667pt;}
.y17{bottom:358.827856pt;}
.yd5{bottom:367.628294pt;}
.y107{bottom:367.788294pt;}
.y127{bottom:368.908295pt;}
.y9e{bottom:378.508303pt;}
.y106{bottom:383.948307pt;}
.y38{bottom:387.586667pt;}
.y4c{bottom:387.906667pt;}
.yd4{bottom:391.788313pt;}
.y16{bottom:392.587843pt;}
.y6f{bottom:394.466667pt;}
.y9d{bottom:402.668322pt;}
.yd3{bottom:407.948326pt;}
.y105{bottom:408.268327pt;}
.y50{bottom:424.226667pt;}
.y37{bottom:424.386667pt;}
.y104{bottom:424.428340pt;}
.y59{bottom:424.706667pt;}
.y9c{bottom:426.828341pt;}
.y15{bottom:426.987829pt;}
.y6e{bottom:431.266667pt;}
.yd2{bottom:432.268346pt;}
.y103{bottom:440.588352pt;}
.yd1{bottom:448.428359pt;}
.y9b{bottom:451.148361pt;}
.y102{bottom:456.908366pt;}
.y4f{bottom:461.026667pt;}
.y36{bottom:461.186667pt;}
.y4b{bottom:461.506667pt;}
.y14{bottom:461.547815pt;}
.yd0{bottom:464.588372pt;}
.y6d{bottom:468.066667pt;}
.y9a{bottom:475.308380pt;}
.y101{bottom:481.068385pt;}
.ycf{bottom:488.908391pt;}
.y99{bottom:491.468393pt;}
.y13{bottom:495.947802pt;}
.y100{bottom:497.228398pt;}
.y4e{bottom:498.013333pt;}
.y35{bottom:498.333333pt;}
.y6c{bottom:504.893333pt;}
.yce{bottom:513.068410pt;}
.y98{bottom:515.788413pt;}
.yff{bottom:521.388417pt;}
.ycd{bottom:529.228423pt;}
.y12{bottom:530.507788pt;}
.y97{bottom:531.948426pt;}
.yfd{bottom:534.988800pt;}
.y34{bottom:535.133333pt;}
.yfc{bottom:537.708430pt;}
.y6b{bottom:541.373333pt;}
.ycc{bottom:545.388436pt;}
.yfb{bottom:553.868443pt;}
.y96{bottom:556.108445pt;}
.ycb{bottom:561.708449pt;}
.y11{bottom:564.907774pt;}
.y94{bottom:569.548800pt;}
.y33{bottom:571.613333pt;}
.y4a{bottom:571.933333pt;}
.y93{bottom:572.268458pt;}
.y6a{bottom:574.653333pt;}
.yca{bottom:577.868462pt;}
.yfa{bottom:578.028462pt;}
.y91{bottom:585.868800pt;}
.y90{bottom:588.588471pt;}
.yf8{bottom:591.628800pt;}
.yc9{bottom:594.028475pt;}
.y8f{bottom:604.748484pt;}
.y32{bottom:608.413333pt;}
.y49{bottom:608.733333pt;}
.y4{bottom:610.027200pt;}
.yc8{bottom:610.348488pt;}
.yf7{bottom:610.508488pt;}
.y3{bottom:614.187754pt;}
.y126{bottom:614.508492pt;}
.y69{bottom:619.453333pt;}
.yc7{bottom:626.508501pt;}
.yf6{bottom:626.668501pt;}
.y8e{bottom:628.908503pt;}
.y8c{bottom:642.508800pt;}
.yc6{bottom:642.668514pt;}
.y31{bottom:645.213333pt;}
.y8b{bottom:645.228516pt;}
.y48{bottom:645.533333pt;}
.y2{bottom:648.427741pt;}
.yf5{bottom:650.828521pt;}
.y68{bottom:656.253333pt;}
.yc5{bottom:658.828527pt;}
.y125{bottom:663.468531pt;}
.yf4{bottom:667.148534pt;}
.y8a{bottom:669.388536pt;}
.yc4{bottom:675.148540pt;}
.y30{bottom:682.013333pt;}
.y47{bottom:682.333333pt;}
.y24{bottom:682.493333pt;}
.y88{bottom:682.828800pt;}
.y124{bottom:686.028549pt;}
.yc3{bottom:691.308553pt;}
.y67{bottom:691.933333pt;}
.yf3{bottom:707.468566pt;}
.y123{bottom:708.748567pt;}
.y87{bottom:709.708568pt;}
.yc2{bottom:715.468572pt;}
.y2f{bottom:718.813333pt;}
.y46{bottom:719.133333pt;}
.y23{bottom:719.293333pt;}
.y122{bottom:723.308579pt;}
.yf2{bottom:723.628579pt;}
.y66{bottom:727.773333pt;}
.yf{bottom:733.707200pt;}
.y86{bottom:734.028587pt;}
.ye{bottom:737.867705pt;}
.yc1{bottom:739.628592pt;}
.y121{bottom:745.868597pt;}
.yf1{bottom:747.948598pt;}
.y85{bottom:750.188600pt;}
.ybf{bottom:753.228800pt;}
.y2e{bottom:755.653333pt;}
.ybe{bottom:755.948605pt;}
.y45{bottom:755.973333pt;}
.y22{bottom:756.133333pt;}
.y120{bottom:760.428608pt;}
.y65{bottom:763.653333pt;}
.yf0{bottom:764.108611pt;}
.y84{bottom:766.348613pt;}
.yd{bottom:771.947691pt;}
.ybd{bottom:772.108618pt;}
.y11f{bottom:774.988620pt;}
.y6{bottom:777.067200pt;}
.yef{bottom:780.268624pt;}
.y83{bottom:782.508626pt;}
.ybc{bottom:788.268631pt;}
.y2d{bottom:792.453333pt;}
.y44{bottom:792.773333pt;}
.y21{bottom:792.933333pt;}
.yee{bottom:796.588637pt;}
.y11e{bottom:797.548638pt;}
.y64{bottom:799.493333pt;}
.ybb{bottom:804.588644pt;}
.y82{bottom:806.828645pt;}
.y11c{bottom:809.708800pt;}
.yed{bottom:812.748650pt;}
.yba{bottom:820.748657pt;}
.y81{bottom:822.988658pt;}
.y11b{bottom:826.828661pt;}
.yec{bottom:828.908663pt;}
.y2c{bottom:829.253333pt;}
.y43{bottom:829.573333pt;}
.y20{bottom:829.733333pt;}
.y63{bottom:835.333333pt;}
.y80{bottom:839.148671pt;}
.y11a{bottom:841.388673pt;}
.yb9{bottom:844.908676pt;}
.yeb{bottom:845.068676pt;}
.y7f{bottom:855.468684pt;}
.y119{bottom:855.948685pt;}
.yb7{bottom:865.868800pt;}
.y5d{bottom:866.053333pt;}
.y2b{bottom:866.373333pt;}
.y1f{bottom:866.533333pt;}
.yb6{bottom:869.068695pt;}
.yea{bottom:869.388696pt;}
.y62{bottom:871.013333pt;}
.y7e{bottom:871.628697pt;}
.y118{bottom:872.108698pt;}
.yb5{bottom:885.388708pt;}
.ye9{bottom:893.548715pt;}
.y7d{bottom:895.788717pt;}
.yb4{bottom:901.548721pt;}
.y42{bottom:902.853333pt;}
.y2a{bottom:903.173333pt;}
.y1e{bottom:903.333333pt;}
.y61{bottom:906.853333pt;}
.y7b{bottom:909.228800pt;}
.ye8{bottom:909.708728pt;}
.yb3{bottom:917.708734pt;}
.ye7{bottom:925.868741pt;}
.y7a{bottom:928.268743pt;}
.y117{bottom:933.708747pt;}
.y29{bottom:939.653333pt;}
.y4d{bottom:939.973333pt;}
.y1d{bottom:940.133333pt;}
.yb2{bottom:941.868753pt;}
.y60{bottom:942.693333pt;}
.y116{bottom:948.268759pt;}
.ye6{bottom:950.188760pt;}
.y79{bottom:953.708763pt;}
.yb1{bottom:958.188767pt;}
.ye5{bottom:966.348773pt;}
.y115{bottom:970.828777pt;}
.yb0{bottom:974.348779pt;}
.y5c{bottom:976.453333pt;}
.y28{bottom:976.773333pt;}
.y1c{bottom:976.933333pt;}
.y5f{bottom:978.533333pt;}
.yaf{bottom:990.508792pt;}
.y114{bottom:993.388795pt;}
.y78{bottom:1009.708808pt;}
.y27{bottom:1013.280000pt;}
.y1b{bottom:1013.440000pt;}
.y58{bottom:1013.600000pt;}
.y5e{bottom:1014.400000pt;}
.yae{bottom:1014.828812pt;}
.y113{bottom:1016.108813pt;}
.y41{bottom:1043.680000pt;}
.y40{bottom:1061.600000pt;}
.y1{bottom:1061.707575pt;}
.yad{bottom:1099.026667pt;}
.h5{height:13.760000pt;}
.h1b{height:14.560000pt;}
.h7{height:14.880000pt;}
.h19{height:15.040000pt;}
.h16{height:16.000000pt;}
.h4{height:20.960000pt;}
.h6{height:34.751986pt;}
.ha{height:35.567986pt;}
.h1{height:39.243734pt;}
.h1a{height:39.281281pt;}
.h11{height:40.221250pt;}
.he{height:40.307500pt;}
.h15{height:43.471285pt;}
.h9{height:44.927982pt;}
.h2{height:47.423981pt;}
.h17{height:52.134417pt;}
.h18{height:52.343750pt;}
.h3{height:55.486058pt;}
.h8{height:59.903976pt;}
.h13{height:61.278799pt;}
.hf{height:62.781250pt;}
.hd{height:62.812500pt;}
.h14{height:62.812550pt;}
.hc{height:64.500000pt;}
.h10{height:66.625000pt;}
.h12{height:72.655000pt;}
.hb{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w14{width:2.720000pt;}
.w8{width:3.360000pt;}
.w5{width:6.560000pt;}
.w3{width:6.720000pt;}
.wa{width:8.640000pt;}
.w1{width:9.440000pt;}
.wb{width:9.600000pt;}
.w6{width:10.720000pt;}
.w2{width:13.440000pt;}
.w9{width:20.000000pt;}
.w4{width:23.360000pt;}
.wc{width:25.440000pt;}
.w7{width:28.800000pt;}
.w12{width:76.480000pt;}
.w16{width:349.920000pt;}
.w15{width:411.040000pt;}
.w13{width:427.200000pt;}
.w11{width:438.080000pt;}
.w10{width:600.000000pt;}
.w0{width:793.333333pt;}
.wd{width:793.600000pt;}
.we{width:793.760000pt;}
.wf{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:74.239304pt;}
.x17{left:94.592000pt;}
.x1{left:113.439288pt;}
.x24{left:117.600094pt;}
.x28{left:147.200118pt;}
.x22{left:149.120119pt;}
.x25{left:174.240139pt;}
.x23{left:271.840217pt;}
.x1b{left:275.360000pt;}
.x1d{left:286.240000pt;}
.x21{left:302.400000pt;}
.x27{left:308.320247pt;}
.x15{left:341.599863pt;}
.x1a{left:363.586667pt;}
.x19{left:396.866667pt;}
.x13{left:436.960140pt;}
.x14{left:458.400141pt;}
.x10{left:489.439804pt;}
.x2{left:490.559804pt;}
.x26{left:503.680403pt;}
.x12{left:628.159456pt;}
.x1c{left:636.960000pt;}
.xb{left:657.920000pt;}
.x5{left:666.560000pt;}
.xc{left:668.640000pt;}
.x1e{left:676.053333pt;}
.x6{left:680.000000pt;}
.x7{left:686.720000pt;}
.x16{left:691.973333pt;}
.x8{left:693.440000pt;}
.xd{left:697.440000pt;}
.x18{left:699.333333pt;}
.xe{left:700.800000pt;}
.x20{left:706.720000pt;}
.x1f{left:710.720000pt;}
.x9{left:716.800000pt;}
.xf{left:720.800000pt;}
.xa{left:723.360000pt;}
.x4{left:727.040000pt;}
.x11{left:738.399398pt;}
}




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