
    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_6c8073c7740793becb66d227.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_de6ee4bdf748129a30fb484c.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_e60e16299983e267e01216a8.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_4dabf42399daa1e6f8966cc3.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_ae3e7de1e452a808c6c019d5.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_44b350d49f0817e034cedfef.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_2e9ce0f2a42a2c65f2a8c329.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_c9be2b19963031344c7e0427.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_14e2f7686637f21f237afe95.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_6c0e0c2e70439acb6eebf34c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;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_2f59787047cd9b0043d66a9a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_deac42ad8bd6c96d60ed6e10.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_507a4aa65437353c789c0629.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_2845118e7c69364a8a8974be.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_639dfdfff65656502e73bf12.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_7346d3d5d882efd92005f7c0.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_147da6667a77577e1dbbb712.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.978027;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_c7b1e526d78062f3cf93e013.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.853027;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;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.v7{vertical-align:25.920000px;}
.v6{vertical-align:36.720000px;}
.ls16{letter-spacing:-1.620000px;}
.ls1f{letter-spacing:-1.098000px;}
.ls8{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.684000px;}
.ls20{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.331200px;}
.ls1a{letter-spacing:-0.324000px;}
.ls26{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.234000px;}
.lse{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.091200px;}
.lsd{letter-spacing:-0.090000px;}
.ls15{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.031680px;}
.ls23{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.234000px;}
.ls1{letter-spacing:0.234720px;}
.ls18{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.331200px;}
.ls24{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.414720px;}
.lsf{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:4.057920px;}
.ls1c{letter-spacing:4.986000px;}
.ls19{letter-spacing:12.906000px;}
.ls10{letter-spacing:22.986000px;}
.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;}
}
.ws0{word-spacing:-22.316640px;}
.ws2{word-spacing:-19.152000px;}
.ws7{word-spacing:-18.234000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.179040px;}
.ws18{word-spacing:-14.076000px;}
.ws19{word-spacing:-13.950000px;}
.ws16{word-spacing:-13.914000px;}
.ws14{word-spacing:-13.896000px;}
.ws15{word-spacing:-13.878000px;}
.ws11{word-spacing:-13.770000px;}
.ws17{word-spacing:-13.752000px;}
.ws12{word-spacing:-13.716000px;}
.wsa{word-spacing:-13.230000px;}
.wsb{word-spacing:-13.068000px;}
.ws13{word-spacing:-13.032000px;}
.ws6{word-spacing:-13.014000px;}
.wsc{word-spacing:-12.978000px;}
.ws9{word-spacing:-12.924000px;}
.ws5{word-spacing:-12.816000px;}
.wsf{word-spacing:-12.744000px;}
.ws1a{word-spacing:-12.726000px;}
.ws10{word-spacing:-12.690000px;}
.ws1{word-spacing:-10.342080px;}
.wse{word-spacing:-8.964000px;}
.wsd{word-spacing:-8.676000px;}
.ws8{word-spacing:0.000000px;}
._8{margin-left:-3.344400px;}
._9{margin-left:-2.271600px;}
._0{margin-left:-1.263600px;}
._1{width:1.056000px;}
._a{width:2.383200px;}
._7{width:3.715200px;}
._6{width:4.968000px;}
._1e{width:6.058800px;}
._11{width:7.074000px;}
._15{width:8.154000px;}
._18{width:9.318000px;}
._12{width:10.638000px;}
._10{width:11.934000px;}
._d{width:14.886000px;}
._2a{width:15.930000px;}
._16{width:16.956000px;}
._e{width:18.360000px;}
._f{width:19.788000px;}
._4{width:21.240000px;}
._5{width:22.524000px;}
._b{width:24.048000px;}
._17{width:25.974000px;}
._c{width:27.120000px;}
._1f{width:28.230000px;}
._29{width:29.390880px;}
._2{width:30.449040px;}
._3{width:31.490400px;}
._19{width:32.778000px;}
._2d{width:33.804000px;}
._28{width:34.908000px;}
._1c{width:36.264000px;}
._20{width:37.716000px;}
._2c{width:38.826000px;}
._27{width:40.122000px;}
._14{width:41.526000px;}
._21{width:42.546000px;}
._22{width:43.740000px;}
._2b{width:45.522000px;}
._23{width:47.358000px;}
._26{width:49.194000px;}
._1b{width:51.159600px;}
._33{width:52.405200px;}
._1a{width:53.580000px;}
._1d{width:55.080000px;}
._2e{width:56.094000px;}
._31{width:62.748000px;}
._32{width:63.936000px;}
._2f{width:65.880000px;}
._24{width:86.346000px;}
._25{width:87.642000px;}
._34{width:110.136000px;}
._35{width:111.240000px;}
._30{width:148.032000px;}
._13{width:1404.840000px;}
.fc5{color:transparent;}
.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);}
.fsc{font-size:9.360000px;}
.fs3{font-size:12.240000px;}
.fsb{font-size:23.760000px;}
.fs8{font-size:33.120000px;}
.fsf{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs10{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;}
.y3c{bottom:-16.380000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.520000px;}
.y6{bottom:2.700000px;}
.y10b{bottom:2.880000px;}
.y160{bottom:3.060000px;}
.y10{bottom:3.420000px;}
.y3{bottom:3.960000px;}
.y35{bottom:7.740000px;}
.y3b{bottom:9.180000px;}
.y109{bottom:10.440000px;}
.y10c{bottom:10.620000px;}
.y14{bottom:14.940000px;}
.y33{bottom:15.474000px;}
.y27{bottom:16.200000px;}
.y10a{bottom:18.180000px;}
.y23{bottom:19.620000px;}
.ye{bottom:19.980000px;}
.y20{bottom:21.060000px;}
.y25{bottom:23.760000px;}
.y3a{bottom:30.420000px;}
.y32{bottom:38.514000px;}
.y13{bottom:45.405000px;}
.y1f{bottom:45.720000px;}
.y39{bottom:51.840000px;}
.y4{bottom:57.780000px;}
.yd{bottom:60.840000px;}
.y31{bottom:61.374000px;}
.y2{bottom:74.556000px;}
.y38{bottom:75.630000px;}
.y12{bottom:76.005000px;}
.y9{bottom:80.820000px;}
.y1e{bottom:82.290000px;}
.y30{bottom:84.414000px;}
.y8{bottom:91.110000px;}
.y1d{bottom:106.950000px;}
.y2f{bottom:107.454000px;}
.y148{bottom:111.096000px;}
.y174{bottom:114.696000px;}
.y12c{bottom:115.776000px;}
.y19f{bottom:116.676000px;}
.yc6{bottom:117.216000px;}
.y107{bottom:118.296000px;}
.y36{bottom:118.836000px;}
.y15c{bottom:119.376000px;}
.y9a{bottom:120.996000px;}
.ye3{bottom:122.256000px;}
.y2e{bottom:130.494000px;}
.y34{bottom:131.256000px;}
.y6a{bottom:132.156000px;}
.y147{bottom:134.136000px;}
.y173{bottom:137.556000px;}
.y12b{bottom:139.536000px;}
.yc5{bottom:140.076000px;}
.y106{bottom:141.156000px;}
.y19e{bottom:141.336000px;}
.y99{bottom:142.596000px;}
.y1c{bottom:143.490000px;}
.ye2{bottom:145.296000px;}
.y28{bottom:148.536000px;}
.y2d{bottom:153.534000px;}
.y69{bottom:154.650000px;}
.y146{bottom:156.990000px;}
.y172{bottom:160.590000px;}
.yc4{bottom:163.110000px;}
.y12a{bottom:163.290000px;}
.y98{bottom:164.010000px;}
.y105{bottom:164.190000px;}
.y19d{bottom:165.810000px;}
.y1b{bottom:168.330000px;}
.y2c{bottom:176.574000px;}
.y68{bottom:177.150000px;}
.y145{bottom:180.030000px;}
.y171{bottom:183.630000px;}
.y97{bottom:185.430000px;}
.yc3{bottom:186.150000px;}
.y104{bottom:187.230000px;}
.y19c{bottom:188.850000px;}
.ye1{bottom:191.370000px;}
.y2b{bottom:199.479000px;}
.y67{bottom:199.830000px;}
.y103{bottom:202.530000px;}
.y144{bottom:203.070000px;}
.y1a{bottom:204.870000px;}
.y170{bottom:206.670000px;}
.y96{bottom:207.030000px;}
.yc2{bottom:209.190000px;}
.y129{bottom:210.990000px;}
.y19b{bottom:211.890000px;}
.ye0{bottom:214.230000px;}
.y1c3{bottom:216.390000px;}
.y66{bottom:222.330000px;}
.y2a{bottom:222.519000px;}
.y102{bottom:225.570000px;}
.y143{bottom:226.110000px;}
.y95{bottom:228.450000px;}
.y16f{bottom:228.630000px;}
.yc1{bottom:232.230000px;}
.y19a{bottom:233.850000px;}
.y128{bottom:234.750000px;}
.y19{bottom:235.470000px;}
.ydf{bottom:237.270000px;}
.y1c2{bottom:240.870000px;}
.y65{bottom:244.830000px;}
.y29{bottom:245.559000px;}
.y101{bottom:248.610000px;}
.y142{bottom:249.150000px;}
.y94{bottom:249.870000px;}
.y16e{bottom:250.050000px;}
.yc0{bottom:255.270000px;}
.y199{bottom:255.630000px;}
.y127{bottom:258.510000px;}
.yde{bottom:260.310000px;}
.y1c1{bottom:265.350000px;}
.y18{bottom:266.070000px;}
.y64{bottom:267.510000px;}
.y93{bottom:271.470000px;}
.y100{bottom:271.650000px;}
.y141{bottom:272.190000px;}
.y16d{bottom:273.090000px;}
.y198{bottom:277.590000px;}
.ybf{bottom:278.130000px;}
.y126{bottom:282.270000px;}
.ydd{bottom:283.350000px;}
.y63{bottom:290.010000px;}
.y92{bottom:292.890000px;}
.yff{bottom:294.690000px;}
.y140{bottom:295.050000px;}
.y16c{bottom:296.130000px;}
.y197{bottom:299.550000px;}
.ybe{bottom:301.170000px;}
.y125{bottom:306.030000px;}
.ydc{bottom:306.390000px;}
.y62{bottom:312.510000px;}
.y91{bottom:314.310000px;}
.y1c0{bottom:314.490000px;}
.yfe{bottom:317.550000px;}
.y13f{bottom:318.090000px;}
.y16b{bottom:319.170000px;}
.y196{bottom:319.350000px;}
.ybd{bottom:324.210000px;}
.ydb{bottom:327.090000px;}
.y124{bottom:329.835000px;}
.y90{bottom:333.975000px;}
.y61{bottom:335.235000px;}
.y1bf{bottom:336.495000px;}
.y195{bottom:338.475000px;}
.yfd{bottom:340.635000px;}
.y13e{bottom:341.175000px;}
.y16a{bottom:342.255000px;}
.ybc{bottom:347.295000px;}
.y8f{bottom:352.515000px;}
.y123{bottom:353.595000px;}
.y60{bottom:357.735000px;}
.y1be{bottom:358.095000px;}
.y194{bottom:360.435000px;}
.yfc{bottom:363.675000px;}
.y13d{bottom:364.215000px;}
.y169{bottom:365.295000px;}
.ybb{bottom:370.335000px;}
.y15b{bottom:373.035000px;}
.y8e{bottom:374.115000px;}
.y122{bottom:377.355000px;}
.y5f{bottom:380.235000px;}
.y1bd{bottom:382.755000px;}
.yfb{bottom:386.715000px;}
.y13c{bottom:387.255000px;}
.y168{bottom:388.155000px;}
.y15a{bottom:391.935000px;}
.yba{bottom:393.375000px;}
.y8d{bottom:395.535000px;}
.y193{bottom:399.495000px;}
.y121{bottom:401.115000px;}
.yfa{bottom:402.015000px;}
.y5e{bottom:402.915000px;}
.y26{bottom:406.515000px;}
.y1bc{bottom:407.235000px;}
.y13b{bottom:410.295000px;}
.y167{bottom:411.195000px;}
.y159{bottom:414.975000px;}
.yb9{bottom:416.235000px;}
.y8c{bottom:416.955000px;}
.y192{bottom:421.275000px;}
.y120{bottom:424.155000px;}
.yf9{bottom:425.055000px;}
.y5d{bottom:425.415000px;}
.y1bb{bottom:431.715000px;}
.y13a{bottom:433.155000px;}
.y24{bottom:436.575000px;}
.y158{bottom:437.835000px;}
.y8b{bottom:438.375000px;}
.yb8{bottom:439.275000px;}
.y191{bottom:443.235000px;}
.y11f{bottom:447.195000px;}
.y5c{bottom:447.915000px;}
.yf8{bottom:448.095000px;}
.y166{bottom:454.035000px;}
.y139{bottom:456.195000px;}
.y1ba{bottom:456.375000px;}
.y8a{bottom:459.975000px;}
.y157{bottom:460.875000px;}
.y11e{bottom:461.775000px;}
.yb7{bottom:462.315000px;}
.y190{bottom:465.195000px;}
.y165{bottom:470.055000px;}
.y5b{bottom:470.595000px;}
.yf7{bottom:471.135000px;}
.y1b9{bottom:478.335000px;}
.y138{bottom:479.235000px;}
.y89{bottom:481.395000px;}
.y156{bottom:483.915000px;}
.y22{bottom:484.635000px;}
.yb6{bottom:485.355000px;}
.y11d{bottom:485.535000px;}
.y164{bottom:486.255000px;}
.y18f{bottom:487.155000px;}
.y5a{bottom:493.095000px;}
.yf6{bottom:493.995000px;}
.y1b8{bottom:499.935000px;}
.y137{bottom:502.275000px;}
.y88{bottom:502.815000px;}
.y155{bottom:506.955000px;}
.yb5{bottom:508.395000px;}
.y11c{bottom:509.295000px;}
.y59{bottom:515.595000px;}
.y21{bottom:516.675000px;}
.yf5{bottom:517.035000px;}
.y163{bottom:518.295000px;}
.y87{bottom:524.415000px;}
.y136{bottom:525.315000px;}
.y18e{bottom:526.035000px;}
.y154{bottom:529.995000px;}
.yb4{bottom:531.435000px;}
.yf4{bottom:532.335000px;}
.y11b{bottom:533.055000px;}
.y17{bottom:533.595000px;}
.y162{bottom:534.495000px;}
.y58{bottom:538.275000px;}
.y135{bottom:545.295000px;}
.y86{bottom:545.835000px;}
.y18d{bottom:547.995000px;}
.y1b7{bottom:549.075000px;}
.y161{bottom:552.135000px;}
.y153{bottom:553.035000px;}
.yb3{bottom:554.295000px;}
.yf3{bottom:555.375000px;}
.y11a{bottom:556.815000px;}
.y57{bottom:560.775000px;}
.y85{bottom:567.255000px;}
.y18c{bottom:569.955000px;}
.y1b6{bottom:573.555000px;}
.yda{bottom:575.175000px;}
.y152{bottom:575.895000px;}
.yb2{bottom:577.335000px;}
.yf2{bottom:578.415000px;}
.y119{bottom:580.575000px;}
.y56{bottom:583.275000px;}
.y15f{bottom:584.895000px;}
.y84{bottom:588.855000px;}
.y18b{bottom:591.915000px;}
.yd9{bottom:595.365000px;}
.y1b5{bottom:595.545000px;}
.y151{bottom:598.965000px;}
.yb1{bottom:600.405000px;}
.yf1{bottom:602.565000px;}
.y55{bottom:603.825000px;}
.y118{bottom:604.365000px;}
.yf0{bottom:609.045000px;}
.y83{bottom:610.305000px;}
.y15e{bottom:613.185000px;}
.y18a{bottom:613.905000px;}
.y1b4{bottom:617.325000px;}
.yd8{bottom:618.225000px;}
.y150{bottom:622.005000px;}
.y54{bottom:623.445000px;}
.y117{bottom:628.125000px;}
.y82{bottom:631.725000px;}
.y189{bottom:633.525000px;}
.y15d{bottom:636.225000px;}
.yef{bottom:639.105000px;}
.yd7{bottom:641.265000px;}
.y1b3{bottom:641.805000px;}
.y14f{bottom:645.045000px;}
.y53{bottom:646.125000px;}
.yb0{bottom:646.485000px;}
.y116{bottom:651.885000px;}
.y188{bottom:652.785000px;}
.y81{bottom:653.325000px;}
.yee{bottom:659.265000px;}
.yd6{bottom:664.305000px;}
.y1b2{bottom:666.285000px;}
.y14e{bottom:668.085000px;}
.y52{bottom:668.625000px;}
.yaf{bottom:669.345000px;}
.y80{bottom:674.745000px;}
.y115{bottom:675.645000px;}
.yed{bottom:682.125000px;}
.yd5{bottom:687.345000px;}
.y14d{bottom:688.065000px;}
.y1b1{bottom:690.945000px;}
.y51{bottom:691.125000px;}
.yae{bottom:692.385000px;}
.y7f{bottom:696.165000px;}
.y187{bottom:696.705000px;}
.y114{bottom:699.405000px;}
.yec{bottom:705.165000px;}
.yd4{bottom:710.385000px;}
.y50{bottom:713.805000px;}
.yad{bottom:715.425000px;}
.y7e{bottom:717.585000px;}
.y186{bottom:718.485000px;}
.y113{bottom:723.165000px;}
.yeb{bottom:728.205000px;}
.yd3{bottom:733.425000px;}
.y4f{bottom:736.305000px;}
.y1b0{bottom:737.385000px;}
.yac{bottom:738.465000px;}
.y7d{bottom:739.185000px;}
.y185{bottom:740.445000px;}
.y112{bottom:746.925000px;}
.yea{bottom:751.245000px;}
.yd2{bottom:756.285000px;}
.y4e{bottom:758.805000px;}
.y1af{bottom:758.985000px;}
.y7c{bottom:760.605000px;}
.yab{bottom:761.505000px;}
.y184{bottom:762.405000px;}
.y111{bottom:770.685000px;}
.ye9{bottom:774.285000px;}
.y134{bottom:775.365000px;}
.yd1{bottom:779.325000px;}
.y4d{bottom:781.485000px;}
.y7b{bottom:782.025000px;}
.yd0{bottom:782.205000px;}
.y1ae{bottom:784.005000px;}
.yaa{bottom:784.545000px;}
.y110{bottom:794.445000px;}
.ye8{bottom:797.325000px;}
.y133{bottom:798.405000px;}
.y183{bottom:801.285000px;}
.ycf{bottom:802.365000px;}
.y7a{bottom:803.625000px;}
.y4c{bottom:803.985000px;}
.ya9{bottom:807.405000px;}
.y15{bottom:809.205000px;}
.y1ad{bottom:809.385000px;}
.y10f{bottom:818.205000px;}
.ye7{bottom:820.185000px;}
.y132{bottom:821.445000px;}
.y182{bottom:823.245000px;}
.y11{bottom:823.785000px;}
.y79{bottom:825.045000px;}
.yce{bottom:825.405000px;}
.y4b{bottom:826.485000px;}
.ya8{bottom:828.285000px;}
.y1ac{bottom:834.225000px;}
.y10e{bottom:841.965000px;}
.ye6{bottom:843.225000px;}
.y131{bottom:844.485000px;}
.y181{bottom:845.205000px;}
.y78{bottom:846.465000px;}
.ya7{bottom:848.445000px;}
.y4a{bottom:849.165000px;}
.y1ab{bottom:858.705000px;}
.y10d{bottom:865.770000px;}
.ye5{bottom:866.310000px;}
.y180{bottom:867.210000px;}
.y130{bottom:867.570000px;}
.y77{bottom:868.110000px;}
.ya6{bottom:871.350000px;}
.y49{bottom:871.710000px;}
.y1aa{bottom:880.710000px;}
.y17f{bottom:887.010000px;}
.y14c{bottom:887.730000px;}
.ye4{bottom:889.350000px;}
.y76{bottom:889.530000px;}
.y12f{bottom:890.430000px;}
.ycd{bottom:892.230000px;}
.y48{bottom:894.210000px;}
.ya5{bottom:894.390000px;}
.y1a9{bottom:902.490000px;}
.y17e{bottom:906.090000px;}
.y75{bottom:909.150000px;}
.y14b{bottom:910.770000px;}
.ycc{bottom:912.390000px;}
.y12e{bottom:913.470000px;}
.y108{bottom:914.910000px;}
.yf{bottom:915.450000px;}
.y47{bottom:916.890000px;}
.ya4{bottom:917.430000px;}
.y1a8{bottom:926.970000px;}
.y74{bottom:927.690000px;}
.y17d{bottom:928.050000px;}
.yc{bottom:929.130000px;}
.y12d{bottom:933.630000px;}
.y14a{bottom:933.810000px;}
.ycb{bottom:935.430000px;}
.y46{bottom:939.390000px;}
.ya3{bottom:940.470000px;}
.y73{bottom:949.110000px;}
.y17c{bottom:950.010000px;}
.y1a7{bottom:951.630000px;}
.y149{bottom:953.790000px;}
.yca{bottom:958.290000px;}
.y45{bottom:961.890000px;}
.ya2{bottom:963.510000px;}
.y72{bottom:970.710000px;}
.y17b{bottom:971.970000px;}
.y1a6{bottom:976.110000px;}
.yc9{bottom:981.330000px;}
.y44{bottom:984.570000px;}
.ya1{bottom:986.550000px;}
.y71{bottom:992.130000px;}
.y17a{bottom:993.930000px;}
.y1a5{bottom:1000.590000px;}
.yc8{bottom:1004.370000px;}
.y43{bottom:1007.070000px;}
.ya0{bottom:1009.410000px;}
.yb{bottom:1013.010000px;}
.y70{bottom:1013.550000px;}
.y1a4{bottom:1022.550000px;}
.yc7{bottom:1027.410000px;}
.y42{bottom:1029.570000px;}
.ya{bottom:1030.110000px;}
.y9f{bottom:1030.290000px;}
.y179{bottom:1032.810000px;}
.y6f{bottom:1034.970000px;}
.y1a3{bottom:1044.330000px;}
.y7{bottom:1046.850000px;}
.y9e{bottom:1050.450000px;}
.y41{bottom:1052.250000px;}
.y178{bottom:1054.770000px;}
.y6e{bottom:1056.570000px;}
.y1a2{bottom:1068.810000px;}
.y37{bottom:1073.130000px;}
.y9d{bottom:1073.490000px;}
.y40{bottom:1074.750000px;}
.y177{bottom:1076.730000px;}
.y6d{bottom:1077.990000px;}
.y1a1{bottom:1093.290000px;}
.y9c{bottom:1096.350000px;}
.y3f{bottom:1097.250000px;}
.y176{bottom:1098.510000px;}
.y6c{bottom:1099.410000px;}
.y1a0{bottom:1117.950000px;}
.y9b{bottom:1119.390000px;}
.y3e{bottom:1119.930000px;}
.y175{bottom:1120.470000px;}
.y6b{bottom:1121.010000px;}
.y3d{bottom:1142.460000px;}
.y1{bottom:1192.140000px;}
.y5{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h10{height:13.680000px;}
.h14{height:14.580000px;}
.h32{height:15.300000px;}
.h33{height:15.480000px;}
.h31{height:15.516000px;}
.h18{height:16.920000px;}
.h21{height:17.280000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h2e{height:23.040000px;}
.h2f{height:23.076000px;}
.h17{height:25.001719px;}
.h30{height:27.404297px;}
.h22{height:29.145586px;}
.h1d{height:30.060000px;}
.h2d{height:30.600000px;}
.h29{height:31.585078px;}
.h28{height:31.788984px;}
.h1a{height:32.040000px;}
.h11{height:32.670352px;}
.h35{height:36.721758px;}
.h15{height:36.886641px;}
.h19{height:40.472227px;}
.h23{height:40.842773px;}
.h20{height:41.106445px;}
.h26{height:41.291016px;}
.h2a{height:42.524297px;}
.h1e{height:45.199336px;}
.h36{height:45.509766px;}
.h1b{height:48.060000px;}
.h13{height:48.761719px;}
.h1c{height:50.132812px;}
.h34{height:50.423906px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h25{height:55.054688px;}
.h27{height:55.209375px;}
.h6{height:57.051211px;}
.he{height:64.853086px;}
.h2c{height:67.026445px;}
.hf{height:68.360471px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.h2b{height:77.826445px;}
.ha{height:78.468750px;}
.hd{height:81.540000px;}
.h7{height:84.898125px;}
.h12{height:91.656000px;}
.h24{height:93.816000px;}
.h8{height:108.036000px;}
.h1f{height:257.970000px;}
.h16{height:275.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:54.180000px;}
.w14{width:65.736000px;}
.wf{width:68.940000px;}
.w7{width:76.680000px;}
.w12{width:77.616000px;}
.w13{width:77.760000px;}
.we{width:81.396000px;}
.w15{width:101.340000px;}
.w6{width:122.751000px;}
.w10{width:155.370000px;}
.w11{width:167.070000px;}
.wd{width:171.360000px;}
.wb{width:332.175000px;}
.wa{width:356.430000px;}
.wc{width:464.475000px;}
.w5{width:546.375000px;}
.w8{width:616.425000px;}
.w4{width:619.845000px;}
.w9{width:688.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.620000px;}
.x4{left:6.480000px;}
.xa{left:8.100000px;}
.x6{left:10.800000px;}
.x19{left:12.105000px;}
.x1b{left:13.860000px;}
.x12{left:16.740000px;}
.x2{left:20.700000px;}
.x2a{left:21.780000px;}
.x27{left:22.860000px;}
.x28{left:24.660000px;}
.x1e{left:30.060000px;}
.x1c{left:31.860000px;}
.x29{left:33.840000px;}
.x1d{left:36.405000px;}
.x8{left:39.060000px;}
.x23{left:41.400000px;}
.x10{left:73.830000px;}
.x9{left:100.116000px;}
.xc{left:101.376000px;}
.x1{left:108.035987px;}
.x5{left:109.476000px;}
.x3{left:165.450000px;}
.xb{left:176.790000px;}
.x14{left:211.170000px;}
.x13{left:263.910000px;}
.x18{left:279.750000px;}
.xd{left:312.879000px;}
.x11{left:325.875000px;}
.x1a{left:361.155000px;}
.x21{left:425.954987px;}
.x20{left:429.734987px;}
.x15{left:453.855000px;}
.xf{left:457.815000px;}
.x16{left:462.674987px;}
.xe{left:492.189000px;}
.x24{left:540.285000px;}
.x17{left:562.424987px;}
.x22{left:618.045000px;}
.x7{left:658.410000px;}
.x25{left:683.790000px;}
.x1f{left:784.409987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.v7{vertical-align:23.040000pt;}
.v6{vertical-align:32.640000pt;}
.ls16{letter-spacing:-1.440000pt;}
.ls1f{letter-spacing:-0.976000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.608000pt;}
.ls20{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.294400pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls26{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.208000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.081067pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.028160pt;}
.ls23{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.208000pt;}
.ls1{letter-spacing:0.208640pt;}
.ls18{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.294400pt;}
.ls24{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.368640pt;}
.lsf{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:3.607040pt;}
.ls1c{letter-spacing:4.432000pt;}
.ls19{letter-spacing:11.472000pt;}
.ls10{letter-spacing:20.432000pt;}
.ws0{word-spacing:-19.837013pt;}
.ws2{word-spacing:-17.024000pt;}
.ws7{word-spacing:-16.208000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.492480pt;}
.ws18{word-spacing:-12.512000pt;}
.ws19{word-spacing:-12.400000pt;}
.ws16{word-spacing:-12.368000pt;}
.ws14{word-spacing:-12.352000pt;}
.ws15{word-spacing:-12.336000pt;}
.ws11{word-spacing:-12.240000pt;}
.ws17{word-spacing:-12.224000pt;}
.ws12{word-spacing:-12.192000pt;}
.wsa{word-spacing:-11.760000pt;}
.wsb{word-spacing:-11.616000pt;}
.ws13{word-spacing:-11.584000pt;}
.ws6{word-spacing:-11.568000pt;}
.wsc{word-spacing:-11.536000pt;}
.ws9{word-spacing:-11.488000pt;}
.ws5{word-spacing:-11.392000pt;}
.wsf{word-spacing:-11.328000pt;}
.ws1a{word-spacing:-11.312000pt;}
.ws10{word-spacing:-11.280000pt;}
.ws1{word-spacing:-9.192960pt;}
.wse{word-spacing:-7.968000pt;}
.wsd{word-spacing:-7.712000pt;}
.ws8{word-spacing:0.000000pt;}
._8{margin-left:-2.972800pt;}
._9{margin-left:-2.019200pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.938667pt;}
._a{width:2.118400pt;}
._7{width:3.302400pt;}
._6{width:4.416000pt;}
._1e{width:5.385600pt;}
._11{width:6.288000pt;}
._15{width:7.248000pt;}
._18{width:8.282667pt;}
._12{width:9.456000pt;}
._10{width:10.608000pt;}
._d{width:13.232000pt;}
._2a{width:14.160000pt;}
._16{width:15.072000pt;}
._e{width:16.320000pt;}
._f{width:17.589333pt;}
._4{width:18.880000pt;}
._5{width:20.021333pt;}
._b{width:21.376000pt;}
._17{width:23.088000pt;}
._c{width:24.106667pt;}
._1f{width:25.093333pt;}
._29{width:26.125227pt;}
._2{width:27.065813pt;}
._3{width:27.991467pt;}
._19{width:29.136000pt;}
._2d{width:30.048000pt;}
._28{width:31.029333pt;}
._1c{width:32.234667pt;}
._20{width:33.525333pt;}
._2c{width:34.512000pt;}
._27{width:35.664000pt;}
._14{width:36.912000pt;}
._21{width:37.818667pt;}
._22{width:38.880000pt;}
._2b{width:40.464000pt;}
._23{width:42.096000pt;}
._26{width:43.728000pt;}
._1b{width:45.475200pt;}
._33{width:46.582400pt;}
._1a{width:47.626667pt;}
._1d{width:48.960000pt;}
._2e{width:49.861333pt;}
._31{width:55.776000pt;}
._32{width:56.832000pt;}
._2f{width:58.560000pt;}
._24{width:76.752000pt;}
._25{width:77.904000pt;}
._34{width:97.898667pt;}
._35{width:98.880000pt;}
._30{width:131.584000pt;}
._13{width:1248.746667pt;}
.fsc{font-size:8.320000pt;}
.fs3{font-size:10.880000pt;}
.fsb{font-size:21.120000pt;}
.fs8{font-size:29.440000pt;}
.fsf{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs10{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;}
.y3c{bottom:-14.560000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.240000pt;}
.y6{bottom:2.400000pt;}
.y10b{bottom:2.560000pt;}
.y160{bottom:2.720000pt;}
.y10{bottom:3.040000pt;}
.y3{bottom:3.520000pt;}
.y35{bottom:6.880000pt;}
.y3b{bottom:8.160000pt;}
.y109{bottom:9.280000pt;}
.y10c{bottom:9.440000pt;}
.y14{bottom:13.280000pt;}
.y33{bottom:13.754667pt;}
.y27{bottom:14.400000pt;}
.y10a{bottom:16.160000pt;}
.y23{bottom:17.440000pt;}
.ye{bottom:17.760000pt;}
.y20{bottom:18.720000pt;}
.y25{bottom:21.120000pt;}
.y3a{bottom:27.040000pt;}
.y32{bottom:34.234667pt;}
.y13{bottom:40.360000pt;}
.y1f{bottom:40.640000pt;}
.y39{bottom:46.080000pt;}
.y4{bottom:51.360000pt;}
.yd{bottom:54.080000pt;}
.y31{bottom:54.554667pt;}
.y2{bottom:66.272000pt;}
.y38{bottom:67.226667pt;}
.y12{bottom:67.560000pt;}
.y9{bottom:71.840000pt;}
.y1e{bottom:73.146667pt;}
.y30{bottom:75.034667pt;}
.y8{bottom:80.986667pt;}
.y1d{bottom:95.066667pt;}
.y2f{bottom:95.514667pt;}
.y148{bottom:98.752000pt;}
.y174{bottom:101.952000pt;}
.y12c{bottom:102.912000pt;}
.y19f{bottom:103.712000pt;}
.yc6{bottom:104.192000pt;}
.y107{bottom:105.152000pt;}
.y36{bottom:105.632000pt;}
.y15c{bottom:106.112000pt;}
.y9a{bottom:107.552000pt;}
.ye3{bottom:108.672000pt;}
.y2e{bottom:115.994667pt;}
.y34{bottom:116.672000pt;}
.y6a{bottom:117.472000pt;}
.y147{bottom:119.232000pt;}
.y173{bottom:122.272000pt;}
.y12b{bottom:124.032000pt;}
.yc5{bottom:124.512000pt;}
.y106{bottom:125.472000pt;}
.y19e{bottom:125.632000pt;}
.y99{bottom:126.752000pt;}
.y1c{bottom:127.546667pt;}
.ye2{bottom:129.152000pt;}
.y28{bottom:132.032000pt;}
.y2d{bottom:136.474667pt;}
.y69{bottom:137.466667pt;}
.y146{bottom:139.546667pt;}
.y172{bottom:142.746667pt;}
.yc4{bottom:144.986667pt;}
.y12a{bottom:145.146667pt;}
.y98{bottom:145.786667pt;}
.y105{bottom:145.946667pt;}
.y19d{bottom:147.386667pt;}
.y1b{bottom:149.626667pt;}
.y2c{bottom:156.954667pt;}
.y68{bottom:157.466667pt;}
.y145{bottom:160.026667pt;}
.y171{bottom:163.226667pt;}
.y97{bottom:164.826667pt;}
.yc3{bottom:165.466667pt;}
.y104{bottom:166.426667pt;}
.y19c{bottom:167.866667pt;}
.ye1{bottom:170.106667pt;}
.y2b{bottom:177.314667pt;}
.y67{bottom:177.626667pt;}
.y103{bottom:180.026667pt;}
.y144{bottom:180.506667pt;}
.y1a{bottom:182.106667pt;}
.y170{bottom:183.706667pt;}
.y96{bottom:184.026667pt;}
.yc2{bottom:185.946667pt;}
.y129{bottom:187.546667pt;}
.y19b{bottom:188.346667pt;}
.ye0{bottom:190.426667pt;}
.y1c3{bottom:192.346667pt;}
.y66{bottom:197.626667pt;}
.y2a{bottom:197.794667pt;}
.y102{bottom:200.506667pt;}
.y143{bottom:200.986667pt;}
.y95{bottom:203.066667pt;}
.y16f{bottom:203.226667pt;}
.yc1{bottom:206.426667pt;}
.y19a{bottom:207.866667pt;}
.y128{bottom:208.666667pt;}
.y19{bottom:209.306667pt;}
.ydf{bottom:210.906667pt;}
.y1c2{bottom:214.106667pt;}
.y65{bottom:217.626667pt;}
.y29{bottom:218.274667pt;}
.y101{bottom:220.986667pt;}
.y142{bottom:221.466667pt;}
.y94{bottom:222.106667pt;}
.y16e{bottom:222.266667pt;}
.yc0{bottom:226.906667pt;}
.y199{bottom:227.226667pt;}
.y127{bottom:229.786667pt;}
.yde{bottom:231.386667pt;}
.y1c1{bottom:235.866667pt;}
.y18{bottom:236.506667pt;}
.y64{bottom:237.786667pt;}
.y93{bottom:241.306667pt;}
.y100{bottom:241.466667pt;}
.y141{bottom:241.946667pt;}
.y16d{bottom:242.746667pt;}
.y198{bottom:246.746667pt;}
.ybf{bottom:247.226667pt;}
.y126{bottom:250.906667pt;}
.ydd{bottom:251.866667pt;}
.y63{bottom:257.786667pt;}
.y92{bottom:260.346667pt;}
.yff{bottom:261.946667pt;}
.y140{bottom:262.266667pt;}
.y16c{bottom:263.226667pt;}
.y197{bottom:266.266667pt;}
.ybe{bottom:267.706667pt;}
.y125{bottom:272.026667pt;}
.ydc{bottom:272.346667pt;}
.y62{bottom:277.786667pt;}
.y91{bottom:279.386667pt;}
.y1c0{bottom:279.546667pt;}
.yfe{bottom:282.266667pt;}
.y13f{bottom:282.746667pt;}
.y16b{bottom:283.706667pt;}
.y196{bottom:283.866667pt;}
.ybd{bottom:288.186667pt;}
.ydb{bottom:290.746667pt;}
.y124{bottom:293.186667pt;}
.y90{bottom:296.866667pt;}
.y61{bottom:297.986667pt;}
.y1bf{bottom:299.106667pt;}
.y195{bottom:300.866667pt;}
.yfd{bottom:302.786667pt;}
.y13e{bottom:303.266667pt;}
.y16a{bottom:304.226667pt;}
.ybc{bottom:308.706667pt;}
.y8f{bottom:313.346667pt;}
.y123{bottom:314.306667pt;}
.y60{bottom:317.986667pt;}
.y1be{bottom:318.306667pt;}
.y194{bottom:320.386667pt;}
.yfc{bottom:323.266667pt;}
.y13d{bottom:323.746667pt;}
.y169{bottom:324.706667pt;}
.ybb{bottom:329.186667pt;}
.y15b{bottom:331.586667pt;}
.y8e{bottom:332.546667pt;}
.y122{bottom:335.426667pt;}
.y5f{bottom:337.986667pt;}
.y1bd{bottom:340.226667pt;}
.yfb{bottom:343.746667pt;}
.y13c{bottom:344.226667pt;}
.y168{bottom:345.026667pt;}
.y15a{bottom:348.386667pt;}
.yba{bottom:349.666667pt;}
.y8d{bottom:351.586667pt;}
.y193{bottom:355.106667pt;}
.y121{bottom:356.546667pt;}
.yfa{bottom:357.346667pt;}
.y5e{bottom:358.146667pt;}
.y26{bottom:361.346667pt;}
.y1bc{bottom:361.986667pt;}
.y13b{bottom:364.706667pt;}
.y167{bottom:365.506667pt;}
.y159{bottom:368.866667pt;}
.yb9{bottom:369.986667pt;}
.y8c{bottom:370.626667pt;}
.y192{bottom:374.466667pt;}
.y120{bottom:377.026667pt;}
.yf9{bottom:377.826667pt;}
.y5d{bottom:378.146667pt;}
.y1bb{bottom:383.746667pt;}
.y13a{bottom:385.026667pt;}
.y24{bottom:388.066667pt;}
.y158{bottom:389.186667pt;}
.y8b{bottom:389.666667pt;}
.yb8{bottom:390.466667pt;}
.y191{bottom:393.986667pt;}
.y11f{bottom:397.506667pt;}
.y5c{bottom:398.146667pt;}
.yf8{bottom:398.306667pt;}
.y166{bottom:403.586667pt;}
.y139{bottom:405.506667pt;}
.y1ba{bottom:405.666667pt;}
.y8a{bottom:408.866667pt;}
.y157{bottom:409.666667pt;}
.y11e{bottom:410.466667pt;}
.yb7{bottom:410.946667pt;}
.y190{bottom:413.506667pt;}
.y165{bottom:417.826667pt;}
.y5b{bottom:418.306667pt;}
.yf7{bottom:418.786667pt;}
.y1b9{bottom:425.186667pt;}
.y138{bottom:425.986667pt;}
.y89{bottom:427.906667pt;}
.y156{bottom:430.146667pt;}
.y22{bottom:430.786667pt;}
.yb6{bottom:431.426667pt;}
.y11d{bottom:431.586667pt;}
.y164{bottom:432.226667pt;}
.y18f{bottom:433.026667pt;}
.y5a{bottom:438.306667pt;}
.yf6{bottom:439.106667pt;}
.y1b8{bottom:444.386667pt;}
.y137{bottom:446.466667pt;}
.y88{bottom:446.946667pt;}
.y155{bottom:450.626667pt;}
.yb5{bottom:451.906667pt;}
.y11c{bottom:452.706667pt;}
.y59{bottom:458.306667pt;}
.y21{bottom:459.266667pt;}
.yf5{bottom:459.586667pt;}
.y163{bottom:460.706667pt;}
.y87{bottom:466.146667pt;}
.y136{bottom:466.946667pt;}
.y18e{bottom:467.586667pt;}
.y154{bottom:471.106667pt;}
.yb4{bottom:472.386667pt;}
.yf4{bottom:473.186667pt;}
.y11b{bottom:473.826667pt;}
.y17{bottom:474.306667pt;}
.y162{bottom:475.106667pt;}
.y58{bottom:478.466667pt;}
.y135{bottom:484.706667pt;}
.y86{bottom:485.186667pt;}
.y18d{bottom:487.106667pt;}
.y1b7{bottom:488.066667pt;}
.y161{bottom:490.786667pt;}
.y153{bottom:491.586667pt;}
.yb3{bottom:492.706667pt;}
.yf3{bottom:493.666667pt;}
.y11a{bottom:494.946667pt;}
.y57{bottom:498.466667pt;}
.y85{bottom:504.226667pt;}
.y18c{bottom:506.626667pt;}
.y1b6{bottom:509.826667pt;}
.yda{bottom:511.266667pt;}
.y152{bottom:511.906667pt;}
.yb2{bottom:513.186667pt;}
.yf2{bottom:514.146667pt;}
.y119{bottom:516.066667pt;}
.y56{bottom:518.466667pt;}
.y15f{bottom:519.906667pt;}
.y84{bottom:523.426667pt;}
.y18b{bottom:526.146667pt;}
.yd9{bottom:529.213333pt;}
.y1b5{bottom:529.373333pt;}
.y151{bottom:532.413333pt;}
.yb1{bottom:533.693333pt;}
.yf1{bottom:535.613333pt;}
.y55{bottom:536.733333pt;}
.y118{bottom:537.213333pt;}
.yf0{bottom:541.373333pt;}
.y83{bottom:542.493333pt;}
.y15e{bottom:545.053333pt;}
.y18a{bottom:545.693333pt;}
.y1b4{bottom:548.733333pt;}
.yd8{bottom:549.533333pt;}
.y150{bottom:552.893333pt;}
.y54{bottom:554.173333pt;}
.y117{bottom:558.333333pt;}
.y82{bottom:561.533333pt;}
.y189{bottom:563.133333pt;}
.y15d{bottom:565.533333pt;}
.yef{bottom:568.093333pt;}
.yd7{bottom:570.013333pt;}
.y1b3{bottom:570.493333pt;}
.y14f{bottom:573.373333pt;}
.y53{bottom:574.333333pt;}
.yb0{bottom:574.653333pt;}
.y116{bottom:579.453333pt;}
.y188{bottom:580.253333pt;}
.y81{bottom:580.733333pt;}
.yee{bottom:586.013333pt;}
.yd6{bottom:590.493333pt;}
.y1b2{bottom:592.253333pt;}
.y14e{bottom:593.853333pt;}
.y52{bottom:594.333333pt;}
.yaf{bottom:594.973333pt;}
.y80{bottom:599.773333pt;}
.y115{bottom:600.573333pt;}
.yed{bottom:606.333333pt;}
.yd5{bottom:610.973333pt;}
.y14d{bottom:611.613333pt;}
.y1b1{bottom:614.173333pt;}
.y51{bottom:614.333333pt;}
.yae{bottom:615.453333pt;}
.y7f{bottom:618.813333pt;}
.y187{bottom:619.293333pt;}
.y114{bottom:621.693333pt;}
.yec{bottom:626.813333pt;}
.yd4{bottom:631.453333pt;}
.y50{bottom:634.493333pt;}
.yad{bottom:635.933333pt;}
.y7e{bottom:637.853333pt;}
.y186{bottom:638.653333pt;}
.y113{bottom:642.813333pt;}
.yeb{bottom:647.293333pt;}
.yd3{bottom:651.933333pt;}
.y4f{bottom:654.493333pt;}
.y1b0{bottom:655.453333pt;}
.yac{bottom:656.413333pt;}
.y7d{bottom:657.053333pt;}
.y185{bottom:658.173333pt;}
.y112{bottom:663.933333pt;}
.yea{bottom:667.773333pt;}
.yd2{bottom:672.253333pt;}
.y4e{bottom:674.493333pt;}
.y1af{bottom:674.653333pt;}
.y7c{bottom:676.093333pt;}
.yab{bottom:676.893333pt;}
.y184{bottom:677.693333pt;}
.y111{bottom:685.053333pt;}
.ye9{bottom:688.253333pt;}
.y134{bottom:689.213333pt;}
.yd1{bottom:692.733333pt;}
.y4d{bottom:694.653333pt;}
.y7b{bottom:695.133333pt;}
.yd0{bottom:695.293333pt;}
.y1ae{bottom:696.893333pt;}
.yaa{bottom:697.373333pt;}
.y110{bottom:706.173333pt;}
.ye8{bottom:708.733333pt;}
.y133{bottom:709.693333pt;}
.y183{bottom:712.253333pt;}
.ycf{bottom:713.213333pt;}
.y7a{bottom:714.333333pt;}
.y4c{bottom:714.653333pt;}
.ya9{bottom:717.693333pt;}
.y15{bottom:719.293333pt;}
.y1ad{bottom:719.453333pt;}
.y10f{bottom:727.293333pt;}
.ye7{bottom:729.053333pt;}
.y132{bottom:730.173333pt;}
.y182{bottom:731.773333pt;}
.y11{bottom:732.253333pt;}
.y79{bottom:733.373333pt;}
.yce{bottom:733.693333pt;}
.y4b{bottom:734.653333pt;}
.ya8{bottom:736.253333pt;}
.y1ac{bottom:741.533333pt;}
.y10e{bottom:748.413333pt;}
.ye6{bottom:749.533333pt;}
.y131{bottom:750.653333pt;}
.y181{bottom:751.293333pt;}
.y78{bottom:752.413333pt;}
.ya7{bottom:754.173333pt;}
.y4a{bottom:754.813333pt;}
.y1ab{bottom:763.293333pt;}
.y10d{bottom:769.573333pt;}
.ye5{bottom:770.053333pt;}
.y180{bottom:770.853333pt;}
.y130{bottom:771.173333pt;}
.y77{bottom:771.653333pt;}
.ya6{bottom:774.533333pt;}
.y49{bottom:774.853333pt;}
.y1aa{bottom:782.853333pt;}
.y17f{bottom:788.453333pt;}
.y14c{bottom:789.093333pt;}
.ye4{bottom:790.533333pt;}
.y76{bottom:790.693333pt;}
.y12f{bottom:791.493333pt;}
.ycd{bottom:793.093333pt;}
.y48{bottom:794.853333pt;}
.ya5{bottom:795.013333pt;}
.y1a9{bottom:802.213333pt;}
.y17e{bottom:805.413333pt;}
.y75{bottom:808.133333pt;}
.y14b{bottom:809.573333pt;}
.ycc{bottom:811.013333pt;}
.y12e{bottom:811.973333pt;}
.y108{bottom:813.253333pt;}
.yf{bottom:813.733333pt;}
.y47{bottom:815.013333pt;}
.ya4{bottom:815.493333pt;}
.y1a8{bottom:823.973333pt;}
.y74{bottom:824.613333pt;}
.y17d{bottom:824.933333pt;}
.yc{bottom:825.893333pt;}
.y12d{bottom:829.893333pt;}
.y14a{bottom:830.053333pt;}
.ycb{bottom:831.493333pt;}
.y46{bottom:835.013333pt;}
.ya3{bottom:835.973333pt;}
.y73{bottom:843.653333pt;}
.y17c{bottom:844.453333pt;}
.y1a7{bottom:845.893333pt;}
.y149{bottom:847.813333pt;}
.yca{bottom:851.813333pt;}
.y45{bottom:855.013333pt;}
.ya2{bottom:856.453333pt;}
.y72{bottom:862.853333pt;}
.y17b{bottom:863.973333pt;}
.y1a6{bottom:867.653333pt;}
.yc9{bottom:872.293333pt;}
.y44{bottom:875.173333pt;}
.ya1{bottom:876.933333pt;}
.y71{bottom:881.893333pt;}
.y17a{bottom:883.493333pt;}
.y1a5{bottom:889.413333pt;}
.yc8{bottom:892.773333pt;}
.y43{bottom:895.173333pt;}
.ya0{bottom:897.253333pt;}
.yb{bottom:900.453333pt;}
.y70{bottom:900.933333pt;}
.y1a4{bottom:908.933333pt;}
.yc7{bottom:913.253333pt;}
.y42{bottom:915.173333pt;}
.ya{bottom:915.653333pt;}
.y9f{bottom:915.813333pt;}
.y179{bottom:918.053333pt;}
.y6f{bottom:919.973333pt;}
.y1a3{bottom:928.293333pt;}
.y7{bottom:930.533333pt;}
.y9e{bottom:933.733333pt;}
.y41{bottom:935.333333pt;}
.y178{bottom:937.573333pt;}
.y6e{bottom:939.173333pt;}
.y1a2{bottom:950.053333pt;}
.y37{bottom:953.893333pt;}
.y9d{bottom:954.213333pt;}
.y40{bottom:955.333333pt;}
.y177{bottom:957.093333pt;}
.y6d{bottom:958.213333pt;}
.y1a1{bottom:971.813333pt;}
.y9c{bottom:974.533333pt;}
.y3f{bottom:975.333333pt;}
.y176{bottom:976.453333pt;}
.y6c{bottom:977.253333pt;}
.y1a0{bottom:993.733333pt;}
.y9b{bottom:995.013333pt;}
.y3e{bottom:995.493333pt;}
.y175{bottom:995.973333pt;}
.y6b{bottom:996.453333pt;}
.y3d{bottom:1015.520000pt;}
.y1{bottom:1059.680000pt;}
.y5{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h10{height:12.160000pt;}
.h14{height:12.960000pt;}
.h32{height:13.600000pt;}
.h33{height:13.760000pt;}
.h31{height:13.792000pt;}
.h18{height:15.040000pt;}
.h21{height:15.360000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h2e{height:20.480000pt;}
.h2f{height:20.512000pt;}
.h17{height:22.223750pt;}
.h30{height:24.359375pt;}
.h22{height:25.907187pt;}
.h1d{height:26.720000pt;}
.h2d{height:27.200000pt;}
.h29{height:28.075625pt;}
.h28{height:28.256875pt;}
.h1a{height:28.480000pt;}
.h11{height:29.040312pt;}
.h35{height:32.641562pt;}
.h15{height:32.788125pt;}
.h19{height:35.975313pt;}
.h23{height:36.304688pt;}
.h20{height:36.539062pt;}
.h26{height:36.703125pt;}
.h2a{height:37.799375pt;}
.h1e{height:40.177188pt;}
.h36{height:40.453125pt;}
.h1b{height:42.720000pt;}
.h13{height:43.343750pt;}
.h1c{height:44.562500pt;}
.h34{height:44.821250pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h25{height:48.937500pt;}
.h27{height:49.075000pt;}
.h6{height:50.712187pt;}
.he{height:57.647187pt;}
.h2c{height:59.579063pt;}
.hf{height:60.764863pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.h2b{height:69.179063pt;}
.ha{height:69.750000pt;}
.hd{height:72.480000pt;}
.h7{height:75.465000pt;}
.h12{height:81.472000pt;}
.h24{height:83.392000pt;}
.h8{height:96.032000pt;}
.h1f{height:229.306667pt;}
.h16{height:244.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:48.160000pt;}
.w14{width:58.432000pt;}
.wf{width:61.280000pt;}
.w7{width:68.160000pt;}
.w12{width:68.992000pt;}
.w13{width:69.120000pt;}
.we{width:72.352000pt;}
.w15{width:90.080000pt;}
.w6{width:109.112000pt;}
.w10{width:138.106667pt;}
.w11{width:148.506667pt;}
.wd{width:152.320000pt;}
.wb{width:295.266667pt;}
.wa{width:316.826667pt;}
.wc{width:412.866667pt;}
.w5{width:485.666667pt;}
.w8{width:547.933333pt;}
.w4{width:550.973333pt;}
.w9{width:612.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:1.440000pt;}
.x4{left:5.760000pt;}
.xa{left:7.200000pt;}
.x6{left:9.600000pt;}
.x19{left:10.760000pt;}
.x1b{left:12.320000pt;}
.x12{left:14.880000pt;}
.x2{left:18.400000pt;}
.x2a{left:19.360000pt;}
.x27{left:20.320000pt;}
.x28{left:21.920000pt;}
.x1e{left:26.720000pt;}
.x1c{left:28.320000pt;}
.x29{left:30.080000pt;}
.x1d{left:32.360000pt;}
.x8{left:34.720000pt;}
.x23{left:36.800000pt;}
.x10{left:65.626667pt;}
.x9{left:88.992000pt;}
.xc{left:90.112000pt;}
.x1{left:96.031988pt;}
.x5{left:97.312000pt;}
.x3{left:147.066667pt;}
.xb{left:157.146667pt;}
.x14{left:187.706667pt;}
.x13{left:234.586667pt;}
.x18{left:248.666667pt;}
.xd{left:278.114667pt;}
.x11{left:289.666667pt;}
.x1a{left:321.026667pt;}
.x21{left:378.626655pt;}
.x20{left:381.986655pt;}
.x15{left:403.426667pt;}
.xf{left:406.946667pt;}
.x16{left:411.266655pt;}
.xe{left:437.501333pt;}
.x24{left:480.253333pt;}
.x17{left:499.933322pt;}
.x22{left:549.373333pt;}
.x7{left:585.253333pt;}
.x25{left:607.813333pt;}
.x1f{left:697.253322pt;}
}




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