
    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_b57043c35b65531eb836aa97.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4e0bb7f442f1616fc6efe9ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_525c8f2986aa08eeda046d4d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_41c45893d90abb55b9620a33.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_11192acb79bf6025f3445be7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1289d72921bcdae492ea854e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d7962ea2e862db5b1ebf0805.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_c461e25e67abd870961d047c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_9a9cb58ae1121ed4c75a6697.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_1ebc79c6bb2a19c33496dba6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_4731e18585545f0bea733a40.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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_0bc3afd8c38856024a340f1c.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f6f61c5df3fd654369807bad.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_779ffdfd79fa85467327cef5.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2591863b1247f1eb2ddfe9e1.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e7aa3cd1195414b67ff1f75c.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a87715eff301d6f9ef388a6c.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_310c8f802846defe252e7c0a.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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;}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,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);}
.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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.724000px;}
.lse{letter-spacing:-2.250000px;}
.lsd{letter-spacing:-1.482000px;}
.lsf{letter-spacing:-1.128000px;}
.ls15{letter-spacing:-1.026000px;}
.lsc{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.513000px;}
.lsa{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.256200px;}
.ls9{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.256200px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls17{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.966500px;}
.ls5{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.086500px;}
.ls14{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.310000px;}
.ls8{letter-spacing:2.370000px;}
.ls7{letter-spacing:2.430000px;}
.ls16{letter-spacing:2.760000px;}
.ls10{letter-spacing:3.378000px;}
.ls11{letter-spacing:10.140000px;}
.ls19{letter-spacing:15.387000px;}
.ls18{letter-spacing:46.887000px;}
.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;}
}
.wse{word-spacing:-17.385000px;}
.ws6{word-spacing:-16.875000px;}
.wsf{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.wsc{word-spacing:-14.881200px;}
.ws5{word-spacing:-14.625000px;}
.wsd{word-spacing:-13.599000px;}
.ws7{word-spacing:-13.221000px;}
.wsb{word-spacing:-13.143000px;}
.ws1{word-spacing:-12.531000px;}
.ws8{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.wsa{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-8.131500px;}
._c{margin-left:-7.080000px;}
._e{margin-left:-5.562000px;}
._d{margin-left:-3.744000px;}
._2{margin-left:-2.268000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.132000px;}
._b{width:4.900500px;}
._17{width:5.922000px;}
._5{width:7.056000px;}
._6{width:8.100000px;}
._9{width:9.405000px;}
._7{width:10.974000px;}
._11{width:12.096000px;}
._10{width:13.198500px;}
._16{width:14.602500px;}
._4{width:16.776000px;}
._a{width:18.249000px;}
._14{width:20.380500px;}
._12{width:22.041000px;}
._f{width:24.975000px;}
._13{width:26.037000px;}
._18{width:27.780000px;}
._15{width:30.165000px;}
._19{width:93.267000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.y43{bottom:3.390000px;}
.y19{bottom:4.500000px;}
.y9a{bottom:4.515000px;}
.ya8{bottom:5.625000px;}
.yab{bottom:5.640000px;}
.yc8{bottom:5.655000px;}
.ya6{bottom:5.670000px;}
.yae{bottom:6.750000px;}
.ybd{bottom:6.757500px;}
.ya5{bottom:6.765000px;}
.yba{bottom:6.795000px;}
.ya0{bottom:7.875000px;}
.y98{bottom:9.045000px;}
.y97{bottom:11.250000px;}
.ye{bottom:11.295000px;}
.y1c{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y95{bottom:15.795000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.y42{bottom:21.375000px;}
.y48{bottom:22.500000px;}
.y18{bottom:28.170000px;}
.y46{bottom:29.250000px;}
.y5{bottom:30.375000px;}
.yb{bottom:30.405000px;}
.y94{bottom:33.795000px;}
.y41{bottom:38.295000px;}
.y47{bottom:40.530000px;}
.y45{bottom:43.905000px;}
.y17{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y1{bottom:51.787500px;}
.y40{bottom:55.170000px;}
.y16{bottom:60.795000px;}
.y9{bottom:73.185000px;}
.y3f{bottom:73.215000px;}
.y15{bottom:77.700000px;}
.y14{bottom:87.825000px;}
.y3e{bottom:90.090000px;}
.y8{bottom:93.435000px;}
.y92{bottom:97.950000px;}
.yf7{bottom:101.325000px;}
.ybf{bottom:102.450000px;}
.y55{bottom:104.700000px;}
.y13{bottom:105.825000px;}
.y3d{bottom:106.965000px;}
.y7{bottom:110.355000px;}
.y91{bottom:115.950000px;}
.yf6{bottom:119.362500px;}
.y54{bottom:121.612500px;}
.ybe{bottom:124.987500px;}
.y12{bottom:124.995000px;}
.y90{bottom:132.862500px;}
.yf5{bottom:136.237500px;}
.y53{bottom:139.612500px;}
.y3c{bottom:141.870000px;}
.ybc{bottom:148.612500px;}
.y8f{bottom:149.737500px;}
.y11{bottom:150.900000px;}
.yf4{bottom:153.105000px;}
.y52{bottom:156.480000px;}
.y3b{bottom:158.775000px;}
.y8e{bottom:167.775000px;}
.yf3{bottom:171.150000px;}
.ybb{bottom:172.275000px;}
.y51{bottom:173.400000px;}
.y10{bottom:175.650000px;}
.y3a{bottom:176.790000px;}
.y8d{bottom:184.650000px;}
.y2b{bottom:185.775000px;}
.yf2{bottom:188.025000px;}
.y50{bottom:191.400000px;}
.y39{bottom:193.665000px;}
.yb9{bottom:194.775000px;}
.y2a{bottom:200.445000px;}
.y8c{bottom:201.570000px;}
.yf1{bottom:204.945000px;}
.y4f{bottom:208.320000px;}
.y38{bottom:210.570000px;}
.y29{bottom:218.445000px;}
.y8b{bottom:219.570000px;}
.yb8{bottom:221.820000px;}
.yf0{bottom:222.945000px;}
.y4e{bottom:225.195000px;}
.y37{bottom:228.570000px;}
.y8a{bottom:236.445000px;}
.y28{bottom:236.490000px;}
.yb7{bottom:238.695000px;}
.yef{bottom:239.820000px;}
.y4d{bottom:243.225000px;}
.y36{bottom:245.490000px;}
.y89{bottom:253.350000px;}
.y27{bottom:253.365000px;}
.yb6{bottom:256.725000px;}
.y4c{bottom:260.100000px;}
.y35{bottom:262.365000px;}
.yb5{bottom:270.225000px;}
.y26{bottom:270.240000px;}
.y88{bottom:271.350000px;}
.yee{bottom:274.725000px;}
.y4b{bottom:276.975000px;}
.y34{bottom:280.395000px;}
.y25{bottom:288.270000px;}
.yed{bottom:291.645000px;}
.yb4{bottom:292.755000px;}
.y4a{bottom:295.020000px;}
.y33{bottom:297.270000px;}
.y24{bottom:305.145000px;}
.yec{bottom:308.520000px;}
.y49{bottom:313.005000px;}
.y32{bottom:314.145000px;}
.yb3{bottom:316.380000px;}
.y87{bottom:323.130000px;}
.y23{bottom:323.190000px;}
.yeb{bottom:326.550000px;}
.y44{bottom:327.675000px;}
.y31{bottom:332.175000px;}
.yb2{bottom:338.925000px;}
.y86{bottom:340.050000px;}
.y22{bottom:340.065000px;}
.yea{bottom:343.425000px;}
.y30{bottom:349.050000px;}
.y85{bottom:356.925000px;}
.y21{bottom:358.050000px;}
.ye9{bottom:360.300000px;}
.y2f{bottom:365.970000px;}
.yb1{bottom:367.050000px;}
.y84{bottom:374.955000px;}
.y20{bottom:374.970000px;}
.ye8{bottom:378.330000px;}
.y1d{bottom:382.830000px;}
.yb0{bottom:383.955000px;}
.y2e{bottom:383.970000px;}
.y83{bottom:391.830000px;}
.ye7{bottom:395.205000px;}
.y2d{bottom:400.845000px;}
.yaf{bottom:401.955000px;}
.y1f{bottom:401.970000px;}
.y82{bottom:408.705000px;}
.ye6{bottom:412.125000px;}
.yad{bottom:415.500000px;}
.y2c{bottom:417.750000px;}
.y1e{bottom:420.000000px;}
.y81{bottom:426.750000px;}
.ye5{bottom:430.125000px;}
.yac{bottom:439.125000px;}
.y80{bottom:443.625000px;}
.ye4{bottom:447.000000px;}
.y7f{bottom:460.545000px;}
.yaa{bottom:461.655000px;}
.ye3{bottom:463.920000px;}
.y7e{bottom:478.530000px;}
.ye2{bottom:481.905000px;}
.ya9{bottom:484.155000px;}
.y7d{bottom:495.450000px;}
.ye1{bottom:498.825000px;}
.ya7{bottom:507.825000px;}
.y7c{bottom:512.325000px;}
.ye0{bottom:515.700000px;}
.y7b{bottom:530.325000px;}
.ydf{bottom:532.575000px;}
.y7a{bottom:547.245000px;}
.yde{bottom:550.620000px;}
.ya4{bottom:552.855000px;}
.y79{bottom:564.120000px;}
.ydd{bottom:567.495000px;}
.ya3{bottom:579.900000px;}
.y78{bottom:582.150000px;}
.ydc{bottom:584.400000px;}
.ya2{bottom:596.775000px;}
.y77{bottom:599.025000px;}
.ydb{bottom:602.400000px;}
.ya1{bottom:613.650000px;}
.y76{bottom:615.900000px;}
.yda{bottom:619.320000px;}
.y9f{bottom:628.320000px;}
.y75{bottom:633.945000px;}
.yd9{bottom:636.195000px;}
.y74{bottom:650.820000px;}
.y9e{bottom:653.070000px;}
.yd8{bottom:654.195000px;}
.y73{bottom:667.725000px;}
.y9d{bottom:671.100000px;}
.y72{bottom:685.725000px;}
.yd7{bottom:687.975000px;}
.y9c{bottom:689.100000px;}
.y71{bottom:702.645000px;}
.yd6{bottom:706.020000px;}
.y9b{bottom:707.130000px;}
.y70{bottom:719.520000px;}
.yd5{bottom:722.895000px;}
.y99{bottom:725.130000px;}
.y6f{bottom:737.505000px;}
.yd4{bottom:739.770000px;}
.y93{bottom:743.130000px;}
.y6e{bottom:754.425000px;}
.yd3{bottom:757.800000px;}
.y96{bottom:770.175000px;}
.y6d{bottom:771.300000px;}
.yd2{bottom:774.675000px;}
.y6c{bottom:789.330000px;}
.yd1{bottom:791.580000px;}
.y6b{bottom:806.205000px;}
.yd0{bottom:809.580000px;}
.y1a{bottom:814.080000px;}
.y6a{bottom:823.080000px;}
.y69{bottom:841.125000px;}
.yf{bottom:844.500000px;}
.ycf{bottom:846.750000px;}
.y68{bottom:858.000000px;}
.yce{bottom:870.420000px;}
.y67{bottom:874.920000px;}
.ycd{bottom:892.905000px;}
.y66{bottom:892.920000px;}
.y65{bottom:909.795000px;}
.ycc{bottom:919.950000px;}
.y64{bottom:926.700000px;}
.ycb{bottom:936.825000px;}
.y63{bottom:944.700000px;}
.yca{bottom:954.870000px;}
.y62{bottom:961.620000px;}
.yc9{bottom:968.370000px;}
.y61{bottom:978.495000px;}
.yc7{bottom:991.995000px;}
.y60{bottom:996.525000px;}
.y5f{bottom:1013.400000px;}
.yc6{bottom:1014.525000px;}
.y5e{bottom:1030.275000px;}
.yd{bottom:1034.775000px;}
.yc5{bottom:1038.195000px;}
.y5d{bottom:1048.320000px;}
.y6{bottom:1060.695000px;}
.y5c{bottom:1065.195000px;}
.y5b{bottom:1082.100000px;}
.yc4{bottom:1087.725000px;}
.y5a{bottom:1100.100000px;}
.yc3{bottom:1105.725000px;}
.y59{bottom:1116.975000px;}
.yc2{bottom:1122.630000px;}
.y58{bottom:1133.880000px;}
.yc1{bottom:1137.255000px;}
.y57{bottom:1151.880000px;}
.yc0{bottom:1159.755000px;}
.y56{bottom:1168.800000px;}
.h24{height:18.000000px;}
.h26{height:18.022500px;}
.h25{height:18.037500px;}
.h30{height:21.360000px;}
.h2a{height:21.375000px;}
.h29{height:21.412500px;}
.h2f{height:22.485000px;}
.h28{height:22.500000px;}
.h2e{height:22.522500px;}
.h2b{height:22.537500px;}
.h2c{height:23.625000px;}
.h27{height:24.750000px;}
.hc{height:25.912500px;}
.h13{height:29.953125px;}
.h14{height:30.412500px;}
.h23{height:31.537500px;}
.h2{height:32.662500px;}
.h12{height:35.806641px;}
.h9{height:37.125000px;}
.h1a{height:39.832031px;}
.h1c{height:40.847168px;}
.h1b{height:41.275635px;}
.h1f{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h31{height:46.218809px;}
.h1e{height:46.278809px;}
.h33{height:46.338809px;}
.h2d{height:46.398809px;}
.h32{height:46.458809px;}
.h21{height:46.575439px;}
.h20{height:46.695439px;}
.h18{height:47.074219px;}
.h19{height:48.216797px;}
.h17{height:49.234131px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h1d{height:55.162500px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h22{height:58.575000px;}
.h11{height:59.899658px;}
.hf{height:64.237500px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hd{height:190.275000px;}
.h16{height:431.250000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w12{width:78.862500px;}
.w10{width:82.237500px;}
.w11{width:84.487500px;}
.w13{width:86.737500px;}
.wf{width:90.112500px;}
.wd{width:93.487500px;}
.we{width:101.362500px;}
.w1e{width:107.025000px;}
.w9{width:109.275000px;}
.w1f{width:136.312500px;}
.w4{width:141.937500px;}
.w1a{width:143.062500px;}
.w1d{width:145.312500px;}
.w1c{width:146.437500px;}
.wb{width:173.475000px;}
.w17{width:174.600000px;}
.w18{width:180.225000px;}
.w1b{width:192.600000px;}
.wa{width:194.850000px;}
.w7{width:209.520000px;}
.w15{width:215.145000px;}
.w16{width:215.175000px;}
.w19{width:232.050000px;}
.w21{width:235.425000px;}
.w22{width:236.550000px;}
.wc{width:251.220000px;}
.w20{width:256.845000px;}
.w14{width:299.625000px;}
.w23{width:364.950000px;}
.w24{width:364.995000px;}
.w8{width:522.675000px;}
.w5{width:590.250000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.xf{left:12.375000px;}
.xd{left:15.750000px;}
.x15{left:20.280000px;}
.x1{left:81.112500px;}
.x19{left:82.237500px;}
.x17{left:92.362487px;}
.x16{left:93.487487px;}
.x5{left:97.987500px;}
.x21{left:99.112487px;}
.x12{left:108.112500px;}
.x10{left:116.032500px;}
.x2a{left:123.899987px;}
.x11{left:140.812500px;}
.x1a{left:192.645000px;}
.x13{left:214.012500px;}
.x6{left:223.050000px;}
.xe{left:232.042500px;}
.x27{left:256.845000px;}
.x34{left:265.844987px;}
.x2c{left:275.970000px;}
.x30{left:280.499987px;}
.x9{left:284.955000px;}
.x1d{left:286.125000px;}
.x14{left:290.625000px;}
.x26{left:304.124987px;}
.x35{left:322.169987px;}
.x32{left:340.200000px;}
.x31{left:342.449987px;}
.x7{left:343.545000px;}
.x8{left:362.700000px;}
.xc{left:364.957500px;}
.x23{left:381.870000px;}
.x22{left:385.244987px;}
.x1b{left:387.495000px;}
.x36{left:389.729987px;}
.x2b{left:408.899987px;}
.x18{left:410.024987px;}
.x2d{left:422.400000px;}
.xb{left:425.775000px;}
.x28{left:437.070000px;}
.x25{left:447.194987px;}
.xa{left:448.320000px;}
.x1e{left:478.725000px;}
.x1c{left:560.970000px;}
.x2e{left:568.845000px;}
.x33{left:575.625000px;}
.x24{left:597.000000px;}
.x1f{left:645.450000px;}
.x29{left:669.120000px;}
.x2f{left:675.870000px;}
.x20{left:725.445000px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.lse{letter-spacing:-2.000000pt;}
.lsd{letter-spacing:-1.317333pt;}
.lsf{letter-spacing:-1.002667pt;}
.ls15{letter-spacing:-0.912000pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.456000pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.227733pt;}
.ls9{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.227733pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls17{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls5{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.854667pt;}
.ls14{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.053333pt;}
.ls8{letter-spacing:2.106667pt;}
.ls7{letter-spacing:2.160000pt;}
.ls16{letter-spacing:2.453333pt;}
.ls10{letter-spacing:3.002667pt;}
.ls11{letter-spacing:9.013333pt;}
.ls19{letter-spacing:13.677333pt;}
.ls18{letter-spacing:41.677333pt;}
.wse{word-spacing:-15.453333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsf{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.wsc{word-spacing:-13.227733pt;}
.ws5{word-spacing:-13.000000pt;}
.wsd{word-spacing:-12.088000pt;}
.ws7{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.682667pt;}
.ws1{word-spacing:-11.138667pt;}
.ws8{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.wsa{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-7.228000pt;}
._c{margin-left:-6.293333pt;}
._e{margin-left:-4.944000pt;}
._d{margin-left:-3.328000pt;}
._2{margin-left:-2.016000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.784000pt;}
._b{width:4.356000pt;}
._17{width:5.264000pt;}
._5{width:6.272000pt;}
._6{width:7.200000pt;}
._9{width:8.360000pt;}
._7{width:9.754667pt;}
._11{width:10.752000pt;}
._10{width:11.732000pt;}
._16{width:12.980000pt;}
._4{width:14.912000pt;}
._a{width:16.221333pt;}
._14{width:18.116000pt;}
._12{width:19.592000pt;}
._f{width:22.200000pt;}
._13{width:23.144000pt;}
._18{width:24.693333pt;}
._15{width:26.813333pt;}
._19{width:82.904000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.y43{bottom:3.013333pt;}
.y19{bottom:4.000000pt;}
.y9a{bottom:4.013333pt;}
.ya8{bottom:5.000000pt;}
.yab{bottom:5.013333pt;}
.yc8{bottom:5.026667pt;}
.ya6{bottom:5.040000pt;}
.yae{bottom:6.000000pt;}
.ybd{bottom:6.006667pt;}
.ya5{bottom:6.013333pt;}
.yba{bottom:6.040000pt;}
.ya0{bottom:7.000000pt;}
.y98{bottom:8.040000pt;}
.y97{bottom:10.000000pt;}
.ye{bottom:10.040000pt;}
.y1c{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y95{bottom:14.040000pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.y42{bottom:19.000000pt;}
.y48{bottom:20.000000pt;}
.y18{bottom:25.040000pt;}
.y46{bottom:26.000000pt;}
.y5{bottom:27.000000pt;}
.yb{bottom:27.026667pt;}
.y94{bottom:30.040000pt;}
.y41{bottom:34.040000pt;}
.y47{bottom:36.026667pt;}
.y45{bottom:39.026667pt;}
.y17{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:46.033333pt;}
.y40{bottom:49.040000pt;}
.y16{bottom:54.040000pt;}
.y9{bottom:65.053333pt;}
.y3f{bottom:65.080000pt;}
.y15{bottom:69.066667pt;}
.y14{bottom:78.066667pt;}
.y3e{bottom:80.080000pt;}
.y8{bottom:83.053333pt;}
.y92{bottom:87.066667pt;}
.yf7{bottom:90.066667pt;}
.ybf{bottom:91.066667pt;}
.y55{bottom:93.066667pt;}
.y13{bottom:94.066667pt;}
.y3d{bottom:95.080000pt;}
.y7{bottom:98.093333pt;}
.y91{bottom:103.066667pt;}
.yf6{bottom:106.100000pt;}
.y54{bottom:108.100000pt;}
.ybe{bottom:111.100000pt;}
.y12{bottom:111.106667pt;}
.y90{bottom:118.100000pt;}
.yf5{bottom:121.100000pt;}
.y53{bottom:124.100000pt;}
.y3c{bottom:126.106667pt;}
.ybc{bottom:132.100000pt;}
.y8f{bottom:133.100000pt;}
.y11{bottom:134.133333pt;}
.yf4{bottom:136.093333pt;}
.y52{bottom:139.093333pt;}
.y3b{bottom:141.133333pt;}
.y8e{bottom:149.133333pt;}
.yf3{bottom:152.133333pt;}
.ybb{bottom:153.133333pt;}
.y51{bottom:154.133333pt;}
.y10{bottom:156.133333pt;}
.y3a{bottom:157.146667pt;}
.y8d{bottom:164.133333pt;}
.y2b{bottom:165.133333pt;}
.yf2{bottom:167.133333pt;}
.y50{bottom:170.133333pt;}
.y39{bottom:172.146667pt;}
.yb9{bottom:173.133333pt;}
.y2a{bottom:178.173333pt;}
.y8c{bottom:179.173333pt;}
.yf1{bottom:182.173333pt;}
.y4f{bottom:185.173333pt;}
.y38{bottom:187.173333pt;}
.y29{bottom:194.173333pt;}
.y8b{bottom:195.173333pt;}
.yb8{bottom:197.173333pt;}
.yf0{bottom:198.173333pt;}
.y4e{bottom:200.173333pt;}
.y37{bottom:203.173333pt;}
.y8a{bottom:210.173333pt;}
.y28{bottom:210.213333pt;}
.yb7{bottom:212.173333pt;}
.yef{bottom:213.173333pt;}
.y4d{bottom:216.200000pt;}
.y36{bottom:218.213333pt;}
.y89{bottom:225.200000pt;}
.y27{bottom:225.213333pt;}
.yb6{bottom:228.200000pt;}
.y4c{bottom:231.200000pt;}
.y35{bottom:233.213333pt;}
.yb5{bottom:240.200000pt;}
.y26{bottom:240.213333pt;}
.y88{bottom:241.200000pt;}
.yee{bottom:244.200000pt;}
.y4b{bottom:246.200000pt;}
.y34{bottom:249.240000pt;}
.y25{bottom:256.240000pt;}
.yed{bottom:259.240000pt;}
.yb4{bottom:260.226667pt;}
.y4a{bottom:262.240000pt;}
.y33{bottom:264.240000pt;}
.y24{bottom:271.240000pt;}
.yec{bottom:274.240000pt;}
.y49{bottom:278.226667pt;}
.y32{bottom:279.240000pt;}
.yb3{bottom:281.226667pt;}
.y87{bottom:287.226667pt;}
.y23{bottom:287.280000pt;}
.yeb{bottom:290.266667pt;}
.y44{bottom:291.266667pt;}
.y31{bottom:295.266667pt;}
.yb2{bottom:301.266667pt;}
.y86{bottom:302.266667pt;}
.y22{bottom:302.280000pt;}
.yea{bottom:305.266667pt;}
.y30{bottom:310.266667pt;}
.y85{bottom:317.266667pt;}
.y21{bottom:318.266667pt;}
.ye9{bottom:320.266667pt;}
.y2f{bottom:325.306667pt;}
.yb1{bottom:326.266667pt;}
.y84{bottom:333.293333pt;}
.y20{bottom:333.306667pt;}
.ye8{bottom:336.293333pt;}
.y1d{bottom:340.293333pt;}
.yb0{bottom:341.293333pt;}
.y2e{bottom:341.306667pt;}
.y83{bottom:348.293333pt;}
.ye7{bottom:351.293333pt;}
.y2d{bottom:356.306667pt;}
.yaf{bottom:357.293333pt;}
.y1f{bottom:357.306667pt;}
.y82{bottom:363.293333pt;}
.ye6{bottom:366.333333pt;}
.yad{bottom:369.333333pt;}
.y2c{bottom:371.333333pt;}
.y1e{bottom:373.333333pt;}
.y81{bottom:379.333333pt;}
.ye5{bottom:382.333333pt;}
.yac{bottom:390.333333pt;}
.y80{bottom:394.333333pt;}
.ye4{bottom:397.333333pt;}
.y7f{bottom:409.373333pt;}
.yaa{bottom:410.360000pt;}
.ye3{bottom:412.373333pt;}
.y7e{bottom:425.360000pt;}
.ye2{bottom:428.360000pt;}
.ya9{bottom:430.360000pt;}
.y7d{bottom:440.400000pt;}
.ye1{bottom:443.400000pt;}
.ya7{bottom:451.400000pt;}
.y7c{bottom:455.400000pt;}
.ye0{bottom:458.400000pt;}
.y7b{bottom:471.400000pt;}
.ydf{bottom:473.400000pt;}
.y7a{bottom:486.440000pt;}
.yde{bottom:489.440000pt;}
.ya4{bottom:491.426667pt;}
.y79{bottom:501.440000pt;}
.ydd{bottom:504.440000pt;}
.ya3{bottom:515.466667pt;}
.y78{bottom:517.466667pt;}
.ydc{bottom:519.466667pt;}
.ya2{bottom:530.466667pt;}
.y77{bottom:532.466667pt;}
.ydb{bottom:535.466667pt;}
.ya1{bottom:545.466667pt;}
.y76{bottom:547.466667pt;}
.yda{bottom:550.506667pt;}
.y9f{bottom:558.506667pt;}
.y75{bottom:563.506667pt;}
.yd9{bottom:565.506667pt;}
.y74{bottom:578.506667pt;}
.y9e{bottom:580.506667pt;}
.yd8{bottom:581.506667pt;}
.y73{bottom:593.533333pt;}
.y9d{bottom:596.533333pt;}
.y72{bottom:609.533333pt;}
.yd7{bottom:611.533333pt;}
.y9c{bottom:612.533333pt;}
.y71{bottom:624.573333pt;}
.yd6{bottom:627.573333pt;}
.y9b{bottom:628.560000pt;}
.y70{bottom:639.573333pt;}
.yd5{bottom:642.573333pt;}
.y99{bottom:644.560000pt;}
.y6f{bottom:655.560000pt;}
.yd4{bottom:657.573333pt;}
.y93{bottom:660.560000pt;}
.y6e{bottom:670.600000pt;}
.yd3{bottom:673.600000pt;}
.y96{bottom:684.600000pt;}
.y6d{bottom:685.600000pt;}
.yd2{bottom:688.600000pt;}
.y6c{bottom:701.626667pt;}
.yd1{bottom:703.626667pt;}
.y6b{bottom:716.626667pt;}
.yd0{bottom:719.626667pt;}
.y1a{bottom:723.626667pt;}
.y6a{bottom:731.626667pt;}
.y69{bottom:747.666667pt;}
.yf{bottom:750.666667pt;}
.ycf{bottom:752.666667pt;}
.y68{bottom:762.666667pt;}
.yce{bottom:773.706667pt;}
.y67{bottom:777.706667pt;}
.ycd{bottom:793.693333pt;}
.y66{bottom:793.706667pt;}
.y65{bottom:808.706667pt;}
.ycc{bottom:817.733333pt;}
.y64{bottom:823.733333pt;}
.ycb{bottom:832.733333pt;}
.y63{bottom:839.733333pt;}
.yca{bottom:848.773333pt;}
.y62{bottom:854.773333pt;}
.yc9{bottom:860.773333pt;}
.y61{bottom:869.773333pt;}
.yc7{bottom:881.773333pt;}
.y60{bottom:885.800000pt;}
.y5f{bottom:900.800000pt;}
.yc6{bottom:901.800000pt;}
.y5e{bottom:915.800000pt;}
.yd{bottom:919.800000pt;}
.yc5{bottom:922.840000pt;}
.y5d{bottom:931.840000pt;}
.y6{bottom:942.840000pt;}
.y5c{bottom:946.840000pt;}
.y5b{bottom:961.866667pt;}
.yc4{bottom:966.866667pt;}
.y5a{bottom:977.866667pt;}
.yc3{bottom:982.866667pt;}
.y59{bottom:992.866667pt;}
.yc2{bottom:997.893333pt;}
.y58{bottom:1007.893333pt;}
.yc1{bottom:1010.893333pt;}
.y57{bottom:1023.893333pt;}
.yc0{bottom:1030.893333pt;}
.y56{bottom:1038.933333pt;}
.h24{height:16.000000pt;}
.h26{height:16.020000pt;}
.h25{height:16.033333pt;}
.h30{height:18.986667pt;}
.h2a{height:19.000000pt;}
.h29{height:19.033333pt;}
.h2f{height:19.986667pt;}
.h28{height:20.000000pt;}
.h2e{height:20.020000pt;}
.h2b{height:20.033333pt;}
.h2c{height:21.000000pt;}
.h27{height:22.000000pt;}
.hc{height:23.033333pt;}
.h13{height:26.625000pt;}
.h14{height:27.033333pt;}
.h23{height:28.033333pt;}
.h2{height:29.033333pt;}
.h12{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1a{height:35.406250pt;}
.h1c{height:36.308594pt;}
.h1b{height:36.689453pt;}
.h1f{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h31{height:41.083385pt;}
.h1e{height:41.136719pt;}
.h33{height:41.190052pt;}
.h2d{height:41.243385pt;}
.h32{height:41.296719pt;}
.h21{height:41.400391pt;}
.h20{height:41.507057pt;}
.h18{height:41.843750pt;}
.h19{height:42.859375pt;}
.h17{height:43.763672pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h1d{height:49.033333pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h22{height:52.066667pt;}
.h11{height:53.244141pt;}
.hf{height:57.100000pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hd{height:169.133333pt;}
.h16{height:383.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w12{width:70.100000pt;}
.w10{width:73.100000pt;}
.w11{width:75.100000pt;}
.w13{width:77.100000pt;}
.wf{width:80.100000pt;}
.wd{width:83.100000pt;}
.we{width:90.100000pt;}
.w1e{width:95.133333pt;}
.w9{width:97.133333pt;}
.w1f{width:121.166667pt;}
.w4{width:126.166667pt;}
.w1a{width:127.166667pt;}
.w1d{width:129.166667pt;}
.w1c{width:130.166667pt;}
.wb{width:154.200000pt;}
.w17{width:155.200000pt;}
.w18{width:160.200000pt;}
.w1b{width:171.200000pt;}
.wa{width:173.200000pt;}
.w7{width:186.240000pt;}
.w15{width:191.240000pt;}
.w16{width:191.266667pt;}
.w19{width:206.266667pt;}
.w21{width:209.266667pt;}
.w22{width:210.266667pt;}
.wc{width:223.306667pt;}
.w20{width:228.306667pt;}
.w14{width:266.333333pt;}
.w23{width:324.400000pt;}
.w24{width:324.440000pt;}
.w8{width:464.600000pt;}
.w5{width:524.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.xf{left:11.000000pt;}
.xd{left:14.000000pt;}
.x15{left:18.026667pt;}
.x1{left:72.100000pt;}
.x19{left:73.100000pt;}
.x17{left:82.099988pt;}
.x16{left:83.099988pt;}
.x5{left:87.100000pt;}
.x21{left:88.099988pt;}
.x12{left:96.100000pt;}
.x10{left:103.140000pt;}
.x2a{left:110.133322pt;}
.x11{left:125.166667pt;}
.x1a{left:171.240000pt;}
.x13{left:190.233333pt;}
.x6{left:198.266667pt;}
.xe{left:206.260000pt;}
.x27{left:228.306667pt;}
.x34{left:236.306655pt;}
.x2c{left:245.306667pt;}
.x30{left:249.333322pt;}
.x9{left:253.293333pt;}
.x1d{left:254.333333pt;}
.x14{left:258.333333pt;}
.x26{left:270.333322pt;}
.x35{left:286.373322pt;}
.x32{left:302.400000pt;}
.x31{left:304.399988pt;}
.x7{left:305.373333pt;}
.x8{left:322.400000pt;}
.xc{left:324.406667pt;}
.x23{left:339.440000pt;}
.x22{left:342.439988pt;}
.x1b{left:344.440000pt;}
.x36{left:346.426655pt;}
.x2b{left:363.466655pt;}
.x18{left:364.466655pt;}
.x2d{left:375.466667pt;}
.xb{left:378.466667pt;}
.x28{left:388.506667pt;}
.x25{left:397.506655pt;}
.xa{left:398.506667pt;}
.x1e{left:425.533333pt;}
.x1c{left:498.640000pt;}
.x2e{left:505.640000pt;}
.x33{left:511.666667pt;}
.x24{left:530.666667pt;}
.x1f{left:573.733333pt;}
.x29{left:594.773333pt;}
.x2f{left:600.773333pt;}
.x20{left:644.840000pt;}
.x3{left:657.840000pt;}
}




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