
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_46c5f0cc808a1e8b60ca10a1.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_3e7128fc426a4531f183899a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_303d898d83b032ff5d572d48.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_f7bbd2572ee0a9a83400e92d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a06b71896bf053235aa7f817.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_9c6debca6d79c67fdf10bddc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0f0cf5a3c0d65267c76973a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c97cbffc3a29e16df6f545ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_b07a4b7375c2c2692491a2fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_405935584a552cd11e781dfa.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9c342920af6991f405841121.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.097168;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_2d6ac0ecc109a1804f14b4e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065918;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_e6b3e5147b326e1d3bb47ee0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6dce5ab4777927325776f294.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v4{vertical-align:-87.840000px;}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v3{vertical-align:-7.920000px;}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-18.720000px;}
.ls2e{letter-spacing:-17.280000px;}
.ls12{letter-spacing:-0.900000px;}
.ls1a{letter-spacing:-0.684000px;}
.ls13{letter-spacing:-0.378600px;}
.ls15{letter-spacing:-0.369600px;}
.ls14{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.145200px;}
.ls2d{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.041040px;}
.ls25{letter-spacing:-0.018720px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.037440px;}
.ls34{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.238200px;}
.ls4{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378720px;}
.ls1{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.720000px;}
.ls19{letter-spacing:1.010880px;}
.ls18{letter-spacing:1.062000px;}
.lsd{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.160000px;}
.ls27{letter-spacing:3.420000px;}
.ls26{letter-spacing:3.540000px;}
.ls1d{letter-spacing:7.020000px;}
.ls1e{letter-spacing:7.740000px;}
.ls11{letter-spacing:9.900000px;}
.ls28{letter-spacing:12.060000px;}
.ls5{letter-spacing:12.960000px;}
.ls1c{letter-spacing:13.500000px;}
.ls9{letter-spacing:15.660000px;}
.ls33{letter-spacing:16.128000px;}
.ls2c{letter-spacing:20.700000px;}
.ls22{letter-spacing:23.580000px;}
.ls1b{letter-spacing:24.300000px;}
.ls32{letter-spacing:25.920000px;}
.ls31{letter-spacing:26.820000px;}
.ls23{letter-spacing:28.620000px;}
.ls24{letter-spacing:29.340000px;}
.ls16{letter-spacing:35.100000px;}
.ls30{letter-spacing:52.128000px;}
.ls2{letter-spacing:77.880000px;}
.ls2b{letter-spacing:126.180000px;}
.ls21{letter-spacing:191.484000px;}
.ls6{letter-spacing:194.544000px;}
.ls2f{letter-spacing:1013.376000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.401400px;}
.ws3{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.041280px;}
.wsb{word-spacing:-20.914800px;}
.ws7{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.690400px;}
.ws5{word-spacing:-20.681400px;}
.wse{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws0{word-spacing:-0.358440px;}
.ws2{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.wsa{word-spacing:616.904400px;}
._37{margin-left:-983.094960px;}
._39{margin-left:-924.816000px;}
._62{margin-left:-852.937920px;}
._34{margin-left:-811.968960px;}
._65{margin-left:-795.504000px;}
._30{margin-left:-769.344960px;}
._57{margin-left:-763.164000px;}
._49{margin-left:-745.608000px;}
._53{margin-left:-733.104000px;}
._5e{margin-left:-729.072000px;}
._5b{margin-left:-726.528000px;}
._2d{margin-left:-723.777120px;}
._51{margin-left:-714.888000px;}
._60{margin-left:-710.688000px;}
._64{margin-left:-702.120000px;}
._4b{margin-left:-673.992000px;}
._44{margin-left:-648.696000px;}
._33{margin-left:-597.060000px;}
._4e{margin-left:-581.520000px;}
._54{margin-left:-571.728000px;}
._41{margin-left:-559.800000px;}
._58{margin-left:-484.502400px;}
._47{margin-left:-455.760000px;}
._4d{margin-left:-318.528000px;}
._35{margin-left:-258.268320px;}
._45{margin-left:-228.672000px;}
._31{margin-left:-214.853760px;}
._42{margin-left:-190.992000px;}
._55{margin-left:-150.048000px;}
._59{margin-left:-134.760000px;}
._2c{margin-left:-21.818160px;}
._3a{margin-left:-20.301840px;}
._40{margin-left:-18.720000px;}
._5d{margin-left:-17.280000px;}
._2e{margin-left:-13.141440px;}
._3e{margin-left:-9.856080px;}
._1{margin-left:-8.845200px;}
._5{margin-left:-7.244640px;}
._3{margin-left:-6.181200px;}
._2{margin-left:-4.854960px;}
._a{margin-left:-3.292800px;}
._4{margin-left:-2.127600px;}
._0{margin-left:-1.126080px;}
._6{width:1.094400px;}
._7{width:2.424000px;}
._d{width:3.748800px;}
._e{width:5.167200px;}
._b{width:6.408000px;}
._c{width:7.621200px;}
._15{width:8.930400px;}
._1c{width:10.030320px;}
._9{width:11.533200px;}
._8{width:13.104000px;}
._14{width:14.110800px;}
._13{width:15.388800px;}
._16{width:16.848000px;}
._1f{width:17.937120px;}
._12{width:19.152000px;}
._17{width:20.937600px;}
._1e{width:22.478400px;}
._f{width:23.568000px;}
._10{width:25.036800px;}
._2a{width:26.096880px;}
._11{width:27.218400px;}
._20{width:29.109600px;}
._3b{width:30.226320px;}
._27{width:31.359600px;}
._29{width:32.468880px;}
._28{width:33.688320px;}
._25{width:34.791840px;}
._26{width:35.854800px;}
._66{width:37.265520px;}
._24{width:38.834640px;}
._3f{width:40.382640px;}
._19{width:42.351600px;}
._18{width:43.600800px;}
._68{width:47.669520px;}
._67{width:48.838560px;}
._2f{width:50.965200px;}
._69{width:52.370640px;}
._21{width:53.829360px;}
._22{width:55.177200px;}
._3c{width:56.884320px;}
._3d{width:58.354560px;}
._23{width:59.504400px;}
._1d{width:64.483920px;}
._1a{width:80.910480px;}
._1b{width:82.014720px;}
._2b{width:94.645200px;}
._61{width:209.830080px;}
._4a{width:256.188000px;}
._4f{width:318.432000px;}
._5c{width:345.360000px;}
._48{width:456.024000px;}
._38{width:482.310480px;}
._5a{width:483.744000px;}
._43{width:560.064000px;}
._46{width:648.696000px;}
._4c{width:655.896000px;}
._5f{width:665.616000px;}
._50{width:673.992000px;}
._52{width:717.096000px;}
._32{width:770.376000px;}
._36{width:833.700000px;}
._63{width:851.916000px;}
._56{width:885.180000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.960000px;}
.y6{bottom:5.436000px;}
.y4{bottom:7.740000px;}
.y7{bottom:8.820000px;}
.y5{bottom:15.516000px;}
.y7f{bottom:24.654000px;}
.y61{bottom:24.660000px;}
.y66{bottom:25.200000px;}
.y7e{bottom:45.354000px;}
.y78{bottom:45.360000px;}
.y60{bottom:45.900000px;}
.y65{bottom:49.320000px;}
.y2{bottom:57.456000px;}
.y7d{bottom:66.054000px;}
.y77{bottom:66.060000px;}
.y7b{bottom:66.105000px;}
.y5f{bottom:70.020000px;}
.y64{bottom:73.440000px;}
.y80{bottom:77.976000px;}
.y36{bottom:78.336000px;}
.y5b{bottom:88.056000px;}
.y74{bottom:96.516000px;}
.y35{bottom:106.056000px;}
.y5a{bottom:115.776000px;}
.y9b{bottom:132.156000px;}
.y34{bottom:133.776000px;}
.y73{bottom:136.296000px;}
.y7c{bottom:140.796000px;}
.y59{bottom:143.496000px;}
.y9a{bottom:159.870000px;}
.y33{bottom:161.670000px;}
.y72{bottom:164.010000px;}
.y58{bottom:171.390000px;}
.y99{bottom:187.590000px;}
.y32{bottom:189.390000px;}
.y71{bottom:191.730000px;}
.y57{bottom:199.110000px;}
.y98{bottom:215.490000px;}
.y31{bottom:217.110000px;}
.y70{bottom:219.450000px;}
.y7a{bottom:224.310000px;}
.y56{bottom:226.830000px;}
.y97{bottom:243.210000px;}
.y30{bottom:245.010000px;}
.y6f{bottom:247.350000px;}
.y55{bottom:254.730000px;}
.y2f{bottom:268.590000px;}
.y96{bottom:270.930000px;}
.y6e{bottom:275.070000px;}
.y54{bottom:282.495000px;}
.y2e{bottom:289.335000px;}
.y95{bottom:298.875000px;}
.y6d{bottom:302.835000px;}
.y79{bottom:307.875000px;}
.y2d{bottom:310.035000px;}
.y53{bottom:310.215000px;}
.y94{bottom:326.595000px;}
.y6c{bottom:330.555000px;}
.y2c{bottom:330.735000px;}
.ybd{bottom:334.335000px;}
.y52{bottom:337.935000px;}
.y2b{bottom:351.435000px;}
.y93{bottom:354.315000px;}
.ybc{bottom:355.035000px;}
.y6b{bottom:358.455000px;}
.y51{bottom:365.835000px;}
.y2a{bottom:372.135000px;}
.ybb{bottom:375.735000px;}
.y92{bottom:382.035000px;}
.y6a{bottom:386.175000px;}
.y76{bottom:391.575000px;}
.y29{bottom:392.835000px;}
.y50{bottom:393.555000px;}
.yba{bottom:396.435000px;}
.y91{bottom:409.935000px;}
.y28{bottom:413.535000px;}
.y69{bottom:413.895000px;}
.yb9{bottom:417.135000px;}
.y4f{bottom:421.275000px;}
.y27{bottom:434.235000px;}
.y90{bottom:437.655000px;}
.yb8{bottom:437.835000px;}
.y68{bottom:441.795000px;}
.y4e{bottom:449.175000px;}
.y26{bottom:454.755000px;}
.yb7{bottom:458.535000px;}
.y8f{bottom:465.375000px;}
.y67{bottom:465.915000px;}
.y75{bottom:475.095000px;}
.y25{bottom:475.455000px;}
.y4d{bottom:476.895000px;}
.y63{bottom:477.975000px;}
.yb6{bottom:479.055000px;}
.y8e{bottom:493.095000px;}
.y24{bottom:496.155000px;}
.yb5{bottom:499.755000px;}
.y4c{bottom:504.615000px;}
.y23{bottom:516.855000px;}
.yb4{bottom:520.455000px;}
.y8d{bottom:520.995000px;}
.y4b{bottom:532.335000px;}
.y22{bottom:537.555000px;}
.yb3{bottom:541.155000px;}
.y8c{bottom:548.715000px;}
.y21{bottom:558.255000px;}
.y4a{bottom:560.235000px;}
.yb2{bottom:561.855000px;}
.y62{bottom:571.965000px;}
.y8b{bottom:576.465000px;}
.y20{bottom:578.985000px;}
.yb1{bottom:582.585000px;}
.y49{bottom:587.985000px;}
.y1f{bottom:599.685000px;}
.yb0{bottom:603.285000px;}
.y8a{bottom:604.365000px;}
.y48{bottom:615.705000px;}
.y1e{bottom:620.385000px;}
.yaf{bottom:623.985000px;}
.y89{bottom:632.085000px;}
.y1d{bottom:641.085000px;}
.y47{bottom:643.605000px;}
.yae{bottom:644.685000px;}
.y88{bottom:659.805000px;}
.y1c{bottom:661.785000px;}
.y5e{bottom:662.325000px;}
.yad{bottom:665.385000px;}
.y46{bottom:671.325000px;}
.y1b{bottom:682.485000px;}
.y87{bottom:683.925000px;}
.yac{bottom:686.085000px;}
.y86{bottom:695.985000px;}
.y45{bottom:699.045000px;}
.y1a{bottom:703.185000px;}
.yab{bottom:706.785000px;}
.y44{bottom:726.765000px;}
.yaa{bottom:727.485000px;}
.y19{bottom:744.585000px;}
.ya9{bottom:748.185000px;}
.y5c{bottom:752.685000px;}
.y43{bottom:754.665000px;}
.y18{bottom:765.285000px;}
.ya8{bottom:768.885000px;}
.y85{bottom:779.685000px;}
.y42{bottom:782.385000px;}
.y17{bottom:785.985000px;}
.ya7{bottom:789.585000px;}
.y16{bottom:806.685000px;}
.y41{bottom:810.105000px;}
.ya6{bottom:810.285000px;}
.y15{bottom:827.385000px;}
.ya5{bottom:830.985000px;}
.y40{bottom:837.825000px;}
.y14{bottom:848.130000px;}
.ya4{bottom:851.730000px;}
.y84{bottom:863.250000px;}
.y3f{bottom:865.770000px;}
.y13{bottom:868.830000px;}
.ya3{bottom:872.430000px;}
.y12{bottom:889.530000px;}
.ya2{bottom:893.130000px;}
.y3e{bottom:893.490000px;}
.y11{bottom:910.230000px;}
.ya1{bottom:913.830000px;}
.y3d{bottom:921.210000px;}
.y10{bottom:930.930000px;}
.ya0{bottom:934.530000px;}
.y83{bottom:946.770000px;}
.y3c{bottom:949.110000px;}
.yf{bottom:951.630000px;}
.y9f{bottom:955.230000px;}
.y9e{bottom:975.930000px;}
.y3b{bottom:976.830000px;}
.ye{bottom:994.290000px;}
.y9d{bottom:996.630000px;}
.y3a{bottom:1004.550000px;}
.yd{bottom:1014.990000px;}
.y82{bottom:1030.290000px;}
.y39{bottom:1032.270000px;}
.yc{bottom:1035.690000px;}
.y9c{bottom:1039.290000px;}
.yb{bottom:1056.390000px;}
.y38{bottom:1060.170000px;}
.ya{bottom:1077.090000px;}
.y37{bottom:1087.890000px;}
.y9{bottom:1097.070000px;}
.y81{bottom:1113.810000px;}
.y8{bottom:1115.610000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.120000px;}
.h12{height:20.700000px;}
.h1d{height:20.736000px;}
.h3{height:33.120000px;}
.h7{height:38.700000px;}
.h5{height:44.136000px;}
.h1f{height:47.321367px;}
.h18{height:47.344922px;}
.h20{height:52.998047px;}
.hd{height:59.343750px;}
.ha{height:60.226875px;}
.h1e{height:61.488281px;}
.h1c{height:62.100000px;}
.h21{height:63.457031px;}
.h2{height:65.884219px;}
.h10{height:69.432187px;}
.hc{height:70.628906px;}
.h15{height:70.664062px;}
.h16{height:71.941289px;}
.hb{height:72.562500px;}
.h1a{height:74.004654px;}
.hf{height:74.244727px;}
.h8{height:78.626953px;}
.h11{height:82.635820px;}
.he{height:82.676953px;}
.h19{height:82.800000px;}
.h1b{height:82.836000px;}
.h9{height:84.898125px;}
.h14{height:86.585445px;}
.h13{height:89.640000px;}
.h17{height:93.096000px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:57.276000px;}
.w3{width:66.240000px;}
.w5{width:66.276000px;}
.w6{width:95.616000px;}
.w7{width:339.150000px;}
.w9{width:349.815000px;}
.w8{width:350.175000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x5{left:10.620000px;}
.x20{left:12.276000px;}
.x29{left:20.736000px;}
.x27{left:23.580000px;}
.x8{left:25.200000px;}
.x3{left:26.460000px;}
.x25{left:41.430000px;}
.x1c{left:55.470000px;}
.x16{left:61.554000px;}
.x1{left:63.899987px;}
.x1d{left:65.010000px;}
.x14{left:72.570000px;}
.x12{left:85.494000px;}
.x1a{left:88.740000px;}
.x11{left:93.996000px;}
.x2b{left:95.975987px;}
.x26{left:103.170000px;}
.x10{left:106.415987px;}
.xf{left:117.035987px;}
.x1f{left:130.170000px;}
.x18{left:133.014000px;}
.x23{left:146.550000px;}
.x21{left:153.210000px;}
.x24{left:155.010000px;}
.x9{left:158.249987px;}
.xd{left:167.609987px;}
.x1e{left:169.950000px;}
.x22{left:176.250000px;}
.x28{left:178.770000px;}
.x7{left:195.150000px;}
.x2a{left:200.550000px;}
.x17{left:216.210000px;}
.x19{left:233.679000px;}
.xc{left:277.229987px;}
.xe{left:292.754987px;}
.xb{left:376.814987px;}
.x13{left:433.875000px;}
.x1b{left:439.275000px;}
.x4{left:447.915000px;}
.xa{left:452.054987px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v4{vertical-align:-78.080000pt;}
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v3{vertical-align:-7.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-16.640000pt;}
.ls2e{letter-spacing:-15.360000pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls1a{letter-spacing:-0.608000pt;}
.ls13{letter-spacing:-0.336533pt;}
.ls15{letter-spacing:-0.328533pt;}
.ls14{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.129067pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.036480pt;}
.ls25{letter-spacing:-0.016640pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.033280pt;}
.ls34{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.211733pt;}
.ls4{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336640pt;}
.ls1{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.898560pt;}
.ls18{letter-spacing:0.944000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls27{letter-spacing:3.040000pt;}
.ls26{letter-spacing:3.146667pt;}
.ls1d{letter-spacing:6.240000pt;}
.ls1e{letter-spacing:6.880000pt;}
.ls11{letter-spacing:8.800000pt;}
.ls28{letter-spacing:10.720000pt;}
.ls5{letter-spacing:11.520000pt;}
.ls1c{letter-spacing:12.000000pt;}
.ls9{letter-spacing:13.920000pt;}
.ls33{letter-spacing:14.336000pt;}
.ls2c{letter-spacing:18.400000pt;}
.ls22{letter-spacing:20.960000pt;}
.ls1b{letter-spacing:21.600000pt;}
.ls32{letter-spacing:23.040000pt;}
.ls31{letter-spacing:23.840000pt;}
.ls23{letter-spacing:25.440000pt;}
.ls24{letter-spacing:26.080000pt;}
.ls16{letter-spacing:31.200000pt;}
.ls30{letter-spacing:46.336000pt;}
.ls2{letter-spacing:69.226667pt;}
.ls2b{letter-spacing:112.160000pt;}
.ls21{letter-spacing:170.208000pt;}
.ls6{letter-spacing:172.928000pt;}
.ls2f{letter-spacing:900.778667pt;}
.ws6{word-spacing:-19.040000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws3{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.703360pt;}
.wsb{word-spacing:-18.590933pt;}
.ws7{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.391467pt;}
.ws5{word-spacing:-18.383467pt;}
.wse{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws0{word-spacing:-0.318613pt;}
.ws2{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.wsa{word-spacing:548.359467pt;}
._37{margin-left:-873.862187pt;}
._39{margin-left:-822.058667pt;}
._62{margin-left:-758.167040pt;}
._34{margin-left:-721.750187pt;}
._65{margin-left:-707.114667pt;}
._30{margin-left:-683.862187pt;}
._57{margin-left:-678.368000pt;}
._49{margin-left:-662.762667pt;}
._53{margin-left:-651.648000pt;}
._5e{margin-left:-648.064000pt;}
._5b{margin-left:-645.802667pt;}
._2d{margin-left:-643.357440pt;}
._51{margin-left:-635.456000pt;}
._60{margin-left:-631.722667pt;}
._64{margin-left:-624.106667pt;}
._4b{margin-left:-599.104000pt;}
._44{margin-left:-576.618667pt;}
._33{margin-left:-530.720000pt;}
._4e{margin-left:-516.906667pt;}
._54{margin-left:-508.202667pt;}
._41{margin-left:-497.600000pt;}
._58{margin-left:-430.668800pt;}
._47{margin-left:-405.120000pt;}
._4d{margin-left:-283.136000pt;}
._35{margin-left:-229.571840pt;}
._45{margin-left:-203.264000pt;}
._31{margin-left:-190.981120pt;}
._42{margin-left:-169.770667pt;}
._55{margin-left:-133.376000pt;}
._59{margin-left:-119.786667pt;}
._2c{margin-left:-19.393920pt;}
._3a{margin-left:-18.046080pt;}
._40{margin-left:-16.640000pt;}
._5d{margin-left:-15.360000pt;}
._2e{margin-left:-11.681280pt;}
._3e{margin-left:-8.760960pt;}
._1{margin-left:-7.862400pt;}
._5{margin-left:-6.439680pt;}
._3{margin-left:-5.494400pt;}
._2{margin-left:-4.315520pt;}
._a{margin-left:-2.926933pt;}
._4{margin-left:-1.891200pt;}
._0{margin-left:-1.000960pt;}
._6{width:0.972800pt;}
._7{width:2.154667pt;}
._d{width:3.332267pt;}
._e{width:4.593067pt;}
._b{width:5.696000pt;}
._c{width:6.774400pt;}
._15{width:7.938133pt;}
._1c{width:8.915840pt;}
._9{width:10.251733pt;}
._8{width:11.648000pt;}
._14{width:12.542933pt;}
._13{width:13.678933pt;}
._16{width:14.976000pt;}
._1f{width:15.944107pt;}
._12{width:17.024000pt;}
._17{width:18.611200pt;}
._1e{width:19.980800pt;}
._f{width:20.949333pt;}
._10{width:22.254933pt;}
._2a{width:23.197227pt;}
._11{width:24.194133pt;}
._20{width:25.875200pt;}
._3b{width:26.867840pt;}
._27{width:27.875200pt;}
._29{width:28.861227pt;}
._28{width:29.945173pt;}
._25{width:30.926080pt;}
._26{width:31.870933pt;}
._66{width:33.124907pt;}
._24{width:34.519680pt;}
._3f{width:35.895680pt;}
._19{width:37.645867pt;}
._18{width:38.756267pt;}
._68{width:42.372907pt;}
._67{width:43.412053pt;}
._2f{width:45.302400pt;}
._69{width:46.551680pt;}
._21{width:47.848320pt;}
._22{width:49.046400pt;}
._3c{width:50.563840pt;}
._3d{width:51.870720pt;}
._23{width:52.892800pt;}
._1d{width:57.319040pt;}
._1a{width:71.920427pt;}
._1b{width:72.901973pt;}
._2b{width:84.129067pt;}
._61{width:186.515627pt;}
._4a{width:227.722667pt;}
._4f{width:283.050667pt;}
._5c{width:306.986667pt;}
._48{width:405.354667pt;}
._38{width:428.720427pt;}
._5a{width:429.994667pt;}
._43{width:497.834667pt;}
._46{width:576.618667pt;}
._4c{width:583.018667pt;}
._5f{width:591.658667pt;}
._50{width:599.104000pt;}
._52{width:637.418667pt;}
._32{width:684.778667pt;}
._36{width:741.066667pt;}
._63{width:757.258667pt;}
._56{width:786.826667pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.520000pt;}
.y6{bottom:4.832000pt;}
.y4{bottom:6.880000pt;}
.y7{bottom:7.840000pt;}
.y5{bottom:13.792000pt;}
.y7f{bottom:21.914667pt;}
.y61{bottom:21.920000pt;}
.y66{bottom:22.400000pt;}
.y7e{bottom:40.314667pt;}
.y78{bottom:40.320000pt;}
.y60{bottom:40.800000pt;}
.y65{bottom:43.840000pt;}
.y2{bottom:51.072000pt;}
.y7d{bottom:58.714667pt;}
.y77{bottom:58.720000pt;}
.y7b{bottom:58.760000pt;}
.y5f{bottom:62.240000pt;}
.y64{bottom:65.280000pt;}
.y80{bottom:69.312000pt;}
.y36{bottom:69.632000pt;}
.y5b{bottom:78.272000pt;}
.y74{bottom:85.792000pt;}
.y35{bottom:94.272000pt;}
.y5a{bottom:102.912000pt;}
.y9b{bottom:117.472000pt;}
.y34{bottom:118.912000pt;}
.y73{bottom:121.152000pt;}
.y7c{bottom:125.152000pt;}
.y59{bottom:127.552000pt;}
.y9a{bottom:142.106667pt;}
.y33{bottom:143.706667pt;}
.y72{bottom:145.786667pt;}
.y58{bottom:152.346667pt;}
.y99{bottom:166.746667pt;}
.y32{bottom:168.346667pt;}
.y71{bottom:170.426667pt;}
.y57{bottom:176.986667pt;}
.y98{bottom:191.546667pt;}
.y31{bottom:192.986667pt;}
.y70{bottom:195.066667pt;}
.y7a{bottom:199.386667pt;}
.y56{bottom:201.626667pt;}
.y97{bottom:216.186667pt;}
.y30{bottom:217.786667pt;}
.y6f{bottom:219.866667pt;}
.y55{bottom:226.426667pt;}
.y2f{bottom:238.746667pt;}
.y96{bottom:240.826667pt;}
.y6e{bottom:244.506667pt;}
.y54{bottom:251.106667pt;}
.y2e{bottom:257.186667pt;}
.y95{bottom:265.666667pt;}
.y6d{bottom:269.186667pt;}
.y79{bottom:273.666667pt;}
.y2d{bottom:275.586667pt;}
.y53{bottom:275.746667pt;}
.y94{bottom:290.306667pt;}
.y6c{bottom:293.826667pt;}
.y2c{bottom:293.986667pt;}
.ybd{bottom:297.186667pt;}
.y52{bottom:300.386667pt;}
.y2b{bottom:312.386667pt;}
.y93{bottom:314.946667pt;}
.ybc{bottom:315.586667pt;}
.y6b{bottom:318.626667pt;}
.y51{bottom:325.186667pt;}
.y2a{bottom:330.786667pt;}
.ybb{bottom:333.986667pt;}
.y92{bottom:339.586667pt;}
.y6a{bottom:343.266667pt;}
.y76{bottom:348.066667pt;}
.y29{bottom:349.186667pt;}
.y50{bottom:349.826667pt;}
.yba{bottom:352.386667pt;}
.y91{bottom:364.386667pt;}
.y28{bottom:367.586667pt;}
.y69{bottom:367.906667pt;}
.yb9{bottom:370.786667pt;}
.y4f{bottom:374.466667pt;}
.y27{bottom:385.986667pt;}
.y90{bottom:389.026667pt;}
.yb8{bottom:389.186667pt;}
.y68{bottom:392.706667pt;}
.y4e{bottom:399.266667pt;}
.y26{bottom:404.226667pt;}
.yb7{bottom:407.586667pt;}
.y8f{bottom:413.666667pt;}
.y67{bottom:414.146667pt;}
.y75{bottom:422.306667pt;}
.y25{bottom:422.626667pt;}
.y4d{bottom:423.906667pt;}
.y63{bottom:424.866667pt;}
.yb6{bottom:425.826667pt;}
.y8e{bottom:438.306667pt;}
.y24{bottom:441.026667pt;}
.yb5{bottom:444.226667pt;}
.y4c{bottom:448.546667pt;}
.y23{bottom:459.426667pt;}
.yb4{bottom:462.626667pt;}
.y8d{bottom:463.106667pt;}
.y4b{bottom:473.186667pt;}
.y22{bottom:477.826667pt;}
.yb3{bottom:481.026667pt;}
.y8c{bottom:487.746667pt;}
.y21{bottom:496.226667pt;}
.y4a{bottom:497.986667pt;}
.yb2{bottom:499.426667pt;}
.y62{bottom:508.413333pt;}
.y8b{bottom:512.413333pt;}
.y20{bottom:514.653333pt;}
.yb1{bottom:517.853333pt;}
.y49{bottom:522.653333pt;}
.y1f{bottom:533.053333pt;}
.yb0{bottom:536.253333pt;}
.y8a{bottom:537.213333pt;}
.y48{bottom:547.293333pt;}
.y1e{bottom:551.453333pt;}
.yaf{bottom:554.653333pt;}
.y89{bottom:561.853333pt;}
.y1d{bottom:569.853333pt;}
.y47{bottom:572.093333pt;}
.yae{bottom:573.053333pt;}
.y88{bottom:586.493333pt;}
.y1c{bottom:588.253333pt;}
.y5e{bottom:588.733333pt;}
.yad{bottom:591.453333pt;}
.y46{bottom:596.733333pt;}
.y1b{bottom:606.653333pt;}
.y87{bottom:607.933333pt;}
.yac{bottom:609.853333pt;}
.y86{bottom:618.653333pt;}
.y45{bottom:621.373333pt;}
.y1a{bottom:625.053333pt;}
.yab{bottom:628.253333pt;}
.y44{bottom:646.013333pt;}
.yaa{bottom:646.653333pt;}
.y19{bottom:661.853333pt;}
.ya9{bottom:665.053333pt;}
.y5c{bottom:669.053333pt;}
.y43{bottom:670.813333pt;}
.y18{bottom:680.253333pt;}
.ya8{bottom:683.453333pt;}
.y85{bottom:693.053333pt;}
.y42{bottom:695.453333pt;}
.y17{bottom:698.653333pt;}
.ya7{bottom:701.853333pt;}
.y16{bottom:717.053333pt;}
.y41{bottom:720.093333pt;}
.ya6{bottom:720.253333pt;}
.y15{bottom:735.453333pt;}
.ya5{bottom:738.653333pt;}
.y40{bottom:744.733333pt;}
.y14{bottom:753.893333pt;}
.ya4{bottom:757.093333pt;}
.y84{bottom:767.333333pt;}
.y3f{bottom:769.573333pt;}
.y13{bottom:772.293333pt;}
.ya3{bottom:775.493333pt;}
.y12{bottom:790.693333pt;}
.ya2{bottom:793.893333pt;}
.y3e{bottom:794.213333pt;}
.y11{bottom:809.093333pt;}
.ya1{bottom:812.293333pt;}
.y3d{bottom:818.853333pt;}
.y10{bottom:827.493333pt;}
.ya0{bottom:830.693333pt;}
.y83{bottom:841.573333pt;}
.y3c{bottom:843.653333pt;}
.yf{bottom:845.893333pt;}
.y9f{bottom:849.093333pt;}
.y9e{bottom:867.493333pt;}
.y3b{bottom:868.293333pt;}
.ye{bottom:883.813333pt;}
.y9d{bottom:885.893333pt;}
.y3a{bottom:892.933333pt;}
.yd{bottom:902.213333pt;}
.y82{bottom:915.813333pt;}
.y39{bottom:917.573333pt;}
.yc{bottom:920.613333pt;}
.y9c{bottom:923.813333pt;}
.yb{bottom:939.013333pt;}
.y38{bottom:942.373333pt;}
.ya{bottom:957.413333pt;}
.y37{bottom:967.013333pt;}
.y9{bottom:975.173333pt;}
.y81{bottom:990.053333pt;}
.y8{bottom:991.653333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.440000pt;}
.h12{height:18.400000pt;}
.h1d{height:18.432000pt;}
.h3{height:29.440000pt;}
.h7{height:34.400000pt;}
.h5{height:39.232000pt;}
.h1f{height:42.063437pt;}
.h18{height:42.084375pt;}
.h20{height:47.109375pt;}
.hd{height:52.750000pt;}
.ha{height:53.535000pt;}
.h1e{height:54.656250pt;}
.h1c{height:55.200000pt;}
.h21{height:56.406250pt;}
.h2{height:58.563750pt;}
.h10{height:61.717500pt;}
.hc{height:62.781250pt;}
.h15{height:62.812500pt;}
.h16{height:63.947812pt;}
.hb{height:64.500000pt;}
.h1a{height:65.781915pt;}
.hf{height:65.995312pt;}
.h8{height:69.890625pt;}
.h11{height:73.454062pt;}
.he{height:73.490625pt;}
.h19{height:73.600000pt;}
.h1b{height:73.632000pt;}
.h9{height:75.465000pt;}
.h14{height:76.964840pt;}
.h13{height:79.680000pt;}
.h17{height:82.752000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:50.912000pt;}
.w3{width:58.880000pt;}
.w5{width:58.912000pt;}
.w6{width:84.992000pt;}
.w7{width:301.466667pt;}
.w9{width:310.946667pt;}
.w8{width:311.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x5{left:9.440000pt;}
.x20{left:10.912000pt;}
.x29{left:18.432000pt;}
.x27{left:20.960000pt;}
.x8{left:22.400000pt;}
.x3{left:23.520000pt;}
.x25{left:36.826667pt;}
.x1c{left:49.306667pt;}
.x16{left:54.714667pt;}
.x1{left:56.799988pt;}
.x1d{left:57.786667pt;}
.x14{left:64.506667pt;}
.x12{left:75.994667pt;}
.x1a{left:78.880000pt;}
.x11{left:83.552000pt;}
.x2b{left:85.311988pt;}
.x26{left:91.706667pt;}
.x10{left:94.591988pt;}
.xf{left:104.031988pt;}
.x1f{left:115.706667pt;}
.x18{left:118.234667pt;}
.x23{left:130.266667pt;}
.x21{left:136.186667pt;}
.x24{left:137.786667pt;}
.x9{left:140.666655pt;}
.xd{left:148.986655pt;}
.x1e{left:151.066667pt;}
.x22{left:156.666667pt;}
.x28{left:158.906667pt;}
.x7{left:173.466667pt;}
.x2a{left:178.266667pt;}
.x17{left:192.186667pt;}
.x19{left:207.714667pt;}
.xc{left:246.426655pt;}
.xe{left:260.226655pt;}
.xb{left:334.946655pt;}
.x13{left:385.666667pt;}
.x1b{left:390.466667pt;}
.x4{left:398.146667pt;}
.xa{left:401.826655pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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