
    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_ed32c3115924012ef9102759.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_a2dbe86bad3b416ac2c50dca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_bbd9104d8c544b7780dbe9d9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4733531af7cba5f56d05ef4b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4815879776e8da2fd493d5fc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5eb606b39f850d76b9990adc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f1a9080989d288b73d107331.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_40a828037719d3c9643a7425.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7b57d273c378901ac3f1dae7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a2e03bb4f0d059ec347dae4d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_398f62f419bdd61fcab505b5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6ea4756b69736f3473359c38.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cb350be8e3bc9a2f5fe21537.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973633;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;}
.v4{vertical-align:-15.120000px;}
.v7{vertical-align:-12.240000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls26{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.326400px;}
.ls25{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.306000px;}
.ls27{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.234000px;}
.lsd{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.184800px;}
.ls12{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.126000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.091200px;}
.ls16{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.011520px;}
.ls3{letter-spacing:0.031680px;}
.lse{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.048960px;}
.ls21{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.057600px;}
.ls23{letter-spacing:0.090000px;}
.ls28{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.126000px;}
.ls19{letter-spacing:0.136800px;}
.lsf{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.234000px;}
.ls0{letter-spacing:0.234720px;}
.ls13{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.263400px;}
.ls24{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.306000px;}
.ls29{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.630000px;}
.ls10{letter-spacing:25.866000px;}
.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;}
}
.ws3{word-spacing:-25.529760px;}
.ws2{word-spacing:-25.472160px;}
.ws1{word-spacing:-22.316640px;}
.ws5{word-spacing:-19.152000px;}
.wsa{word-spacing:-18.252000px;}
.ws9{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.824960px;}
.ws26{word-spacing:-14.040000px;}
.ws2b{word-spacing:-14.022000px;}
.ws21{word-spacing:-13.950000px;}
.ws29{word-spacing:-13.914000px;}
.ws24{word-spacing:-13.896000px;}
.ws23{word-spacing:-13.824000px;}
.ws1e{word-spacing:-13.806000px;}
.ws2a{word-spacing:-13.770000px;}
.ws28{word-spacing:-13.752000px;}
.ws1c{word-spacing:-13.716000px;}
.ws27{word-spacing:-13.608000px;}
.ws11{word-spacing:-13.554000px;}
.ws1f{word-spacing:-13.302000px;}
.ws10{word-spacing:-13.266000px;}
.ws25{word-spacing:-13.230000px;}
.ws1d{word-spacing:-13.068000px;}
.wsc{word-spacing:-13.014000px;}
.ws13{word-spacing:-12.924000px;}
.ws1b{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.888000px;}
.wsf{word-spacing:-12.834000px;}
.ws22{word-spacing:-12.726000px;}
.ws8{word-spacing:-12.708000px;}
.ws20{word-spacing:-12.690000px;}
.ws1a{word-spacing:-11.889240px;}
.ws16{word-spacing:-11.762640px;}
.ws17{word-spacing:-11.674800px;}
.ws18{word-spacing:-11.637360px;}
.ws15{word-spacing:-11.441040px;}
.ws19{word-spacing:-11.299440px;}
.ws4{word-spacing:-10.342080px;}
.ws7{word-spacing:-8.676000px;}
.wse{word-spacing:-8.496000px;}
.wsd{word-spacing:-8.316000px;}
.ws14{word-spacing:-7.287840px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._3{width:1.376400px;}
._5{width:2.525520px;}
._7{width:3.970080px;}
._9{width:5.238000px;}
._a{width:6.264000px;}
._b{width:7.286400px;}
._c{width:8.456400px;}
._12{width:9.579600px;}
._15{width:10.962000px;}
._16{width:11.983200px;}
._8{width:14.904000px;}
._6{width:16.104000px;}
._13{width:17.916000px;}
._2{width:19.918080px;}
._4{width:21.450240px;}
._1e{width:23.382000px;}
._f{width:24.624000px;}
._d{width:26.460000px;}
._e{width:27.696000px;}
._20{width:28.779600px;}
._10{width:29.808000px;}
._11{width:30.861600px;}
._25{width:32.130000px;}
._26{width:33.318000px;}
._27{width:34.452000px;}
._2d{width:35.478000px;}
._14{width:36.936000px;}
._1b{width:38.448000px;}
._1a{width:40.392000px;}
._1f{width:41.850000px;}
._28{width:43.146000px;}
._17{width:44.388000px;}
._21{width:45.441600px;}
._1c{width:46.818000px;}
._1d{width:48.114000px;}
._24{width:49.356000px;}
._2c{width:51.258000px;}
._2e{width:53.568000px;}
._29{width:55.404000px;}
._2a{width:56.646000px;}
._22{width:57.780000px;}
._23{width:59.049600px;}
._18{width:61.074000px;}
._19{width:62.586000px;}
._30{width:65.124000px;}
._2f{width:68.580000px;}
._2b{width:73.656000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fse{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fsc{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;}
.fsd{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y40{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y18{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y23{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y2a{bottom:3.600000px;}
.y2c{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y28{bottom:4.860000px;}
.y3f{bottom:9.000000px;}
.y70{bottom:9.720000px;}
.y21{bottom:10.980000px;}
.y73{bottom:14.220000px;}
.y25{bottom:14.940000px;}
.y26{bottom:15.120000px;}
.y16{bottom:15.300000px;}
.y3a{bottom:16.380000px;}
.yf{bottom:19.980000px;}
.y1e{bottom:21.090000px;}
.y3e{bottom:30.240000px;}
.y38{bottom:34.020000px;}
.y15{bottom:45.900000px;}
.y3d{bottom:51.660000px;}
.y1d{bottom:51.690000px;}
.y37{bottom:57.060000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y3c{bottom:75.810000px;}
.y14{bottom:76.320000px;}
.y36{bottom:79.920000px;}
.ya{bottom:80.460000px;}
.y1c{bottom:82.290000px;}
.y9{bottom:91.440000px;}
.y35{bottom:102.960000px;}
.y13{bottom:106.965000px;}
.y1b{bottom:112.890000px;}
.y84{bottom:114.120000px;}
.y97{bottom:116.460000px;}
.y8e{bottom:124.920000px;}
.y34{bottom:126.000000px;}
.y6e{bottom:130.320000px;}
.y83{bottom:137.160000px;}
.y96{bottom:139.500000px;}
.y1a{bottom:143.490000px;}
.y8d{bottom:147.816000px;}
.y33{bottom:149.040000px;}
.y6d{bottom:153.210000px;}
.y82{bottom:160.230000px;}
.y95{bottom:162.570000px;}
.y8c{bottom:170.850000px;}
.y32{bottom:172.080000px;}
.y6c{bottom:176.250000px;}
.y81{bottom:183.090000px;}
.y94{bottom:185.430000px;}
.y39{bottom:185.970000px;}
.y8b{bottom:193.890000px;}
.y31{bottom:195.165000px;}
.y6b{bottom:199.290000px;}
.y93{bottom:208.470000px;}
.y2d{bottom:211.890000px;}
.y8a{bottom:216.930000px;}
.y30{bottom:218.025000px;}
.y6a{bottom:222.330000px;}
.y89{bottom:239.970000px;}
.y2f{bottom:241.065000px;}
.y69{bottom:245.370000px;}
.y92{bottom:254.550000px;}
.y88{bottom:262.830000px;}
.y2e{bottom:264.105000px;}
.y68{bottom:268.410000px;}
.y91{bottom:277.590000px;}
.y67{bottom:291.270000px;}
.y90{bottom:300.450000px;}
.y87{bottom:308.910000px;}
.y66{bottom:314.310000px;}
.y8f{bottom:323.490000px;}
.y86{bottom:331.950000px;}
.y65{bottom:337.350000px;}
.y85{bottom:354.990000px;}
.y64{bottom:360.390000px;}
.y63{bottom:383.430000px;}
.y62{bottom:406.515000px;}
.y61{bottom:429.375000px;}
.y60{bottom:452.415000px;}
.y5f{bottom:475.455000px;}
.y2b{bottom:488.055000px;}
.y5e{bottom:498.495000px;}
.y29{bottom:503.355000px;}
.y5d{bottom:521.535000px;}
.y27{bottom:522.075000px;}
.y24{bottom:542.055000px;}
.y5c{bottom:544.575000px;}
.y5b{bottom:567.435000px;}
.y22{bottom:572.115000px;}
.y20{bottom:585.435000px;}
.y5a{bottom:590.475000px;}
.y1f{bottom:608.475000px;}
.y59{bottom:613.515000px;}
.y19{bottom:625.575000px;}
.y58{bottom:636.555000px;}
.y57{bottom:659.625000px;}
.y56{bottom:682.485000px;}
.y55{bottom:705.525000px;}
.y54{bottom:728.565000px;}
.y53{bottom:751.605000px;}
.y98{bottom:755.385000px;}
.y80{bottom:769.965000px;}
.y52{bottom:774.645000px;}
.y17{bottom:778.605000px;}
.y7f{bottom:793.005000px;}
.y12{bottom:793.185000px;}
.y51{bottom:797.685000px;}
.y7e{bottom:816.045000px;}
.y50{bottom:820.545000px;}
.y7d{bottom:838.905000px;}
.y4f{bottom:843.585000px;}
.y7c{bottom:861.945000px;}
.y4e{bottom:866.625000px;}
.y7b{bottom:884.985000px;}
.y4d{bottom:889.710000px;}
.y7a{bottom:908.070000px;}
.y4c{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.yd{bottom:929.130000px;}
.y79{bottom:931.110000px;}
.y4b{bottom:935.790000px;}
.y78{bottom:954.150000px;}
.y4a{bottom:958.650000px;}
.y77{bottom:977.010000px;}
.y49{bottom:981.690000px;}
.y76{bottom:1000.050000px;}
.y48{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y75{bottom:1023.090000px;}
.y47{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y74{bottom:1046.130000px;}
.y8{bottom:1046.850000px;}
.y46{bottom:1050.810000px;}
.y72{bottom:1060.350000px;}
.y3b{bottom:1065.210000px;}
.y45{bottom:1073.850000px;}
.y71{bottom:1086.450000px;}
.y44{bottom:1096.710000px;}
.y6f{bottom:1109.130000px;}
.y43{bottom:1119.750000px;}
.y42{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y41{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1c{height:13.320000px;}
.h10{height:13.680000px;}
.h15{height:14.580000px;}
.h22{height:15.300000px;}
.h19{height:17.100000px;}
.h20{height:18.720000px;}
.h1f{height:19.980000px;}
.h2d{height:20.520000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h1b{height:23.040000px;}
.h18{height:25.001719px;}
.h2f{height:25.020000px;}
.h27{height:25.920000px;}
.h32{height:27.246094px;}
.h28{height:29.145586px;}
.h1e{height:30.060000px;}
.h11{height:32.670352px;}
.h1d{height:33.588984px;}
.h2e{height:36.509766px;}
.h16{height:36.886641px;}
.h1a{height:40.472227px;}
.h23{height:40.842773px;}
.h25{height:40.869141px;}
.h2b{height:41.291016px;}
.h31{height:42.348516px;}
.h26{height:42.366094px;}
.h30{height:42.468516px;}
.h13{height:48.761719px;}
.h21{height:50.100469px;}
.h14{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.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;}
.h29{height:93.816000px;}
.h8{height:108.036000px;}
.h12{height:122.256000px;}
.h17{height:153.030000px;}
.h24{height:276.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.540000px;}
.we{width:47.160000px;}
.wf{width:54.000000px;}
.w13{width:74.196000px;}
.w6{width:76.680000px;}
.w12{width:87.840000px;}
.wc{width:90.576000px;}
.wd{width:111.996000px;}
.w5{width:124.020000px;}
.w11{width:128.196000px;}
.w10{width:128.376000px;}
.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:14.796000px;}
.x12{left:16.740000px;}
.x26{left:36.900000px;}
.x22{left:38.736000px;}
.x7{left:39.780000px;}
.x23{left:43.920000px;}
.x24{left:55.830000px;}
.x25{left:56.880000px;}
.x27{left:58.320000px;}
.xf{left:70.560000px;}
.xc{left:83.154000px;}
.x18{left:87.840000px;}
.x8{left:100.116000px;}
.xb{left:101.376000px;}
.x13{left:105.300000px;}
.x1{left:108.036000px;}
.x3{left:156.990000px;}
.xa{left:176.790000px;}
.x1a{left:178.410000px;}
.xd{left:188.499000px;}
.x15{left:211.170000px;}
.x14{left:263.910000px;}
.x1b{left:290.415000px;}
.x11{left:325.875000px;}
.x1c{left:337.575000px;}
.x1d{left:391.575000px;}
.x16{left:453.855000px;}
.xe{left:457.845000px;}
.x17{left:462.705000px;}
.x1f{left:519.945000px;}
.x20{left:648.150000px;}
.x6{left:661.650000px;}
.x10{left:680.334000px;}
.x21{left:735.990000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-13.440000pt;}
.v7{vertical-align:-10.880000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls26{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.290133pt;}
.ls25{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.272000pt;}
.ls27{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.208000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.164267pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.112000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.081067pt;}
.ls16{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.010240pt;}
.ls3{letter-spacing:0.028160pt;}
.lse{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.043520pt;}
.ls21{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.051200pt;}
.ls23{letter-spacing:0.080000pt;}
.ls28{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.112000pt;}
.ls19{letter-spacing:0.121600pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.208000pt;}
.ls0{letter-spacing:0.208640pt;}
.ls13{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.234133pt;}
.ls24{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.272000pt;}
.ls29{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.560000pt;}
.ls10{letter-spacing:22.992000pt;}
.ws3{word-spacing:-22.693120pt;}
.ws2{word-spacing:-22.641920pt;}
.ws1{word-spacing:-19.837013pt;}
.ws5{word-spacing:-17.024000pt;}
.wsa{word-spacing:-16.224000pt;}
.ws9{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.955520pt;}
.ws26{word-spacing:-12.480000pt;}
.ws2b{word-spacing:-12.464000pt;}
.ws21{word-spacing:-12.400000pt;}
.ws29{word-spacing:-12.368000pt;}
.ws24{word-spacing:-12.352000pt;}
.ws23{word-spacing:-12.288000pt;}
.ws1e{word-spacing:-12.272000pt;}
.ws2a{word-spacing:-12.240000pt;}
.ws28{word-spacing:-12.224000pt;}
.ws1c{word-spacing:-12.192000pt;}
.ws27{word-spacing:-12.096000pt;}
.ws11{word-spacing:-12.048000pt;}
.ws1f{word-spacing:-11.824000pt;}
.ws10{word-spacing:-11.792000pt;}
.ws25{word-spacing:-11.760000pt;}
.ws1d{word-spacing:-11.616000pt;}
.wsc{word-spacing:-11.568000pt;}
.ws13{word-spacing:-11.488000pt;}
.ws1b{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.456000pt;}
.wsf{word-spacing:-11.408000pt;}
.ws22{word-spacing:-11.312000pt;}
.ws8{word-spacing:-11.296000pt;}
.ws20{word-spacing:-11.280000pt;}
.ws1a{word-spacing:-10.568213pt;}
.ws16{word-spacing:-10.455680pt;}
.ws17{word-spacing:-10.377600pt;}
.ws18{word-spacing:-10.344320pt;}
.ws15{word-spacing:-10.169813pt;}
.ws19{word-spacing:-10.043947pt;}
.ws4{word-spacing:-9.192960pt;}
.ws7{word-spacing:-7.712000pt;}
.wse{word-spacing:-7.552000pt;}
.wsd{word-spacing:-7.392000pt;}
.ws14{word-spacing:-6.478080pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.223467pt;}
._5{width:2.244907pt;}
._7{width:3.528960pt;}
._9{width:4.656000pt;}
._a{width:5.568000pt;}
._b{width:6.476800pt;}
._c{width:7.516800pt;}
._12{width:8.515200pt;}
._15{width:9.744000pt;}
._16{width:10.651733pt;}
._8{width:13.248000pt;}
._6{width:14.314667pt;}
._13{width:15.925333pt;}
._2{width:17.704960pt;}
._4{width:19.066880pt;}
._1e{width:20.784000pt;}
._f{width:21.888000pt;}
._d{width:23.520000pt;}
._e{width:24.618667pt;}
._20{width:25.581867pt;}
._10{width:26.496000pt;}
._11{width:27.432533pt;}
._25{width:28.560000pt;}
._26{width:29.616000pt;}
._27{width:30.624000pt;}
._2d{width:31.536000pt;}
._14{width:32.832000pt;}
._1b{width:34.176000pt;}
._1a{width:35.904000pt;}
._1f{width:37.200000pt;}
._28{width:38.352000pt;}
._17{width:39.456000pt;}
._21{width:40.392533pt;}
._1c{width:41.616000pt;}
._1d{width:42.768000pt;}
._24{width:43.872000pt;}
._2c{width:45.562667pt;}
._2e{width:47.616000pt;}
._29{width:49.248000pt;}
._2a{width:50.352000pt;}
._22{width:51.360000pt;}
._23{width:52.488533pt;}
._18{width:54.288000pt;}
._19{width:55.632000pt;}
._30{width:57.888000pt;}
._2f{width:60.960000pt;}
._2b{width:65.472000pt;}
.fs3{font-size:10.880000pt;}
.fse{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fsc{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;}
.fsd{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y40{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y23{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y2a{bottom:3.200000pt;}
.y2c{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y28{bottom:4.320000pt;}
.y3f{bottom:8.000000pt;}
.y70{bottom:8.640000pt;}
.y21{bottom:9.760000pt;}
.y73{bottom:12.640000pt;}
.y25{bottom:13.280000pt;}
.y26{bottom:13.440000pt;}
.y16{bottom:13.600000pt;}
.y3a{bottom:14.560000pt;}
.yf{bottom:17.760000pt;}
.y1e{bottom:18.746667pt;}
.y3e{bottom:26.880000pt;}
.y38{bottom:30.240000pt;}
.y15{bottom:40.800000pt;}
.y3d{bottom:45.920000pt;}
.y1d{bottom:45.946667pt;}
.y37{bottom:50.720000pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y3c{bottom:67.386667pt;}
.y14{bottom:67.840000pt;}
.y36{bottom:71.040000pt;}
.ya{bottom:71.520000pt;}
.y1c{bottom:73.146667pt;}
.y9{bottom:81.280000pt;}
.y35{bottom:91.520000pt;}
.y13{bottom:95.080000pt;}
.y1b{bottom:100.346667pt;}
.y84{bottom:101.440000pt;}
.y97{bottom:103.520000pt;}
.y8e{bottom:111.040000pt;}
.y34{bottom:112.000000pt;}
.y6e{bottom:115.840000pt;}
.y83{bottom:121.920000pt;}
.y96{bottom:124.000000pt;}
.y1a{bottom:127.546667pt;}
.y8d{bottom:131.392000pt;}
.y33{bottom:132.480000pt;}
.y6d{bottom:136.186667pt;}
.y82{bottom:142.426667pt;}
.y95{bottom:144.506667pt;}
.y8c{bottom:151.866667pt;}
.y32{bottom:152.960000pt;}
.y6c{bottom:156.666667pt;}
.y81{bottom:162.746667pt;}
.y94{bottom:164.826667pt;}
.y39{bottom:165.306667pt;}
.y8b{bottom:172.346667pt;}
.y31{bottom:173.480000pt;}
.y6b{bottom:177.146667pt;}
.y93{bottom:185.306667pt;}
.y2d{bottom:188.346667pt;}
.y8a{bottom:192.826667pt;}
.y30{bottom:193.800000pt;}
.y6a{bottom:197.626667pt;}
.y89{bottom:213.306667pt;}
.y2f{bottom:214.280000pt;}
.y69{bottom:218.106667pt;}
.y92{bottom:226.266667pt;}
.y88{bottom:233.626667pt;}
.y2e{bottom:234.760000pt;}
.y68{bottom:238.586667pt;}
.y91{bottom:246.746667pt;}
.y67{bottom:258.906667pt;}
.y90{bottom:267.066667pt;}
.y87{bottom:274.586667pt;}
.y66{bottom:279.386667pt;}
.y8f{bottom:287.546667pt;}
.y86{bottom:295.066667pt;}
.y65{bottom:299.866667pt;}
.y85{bottom:315.546667pt;}
.y64{bottom:320.346667pt;}
.y63{bottom:340.826667pt;}
.y62{bottom:361.346667pt;}
.y61{bottom:381.666667pt;}
.y60{bottom:402.146667pt;}
.y5f{bottom:422.626667pt;}
.y2b{bottom:433.826667pt;}
.y5e{bottom:443.106667pt;}
.y29{bottom:447.426667pt;}
.y5d{bottom:463.586667pt;}
.y27{bottom:464.066667pt;}
.y24{bottom:481.826667pt;}
.y5c{bottom:484.066667pt;}
.y5b{bottom:504.386667pt;}
.y22{bottom:508.546667pt;}
.y20{bottom:520.386667pt;}
.y5a{bottom:524.866667pt;}
.y1f{bottom:540.866667pt;}
.y59{bottom:545.346667pt;}
.y19{bottom:556.066667pt;}
.y58{bottom:565.826667pt;}
.y57{bottom:586.333333pt;}
.y56{bottom:606.653333pt;}
.y55{bottom:627.133333pt;}
.y54{bottom:647.613333pt;}
.y53{bottom:668.093333pt;}
.y98{bottom:671.453333pt;}
.y80{bottom:684.413333pt;}
.y52{bottom:688.573333pt;}
.y17{bottom:692.093333pt;}
.y7f{bottom:704.893333pt;}
.y12{bottom:705.053333pt;}
.y51{bottom:709.053333pt;}
.y7e{bottom:725.373333pt;}
.y50{bottom:729.373333pt;}
.y7d{bottom:745.693333pt;}
.y4f{bottom:749.853333pt;}
.y7c{bottom:766.173333pt;}
.y4e{bottom:770.333333pt;}
.y7b{bottom:786.653333pt;}
.y4d{bottom:790.853333pt;}
.y7a{bottom:807.173333pt;}
.y4c{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.yd{bottom:825.893333pt;}
.y79{bottom:827.653333pt;}
.y4b{bottom:831.813333pt;}
.y78{bottom:848.133333pt;}
.y4a{bottom:852.133333pt;}
.y77{bottom:868.453333pt;}
.y49{bottom:872.613333pt;}
.y76{bottom:888.933333pt;}
.y48{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y75{bottom:909.413333pt;}
.y47{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y74{bottom:929.893333pt;}
.y8{bottom:930.533333pt;}
.y46{bottom:934.053333pt;}
.y72{bottom:942.533333pt;}
.y3b{bottom:946.853333pt;}
.y45{bottom:954.533333pt;}
.y71{bottom:965.733333pt;}
.y44{bottom:974.853333pt;}
.y6f{bottom:985.893333pt;}
.y43{bottom:995.333333pt;}
.y42{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y41{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1c{height:11.840000pt;}
.h10{height:12.160000pt;}
.h15{height:12.960000pt;}
.h22{height:13.600000pt;}
.h19{height:15.200000pt;}
.h20{height:16.640000pt;}
.h1f{height:17.760000pt;}
.h2d{height:18.240000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h1b{height:20.480000pt;}
.h18{height:22.223750pt;}
.h2f{height:22.240000pt;}
.h27{height:23.040000pt;}
.h32{height:24.218750pt;}
.h28{height:25.907188pt;}
.h1e{height:26.720000pt;}
.h11{height:29.040312pt;}
.h1d{height:29.856875pt;}
.h2e{height:32.453125pt;}
.h16{height:32.788125pt;}
.h1a{height:35.975313pt;}
.h23{height:36.304688pt;}
.h25{height:36.328125pt;}
.h2b{height:36.703125pt;}
.h31{height:37.643125pt;}
.h26{height:37.658750pt;}
.h30{height:37.749792pt;}
.h13{height:43.343750pt;}
.h21{height:44.533750pt;}
.h14{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.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;}
.h29{height:83.392000pt;}
.h8{height:96.032000pt;}
.h12{height:108.672000pt;}
.h17{height:136.026667pt;}
.h24{height:245.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.480000pt;}
.we{width:41.920000pt;}
.wf{width:48.000000pt;}
.w13{width:65.952000pt;}
.w6{width:68.160000pt;}
.w12{width:78.080000pt;}
.wc{width:80.512000pt;}
.wd{width:99.552000pt;}
.w5{width:110.240000pt;}
.w11{width:113.952000pt;}
.w10{width:114.112000pt;}
.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:13.152000pt;}
.x12{left:14.880000pt;}
.x26{left:32.800000pt;}
.x22{left:34.432000pt;}
.x7{left:35.360000pt;}
.x23{left:39.040000pt;}
.x24{left:49.626667pt;}
.x25{left:50.560000pt;}
.x27{left:51.840000pt;}
.xf{left:62.720000pt;}
.xc{left:73.914667pt;}
.x18{left:78.080000pt;}
.x8{left:88.992000pt;}
.xb{left:90.112000pt;}
.x13{left:93.600000pt;}
.x1{left:96.032000pt;}
.x3{left:139.546667pt;}
.xa{left:157.146667pt;}
.x1a{left:158.586667pt;}
.xd{left:167.554667pt;}
.x15{left:187.706667pt;}
.x14{left:234.586667pt;}
.x1b{left:258.146667pt;}
.x11{left:289.666667pt;}
.x1c{left:300.066667pt;}
.x1d{left:348.066667pt;}
.x16{left:403.426667pt;}
.xe{left:406.973333pt;}
.x17{left:411.293333pt;}
.x1f{left:462.173333pt;}
.x20{left:576.133333pt;}
.x6{left:588.133333pt;}
.x10{left:604.741333pt;}
.x21{left:654.213333pt;}
}




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