
    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_50a7cff37dfabfb5616965fc.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_ce790b4cdfe843449b412d42.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_0848a081baf29ed34b571f2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_cbe55e56dbc7d1cb22cb5e1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c02f71c4e4894719d8f1e730.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_2cc4b82dc546d69fa593d608.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e8b9fb19591b5b0fea5440bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_9478ef292fbe67469f2b8b14.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_83bbea2194df90b39ec2ca88.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128906;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_b51cd0ff5825fd1486f9adad.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_ef548fffbfdbf719d050af8d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls22{letter-spacing:-1.728000px;}
.lsc{letter-spacing:-0.822000px;}
.ls19{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.583200px;}
.ls23{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.326400px;}
.ls26{letter-spacing:-0.295200px;}
.ls18{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.099600px;}
.lsb{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.002160px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000001px;}
.ls1a{letter-spacing:0.000003px;}
.ls7{letter-spacing:0.020880px;}
.ls17{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.136800px;}
.ls0{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.177840px;}
.ls24{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.223200px;}
.ls4{letter-spacing:0.244200px;}
.ls1f{letter-spacing:0.252000px;}
.ls11{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.424800px;}
.ls1b{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.717840px;}
.ls1e{letter-spacing:1.368000px;}
.ls16{letter-spacing:29.664000px;}
.ls25{letter-spacing:39.024000px;}
.ls13{letter-spacing:62.064000px;}
.lse{letter-spacing:94.464000px;}
.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;}
}
.ws17{word-spacing:-72.360000px;}
.wsb{word-spacing:-72.144000px;}
.wsf{word-spacing:-72.000000px;}
.ws14{word-spacing:-71.856000px;}
.wsa{word-spacing:-18.576000px;}
.ws18{word-spacing:-18.288000px;}
.wsc{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.640000px;}
.ws12{word-spacing:-17.568000px;}
.ws11{word-spacing:-17.496000px;}
.ws13{word-spacing:-17.424000px;}
.wsd{word-spacing:-17.352000px;}
.wse{word-spacing:-17.280000px;}
.ws15{word-spacing:-17.208000px;}
.ws16{word-spacing:-17.136000px;}
.ws19{word-spacing:-17.064000px;}
.ws1{word-spacing:-14.646360px;}
.ws0{word-spacing:-14.625360px;}
.ws2{word-spacing:-14.402160px;}
.ws6{word-spacing:-11.762640px;}
.ws3{word-spacing:-11.625840px;}
.ws8{word-spacing:-11.526240px;}
.ws4{word-spacing:-11.299440px;}
.ws5{word-spacing:-11.042640px;}
.ws7{word-spacing:-10.803840px;}
.ws9{word-spacing:0.000000px;}
._22{margin-left:-5.004960px;}
._16{margin-left:-3.888000px;}
._c{margin-left:-2.343840px;}
._1{margin-left:-1.263600px;}
._0{width:1.594320px;}
._2{width:2.608080px;}
._6{width:4.196640px;}
._5{width:5.318640px;}
._15{width:6.394320px;}
._8{width:7.788000px;}
._7{width:8.844480px;}
._9{width:10.756800px;}
._4{width:12.131280px;}
._3{width:13.206960px;}
._18{width:14.688000px;}
._14{width:16.434000px;}
._21{width:18.360000px;}
._10{width:19.362240px;}
._1c{width:20.515440px;}
._12{width:22.410000px;}
._f{width:24.279840px;}
._e{width:25.338240px;}
._d{width:27.190800px;}
._11{width:28.326240px;}
._1f{width:29.695440px;}
._25{width:30.928560px;}
._1e{width:32.088000px;}
._23{width:33.696000px;}
._b{width:37.089600px;}
._a{width:38.246400px;}
._13{width:39.979440px;}
._24{width:46.440000px;}
._17{width:51.768000px;}
._20{width:53.496000px;}
._26{width:56.448000px;}
._27{width:57.702960px;}
._1d{width:62.712000px;}
._19{width:67.176000px;}
._1a{width:68.184000px;}
._1b{width:69.504000px;}
._28{width:77.940000px;}
._2c{width:88.848000px;}
._2d{width:89.856000px;}
._2b{width:110.268000px;}
._29{width:275.688000px;}
._2a{width:276.768000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,51,204);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:2.700000px;}
.y18{bottom:3.240000px;}
.y35{bottom:3.600000px;}
.y10{bottom:3.960000px;}
.y36{bottom:4.860000px;}
.y11{bottom:6.660000px;}
.y2e{bottom:16.380000px;}
.y17{bottom:20.160000px;}
.y2a{bottom:20.340000px;}
.y3d{bottom:21.960000px;}
.y30{bottom:24.480000px;}
.y2d{bottom:30.060000px;}
.y16{bottom:37.260000px;}
.y29{bottom:37.440000px;}
.y3c{bottom:39.060000px;}
.y15{bottom:54.360000px;}
.y3b{bottom:56.160000px;}
.y4{bottom:58.320000px;}
.y14{bottom:71.280000px;}
.y28{bottom:71.460000px;}
.y3a{bottom:73.080000px;}
.y3{bottom:77.940000px;}
.y19{bottom:85.680000px;}
.y13{bottom:88.380000px;}
.y4b{bottom:88.410000px;}
.y27{bottom:88.560000px;}
.y39{bottom:90.180000px;}
.y26{bottom:105.480000px;}
.y4a{bottom:105.510000px;}
.y3e{bottom:106.065000px;}
.y38{bottom:107.325000px;}
.y165{bottom:118.620000px;}
.y3f{bottom:119.700000px;}
.y25{bottom:122.580000px;}
.y49{bottom:122.610000px;}
.y32{bottom:124.560000px;}
.y31{bottom:125.820000px;}
.ydb{bottom:131.400000px;}
.yf2{bottom:134.100000px;}
.y10e{bottom:135.360000px;}
.yb0{bottom:136.080000px;}
.y13c{bottom:137.340000px;}
.y164{bottom:138.960000px;}
.y48{bottom:139.530000px;}
.y24{bottom:139.680000px;}
.y4f{bottom:139.710000px;}
.y4e{bottom:141.150000px;}
.y7f{bottom:143.100000px;}
.yda{bottom:151.920000px;}
.yf1{bottom:154.620000px;}
.y10d{bottom:155.880000px;}
.y23{bottom:156.600000px;}
.y47{bottom:156.630000px;}
.y13b{bottom:157.860000px;}
.y163{bottom:159.480000px;}
.y7e{bottom:163.440000px;}
.yd9{bottom:172.440000px;}
.y22{bottom:173.730000px;}
.yf0{bottom:174.960000px;}
.y10c{bottom:176.220000px;}
.yaf{bottom:177.660000px;}
.y13a{bottom:178.200000px;}
.y162{bottom:180.000000px;}
.y7d{bottom:183.960000px;}
.y46{bottom:190.650000px;}
.y21{bottom:190.830000px;}
.yd8{bottom:192.960000px;}
.yef{bottom:195.480000px;}
.y10b{bottom:196.740000px;}
.yae{bottom:198.720000px;}
.y161{bottom:200.340000px;}
.y7c{bottom:204.510000px;}
.y45{bottom:207.750000px;}
.y20{bottom:207.930000px;}
.yd7{bottom:214.050000px;}
.yee{bottom:215.850000px;}
.y10a{bottom:217.290000px;}
.yad{bottom:219.270000px;}
.y160{bottom:220.890000px;}
.y1f{bottom:224.850000px;}
.yd6{bottom:235.110000px;}
.yed{bottom:236.370000px;}
.y109{bottom:237.630000px;}
.yac{bottom:239.610000px;}
.y15f{bottom:241.410000px;}
.y44{bottom:241.770000px;}
.y1e{bottom:241.950000px;}
.y7b{bottom:245.370000px;}
.yd5{bottom:255.450000px;}
.yec{bottom:256.890000px;}
.y108{bottom:258.150000px;}
.y43{bottom:258.870000px;}
.y1d{bottom:259.050000px;}
.yab{bottom:260.130000px;}
.y15e{bottom:261.750000px;}
.y7a{bottom:265.890000px;}
.y1c{bottom:275.970000px;}
.y4d{bottom:276.690000px;}
.yeb{bottom:277.230000px;}
.y107{bottom:278.670000px;}
.yaa{bottom:280.470000px;}
.y15d{bottom:282.270000px;}
.y79{bottom:286.230000px;}
.y42{bottom:292.890000px;}
.y1b{bottom:293.070000px;}
.yd4{bottom:296.490000px;}
.yea{bottom:297.750000px;}
.y106{bottom:299.010000px;}
.ya9{bottom:300.990000px;}
.y15c{bottom:302.610000px;}
.y78{bottom:306.750000px;}
.y41{bottom:309.990000px;}
.yd3{bottom:316.830000px;}
.y4c{bottom:318.270000px;}
.y105{bottom:319.530000px;}
.y139{bottom:321.510000px;}
.ya8{bottom:321.690000px;}
.y15b{bottom:323.130000px;}
.y77{bottom:327.090000px;}
.y40{bottom:327.135000px;}
.yd2{bottom:337.350000px;}
.ye9{bottom:338.610000px;}
.y37{bottom:339.510000px;}
.y104{bottom:339.870000px;}
.y138{bottom:341.850000px;}
.ya7{bottom:342.030000px;}
.y15a{bottom:343.650000px;}
.y76{bottom:347.610000px;}
.yd1{bottom:357.870000px;}
.ye8{bottom:359.130000px;}
.y103{bottom:360.390000px;}
.y137{bottom:362.370000px;}
.ya6{bottom:362.550000px;}
.y159{bottom:363.990000px;}
.y75{bottom:368.130000px;}
.yd0{bottom:378.930000px;}
.ye7{bottom:379.470000px;}
.y102{bottom:380.910000px;}
.y136{bottom:382.710000px;}
.ya5{bottom:382.890000px;}
.y158{bottom:384.510000px;}
.y74{bottom:388.470000px;}
.ycf{bottom:399.990000px;}
.y101{bottom:401.250000px;}
.y135{bottom:403.230000px;}
.ya4{bottom:403.410000px;}
.y157{bottom:405.030000px;}
.y73{bottom:408.990000px;}
.yce{bottom:420.510000px;}
.y100{bottom:421.770000px;}
.y134{bottom:423.750000px;}
.ya3{bottom:423.930000px;}
.y156{bottom:425.370000px;}
.y72{bottom:429.510000px;}
.ycd{bottom:440.895000px;}
.yff{bottom:442.335000px;}
.y133{bottom:444.135000px;}
.ya2{bottom:444.315000px;}
.y155{bottom:445.935000px;}
.y71{bottom:449.895000px;}
.y34{bottom:461.415000px;}
.yfe{bottom:462.675000px;}
.y132{bottom:464.655000px;}
.ya1{bottom:464.835000px;}
.y154{bottom:466.275000px;}
.y70{bottom:470.415000px;}
.ycc{bottom:481.935000px;}
.yfd{bottom:483.195000px;}
.y33{bottom:484.455000px;}
.y131{bottom:485.175000px;}
.ya0{bottom:485.355000px;}
.y153{bottom:486.795000px;}
.y6f{bottom:491.475000px;}
.y1a{bottom:500.295000px;}
.ycb{bottom:502.275000px;}
.yfc{bottom:503.535000px;}
.y130{bottom:505.515000px;}
.y9f{bottom:505.695000px;}
.y152{bottom:507.315000px;}
.y6e{bottom:511.995000px;}
.yca{bottom:522.795000px;}
.yfb{bottom:524.055000px;}
.y12f{bottom:526.035000px;}
.y9e{bottom:526.215000px;}
.y151{bottom:527.655000px;}
.y6d{bottom:532.335000px;}
.ye6{bottom:543.135000px;}
.yc9{bottom:543.315000px;}
.yfa{bottom:544.575000px;}
.y12e{bottom:546.375000px;}
.y9d{bottom:546.555000px;}
.y150{bottom:548.175000px;}
.y6c{bottom:552.855000px;}
.ye5{bottom:563.655000px;}
.yc8{bottom:564.375000px;}
.yf9{bottom:564.915000px;}
.y12d{bottom:566.895000px;}
.y9c{bottom:567.075000px;}
.y14f{bottom:568.695000px;}
.y6b{bottom:573.195000px;}
.ye4{bottom:584.175000px;}
.yc7{bottom:584.715000px;}
.yf8{bottom:585.435000px;}
.y12c{bottom:587.415000px;}
.y9b{bottom:587.595000px;}
.y14e{bottom:589.035000px;}
.y6a{bottom:593.715000px;}
.ye3{bottom:604.515000px;}
.yc6{bottom:605.235000px;}
.yf7{bottom:605.955000px;}
.y12b{bottom:607.755000px;}
.y9a{bottom:607.935000px;}
.y14d{bottom:609.555000px;}
.y69{bottom:614.235000px;}
.ye2{bottom:625.035000px;}
.yc5{bottom:625.755000px;}
.yf6{bottom:626.295000px;}
.y12a{bottom:628.275000px;}
.y99{bottom:628.455000px;}
.y14c{bottom:629.895000px;}
.y68{bottom:634.575000px;}
.y2c{bottom:641.955000px;}
.y126{bottom:645.555000px;}
.yc4{bottom:646.095000px;}
.yf5{bottom:646.815000px;}
.y129{bottom:648.795000px;}
.y98{bottom:648.975000px;}
.y14b{bottom:650.415000px;}
.y67{bottom:655.095000px;}
.y125{bottom:665.895000px;}
.yc3{bottom:666.615000px;}
.yf4{bottom:667.875000px;}
.y128{bottom:669.135000px;}
.y97{bottom:669.315000px;}
.y14a{bottom:670.935000px;}
.y66{bottom:675.645000px;}
.y2b{bottom:683.745000px;}
.y124{bottom:686.445000px;}
.yc2{bottom:686.985000px;}
.ye1{bottom:687.705000px;}
.yf3{bottom:688.965000px;}
.y96{bottom:689.685000px;}
.y149{bottom:691.305000px;}
.y65{bottom:695.985000px;}
.y12{bottom:704.985000px;}
.y123{bottom:706.785000px;}
.yc1{bottom:707.505000px;}
.ye0{bottom:708.225000px;}
.y95{bottom:710.025000px;}
.y148{bottom:711.825000px;}
.y64{bottom:716.505000px;}
.y122{bottom:727.305000px;}
.yc0{bottom:728.025000px;}
.ydf{bottom:729.285000px;}
.y94{bottom:730.545000px;}
.y147{bottom:732.345000px;}
.y63{bottom:736.845000px;}
.y121{bottom:747.825000px;}
.ybf{bottom:748.365000px;}
.yde{bottom:749.625000px;}
.y93{bottom:751.065000px;}
.y127{bottom:751.245000px;}
.y146{bottom:752.685000px;}
.y62{bottom:757.365000px;}
.y120{bottom:768.165000px;}
.ybe{bottom:768.885000px;}
.ydd{bottom:770.145000px;}
.y92{bottom:771.405000px;}
.y145{bottom:773.205000px;}
.y61{bottom:777.885000px;}
.y11f{bottom:788.685000px;}
.ybd{bottom:789.225000px;}
.ydc{bottom:791.385000px;}
.y91{bottom:791.925000px;}
.y144{bottom:793.545000px;}
.y60{bottom:798.225000px;}
.yf{bottom:807.945000px;}
.y11e{bottom:809.205000px;}
.ybc{bottom:809.745000px;}
.y90{bottom:812.445000px;}
.y143{bottom:814.065000px;}
.y5f{bottom:818.745000px;}
.ybb{bottom:830.265000px;}
.y8f{bottom:832.785000px;}
.ye{bottom:833.145000px;}
.y142{bottom:834.585000px;}
.y5e{bottom:839.265000px;}
.y11d{bottom:850.605000px;}
.yba{bottom:851.325000px;}
.yd{bottom:852.765000px;}
.y8e{bottom:853.305000px;}
.y141{bottom:854.925000px;}
.y5d{bottom:859.605000px;}
.yc{bottom:869.865000px;}
.y11c{bottom:871.125000px;}
.yb9{bottom:871.845000px;}
.y8d{bottom:873.645000px;}
.y140{bottom:875.445000px;}
.y5c{bottom:880.125000px;}
.yb{bottom:887.685000px;}
.y11b{bottom:891.645000px;}
.yb8{bottom:892.185000px;}
.y8c{bottom:894.165000px;}
.y13f{bottom:895.965000px;}
.y5b{bottom:900.465000px;}
.ya{bottom:908.025000px;}
.y11a{bottom:912.030000px;}
.yb7{bottom:912.750000px;}
.y8b{bottom:914.730000px;}
.y13e{bottom:916.350000px;}
.y5a{bottom:921.030000px;}
.y9{bottom:929.310000px;}
.y119{bottom:932.550000px;}
.yb6{bottom:933.810000px;}
.y8a{bottom:935.070000px;}
.y13d{bottom:936.510000px;}
.y59{bottom:941.550000px;}
.y118{bottom:952.890000px;}
.y8{bottom:953.070000px;}
.yb5{bottom:954.330000px;}
.y89{bottom:955.590000px;}
.y58{bottom:961.890000px;}
.y117{bottom:973.410000px;}
.yb4{bottom:974.670000px;}
.y88{bottom:976.110000px;}
.y7{bottom:977.010000px;}
.y57{bottom:982.410000px;}
.y116{bottom:993.930000px;}
.yb3{bottom:995.190000px;}
.y87{bottom:996.450000px;}
.y6{bottom:1000.230000px;}
.y56{bottom:1002.930000px;}
.y115{bottom:1014.450000px;}
.yb2{bottom:1015.710000px;}
.y5{bottom:1016.610000px;}
.y86{bottom:1016.970000px;}
.y55{bottom:1023.990000px;}
.y114{bottom:1035.510000px;}
.yb1{bottom:1036.770000px;}
.y85{bottom:1037.310000px;}
.y54{bottom:1044.330000px;}
.y113{bottom:1055.850000px;}
.y84{bottom:1057.830000px;}
.y53{bottom:1064.850000px;}
.y112{bottom:1076.910000px;}
.y83{bottom:1078.350000px;}
.y52{bottom:1085.550000px;}
.y111{bottom:1097.430000px;}
.y82{bottom:1098.690000px;}
.y51{bottom:1105.350000px;}
.y110{bottom:1117.950000px;}
.y81{bottom:1119.210000px;}
.y50{bottom:1121.370000px;}
.y10f{bottom:1139.010000px;}
.y80{bottom:1139.730000px;}
.y2{bottom:1172.700000px;}
.y1{bottom:1192.860000px;}
.h12{height:18.720000px;}
.ha{height:20.340000px;}
.h15{height:20.520000px;}
.h18{height:34.056000px;}
.h10{height:36.509766px;}
.h16{height:40.860000px;}
.hf{height:41.076000px;}
.h9{height:45.228516px;}
.h4{height:50.132812px;}
.h5{height:54.457031px;}
.h8{height:54.486211px;}
.h7{height:54.492188px;}
.hc{height:54.507656px;}
.h1a{height:60.679688px;}
.h6{height:63.714727px;}
.hd{height:65.671875px;}
.h2{height:65.884219px;}
.h19{height:74.233125px;}
.h3{height:74.953125px;}
.hb{height:102.240000px;}
.h13{height:121.176000px;}
.h11{height:140.940000px;}
.h17{height:156.270000px;}
.he{height:306.930000px;}
.h14{height:340.995000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:20.160000px;}
.w3{width:146.376000px;}
.w5{width:479.595000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.920000px;}
.xc{left:9.900000px;}
.xa{left:73.074000px;}
.x2{left:148.895987px;}
.x5{left:164.369987px;}
.xf{left:191.369987px;}
.x10{left:202.889987px;}
.x4{left:222.509987px;}
.x6{left:225.029987px;}
.xb{left:295.275000px;}
.xd{left:315.435000px;}
.x9{left:346.034987px;}
.x8{left:348.914987px;}
.x7{left:376.814987px;}
.x3{left:467.924987px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls22{letter-spacing:-1.536000pt;}
.lsc{letter-spacing:-0.730667pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.518400pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.290133pt;}
.ls26{letter-spacing:-0.262400pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.088533pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.001920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000001pt;}
.ls1a{letter-spacing:0.000003pt;}
.ls7{letter-spacing:0.018560pt;}
.ls17{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.121600pt;}
.ls0{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.158080pt;}
.ls24{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.198400pt;}
.ls4{letter-spacing:0.217067pt;}
.ls1f{letter-spacing:0.224000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.377600pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.638080pt;}
.ls1e{letter-spacing:1.216000pt;}
.ls16{letter-spacing:26.368000pt;}
.ls25{letter-spacing:34.688000pt;}
.ls13{letter-spacing:55.168000pt;}
.lse{letter-spacing:83.968000pt;}
.ws17{word-spacing:-64.320000pt;}
.wsb{word-spacing:-64.128000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws14{word-spacing:-63.872000pt;}
.wsa{word-spacing:-16.512000pt;}
.ws18{word-spacing:-16.256000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.680000pt;}
.ws12{word-spacing:-15.616000pt;}
.ws11{word-spacing:-15.552000pt;}
.ws13{word-spacing:-15.488000pt;}
.wsd{word-spacing:-15.424000pt;}
.wse{word-spacing:-15.360000pt;}
.ws15{word-spacing:-15.296000pt;}
.ws16{word-spacing:-15.232000pt;}
.ws19{word-spacing:-15.168000pt;}
.ws1{word-spacing:-13.018987pt;}
.ws0{word-spacing:-13.000320pt;}
.ws2{word-spacing:-12.801920pt;}
.ws6{word-spacing:-10.455680pt;}
.ws3{word-spacing:-10.334080pt;}
.ws8{word-spacing:-10.245547pt;}
.ws4{word-spacing:-10.043947pt;}
.ws5{word-spacing:-9.815680pt;}
.ws7{word-spacing:-9.603413pt;}
.ws9{word-spacing:0.000000pt;}
._22{margin-left:-4.448853pt;}
._16{margin-left:-3.456000pt;}
._c{margin-left:-2.083413pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.417173pt;}
._2{width:2.318293pt;}
._6{width:3.730347pt;}
._5{width:4.727680pt;}
._15{width:5.683840pt;}
._8{width:6.922667pt;}
._7{width:7.861760pt;}
._9{width:9.561600pt;}
._4{width:10.783360pt;}
._3{width:11.739520pt;}
._18{width:13.056000pt;}
._14{width:14.608000pt;}
._21{width:16.320000pt;}
._10{width:17.210880pt;}
._1c{width:18.235947pt;}
._12{width:19.920000pt;}
._f{width:21.582080pt;}
._e{width:22.522880pt;}
._d{width:24.169600pt;}
._11{width:25.178880pt;}
._1f{width:26.395947pt;}
._25{width:27.492053pt;}
._1e{width:28.522667pt;}
._23{width:29.952000pt;}
._b{width:32.968533pt;}
._a{width:33.996800pt;}
._13{width:35.537280pt;}
._24{width:41.280000pt;}
._17{width:46.016000pt;}
._20{width:47.552000pt;}
._26{width:50.176000pt;}
._27{width:51.291520pt;}
._1d{width:55.744000pt;}
._19{width:59.712000pt;}
._1a{width:60.608000pt;}
._1b{width:61.781333pt;}
._28{width:69.280000pt;}
._2c{width:78.976000pt;}
._2d{width:79.872000pt;}
._2b{width:98.016000pt;}
._29{width:245.056000pt;}
._2a{width:246.016000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.400000pt;}
.y18{bottom:2.880000pt;}
.y35{bottom:3.200000pt;}
.y10{bottom:3.520000pt;}
.y36{bottom:4.320000pt;}
.y11{bottom:5.920000pt;}
.y2e{bottom:14.560000pt;}
.y17{bottom:17.920000pt;}
.y2a{bottom:18.080000pt;}
.y3d{bottom:19.520000pt;}
.y30{bottom:21.760000pt;}
.y2d{bottom:26.720000pt;}
.y16{bottom:33.120000pt;}
.y29{bottom:33.280000pt;}
.y3c{bottom:34.720000pt;}
.y15{bottom:48.320000pt;}
.y3b{bottom:49.920000pt;}
.y4{bottom:51.840000pt;}
.y14{bottom:63.360000pt;}
.y28{bottom:63.520000pt;}
.y3a{bottom:64.960000pt;}
.y3{bottom:69.280000pt;}
.y19{bottom:76.160000pt;}
.y13{bottom:78.560000pt;}
.y4b{bottom:78.586667pt;}
.y27{bottom:78.720000pt;}
.y39{bottom:80.160000pt;}
.y26{bottom:93.760000pt;}
.y4a{bottom:93.786667pt;}
.y3e{bottom:94.280000pt;}
.y38{bottom:95.400000pt;}
.y165{bottom:105.440000pt;}
.y3f{bottom:106.400000pt;}
.y25{bottom:108.960000pt;}
.y49{bottom:108.986667pt;}
.y32{bottom:110.720000pt;}
.y31{bottom:111.840000pt;}
.ydb{bottom:116.800000pt;}
.yf2{bottom:119.200000pt;}
.y10e{bottom:120.320000pt;}
.yb0{bottom:120.960000pt;}
.y13c{bottom:122.080000pt;}
.y164{bottom:123.520000pt;}
.y48{bottom:124.026667pt;}
.y24{bottom:124.160000pt;}
.y4f{bottom:124.186667pt;}
.y4e{bottom:125.466667pt;}
.y7f{bottom:127.200000pt;}
.yda{bottom:135.040000pt;}
.yf1{bottom:137.440000pt;}
.y10d{bottom:138.560000pt;}
.y23{bottom:139.200000pt;}
.y47{bottom:139.226667pt;}
.y13b{bottom:140.320000pt;}
.y163{bottom:141.760000pt;}
.y7e{bottom:145.280000pt;}
.yd9{bottom:153.280000pt;}
.y22{bottom:154.426667pt;}
.yf0{bottom:155.520000pt;}
.y10c{bottom:156.640000pt;}
.yaf{bottom:157.920000pt;}
.y13a{bottom:158.400000pt;}
.y162{bottom:160.000000pt;}
.y7d{bottom:163.520000pt;}
.y46{bottom:169.466667pt;}
.y21{bottom:169.626667pt;}
.yd8{bottom:171.520000pt;}
.yef{bottom:173.760000pt;}
.y10b{bottom:174.880000pt;}
.yae{bottom:176.640000pt;}
.y161{bottom:178.080000pt;}
.y7c{bottom:181.786667pt;}
.y45{bottom:184.666667pt;}
.y20{bottom:184.826667pt;}
.yd7{bottom:190.266667pt;}
.yee{bottom:191.866667pt;}
.y10a{bottom:193.146667pt;}
.yad{bottom:194.906667pt;}
.y160{bottom:196.346667pt;}
.y1f{bottom:199.866667pt;}
.yd6{bottom:208.986667pt;}
.yed{bottom:210.106667pt;}
.y109{bottom:211.226667pt;}
.yac{bottom:212.986667pt;}
.y15f{bottom:214.586667pt;}
.y44{bottom:214.906667pt;}
.y1e{bottom:215.066667pt;}
.y7b{bottom:218.106667pt;}
.yd5{bottom:227.066667pt;}
.yec{bottom:228.346667pt;}
.y108{bottom:229.466667pt;}
.y43{bottom:230.106667pt;}
.y1d{bottom:230.266667pt;}
.yab{bottom:231.226667pt;}
.y15e{bottom:232.666667pt;}
.y7a{bottom:236.346667pt;}
.y1c{bottom:245.306667pt;}
.y4d{bottom:245.946667pt;}
.yeb{bottom:246.426667pt;}
.y107{bottom:247.706667pt;}
.yaa{bottom:249.306667pt;}
.y15d{bottom:250.906667pt;}
.y79{bottom:254.426667pt;}
.y42{bottom:260.346667pt;}
.y1b{bottom:260.506667pt;}
.yd4{bottom:263.546667pt;}
.yea{bottom:264.666667pt;}
.y106{bottom:265.786667pt;}
.ya9{bottom:267.546667pt;}
.y15c{bottom:268.986667pt;}
.y78{bottom:272.666667pt;}
.y41{bottom:275.546667pt;}
.yd3{bottom:281.626667pt;}
.y4c{bottom:282.906667pt;}
.y105{bottom:284.026667pt;}
.y139{bottom:285.786667pt;}
.ya8{bottom:285.946667pt;}
.y15b{bottom:287.226667pt;}
.y77{bottom:290.746667pt;}
.y40{bottom:290.786667pt;}
.yd2{bottom:299.866667pt;}
.ye9{bottom:300.986667pt;}
.y37{bottom:301.786667pt;}
.y104{bottom:302.106667pt;}
.y138{bottom:303.866667pt;}
.ya7{bottom:304.026667pt;}
.y15a{bottom:305.466667pt;}
.y76{bottom:308.986667pt;}
.yd1{bottom:318.106667pt;}
.ye8{bottom:319.226667pt;}
.y103{bottom:320.346667pt;}
.y137{bottom:322.106667pt;}
.ya6{bottom:322.266667pt;}
.y159{bottom:323.546667pt;}
.y75{bottom:327.226667pt;}
.yd0{bottom:336.826667pt;}
.ye7{bottom:337.306667pt;}
.y102{bottom:338.586667pt;}
.y136{bottom:340.186667pt;}
.ya5{bottom:340.346667pt;}
.y158{bottom:341.786667pt;}
.y74{bottom:345.306667pt;}
.ycf{bottom:355.546667pt;}
.y101{bottom:356.666667pt;}
.y135{bottom:358.426667pt;}
.ya4{bottom:358.586667pt;}
.y157{bottom:360.026667pt;}
.y73{bottom:363.546667pt;}
.yce{bottom:373.786667pt;}
.y100{bottom:374.906667pt;}
.y134{bottom:376.666667pt;}
.ya3{bottom:376.826667pt;}
.y156{bottom:378.106667pt;}
.y72{bottom:381.786667pt;}
.ycd{bottom:391.906667pt;}
.yff{bottom:393.186667pt;}
.y133{bottom:394.786667pt;}
.ya2{bottom:394.946667pt;}
.y155{bottom:396.386667pt;}
.y71{bottom:399.906667pt;}
.y34{bottom:410.146667pt;}
.yfe{bottom:411.266667pt;}
.y132{bottom:413.026667pt;}
.ya1{bottom:413.186667pt;}
.y154{bottom:414.466667pt;}
.y70{bottom:418.146667pt;}
.ycc{bottom:428.386667pt;}
.yfd{bottom:429.506667pt;}
.y33{bottom:430.626667pt;}
.y131{bottom:431.266667pt;}
.ya0{bottom:431.426667pt;}
.y153{bottom:432.706667pt;}
.y6f{bottom:436.866667pt;}
.y1a{bottom:444.706667pt;}
.ycb{bottom:446.466667pt;}
.yfc{bottom:447.586667pt;}
.y130{bottom:449.346667pt;}
.y9f{bottom:449.506667pt;}
.y152{bottom:450.946667pt;}
.y6e{bottom:455.106667pt;}
.yca{bottom:464.706667pt;}
.yfb{bottom:465.826667pt;}
.y12f{bottom:467.586667pt;}
.y9e{bottom:467.746667pt;}
.y151{bottom:469.026667pt;}
.y6d{bottom:473.186667pt;}
.ye6{bottom:482.786667pt;}
.yc9{bottom:482.946667pt;}
.yfa{bottom:484.066667pt;}
.y12e{bottom:485.666667pt;}
.y9d{bottom:485.826667pt;}
.y150{bottom:487.266667pt;}
.y6c{bottom:491.426667pt;}
.ye5{bottom:501.026667pt;}
.yc8{bottom:501.666667pt;}
.yf9{bottom:502.146667pt;}
.y12d{bottom:503.906667pt;}
.y9c{bottom:504.066667pt;}
.y14f{bottom:505.506667pt;}
.y6b{bottom:509.506667pt;}
.ye4{bottom:519.266667pt;}
.yc7{bottom:519.746667pt;}
.yf8{bottom:520.386667pt;}
.y12c{bottom:522.146667pt;}
.y9b{bottom:522.306667pt;}
.y14e{bottom:523.586667pt;}
.y6a{bottom:527.746667pt;}
.ye3{bottom:537.346667pt;}
.yc6{bottom:537.986667pt;}
.yf7{bottom:538.626667pt;}
.y12b{bottom:540.226667pt;}
.y9a{bottom:540.386667pt;}
.y14d{bottom:541.826667pt;}
.y69{bottom:545.986667pt;}
.ye2{bottom:555.586667pt;}
.yc5{bottom:556.226667pt;}
.yf6{bottom:556.706667pt;}
.y12a{bottom:558.466667pt;}
.y99{bottom:558.626667pt;}
.y14c{bottom:559.906667pt;}
.y68{bottom:564.066667pt;}
.y2c{bottom:570.626667pt;}
.y126{bottom:573.826667pt;}
.yc4{bottom:574.306667pt;}
.yf5{bottom:574.946667pt;}
.y129{bottom:576.706667pt;}
.y98{bottom:576.866667pt;}
.y14b{bottom:578.146667pt;}
.y67{bottom:582.306667pt;}
.y125{bottom:591.906667pt;}
.yc3{bottom:592.546667pt;}
.yf4{bottom:593.666667pt;}
.y128{bottom:594.786667pt;}
.y97{bottom:594.946667pt;}
.y14a{bottom:596.386667pt;}
.y66{bottom:600.573333pt;}
.y2b{bottom:607.773333pt;}
.y124{bottom:610.173333pt;}
.yc2{bottom:610.653333pt;}
.ye1{bottom:611.293333pt;}
.yf3{bottom:612.413333pt;}
.y96{bottom:613.053333pt;}
.y149{bottom:614.493333pt;}
.y65{bottom:618.653333pt;}
.y12{bottom:626.653333pt;}
.y123{bottom:628.253333pt;}
.yc1{bottom:628.893333pt;}
.ye0{bottom:629.533333pt;}
.y95{bottom:631.133333pt;}
.y148{bottom:632.733333pt;}
.y64{bottom:636.893333pt;}
.y122{bottom:646.493333pt;}
.yc0{bottom:647.133333pt;}
.ydf{bottom:648.253333pt;}
.y94{bottom:649.373333pt;}
.y147{bottom:650.973333pt;}
.y63{bottom:654.973333pt;}
.y121{bottom:664.733333pt;}
.ybf{bottom:665.213333pt;}
.yde{bottom:666.333333pt;}
.y93{bottom:667.613333pt;}
.y127{bottom:667.773333pt;}
.y146{bottom:669.053333pt;}
.y62{bottom:673.213333pt;}
.y120{bottom:682.813333pt;}
.ybe{bottom:683.453333pt;}
.ydd{bottom:684.573333pt;}
.y92{bottom:685.693333pt;}
.y145{bottom:687.293333pt;}
.y61{bottom:691.453333pt;}
.y11f{bottom:701.053333pt;}
.ybd{bottom:701.533333pt;}
.ydc{bottom:703.453333pt;}
.y91{bottom:703.933333pt;}
.y144{bottom:705.373333pt;}
.y60{bottom:709.533333pt;}
.yf{bottom:718.173333pt;}
.y11e{bottom:719.293333pt;}
.ybc{bottom:719.773333pt;}
.y90{bottom:722.173333pt;}
.y143{bottom:723.613333pt;}
.y5f{bottom:727.773333pt;}
.ybb{bottom:738.013333pt;}
.y8f{bottom:740.253333pt;}
.ye{bottom:740.573333pt;}
.y142{bottom:741.853333pt;}
.y5e{bottom:746.013333pt;}
.y11d{bottom:756.093333pt;}
.yba{bottom:756.733333pt;}
.yd{bottom:758.013333pt;}
.y8e{bottom:758.493333pt;}
.y141{bottom:759.933333pt;}
.y5d{bottom:764.093333pt;}
.yc{bottom:773.213333pt;}
.y11c{bottom:774.333333pt;}
.yb9{bottom:774.973333pt;}
.y8d{bottom:776.573333pt;}
.y140{bottom:778.173333pt;}
.y5c{bottom:782.333333pt;}
.yb{bottom:789.053333pt;}
.y11b{bottom:792.573333pt;}
.yb8{bottom:793.053333pt;}
.y8c{bottom:794.813333pt;}
.y13f{bottom:796.413333pt;}
.y5b{bottom:800.413333pt;}
.ya{bottom:807.133333pt;}
.y11a{bottom:810.693333pt;}
.yb7{bottom:811.333333pt;}
.y8b{bottom:813.093333pt;}
.y13e{bottom:814.533333pt;}
.y5a{bottom:818.693333pt;}
.y9{bottom:826.053333pt;}
.y119{bottom:828.933333pt;}
.yb6{bottom:830.053333pt;}
.y8a{bottom:831.173333pt;}
.y13d{bottom:832.453333pt;}
.y59{bottom:836.933333pt;}
.y118{bottom:847.013333pt;}
.y8{bottom:847.173333pt;}
.yb5{bottom:848.293333pt;}
.y89{bottom:849.413333pt;}
.y58{bottom:855.013333pt;}
.y117{bottom:865.253333pt;}
.yb4{bottom:866.373333pt;}
.y88{bottom:867.653333pt;}
.y7{bottom:868.453333pt;}
.y57{bottom:873.253333pt;}
.y116{bottom:883.493333pt;}
.yb3{bottom:884.613333pt;}
.y87{bottom:885.733333pt;}
.y6{bottom:889.093333pt;}
.y56{bottom:891.493333pt;}
.y115{bottom:901.733333pt;}
.yb2{bottom:902.853333pt;}
.y5{bottom:903.653333pt;}
.y86{bottom:903.973333pt;}
.y55{bottom:910.213333pt;}
.y114{bottom:920.453333pt;}
.yb1{bottom:921.573333pt;}
.y85{bottom:922.053333pt;}
.y54{bottom:928.293333pt;}
.y113{bottom:938.533333pt;}
.y84{bottom:940.293333pt;}
.y53{bottom:946.533333pt;}
.y112{bottom:957.253333pt;}
.y83{bottom:958.533333pt;}
.y52{bottom:964.933333pt;}
.y111{bottom:975.493333pt;}
.y82{bottom:976.613333pt;}
.y51{bottom:982.533333pt;}
.y110{bottom:993.733333pt;}
.y81{bottom:994.853333pt;}
.y50{bottom:996.773333pt;}
.y10f{bottom:1012.453333pt;}
.y80{bottom:1013.093333pt;}
.y2{bottom:1042.400000pt;}
.y1{bottom:1060.320000pt;}
.h12{height:16.640000pt;}
.ha{height:18.080000pt;}
.h15{height:18.240000pt;}
.h18{height:30.272000pt;}
.h10{height:32.453125pt;}
.h16{height:36.320000pt;}
.hf{height:36.512000pt;}
.h9{height:40.203125pt;}
.h4{height:44.562500pt;}
.h5{height:48.406250pt;}
.h8{height:48.432187pt;}
.h7{height:48.437500pt;}
.hc{height:48.451250pt;}
.h1a{height:53.937500pt;}
.h6{height:56.635312pt;}
.hd{height:58.375000pt;}
.h2{height:58.563750pt;}
.h19{height:65.985000pt;}
.h3{height:66.625000pt;}
.hb{height:90.880000pt;}
.h13{height:107.712000pt;}
.h11{height:125.280000pt;}
.h17{height:138.906667pt;}
.he{height:272.826667pt;}
.h14{height:303.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:17.920000pt;}
.w3{width:130.112000pt;}
.w5{width:426.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.040000pt;}
.xc{left:8.800000pt;}
.xa{left:64.954667pt;}
.x2{left:132.351988pt;}
.x5{left:146.106655pt;}
.xf{left:170.106655pt;}
.x10{left:180.346655pt;}
.x4{left:197.786655pt;}
.x6{left:200.026655pt;}
.xb{left:262.466667pt;}
.xd{left:280.386667pt;}
.x9{left:307.586655pt;}
.x8{left:310.146655pt;}
.x7{left:334.946655pt;}
.x3{left:415.933322pt;}
.x1{left:699.493322pt;}
}




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