
    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_7e58f7aa7f84f82e798e4122.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_67ed000e2651c6f10875135a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_17e5a04e1a1046ac08e612f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_0fb05e01754d967a580da7f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_8f77e25e12337a9c49b6a538.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fa8a233a93788c61a239525b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_b69c1be4292c1b453019d8bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_43cf0314ceec82e98cbfdd4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.120605;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_ef83630b302203d080ed8409.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_dc036074994e000e1a026c13.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4bd706efe67c470f8a79df12.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_33fc3cd944c9539534451a56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.766602;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_5d15e1805c2a7b2ec3ccb37e.woff2')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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.lsd{letter-spacing:-1.512000px;}
.lse{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.498000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.049760px;}
.ls14{letter-spacing:1.440000px;}
.ls2{letter-spacing:481.829760px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws1{word-spacing:-66.240000px;}
.ws13{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.648000px;}
.ws12{word-spacing:-18.432000px;}
.ws14{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.208000px;}
.wsd{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.724400px;}
.wsc{word-spacing:-16.488000px;}
.wse{word-spacing:-16.272000px;}
.ws16{word-spacing:-13.536000px;}
.ws15{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.788612px;}
._1{width:1.258825px;}
._3{width:2.436612px;}
._4{width:11.569788px;}
._6{width:37.992000px;}
._a{width:215.028000px;}
._9{width:216.048000px;}
._c{width:221.808000px;}
._b{width:226.308000px;}
._5{width:431.485308px;}
._2{width:467.485308px;}
._7{width:846.156000px;}
._8{width:1800.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.960000px;}
.y65{bottom:4.320000px;}
.y89{bottom:4.350000px;}
.y6c{bottom:4.500000px;}
.y7d{bottom:7.560000px;}
.y7f{bottom:7.740000px;}
.y64{bottom:7.920000px;}
.yc5{bottom:10.260000px;}
.yee{bottom:12.345000px;}
.yf9{bottom:12.495000px;}
.ycb{bottom:14.760000px;}
.yd2{bottom:14.790000px;}
.y62{bottom:18.360000px;}
.yca{bottom:25.020000px;}
.yd1{bottom:25.050000px;}
.ye6{bottom:28.230000px;}
.y6e{bottom:28.260000px;}
.yf1{bottom:28.335000px;}
.y111{bottom:28.365000px;}
.y6b{bottom:28.440000px;}
.y87{bottom:28.470000px;}
.y74{bottom:28.485000px;}
.y63{bottom:28.620000px;}
.ybb{bottom:28.980000px;}
.yb3{bottom:29.160000px;}
.yb9{bottom:29.205000px;}
.yac{bottom:29.340000px;}
.yae{bottom:29.370000px;}
.ya5{bottom:29.520000px;}
.ya3{bottom:30.105000px;}
.yb1{bottom:30.600000px;}
.ya9{bottom:30.780000px;}
.y79{bottom:31.500000px;}
.y7b{bottom:31.680000px;}
.y96{bottom:31.725000px;}
.yab{bottom:32.580000px;}
.ya7{bottom:32.760000px;}
.ybe{bottom:33.654000px;}
.yb7{bottom:33.660000px;}
.yb0{bottom:33.840000px;}
.ybd{bottom:36.894000px;}
.yb6{bottom:36.900000px;}
.y8d{bottom:38.340000px;}
.ya1{bottom:42.165000px;}
.ya2{bottom:54.225000px;}
.y1e{bottom:58.320000px;}
.yc0{bottom:58.356000px;}
.y85{bottom:58.860000px;}
.y93{bottom:58.905000px;}
.y72{bottom:59.040000px;}
.y108{bottom:65.415000px;}
.y112{bottom:67.605000px;}
.ye7{bottom:68.610000px;}
.yf2{bottom:74.265000px;}
.y69{bottom:79.560000px;}
.y84{bottom:79.590000px;}
.y92{bottom:79.605000px;}
.y8c{bottom:79.740000px;}
.y71{bottom:79.785000px;}
.y9f{bottom:81.000000px;}
.y10f{bottom:93.750000px;}
.y119{bottom:101.370000px;}
.y109{bottom:102.495000px;}
.yef{bottom:105.120000px;}
.y113{bottom:106.845000px;}
.ye8{bottom:108.975000px;}
.y48{bottom:118.476000px;}
.yf3{bottom:120.210000px;}
.yfa{bottom:124.590000px;}
.ybc{bottom:128.556000px;}
.y10a{bottom:139.605000px;}
.y114{bottom:146.085000px;}
.ye9{bottom:149.370000px;}
.y46{bottom:150.150000px;}
.y2b{bottom:152.310000px;}
.y28{bottom:152.670000px;}
.y9b{bottom:157.890000px;}
.ye4{bottom:162.930000px;}
.yf4{bottom:166.140000px;}
.y10b{bottom:176.685000px;}
.yba{bottom:183.450000px;}
.y115{bottom:185.370000px;}
.yea{bottom:189.750000px;}
.y45{bottom:191.550000px;}
.y9a{bottom:192.270000px;}
.y52{bottom:193.710000px;}
.y27{bottom:194.070000px;}
.ye3{bottom:200.010000px;}
.y106{bottom:202.890000px;}
.yf5{bottom:212.040000px;}
.y10c{bottom:213.765000px;}
.y116{bottom:224.610000px;}
.yeb{bottom:230.145000px;}
.y44{bottom:232.950000px;}
.y99{bottom:233.670000px;}
.y2f{bottom:235.110000px;}
.y26{bottom:235.470000px;}
.y105{bottom:244.290000px;}
.y98{bottom:250.770000px;}
.y10d{bottom:250.845000px;}
.ye2{bottom:253.830000px;}
.ye5{bottom:255.240000px;}
.yf6{bottom:257.970000px;}
.y117{bottom:263.850000px;}
.yec{bottom:270.540000px;}
.y43{bottom:274.350000px;}
.y81{bottom:274.890000px;}
.y2a{bottom:276.510000px;}
.y25{bottom:276.870000px;}
.y104{bottom:280.830000px;}
.y10e{bottom:287.925000px;}
.yb8{bottom:288.390000px;}
.y67{bottom:295.605000px;}
.y82{bottom:295.635000px;}
.y91{bottom:298.830000px;}
.y118{bottom:303.090000px;}
.yf7{bottom:303.915000px;}
.yed{bottom:310.890000px;}
.y42{bottom:315.795000px;}
.y51{bottom:317.955000px;}
.y24{bottom:318.315000px;}
.y97{bottom:322.815000px;}
.y103{bottom:334.695000px;}
.y107{bottom:336.600000px;}
.yb5{bottom:338.835000px;}
.y11c{bottom:345.315000px;}
.y94{bottom:346.935000px;}
.yf8{bottom:349.815000px;}
.y41{bottom:357.195000px;}
.y47{bottom:359.355000px;}
.y23{bottom:359.715000px;}
.y11b{bottom:366.015000px;}
.yd4{bottom:366.735000px;}
.y95{bottom:370.875000px;}
.y11a{bottom:382.395000px;}
.yd3{bottom:387.975000px;}
.yb4{bottom:393.555000px;}
.y8b{bottom:394.815000px;}
.y40{bottom:398.595000px;}
.y50{bottom:400.755000px;}
.y22{bottom:401.115000px;}
.y90{bottom:418.935000px;}
.yd0{bottom:433.875000px;}
.y3f{bottom:439.995000px;}
.y4f{bottom:442.155000px;}
.yb2{bottom:442.335000px;}
.y1c{bottom:442.515000px;}
.y8e{bottom:442.875000px;}
.y8f{bottom:466.815000px;}
.ycf{bottom:479.805000px;}
.y3e{bottom:481.395000px;}
.y4e{bottom:483.555000px;}
.y21{bottom:483.915000px;}
.y83{bottom:490.935000px;}
.yaf{bottom:491.115000px;}
.yce{bottom:505.005000px;}
.y8a{bottom:514.875000px;}
.y3d{bottom:522.795000px;}
.y2d{bottom:524.955000px;}
.y1b{bottom:525.315000px;}
.ycd{bottom:530.205000px;}
.y86{bottom:538.815000px;}
.yad{bottom:542.955000px;}
.ycc{bottom:555.405000px;}
.y88{bottom:562.935000px;}
.y3c{bottom:563.835000px;}
.y2c{bottom:566.385000px;}
.y1a{bottom:566.745000px;}
.y80{bottom:586.905000px;}
.yaa{bottom:593.565000px;}
.yc9{bottom:601.305000px;}
.y3b{bottom:605.265000px;}
.y4d{bottom:607.785000px;}
.y19{bottom:608.145000px;}
.y7e{bottom:610.845000px;}
.ye1{bottom:611.925000px;}
.y66{bottom:634.965000px;}
.ya8{bottom:643.965000px;}
.y3a{bottom:647.025000px;}
.yc8{bottom:647.250000px;}
.y4c{bottom:649.185000px;}
.y18{bottom:649.545000px;}
.ye0{bottom:653.325000px;}
.y77{bottom:658.905000px;}
.y102{bottom:670.245000px;}
.yc7{bottom:673.170000px;}
.y5f{bottom:674.565000px;}
.yf0{bottom:675.000000px;}
.y7c{bottom:682.845000px;}
.ydf{bottom:687.705000px;}
.y39{bottom:688.425000px;}
.y4b{bottom:690.585000px;}
.y17{bottom:690.945000px;}
.ya6{bottom:695.805000px;}
.y110{bottom:697.500000px;}
.yc6{bottom:698.370000px;}
.y78{bottom:706.965000px;}
.y101{bottom:711.645000px;}
.y5e{bottom:715.965000px;}
.y6{bottom:717.765000px;}
.yde{bottom:721.905000px;}
.yc3{bottom:724.470000px;}
.y38{bottom:729.825000px;}
.y7a{bottom:730.905000px;}
.y4a{bottom:731.985000px;}
.y16{bottom:732.345000px;}
.ya4{bottom:746.385000px;}
.y100{bottom:753.045000px;}
.yc2{bottom:754.350000px;}
.y70{bottom:754.845000px;}
.ydd{bottom:756.285000px;}
.y5d{bottom:757.365000px;}
.y5{bottom:759.165000px;}
.y37{bottom:771.225000px;}
.y49{bottom:773.385000px;}
.y15{bottom:773.745000px;}
.y76{bottom:778.965000px;}
.yc1{bottom:784.410000px;}
.ydc{bottom:790.665000px;}
.yff{bottom:794.445000px;}
.ya0{bottom:796.965000px;}
.y5c{bottom:798.765000px;}
.y73{bottom:802.905000px;}
.y36{bottom:812.625000px;}
.y14{bottom:815.145000px;}
.ydb{bottom:825.090000px;}
.y75{bottom:826.890000px;}
.yfe{bottom:835.890000px;}
.y5b{bottom:840.210000px;}
.yc{bottom:840.313500px;}
.ybf{bottom:849.060000px;}
.y68{bottom:851.010000px;}
.y35{bottom:854.070000px;}
.y55{bottom:856.230000px;}
.y13{bottom:856.590000px;}
.yda{bottom:859.290000px;}
.yb{bottom:860.185500px;}
.y5a{bottom:862.530000px;}
.y6f{bottom:874.950000px;}
.yfd{bottom:877.290000px;}
.ya{bottom:880.057500px;}
.y59{bottom:884.490000px;}
.yd9{bottom:893.670000px;}
.y34{bottom:895.470000px;}
.y12{bottom:897.990000px;}
.y6a{bottom:898.890000px;}
.y9{bottom:899.929500px;}
.yfc{bottom:918.690000px;}
.y58{bottom:919.230000px;}
.y8{bottom:919.801500px;}
.y6d{bottom:923.010000px;}
.yd8{bottom:928.050000px;}
.y33{bottom:936.870000px;}
.y2e{bottom:939.030000px;}
.y11{bottom:939.390000px;}
.y7{bottom:939.673500px;}
.y61{bottom:947.670000px;}
.y57{bottom:953.430000px;}
.yfb{bottom:960.090000px;}
.yd7{bottom:962.610000px;}
.y4{bottom:972.510000px;}
.y32{bottom:978.270000px;}
.y10{bottom:980.430000px;}
.y20{bottom:980.790000px;}
.y56{bottom:987.810000px;}
.yd6{bottom:996.450000px;}
.y60{bottom:1001.490000px;}
.y9e{bottom:1003.650000px;}
.y3{bottom:1017.330000px;}
.y31{bottom:1019.670000px;}
.y54{bottom:1021.830000px;}
.y1f{bottom:1022.190000px;}
.y9d{bottom:1024.350000px;}
.yd5{bottom:1030.110000px;}
.yf{bottom:1042.530000px;}
.y53{bottom:1042.890000px;}
.y9c{bottom:1054.230000px;}
.y2{bottom:1062.330000px;}
.y30{bottom:1062.870000px;}
.ye{bottom:1063.230000px;}
.y29{bottom:1063.590000px;}
.y1d{bottom:1097.640000px;}
.yd{bottom:1117.620000px;}
.y1{bottom:1119.060000px;}
.h23{height:20.700000px;}
.hc{height:23.940000px;}
.h14{height:23.976000px;}
.h10{height:24.120000px;}
.h26{height:41.400000px;}
.h25{height:41.436000px;}
.h4{height:47.162880px;}
.h11{height:47.880000px;}
.hf{height:48.060000px;}
.h13{height:48.096000px;}
.h21{height:48.600000px;}
.hb{height:48.780000px;}
.h20{height:48.816000px;}
.h1c{height:48.960000px;}
.h1d{height:48.996000px;}
.h1a{height:49.140000px;}
.h1e{height:50.220000px;}
.h1b{height:50.400000px;}
.h2{height:50.682656px;}
.h28{height:52.998047px;}
.h29{height:53.139375px;}
.h1f{height:53.280000px;}
.h24{height:58.651172px;}
.ha{height:64.546875px;}
.h1{height:65.010937px;}
.h6{height:65.884219px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h8{height:71.613281px;}
.h3{height:72.562500px;}
.h9{height:74.681367px;}
.he{height:95.940000px;}
.h16{height:95.976000px;}
.h17{height:96.120000px;}
.h12{height:96.156000px;}
.h19{height:99.396000px;}
.h18{height:100.620000px;}
.h2b{height:308.700000px;}
.hd{height:311.970000px;}
.h15{height:312.015000px;}
.h2c{height:324.000000px;}
.h27{height:331.740000px;}
.h2a{height:370.620000px;}
.h22{height:918.000000px;}
.h0{height:1188.000000px;}
.w1e{width:17.280000px;}
.wf{width:19.800000px;}
.w21{width:33.840000px;}
.wa{width:57.060000px;}
.w20{width:60.840000px;}
.w10{width:62.640000px;}
.wb{width:71.280000px;}
.wd{width:71.460000px;}
.w14{width:77.076000px;}
.w18{width:77.616000px;}
.w16{width:82.836000px;}
.w12{width:84.816000px;}
.w13{width:91.260000px;}
.w19{width:91.620000px;}
.w15{width:92.160000px;}
.w17{width:93.240000px;}
.w2{width:94.500000px;}
.w3{width:94.536000px;}
.w1d{width:96.660000px;}
.w1f{width:96.876000px;}
.w9{width:97.200000px;}
.wc{width:99.936000px;}
.w4{width:108.000000px;}
.w6{width:121.536000px;}
.w8{width:123.876000px;}
.w7{width:128.196000px;}
.w1c{width:129.996000px;}
.w22{width:130.176000px;}
.w11{width:169.950000px;}
.we{width:177.690000px;}
.w5{width:222.690000px;}
.w23{width:482.655000px;}
.w24{width:482.835000px;}
.w26{width:633.960000px;}
.w25{width:634.860000px;}
.w28{width:642.240000px;}
.w27{width:647.820000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w1b{width:1187.999982px;}
.w1a{width:1188.000000px;}
.x0{left:0.000000px;}
.x59{left:1.080000px;}
.x43{left:4.680000px;}
.x42{left:6.480000px;}
.x46{left:8.640000px;}
.x3f{left:9.900000px;}
.x47{left:11.880000px;}
.x48{left:13.320000px;}
.x50{left:16.920000px;}
.x20{left:18.540000px;}
.x35{left:20.160000px;}
.x22{left:21.420000px;}
.x34{left:23.760000px;}
.x1c{left:25.200000px;}
.x2d{left:26.820000px;}
.x2c{left:28.260000px;}
.x2e{left:29.880000px;}
.x1e{left:31.680000px;}
.x38{left:33.660000px;}
.x25{left:35.100000px;}
.x31{left:37.080000px;}
.x33{left:38.160000px;}
.x2a{left:39.600000px;}
.x5c{left:40.644000px;}
.x27{left:41.760000px;}
.x37{left:43.920000px;}
.x4a{left:45.720000px;}
.x2f{left:47.160000px;}
.x30{left:48.420000px;}
.x36{left:50.580000px;}
.x3d{left:52.920000px;}
.x28{left:54.000000px;}
.x24{left:60.705000px;}
.x32{left:61.920000px;}
.x7{left:90.369000px;}
.x1b{left:101.376000px;}
.x5b{left:103.755000px;}
.x5e{left:105.045000px;}
.x1{left:108.036000px;}
.x4b{left:110.340000px;}
.x5f{left:113.580000px;}
.x5{left:126.036000px;}
.x2{left:131.076000px;}
.xa{left:135.035986px;}
.x4{left:156.450000px;}
.x3{left:158.610000px;}
.xe{left:162.029986px;}
.x39{left:165.090000px;}
.x1a{left:189.029986px;}
.x1d{left:195.870000px;}
.x3a{left:236.370000px;}
.x4c{left:242.670000px;}
.xf{left:270.029986px;}
.x1f{left:290.415000px;}
.x6{left:321.915000px;}
.xd{left:327.134986px;}
.xc{left:332.714986px;}
.x3b{left:336.315000px;}
.x4d{left:341.670000px;}
.x10{left:354.134986px;}
.x4e{left:361.110000px;}
.x17{left:372.134986px;}
.xb{left:378.794986px;}
.x16{left:384.554986px;}
.x13{left:386.354986px;}
.x11{left:389.234986px;}
.x19{left:396.794986px;}
.x21{left:398.415000px;}
.x3c{left:407.775000px;}
.x18{left:417.134986px;}
.x14{left:418.574986px;}
.x9{left:423.434986px;}
.x8{left:425.595000px;}
.x12{left:430.994986px;}
.x15{left:459.074986px;}
.x4f{left:460.155000px;}
.x49{left:492.225000px;}
.x44{left:494.205000px;}
.x29{left:522.285000px;}
.x26{left:526.605000px;}
.x51{left:559.155000px;}
.x3e{left:586.905000px;}
.x52{left:595.155000px;}
.x40{left:608.325000px;}
.x2b{left:619.485000px;}
.x23{left:621.105000px;}
.x41{left:672.405000px;}
.x60{left:675.104986px;}
.x53{left:727.665000px;}
.x5a{left:744.809986px;}
.x45{left:750.930000px;}
.x5d{left:756.149986px;}
.x54{left:826.665000px;}
.x55{left:846.105000px;}
.x56{left:945.150000px;}
.x57{left:1008.150000px;}
.x58{left:1044.150000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.lsd{letter-spacing:-1.344000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.442667pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.933120pt;}
.ls14{letter-spacing:1.280000pt;}
.ls2{letter-spacing:428.293120pt;}
.wsf{word-spacing:-64.000000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws13{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.576000pt;}
.ws12{word-spacing:-16.384000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.296000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.866133pt;}
.wsc{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.464000pt;}
.ws16{word-spacing:-12.032000pt;}
.ws15{word-spacing:-12.000000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.589878pt;}
._1{width:1.118956pt;}
._3{width:2.165878pt;}
._4{width:10.284256pt;}
._6{width:33.770667pt;}
._a{width:191.136000pt;}
._9{width:192.042667pt;}
._c{width:197.162667pt;}
._b{width:201.162667pt;}
._5{width:383.542496pt;}
._2{width:415.542496pt;}
._7{width:752.138667pt;}
._8{width:1600.266667pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:3.520000pt;}
.y65{bottom:3.840000pt;}
.y89{bottom:3.866667pt;}
.y6c{bottom:4.000000pt;}
.y7d{bottom:6.720000pt;}
.y7f{bottom:6.880000pt;}
.y64{bottom:7.040000pt;}
.yc5{bottom:9.120000pt;}
.yee{bottom:10.973333pt;}
.yf9{bottom:11.106667pt;}
.ycb{bottom:13.120000pt;}
.yd2{bottom:13.146667pt;}
.y62{bottom:16.320000pt;}
.yca{bottom:22.240000pt;}
.yd1{bottom:22.266667pt;}
.ye6{bottom:25.093333pt;}
.y6e{bottom:25.120000pt;}
.yf1{bottom:25.186667pt;}
.y111{bottom:25.213333pt;}
.y6b{bottom:25.280000pt;}
.y87{bottom:25.306667pt;}
.y74{bottom:25.320000pt;}
.y63{bottom:25.440000pt;}
.ybb{bottom:25.760000pt;}
.yb3{bottom:25.920000pt;}
.yb9{bottom:25.960000pt;}
.yac{bottom:26.080000pt;}
.yae{bottom:26.106667pt;}
.ya5{bottom:26.240000pt;}
.ya3{bottom:26.760000pt;}
.yb1{bottom:27.200000pt;}
.ya9{bottom:27.360000pt;}
.y79{bottom:28.000000pt;}
.y7b{bottom:28.160000pt;}
.y96{bottom:28.200000pt;}
.yab{bottom:28.960000pt;}
.ya7{bottom:29.120000pt;}
.ybe{bottom:29.914667pt;}
.yb7{bottom:29.920000pt;}
.yb0{bottom:30.080000pt;}
.ybd{bottom:32.794667pt;}
.yb6{bottom:32.800000pt;}
.y8d{bottom:34.080000pt;}
.ya1{bottom:37.480000pt;}
.ya2{bottom:48.200000pt;}
.y1e{bottom:51.840000pt;}
.yc0{bottom:51.872000pt;}
.y85{bottom:52.320000pt;}
.y93{bottom:52.360000pt;}
.y72{bottom:52.480000pt;}
.y108{bottom:58.146667pt;}
.y112{bottom:60.093333pt;}
.ye7{bottom:60.986667pt;}
.yf2{bottom:66.013333pt;}
.y69{bottom:70.720000pt;}
.y84{bottom:70.746667pt;}
.y92{bottom:70.760000pt;}
.y8c{bottom:70.880000pt;}
.y71{bottom:70.920000pt;}
.y9f{bottom:72.000000pt;}
.y10f{bottom:83.333333pt;}
.y119{bottom:90.106667pt;}
.y109{bottom:91.106667pt;}
.yef{bottom:93.440000pt;}
.y113{bottom:94.973333pt;}
.ye8{bottom:96.866667pt;}
.y48{bottom:105.312000pt;}
.yf3{bottom:106.853333pt;}
.yfa{bottom:110.746667pt;}
.ybc{bottom:114.272000pt;}
.y10a{bottom:124.093333pt;}
.y114{bottom:129.853333pt;}
.ye9{bottom:132.773333pt;}
.y46{bottom:133.466667pt;}
.y2b{bottom:135.386667pt;}
.y28{bottom:135.706667pt;}
.y9b{bottom:140.346667pt;}
.ye4{bottom:144.826667pt;}
.yf4{bottom:147.680000pt;}
.y10b{bottom:157.053333pt;}
.yba{bottom:163.066667pt;}
.y115{bottom:164.773333pt;}
.yea{bottom:168.666667pt;}
.y45{bottom:170.266667pt;}
.y9a{bottom:170.906667pt;}
.y52{bottom:172.186667pt;}
.y27{bottom:172.506667pt;}
.ye3{bottom:177.786667pt;}
.y106{bottom:180.346667pt;}
.yf5{bottom:188.480000pt;}
.y10c{bottom:190.013333pt;}
.y116{bottom:199.653333pt;}
.yeb{bottom:204.573333pt;}
.y44{bottom:207.066667pt;}
.y99{bottom:207.706667pt;}
.y2f{bottom:208.986667pt;}
.y26{bottom:209.306667pt;}
.y105{bottom:217.146667pt;}
.y98{bottom:222.906667pt;}
.y10d{bottom:222.973333pt;}
.ye2{bottom:225.626667pt;}
.ye5{bottom:226.880000pt;}
.yf6{bottom:229.306667pt;}
.y117{bottom:234.533333pt;}
.yec{bottom:240.480000pt;}
.y43{bottom:243.866667pt;}
.y81{bottom:244.346667pt;}
.y2a{bottom:245.786667pt;}
.y25{bottom:246.106667pt;}
.y104{bottom:249.626667pt;}
.y10e{bottom:255.933333pt;}
.yb8{bottom:256.346667pt;}
.y67{bottom:262.760000pt;}
.y82{bottom:262.786667pt;}
.y91{bottom:265.626667pt;}
.y118{bottom:269.413333pt;}
.yf7{bottom:270.146667pt;}
.yed{bottom:276.346667pt;}
.y42{bottom:280.706667pt;}
.y51{bottom:282.626667pt;}
.y24{bottom:282.946667pt;}
.y97{bottom:286.946667pt;}
.y103{bottom:297.506667pt;}
.y107{bottom:299.200000pt;}
.yb5{bottom:301.186667pt;}
.y11c{bottom:306.946667pt;}
.y94{bottom:308.386667pt;}
.yf8{bottom:310.946667pt;}
.y41{bottom:317.506667pt;}
.y47{bottom:319.426667pt;}
.y23{bottom:319.746667pt;}
.y11b{bottom:325.346667pt;}
.yd4{bottom:325.986667pt;}
.y95{bottom:329.666667pt;}
.y11a{bottom:339.906667pt;}
.yd3{bottom:344.866667pt;}
.yb4{bottom:349.826667pt;}
.y8b{bottom:350.946667pt;}
.y40{bottom:354.306667pt;}
.y50{bottom:356.226667pt;}
.y22{bottom:356.546667pt;}
.y90{bottom:372.386667pt;}
.yd0{bottom:385.666667pt;}
.y3f{bottom:391.106667pt;}
.y4f{bottom:393.026667pt;}
.yb2{bottom:393.186667pt;}
.y1c{bottom:393.346667pt;}
.y8e{bottom:393.666667pt;}
.y8f{bottom:414.946667pt;}
.ycf{bottom:426.493333pt;}
.y3e{bottom:427.906667pt;}
.y4e{bottom:429.826667pt;}
.y21{bottom:430.146667pt;}
.y83{bottom:436.386667pt;}
.yaf{bottom:436.546667pt;}
.yce{bottom:448.893333pt;}
.y8a{bottom:457.666667pt;}
.y3d{bottom:464.706667pt;}
.y2d{bottom:466.626667pt;}
.y1b{bottom:466.946667pt;}
.ycd{bottom:471.293333pt;}
.y86{bottom:478.946667pt;}
.yad{bottom:482.626667pt;}
.ycc{bottom:493.693333pt;}
.y88{bottom:500.386667pt;}
.y3c{bottom:501.186667pt;}
.y2c{bottom:503.453333pt;}
.y1a{bottom:503.773333pt;}
.y80{bottom:521.693333pt;}
.yaa{bottom:527.613333pt;}
.yc9{bottom:534.493333pt;}
.y3b{bottom:538.013333pt;}
.y4d{bottom:540.253333pt;}
.y19{bottom:540.573333pt;}
.y7e{bottom:542.973333pt;}
.ye1{bottom:543.933333pt;}
.y66{bottom:564.413333pt;}
.ya8{bottom:572.413333pt;}
.y3a{bottom:575.133333pt;}
.yc8{bottom:575.333333pt;}
.y4c{bottom:577.053333pt;}
.y18{bottom:577.373333pt;}
.ye0{bottom:580.733333pt;}
.y77{bottom:585.693333pt;}
.y102{bottom:595.773333pt;}
.yc7{bottom:598.373333pt;}
.y5f{bottom:599.613333pt;}
.yf0{bottom:600.000000pt;}
.y7c{bottom:606.973333pt;}
.ydf{bottom:611.293333pt;}
.y39{bottom:611.933333pt;}
.y4b{bottom:613.853333pt;}
.y17{bottom:614.173333pt;}
.ya6{bottom:618.493333pt;}
.y110{bottom:620.000000pt;}
.yc6{bottom:620.773333pt;}
.y78{bottom:628.413333pt;}
.y101{bottom:632.573333pt;}
.y5e{bottom:636.413333pt;}
.y6{bottom:638.013333pt;}
.yde{bottom:641.693333pt;}
.yc3{bottom:643.973333pt;}
.y38{bottom:648.733333pt;}
.y7a{bottom:649.693333pt;}
.y4a{bottom:650.653333pt;}
.y16{bottom:650.973333pt;}
.ya4{bottom:663.453333pt;}
.y100{bottom:669.373333pt;}
.yc2{bottom:670.533333pt;}
.y70{bottom:670.973333pt;}
.ydd{bottom:672.253333pt;}
.y5d{bottom:673.213333pt;}
.y5{bottom:674.813333pt;}
.y37{bottom:685.533333pt;}
.y49{bottom:687.453333pt;}
.y15{bottom:687.773333pt;}
.y76{bottom:692.413333pt;}
.yc1{bottom:697.253333pt;}
.ydc{bottom:702.813333pt;}
.yff{bottom:706.173333pt;}
.ya0{bottom:708.413333pt;}
.y5c{bottom:710.013333pt;}
.y73{bottom:713.693333pt;}
.y36{bottom:722.333333pt;}
.y14{bottom:724.573333pt;}
.ydb{bottom:733.413333pt;}
.y75{bottom:735.013333pt;}
.yfe{bottom:743.013333pt;}
.y5b{bottom:746.853333pt;}
.yc{bottom:746.945333pt;}
.ybf{bottom:754.720000pt;}
.y68{bottom:756.453333pt;}
.y35{bottom:759.173333pt;}
.y55{bottom:761.093333pt;}
.y13{bottom:761.413333pt;}
.yda{bottom:763.813333pt;}
.yb{bottom:764.609333pt;}
.y5a{bottom:766.693333pt;}
.y6f{bottom:777.733333pt;}
.yfd{bottom:779.813333pt;}
.ya{bottom:782.273333pt;}
.y59{bottom:786.213333pt;}
.yd9{bottom:794.373333pt;}
.y34{bottom:795.973333pt;}
.y12{bottom:798.213333pt;}
.y6a{bottom:799.013333pt;}
.y9{bottom:799.937333pt;}
.yfc{bottom:816.613333pt;}
.y58{bottom:817.093333pt;}
.y8{bottom:817.601333pt;}
.y6d{bottom:820.453333pt;}
.yd8{bottom:824.933333pt;}
.y33{bottom:832.773333pt;}
.y2e{bottom:834.693333pt;}
.y11{bottom:835.013333pt;}
.y7{bottom:835.265333pt;}
.y61{bottom:842.373333pt;}
.y57{bottom:847.493333pt;}
.yfb{bottom:853.413333pt;}
.yd7{bottom:855.653333pt;}
.y4{bottom:864.453333pt;}
.y32{bottom:869.573333pt;}
.y10{bottom:871.493333pt;}
.y20{bottom:871.813333pt;}
.y56{bottom:878.053333pt;}
.yd6{bottom:885.733333pt;}
.y60{bottom:890.213333pt;}
.y9e{bottom:892.133333pt;}
.y3{bottom:904.293333pt;}
.y31{bottom:906.373333pt;}
.y54{bottom:908.293333pt;}
.y1f{bottom:908.613333pt;}
.y9d{bottom:910.533333pt;}
.yd5{bottom:915.653333pt;}
.yf{bottom:926.693333pt;}
.y53{bottom:927.013333pt;}
.y9c{bottom:937.093333pt;}
.y2{bottom:944.293333pt;}
.y30{bottom:944.773333pt;}
.ye{bottom:945.093333pt;}
.y29{bottom:945.413333pt;}
.y1d{bottom:975.680000pt;}
.yd{bottom:993.440000pt;}
.y1{bottom:994.720000pt;}
.h23{height:18.400000pt;}
.hc{height:21.280000pt;}
.h14{height:21.312000pt;}
.h10{height:21.440000pt;}
.h26{height:36.800000pt;}
.h25{height:36.832000pt;}
.h4{height:41.922560pt;}
.h11{height:42.560000pt;}
.hf{height:42.720000pt;}
.h13{height:42.752000pt;}
.h21{height:43.200000pt;}
.hb{height:43.360000pt;}
.h20{height:43.392000pt;}
.h1c{height:43.520000pt;}
.h1d{height:43.552000pt;}
.h1a{height:43.680000pt;}
.h1e{height:44.640000pt;}
.h1b{height:44.800000pt;}
.h2{height:45.051250pt;}
.h28{height:47.109375pt;}
.h29{height:47.235000pt;}
.h1f{height:47.360000pt;}
.h24{height:52.134375pt;}
.ha{height:57.375000pt;}
.h1{height:57.787500pt;}
.h6{height:58.563750pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h8{height:63.656250pt;}
.h3{height:64.500000pt;}
.h9{height:66.383438pt;}
.he{height:85.280000pt;}
.h16{height:85.312000pt;}
.h17{height:85.440000pt;}
.h12{height:85.472000pt;}
.h19{height:88.352000pt;}
.h18{height:89.440000pt;}
.h2b{height:274.400000pt;}
.hd{height:277.306667pt;}
.h15{height:277.346667pt;}
.h2c{height:288.000000pt;}
.h27{height:294.880000pt;}
.h2a{height:329.440000pt;}
.h22{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w1e{width:15.360000pt;}
.wf{width:17.600000pt;}
.w21{width:30.080000pt;}
.wa{width:50.720000pt;}
.w20{width:54.080000pt;}
.w10{width:55.680000pt;}
.wb{width:63.360000pt;}
.wd{width:63.520000pt;}
.w14{width:68.512000pt;}
.w18{width:68.992000pt;}
.w16{width:73.632000pt;}
.w12{width:75.392000pt;}
.w13{width:81.120000pt;}
.w19{width:81.440000pt;}
.w15{width:81.920000pt;}
.w17{width:82.880000pt;}
.w2{width:84.000000pt;}
.w3{width:84.032000pt;}
.w1d{width:85.920000pt;}
.w1f{width:86.112000pt;}
.w9{width:86.400000pt;}
.wc{width:88.832000pt;}
.w4{width:96.000000pt;}
.w6{width:108.032000pt;}
.w8{width:110.112000pt;}
.w7{width:113.952000pt;}
.w1c{width:115.552000pt;}
.w22{width:115.712000pt;}
.w11{width:151.066667pt;}
.we{width:157.946667pt;}
.w5{width:197.946667pt;}
.w23{width:429.026667pt;}
.w24{width:429.186667pt;}
.w26{width:563.520000pt;}
.w25{width:564.320000pt;}
.w28{width:570.880000pt;}
.w27{width:575.840000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w1b{width:1055.999984pt;}
.w1a{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x59{left:0.960000pt;}
.x43{left:4.160000pt;}
.x42{left:5.760000pt;}
.x46{left:7.680000pt;}
.x3f{left:8.800000pt;}
.x47{left:10.560000pt;}
.x48{left:11.840000pt;}
.x50{left:15.040000pt;}
.x20{left:16.480000pt;}
.x35{left:17.920000pt;}
.x22{left:19.040000pt;}
.x34{left:21.120000pt;}
.x1c{left:22.400000pt;}
.x2d{left:23.840000pt;}
.x2c{left:25.120000pt;}
.x2e{left:26.560000pt;}
.x1e{left:28.160000pt;}
.x38{left:29.920000pt;}
.x25{left:31.200000pt;}
.x31{left:32.960000pt;}
.x33{left:33.920000pt;}
.x2a{left:35.200000pt;}
.x5c{left:36.128000pt;}
.x27{left:37.120000pt;}
.x37{left:39.040000pt;}
.x4a{left:40.640000pt;}
.x2f{left:41.920000pt;}
.x30{left:43.040000pt;}
.x36{left:44.960000pt;}
.x3d{left:47.040000pt;}
.x28{left:48.000000pt;}
.x24{left:53.960000pt;}
.x32{left:55.040000pt;}
.x7{left:80.328000pt;}
.x1b{left:90.112000pt;}
.x5b{left:92.226667pt;}
.x5e{left:93.373333pt;}
.x1{left:96.032000pt;}
.x4b{left:98.080000pt;}
.x5f{left:100.960000pt;}
.x5{left:112.032000pt;}
.x2{left:116.512000pt;}
.xa{left:120.031988pt;}
.x4{left:139.066667pt;}
.x3{left:140.986667pt;}
.xe{left:144.026655pt;}
.x39{left:146.746667pt;}
.x1a{left:168.026655pt;}
.x1d{left:174.106667pt;}
.x3a{left:210.106667pt;}
.x4c{left:215.706667pt;}
.xf{left:240.026655pt;}
.x1f{left:258.146667pt;}
.x6{left:286.146667pt;}
.xd{left:290.786655pt;}
.xc{left:295.746655pt;}
.x3b{left:298.946667pt;}
.x4d{left:303.706667pt;}
.x10{left:314.786655pt;}
.x4e{left:320.986667pt;}
.x17{left:330.786655pt;}
.xb{left:336.706655pt;}
.x16{left:341.826655pt;}
.x13{left:343.426655pt;}
.x11{left:345.986655pt;}
.x19{left:352.706655pt;}
.x21{left:354.146667pt;}
.x3c{left:362.466667pt;}
.x18{left:370.786655pt;}
.x14{left:372.066655pt;}
.x9{left:376.386655pt;}
.x8{left:378.306667pt;}
.x12{left:383.106655pt;}
.x15{left:408.066655pt;}
.x4f{left:409.026667pt;}
.x49{left:437.533333pt;}
.x44{left:439.293333pt;}
.x29{left:464.253333pt;}
.x26{left:468.093333pt;}
.x51{left:497.026667pt;}
.x3e{left:521.693333pt;}
.x52{left:529.026667pt;}
.x40{left:540.733333pt;}
.x2b{left:550.653333pt;}
.x23{left:552.093333pt;}
.x41{left:597.693333pt;}
.x60{left:600.093321pt;}
.x53{left:646.813333pt;}
.x5a{left:662.053321pt;}
.x45{left:667.493333pt;}
.x5d{left:672.133321pt;}
.x54{left:734.813333pt;}
.x55{left:752.093333pt;}
.x56{left:840.133333pt;}
.x57{left:896.133333pt;}
.x58{left:928.133333pt;}
}




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