
    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_8b2886a7ba07b1209d2f0d8a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6977f3e73fc1936d36a567d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a4354d0d6dadab61e8623431.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_87dde99fa10c848a00c0d039.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_5ecdd9fc51f7455610666b31.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_62285cb4100e9dda95f429ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_6f35f91fa72b3ea8e3c1054c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_f2ed802ee1a887c9c265c704.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_6c4e6f7cb568d17a9999b529.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c31f1e1ecc07e64fd9a63a37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_a13b82c840d5ba87e7f084eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_a99bb0ea2387d567f3377f67.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{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);}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.176000px;}
.lsf{letter-spacing:-0.768000px;}
.ls33{letter-spacing:-0.666000px;}
.ls4f{letter-spacing:-0.513600px;}
.ls46{letter-spacing:-0.460200px;}
.ls38{letter-spacing:-0.369600px;}
.ls12{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.357000px;}
.lsb{letter-spacing:-0.305400px;}
.ls4b{letter-spacing:-0.262800px;}
.ls3c{letter-spacing:-0.259800px;}
.ls37{letter-spacing:-0.206400px;}
.ls4d{letter-spacing:-0.115800px;}
.ls24{letter-spacing:-0.106800px;}
.ls22{letter-spacing:-0.093600px;}
.ls13{letter-spacing:-0.053280px;}
.ls3b{letter-spacing:-0.050700px;}
.lsd{letter-spacing:-0.018720px;}
.lsa{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.037440px;}
.ls32{letter-spacing:0.042600px;}
.ls14{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106560px;}
.ls10{letter-spacing:0.106800px;}
.ls4e{letter-spacing:0.118800px;}
.ls44{letter-spacing:0.144000px;}
.ls49{letter-spacing:0.153600px;}
.ls3e{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.197400px;}
.ls3d{letter-spacing:0.206400px;}
.ls2a{letter-spacing:0.235920px;}
.ls1b{letter-spacing:0.250800px;}
.ls25{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.lse{letter-spacing:0.288000px;}
.ls3f{letter-spacing:0.298800px;}
.ls43{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.460200px;}
.ls23{letter-spacing:0.466800px;}
.ls2{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.720000px;}
.ls4c{letter-spacing:0.774000px;}
.ls16{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.900000px;}
.ls39{letter-spacing:0.924000px;}
.ls3a{letter-spacing:0.978000px;}
.ls27{letter-spacing:0.979920px;}
.ls26{letter-spacing:1.008000px;}
.ls11{letter-spacing:1.080000px;}
.ls42{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.224000px;}
.ls8{letter-spacing:1.620000px;}
.ls9{letter-spacing:2.340000px;}
.ls1e{letter-spacing:2.520000px;}
.ls1f{letter-spacing:3.060000px;}
.ls7{letter-spacing:3.780000px;}
.ls34{letter-spacing:4.500000px;}
.ls36{letter-spacing:5.220000px;}
.ls40{letter-spacing:5.940000px;}
.ls30{letter-spacing:6.548544px;}
.ls2e{letter-spacing:6.599520px;}
.ls1a{letter-spacing:6.660000px;}
.ls2c{letter-spacing:7.380000px;}
.ls29{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.820000px;}
.ls19{letter-spacing:9.540000px;}
.ls4a{letter-spacing:11.466720px;}
.ls35{letter-spacing:13.140000px;}
.ls31{letter-spacing:13.860000px;}
.ls2b{letter-spacing:16.740000px;}
.ls28{letter-spacing:17.460000px;}
.ls48{letter-spacing:41.706720px;}
.ls1c{letter-spacing:87.930720px;}
.ls2f{letter-spacing:88.076640px;}
.ls20{letter-spacing:112.410720px;}
.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;}
}
.ws1c{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.300000px;}
.ws4{word-spacing:-23.921280px;}
.wsd{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.164000px;}
.ws2a{word-spacing:-16.128000px;}
.ws9{word-spacing:-16.020000px;}
.ws1b{word-spacing:-15.984000px;}
.ws24{word-spacing:-15.918000px;}
.ws23{word-spacing:-15.864000px;}
.ws11{word-spacing:-15.768000px;}
.ws31{word-spacing:-15.714000px;}
.ws10{word-spacing:-15.606000px;}
.ws12{word-spacing:-15.600000px;}
.wsf{word-spacing:-15.444000px;}
.ws2c{word-spacing:-15.408000px;}
.ws17{word-spacing:-15.406800px;}
.ws1d{word-spacing:-15.400200px;}
.ws2{word-spacing:-15.384000px;}
.wsc{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.264000px;}
.ws2b{word-spacing:-15.246600px;}
.ws28{word-spacing:-15.238800px;}
.ws19{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.190800px;}
.ws27{word-spacing:-15.146400px;}
.ws29{word-spacing:-15.137400px;}
.ws33{word-spacing:-15.094800px;}
.ws30{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.ws1e{word-spacing:-15.018600px;}
.wse{word-spacing:-14.993280px;}
.ws2e{word-spacing:-14.977440px;}
.ws1f{word-spacing:-14.976000px;}
.ws7{word-spacing:-14.940000px;}
.ws25{word-spacing:-14.925300px;}
.wsb{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.882400px;}
.ws18{word-spacing:-14.833200px;}
.ws32{word-spacing:-14.824200px;}
.ws21{word-spacing:-14.733600px;}
.ws2f{word-spacing:-14.713200px;}
.ws26{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.613240px;}
.wsa{word-spacing:-14.580000px;}
.ws22{word-spacing:-14.570400px;}
.ws2d{word-spacing:-14.479800px;}
.ws34{word-spacing:-14.426400px;}
.ws20{word-spacing:-14.274000px;}
.ws6{word-spacing:-14.208000px;}
.ws14{word-spacing:0.000000px;}
._c{margin-left:-582.271920px;}
._b{margin-left:-567.660000px;}
._0{margin-left:-402.061680px;}
._9{margin-left:-344.340000px;}
._a{margin-left:-343.023840px;}
._1{margin-left:-332.820000px;}
._4{margin-left:-328.500000px;}
._16{margin-left:-288.982080px;}
._18{margin-left:-287.547840px;}
._6{margin-left:-269.141040px;}
._26{margin-left:-267.634560px;}
._27{margin-left:-265.104000px;}
._f{margin-left:-255.780000px;}
._25{margin-left:-249.577920px;}
._1c{margin-left:-245.352960px;}
._1b{margin-left:-228.698880px;}
._14{margin-left:-226.056000px;}
._20{margin-left:-201.228480px;}
._1f{margin-left:-200.011680px;}
._15{margin-left:-186.843840px;}
._2{margin-left:-179.154480px;}
._3{margin-left:-178.125120px;}
._1e{margin-left:-176.137920px;}
._13{margin-left:-171.360000px;}
._12{margin-left:-164.880000px;}
._11{margin-left:-163.811520px;}
._10{margin-left:-162.692640px;}
._d{margin-left:-154.800000px;}
._1a{margin-left:-151.896000px;}
._2a{margin-left:-150.828480px;}
._e{margin-left:-148.057920px;}
._30{margin-left:-144.720000px;}
._29{margin-left:-135.054720px;}
._2e{margin-left:-132.480000px;}
._23{margin-left:-107.017920px;}
._24{margin-left:-105.534720px;}
._8{margin-left:-104.428080px;}
._7{margin-left:-103.241520px;}
._2c{margin-left:-99.360000px;}
._2f{margin-left:-96.733200px;}
._2d{margin-left:-88.273920px;}
._22{margin-left:-87.120000px;}
._19{margin-left:-82.800000px;}
._2b{margin-left:-66.240000px;}
._1d{margin-left:-38.160000px;}
._28{margin-left:-35.280000px;}
._21{margin-left:-33.120000px;}
._49{margin-left:-13.726080px;}
._31{margin-left:-8.471760px;}
._41{margin-left:-7.224240px;}
._32{margin-left:-4.478880px;}
._39{margin-left:-3.455520px;}
._3a{margin-left:-2.439840px;}
._17{margin-left:-1.192320px;}
._5{width:1.244880px;}
._36{width:2.515872px;}
._35{width:3.568128px;}
._34{width:4.659840px;}
._3b{width:5.846880px;}
._3c{width:6.946560px;}
._37{width:7.984080px;}
._38{width:9.715920px;}
._3e{width:10.797600px;}
._45{width:11.903760px;}
._3d{width:12.905280px;}
._43{width:13.908720px;}
._33{width:16.524480px;}
._42{width:17.547360px;}
._40{width:19.061760px;}
._3f{width:20.151360px;}
._44{width:21.823920px;}
._48{width:23.192640px;}
._46{width:25.330800px;}
._47{width:27.042000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:87.120000px;}
.fs6{font-size:87.264000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:6.120000px;}
.y1c{bottom:25.920000px;}
.yed{bottom:31.860000px;}
.yea{bottom:43.740000px;}
.y1b{bottom:45.720000px;}
.yec{bottom:59.580000px;}
.y6{bottom:60.840000px;}
.y1a{bottom:66.810000px;}
.yeb{bottom:73.254000px;}
.ye9{bottom:84.816000px;}
.y19{bottom:89.490000px;}
.ya1{bottom:94.536000px;}
.yc6{bottom:96.336000px;}
.y34{bottom:101.376000px;}
.y18{bottom:109.290000px;}
.y6b{bottom:114.336000px;}
.yc5{bottom:116.136000px;}
.y9c{bottom:119.556000px;}
.y33{bottom:121.176000px;}
.y17{bottom:130.350000px;}
.y6a{bottom:134.136000px;}
.yc4{bottom:135.936000px;}
.y9b{bottom:139.356000px;}
.y32{bottom:140.976000px;}
.y16{bottom:152.850000px;}
.y69{bottom:153.930000px;}
.ye4{bottom:155.370000px;}
.yc3{bottom:155.730000px;}
.y9a{bottom:158.970000px;}
.y31{bottom:160.950000px;}
.y15{bottom:172.830000px;}
.y68{bottom:173.730000px;}
.ycf{bottom:175.350000px;}
.yc2{bottom:175.710000px;}
.y30{bottom:180.750000px;}
.y99{bottom:188.130000px;}
.y14{bottom:192.630000px;}
.y70{bottom:193.350000px;}
.y67{bottom:193.710000px;}
.yc1{bottom:195.510000px;}
.y2f{bottom:200.550000px;}
.y98{bottom:207.930000px;}
.y13{bottom:212.430000px;}
.y66{bottom:213.510000px;}
.yc0{bottom:215.310000px;}
.y2e{bottom:220.350000px;}
.y97{bottom:227.730000px;}
.y12{bottom:232.230000px;}
.y65{bottom:233.310000px;}
.ybf{bottom:235.110000px;}
.y2d{bottom:240.150000px;}
.y96{bottom:247.530000px;}
.y11{bottom:252.030000px;}
.y64{bottom:253.110000px;}
.ybe{bottom:254.910000px;}
.y2c{bottom:260.130000px;}
.y95{bottom:267.510000px;}
.y10{bottom:271.830000px;}
.y63{bottom:272.910000px;}
.yce{bottom:274.530000px;}
.ybd{bottom:274.890000px;}
.y2b{bottom:279.930000px;}
.y94{bottom:287.310000px;}
.y62{bottom:292.890000px;}
.ybc{bottom:294.690000px;}
.y2a{bottom:299.730000px;}
.y93{bottom:307.110000px;}
.y61{bottom:312.690000px;}
.ybb{bottom:314.490000px;}
.y29{bottom:319.530000px;}
.y92{bottom:326.910000px;}
.ya0{bottom:332.130000px;}
.y60{bottom:332.490000px;}
.yba{bottom:333.930000px;}
.ye3{bottom:334.290000px;}
.y28{bottom:339.375000px;}
.y91{bottom:346.755000px;}
.y9f{bottom:351.975000px;}
.y5f{bottom:352.335000px;}
.ye2{bottom:354.135000px;}
.y27{bottom:359.355000px;}
.yb9{bottom:363.135000px;}
.y90{bottom:366.735000px;}
.y5e{bottom:372.135000px;}
.ye1{bottom:374.115000px;}
.y26{bottom:379.155000px;}
.yb8{bottom:383.115000px;}
.y8f{bottom:386.175000px;}
.y5d{bottom:392.115000px;}
.ye0{bottom:393.915000px;}
.y25{bottom:398.955000px;}
.yb7{bottom:402.915000px;}
.y8e{bottom:406.335000px;}
.y5c{bottom:411.915000px;}
.ydf{bottom:413.715000px;}
.y24{bottom:418.755000px;}
.yb6{bottom:422.715000px;}
.y8d{bottom:426.135000px;}
.y5b{bottom:431.715000px;}
.yde{bottom:433.515000px;}
.y23{bottom:438.555000px;}
.yb5{bottom:442.515000px;}
.y8c{bottom:445.575000px;}
.y5a{bottom:451.515000px;}
.ydd{bottom:453.315000px;}
.y22{bottom:458.535000px;}
.yb4{bottom:462.315000px;}
.y8b{bottom:465.915000px;}
.y59{bottom:471.315000px;}
.ydc{bottom:473.295000px;}
.y21{bottom:478.335000px;}
.ycd{bottom:481.935000px;}
.yb3{bottom:482.295000px;}
.y8a{bottom:485.715000px;}
.y58{bottom:491.295000px;}
.ydb{bottom:493.095000px;}
.y20{bottom:498.135000px;}
.yb2{bottom:502.095000px;}
.y89{bottom:505.515000px;}
.ye6{bottom:510.735000px;}
.y57{bottom:511.095000px;}
.yda{bottom:512.895000px;}
.y1f{bottom:517.575000px;}
.yb1{bottom:521.895000px;}
.y88{bottom:525.315000px;}
.y56{bottom:530.895000px;}
.yd9{bottom:532.695000px;}
.y1e{bottom:537.735000px;}
.yb0{bottom:541.695000px;}
.y87{bottom:545.115000px;}
.y55{bottom:550.695000px;}
.yf{bottom:552.315000px;}
.yd8{bottom:552.495000px;}
.yaf{bottom:561.495000px;}
.y54{bottom:570.495000px;}
.yd7{bottom:572.475000px;}
.y86{bottom:578.955000px;}
.yae{bottom:581.475000px;}
.y53{bottom:590.475000px;}
.yd6{bottom:592.275000px;}
.y85{bottom:598.935000px;}
.yad{bottom:601.275000px;}
.y9e{bottom:609.945000px;}
.y52{bottom:610.305000px;}
.yd5{bottom:612.105000px;}
.y84{bottom:618.765000px;}
.yac{bottom:621.105000px;}
.y51{bottom:630.105000px;}
.yd4{bottom:631.905000px;}
.yab{bottom:640.905000px;}
.y50{bottom:649.905000px;}
.yd3{bottom:651.345000px;}
.y83{bottom:652.605000px;}
.yaa{bottom:660.705000px;}
.y4f{bottom:669.705000px;}
.y82{bottom:672.405000px;}
.ycc{bottom:680.325000px;}
.ya9{bottom:680.685000px;}
.y4e{bottom:689.685000px;}
.y81{bottom:692.205000px;}
.ya8{bottom:700.485000px;}
.y4d{bottom:709.485000px;}
.ya7{bottom:720.285000px;}
.y80{bottom:726.045000px;}
.y6f{bottom:728.925000px;}
.y4c{bottom:729.285000px;}
.ya6{bottom:740.085000px;}
.y7f{bottom:745.845000px;}
.y6e{bottom:748.725000px;}
.y4b{bottom:749.085000px;}
.ya5{bottom:759.885000px;}
.y4a{bottom:768.885000px;}
.y7e{bottom:779.865000px;}
.y49{bottom:788.865000px;}
.y7d{bottom:799.665000px;}
.y48{bottom:808.665000px;}
.ya4{bottom:819.465000px;}
.y7c{bottom:822.525000px;}
.y47{bottom:828.465000px;}
.ya3{bottom:839.265000px;}
.y7b{bottom:842.325000px;}
.ye{bottom:844.485000px;}
.y9d{bottom:847.905000px;}
.y46{bottom:848.265000px;}
.ya2{bottom:858.705000px;}
.yd2{bottom:859.065000px;}
.y7a{bottom:862.125000px;}
.yd{bottom:864.645000px;}
.y45{bottom:868.065000px;}
.ycb{bottom:879.090000px;}
.y79{bottom:881.970000px;}
.yc{bottom:884.490000px;}
.y44{bottom:888.090000px;}
.yca{bottom:898.890000px;}
.y78{bottom:901.770000px;}
.yb{bottom:904.650000px;}
.ye8{bottom:907.530000px;}
.y43{bottom:907.890000px;}
.yc9{bottom:918.690000px;}
.y77{bottom:921.750000px;}
.ya{bottom:925.890000px;}
.y42{bottom:927.690000px;}
.yc8{bottom:938.490000px;}
.y76{bottom:944.610000px;}
.y41{bottom:947.490000px;}
.y9{bottom:949.290000px;}
.yc7{bottom:957.930000px;}
.yd1{bottom:958.290000px;}
.y75{bottom:964.410000px;}
.y40{bottom:967.290000px;}
.yd0{bottom:977.910000px;}
.y8{bottom:980.970000px;}
.y74{bottom:984.210000px;}
.y3f{bottom:987.270000px;}
.y73{bottom:1004.010000px;}
.y3e{bottom:1007.070000px;}
.y7{bottom:1012.830000px;}
.y72{bottom:1023.810000px;}
.y3d{bottom:1026.870000px;}
.y6d{bottom:1046.310000px;}
.y3c{bottom:1046.670000px;}
.y5{bottom:1051.710000px;}
.ye5{bottom:1066.110000px;}
.y3b{bottom:1066.470000px;}
.y4{bottom:1082.490000px;}
.y6c{bottom:1086.090000px;}
.y3a{bottom:1086.450000px;}
.y71{bottom:1105.890000px;}
.y39{bottom:1106.250000px;}
.y3{bottom:1113.270000px;}
.y38{bottom:1126.050000px;}
.y2{bottom:1143.900000px;}
.ye7{bottom:1145.520000px;}
.y37{bottom:1145.880000px;}
.y36{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y35{bottom:1193.220000px;}
.h11{height:2.826563px;}
.h12{height:33.683203px;}
.h13{height:47.344922px;}
.hb{height:53.237812px;}
.h9{height:58.651172px;}
.h8{height:58.792500px;}
.h6{height:60.226875px;}
.hc{height:60.372000px;}
.he{height:61.423863px;}
.hd{height:62.211094px;}
.h5{height:65.010937px;}
.h7{height:66.757500px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h10{height:84.240000px;}
.hf{height:89.545632px;}
.h2{height:96.508125px;}
.ha{height:285.510000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:210.810000px;}
.w5{width:581.010000px;}
.w3{width:784.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x6{left:53.999987px;}
.x8{left:70.559987px;}
.xc{left:80.999987px;}
.x9{left:108.035987px;}
.xa{left:124.595987px;}
.xb{left:162.029987px;}
.x5{left:182.549987px;}
.xd{left:191.370000px;}
.x3{left:262.829987px;}
.xe{left:264.810000px;}
.x4{left:370.334987px;}
.x2{left:374.474987px;}
.x1{left:585.644987px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.045333pt;}
.lsf{letter-spacing:-0.682667pt;}
.ls33{letter-spacing:-0.592000pt;}
.ls4f{letter-spacing:-0.456533pt;}
.ls46{letter-spacing:-0.409067pt;}
.ls38{letter-spacing:-0.328533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.317333pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls4b{letter-spacing:-0.233600pt;}
.ls3c{letter-spacing:-0.230933pt;}
.ls37{letter-spacing:-0.183467pt;}
.ls4d{letter-spacing:-0.102933pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls22{letter-spacing:-0.083200pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls3b{letter-spacing:-0.045067pt;}
.lsd{letter-spacing:-0.016640pt;}
.lsa{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.033280pt;}
.ls32{letter-spacing:0.037867pt;}
.ls14{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094720pt;}
.ls10{letter-spacing:0.094933pt;}
.ls4e{letter-spacing:0.105600pt;}
.ls44{letter-spacing:0.128000pt;}
.ls49{letter-spacing:0.136533pt;}
.ls3e{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.175467pt;}
.ls3d{letter-spacing:0.183467pt;}
.ls2a{letter-spacing:0.209707pt;}
.ls1b{letter-spacing:0.222933pt;}
.ls25{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.256000pt;}
.ls3f{letter-spacing:0.265600pt;}
.ls43{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.409067pt;}
.ls23{letter-spacing:0.414933pt;}
.ls2{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4c{letter-spacing:0.688000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls39{letter-spacing:0.821333pt;}
.ls3a{letter-spacing:0.869333pt;}
.ls27{letter-spacing:0.871040pt;}
.ls26{letter-spacing:0.896000pt;}
.ls11{letter-spacing:0.960000pt;}
.ls42{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.088000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls9{letter-spacing:2.080000pt;}
.ls1e{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:2.720000pt;}
.ls7{letter-spacing:3.360000pt;}
.ls34{letter-spacing:4.000000pt;}
.ls36{letter-spacing:4.640000pt;}
.ls40{letter-spacing:5.280000pt;}
.ls30{letter-spacing:5.820928pt;}
.ls2e{letter-spacing:5.866240pt;}
.ls1a{letter-spacing:5.920000pt;}
.ls2c{letter-spacing:6.560000pt;}
.ls29{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.840000pt;}
.ls19{letter-spacing:8.480000pt;}
.ls4a{letter-spacing:10.192640pt;}
.ls35{letter-spacing:11.680000pt;}
.ls31{letter-spacing:12.320000pt;}
.ls2b{letter-spacing:14.880000pt;}
.ls28{letter-spacing:15.520000pt;}
.ls48{letter-spacing:37.072640pt;}
.ls1c{letter-spacing:78.160640pt;}
.ls2f{letter-spacing:78.290347pt;}
.ls20{letter-spacing:99.920640pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws4{word-spacing:-21.263360pt;}
.wsd{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.368000pt;}
.ws2a{word-spacing:-14.336000pt;}
.ws9{word-spacing:-14.240000pt;}
.ws1b{word-spacing:-14.208000pt;}
.ws24{word-spacing:-14.149333pt;}
.ws23{word-spacing:-14.101333pt;}
.ws11{word-spacing:-14.016000pt;}
.ws31{word-spacing:-13.968000pt;}
.ws10{word-spacing:-13.872000pt;}
.ws12{word-spacing:-13.866667pt;}
.wsf{word-spacing:-13.728000pt;}
.ws2c{word-spacing:-13.696000pt;}
.ws17{word-spacing:-13.694933pt;}
.ws1d{word-spacing:-13.689067pt;}
.ws2{word-spacing:-13.674667pt;}
.wsc{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.568000pt;}
.ws2b{word-spacing:-13.552533pt;}
.ws28{word-spacing:-13.545600pt;}
.ws19{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.502933pt;}
.ws27{word-spacing:-13.463467pt;}
.ws29{word-spacing:-13.455467pt;}
.ws33{word-spacing:-13.417600pt;}
.ws30{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws1e{word-spacing:-13.349867pt;}
.wse{word-spacing:-13.327360pt;}
.ws2e{word-spacing:-13.313280pt;}
.ws1f{word-spacing:-13.312000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws25{word-spacing:-13.266933pt;}
.wsb{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.228800pt;}
.ws18{word-spacing:-13.185067pt;}
.ws32{word-spacing:-13.177067pt;}
.ws21{word-spacing:-13.096533pt;}
.ws2f{word-spacing:-13.078400pt;}
.ws26{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.989547pt;}
.wsa{word-spacing:-12.960000pt;}
.ws22{word-spacing:-12.951467pt;}
.ws2d{word-spacing:-12.870933pt;}
.ws34{word-spacing:-12.823467pt;}
.ws20{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.629333pt;}
.ws14{word-spacing:0.000000pt;}
._c{margin-left:-517.575040pt;}
._b{margin-left:-504.586667pt;}
._0{margin-left:-357.388160pt;}
._9{margin-left:-306.080000pt;}
._a{margin-left:-304.910080pt;}
._1{margin-left:-295.840000pt;}
._4{margin-left:-292.000000pt;}
._16{margin-left:-256.872960pt;}
._18{margin-left:-255.598080pt;}
._6{margin-left:-239.236480pt;}
._26{margin-left:-237.897387pt;}
._27{margin-left:-235.648000pt;}
._f{margin-left:-227.360000pt;}
._25{margin-left:-221.847040pt;}
._1c{margin-left:-218.091520pt;}
._1b{margin-left:-203.287893pt;}
._14{margin-left:-200.938667pt;}
._20{margin-left:-178.869760pt;}
._1f{margin-left:-177.788160pt;}
._15{margin-left:-166.083413pt;}
._2{margin-left:-159.248427pt;}
._3{margin-left:-158.333440pt;}
._1e{margin-left:-156.567040pt;}
._13{margin-left:-152.320000pt;}
._12{margin-left:-146.560000pt;}
._11{margin-left:-145.610240pt;}
._10{margin-left:-144.615680pt;}
._d{margin-left:-137.600000pt;}
._1a{margin-left:-135.018667pt;}
._2a{margin-left:-134.069760pt;}
._e{margin-left:-131.607040pt;}
._30{margin-left:-128.640000pt;}
._29{margin-left:-120.048640pt;}
._2e{margin-left:-117.760000pt;}
._23{margin-left:-95.127040pt;}
._24{margin-left:-93.808640pt;}
._8{margin-left:-92.824960pt;}
._7{margin-left:-91.770240pt;}
._2c{margin-left:-88.320000pt;}
._2f{margin-left:-85.985067pt;}
._2d{margin-left:-78.465707pt;}
._22{margin-left:-77.440000pt;}
._19{margin-left:-73.600000pt;}
._2b{margin-left:-58.880000pt;}
._1d{margin-left:-33.920000pt;}
._28{margin-left:-31.360000pt;}
._21{margin-left:-29.440000pt;}
._49{margin-left:-12.200960pt;}
._31{margin-left:-7.530453pt;}
._41{margin-left:-6.421547pt;}
._32{margin-left:-3.981227pt;}
._39{margin-left:-3.071573pt;}
._3a{margin-left:-2.168747pt;}
._17{margin-left:-1.059840pt;}
._5{width:1.106560pt;}
._36{width:2.236331pt;}
._35{width:3.171669pt;}
._34{width:4.142080pt;}
._3b{width:5.197227pt;}
._3c{width:6.174720pt;}
._37{width:7.096960pt;}
._38{width:8.636373pt;}
._3e{width:9.597867pt;}
._45{width:10.581120pt;}
._3d{width:11.471360pt;}
._43{width:12.363307pt;}
._33{width:14.688427pt;}
._42{width:15.597653pt;}
._40{width:16.943787pt;}
._3f{width:17.912320pt;}
._44{width:19.399040pt;}
._48{width:20.615680pt;}
._46{width:22.516267pt;}
._47{width:24.037333pt;}
.fs7{font-size:2.560000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:77.440000pt;}
.fs6{font-size:77.568000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:5.440000pt;}
.y1c{bottom:23.040000pt;}
.yed{bottom:28.320000pt;}
.yea{bottom:38.880000pt;}
.y1b{bottom:40.640000pt;}
.yec{bottom:52.960000pt;}
.y6{bottom:54.080000pt;}
.y1a{bottom:59.386667pt;}
.yeb{bottom:65.114667pt;}
.ye9{bottom:75.392000pt;}
.y19{bottom:79.546667pt;}
.ya1{bottom:84.032000pt;}
.yc6{bottom:85.632000pt;}
.y34{bottom:90.112000pt;}
.y18{bottom:97.146667pt;}
.y6b{bottom:101.632000pt;}
.yc5{bottom:103.232000pt;}
.y9c{bottom:106.272000pt;}
.y33{bottom:107.712000pt;}
.y17{bottom:115.866667pt;}
.y6a{bottom:119.232000pt;}
.yc4{bottom:120.832000pt;}
.y9b{bottom:123.872000pt;}
.y32{bottom:125.312000pt;}
.y16{bottom:135.866667pt;}
.y69{bottom:136.826667pt;}
.ye4{bottom:138.106667pt;}
.yc3{bottom:138.426667pt;}
.y9a{bottom:141.306667pt;}
.y31{bottom:143.066667pt;}
.y15{bottom:153.626667pt;}
.y68{bottom:154.426667pt;}
.ycf{bottom:155.866667pt;}
.yc2{bottom:156.186667pt;}
.y30{bottom:160.666667pt;}
.y99{bottom:167.226667pt;}
.y14{bottom:171.226667pt;}
.y70{bottom:171.866667pt;}
.y67{bottom:172.186667pt;}
.yc1{bottom:173.786667pt;}
.y2f{bottom:178.266667pt;}
.y98{bottom:184.826667pt;}
.y13{bottom:188.826667pt;}
.y66{bottom:189.786667pt;}
.yc0{bottom:191.386667pt;}
.y2e{bottom:195.866667pt;}
.y97{bottom:202.426667pt;}
.y12{bottom:206.426667pt;}
.y65{bottom:207.386667pt;}
.ybf{bottom:208.986667pt;}
.y2d{bottom:213.466667pt;}
.y96{bottom:220.026667pt;}
.y11{bottom:224.026667pt;}
.y64{bottom:224.986667pt;}
.ybe{bottom:226.586667pt;}
.y2c{bottom:231.226667pt;}
.y95{bottom:237.786667pt;}
.y10{bottom:241.626667pt;}
.y63{bottom:242.586667pt;}
.yce{bottom:244.026667pt;}
.ybd{bottom:244.346667pt;}
.y2b{bottom:248.826667pt;}
.y94{bottom:255.386667pt;}
.y62{bottom:260.346667pt;}
.ybc{bottom:261.946667pt;}
.y2a{bottom:266.426667pt;}
.y93{bottom:272.986667pt;}
.y61{bottom:277.946667pt;}
.ybb{bottom:279.546667pt;}
.y29{bottom:284.026667pt;}
.y92{bottom:290.586667pt;}
.ya0{bottom:295.226667pt;}
.y60{bottom:295.546667pt;}
.yba{bottom:296.826667pt;}
.ye3{bottom:297.146667pt;}
.y28{bottom:301.666667pt;}
.y91{bottom:308.226667pt;}
.y9f{bottom:312.866667pt;}
.y5f{bottom:313.186667pt;}
.ye2{bottom:314.786667pt;}
.y27{bottom:319.426667pt;}
.yb9{bottom:322.786667pt;}
.y90{bottom:325.986667pt;}
.y5e{bottom:330.786667pt;}
.ye1{bottom:332.546667pt;}
.y26{bottom:337.026667pt;}
.yb8{bottom:340.546667pt;}
.y8f{bottom:343.266667pt;}
.y5d{bottom:348.546667pt;}
.ye0{bottom:350.146667pt;}
.y25{bottom:354.626667pt;}
.yb7{bottom:358.146667pt;}
.y8e{bottom:361.186667pt;}
.y5c{bottom:366.146667pt;}
.ydf{bottom:367.746667pt;}
.y24{bottom:372.226667pt;}
.yb6{bottom:375.746667pt;}
.y8d{bottom:378.786667pt;}
.y5b{bottom:383.746667pt;}
.yde{bottom:385.346667pt;}
.y23{bottom:389.826667pt;}
.yb5{bottom:393.346667pt;}
.y8c{bottom:396.066667pt;}
.y5a{bottom:401.346667pt;}
.ydd{bottom:402.946667pt;}
.y22{bottom:407.586667pt;}
.yb4{bottom:410.946667pt;}
.y8b{bottom:414.146667pt;}
.y59{bottom:418.946667pt;}
.ydc{bottom:420.706667pt;}
.y21{bottom:425.186667pt;}
.ycd{bottom:428.386667pt;}
.yb3{bottom:428.706667pt;}
.y8a{bottom:431.746667pt;}
.y58{bottom:436.706667pt;}
.ydb{bottom:438.306667pt;}
.y20{bottom:442.786667pt;}
.yb2{bottom:446.306667pt;}
.y89{bottom:449.346667pt;}
.ye6{bottom:453.986667pt;}
.y57{bottom:454.306667pt;}
.yda{bottom:455.906667pt;}
.y1f{bottom:460.066667pt;}
.yb1{bottom:463.906667pt;}
.y88{bottom:466.946667pt;}
.y56{bottom:471.906667pt;}
.yd9{bottom:473.506667pt;}
.y1e{bottom:477.986667pt;}
.yb0{bottom:481.506667pt;}
.y87{bottom:484.546667pt;}
.y55{bottom:489.506667pt;}
.yf{bottom:490.946667pt;}
.yd8{bottom:491.106667pt;}
.yaf{bottom:499.106667pt;}
.y54{bottom:507.106667pt;}
.yd7{bottom:508.866667pt;}
.y86{bottom:514.626667pt;}
.yae{bottom:516.866667pt;}
.y53{bottom:524.866667pt;}
.yd6{bottom:526.466667pt;}
.y85{bottom:532.386667pt;}
.yad{bottom:534.466667pt;}
.y9e{bottom:542.173333pt;}
.y52{bottom:542.493333pt;}
.yd5{bottom:544.093333pt;}
.y84{bottom:550.013333pt;}
.yac{bottom:552.093333pt;}
.y51{bottom:560.093333pt;}
.yd4{bottom:561.693333pt;}
.yab{bottom:569.693333pt;}
.y50{bottom:577.693333pt;}
.yd3{bottom:578.973333pt;}
.y83{bottom:580.093333pt;}
.yaa{bottom:587.293333pt;}
.y4f{bottom:595.293333pt;}
.y82{bottom:597.693333pt;}
.ycc{bottom:604.733333pt;}
.ya9{bottom:605.053333pt;}
.y4e{bottom:613.053333pt;}
.y81{bottom:615.293333pt;}
.ya8{bottom:622.653333pt;}
.y4d{bottom:630.653333pt;}
.ya7{bottom:640.253333pt;}
.y80{bottom:645.373333pt;}
.y6f{bottom:647.933333pt;}
.y4c{bottom:648.253333pt;}
.ya6{bottom:657.853333pt;}
.y7f{bottom:662.973333pt;}
.y6e{bottom:665.533333pt;}
.y4b{bottom:665.853333pt;}
.ya5{bottom:675.453333pt;}
.y4a{bottom:683.453333pt;}
.y7e{bottom:693.213333pt;}
.y49{bottom:701.213333pt;}
.y7d{bottom:710.813333pt;}
.y48{bottom:718.813333pt;}
.ya4{bottom:728.413333pt;}
.y7c{bottom:731.133333pt;}
.y47{bottom:736.413333pt;}
.ya3{bottom:746.013333pt;}
.y7b{bottom:748.733333pt;}
.ye{bottom:750.653333pt;}
.y9d{bottom:753.693333pt;}
.y46{bottom:754.013333pt;}
.ya2{bottom:763.293333pt;}
.yd2{bottom:763.613333pt;}
.y7a{bottom:766.333333pt;}
.yd{bottom:768.573333pt;}
.y45{bottom:771.613333pt;}
.ycb{bottom:781.413333pt;}
.y79{bottom:783.973333pt;}
.yc{bottom:786.213333pt;}
.y44{bottom:789.413333pt;}
.yca{bottom:799.013333pt;}
.y78{bottom:801.573333pt;}
.yb{bottom:804.133333pt;}
.ye8{bottom:806.693333pt;}
.y43{bottom:807.013333pt;}
.yc9{bottom:816.613333pt;}
.y77{bottom:819.333333pt;}
.ya{bottom:823.013333pt;}
.y42{bottom:824.613333pt;}
.yc8{bottom:834.213333pt;}
.y76{bottom:839.653333pt;}
.y41{bottom:842.213333pt;}
.y9{bottom:843.813333pt;}
.yc7{bottom:851.493333pt;}
.yd1{bottom:851.813333pt;}
.y75{bottom:857.253333pt;}
.y40{bottom:859.813333pt;}
.yd0{bottom:869.253333pt;}
.y8{bottom:871.973333pt;}
.y74{bottom:874.853333pt;}
.y3f{bottom:877.573333pt;}
.y73{bottom:892.453333pt;}
.y3e{bottom:895.173333pt;}
.y7{bottom:900.293333pt;}
.y72{bottom:910.053333pt;}
.y3d{bottom:912.773333pt;}
.y6d{bottom:930.053333pt;}
.y3c{bottom:930.373333pt;}
.y5{bottom:934.853333pt;}
.ye5{bottom:947.653333pt;}
.y3b{bottom:947.973333pt;}
.y4{bottom:962.213333pt;}
.y6c{bottom:965.413333pt;}
.y3a{bottom:965.733333pt;}
.y71{bottom:983.013333pt;}
.y39{bottom:983.333333pt;}
.y3{bottom:989.573333pt;}
.y38{bottom:1000.933333pt;}
.y2{bottom:1016.800000pt;}
.ye7{bottom:1018.240000pt;}
.y37{bottom:1018.560000pt;}
.y36{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y35{bottom:1060.640000pt;}
.h11{height:2.512500pt;}
.h12{height:29.940625pt;}
.h13{height:42.084375pt;}
.hb{height:47.322500pt;}
.h9{height:52.134375pt;}
.h8{height:52.260000pt;}
.h6{height:53.535000pt;}
.hc{height:53.664000pt;}
.he{height:54.598989pt;}
.hd{height:55.298750pt;}
.h5{height:57.787500pt;}
.h7{height:59.340000pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h10{height:74.880000pt;}
.hf{height:79.596117pt;}
.h2{height:85.785000pt;}
.ha{height:253.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:187.386667pt;}
.w5{width:516.453333pt;}
.w3{width:697.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x6{left:47.999988pt;}
.x8{left:62.719988pt;}
.xc{left:71.999988pt;}
.x9{left:96.031988pt;}
.xa{left:110.751988pt;}
.xb{left:144.026655pt;}
.x5{left:162.266655pt;}
.xd{left:170.106667pt;}
.x3{left:233.626655pt;}
.xe{left:235.386667pt;}
.x4{left:329.186655pt;}
.x2{left:332.866655pt;}
.x1{left:520.573322pt;}
}




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