
    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_81986dddc61dbeb675b89e83.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_5a75f7c1aa5dc74d5321f9f9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6003f2c0dbd03642d3115ce8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d3dff0cdb5ecd45afc8a38a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_5b67154b56385248db075f5f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_a98fcd583d22b9519a7f1ac3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_eedb4d972b75e6728dc43998.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_5a0a7140ea4ec07072a2d926.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_876e2ec81961cbd2d0ffa30d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9e3d8348bb128ccbd9a2cec7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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_6193fc93719873dbca485474.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_993719575207a831d4713374.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.ls18{letter-spacing:-1.980000px;}
.ls15{letter-spacing:-1.386000px;}
.ls12{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.226200px;}
.lsf{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.064800px;}
.lsc{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.186600px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.493800px;}
.ls19{letter-spacing:1.080000px;}
.ls10{letter-spacing:2.340000px;}
.ls2{letter-spacing:3.780000px;}
.ls13{letter-spacing:33.984000px;}
.ls14{letter-spacing:43.344000px;}
.ls11{letter-spacing:44.784000px;}
.ls1a{letter-spacing:46.026720px;}
.ls0{letter-spacing:599.885760px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.wse{word-spacing:-54.000000px;}
.ws16{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.328000px;}
.ws7{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.692360px;}
.ws15{word-spacing:-13.554000px;}
.wsf{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.440960px;}
.wsd{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.933800px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.wsc{word-spacing:-8.928000px;}
.ws14{word-spacing:-0.072000px;}
.ws10{word-spacing:0.000000px;}
._b{margin-left:-2.106000px;}
._0{margin-left:-1.093680px;}
._1{width:1.314720px;}
._a{width:2.753280px;}
._4{width:3.834720px;}
._3{width:4.914000px;}
._2{width:6.156000px;}
._9{width:7.776000px;}
._8{width:9.072000px;}
._10{width:10.259280px;}
._6{width:11.340000px;}
._5{width:12.420000px;}
._f{width:13.431360px;}
._7{width:15.066000px;}
._11{width:16.092000px;}
._e{width:17.449920px;}
._13{width:19.959840px;}
._d{width:21.095280px;}
._c{width:22.350240px;}
._12{width:186.120000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:1.800000px;}
.y66{bottom:2.880000px;}
.y50{bottom:3.060000px;}
.y5{bottom:3.780000px;}
.y69{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y65{bottom:18.540000px;}
.y4f{bottom:18.900000px;}
.y4{bottom:22.710000px;}
.y64{bottom:34.020000px;}
.y4e{bottom:36.000000px;}
.y59{bottom:38.340000px;}
.y58{bottom:46.980000px;}
.y3{bottom:47.910000px;}
.y63{bottom:51.840000px;}
.y4d{bottom:53.280000px;}
.y57{bottom:56.160000px;}
.y56{bottom:66.780000px;}
.y62{bottom:67.320000px;}
.y4c{bottom:70.560000px;}
.yb{bottom:71.820000px;}
.y55{bottom:78.840000px;}
.y61{bottom:82.800000px;}
.y4b{bottom:87.840000px;}
.y54{bottom:90.900000px;}
.y2d{bottom:97.740000px;}
.y60{bottom:100.620000px;}
.y4a{bottom:105.120000px;}
.ya{bottom:105.696000px;}
.y5f{bottom:116.100000px;}
.y2c{bottom:119.880000px;}
.y49{bottom:122.220000px;}
.y9{bottom:124.596000px;}
.y5e{bottom:131.580000px;}
.y2b{bottom:133.740000px;}
.y48{bottom:139.500000px;}
.y67{bottom:143.676000px;}
.yfb{bottom:144.576000px;}
.y9f{bottom:145.656000px;}
.y5d{bottom:147.240000px;}
.y2a{bottom:147.600000px;}
.y53{bottom:151.920000px;}
.ycf{bottom:156.450000px;}
.y47{bottom:156.780000px;}
.y51{bottom:158.430000px;}
.y29{bottom:161.460000px;}
.y52{bottom:161.640000px;}
.y5c{bottom:162.720000px;}
.yfa{bottom:162.930000px;}
.y9e{bottom:163.830000px;}
.y46{bottom:174.060000px;}
.yce{bottom:174.630000px;}
.y28{bottom:175.320000px;}
.y5b{bottom:178.200000px;}
.yf9{bottom:180.210000px;}
.y9d{bottom:182.010000px;}
.y27{bottom:189.180000px;}
.y45{bottom:191.340000px;}
.ycd{bottom:192.810000px;}
.y124{bottom:196.410000px;}
.yf8{bottom:197.490000px;}
.y9c{bottom:200.370000px;}
.y26{bottom:203.040000px;}
.y44{bottom:208.620000px;}
.ycc{bottom:211.170000px;}
.yf7{bottom:214.770000px;}
.y25{bottom:216.900000px;}
.y9b{bottom:218.550000px;}
.y43{bottom:225.720000px;}
.ycb{bottom:229.350000px;}
.y24{bottom:230.940000px;}
.yf6{bottom:231.870000px;}
.y123{bottom:232.590000px;}
.y9a{bottom:236.730000px;}
.y42{bottom:243.000000px;}
.y23{bottom:244.800000px;}
.yca{bottom:247.530000px;}
.yf5{bottom:249.150000px;}
.y22{bottom:249.480000px;}
.y122{bottom:250.590000px;}
.y99{bottom:255.090000px;}
.y41{bottom:260.310000px;}
.yc9{bottom:265.710000px;}
.yf4{bottom:267.510000px;}
.y121{bottom:268.410000px;}
.y98{bottom:273.270000px;}
.y21{bottom:273.630000px;}
.y40{bottom:278.670000px;}
.yc8{bottom:284.070000px;}
.yf3{bottom:284.790000px;}
.y120{bottom:286.410000px;}
.y97{bottom:291.450000px;}
.y3f{bottom:296.670000px;}
.y20{bottom:297.750000px;}
.yf2{bottom:302.070000px;}
.yc7{bottom:302.250000px;}
.y11f{bottom:304.230000px;}
.y96{bottom:308.730000px;}
.y3e{bottom:312.150000px;}
.yf1{bottom:320.250000px;}
.yc6{bottom:320.430000px;}
.y1f{bottom:321.870000px;}
.y11e{bottom:322.230000px;}
.y95{bottom:325.830000px;}
.y3d{bottom:327.630000px;}
.yf0{bottom:338.250000px;}
.yc5{bottom:339.690000px;}
.y11d{bottom:340.095000px;}
.y94{bottom:343.155000px;}
.y3c{bottom:343.290000px;}
.y1e{bottom:346.170000px;}
.y14{bottom:349.995000px;}
.yc4{bottom:357.015000px;}
.y11c{bottom:357.915000px;}
.y3b{bottom:358.770000px;}
.yef{bottom:359.175000px;}
.y93{bottom:360.435000px;}
.y1d{bottom:370.290000px;}
.y3a{bottom:374.250000px;}
.yc3{bottom:374.295000px;}
.y11b{bottom:375.915000px;}
.y92{bottom:378.795000px;}
.yee{bottom:380.055000px;}
.y39{bottom:389.730000px;}
.yc2{bottom:391.575000px;}
.y11a{bottom:393.735000px;}
.y1c{bottom:394.410000px;}
.y91{bottom:396.075000px;}
.yed{bottom:400.935000px;}
.y38{bottom:405.210000px;}
.yc1{bottom:408.855000px;}
.y119{bottom:411.735000px;}
.y90{bottom:413.355000px;}
.y1b{bottom:418.530000px;}
.y37{bottom:420.870000px;}
.yec{bottom:420.915000px;}
.yc0{bottom:426.135000px;}
.y118{bottom:429.555000px;}
.y8f{bottom:431.535000px;}
.y36{bottom:436.350000px;}
.yeb{bottom:438.195000px;}
.y1a{bottom:442.650000px;}
.ybf{bottom:443.415000px;}
.y117{bottom:447.555000px;}
.y8e{bottom:448.815000px;}
.y35{bottom:451.830000px;}
.yea{bottom:456.555000px;}
.ybe{bottom:463.395000px;}
.y116{bottom:464.835000px;}
.y8d{bottom:466.095000px;}
.y19{bottom:466.770000px;}
.y34{bottom:467.310000px;}
.ye9{bottom:473.835000px;}
.ybd{bottom:480.675000px;}
.y115{bottom:481.935000px;}
.y33{bottom:482.970000px;}
.y8c{bottom:484.455000px;}
.y18{bottom:490.890000px;}
.ye8{bottom:491.115000px;}
.ybc{bottom:497.775000px;}
.y32{bottom:498.450000px;}
.y114{bottom:499.215000px;}
.y8b{bottom:501.735000px;}
.ye7{bottom:508.395000px;}
.y31{bottom:513.930000px;}
.ybb{bottom:515.055000px;}
.y17{bottom:515.190000px;}
.y113{bottom:516.495000px;}
.y8a{bottom:519.015000px;}
.ye6{bottom:525.495000px;}
.y30{bottom:529.455000px;}
.yba{bottom:532.335000px;}
.y112{bottom:533.775000px;}
.y89{bottom:537.375000px;}
.y16{bottom:539.355000px;}
.ye5{bottom:543.855000px;}
.y2f{bottom:545.115000px;}
.yb9{bottom:549.615000px;}
.y111{bottom:551.055000px;}
.y88{bottom:554.655000px;}
.y2e{bottom:560.595000px;}
.ye4{bottom:562.215000px;}
.y15{bottom:563.475000px;}
.y110{bottom:568.155000px;}
.yb8{bottom:570.675000px;}
.y87{bottom:571.755000px;}
.ye3{bottom:580.215000px;}
.y10f{bottom:585.435000px;}
.yb7{bottom:587.955000px;}
.y86{bottom:590.115000px;}
.ye2{bottom:599.295000px;}
.y10e{bottom:602.715000px;}
.yb6{bottom:605.265000px;}
.y85{bottom:607.425000px;}
.ye1{bottom:618.225000px;}
.y10d{bottom:620.025000px;}
.yb5{bottom:622.545000px;}
.y84{bottom:624.705000px;}
.ye0{bottom:637.305000px;}
.yb4{bottom:639.825000px;}
.y83{bottom:641.985000px;}
.ydf{bottom:655.665000px;}
.yb3{bottom:658.005000px;}
.y82{bottom:660.345000px;}
.yde{bottom:672.945000px;}
.yb2{bottom:675.285000px;}
.y81{bottom:677.625000px;}
.y10c{bottom:690.045000px;}
.ydd{bottom:691.125000px;}
.yb1{bottom:692.565000px;}
.y80{bottom:694.725000px;}
.y10b{bottom:707.505000px;}
.ydc{bottom:708.405000px;}
.yb0{bottom:709.845000px;}
.y7f{bottom:712.005000px;}
.ydb{bottom:725.685000px;}
.y10a{bottom:727.485000px;}
.yaf{bottom:728.205000px;}
.y7e{bottom:729.285000px;}
.yda{bottom:742.965000px;}
.y109{bottom:744.585000px;}
.yae{bottom:745.485000px;}
.y7d{bottom:746.565000px;}
.yd9{bottom:760.245000px;}
.y108{bottom:761.865000px;}
.yad{bottom:762.765000px;}
.y7c{bottom:763.845000px;}
.yd8{bottom:778.425000px;}
.y107{bottom:779.145000px;}
.yac{bottom:779.865000px;}
.y7b{bottom:781.125000px;}
.yd7{bottom:795.705000px;}
.y7a{bottom:798.225000px;}
.y106{bottom:799.125000px;}
.yd6{bottom:810.825000px;}
.y79{bottom:815.505000px;}
.y105{bottom:816.585000px;}
.y78{bottom:833.865000px;}
.y104{bottom:836.565000px;}
.yab{bottom:851.145000px;}
.y77{bottom:852.225000px;}
.y103{bottom:853.665000px;}
.y76{bottom:869.550000px;}
.y102{bottom:871.710000px;}
.yaa{bottom:886.830000px;}
.y75{bottom:887.910000px;}
.y101{bottom:892.950000px;}
.ya9{bottom:903.930000px;}
.y74{bottom:905.190000px;}
.y100{bottom:910.230000px;}
.ya8{bottom:921.210000px;}
.y73{bottom:922.290000px;}
.yff{bottom:928.230000px;}
.y13{bottom:928.590000px;}
.ya7{bottom:938.490000px;}
.y72{bottom:940.650000px;}
.y12{bottom:945.870000px;}
.yfe{bottom:948.930000px;}
.ya6{bottom:955.770000px;}
.y71{bottom:959.010000px;}
.y11{bottom:963.150000px;}
.yfd{bottom:969.810000px;}
.ya5{bottom:974.130000px;}
.y70{bottom:976.290000px;}
.y10{bottom:980.430000px;}
.yd5{bottom:988.530000px;}
.yfc{bottom:990.690000px;}
.ya4{bottom:991.410000px;}
.y6f{bottom:993.570000px;}
.yf{bottom:997.710000px;}
.yd4{bottom:1006.890000px;}
.ya3{bottom:1008.690000px;}
.y6e{bottom:1010.850000px;}
.ye{bottom:1014.990000px;}
.yd3{bottom:1024.170000px;}
.ya2{bottom:1025.790000px;}
.y6d{bottom:1028.130000px;}
.yd{bottom:1033.710000px;}
.yd2{bottom:1042.350000px;}
.ya1{bottom:1044.150000px;}
.y6c{bottom:1045.230000px;}
.yd1{bottom:1060.710000px;}
.ya0{bottom:1061.430000px;}
.yc{bottom:1062.330000px;}
.y6b{bottom:1062.510000px;}
.y68{bottom:1065.600000px;}
.yd0{bottom:1078.890000px;}
.y6a{bottom:1079.790000px;}
.y8{bottom:1106.070000px;}
.y7{bottom:1120.110000px;}
.y6{bottom:1122.090000px;}
.y1{bottom:1123.530000px;}
.he{height:4.021875px;}
.h6{height:5.729063px;}
.h14{height:21.114844px;}
.h13{height:25.136719px;}
.h15{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h11{height:37.705078px;}
.h8{height:40.132617px;}
.h10{height:41.159180px;}
.h7{height:41.726953px;}
.ha{height:42.164648px;}
.h1a{height:43.506914px;}
.hf{height:43.822266px;}
.h5{height:46.251562px;}
.h17{height:52.417969px;}
.h18{height:59.439023px;}
.h19{height:61.189805px;}
.h16{height:64.002656px;}
.h9{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:190.830000px;}
.hb{height:573.195000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x17{left:18.180000px;}
.x6{left:19.260000px;}
.x11{left:25.560000px;}
.x12{left:28.980000px;}
.x10{left:31.140000px;}
.x16{left:37.260000px;}
.x15{left:40.320000px;}
.x14{left:42.480000px;}
.x1c{left:47.340000px;}
.x1d{left:56.700000px;}
.x1a{left:62.145000px;}
.x13{left:65.874000px;}
.x1{left:78.300000px;}
.x7{left:86.435987px;}
.x2{left:95.790000px;}
.x1b{left:106.374000px;}
.x21{left:113.435987px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x1f{left:194.429987px;}
.x18{left:218.370000px;}
.xd{left:394.094987px;}
.xb{left:493.664987px;}
.xc{left:521.024987px;}
.xe{left:560.624987px;}
.xa{left:615.209987px;}
.x20{left:647.609987px;}
.x9{left:766.049987px;}
.x8{left:784.439987px;}
.xf{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.760000pt;}
.ls15{letter-spacing:-1.232000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.201067pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.057600pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.165867pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.438933pt;}
.ls19{letter-spacing:0.960000pt;}
.ls10{letter-spacing:2.080000pt;}
.ls2{letter-spacing:3.360000pt;}
.ls13{letter-spacing:30.208000pt;}
.ls14{letter-spacing:38.528000pt;}
.ls11{letter-spacing:39.808000pt;}
.ls1a{letter-spacing:40.912640pt;}
.ls0{letter-spacing:533.231787pt;}
.ws12{word-spacing:-53.120000pt;}
.wse{word-spacing:-48.000000pt;}
.ws16{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws13{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.736000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.170987pt;}
.ws15{word-spacing:-12.048000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.947520pt;}
.wsd{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.718933pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.wsc{word-spacing:-7.936000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws10{word-spacing:0.000000pt;}
._b{margin-left:-1.872000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.168640pt;}
._a{width:2.447360pt;}
._4{width:3.408640pt;}
._3{width:4.368000pt;}
._2{width:5.472000pt;}
._9{width:6.912000pt;}
._8{width:8.064000pt;}
._10{width:9.119360pt;}
._6{width:10.080000pt;}
._5{width:11.040000pt;}
._f{width:11.938987pt;}
._7{width:13.392000pt;}
._11{width:14.304000pt;}
._e{width:15.511040pt;}
._13{width:17.742080pt;}
._d{width:18.751360pt;}
._c{width:19.866880pt;}
._12{width:165.440000pt;}
.fs2{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:1.600000pt;}
.y66{bottom:2.560000pt;}
.y50{bottom:2.720000pt;}
.y5{bottom:3.360000pt;}
.y69{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y65{bottom:16.480000pt;}
.y4f{bottom:16.800000pt;}
.y4{bottom:20.186667pt;}
.y64{bottom:30.240000pt;}
.y4e{bottom:32.000000pt;}
.y59{bottom:34.080000pt;}
.y58{bottom:41.760000pt;}
.y3{bottom:42.586667pt;}
.y63{bottom:46.080000pt;}
.y4d{bottom:47.360000pt;}
.y57{bottom:49.920000pt;}
.y56{bottom:59.360000pt;}
.y62{bottom:59.840000pt;}
.y4c{bottom:62.720000pt;}
.yb{bottom:63.840000pt;}
.y55{bottom:70.080000pt;}
.y61{bottom:73.600000pt;}
.y4b{bottom:78.080000pt;}
.y54{bottom:80.800000pt;}
.y2d{bottom:86.880000pt;}
.y60{bottom:89.440000pt;}
.y4a{bottom:93.440000pt;}
.ya{bottom:93.952000pt;}
.y5f{bottom:103.200000pt;}
.y2c{bottom:106.560000pt;}
.y49{bottom:108.640000pt;}
.y9{bottom:110.752000pt;}
.y5e{bottom:116.960000pt;}
.y2b{bottom:118.880000pt;}
.y48{bottom:124.000000pt;}
.y67{bottom:127.712000pt;}
.yfb{bottom:128.512000pt;}
.y9f{bottom:129.472000pt;}
.y5d{bottom:130.880000pt;}
.y2a{bottom:131.200000pt;}
.y53{bottom:135.040000pt;}
.ycf{bottom:139.066667pt;}
.y47{bottom:139.360000pt;}
.y51{bottom:140.826667pt;}
.y29{bottom:143.520000pt;}
.y52{bottom:143.680000pt;}
.y5c{bottom:144.640000pt;}
.yfa{bottom:144.826667pt;}
.y9e{bottom:145.626667pt;}
.y46{bottom:154.720000pt;}
.yce{bottom:155.226667pt;}
.y28{bottom:155.840000pt;}
.y5b{bottom:158.400000pt;}
.yf9{bottom:160.186667pt;}
.y9d{bottom:161.786667pt;}
.y27{bottom:168.160000pt;}
.y45{bottom:170.080000pt;}
.ycd{bottom:171.386667pt;}
.y124{bottom:174.586667pt;}
.yf8{bottom:175.546667pt;}
.y9c{bottom:178.106667pt;}
.y26{bottom:180.480000pt;}
.y44{bottom:185.440000pt;}
.ycc{bottom:187.706667pt;}
.yf7{bottom:190.906667pt;}
.y25{bottom:192.800000pt;}
.y9b{bottom:194.266667pt;}
.y43{bottom:200.640000pt;}
.ycb{bottom:203.866667pt;}
.y24{bottom:205.280000pt;}
.yf6{bottom:206.106667pt;}
.y123{bottom:206.746667pt;}
.y9a{bottom:210.426667pt;}
.y42{bottom:216.000000pt;}
.y23{bottom:217.600000pt;}
.yca{bottom:220.026667pt;}
.yf5{bottom:221.466667pt;}
.y22{bottom:221.760000pt;}
.y122{bottom:222.746667pt;}
.y99{bottom:226.746667pt;}
.y41{bottom:231.386667pt;}
.yc9{bottom:236.186667pt;}
.yf4{bottom:237.786667pt;}
.y121{bottom:238.586667pt;}
.y98{bottom:242.906667pt;}
.y21{bottom:243.226667pt;}
.y40{bottom:247.706667pt;}
.yc8{bottom:252.506667pt;}
.yf3{bottom:253.146667pt;}
.y120{bottom:254.586667pt;}
.y97{bottom:259.066667pt;}
.y3f{bottom:263.706667pt;}
.y20{bottom:264.666667pt;}
.yf2{bottom:268.506667pt;}
.yc7{bottom:268.666667pt;}
.y11f{bottom:270.426667pt;}
.y96{bottom:274.426667pt;}
.y3e{bottom:277.466667pt;}
.yf1{bottom:284.666667pt;}
.yc6{bottom:284.826667pt;}
.y1f{bottom:286.106667pt;}
.y11e{bottom:286.426667pt;}
.y95{bottom:289.626667pt;}
.y3d{bottom:291.226667pt;}
.yf0{bottom:300.666667pt;}
.yc5{bottom:301.946667pt;}
.y11d{bottom:302.306667pt;}
.y94{bottom:305.026667pt;}
.y3c{bottom:305.146667pt;}
.y1e{bottom:307.706667pt;}
.y14{bottom:311.106667pt;}
.yc4{bottom:317.346667pt;}
.y11c{bottom:318.146667pt;}
.y3b{bottom:318.906667pt;}
.yef{bottom:319.266667pt;}
.y93{bottom:320.386667pt;}
.y1d{bottom:329.146667pt;}
.y3a{bottom:332.666667pt;}
.yc3{bottom:332.706667pt;}
.y11b{bottom:334.146667pt;}
.y92{bottom:336.706667pt;}
.yee{bottom:337.826667pt;}
.y39{bottom:346.426667pt;}
.yc2{bottom:348.066667pt;}
.y11a{bottom:349.986667pt;}
.y1c{bottom:350.586667pt;}
.y91{bottom:352.066667pt;}
.yed{bottom:356.386667pt;}
.y38{bottom:360.186667pt;}
.yc1{bottom:363.426667pt;}
.y119{bottom:365.986667pt;}
.y90{bottom:367.426667pt;}
.y1b{bottom:372.026667pt;}
.y37{bottom:374.106667pt;}
.yec{bottom:374.146667pt;}
.yc0{bottom:378.786667pt;}
.y118{bottom:381.826667pt;}
.y8f{bottom:383.586667pt;}
.y36{bottom:387.866667pt;}
.yeb{bottom:389.506667pt;}
.y1a{bottom:393.466667pt;}
.ybf{bottom:394.146667pt;}
.y117{bottom:397.826667pt;}
.y8e{bottom:398.946667pt;}
.y35{bottom:401.626667pt;}
.yea{bottom:405.826667pt;}
.ybe{bottom:411.906667pt;}
.y116{bottom:413.186667pt;}
.y8d{bottom:414.306667pt;}
.y19{bottom:414.906667pt;}
.y34{bottom:415.386667pt;}
.ye9{bottom:421.186667pt;}
.ybd{bottom:427.266667pt;}
.y115{bottom:428.386667pt;}
.y33{bottom:429.306667pt;}
.y8c{bottom:430.626667pt;}
.y18{bottom:436.346667pt;}
.ye8{bottom:436.546667pt;}
.ybc{bottom:442.466667pt;}
.y32{bottom:443.066667pt;}
.y114{bottom:443.746667pt;}
.y8b{bottom:445.986667pt;}
.ye7{bottom:451.906667pt;}
.y31{bottom:456.826667pt;}
.ybb{bottom:457.826667pt;}
.y17{bottom:457.946667pt;}
.y113{bottom:459.106667pt;}
.y8a{bottom:461.346667pt;}
.ye6{bottom:467.106667pt;}
.y30{bottom:470.626667pt;}
.yba{bottom:473.186667pt;}
.y112{bottom:474.466667pt;}
.y89{bottom:477.666667pt;}
.y16{bottom:479.426667pt;}
.ye5{bottom:483.426667pt;}
.y2f{bottom:484.546667pt;}
.yb9{bottom:488.546667pt;}
.y111{bottom:489.826667pt;}
.y88{bottom:493.026667pt;}
.y2e{bottom:498.306667pt;}
.ye4{bottom:499.746667pt;}
.y15{bottom:500.866667pt;}
.y110{bottom:505.026667pt;}
.yb8{bottom:507.266667pt;}
.y87{bottom:508.226667pt;}
.ye3{bottom:515.746667pt;}
.y10f{bottom:520.386667pt;}
.yb7{bottom:522.626667pt;}
.y86{bottom:524.546667pt;}
.ye2{bottom:532.706667pt;}
.y10e{bottom:535.746667pt;}
.yb6{bottom:538.013333pt;}
.y85{bottom:539.933333pt;}
.ye1{bottom:549.533333pt;}
.y10d{bottom:551.133333pt;}
.yb5{bottom:553.373333pt;}
.y84{bottom:555.293333pt;}
.ye0{bottom:566.493333pt;}
.yb4{bottom:568.733333pt;}
.y83{bottom:570.653333pt;}
.ydf{bottom:582.813333pt;}
.yb3{bottom:584.893333pt;}
.y82{bottom:586.973333pt;}
.yde{bottom:598.173333pt;}
.yb2{bottom:600.253333pt;}
.y81{bottom:602.333333pt;}
.y10c{bottom:613.373333pt;}
.ydd{bottom:614.333333pt;}
.yb1{bottom:615.613333pt;}
.y80{bottom:617.533333pt;}
.y10b{bottom:628.893333pt;}
.ydc{bottom:629.693333pt;}
.yb0{bottom:630.973333pt;}
.y7f{bottom:632.893333pt;}
.ydb{bottom:645.053333pt;}
.y10a{bottom:646.653333pt;}
.yaf{bottom:647.293333pt;}
.y7e{bottom:648.253333pt;}
.yda{bottom:660.413333pt;}
.y109{bottom:661.853333pt;}
.yae{bottom:662.653333pt;}
.y7d{bottom:663.613333pt;}
.yd9{bottom:675.773333pt;}
.y108{bottom:677.213333pt;}
.yad{bottom:678.013333pt;}
.y7c{bottom:678.973333pt;}
.yd8{bottom:691.933333pt;}
.y107{bottom:692.573333pt;}
.yac{bottom:693.213333pt;}
.y7b{bottom:694.333333pt;}
.yd7{bottom:707.293333pt;}
.y7a{bottom:709.533333pt;}
.y106{bottom:710.333333pt;}
.yd6{bottom:720.733333pt;}
.y79{bottom:724.893333pt;}
.y105{bottom:725.853333pt;}
.y78{bottom:741.213333pt;}
.y104{bottom:743.613333pt;}
.yab{bottom:756.573333pt;}
.y77{bottom:757.533333pt;}
.y103{bottom:758.813333pt;}
.y76{bottom:772.933333pt;}
.y102{bottom:774.853333pt;}
.yaa{bottom:788.293333pt;}
.y75{bottom:789.253333pt;}
.y101{bottom:793.733333pt;}
.ya9{bottom:803.493333pt;}
.y74{bottom:804.613333pt;}
.y100{bottom:809.093333pt;}
.ya8{bottom:818.853333pt;}
.y73{bottom:819.813333pt;}
.yff{bottom:825.093333pt;}
.y13{bottom:825.413333pt;}
.ya7{bottom:834.213333pt;}
.y72{bottom:836.133333pt;}
.y12{bottom:840.773333pt;}
.yfe{bottom:843.493333pt;}
.ya6{bottom:849.573333pt;}
.y71{bottom:852.453333pt;}
.y11{bottom:856.133333pt;}
.yfd{bottom:862.053333pt;}
.ya5{bottom:865.893333pt;}
.y70{bottom:867.813333pt;}
.y10{bottom:871.493333pt;}
.yd5{bottom:878.693333pt;}
.yfc{bottom:880.613333pt;}
.ya4{bottom:881.253333pt;}
.y6f{bottom:883.173333pt;}
.yf{bottom:886.853333pt;}
.yd4{bottom:895.013333pt;}
.ya3{bottom:896.613333pt;}
.y6e{bottom:898.533333pt;}
.ye{bottom:902.213333pt;}
.yd3{bottom:910.373333pt;}
.ya2{bottom:911.813333pt;}
.y6d{bottom:913.893333pt;}
.yd{bottom:918.853333pt;}
.yd2{bottom:926.533333pt;}
.ya1{bottom:928.133333pt;}
.y6c{bottom:929.093333pt;}
.yd1{bottom:942.853333pt;}
.ya0{bottom:943.493333pt;}
.yc{bottom:944.293333pt;}
.y6b{bottom:944.453333pt;}
.y68{bottom:947.200000pt;}
.yd0{bottom:959.013333pt;}
.y6a{bottom:959.813333pt;}
.y8{bottom:983.173333pt;}
.y7{bottom:995.653333pt;}
.y6{bottom:997.413333pt;}
.y1{bottom:998.693333pt;}
.he{height:3.575000pt;}
.h6{height:5.092500pt;}
.h14{height:18.768750pt;}
.h13{height:22.343750pt;}
.h15{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h11{height:33.515625pt;}
.h8{height:35.673437pt;}
.h10{height:36.585938pt;}
.h7{height:37.090625pt;}
.ha{height:37.479688pt;}
.h1a{height:38.672812pt;}
.hf{height:38.953125pt;}
.h5{height:41.112500pt;}
.h17{height:46.593750pt;}
.h18{height:52.834688pt;}
.h19{height:54.390938pt;}
.h16{height:56.891250pt;}
.h9{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:169.626667pt;}
.hb{height:509.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x17{left:16.160000pt;}
.x6{left:17.120000pt;}
.x11{left:22.720000pt;}
.x12{left:25.760000pt;}
.x10{left:27.680000pt;}
.x16{left:33.120000pt;}
.x15{left:35.840000pt;}
.x14{left:37.760000pt;}
.x1c{left:42.080000pt;}
.x1d{left:50.400000pt;}
.x1a{left:55.240000pt;}
.x13{left:58.554667pt;}
.x1{left:69.600000pt;}
.x7{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1b{left:94.554667pt;}
.x21{left:100.831988pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x1f{left:172.826655pt;}
.x18{left:194.106667pt;}
.xd{left:350.306655pt;}
.xb{left:438.813322pt;}
.xc{left:463.133322pt;}
.xe{left:498.333322pt;}
.xa{left:546.853322pt;}
.x20{left:575.653322pt;}
.x9{left:680.933322pt;}
.x8{left:697.279988pt;}
.xf{left:717.279988pt;}
}




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