
    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_67bdce4578a51b72b3570dd2.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_b3f71995e2f362424432d9e9.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_314f0bff6a98ff008a0f479c.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_e8fbfec971254442a6adf139.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_41c45893d90abb55b9620a33.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_11192acb79bf6025f3445be7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1459b094a89c350b79186ebc.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_f2d4a98f86a54135a48eecbf.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_047930ba9e1da5dda2cebf8b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.754395;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_e8a05d16e11d915f64819d25.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8ef03deaf9c167291f6fe34b.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_2c32f80b8ae93f7003f8bf05.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_85d594694d2279e1e48d61e6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_56c5763af4f4a55fd39e0b74.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_a9e4e1d95ffa5dcf29b202bb.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_96dac4c4af3ef45ad07be37d.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_0b63ca7fe75e1b2a2e2561a4.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_89c13e5985cb2952772f7027.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;}
.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:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-2.724000px;}
.ls1a{letter-spacing:-2.250000px;}
.ls11{letter-spacing:-1.740000px;}
.lsc{letter-spacing:-1.596000px;}
.lsf{letter-spacing:-1.494000px;}
.lsb{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.618000px;}
.ls15{letter-spacing:-0.454200px;}
.ls9{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.304200px;}
.ls13{letter-spacing:-0.228000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.416000px;}
.ls1{letter-spacing:1.476000px;}
.ls5{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.086500px;}
.ls10{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.lsd{letter-spacing:2.310000px;}
.ls18{letter-spacing:2.370000px;}
.ls17{letter-spacing:2.430000px;}
.ls12{letter-spacing:3.375000px;}
.ls19{letter-spacing:15.387000px;}
.ls7{letter-spacing:31.779000px;}
.ls16{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;}
}
.ws8{word-spacing:-58.500000px;}
.ws7{word-spacing:-16.875000px;}
.wsd{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.wsa{word-spacing:-14.007000px;}
.ws5{word-spacing:-13.221000px;}
.wsb{word-spacing:-13.131000px;}
.wsc{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws11{word-spacing:-12.375000px;}
.wsf{word-spacing:-12.237900px;}
.wse{word-spacing:-12.204000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.ws10{word-spacing:114.252000px;}
._c{margin-left:-7.204500px;}
._d{margin-left:-5.328000px;}
._2{margin-left:-3.996000px;}
._3{margin-left:-2.754000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._5{width:2.970000px;}
._b{width:4.626000px;}
._4{width:5.724000px;}
._7{width:6.948000px;}
._8{width:7.992000px;}
._a{width:9.009000px;}
._9{width:10.482000px;}
._16{width:11.506500px;}
._15{width:12.969000px;}
._6{width:16.236000px;}
._19{width:17.757000px;}
._18{width:20.988000px;}
._17{width:22.144500px;}
._10{width:25.470000px;}
._1b{width:27.237000px;}
._f{width:30.573000px;}
._1a{width:31.590000px;}
._e{width:34.965000px;}
._1c{width:36.225000px;}
._11{width:38.772000px;}
._14{width:43.992000px;}
._13{width:47.947500px;}
._12{width:52.242000px;}
._1e{width:111.215550px;}
._1d{width:151.152000px;}
._1f{width:509.147700px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(89,89,89);}
.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;}
.fs8{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:0.015000px;}
.y3{bottom:3.375000px;}
.y92{bottom:3.420000px;}
.y1c{bottom:4.500000px;}
.y44{bottom:4.545000px;}
.y9f{bottom:5.625000px;}
.yaa{bottom:5.640000px;}
.ybd{bottom:5.670000px;}
.ya1{bottom:6.750000px;}
.yb7{bottom:6.765000px;}
.ya3{bottom:6.780000px;}
.yb5{bottom:6.795000px;}
.y8e{bottom:7.875000px;}
.y47{bottom:10.125000px;}
.ye{bottom:11.250000px;}
.y1f{bottom:12.375000px;}
.yc{bottom:13.545000px;}
.yd5{bottom:16.995000px;}
.yf4{bottom:17.175000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.y48{bottom:21.375000px;}
.y43{bottom:21.420000px;}
.y46{bottom:24.750000px;}
.y1b{bottom:29.250000px;}
.yb{bottom:30.420000px;}
.y42{bottom:38.295000px;}
.y1a{bottom:46.155000px;}
.ya{bottom:46.200000px;}
.yd3{bottom:46.920000px;}
.yf2{bottom:47.100000px;}
.y41{bottom:56.325000px;}
.y5{bottom:57.412500px;}
.y19{bottom:61.905000px;}
.yd2{bottom:63.405000px;}
.yea{bottom:64.650000px;}
.y9{bottom:73.200000px;}
.y1{bottom:78.825000px;}
.yd1{bottom:79.875000px;}
.yeb{bottom:88.320000px;}
.y40{bottom:90.120000px;}
.y8{bottom:93.480000px;}
.y18{bottom:95.700000px;}
.yca{bottom:97.455000px;}
.y3f{bottom:108.120000px;}
.y7{bottom:110.355000px;}
.y17{bottom:111.450000px;}
.yec{bottom:112.020000px;}
.ycb{bottom:119.445000px;}
.y8c{bottom:122.737500px;}
.y3e{bottom:124.995000px;}
.ya6{bottom:127.237500px;}
.y16{bottom:128.370000px;}
.y96{bottom:129.487500px;}
.ye8{bottom:130.612500px;}
.y51{bottom:133.987500px;}
.yba{bottom:135.112500px;}
.yed{bottom:135.675000px;}
.y15{bottom:138.495000px;}
.y8b{bottom:140.737500px;}
.ycc{bottom:141.375000px;}
.y3d{bottom:141.915000px;}
.y95{bottom:144.112500px;}
.yc8{bottom:147.487500px;}
.yb9{bottom:148.612500px;}
.y2e{bottom:150.915000px;}
.y50{bottom:151.995000px;}
.y14{bottom:156.495000px;}
.y8a{bottom:157.620000px;}
.yee{bottom:159.330000px;}
.y3c{bottom:159.900000px;}
.y94{bottom:162.150000px;}
.ycd{bottom:163.350000px;}
.ye7{bottom:165.525000px;}
.y2d{bottom:165.540000px;}
.y4f{bottom:168.900000px;}
.y13{bottom:174.525000px;}
.y3b{bottom:176.820000px;}
.y93{bottom:180.150000px;}
.ye6{bottom:182.400000px;}
.yef{bottom:183.045000px;}
.y2c{bottom:183.570000px;}
.yce{bottom:185.295000px;}
.y4e{bottom:185.775000px;}
.y89{bottom:192.525000px;}
.y12{bottom:193.650000px;}
.y3a{bottom:193.695000px;}
.y91{bottom:198.150000px;}
.ye5{bottom:199.275000px;}
.y2b{bottom:201.570000px;}
.y4d{bottom:203.820000px;}
.yf0{bottom:206.700000px;}
.ycf{bottom:207.255000px;}
.y88{bottom:209.445000px;}
.y39{bottom:211.695000px;}
.y90{bottom:216.195000px;}
.ye4{bottom:217.320000px;}
.y2a{bottom:218.490000px;}
.y11{bottom:219.570000px;}
.y4c{bottom:220.695000px;}
.y87{bottom:226.320000px;}
.y38{bottom:228.615000px;}
.yd0{bottom:229.245000px;}
.yf1{bottom:230.400000px;}
.y8f{bottom:234.195000px;}
.y29{bottom:235.365000px;}
.y4b{bottom:237.570000px;}
.y10{bottom:244.320000px;}
.y86{bottom:244.350000px;}
.y37{bottom:245.490000px;}
.ye3{bottom:247.725000px;}
.ye9{bottom:250.875000px;}
.y8d{bottom:252.225000px;}
.y28{bottom:252.240000px;}
.y4a{bottom:255.600000px;}
.yd4{bottom:256.755000px;}
.yf3{bottom:257.925000px;}
.y85{bottom:261.225000px;}
.y36{bottom:263.520000px;}
.y27{bottom:269.145000px;}
.y49{bottom:272.475000px;}
.y84{bottom:278.100000px;}
.y35{bottom:280.395000px;}
.y45{bottom:286.005000px;}
.y26{bottom:286.020000px;}
.y83{bottom:296.130000px;}
.y34{bottom:297.315000px;}
.y25{bottom:302.940000px;}
.y82{bottom:313.005000px;}
.y33{bottom:315.315000px;}
.y24{bottom:320.940000px;}
.y20{bottom:322.005000px;}
.y81{bottom:329.925000px;}
.y32{bottom:332.190000px;}
.y23{bottom:341.220000px;}
.y80{bottom:347.925000px;}
.y31{bottom:349.095000px;}
.y7f{bottom:364.800000px;}
.y30{bottom:367.095000px;}
.y22{bottom:368.220000px;}
.y7e{bottom:381.705000px;}
.y2f{bottom:384.015000px;}
.y21{bottom:386.250000px;}
.y7d{bottom:399.720000px;}
.y7c{bottom:416.625000px;}
.y7b{bottom:433.500000px;}
.yc7{bottom:441.375000px;}
.y7a{bottom:451.530000px;}
.yb8{bottom:452.670000px;}
.yc6{bottom:456.030000px;}
.yb6{bottom:466.155000px;}
.y79{bottom:468.405000px;}
.yc5{bottom:476.280000px;}
.y78{bottom:485.280000px;}
.yb4{bottom:486.405000px;}
.ya5{bottom:494.325000px;}
.yc4{bottom:496.575000px;}
.y77{bottom:503.325000px;}
.ya4{bottom:507.825000px;}
.y76{bottom:520.200000px;}
.yc3{bottom:521.325000px;}
.ya2{bottom:528.075000px;}
.y75{bottom:537.120000px;}
.yc2{bottom:538.230000px;}
.ye2{bottom:543.870000px;}
.ya0{bottom:548.355000px;}
.yb3{bottom:551.730000px;}
.y74{bottom:555.105000px;}
.ye1{bottom:558.480000px;}
.y9e{bottom:569.730000px;}
.yb2{bottom:569.745000px;}
.y73{bottom:571.980000px;}
.yc1{bottom:573.120000px;}
.ye0{bottom:578.775000px;}
.yb1{bottom:586.650000px;}
.y72{bottom:588.900000px;}
.yc0{bottom:590.025000px;}
.y9d{bottom:593.400000px;}
.ydf{bottom:599.025000px;}
.yb0{bottom:603.525000px;}
.y71{bottom:606.900000px;}
.y9c{bottom:610.275000px;}
.yde{bottom:619.320000px;}
.yaf{bottom:621.570000px;}
.y70{bottom:623.820000px;}
.ybf{bottom:624.945000px;}
.y9b{bottom:628.320000px;}
.yae{bottom:638.445000px;}
.yc9{bottom:640.125000px;}
.y6f{bottom:640.695000px;}
.ydd{bottom:644.070000px;}
.y9a{bottom:645.195000px;}
.yad{bottom:655.320000px;}
.y6e{bottom:658.695000px;}
.ydc{bottom:660.975000px;}
.y99{bottom:662.100000px;}
.yac{bottom:669.975000px;}
.y6d{bottom:675.600000px;}
.ydb{bottom:678.975000px;}
.y98{bottom:680.100000px;}
.y6c{bottom:692.475000px;}
.yda{bottom:695.850000px;}
.y97{bottom:696.975000px;}
.y6b{bottom:710.505000px;}
.yd9{bottom:712.770000px;}
.y1d{bottom:719.505000px;}
.y6a{bottom:727.380000px;}
.yd8{bottom:730.755000px;}
.y69{bottom:744.300000px;}
.yd7{bottom:747.675000px;}
.yf{bottom:748.800000px;}
.yd6{bottom:761.175000px;}
.y68{bottom:762.300000px;}
.y67{bottom:779.175000px;}
.y66{bottom:796.080000px;}
.y65{bottom:814.080000px;}
.y64{bottom:831.000000px;}
.y63{bottom:847.875000px;}
.y62{bottom:865.875000px;}
.y61{bottom:882.795000px;}
.y60{bottom:899.670000px;}
.y5f{bottom:917.700000px;}
.ybe{bottom:932.325000px;}
.y5e{bottom:934.575000px;}
.ybc{bottom:946.950000px;}
.y5d{bottom:951.450000px;}
.ybb{bottom:967.245000px;}
.y5c{bottom:969.495000px;}
.yab{bottom:972.870000px;}
.y5b{bottom:986.370000px;}
.ya9{bottom:987.480000px;}
.y5a{bottom:1003.275000px;}
.yd{bottom:1007.775000px;}
.y59{bottom:1021.275000px;}
.ya8{bottom:1028.025000px;}
.y6{bottom:1033.650000px;}
.y58{bottom:1038.195000px;}
.ya7{bottom:1048.320000px;}
.y57{bottom:1055.070000px;}
.y56{bottom:1073.070000px;}
.y55{bottom:1089.975000px;}
.y54{bottom:1106.850000px;}
.y53{bottom:1124.880000px;}
.y52{bottom:1141.755000px;}
.h21{height:16.875000px;}
.h20{height:16.912500px;}
.h26{height:19.110000px;}
.h25{height:19.125000px;}
.h22{height:19.162500px;}
.h23{height:20.250000px;}
.h24{height:20.287500px;}
.h1f{height:21.375000px;}
.hc{height:25.875000px;}
.h15{height:29.287500px;}
.h14{height:29.773125px;}
.h13{height:29.953125px;}
.h2{height:32.625000px;}
.h12{height:35.806641px;}
.h1e{height:36.000000px;}
.h9{height:37.125000px;}
.h1b{height:39.832031px;}
.h1d{height:40.847168px;}
.h1c{height:41.275635px;}
.h19{height:41.389893px;}
.h2b{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h1a{height:47.074219px;}
.h18{height:49.234131px;}
.h4{height:53.709961px;}
.h28{height:53.859155px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:63.066504px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h29{height:85.040771px;}
.h7{height:121.612500px;}
.hd{height:258.975000px;}
.h27{height:289.125000px;}
.h2a{height:290.250000px;}
.h17{height:397.500000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w19{width:107.025000px;}
.w1a{width:123.900000px;}
.w4{width:152.055000px;}
.wc{width:159.930000px;}
.w18{width:164.430000px;}
.w1f{width:168.975000px;}
.wb{width:174.600000px;}
.w14{width:183.645000px;}
.w11{width:184.770000px;}
.w16{width:205.005000px;}
.w17{width:208.395000px;}
.we{width:216.300000px;}
.w7{width:224.145000px;}
.wf{width:242.175000px;}
.w12{width:244.425000px;}
.w1e{width:245.550000px;}
.w9{width:271.470000px;}
.wa{width:283.875000px;}
.w13{width:299.625000px;}
.w10{width:300.750000px;}
.w15{width:314.280000px;}
.w1d{width:315.405000px;}
.w1b{width:332.325000px;}
.wd{width:351.450000px;}
.w8{width:508.050000px;}
.w20{width:513.000000px;}
.w1c{width:520.875000px;}
.w5{width:580.125000px;}
.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;}
.x3b{left:10.995000px;}
.x19{left:12.405000px;}
.xf{left:14.625000px;}
.xe{left:16.875000px;}
.x3a{left:24.675000px;}
.xd{left:27.037500px;}
.x15{left:73.192500px;}
.x13{left:79.987500px;}
.x1{left:81.112500px;}
.x1b{left:82.237500px;}
.x3c{left:86.400000px;}
.x5{left:97.987500px;}
.x47{left:106.125000px;}
.x49{left:108.149987px;}
.x11{left:114.907500px;}
.x12{left:116.032500px;}
.x16{left:148.687500px;}
.x14{left:170.107500px;}
.x41{left:174.720000px;}
.x39{left:184.500000px;}
.x46{left:189.000000px;}
.x17{left:214.012500px;}
.x40{left:217.800000px;}
.x48{left:219.000000px;}
.x6{left:233.175000px;}
.x21{left:243.300000px;}
.x34{left:246.675000px;}
.x1f{left:254.594987px;}
.x45{left:256.829987px;}
.x1a{left:257.969987px;}
.x3d{left:260.970000px;}
.x2d{left:270.329987px;}
.x29{left:271.469987px;}
.x9{left:273.705000px;}
.x25{left:274.844987px;}
.x33{left:290.624987px;}
.x10{left:303.007500px;}
.x18{left:305.250000px;}
.x24{left:314.279987px;}
.x32{left:315.419987px;}
.x20{left:317.654987px;}
.x2e{left:318.794987px;}
.x38{left:322.169987px;}
.x26{left:325.545000px;}
.x2a{left:327.795000px;}
.x7{left:332.295000px;}
.xb{left:348.075000px;}
.x8{left:351.450000px;}
.x1c{left:353.700000px;}
.x35{left:354.825000px;}
.x3e{left:359.850000px;}
.xc{left:364.957500px;}
.x2f{left:397.650000px;}
.x3f{left:433.875000px;}
.xa{left:437.055000px;}
.x36{left:479.850000px;}
.x22{left:595.875000px;}
.x30{left:603.780000px;}
.x37{left:625.169987px;}
.x27{left:627.405000px;}
.x2b{left:628.530000px;}
.x42{left:636.449987px;}
.x1d{left:637.575000px;}
.x43{left:643.200000px;}
.x1e{left:698.399987px;}
.x2c{left:699.524987px;}
.x28{left:700.649987px;}
.x44{left:704.024987px;}
.x31{left:708.524987px;}
.x23{left:727.694987px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.ls1a{letter-spacing:-2.000000pt;}
.ls11{letter-spacing:-1.546667pt;}
.lsc{letter-spacing:-1.418667pt;}
.lsf{letter-spacing:-1.328000pt;}
.lsb{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.549333pt;}
.ls15{letter-spacing:-0.403733pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.270400pt;}
.ls13{letter-spacing:-0.202667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.258667pt;}
.ls1{letter-spacing:1.312000pt;}
.ls5{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.854667pt;}
.ls10{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.lsd{letter-spacing:2.053333pt;}
.ls18{letter-spacing:2.106667pt;}
.ls17{letter-spacing:2.160000pt;}
.ls12{letter-spacing:3.000000pt;}
.ls19{letter-spacing:13.677333pt;}
.ls7{letter-spacing:28.248000pt;}
.ls16{letter-spacing:41.677333pt;}
.ws8{word-spacing:-52.000000pt;}
.ws7{word-spacing:-15.000000pt;}
.wsd{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.450667pt;}
.ws5{word-spacing:-11.752000pt;}
.wsb{word-spacing:-11.672000pt;}
.wsc{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws11{word-spacing:-11.000000pt;}
.wsf{word-spacing:-10.878133pt;}
.wse{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.ws10{word-spacing:101.557333pt;}
._c{margin-left:-6.404000pt;}
._d{margin-left:-4.736000pt;}
._2{margin-left:-3.552000pt;}
._3{margin-left:-2.448000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._5{width:2.640000pt;}
._b{width:4.112000pt;}
._4{width:5.088000pt;}
._7{width:6.176000pt;}
._8{width:7.104000pt;}
._a{width:8.008000pt;}
._9{width:9.317333pt;}
._16{width:10.228000pt;}
._15{width:11.528000pt;}
._6{width:14.432000pt;}
._19{width:15.784000pt;}
._18{width:18.656000pt;}
._17{width:19.684000pt;}
._10{width:22.640000pt;}
._1b{width:24.210667pt;}
._f{width:27.176000pt;}
._1a{width:28.080000pt;}
._e{width:31.080000pt;}
._1c{width:32.200000pt;}
._11{width:34.464000pt;}
._14{width:39.104000pt;}
._13{width:42.620000pt;}
._12{width:46.437333pt;}
._1e{width:98.858267pt;}
._1d{width:134.357333pt;}
._1f{width:452.575733pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:0.013333pt;}
.y3{bottom:3.000000pt;}
.y92{bottom:3.040000pt;}
.y1c{bottom:4.000000pt;}
.y44{bottom:4.040000pt;}
.y9f{bottom:5.000000pt;}
.yaa{bottom:5.013333pt;}
.ybd{bottom:5.040000pt;}
.ya1{bottom:6.000000pt;}
.yb7{bottom:6.013333pt;}
.ya3{bottom:6.026667pt;}
.yb5{bottom:6.040000pt;}
.y8e{bottom:7.000000pt;}
.y47{bottom:9.000000pt;}
.ye{bottom:10.000000pt;}
.y1f{bottom:11.000000pt;}
.yc{bottom:12.040000pt;}
.yd5{bottom:15.106667pt;}
.yf4{bottom:15.266667pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.y48{bottom:19.000000pt;}
.y43{bottom:19.040000pt;}
.y46{bottom:22.000000pt;}
.y1b{bottom:26.000000pt;}
.yb{bottom:27.040000pt;}
.y42{bottom:34.040000pt;}
.y1a{bottom:41.026667pt;}
.ya{bottom:41.066667pt;}
.yd3{bottom:41.706667pt;}
.yf2{bottom:41.866667pt;}
.y41{bottom:50.066667pt;}
.y5{bottom:51.033333pt;}
.y19{bottom:55.026667pt;}
.yd2{bottom:56.360000pt;}
.yea{bottom:57.466667pt;}
.y9{bottom:65.066667pt;}
.y1{bottom:70.066667pt;}
.yd1{bottom:71.000000pt;}
.yeb{bottom:78.506667pt;}
.y40{bottom:80.106667pt;}
.y8{bottom:83.093333pt;}
.y18{bottom:85.066667pt;}
.yca{bottom:86.626667pt;}
.y3f{bottom:96.106667pt;}
.y7{bottom:98.093333pt;}
.y17{bottom:99.066667pt;}
.yec{bottom:99.573333pt;}
.ycb{bottom:106.173333pt;}
.y8c{bottom:109.100000pt;}
.y3e{bottom:111.106667pt;}
.ya6{bottom:113.100000pt;}
.y16{bottom:114.106667pt;}
.y96{bottom:115.100000pt;}
.ye8{bottom:116.100000pt;}
.y51{bottom:119.100000pt;}
.yba{bottom:120.100000pt;}
.yed{bottom:120.600000pt;}
.y15{bottom:123.106667pt;}
.y8b{bottom:125.100000pt;}
.ycc{bottom:125.666667pt;}
.y3d{bottom:126.146667pt;}
.y95{bottom:128.100000pt;}
.yc8{bottom:131.100000pt;}
.yb9{bottom:132.100000pt;}
.y2e{bottom:134.146667pt;}
.y50{bottom:135.106667pt;}
.y14{bottom:139.106667pt;}
.y8a{bottom:140.106667pt;}
.yee{bottom:141.626667pt;}
.y3c{bottom:142.133333pt;}
.y94{bottom:144.133333pt;}
.ycd{bottom:145.200000pt;}
.ye7{bottom:147.133333pt;}
.y2d{bottom:147.146667pt;}
.y4f{bottom:150.133333pt;}
.y13{bottom:155.133333pt;}
.y3b{bottom:157.173333pt;}
.y93{bottom:160.133333pt;}
.ye6{bottom:162.133333pt;}
.yef{bottom:162.706667pt;}
.y2c{bottom:163.173333pt;}
.yce{bottom:164.706667pt;}
.y4e{bottom:165.133333pt;}
.y89{bottom:171.133333pt;}
.y12{bottom:172.133333pt;}
.y3a{bottom:172.173333pt;}
.y91{bottom:176.133333pt;}
.ye5{bottom:177.133333pt;}
.y2b{bottom:179.173333pt;}
.y4d{bottom:181.173333pt;}
.yf0{bottom:183.733333pt;}
.ycf{bottom:184.226667pt;}
.y88{bottom:186.173333pt;}
.y39{bottom:188.173333pt;}
.y90{bottom:192.173333pt;}
.ye4{bottom:193.173333pt;}
.y2a{bottom:194.213333pt;}
.y11{bottom:195.173333pt;}
.y4c{bottom:196.173333pt;}
.y87{bottom:201.173333pt;}
.y38{bottom:203.213333pt;}
.yd0{bottom:203.773333pt;}
.yf1{bottom:204.800000pt;}
.y8f{bottom:208.173333pt;}
.y29{bottom:209.213333pt;}
.y4b{bottom:211.173333pt;}
.y10{bottom:217.173333pt;}
.y86{bottom:217.200000pt;}
.y37{bottom:218.213333pt;}
.ye3{bottom:220.200000pt;}
.ye9{bottom:223.000000pt;}
.y8d{bottom:224.200000pt;}
.y28{bottom:224.213333pt;}
.y4a{bottom:227.200000pt;}
.yd4{bottom:228.226667pt;}
.yf3{bottom:229.266667pt;}
.y85{bottom:232.200000pt;}
.y36{bottom:234.240000pt;}
.y27{bottom:239.240000pt;}
.y49{bottom:242.200000pt;}
.y84{bottom:247.200000pt;}
.y35{bottom:249.240000pt;}
.y45{bottom:254.226667pt;}
.y26{bottom:254.240000pt;}
.y83{bottom:263.226667pt;}
.y34{bottom:264.280000pt;}
.y25{bottom:269.280000pt;}
.y82{bottom:278.226667pt;}
.y33{bottom:280.280000pt;}
.y24{bottom:285.280000pt;}
.y20{bottom:286.226667pt;}
.y81{bottom:293.266667pt;}
.y32{bottom:295.280000pt;}
.y23{bottom:303.306667pt;}
.y80{bottom:309.266667pt;}
.y31{bottom:310.306667pt;}
.y7f{bottom:324.266667pt;}
.y30{bottom:326.306667pt;}
.y22{bottom:327.306667pt;}
.y7e{bottom:339.293333pt;}
.y2f{bottom:341.346667pt;}
.y21{bottom:343.333333pt;}
.y7d{bottom:355.306667pt;}
.y7c{bottom:370.333333pt;}
.y7b{bottom:385.333333pt;}
.yc7{bottom:392.333333pt;}
.y7a{bottom:401.360000pt;}
.yb8{bottom:402.373333pt;}
.yc6{bottom:405.360000pt;}
.yb6{bottom:414.360000pt;}
.y79{bottom:416.360000pt;}
.yc5{bottom:423.360000pt;}
.y78{bottom:431.360000pt;}
.yb4{bottom:432.360000pt;}
.ya5{bottom:439.400000pt;}
.yc4{bottom:441.400000pt;}
.y77{bottom:447.400000pt;}
.ya4{bottom:451.400000pt;}
.y76{bottom:462.400000pt;}
.yc3{bottom:463.400000pt;}
.ya2{bottom:469.400000pt;}
.y75{bottom:477.440000pt;}
.yc2{bottom:478.426667pt;}
.ye2{bottom:483.440000pt;}
.ya0{bottom:487.426667pt;}
.yb3{bottom:490.426667pt;}
.y74{bottom:493.426667pt;}
.ye1{bottom:496.426667pt;}
.y9e{bottom:506.426667pt;}
.yb2{bottom:506.440000pt;}
.y73{bottom:508.426667pt;}
.yc1{bottom:509.440000pt;}
.ye0{bottom:514.466667pt;}
.yb1{bottom:521.466667pt;}
.y72{bottom:523.466667pt;}
.yc0{bottom:524.466667pt;}
.y9d{bottom:527.466667pt;}
.ydf{bottom:532.466667pt;}
.yb0{bottom:536.466667pt;}
.y71{bottom:539.466667pt;}
.y9c{bottom:542.466667pt;}
.yde{bottom:550.506667pt;}
.yaf{bottom:552.506667pt;}
.y70{bottom:554.506667pt;}
.ybf{bottom:555.506667pt;}
.y9b{bottom:558.506667pt;}
.yae{bottom:567.506667pt;}
.yc9{bottom:569.000000pt;}
.y6f{bottom:569.506667pt;}
.ydd{bottom:572.506667pt;}
.y9a{bottom:573.506667pt;}
.yad{bottom:582.506667pt;}
.y6e{bottom:585.506667pt;}
.ydc{bottom:587.533333pt;}
.y99{bottom:588.533333pt;}
.yac{bottom:595.533333pt;}
.y6d{bottom:600.533333pt;}
.ydb{bottom:603.533333pt;}
.y98{bottom:604.533333pt;}
.y6c{bottom:615.533333pt;}
.yda{bottom:618.533333pt;}
.y97{bottom:619.533333pt;}
.y6b{bottom:631.560000pt;}
.yd9{bottom:633.573333pt;}
.y1d{bottom:639.560000pt;}
.y6a{bottom:646.560000pt;}
.yd8{bottom:649.560000pt;}
.y69{bottom:661.600000pt;}
.yd7{bottom:664.600000pt;}
.yf{bottom:665.600000pt;}
.yd6{bottom:676.600000pt;}
.y68{bottom:677.600000pt;}
.y67{bottom:692.600000pt;}
.y66{bottom:707.626667pt;}
.y65{bottom:723.626667pt;}
.y64{bottom:738.666667pt;}
.y63{bottom:753.666667pt;}
.y62{bottom:769.666667pt;}
.y61{bottom:784.706667pt;}
.y60{bottom:799.706667pt;}
.y5f{bottom:815.733333pt;}
.ybe{bottom:828.733333pt;}
.y5e{bottom:830.733333pt;}
.ybc{bottom:841.733333pt;}
.y5d{bottom:845.733333pt;}
.ybb{bottom:859.773333pt;}
.y5c{bottom:861.773333pt;}
.yab{bottom:864.773333pt;}
.y5b{bottom:876.773333pt;}
.ya9{bottom:877.760000pt;}
.y5a{bottom:891.800000pt;}
.yd{bottom:895.800000pt;}
.y59{bottom:907.800000pt;}
.ya8{bottom:913.800000pt;}
.y6{bottom:918.800000pt;}
.y58{bottom:922.840000pt;}
.ya7{bottom:931.840000pt;}
.y57{bottom:937.840000pt;}
.y56{bottom:953.840000pt;}
.y55{bottom:968.866667pt;}
.y54{bottom:983.866667pt;}
.y53{bottom:999.893333pt;}
.y52{bottom:1014.893333pt;}
.h21{height:15.000000pt;}
.h20{height:15.033333pt;}
.h26{height:16.986667pt;}
.h25{height:17.000000pt;}
.h22{height:17.033333pt;}
.h23{height:18.000000pt;}
.h24{height:18.033333pt;}
.h1f{height:19.000000pt;}
.hc{height:23.000000pt;}
.h15{height:26.033333pt;}
.h14{height:26.465000pt;}
.h13{height:26.625000pt;}
.h2{height:29.000000pt;}
.h12{height:31.828125pt;}
.h1e{height:32.000000pt;}
.h9{height:33.000000pt;}
.h1b{height:35.406250pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h19{height:36.791016pt;}
.h2b{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h1a{height:41.843750pt;}
.h18{height:43.763672pt;}
.h4{height:47.742188pt;}
.h28{height:47.874805pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:56.059115pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h29{height:75.591797pt;}
.h7{height:108.100000pt;}
.hd{height:230.200000pt;}
.h27{height:257.000000pt;}
.h2a{height:258.000000pt;}
.h17{height:353.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w19{width:95.133333pt;}
.w1a{width:110.133333pt;}
.w4{width:135.160000pt;}
.wc{width:142.160000pt;}
.w18{width:146.160000pt;}
.w1f{width:150.200000pt;}
.wb{width:155.200000pt;}
.w14{width:163.240000pt;}
.w11{width:164.240000pt;}
.w16{width:182.226667pt;}
.w17{width:185.240000pt;}
.we{width:192.266667pt;}
.w7{width:199.240000pt;}
.wf{width:215.266667pt;}
.w12{width:217.266667pt;}
.w1e{width:218.266667pt;}
.w9{width:241.306667pt;}
.wa{width:252.333333pt;}
.w13{width:266.333333pt;}
.w10{width:267.333333pt;}
.w15{width:279.360000pt;}
.w1d{width:280.360000pt;}
.w1b{width:295.400000pt;}
.wd{width:312.400000pt;}
.w8{width:451.600000pt;}
.w20{width:456.000000pt;}
.w1c{width:463.000000pt;}
.w5{width:515.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;}
.x3b{left:9.773333pt;}
.x19{left:11.026667pt;}
.xf{left:13.000000pt;}
.xe{left:15.000000pt;}
.x3a{left:21.933333pt;}
.xd{left:24.033333pt;}
.x15{left:65.060000pt;}
.x13{left:71.100000pt;}
.x1{left:72.100000pt;}
.x1b{left:73.100000pt;}
.x3c{left:76.800000pt;}
.x5{left:87.100000pt;}
.x47{left:94.333333pt;}
.x49{left:96.133322pt;}
.x11{left:102.140000pt;}
.x12{left:103.140000pt;}
.x16{left:132.166667pt;}
.x14{left:151.206667pt;}
.x41{left:155.306667pt;}
.x39{left:164.000000pt;}
.x46{left:168.000000pt;}
.x17{left:190.233333pt;}
.x40{left:193.600000pt;}
.x48{left:194.666667pt;}
.x6{left:207.266667pt;}
.x21{left:216.266667pt;}
.x34{left:219.266667pt;}
.x1f{left:226.306655pt;}
.x45{left:228.293322pt;}
.x1a{left:229.306655pt;}
.x3d{left:231.973333pt;}
.x2d{left:240.293322pt;}
.x29{left:241.306655pt;}
.x9{left:243.293333pt;}
.x25{left:244.306655pt;}
.x33{left:258.333322pt;}
.x10{left:269.340000pt;}
.x18{left:271.333333pt;}
.x24{left:279.359988pt;}
.x32{left:280.373322pt;}
.x20{left:282.359988pt;}
.x2e{left:283.373322pt;}
.x38{left:286.373322pt;}
.x26{left:289.373333pt;}
.x2a{left:291.373333pt;}
.x7{left:295.373333pt;}
.xb{left:309.400000pt;}
.x8{left:312.400000pt;}
.x1c{left:314.400000pt;}
.x35{left:315.400000pt;}
.x3e{left:319.866667pt;}
.xc{left:324.406667pt;}
.x2f{left:353.466667pt;}
.x3f{left:385.666667pt;}
.xa{left:388.493333pt;}
.x36{left:426.533333pt;}
.x22{left:529.666667pt;}
.x30{left:536.693333pt;}
.x37{left:555.706655pt;}
.x27{left:557.693333pt;}
.x2b{left:558.693333pt;}
.x42{left:565.733322pt;}
.x1d{left:566.733333pt;}
.x43{left:571.733333pt;}
.x1e{left:620.799988pt;}
.x2c{left:621.799988pt;}
.x28{left:622.799988pt;}
.x44{left:625.799988pt;}
.x31{left:629.799988pt;}
.x23{left:646.839988pt;}
.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; }
  