
    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_d921cda3b87ec999d4282bb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_3ca1ca0a7d22fef8938fdf4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_45a042a9b94265e895844e54.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_2e2580dc133fbc5117f8cf76.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_daaca145e1dbd321d3eea1d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2c7a7cefd27ba517d706743d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_9585f806189b54858dbf3fd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.867676;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_5c1276d9459eada15f0a8f4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.669434;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_d0117fef678bf7932209d119.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736328;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_ff9de244686642615bf515b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d8bb8ea9c05a52241cff24f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.867676;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_1fa20527229d8dcb7420d6da.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.669434;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_1b6c5e12faf694d1ff12066f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.736328;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_7196e958d524ec2f0e893cdc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.736328;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_b5dbf3020ee7b8b6b3b954ef.woff2')format("woff");}.fff{font-family:fff;line-height:0.736328;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_fb9e89ab8551466764fa78da.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.736328;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_aabcb65d5d5f0883cb4aabcc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.736328;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_9305f14084b0ef65ebbc3624.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.736328;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_b667c3d29dbb516ffcaa1bbe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.736328;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_91630df422f321a1c32d228f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.737305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2460957818651bdc67962b81.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_012f82fc3d08515ff5e98f65.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.736328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ae3b0956884a88aa67e76aff.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.736328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ec02a29b8d085992db2da987.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.736328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2aa2c757a89b234b13ae71d9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.736328;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:ff1a;src:url('chunks/assets/font_1549b45a9f888e5c2570a5cb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.736328;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:ff1b;src:url('chunks/assets/font_3eaa3bef2790ccb9968e48ad.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.736328;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;}
.m3{transform:matrix(0.000000,-0.249726,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249726,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249726,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1f{letter-spacing:-2.972867px;}
.ls17{letter-spacing:-1.728000px;}
.ls23{letter-spacing:-1.584000px;}
.lsf{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.609408px;}
.lse{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.443808px;}
.ls9{letter-spacing:-0.366624px;}
.lsc{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.008078px;}
.ls19{letter-spacing:0.008183px;}
.ls6{letter-spacing:0.018144px;}
.ls3{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.152352px;}
.ls24{letter-spacing:0.232848px;}
.ls14{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.342432px;}
.ls7{letter-spacing:0.443808px;}
.ls15{letter-spacing:0.501120px;}
.ls2{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.723600px;}
.ls10{letter-spacing:2.160000px;}
.ls4{letter-spacing:3.600000px;}
.ls1{letter-spacing:5.040000px;}
.ls1a{letter-spacing:6.480000px;}
.ls12{letter-spacing:7.920000px;}
.ls22{letter-spacing:9.360000px;}
.ls21{letter-spacing:10.800000px;}
.ls13{letter-spacing:12.240000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.120000px;}
.ws1{word-spacing:-23.676192px;}
.ws15{word-spacing:-21.222432px;}
.wse{word-spacing:-20.880000px;}
.ws10{word-spacing:-18.648000px;}
.ws5{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.496000px;}
.ws8{word-spacing:-17.352000px;}
.wsb{word-spacing:-17.064000px;}
.ws6{word-spacing:-16.560000px;}
.ws16{word-spacing:-12.112848px;}
.wsc{word-spacing:-11.880000px;}
.wsd{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.066240px;}
.ws12{word-spacing:-0.044852px;}
.ws13{word-spacing:-0.044335px;}
.ws7{word-spacing:0.000000px;}
.ws14{word-spacing:2.932475px;}
._22{margin-left:-72.885236px;}
._21{margin-left:-71.674222px;}
._20{margin-left:-69.924979px;}
._24{margin-left:-68.388063px;}
._1f{margin-left:-63.331081px;}
._25{margin-left:-61.605789px;}
._1a{margin-left:-10.152000px;}
._4{margin-left:-8.758944px;}
._19{margin-left:-7.258176px;}
._6{margin-left:-5.847840px;}
._15{margin-left:-4.780512px;}
._14{margin-left:-3.566592px;}
._5{margin-left:-2.553120px;}
._1{margin-left:-1.457568px;}
._3{width:1.379808px;}
._a{width:2.406528px;}
._2{width:4.064256px;}
._0{width:5.521824px;}
._c{width:7.361568px;}
._f{width:8.453088px;}
._d{width:9.504000px;}
._e{width:11.302272px;}
._23{width:12.483360px;}
._7{width:13.680000px;}
._b{width:15.059520px;}
._9{width:16.935840px;}
._8{width:18.897120px;}
._18{width:20.015712px;}
._13{width:21.504384px;}
._2c{width:22.510944px;}
._12{width:23.544000px;}
._26{width:25.416000px;}
._16{width:28.212192px;}
._17{width:29.818368px;}
._2b{width:36.869760px;}
._2a{width:38.448000px;}
._1e{width:40.337568px;}
._1d{width:42.336000px;}
._29{width:56.222496px;}
._27{width:57.744000px;}
._28{width:58.862880px;}
._1b{width:63.216000px;}
._1c{width:64.656000px;}
._10{width:846.000000px;}
._11{width:1197.360000px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:40.392214px;}
.fsc{font-size:40.392257px;}
.fsb{font-size:40.392263px;}
.fsa{font-size:40.392350px;}
.fse{font-size:40.392400px;}
.fs8{font-size:40.915258px;}
.fs9{font-size:44.335026px;}
.fs7{font-size:44.852370px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:2.213651px;}
.ycb{bottom:2.213727px;}
.ycd{bottom:2.213972px;}
.yc8{bottom:2.214037px;}
.yca{bottom:2.214786px;}
.yb0{bottom:2.243471px;}
.ya7{bottom:4.380000px;}
.y2e{bottom:13.020000px;}
.yaa{bottom:23.460000px;}
.ya6{bottom:28.500000px;}
.ya9{bottom:47.580000px;}
.ya5{bottom:52.620000px;}
.y2d{bottom:64.500000px;}
.ya4{bottom:76.380000px;}
.ya8{bottom:77.100000px;}
.y2c{bottom:78.240000px;}
.y3{bottom:89.760000px;}
.ya3{bottom:100.500000px;}
.y2{bottom:107.040000px;}
.ya2{bottom:124.620000px;}
.y90{bottom:125.760000px;}
.y101{bottom:126.120000px;}
.y55{bottom:129.000000px;}
.ye3{bottom:130.080000px;}
.yac{bottom:138.000000px;}
.ya1{bottom:148.380000px;}
.y29{bottom:149.520000px;}
.y8f{bottom:149.880000px;}
.y100{bottom:150.240000px;}
.y54{bottom:153.120000px;}
.ye2{bottom:154.200000px;}
.yab{bottom:162.120000px;}
.ya0{bottom:172.500000px;}
.y8e{bottom:174.000000px;}
.y53{bottom:176.880000px;}
.ye1{bottom:178.320000px;}
.y28{bottom:179.040000px;}
.yc4{bottom:186.240000px;}
.y99{bottom:190.500000px;}
.y9f{bottom:196.620000px;}
.y8d{bottom:198.120000px;}
.y52{bottom:201.000000px;}
.y27{bottom:203.160000px;}
.yff{bottom:206.400000px;}
.yc6{bottom:208.145850px;}
.ye0{bottom:210.360000px;}
.yae{bottom:210.840450px;}
.yc3{bottom:218.640000px;}
.y9e{bottom:220.380000px;}
.y51{bottom:225.120000px;}
.y26{bottom:226.920000px;}
.yfe{bottom:230.520000px;}
.y8c{bottom:230.880000px;}
.ydf{bottom:234.480000px;}
.y9d{bottom:244.500000px;}
.yc2{bottom:248.160000px;}
.y6c{bottom:248.880000px;}
.yfd{bottom:254.280000px;}
.yc7{bottom:256.537500px;}
.yc9{bottom:256.537650px;}
.y50{bottom:257.880000px;}
.yde{bottom:258.600000px;}
.y25{bottom:260.040000px;}
.y8b{bottom:264.000000px;}
.yc5{bottom:266.873250px;}
.y9c{bottom:268.620000px;}
.y6b{bottom:273.000000px;}
.yaf{bottom:276.610650px;}
.y4f{bottom:282.000000px;}
.ydd{bottom:282.720000px;}
.y24{bottom:284.160000px;}
.yfc{bottom:286.680000px;}
.yad{bottom:287.080050px;}
.y8a{bottom:288.120000px;}
.y9b{bottom:292.380000px;}
.y6a{bottom:297.120000px;}
.y4e{bottom:306.120000px;}
.y23{bottom:307.920000px;}
.yfb{bottom:310.800000px;}
.y89{bottom:311.880000px;}
.ydc{bottom:314.760000px;}
.y9a{bottom:316.500000px;}
.y69{bottom:320.880000px;}
.y4d{bottom:329.880000px;}
.y22{bottom:332.040000px;}
.y88{bottom:336.000000px;}
.ydb{bottom:338.880000px;}
.yfa{bottom:342.840000px;}
.y4c{bottom:354.000000px;}
.y21{bottom:356.160000px;}
.y87{bottom:360.120000px;}
.yda{bottom:363.000000px;}
.yf9{bottom:366.960000px;}
.y68{bottom:378.120000px;}
.y20{bottom:379.920000px;}
.y86{bottom:383.880000px;}
.y4b{bottom:386.760000px;}
.yf8{bottom:390.720000px;}
.yd9{bottom:396.480000px;}
.y67{bottom:401.880000px;}
.y1f{bottom:404.040000px;}
.y85{bottom:408.000000px;}
.y4a{bottom:419.880000px;}
.yf7{bottom:423.120000px;}
.y1e{bottom:428.160000px;}
.yd8{bottom:428.880000px;}
.y84{bottom:432.120000px;}
.y66{bottom:435.000000px;}
.y49{bottom:444.000000px;}
.yf6{bottom:447.240000px;}
.y1d{bottom:451.920000px;}
.yd7{bottom:453.000000px;}
.y65{bottom:459.120000px;}
.y83{bottom:464.880000px;}
.yf5{bottom:471.000000px;}
.y1c{bottom:476.040000px;}
.y48{bottom:476.760000px;}
.yd6{bottom:477.120000px;}
.y64{bottom:482.880000px;}
.y82{bottom:498.000000px;}
.y47{bottom:500.880000px;}
.yc1{bottom:501.240000px;}
.yf4{bottom:503.400000px;}
.y63{bottom:507.000000px;}
.y1b{bottom:508.800000px;}
.y81{bottom:522.120000px;}
.y46{bottom:525.000000px;}
.yf3{bottom:527.520000px;}
.y1a{bottom:532.920000px;}
.yc0{bottom:534.000000px;}
.y62{bottom:539.760000px;}
.y80{bottom:545.880000px;}
.y45{bottom:549.120000px;}
.yf2{bottom:551.280000px;}
.y19{bottom:557.040000px;}
.ybf{bottom:558.120000px;}
.y61{bottom:563.880000px;}
.y7f{bottom:570.000000px;}
.y44{bottom:572.880000px;}
.y18{bottom:581.160000px;}
.ybe{bottom:582.240000px;}
.yf1{bottom:583.680000px;}
.y60{bottom:588.000000px;}
.y7e{bottom:594.120000px;}
.y43{bottom:597.000000px;}
.y17{bottom:604.920000px;}
.ybd{bottom:606.000000px;}
.yf0{bottom:607.800000px;}
.y98{bottom:612.120000px;}
.y42{bottom:621.120000px;}
.y5f{bottom:621.840000px;}
.y7d{bottom:626.880000px;}
.y16{bottom:629.040000px;}
.ybc{bottom:630.120000px;}
.y97{bottom:635.880000px;}
.yef{bottom:639.840000px;}
.y41{bottom:644.880000px;}
.y7c{bottom:651.000000px;}
.y5e{bottom:653.880000px;}
.ybb{bottom:654.240000px;}
.y96{bottom:660.000000px;}
.y15{bottom:662.880000px;}
.yee{bottom:663.960000px;}
.yd5{bottom:669.000000px;}
.y7b{bottom:675.120000px;}
.y40{bottom:678.000000px;}
.yba{bottom:687.000000px;}
.yed{bottom:687.720000px;}
.y95{bottom:692.760000px;}
.y14{bottom:694.920000px;}
.y7a{bottom:698.880000px;}
.yd4{bottom:701.760000px;}
.y3f{bottom:702.120000px;}
.yb9{bottom:711.120000px;}
.yec{bottom:711.840000px;}
.y3e{bottom:725.880000px;}
.y5d{bottom:726.240000px;}
.y13{bottom:728.040000px;}
.y79{bottom:732.000000px;}
.yb8{bottom:735.240000px;}
.yeb{bottom:743.880000px;}
.y3d{bottom:750.000000px;}
.y12{bottom:752.160000px;}
.yb7{bottom:759.000000px;}
.y78{bottom:764.760000px;}
.yea{bottom:768.000000px;}
.y3c{bottom:774.120000px;}
.y11{bottom:776.280000px;}
.yb6{bottom:783.120000px;}
.y77{bottom:788.880000px;}
.ye9{bottom:792.120000px;}
.y3b{bottom:797.880000px;}
.y5c{bottom:798.240000px;}
.y10{bottom:800.040000px;}
.yb5{bottom:807.240000px;}
.y76{bottom:813.000000px;}
.y3a{bottom:822.000000px;}
.yf{bottom:824.160000px;}
.yb4{bottom:831.000000px;}
.y94{bottom:831.720000px;}
.y75{bottom:837.120000px;}
.y39{bottom:846.120000px;}
.ye{bottom:848.280000px;}
.yd3{bottom:854.760000px;}
.y5b{bottom:855.120000px;}
.y74{bottom:860.880000px;}
.y93{bottom:864.120000px;}
.y38{bottom:869.880000px;}
.yd{bottom:872.040000px;}
.ye8{bottom:872.400000px;}
.yd2{bottom:878.880000px;}
.y5a{bottom:887.880000px;}
.y92{bottom:888.240000px;}
.y37{bottom:894.000000px;}
.yc{bottom:896.160000px;}
.yd1{bottom:903.000000px;}
.ye7{bottom:904.440000px;}
.y59{bottom:912.000000px;}
.y36{bottom:918.120000px;}
.yb{bottom:920.280000px;}
.yb3{bottom:921.000000px;}
.y73{bottom:926.760000px;}
.yd0{bottom:927.120000px;}
.ye6{bottom:928.560000px;}
.y58{bottom:936.120000px;}
.ya{bottom:944.040000px;}
.yb2{bottom:945.120000px;}
.y35{bottom:950.880000px;}
.ye5{bottom:952.680000px;}
.y57{bottom:960.240000px;}
.yb1{bottom:969.240000px;}
.y72{bottom:975.000000px;}
.y9{bottom:983.280000px;}
.y56{bottom:984.000000px;}
.y34{bottom:984.720000px;}
.y91{bottom:993.000000px;}
.y71{bottom:999.120000px;}
.ycf{bottom:1008.840000px;}
.y8{bottom:1016.040000px;}
.y33{bottom:1017.120000px;}
.y70{bottom:1022.880000px;}
.ye4{bottom:1032.960000px;}
.yce{bottom:1040.880000px;}
.y32{bottom:1041.240000px;}
.y6f{bottom:1047.000000px;}
.y7{bottom:1049.160000px;}
.y31{bottom:1065.000000px;}
.y6{bottom:1076.160000px;}
.y6e{bottom:1079.760000px;}
.y30{bottom:1089.120000px;}
.y5{bottom:1111.080000px;}
.y2f{bottom:1113.240000px;}
.y6d{bottom:1113.600000px;}
.y4{bottom:1140.960000px;}
.y2b{bottom:1146.000000px;}
.y2a{bottom:1179.120000px;}
.y1{bottom:1182.720000px;}
.h1a{height:12.178695px;}
.h18{height:12.178710px;}
.h16{height:12.178712px;}
.h14{height:12.178737px;}
.h1c{height:12.178752px;}
.hf{height:12.336405px;}
.h1b{height:28.972735px;}
.h19{height:28.972767px;}
.h17{height:28.972771px;}
.h15{height:28.972833px;}
.h1d{height:28.972869px;}
.h10{height:29.347907px;}
.h13{height:30.826698px;}
.he{height:31.186414px;}
.h11{height:31.672266px;}
.h5{height:33.018047px;}
.h8{height:34.500000px;}
.h2{height:42.022969px;}
.hc{height:44.893125px;}
.h9{height:48.796875px;}
.h6{height:49.992188px;}
.h1{height:50.027344px;}
.h7{height:56.604375px;}
.ha{height:57.474844px;}
.h4{height:57.498047px;}
.h3{height:65.387813px;}
.h12{height:217.003200px;}
.hd{height:219.812550px;}
.hb{height:337.500000px;}
.h0{height:1263.000000px;}
.w8{width:11.244465px;}
.w7{width:11.244489px;}
.w5{width:11.375706px;}
.wa{width:16.121325px;}
.w9{width:16.866690px;}
.wb{width:16.866735px;}
.wc{width:16.866765px;}
.w1{width:46.500000px;}
.w4{width:217.534050px;}
.w3{width:283.500000px;}
.w2{width:457.500000px;}
.w6{width:702.710250px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:9.240000px;}
.x10{left:14.577000px;}
.xe{left:23.040000px;}
.xa{left:75.000000px;}
.x1{left:84.960000px;}
.x9{left:95.760000px;}
.x2{left:105.480000px;}
.x3{left:127.440000px;}
.x6{left:147.600000px;}
.x5{left:154.800000px;}
.x17{left:157.700250px;}
.x16{left:198.720000px;}
.x18{left:202.469550px;}
.x4{left:240.480000px;}
.x19{left:246.516750px;}
.xd{left:261.360000px;}
.x7{left:274.320000px;}
.x1a{left:291.286050px;}
.x1b{left:334.611150px;}
.x1c{left:378.658350px;}
.x8{left:423.000000px;}
.x1d{left:468.196950px;}
.x1e{left:513.688350px;}
.xc{left:531.000000px;}
.x1f{left:557.374500px;}
.xf{left:563.781300px;}
.x20{left:602.143800px;}
.x11{left:626.976000px;}
.x22{left:644.024700px;}
.x12{left:672.267750px;}
.x21{left:687.349950px;}
.x13{left:716.828850px;}
.x24{left:732.480150px;}
.x14{left:762.120600px;}
.x23{left:779.054550px;}
.x15{left:810.720000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1f{letter-spacing:-2.642548pt;}
.ls17{letter-spacing:-1.536000pt;}
.ls23{letter-spacing:-1.408000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.541696pt;}
.lse{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.394496pt;}
.ls9{letter-spacing:-0.325888pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.007181pt;}
.ls19{letter-spacing:0.007274pt;}
.ls6{letter-spacing:0.016128pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.135424pt;}
.ls24{letter-spacing:0.206976pt;}
.ls14{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.304384pt;}
.ls7{letter-spacing:0.394496pt;}
.ls15{letter-spacing:0.445440pt;}
.ls2{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.643200pt;}
.ls10{letter-spacing:1.920000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls1{letter-spacing:4.480000pt;}
.ls1a{letter-spacing:5.760000pt;}
.ls12{letter-spacing:7.040000pt;}
.ls22{letter-spacing:8.320000pt;}
.ls21{letter-spacing:9.600000pt;}
.ls13{letter-spacing:10.880000pt;}
.ws0{word-spacing:-21.440000pt;}
.ws1{word-spacing:-21.045504pt;}
.ws15{word-spacing:-18.864384pt;}
.wse{word-spacing:-18.560000pt;}
.ws10{word-spacing:-16.576000pt;}
.ws5{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.552000pt;}
.ws8{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws16{word-spacing:-10.766976pt;}
.wsc{word-spacing:-10.560000pt;}
.wsd{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.058880pt;}
.ws12{word-spacing:-0.039869pt;}
.ws13{word-spacing:-0.039409pt;}
.ws7{word-spacing:0.000000pt;}
.ws14{word-spacing:2.606644pt;}
._22{margin-left:-64.786876pt;}
._21{margin-left:-63.710419pt;}
._20{margin-left:-62.155537pt;}
._24{margin-left:-60.789389pt;}
._1f{margin-left:-56.294294pt;}
._25{margin-left:-54.760702pt;}
._1a{margin-left:-9.024000pt;}
._4{margin-left:-7.785728pt;}
._19{margin-left:-6.451712pt;}
._6{margin-left:-5.198080pt;}
._15{margin-left:-4.249344pt;}
._14{margin-left:-3.170304pt;}
._5{margin-left:-2.269440pt;}
._1{margin-left:-1.295616pt;}
._3{width:1.226496pt;}
._a{width:2.139136pt;}
._2{width:3.612672pt;}
._0{width:4.908288pt;}
._c{width:6.543616pt;}
._f{width:7.513856pt;}
._d{width:8.448000pt;}
._e{width:10.046464pt;}
._23{width:11.096320pt;}
._7{width:12.160000pt;}
._b{width:13.386240pt;}
._9{width:15.054080pt;}
._8{width:16.797440pt;}
._18{width:17.791744pt;}
._13{width:19.115008pt;}
._2c{width:20.009728pt;}
._12{width:20.928000pt;}
._26{width:22.592000pt;}
._16{width:25.077504pt;}
._17{width:26.505216pt;}
._2b{width:32.773120pt;}
._2a{width:34.176000pt;}
._1e{width:35.855616pt;}
._1d{width:37.632000pt;}
._29{width:49.975552pt;}
._27{width:51.328000pt;}
._28{width:52.322560pt;}
._1b{width:56.192000pt;}
._1c{width:57.472000pt;}
._10{width:752.000000pt;}
._11{width:1064.320000pt;}
.fsd{font-size:35.904190pt;}
.fsc{font-size:35.904229pt;}
.fsb{font-size:35.904234pt;}
.fsa{font-size:35.904312pt;}
.fse{font-size:35.904355pt;}
.fs8{font-size:36.369118pt;}
.fs9{font-size:39.408912pt;}
.fs7{font-size:39.868773pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:1.967690pt;}
.ycb{bottom:1.967757pt;}
.ycd{bottom:1.967975pt;}
.yc8{bottom:1.968033pt;}
.yca{bottom:1.968699pt;}
.yb0{bottom:1.994197pt;}
.ya7{bottom:3.893333pt;}
.y2e{bottom:11.573333pt;}
.yaa{bottom:20.853333pt;}
.ya6{bottom:25.333333pt;}
.ya9{bottom:42.293333pt;}
.ya5{bottom:46.773333pt;}
.y2d{bottom:57.333333pt;}
.ya4{bottom:67.893333pt;}
.ya8{bottom:68.533333pt;}
.y2c{bottom:69.546667pt;}
.y3{bottom:79.786667pt;}
.ya3{bottom:89.333333pt;}
.y2{bottom:95.146667pt;}
.ya2{bottom:110.773333pt;}
.y90{bottom:111.786667pt;}
.y101{bottom:112.106667pt;}
.y55{bottom:114.666667pt;}
.ye3{bottom:115.626667pt;}
.yac{bottom:122.666667pt;}
.ya1{bottom:131.893333pt;}
.y29{bottom:132.906667pt;}
.y8f{bottom:133.226667pt;}
.y100{bottom:133.546667pt;}
.y54{bottom:136.106667pt;}
.ye2{bottom:137.066667pt;}
.yab{bottom:144.106667pt;}
.ya0{bottom:153.333333pt;}
.y8e{bottom:154.666667pt;}
.y53{bottom:157.226667pt;}
.ye1{bottom:158.506667pt;}
.y28{bottom:159.146667pt;}
.yc4{bottom:165.546667pt;}
.y99{bottom:169.333333pt;}
.y9f{bottom:174.773333pt;}
.y8d{bottom:176.106667pt;}
.y52{bottom:178.666667pt;}
.y27{bottom:180.586667pt;}
.yff{bottom:183.466667pt;}
.yc6{bottom:185.018533pt;}
.ye0{bottom:186.986667pt;}
.yae{bottom:187.413733pt;}
.yc3{bottom:194.346667pt;}
.y9e{bottom:195.893333pt;}
.y51{bottom:200.106667pt;}
.y26{bottom:201.706667pt;}
.yfe{bottom:204.906667pt;}
.y8c{bottom:205.226667pt;}
.ydf{bottom:208.426667pt;}
.y9d{bottom:217.333333pt;}
.yc2{bottom:220.586667pt;}
.y6c{bottom:221.226667pt;}
.yfd{bottom:226.026667pt;}
.yc7{bottom:228.033333pt;}
.yc9{bottom:228.033467pt;}
.y50{bottom:229.226667pt;}
.yde{bottom:229.866667pt;}
.y25{bottom:231.146667pt;}
.y8b{bottom:234.666667pt;}
.yc5{bottom:237.220667pt;}
.y9c{bottom:238.773333pt;}
.y6b{bottom:242.666667pt;}
.yaf{bottom:245.876133pt;}
.y4f{bottom:250.666667pt;}
.ydd{bottom:251.306667pt;}
.y24{bottom:252.586667pt;}
.yfc{bottom:254.826667pt;}
.yad{bottom:255.182267pt;}
.y8a{bottom:256.106667pt;}
.y9b{bottom:259.893333pt;}
.y6a{bottom:264.106667pt;}
.y4e{bottom:272.106667pt;}
.y23{bottom:273.706667pt;}
.yfb{bottom:276.266667pt;}
.y89{bottom:277.226667pt;}
.ydc{bottom:279.786667pt;}
.y9a{bottom:281.333333pt;}
.y69{bottom:285.226667pt;}
.y4d{bottom:293.226667pt;}
.y22{bottom:295.146667pt;}
.y88{bottom:298.666667pt;}
.ydb{bottom:301.226667pt;}
.yfa{bottom:304.746667pt;}
.y4c{bottom:314.666667pt;}
.y21{bottom:316.586667pt;}
.y87{bottom:320.106667pt;}
.yda{bottom:322.666667pt;}
.yf9{bottom:326.186667pt;}
.y68{bottom:336.106667pt;}
.y20{bottom:337.706667pt;}
.y86{bottom:341.226667pt;}
.y4b{bottom:343.786667pt;}
.yf8{bottom:347.306667pt;}
.yd9{bottom:352.426667pt;}
.y67{bottom:357.226667pt;}
.y1f{bottom:359.146667pt;}
.y85{bottom:362.666667pt;}
.y4a{bottom:373.226667pt;}
.yf7{bottom:376.106667pt;}
.y1e{bottom:380.586667pt;}
.yd8{bottom:381.226667pt;}
.y84{bottom:384.106667pt;}
.y66{bottom:386.666667pt;}
.y49{bottom:394.666667pt;}
.yf6{bottom:397.546667pt;}
.y1d{bottom:401.706667pt;}
.yd7{bottom:402.666667pt;}
.y65{bottom:408.106667pt;}
.y83{bottom:413.226667pt;}
.yf5{bottom:418.666667pt;}
.y1c{bottom:423.146667pt;}
.y48{bottom:423.786667pt;}
.yd6{bottom:424.106667pt;}
.y64{bottom:429.226667pt;}
.y82{bottom:442.666667pt;}
.y47{bottom:445.226667pt;}
.yc1{bottom:445.546667pt;}
.yf4{bottom:447.466667pt;}
.y63{bottom:450.666667pt;}
.y1b{bottom:452.266667pt;}
.y81{bottom:464.106667pt;}
.y46{bottom:466.666667pt;}
.yf3{bottom:468.906667pt;}
.y1a{bottom:473.706667pt;}
.yc0{bottom:474.666667pt;}
.y62{bottom:479.786667pt;}
.y80{bottom:485.226667pt;}
.y45{bottom:488.106667pt;}
.yf2{bottom:490.026667pt;}
.y19{bottom:495.146667pt;}
.ybf{bottom:496.106667pt;}
.y61{bottom:501.226667pt;}
.y7f{bottom:506.666667pt;}
.y44{bottom:509.226667pt;}
.y18{bottom:516.586667pt;}
.ybe{bottom:517.546667pt;}
.yf1{bottom:518.826667pt;}
.y60{bottom:522.666667pt;}
.y7e{bottom:528.106667pt;}
.y43{bottom:530.666667pt;}
.y17{bottom:537.706667pt;}
.ybd{bottom:538.666667pt;}
.yf0{bottom:540.266667pt;}
.y98{bottom:544.106667pt;}
.y42{bottom:552.106667pt;}
.y5f{bottom:552.746667pt;}
.y7d{bottom:557.226667pt;}
.y16{bottom:559.146667pt;}
.ybc{bottom:560.106667pt;}
.y97{bottom:565.226667pt;}
.yef{bottom:568.746667pt;}
.y41{bottom:573.226667pt;}
.y7c{bottom:578.666667pt;}
.y5e{bottom:581.226667pt;}
.ybb{bottom:581.546667pt;}
.y96{bottom:586.666667pt;}
.y15{bottom:589.226667pt;}
.yee{bottom:590.186667pt;}
.yd5{bottom:594.666667pt;}
.y7b{bottom:600.106667pt;}
.y40{bottom:602.666667pt;}
.yba{bottom:610.666667pt;}
.yed{bottom:611.306667pt;}
.y95{bottom:615.786667pt;}
.y14{bottom:617.706667pt;}
.y7a{bottom:621.226667pt;}
.yd4{bottom:623.786667pt;}
.y3f{bottom:624.106667pt;}
.yb9{bottom:632.106667pt;}
.yec{bottom:632.746667pt;}
.y3e{bottom:645.226667pt;}
.y5d{bottom:645.546667pt;}
.y13{bottom:647.146667pt;}
.y79{bottom:650.666667pt;}
.yb8{bottom:653.546667pt;}
.yeb{bottom:661.226667pt;}
.y3d{bottom:666.666667pt;}
.y12{bottom:668.586667pt;}
.yb7{bottom:674.666667pt;}
.y78{bottom:679.786667pt;}
.yea{bottom:682.666667pt;}
.y3c{bottom:688.106667pt;}
.y11{bottom:690.026667pt;}
.yb6{bottom:696.106667pt;}
.y77{bottom:701.226667pt;}
.ye9{bottom:704.106667pt;}
.y3b{bottom:709.226667pt;}
.y5c{bottom:709.546667pt;}
.y10{bottom:711.146667pt;}
.yb5{bottom:717.546667pt;}
.y76{bottom:722.666667pt;}
.y3a{bottom:730.666667pt;}
.yf{bottom:732.586667pt;}
.yb4{bottom:738.666667pt;}
.y94{bottom:739.306667pt;}
.y75{bottom:744.106667pt;}
.y39{bottom:752.106667pt;}
.ye{bottom:754.026667pt;}
.yd3{bottom:759.786667pt;}
.y5b{bottom:760.106667pt;}
.y74{bottom:765.226667pt;}
.y93{bottom:768.106667pt;}
.y38{bottom:773.226667pt;}
.yd{bottom:775.146667pt;}
.ye8{bottom:775.466667pt;}
.yd2{bottom:781.226667pt;}
.y5a{bottom:789.226667pt;}
.y92{bottom:789.546667pt;}
.y37{bottom:794.666667pt;}
.yc{bottom:796.586667pt;}
.yd1{bottom:802.666667pt;}
.ye7{bottom:803.946667pt;}
.y59{bottom:810.666667pt;}
.y36{bottom:816.106667pt;}
.yb{bottom:818.026667pt;}
.yb3{bottom:818.666667pt;}
.y73{bottom:823.786667pt;}
.yd0{bottom:824.106667pt;}
.ye6{bottom:825.386667pt;}
.y58{bottom:832.106667pt;}
.ya{bottom:839.146667pt;}
.yb2{bottom:840.106667pt;}
.y35{bottom:845.226667pt;}
.ye5{bottom:846.826667pt;}
.y57{bottom:853.546667pt;}
.yb1{bottom:861.546667pt;}
.y72{bottom:866.666667pt;}
.y9{bottom:874.026667pt;}
.y56{bottom:874.666667pt;}
.y34{bottom:875.306667pt;}
.y91{bottom:882.666667pt;}
.y71{bottom:888.106667pt;}
.ycf{bottom:896.746667pt;}
.y8{bottom:903.146667pt;}
.y33{bottom:904.106667pt;}
.y70{bottom:909.226667pt;}
.ye4{bottom:918.186667pt;}
.yce{bottom:925.226667pt;}
.y32{bottom:925.546667pt;}
.y6f{bottom:930.666667pt;}
.y7{bottom:932.586667pt;}
.y31{bottom:946.666667pt;}
.y6{bottom:956.586667pt;}
.y6e{bottom:959.786667pt;}
.y30{bottom:968.106667pt;}
.y5{bottom:987.626667pt;}
.y2f{bottom:989.546667pt;}
.y6d{bottom:989.866667pt;}
.y4{bottom:1014.186667pt;}
.y2b{bottom:1018.666667pt;}
.y2a{bottom:1048.106667pt;}
.y1{bottom:1051.306667pt;}
.h1a{height:10.825507pt;}
.h18{height:10.825520pt;}
.h16{height:10.825521pt;}
.h14{height:10.825544pt;}
.h1c{height:10.825557pt;}
.hf{height:10.965693pt;}
.h1b{height:25.753542pt;}
.h19{height:25.753570pt;}
.h17{height:25.753574pt;}
.h15{height:25.753630pt;}
.h1d{height:25.753661pt;}
.h10{height:26.087029pt;}
.h13{height:27.401509pt;}
.he{height:27.721256pt;}
.h11{height:28.153125pt;}
.h5{height:29.349375pt;}
.h8{height:30.666667pt;}
.h2{height:37.353750pt;}
.hc{height:39.905000pt;}
.h9{height:43.375000pt;}
.h6{height:44.437500pt;}
.h1{height:44.468750pt;}
.h7{height:50.315000pt;}
.ha{height:51.088750pt;}
.h4{height:51.109375pt;}
.h3{height:58.122500pt;}
.h12{height:192.891733pt;}
.hd{height:195.388933pt;}
.hb{height:300.000000pt;}
.h0{height:1122.666667pt;}
.w8{width:9.995080pt;}
.w7{width:9.995101pt;}
.w5{width:10.111739pt;}
.wa{width:14.330067pt;}
.w9{width:14.992613pt;}
.wb{width:14.992653pt;}
.wc{width:14.992680pt;}
.w1{width:41.333333pt;}
.w4{width:193.363600pt;}
.w3{width:252.000000pt;}
.w2{width:406.666667pt;}
.w6{width:624.631333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:8.213333pt;}
.x10{left:12.957333pt;}
.xe{left:20.480000pt;}
.xa{left:66.666667pt;}
.x1{left:75.520000pt;}
.x9{left:85.120000pt;}
.x2{left:93.760000pt;}
.x3{left:113.280000pt;}
.x6{left:131.200000pt;}
.x5{left:137.600000pt;}
.x17{left:140.178000pt;}
.x16{left:176.640000pt;}
.x18{left:179.972933pt;}
.x4{left:213.760000pt;}
.x19{left:219.126000pt;}
.xd{left:232.320000pt;}
.x7{left:243.840000pt;}
.x1a{left:258.920933pt;}
.x1b{left:297.432133pt;}
.x1c{left:336.585200pt;}
.x8{left:376.000000pt;}
.x1d{left:416.175067pt;}
.x1e{left:456.611867pt;}
.xc{left:472.000000pt;}
.x1f{left:495.444000pt;}
.xf{left:501.138933pt;}
.x20{left:535.238933pt;}
.x11{left:557.312000pt;}
.x22{left:572.466400pt;}
.x12{left:597.571333pt;}
.x21{left:610.977733pt;}
.x13{left:637.181200pt;}
.x24{left:651.093467pt;}
.x14{left:677.440533pt;}
.x23{left:692.492933pt;}
.x15{left:720.640000pt;}
}




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