
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_163509120c024e1226530de2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_25b6cb281a2132e473ea1eb1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943848;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_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_300282996a2b51b26428873a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_2128e1795d227adc7ed260c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_a4d6e8bf5fd3710266d86ec1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_af5e965703ab56ba6c0e4e4b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_80a933576911eb399a8c5230.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_16b0fe30d249095e5f620651.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_625abd914e3050ac31d754d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_48f6509d1d093a9110c7e70d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927734;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_17c42fb8fb4b838371440542.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.952148;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_f2d9827db1900f67663caa9c.woff2')format("woff");}.fff{font-family:fff;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6d2ff060cdb7a040c45d6651.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.747070;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_0d5eaa709ccc5565036422a6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.972656;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_1b3bb62dfba67b56e2ec0286.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.972656;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.486000px;}
.ls24{letter-spacing:-0.432000px;}
.ls2e{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.342000px;}
.lsf{letter-spacing:-0.331200px;}
.ls1a{letter-spacing:-0.324000px;}
.ls1c{letter-spacing:-0.306000px;}
.ls1e{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.234000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls13{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.099600px;}
.ls8{letter-spacing:-0.091200px;}
.ls20{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.036000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.031680px;}
.ls29{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.162000px;}
.ls25{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.198000px;}
.ls28{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.234000px;}
.lsb{letter-spacing:0.234600px;}
.ls1{letter-spacing:0.234720px;}
.ls30{letter-spacing:0.252000px;}
.ls26{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.331200px;}
.ls2d{letter-spacing:0.342000px;}
.ls0{letter-spacing:0.354720px;}
.ls3{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.450000px;}
.ls11{letter-spacing:0.486000px;}
.ls12{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.810000px;}
.ls4{letter-spacing:0.900000px;}
.ls16{letter-spacing:10.764000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws4{word-spacing:-19.152000px;}
.ws3{word-spacing:-19.008000px;}
.ws8{word-spacing:-18.954000px;}
.ws7{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.824960px;}
.ws23{word-spacing:-14.058000px;}
.ws27{word-spacing:-14.040000px;}
.ws1b{word-spacing:-13.986000px;}
.ws1c{word-spacing:-13.950000px;}
.ws29{word-spacing:-13.914000px;}
.ws1a{word-spacing:-13.896000px;}
.ws21{word-spacing:-13.878000px;}
.wse{word-spacing:-13.824000px;}
.ws1f{word-spacing:-13.770000px;}
.ws17{word-spacing:-13.716000px;}
.ws19{word-spacing:-13.662000px;}
.ws1e{word-spacing:-13.608000px;}
.ws10{word-spacing:-13.464000px;}
.ws18{word-spacing:-13.392000px;}
.ws20{word-spacing:-13.374000px;}
.ws25{word-spacing:-13.338000px;}
.ws26{word-spacing:-13.302000px;}
.ws28{word-spacing:-13.266000px;}
.ws1d{word-spacing:-13.230000px;}
.wsc{word-spacing:-13.104000px;}
.wsb{word-spacing:-13.032000px;}
.wsa{word-spacing:-13.014000px;}
.ws24{word-spacing:-12.978000px;}
.wsd{word-spacing:-12.960000px;}
.ws16{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.816000px;}
.ws22{word-spacing:-12.744000px;}
.ws15{word-spacing:-12.726000px;}
.ws13{word-spacing:-12.708000px;}
.ws11{word-spacing:-12.690000px;}
.ws14{word-spacing:-11.526240px;}
.ws5{word-spacing:-10.576680px;}
.ws2{word-spacing:-10.342080px;}
.wsf{word-spacing:-8.676000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._3{width:1.053360px;}
._7{width:2.767200px;}
._a{width:4.148640px;}
._8{width:5.933520px;}
._9{width:7.920720px;}
._2{width:9.767520px;}
._4{width:10.820880px;}
._5{width:11.976480px;}
._17{width:14.364000px;}
._b{width:16.146000px;}
._c{width:18.138000px;}
._1d{width:19.310640px;}
._14{width:20.358000px;}
._18{width:21.869280px;}
._16{width:22.896000px;}
._12{width:24.870000px;}
._13{width:26.124000px;}
._f{width:27.486000px;}
._23{width:28.566000px;}
._19{width:29.592000px;}
._15{width:31.212000px;}
._10{width:32.364000px;}
._24{width:33.468480px;}
._11{width:34.560000px;}
._21{width:35.586000px;}
._e{width:37.314000px;}
._d{width:38.973600px;}
._6{width:40.032000px;}
._1c{width:43.956000px;}
._1b{width:45.036000px;}
._1e{width:46.097280px;}
._20{width:47.466000px;}
._29{width:48.816000px;}
._27{width:50.004000px;}
._28{width:51.084000px;}
._1f{width:54.756000px;}
._26{width:56.268000px;}
._22{width:59.670000px;}
._2a{width:69.228000px;}
._2b{width:70.362000px;}
._25{width:82.512000px;}
._1a{width:108.054000px;}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs8{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y42{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y24{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y2b{bottom:3.600000px;}
.y20{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y80{bottom:4.680000px;}
.y29{bottom:4.860000px;}
.y84{bottom:5.040000px;}
.yc3{bottom:5.400000px;}
.ybe{bottom:5.580000px;}
.y91{bottom:6.120000px;}
.ya3{bottom:6.165000px;}
.y94{bottom:6.300000px;}
.y9f{bottom:6.336000px;}
.ya7{bottom:6.840000px;}
.y41{bottom:9.000000px;}
.y3a{bottom:9.720000px;}
.y22{bottom:10.980000px;}
.ycd{bottom:11.520000px;}
.y26{bottom:14.940000px;}
.y27{bottom:15.120000px;}
.y15{bottom:15.300000px;}
.y3c{bottom:16.380000px;}
.yf{bottom:19.980000px;}
.y1e{bottom:21.090000px;}
.y39{bottom:30.060000px;}
.y40{bottom:30.240000px;}
.y14{bottom:45.720000px;}
.y38{bottom:50.580000px;}
.y3f{bottom:51.660000px;}
.y1d{bottom:51.690000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y37{bottom:71.100000px;}
.y2{bottom:74.520000px;}
.y3e{bottom:75.810000px;}
.y13{bottom:76.365000px;}
.ya{bottom:80.460000px;}
.y1c{bottom:82.470000px;}
.y9{bottom:91.440000px;}
.y1b{bottom:107.130000px;}
.y36{bottom:111.960000px;}
.y7d{bottom:113.220000px;}
.yf6{bottom:113.940000px;}
.ye5{bottom:115.560000px;}
.ye1{bottom:116.100000px;}
.yca{bottom:117.360000px;}
.ya0{bottom:121.860000px;}
.y70{bottom:130.320000px;}
.y35{bottom:132.300000px;}
.y7c{bottom:136.260000px;}
.yf5{bottom:136.980000px;}
.ye4{bottom:138.600000px;}
.ye0{bottom:139.140000px;}
.yc9{bottom:140.400000px;}
.y9e{bottom:141.300000px;}
.y1a{bottom:143.670000px;}
.y34{bottom:152.820000px;}
.y6f{bottom:153.210000px;}
.y7b{bottom:159.330000px;}
.yf4{bottom:160.050000px;}
.y9d{bottom:160.950000px;}
.ydf{bottom:162.030000px;}
.yc8{bottom:163.470000px;}
.y33{bottom:173.340000px;}
.y19{bottom:174.270000px;}
.y3b{bottom:175.710000px;}
.y6e{bottom:176.250000px;}
.y9c{bottom:180.390000px;}
.y7a{bottom:182.370000px;}
.yf3{bottom:182.910000px;}
.yde{bottom:185.070000px;}
.yc7{bottom:186.510000px;}
.y32{bottom:193.725000px;}
.y6d{bottom:199.290000px;}
.y9b{bottom:200.010000px;}
.y2d{bottom:201.630000px;}
.y79{bottom:205.230000px;}
.yf2{bottom:205.950000px;}
.yc6{bottom:209.370000px;}
.y31{bottom:214.245000px;}
.y9a{bottom:219.450000px;}
.y6c{bottom:222.330000px;}
.y78{bottom:228.270000px;}
.yf1{bottom:228.990000px;}
.ydd{bottom:231.150000px;}
.yc5{bottom:232.410000px;}
.y30{bottom:234.765000px;}
.y99{bottom:239.070000px;}
.y6b{bottom:245.370000px;}
.y77{bottom:251.310000px;}
.yf0{bottom:252.030000px;}
.y2f{bottom:255.105000px;}
.yc4{bottom:255.450000px;}
.y98{bottom:258.510000px;}
.y6a{bottom:268.410000px;}
.yc2{bottom:269.850000px;}
.y76{bottom:274.350000px;}
.yef{bottom:275.070000px;}
.y2e{bottom:275.625000px;}
.y97{bottom:278.130000px;}
.yc1{bottom:287.310000px;}
.y69{bottom:291.270000px;}
.y75{bottom:297.390000px;}
.y96{bottom:297.570000px;}
.yee{bottom:298.110000px;}
.yc0{bottom:304.770000px;}
.y68{bottom:314.310000px;}
.y95{bottom:317.190000px;}
.y74{bottom:320.430000px;}
.yed{bottom:320.970000px;}
.ybf{bottom:322.230000px;}
.y93{bottom:336.630000px;}
.y67{bottom:337.350000px;}
.ybd{bottom:340.770000px;}
.yec{bottom:344.010000px;}
.y92{bottom:356.250000px;}
.y66{bottom:360.390000px;}
.y73{bottom:366.330000px;}
.yeb{bottom:367.050000px;}
.ybc{bottom:370.470000px;}
.y90{bottom:376.950000px;}
.y65{bottom:383.430000px;}
.y72{bottom:389.370000px;}
.yea{bottom:390.090000px;}
.ybb{bottom:393.375000px;}
.y64{bottom:406.515000px;}
.y8f{bottom:408.495000px;}
.y71{bottom:412.455000px;}
.ye9{bottom:413.175000px;}
.yba{bottom:416.415000px;}
.y63{bottom:429.375000px;}
.y8e{bottom:431.535000px;}
.ye8{bottom:436.215000px;}
.yb9{bottom:439.455000px;}
.y62{bottom:452.415000px;}
.y8d{bottom:454.575000px;}
.ye7{bottom:459.075000px;}
.yb8{bottom:462.495000px;}
.y61{bottom:475.455000px;}
.y8c{bottom:477.615000px;}
.yb7{bottom:485.535000px;}
.y2c{bottom:488.055000px;}
.y60{bottom:498.495000px;}
.y8b{bottom:500.655000px;}
.y2a{bottom:503.355000px;}
.ye6{bottom:505.155000px;}
.yb6{bottom:508.575000px;}
.y5f{bottom:521.535000px;}
.y28{bottom:522.075000px;}
.y8a{bottom:523.515000px;}
.yb5{bottom:531.435000px;}
.y25{bottom:542.055000px;}
.y5e{bottom:544.575000px;}
.y89{bottom:546.555000px;}
.yb4{bottom:554.475000px;}
.y5d{bottom:567.435000px;}
.y88{bottom:569.595000px;}
.y23{bottom:572.115000px;}
.yb3{bottom:577.515000px;}
.y21{bottom:585.435000px;}
.y5c{bottom:590.475000px;}
.y87{bottom:592.635000px;}
.yb2{bottom:600.555000px;}
.ye3{bottom:607.035000px;}
.y1f{bottom:608.475000px;}
.y5b{bottom:613.515000px;}
.y86{bottom:615.675000px;}
.yb1{bottom:623.595000px;}
.y18{bottom:625.395000px;}
.y85{bottom:629.895000px;}
.ye2{bottom:630.075000px;}
.y5a{bottom:636.555000px;}
.yb0{bottom:646.485000px;}
.y83{bottom:648.105000px;}
.y59{bottom:659.625000px;}
.y82{bottom:666.465000px;}
.yaf{bottom:669.525000px;}
.y58{bottom:682.485000px;}
.y81{bottom:684.465000px;}
.yae{bottom:692.565000px;}
.y7f{bottom:702.465000px;}
.y57{bottom:705.525000px;}
.yad{bottom:706.965000px;}
.ydc{bottom:710.745000px;}
.y7e{bottom:721.545000px;}
.yac{bottom:726.405000px;}
.y56{bottom:728.565000px;}
.ydb{bottom:733.785000px;}
.yab{bottom:746.025000px;}
.y55{bottom:751.605000px;}
.yda{bottom:756.825000px;}
.yaa{bottom:765.465000px;}
.y54{bottom:774.645000px;}
.yd9{bottom:779.865000px;}
.ya9{bottom:785.085000px;}
.y53{bottom:797.685000px;}
.yd8{bottom:802.725000px;}
.ya8{bottom:804.525000px;}
.y16{bottom:809.205000px;}
.y52{bottom:820.545000px;}
.y12{bottom:823.785000px;}
.ya6{bottom:824.145000px;}
.yd7{bottom:825.765000px;}
.y51{bottom:843.585000px;}
.ya5{bottom:844.305000px;}
.yd6{bottom:848.805000px;}
.ya4{bottom:863.925000px;}
.y50{bottom:866.625000px;}
.yd5{bottom:871.845000px;}
.ya2{bottom:883.365000px;}
.y4f{bottom:889.710000px;}
.yd4{bottom:894.930000px;}
.ya1{bottom:904.110000px;}
.y4e{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.yd3{bottom:917.970000px;}
.yd{bottom:929.130000px;}
.yd2{bottom:932.190000px;}
.y4d{bottom:935.790000px;}
.yd1{bottom:957.030000px;}
.y4c{bottom:958.650000px;}
.y4b{bottom:981.690000px;}
.y4a{bottom:1004.730000px;}
.yd0{bottom:1006.530000px;}
.yc{bottom:1013.370000px;}
.y49{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.ycf{bottom:1031.190000px;}
.y8{bottom:1046.850000px;}
.y48{bottom:1050.810000px;}
.yce{bottom:1056.030000px;}
.y3d{bottom:1065.210000px;}
.y47{bottom:1073.850000px;}
.ycc{bottom:1080.690000px;}
.y46{bottom:1096.710000px;}
.ycb{bottom:1106.610000px;}
.y45{bottom:1119.750000px;}
.y44{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y43{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1c{height:13.320000px;}
.h10{height:13.680000px;}
.h14{height:14.580000px;}
.h23{height:15.300000px;}
.h38{height:16.200000px;}
.h37{height:16.380000px;}
.h2f{height:16.740000px;}
.h18{height:16.920000px;}
.h30{height:17.100000px;}
.h31{height:17.136000px;}
.h33{height:18.360000px;}
.h32{height:18.396000px;}
.h34{height:18.540000px;}
.h35{height:18.576000px;}
.h21{height:18.720000px;}
.h36{height:19.080000px;}
.h20{height:19.980000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h1a{height:23.040000px;}
.h39{height:23.580000px;}
.h17{height:25.001719px;}
.h27{height:25.920000px;}
.h28{height:29.145586px;}
.h1e{height:30.060000px;}
.h11{height:32.670352px;}
.h1d{height:33.588984px;}
.h15{height:36.886641px;}
.h19{height:40.472227px;}
.h2e{height:40.816406px;}
.h24{height:40.842773px;}
.h2b{height:41.291016px;}
.h26{height:44.000156px;}
.h13{height:48.761719px;}
.h2d{height:49.253906px;}
.h22{height:50.100469px;}
.h1f{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h1b{height:54.507656px;}
.h2a{height:55.054688px;}
.h2c{height:55.209375px;}
.h6{height:57.051211px;}
.he{height:64.853086px;}
.hf{height:68.360471px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.540000px;}
.h7{height:84.898125px;}
.h12{height:91.656000px;}
.h29{height:93.816000px;}
.h8{height:108.036000px;}
.h16{height:183.810000px;}
.h25{height:286.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:44.100000px;}
.w2{width:45.540000px;}
.w13{width:48.240000px;}
.w10{width:49.176000px;}
.w12{width:50.940000px;}
.w14{width:52.596000px;}
.wd{width:54.036000px;}
.we{width:56.520000px;}
.wf{width:63.000000px;}
.w15{width:63.720000px;}
.w16{width:64.440000px;}
.w6{width:76.680000px;}
.w1a{width:102.420000px;}
.w26{width:103.320000px;}
.w19{width:112.860000px;}
.w18{width:112.896000px;}
.w24{width:113.580000px;}
.w25{width:113.616000px;}
.w23{width:113.796000px;}
.w5{width:124.020000px;}
.w1d{width:124.380000px;}
.w1c{width:126.756000px;}
.wc{width:128.340000px;}
.w1e{width:128.520000px;}
.w21{width:128.880000px;}
.w20{width:139.176000px;}
.w1f{width:139.356000px;}
.w22{width:230.790000px;}
.w17{width:234.030000px;}
.w1b{width:297.210000px;}
.wa{width:332.130000px;}
.w9{width:356.475000px;}
.wb{width:464.475000px;}
.w4{width:551.805000px;}
.w7{width:616.470000px;}
.w3{width:628.305000px;}
.w8{width:688.605000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.480000px;}
.x9{left:8.100000px;}
.x1e{left:9.360000px;}
.x5{left:10.800000px;}
.x2{left:12.060000px;}
.x19{left:13.680000px;}
.x27{left:15.300000px;}
.x11{left:16.740000px;}
.x28{left:18.540000px;}
.x23{left:19.980000px;}
.x25{left:21.600000px;}
.x54{left:23.940000px;}
.x2e{left:25.560000px;}
.x52{left:28.980000px;}
.x50{left:30.060000px;}
.x2b{left:31.680000px;}
.x30{left:34.200000px;}
.x37{left:35.280000px;}
.x2f{left:37.080000px;}
.x33{left:38.520000px;}
.x7{left:39.780000px;}
.x4d{left:41.760000px;}
.x45{left:43.020000px;}
.x29{left:45.174000px;}
.x26{left:47.154000px;}
.x3b{left:48.594000px;}
.x31{left:50.394000px;}
.x3e{left:52.050000px;}
.x4e{left:54.405000px;}
.x4b{left:56.925000px;}
.x17{left:64.074000px;}
.x55{left:65.514000px;}
.x34{left:67.134000px;}
.x4c{left:69.330000px;}
.xf{left:70.560000px;}
.x57{left:73.254000px;}
.x36{left:74.694000px;}
.x38{left:76.494000px;}
.x56{left:79.194000px;}
.x35{left:80.634000px;}
.x42{left:82.074000px;}
.x39{left:83.874000px;}
.x32{left:85.854000px;}
.x3a{left:89.634000px;}
.x41{left:96.474000px;}
.x44{left:98.634000px;}
.x8{left:100.116000px;}
.xb{left:101.376000px;}
.x12{left:105.300000px;}
.x47{left:106.374000px;}
.x1{left:108.036000px;}
.x46{left:112.314000px;}
.x48{left:115.554000px;}
.x43{left:117.534000px;}
.x3c{left:131.034000px;}
.x3{left:156.990000px;}
.xa{left:176.790000px;}
.x14{left:211.170000px;}
.x18{left:236.370000px;}
.x13{left:263.910000px;}
.x1a{left:290.415000px;}
.xc{left:326.379000px;}
.x4f{left:338.835000px;}
.x2a{left:342.075000px;}
.x1b{left:346.935000px;}
.x49{left:375.915000px;}
.x3d{left:405.255000px;}
.x1c{left:409.935000px;}
.x51{left:452.625000px;}
.x15{left:453.855000px;}
.x2c{left:454.965000px;}
.xe{left:457.845000px;}
.x1d{left:459.105000px;}
.x16{left:462.705000px;}
.x1f{left:503.205000px;}
.xd{left:509.289000px;}
.x4a{left:515.085000px;}
.x3f{left:532.005000px;}
.x20{left:554.145000px;}
.x53{left:566.205000px;}
.x2d{left:567.825000px;}
.x21{left:602.385000px;}
.x22{left:654.990000px;}
.x40{left:658.770000px;}
.x6{left:661.650000px;}
.x10{left:680.334000px;}
.x24{left:718.710000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.432000pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls2e{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.304000pt;}
.lsf{letter-spacing:-0.294400pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls1c{letter-spacing:-0.272000pt;}
.ls1e{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.208000pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls13{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.088533pt;}
.ls8{letter-spacing:-0.081067pt;}
.ls20{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.028160pt;}
.ls29{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.144000pt;}
.ls25{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.176000pt;}
.ls28{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.208000pt;}
.lsb{letter-spacing:0.208533pt;}
.ls1{letter-spacing:0.208640pt;}
.ls30{letter-spacing:0.224000pt;}
.ls26{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.294400pt;}
.ls2d{letter-spacing:0.304000pt;}
.ls0{letter-spacing:0.315307pt;}
.ls3{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.400000pt;}
.ls11{letter-spacing:0.432000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.720000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls16{letter-spacing:9.568000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws4{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.896000pt;}
.ws8{word-spacing:-16.848000pt;}
.ws7{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.955520pt;}
.ws23{word-spacing:-12.496000pt;}
.ws27{word-spacing:-12.480000pt;}
.ws1b{word-spacing:-12.432000pt;}
.ws1c{word-spacing:-12.400000pt;}
.ws29{word-spacing:-12.368000pt;}
.ws1a{word-spacing:-12.352000pt;}
.ws21{word-spacing:-12.336000pt;}
.wse{word-spacing:-12.288000pt;}
.ws1f{word-spacing:-12.240000pt;}
.ws17{word-spacing:-12.192000pt;}
.ws19{word-spacing:-12.144000pt;}
.ws1e{word-spacing:-12.096000pt;}
.ws10{word-spacing:-11.968000pt;}
.ws18{word-spacing:-11.904000pt;}
.ws20{word-spacing:-11.888000pt;}
.ws25{word-spacing:-11.856000pt;}
.ws26{word-spacing:-11.824000pt;}
.ws28{word-spacing:-11.792000pt;}
.ws1d{word-spacing:-11.760000pt;}
.wsc{word-spacing:-11.648000pt;}
.wsb{word-spacing:-11.584000pt;}
.wsa{word-spacing:-11.568000pt;}
.ws24{word-spacing:-11.536000pt;}
.wsd{word-spacing:-11.520000pt;}
.ws16{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.392000pt;}
.ws22{word-spacing:-11.328000pt;}
.ws15{word-spacing:-11.312000pt;}
.ws13{word-spacing:-11.296000pt;}
.ws11{word-spacing:-11.280000pt;}
.ws14{word-spacing:-10.245547pt;}
.ws5{word-spacing:-9.401493pt;}
.ws2{word-spacing:-9.192960pt;}
.wsf{word-spacing:-7.712000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._3{width:0.936320pt;}
._7{width:2.459733pt;}
._a{width:3.687680pt;}
._8{width:5.274240pt;}
._9{width:7.040640pt;}
._2{width:8.682240pt;}
._4{width:9.618560pt;}
._5{width:10.645760pt;}
._17{width:12.768000pt;}
._b{width:14.352000pt;}
._c{width:16.122667pt;}
._1d{width:17.165013pt;}
._14{width:18.096000pt;}
._18{width:19.439360pt;}
._16{width:20.352000pt;}
._12{width:22.106667pt;}
._13{width:23.221333pt;}
._f{width:24.432000pt;}
._23{width:25.392000pt;}
._19{width:26.304000pt;}
._15{width:27.744000pt;}
._10{width:28.768000pt;}
._24{width:29.749760pt;}
._11{width:30.720000pt;}
._21{width:31.632000pt;}
._e{width:33.168000pt;}
._d{width:34.643200pt;}
._6{width:35.584000pt;}
._1c{width:39.072000pt;}
._1b{width:40.032000pt;}
._1e{width:40.975360pt;}
._20{width:42.192000pt;}
._29{width:43.392000pt;}
._27{width:44.448000pt;}
._28{width:45.408000pt;}
._1f{width:48.672000pt;}
._26{width:50.016000pt;}
._22{width:53.040000pt;}
._2a{width:61.536000pt;}
._2b{width:62.544000pt;}
._25{width:73.344000pt;}
._1a{width:96.048000pt;}
.fs3{font-size:10.880000pt;}
.fs8{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y42{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y24{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y2b{bottom:3.200000pt;}
.y20{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y80{bottom:4.160000pt;}
.y29{bottom:4.320000pt;}
.y84{bottom:4.480000pt;}
.yc3{bottom:4.800000pt;}
.ybe{bottom:4.960000pt;}
.y91{bottom:5.440000pt;}
.ya3{bottom:5.480000pt;}
.y94{bottom:5.600000pt;}
.y9f{bottom:5.632000pt;}
.ya7{bottom:6.080000pt;}
.y41{bottom:8.000000pt;}
.y3a{bottom:8.640000pt;}
.y22{bottom:9.760000pt;}
.ycd{bottom:10.240000pt;}
.y26{bottom:13.280000pt;}
.y27{bottom:13.440000pt;}
.y15{bottom:13.600000pt;}
.y3c{bottom:14.560000pt;}
.yf{bottom:17.760000pt;}
.y1e{bottom:18.746667pt;}
.y39{bottom:26.720000pt;}
.y40{bottom:26.880000pt;}
.y14{bottom:40.640000pt;}
.y38{bottom:44.960000pt;}
.y3f{bottom:45.920000pt;}
.y1d{bottom:45.946667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y37{bottom:63.200000pt;}
.y2{bottom:66.240000pt;}
.y3e{bottom:67.386667pt;}
.y13{bottom:67.880000pt;}
.ya{bottom:71.520000pt;}
.y1c{bottom:73.306667pt;}
.y9{bottom:81.280000pt;}
.y1b{bottom:95.226667pt;}
.y36{bottom:99.520000pt;}
.y7d{bottom:100.640000pt;}
.yf6{bottom:101.280000pt;}
.ye5{bottom:102.720000pt;}
.ye1{bottom:103.200000pt;}
.yca{bottom:104.320000pt;}
.ya0{bottom:108.320000pt;}
.y70{bottom:115.840000pt;}
.y35{bottom:117.600000pt;}
.y7c{bottom:121.120000pt;}
.yf5{bottom:121.760000pt;}
.ye4{bottom:123.200000pt;}
.ye0{bottom:123.680000pt;}
.yc9{bottom:124.800000pt;}
.y9e{bottom:125.600000pt;}
.y1a{bottom:127.706667pt;}
.y34{bottom:135.840000pt;}
.y6f{bottom:136.186667pt;}
.y7b{bottom:141.626667pt;}
.yf4{bottom:142.266667pt;}
.y9d{bottom:143.066667pt;}
.ydf{bottom:144.026667pt;}
.yc8{bottom:145.306667pt;}
.y33{bottom:154.080000pt;}
.y19{bottom:154.906667pt;}
.y3b{bottom:156.186667pt;}
.y6e{bottom:156.666667pt;}
.y9c{bottom:160.346667pt;}
.y7a{bottom:162.106667pt;}
.yf3{bottom:162.586667pt;}
.yde{bottom:164.506667pt;}
.yc7{bottom:165.786667pt;}
.y32{bottom:172.200000pt;}
.y6d{bottom:177.146667pt;}
.y9b{bottom:177.786667pt;}
.y2d{bottom:179.226667pt;}
.y79{bottom:182.426667pt;}
.yf2{bottom:183.066667pt;}
.yc6{bottom:186.106667pt;}
.y31{bottom:190.440000pt;}
.y9a{bottom:195.066667pt;}
.y6c{bottom:197.626667pt;}
.y78{bottom:202.906667pt;}
.yf1{bottom:203.546667pt;}
.ydd{bottom:205.466667pt;}
.yc5{bottom:206.586667pt;}
.y30{bottom:208.680000pt;}
.y99{bottom:212.506667pt;}
.y6b{bottom:218.106667pt;}
.y77{bottom:223.386667pt;}
.yf0{bottom:224.026667pt;}
.y2f{bottom:226.760000pt;}
.yc4{bottom:227.066667pt;}
.y98{bottom:229.786667pt;}
.y6a{bottom:238.586667pt;}
.yc2{bottom:239.866667pt;}
.y76{bottom:243.866667pt;}
.yef{bottom:244.506667pt;}
.y2e{bottom:245.000000pt;}
.y97{bottom:247.226667pt;}
.yc1{bottom:255.386667pt;}
.y69{bottom:258.906667pt;}
.y75{bottom:264.346667pt;}
.y96{bottom:264.506667pt;}
.yee{bottom:264.986667pt;}
.yc0{bottom:270.906667pt;}
.y68{bottom:279.386667pt;}
.y95{bottom:281.946667pt;}
.y74{bottom:284.826667pt;}
.yed{bottom:285.306667pt;}
.ybf{bottom:286.426667pt;}
.y93{bottom:299.226667pt;}
.y67{bottom:299.866667pt;}
.ybd{bottom:302.906667pt;}
.yec{bottom:305.786667pt;}
.y92{bottom:316.666667pt;}
.y66{bottom:320.346667pt;}
.y73{bottom:325.626667pt;}
.yeb{bottom:326.266667pt;}
.ybc{bottom:329.306667pt;}
.y90{bottom:335.066667pt;}
.y65{bottom:340.826667pt;}
.y72{bottom:346.106667pt;}
.yea{bottom:346.746667pt;}
.ybb{bottom:349.666667pt;}
.y64{bottom:361.346667pt;}
.y8f{bottom:363.106667pt;}
.y71{bottom:366.626667pt;}
.ye9{bottom:367.266667pt;}
.yba{bottom:370.146667pt;}
.y63{bottom:381.666667pt;}
.y8e{bottom:383.586667pt;}
.ye8{bottom:387.746667pt;}
.yb9{bottom:390.626667pt;}
.y62{bottom:402.146667pt;}
.y8d{bottom:404.066667pt;}
.ye7{bottom:408.066667pt;}
.yb8{bottom:411.106667pt;}
.y61{bottom:422.626667pt;}
.y8c{bottom:424.546667pt;}
.yb7{bottom:431.586667pt;}
.y2c{bottom:433.826667pt;}
.y60{bottom:443.106667pt;}
.y8b{bottom:445.026667pt;}
.y2a{bottom:447.426667pt;}
.ye6{bottom:449.026667pt;}
.yb6{bottom:452.066667pt;}
.y5f{bottom:463.586667pt;}
.y28{bottom:464.066667pt;}
.y8a{bottom:465.346667pt;}
.yb5{bottom:472.386667pt;}
.y25{bottom:481.826667pt;}
.y5e{bottom:484.066667pt;}
.y89{bottom:485.826667pt;}
.yb4{bottom:492.866667pt;}
.y5d{bottom:504.386667pt;}
.y88{bottom:506.306667pt;}
.y23{bottom:508.546667pt;}
.yb3{bottom:513.346667pt;}
.y21{bottom:520.386667pt;}
.y5c{bottom:524.866667pt;}
.y87{bottom:526.786667pt;}
.yb2{bottom:533.826667pt;}
.ye3{bottom:539.586667pt;}
.y1f{bottom:540.866667pt;}
.y5b{bottom:545.346667pt;}
.y86{bottom:547.266667pt;}
.yb1{bottom:554.306667pt;}
.y18{bottom:555.906667pt;}
.y85{bottom:559.906667pt;}
.ye2{bottom:560.066667pt;}
.y5a{bottom:565.826667pt;}
.yb0{bottom:574.653333pt;}
.y83{bottom:576.093333pt;}
.y59{bottom:586.333333pt;}
.y82{bottom:592.413333pt;}
.yaf{bottom:595.133333pt;}
.y58{bottom:606.653333pt;}
.y81{bottom:608.413333pt;}
.yae{bottom:615.613333pt;}
.y7f{bottom:624.413333pt;}
.y57{bottom:627.133333pt;}
.yad{bottom:628.413333pt;}
.ydc{bottom:631.773333pt;}
.y7e{bottom:641.373333pt;}
.yac{bottom:645.693333pt;}
.y56{bottom:647.613333pt;}
.ydb{bottom:652.253333pt;}
.yab{bottom:663.133333pt;}
.y55{bottom:668.093333pt;}
.yda{bottom:672.733333pt;}
.yaa{bottom:680.413333pt;}
.y54{bottom:688.573333pt;}
.yd9{bottom:693.213333pt;}
.ya9{bottom:697.853333pt;}
.y53{bottom:709.053333pt;}
.yd8{bottom:713.533333pt;}
.ya8{bottom:715.133333pt;}
.y16{bottom:719.293333pt;}
.y52{bottom:729.373333pt;}
.y12{bottom:732.253333pt;}
.ya6{bottom:732.573333pt;}
.yd7{bottom:734.013333pt;}
.y51{bottom:749.853333pt;}
.ya5{bottom:750.493333pt;}
.yd6{bottom:754.493333pt;}
.ya4{bottom:767.933333pt;}
.y50{bottom:770.333333pt;}
.yd5{bottom:774.973333pt;}
.ya2{bottom:785.213333pt;}
.y4f{bottom:790.853333pt;}
.yd4{bottom:795.493333pt;}
.ya1{bottom:803.653333pt;}
.y4e{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.yd3{bottom:815.973333pt;}
.yd{bottom:825.893333pt;}
.yd2{bottom:828.613333pt;}
.y4d{bottom:831.813333pt;}
.yd1{bottom:850.693333pt;}
.y4c{bottom:852.133333pt;}
.y4b{bottom:872.613333pt;}
.y4a{bottom:893.093333pt;}
.yd0{bottom:894.693333pt;}
.yc{bottom:900.773333pt;}
.y49{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.ycf{bottom:916.613333pt;}
.y8{bottom:930.533333pt;}
.y48{bottom:934.053333pt;}
.yce{bottom:938.693333pt;}
.y3d{bottom:946.853333pt;}
.y47{bottom:954.533333pt;}
.ycc{bottom:960.613333pt;}
.y46{bottom:974.853333pt;}
.ycb{bottom:983.653333pt;}
.y45{bottom:995.333333pt;}
.y44{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y43{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1c{height:11.840000pt;}
.h10{height:12.160000pt;}
.h14{height:12.960000pt;}
.h23{height:13.600000pt;}
.h38{height:14.400000pt;}
.h37{height:14.560000pt;}
.h2f{height:14.880000pt;}
.h18{height:15.040000pt;}
.h30{height:15.200000pt;}
.h31{height:15.232000pt;}
.h33{height:16.320000pt;}
.h32{height:16.352000pt;}
.h34{height:16.480000pt;}
.h35{height:16.512000pt;}
.h21{height:16.640000pt;}
.h36{height:16.960000pt;}
.h20{height:17.760000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h1a{height:20.480000pt;}
.h39{height:20.960000pt;}
.h17{height:22.223750pt;}
.h27{height:23.040000pt;}
.h28{height:25.907187pt;}
.h1e{height:26.720000pt;}
.h11{height:29.040312pt;}
.h1d{height:29.856875pt;}
.h15{height:32.788125pt;}
.h19{height:35.975313pt;}
.h2e{height:36.281250pt;}
.h24{height:36.304688pt;}
.h2b{height:36.703125pt;}
.h26{height:39.111250pt;}
.h13{height:43.343750pt;}
.h2d{height:43.781250pt;}
.h22{height:44.533750pt;}
.h1f{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h1b{height:48.451250pt;}
.h2a{height:48.937500pt;}
.h2c{height:49.075000pt;}
.h6{height:50.712187pt;}
.he{height:57.647187pt;}
.hf{height:60.764863pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.480000pt;}
.h7{height:75.465000pt;}
.h12{height:81.472000pt;}
.h29{height:83.392000pt;}
.h8{height:96.032000pt;}
.h16{height:163.386667pt;}
.h25{height:254.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:39.200000pt;}
.w2{width:40.480000pt;}
.w13{width:42.880000pt;}
.w10{width:43.712000pt;}
.w12{width:45.280000pt;}
.w14{width:46.752000pt;}
.wd{width:48.032000pt;}
.we{width:50.240000pt;}
.wf{width:56.000000pt;}
.w15{width:56.640000pt;}
.w16{width:57.280000pt;}
.w6{width:68.160000pt;}
.w1a{width:91.040000pt;}
.w26{width:91.840000pt;}
.w19{width:100.320000pt;}
.w18{width:100.352000pt;}
.w24{width:100.960000pt;}
.w25{width:100.992000pt;}
.w23{width:101.152000pt;}
.w5{width:110.240000pt;}
.w1d{width:110.560000pt;}
.w1c{width:112.672000pt;}
.wc{width:114.080000pt;}
.w1e{width:114.240000pt;}
.w21{width:114.560000pt;}
.w20{width:123.712000pt;}
.w1f{width:123.872000pt;}
.w22{width:205.146667pt;}
.w17{width:208.026667pt;}
.w1b{width:264.186667pt;}
.wa{width:295.226667pt;}
.w9{width:316.866667pt;}
.wb{width:412.866667pt;}
.w4{width:490.493333pt;}
.w7{width:547.973333pt;}
.w3{width:558.493333pt;}
.w8{width:612.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.760000pt;}
.x9{left:7.200000pt;}
.x1e{left:8.320000pt;}
.x5{left:9.600000pt;}
.x2{left:10.720000pt;}
.x19{left:12.160000pt;}
.x27{left:13.600000pt;}
.x11{left:14.880000pt;}
.x28{left:16.480000pt;}
.x23{left:17.760000pt;}
.x25{left:19.200000pt;}
.x54{left:21.280000pt;}
.x2e{left:22.720000pt;}
.x52{left:25.760000pt;}
.x50{left:26.720000pt;}
.x2b{left:28.160000pt;}
.x30{left:30.400000pt;}
.x37{left:31.360000pt;}
.x2f{left:32.960000pt;}
.x33{left:34.240000pt;}
.x7{left:35.360000pt;}
.x4d{left:37.120000pt;}
.x45{left:38.240000pt;}
.x29{left:40.154667pt;}
.x26{left:41.914667pt;}
.x3b{left:43.194667pt;}
.x31{left:44.794667pt;}
.x3e{left:46.266667pt;}
.x4e{left:48.360000pt;}
.x4b{left:50.600000pt;}
.x17{left:56.954667pt;}
.x55{left:58.234667pt;}
.x34{left:59.674667pt;}
.x4c{left:61.626667pt;}
.xf{left:62.720000pt;}
.x57{left:65.114667pt;}
.x36{left:66.394667pt;}
.x38{left:67.994667pt;}
.x56{left:70.394667pt;}
.x35{left:71.674667pt;}
.x42{left:72.954667pt;}
.x39{left:74.554667pt;}
.x32{left:76.314667pt;}
.x3a{left:79.674667pt;}
.x41{left:85.754667pt;}
.x44{left:87.674667pt;}
.x8{left:88.992000pt;}
.xb{left:90.112000pt;}
.x12{left:93.600000pt;}
.x47{left:94.554667pt;}
.x1{left:96.032000pt;}
.x46{left:99.834667pt;}
.x48{left:102.714667pt;}
.x43{left:104.474667pt;}
.x3c{left:116.474667pt;}
.x3{left:139.546667pt;}
.xa{left:157.146667pt;}
.x14{left:187.706667pt;}
.x18{left:210.106667pt;}
.x13{left:234.586667pt;}
.x1a{left:258.146667pt;}
.xc{left:290.114667pt;}
.x4f{left:301.186667pt;}
.x2a{left:304.066667pt;}
.x1b{left:308.386667pt;}
.x49{left:334.146667pt;}
.x3d{left:360.226667pt;}
.x1c{left:364.386667pt;}
.x51{left:402.333333pt;}
.x15{left:403.426667pt;}
.x2c{left:404.413333pt;}
.xe{left:406.973333pt;}
.x1d{left:408.093333pt;}
.x16{left:411.293333pt;}
.x1f{left:447.293333pt;}
.xd{left:452.701333pt;}
.x4a{left:457.853333pt;}
.x3f{left:472.893333pt;}
.x20{left:492.573333pt;}
.x53{left:503.293333pt;}
.x2d{left:504.733333pt;}
.x21{left:535.453333pt;}
.x22{left:582.213333pt;}
.x40{left:585.573333pt;}
.x6{left:588.133333pt;}
.x10{left:604.741333pt;}
.x24{left:638.853333pt;}
}




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