
    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_fbb36fa7c292539f8a038bd0.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_3756760d4b838fc814ff8550.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ec7bfb6b9e4ff27e713051a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3f799ac3de92a131b015d0d8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d35fce944193eaef1703f0bd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_daec10bdf8b385be80ffc4f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_afecc17025c503047987bb3b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a83d01792e76aecaae245c6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_0382e6f0b302c698aea71045.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-74.880000px;}
.v5{vertical-align:-69.120000px;}
.v4{vertical-align:-63.360000px;}
.v6{vertical-align:-38.280000px;}
.v3{vertical-align:-27.360000px;}
.v7{vertical-align:-1.260000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.226200px;}
.ls9{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.070560px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.080000px;}
.ls2{letter-spacing:16.014240px;}
.ls15{letter-spacing:16.506720px;}
.ls3{letter-spacing:29.694240px;}
.ls14{letter-spacing:43.866720px;}
.lsb{letter-spacing:46.026720px;}
.ls10{letter-spacing:238.356000px;}
.ls11{letter-spacing:252.036000px;}
.lsf{letter-spacing:290.916000px;}
.lsd{letter-spacing:964.416000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.833200px;}
.wsb{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.392000px;}
.wse{word-spacing:-12.186000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:81.174000px;}
.wsf{word-spacing:87.702000px;}
.wsc{word-spacing:587.502000px;}
._19{margin-left:-2.340240px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._3{width:2.343600px;}
._a{width:3.672000px;}
._d{width:5.561280px;}
._e{width:6.588000px;}
._6{width:7.776720px;}
._5{width:9.072000px;}
._f{width:10.392240px;}
._8{width:12.302640px;}
._10{width:13.685040px;}
._7{width:15.408000px;}
._4{width:16.650000px;}
._c{width:18.003600px;}
._b{width:19.008000px;}
._9{width:20.898000px;}
._17{width:22.103760px;}
._11{width:26.234640px;}
._12{width:27.334800px;}
._13{width:29.461680px;}
._14{width:30.638160px;}
._16{width:32.498160px;}
._15{width:33.763680px;}
._18{width:35.915760px;}
._1a{width:49.434000px;}
._1b{width:90.840000px;}
._1c{width:153.492000px;}
._2{width:1405.858320px;}
.fc4{color:rgb(17,24,39);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.515500px;}
.ya3{bottom:2.880000px;}
.yab{bottom:3.225000px;}
.yb9{bottom:3.235500px;}
.ya7{bottom:3.240000px;}
.yad{bottom:3.405000px;}
.ybb{bottom:3.415500px;}
.ya5{bottom:3.420000px;}
.y43{bottom:3.585000px;}
.y5{bottom:4.140000px;}
.y59{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4b{bottom:10.255500px;}
.y130{bottom:17.640000px;}
.y101{bottom:17.670000px;}
.y57{bottom:17.815500px;}
.y42{bottom:20.865000px;}
.y4{bottom:23.070000px;}
.y56{bottom:34.549500px;}
.y41{bottom:38.145000px;}
.y4a{bottom:40.669500px;}
.yfe{bottom:47.550000px;}
.y3{bottom:48.090000px;}
.y55{bottom:52.009500px;}
.y49{bottom:53.809500px;}
.y40{bottom:55.470000px;}
.y7{bottom:57.600000px;}
.y12a{bottom:65.085000px;}
.yfc{bottom:65.130000px;}
.y48{bottom:66.769500px;}
.y54{bottom:67.849500px;}
.y3f{bottom:72.750000px;}
.y129{bottom:80.025000px;}
.y53{bottom:80.449500px;}
.y52{bottom:86.929500px;}
.y47{bottom:88.549500px;}
.y12b{bottom:89.070000px;}
.y3e{bottom:89.850000px;}
.ybd{bottom:90.400500px;}
.y124{bottom:91.656000px;}
.y128{bottom:92.520000px;}
.y51{bottom:102.769500px;}
.y176{bottom:104.436000px;}
.yd5{bottom:105.516000px;}
.yfa{bottom:106.416000px;}
.ybc{bottom:106.600500px;}
.y3d{bottom:107.130000px;}
.y123{bottom:108.936000px;}
.yfd{bottom:110.445000px;}
.y12c{bottom:113.010000px;}
.y127{bottom:114.090000px;}
.y44{bottom:117.220500px;}
.y50{bottom:118.429500px;}
.y175{bottom:121.716000px;}
.yba{bottom:122.800500px;}
.yd4{bottom:123.156000px;}
.yf9{bottom:123.336000px;}
.y3c{bottom:124.410000px;}
.y122{bottom:126.216000px;}
.y140{bottom:131.616000px;}
.y4f{bottom:133.909500px;}
.y100{bottom:136.620000px;}
.y12d{bottom:136.950000px;}
.y91{bottom:137.916000px;}
.y174{bottom:138.996000px;}
.yb8{bottom:139.180500px;}
.yf8{bottom:140.616000px;}
.y3b{bottom:141.690000px;}
.y121{bottom:143.316000px;}
.y126{bottom:147.600000px;}
.y13f{bottom:148.896000px;}
.y4e{bottom:149.389500px;}
.y46{bottom:150.829500px;}
.yff{bottom:153.180000px;}
.yb7{bottom:155.385000px;}
.y173{bottom:156.090000px;}
.y90{bottom:156.630000px;}
.yf7{bottom:157.710000px;}
.y3a{bottom:158.970000px;}
.y120{bottom:160.590000px;}
.y45{bottom:161.269500px;}
.y12f{bottom:162.930000px;}
.y4d{bottom:164.509500px;}
.y13e{bottom:165.810000px;}
.yb6{bottom:171.765000px;}
.y172{bottom:173.370000px;}
.y8f{bottom:173.910000px;}
.y39{bottom:176.250000px;}
.y12e{bottom:177.690000px;}
.y11f{bottom:177.870000px;}
.y13d{bottom:183.450000px;}
.yb5{bottom:187.965000px;}
.y171{bottom:190.650000px;}
.y8e{bottom:191.190000px;}
.y38{bottom:193.350000px;}
.ye4{bottom:193.890000px;}
.y11e{bottom:195.150000px;}
.y13c{bottom:200.370000px;}
.yb4{bottom:204.165000px;}
.y170{bottom:207.930000px;}
.y8d{bottom:208.470000px;}
.y37{bottom:210.630000px;}
.ye3{bottom:211.170000px;}
.y11d{bottom:212.430000px;}
.y13b{bottom:214.230000px;}
.yb3{bottom:220.545000px;}
.y16f{bottom:225.210000px;}
.y8c{bottom:226.110000px;}
.y36{bottom:227.910000px;}
.ye2{bottom:228.090000px;}
.y11c{bottom:229.710000px;}
.yb2{bottom:236.745000px;}
.y16e{bottom:242.310000px;}
.y8b{bottom:243.210000px;}
.y35{bottom:245.190000px;}
.ye1{bottom:245.730000px;}
.y11b{bottom:246.810000px;}
.y21{bottom:248.790000px;}
.yb1{bottom:253.125000px;}
.y16d{bottom:259.590000px;}
.y8a{bottom:260.670000px;}
.y34{bottom:262.470000px;}
.ye0{bottom:262.650000px;}
.y11a{bottom:264.090000px;}
.yb0{bottom:269.325000px;}
.y20{bottom:272.910000px;}
.y16c{bottom:276.870000px;}
.y89{bottom:278.310000px;}
.ydf{bottom:279.750000px;}
.y33{bottom:280.290000px;}
.yaf{bottom:285.525000px;}
.y16b{bottom:294.150000px;}
.y88{bottom:295.410000px;}
.y32{bottom:295.590000px;}
.y1f{bottom:297.030000px;}
.yde{bottom:297.390000px;}
.yae{bottom:301.905000px;}
.y13{bottom:308.565000px;}
.y31{bottom:311.100000px;}
.y16a{bottom:311.430000px;}
.y87{bottom:312.690000px;}
.ydd{bottom:314.670000px;}
.yac{bottom:318.105000px;}
.yd3{bottom:318.810000px;}
.y1e{bottom:321.180000px;}
.y30{bottom:326.760000px;}
.y169{bottom:329.070000px;}
.y86{bottom:329.970000px;}
.ydc{bottom:331.950000px;}
.yaa{bottom:334.485000px;}
.yd2{bottom:335.550000px;}
.y2f{bottom:342.240000px;}
.y1d{bottom:345.300000px;}
.y168{bottom:346.350000px;}
.y85{bottom:347.250000px;}
.ydb{bottom:348.870000px;}
.ya9{bottom:350.715000px;}
.yd1{bottom:352.875000px;}
.y2e{bottom:357.720000px;}
.y167{bottom:363.675000px;}
.y84{bottom:364.575000px;}
.yda{bottom:366.015000px;}
.ya8{bottom:367.095000px;}
.y1c{bottom:369.600000px;}
.yd0{bottom:370.155000px;}
.y2d{bottom:373.200000px;}
.y166{bottom:380.955000px;}
.y83{bottom:381.855000px;}
.ya6{bottom:383.295000px;}
.ycf{bottom:387.435000px;}
.y2c{bottom:388.860000px;}
.yf6{bottom:388.875000px;}
.y1b{bottom:393.720000px;}
.y165{bottom:398.055000px;}
.y82{bottom:398.955000px;}
.ya4{bottom:399.495000px;}
.y2b{bottom:404.340000px;}
.yf5{bottom:406.155000px;}
.y164{bottom:415.335000px;}
.y81{bottom:415.875000px;}
.y1a{bottom:417.840000px;}
.y2a{bottom:419.820000px;}
.yf4{bottom:423.255000px;}
.y163{bottom:432.615000px;}
.y80{bottom:433.515000px;}
.y29{bottom:435.300000px;}
.ya2{bottom:435.855000px;}
.yf3{bottom:440.175000px;}
.y19{bottom:441.960000px;}
.y13a{bottom:443.055000px;}
.y162{bottom:449.895000px;}
.y7f{bottom:450.795000px;}
.y28{bottom:450.960000px;}
.ya1{bottom:453.135000px;}
.yf2{bottom:457.815000px;}
.y139{bottom:460.155000px;}
.y18{bottom:466.080000px;}
.y27{bottom:466.440000px;}
.y161{bottom:467.175000px;}
.y7e{bottom:468.075000px;}
.ya0{bottom:470.415000px;}
.yf1{bottom:474.735000px;}
.y138{bottom:477.435000px;}
.y26{bottom:481.920000px;}
.y160{bottom:484.455000px;}
.y7d{bottom:485.355000px;}
.y9f{bottom:487.155000px;}
.y17{bottom:490.200000px;}
.y119{bottom:490.575000px;}
.yf0{bottom:492.015000px;}
.y25{bottom:497.400000px;}
.y15f{bottom:501.555000px;}
.y7c{bottom:502.635000px;}
.y9e{bottom:504.795000px;}
.y118{bottom:507.855000px;}
.y24{bottom:513.060000px;}
.y16{bottom:514.500000px;}
.y15e{bottom:518.835000px;}
.y7b{bottom:520.275000px;}
.y9d{bottom:522.075000px;}
.y117{bottom:524.775000px;}
.y23{bottom:528.540000px;}
.y15d{bottom:536.115000px;}
.y7a{bottom:537.375000px;}
.y15{bottom:538.620000px;}
.y9c{bottom:539.355000px;}
.y116{bottom:542.055000px;}
.y15c{bottom:553.395000px;}
.y79{bottom:554.655000px;}
.y9b{bottom:556.275000px;}
.yfb{bottom:558.000000px;}
.y115{bottom:559.335000px;}
.y22{bottom:559.860000px;}
.y14{bottom:562.785000px;}
.yd9{bottom:570.675000px;}
.y15b{bottom:571.035000px;}
.y78{bottom:571.935000px;}
.y114{bottom:576.615000px;}
.y15a{bottom:588.315000px;}
.y77{bottom:589.215000px;}
.y113{bottom:593.715000px;}
.yce{bottom:595.335000px;}
.y159{bottom:605.595000px;}
.y76{bottom:606.495000px;}
.y112{bottom:611.025000px;}
.ycd{bottom:612.645000px;}
.y158{bottom:622.905000px;}
.y75{bottom:623.805000px;}
.y111{bottom:628.305000px;}
.ycc{bottom:629.745000px;}
.y157{bottom:640.005000px;}
.y74{bottom:640.905000px;}
.y110{bottom:645.585000px;}
.ycb{bottom:646.665000px;}
.y156{bottom:657.285000px;}
.y73{bottom:658.185000px;}
.y186{bottom:658.725000px;}
.y10f{bottom:662.865000px;}
.yca{bottom:664.305000px;}
.y155{bottom:674.565000px;}
.y72{bottom:675.465000px;}
.y185{bottom:676.005000px;}
.y10e{bottom:679.965000px;}
.yc9{bottom:681.225000px;}
.y154{bottom:691.845000px;}
.y71{bottom:692.745000px;}
.y184{bottom:693.105000px;}
.y10d{bottom:697.245000px;}
.yc8{bottom:698.505000px;}
.y137{bottom:706.065000px;}
.y153{bottom:709.125000px;}
.y70{bottom:710.025000px;}
.y183{bottom:710.385000px;}
.y10c{bottom:714.525000px;}
.yc7{bottom:716.145000px;}
.y136{bottom:723.345000px;}
.yef{bottom:724.785000px;}
.y152{bottom:726.405000px;}
.y6f{bottom:727.305000px;}
.y182{bottom:727.665000px;}
.y10b{bottom:732.165000px;}
.yc6{bottom:733.245000px;}
.y135{bottom:740.985000px;}
.yee{bottom:741.705000px;}
.y151{bottom:744.045000px;}
.y6e{bottom:744.405000px;}
.y181{bottom:744.945000px;}
.y10a{bottom:749.445000px;}
.yc5{bottom:750.525000px;}
.y9a{bottom:755.205000px;}
.y134{bottom:758.085000px;}
.yed{bottom:759.345000px;}
.y150{bottom:761.325000px;}
.y6d{bottom:761.685000px;}
.y180{bottom:762.225000px;}
.y109{bottom:766.365000px;}
.yc4{bottom:767.445000px;}
.y99{bottom:772.125000px;}
.y133{bottom:775.365000px;}
.yec{bottom:776.625000px;}
.y14f{bottom:778.605000px;}
.y6c{bottom:778.965000px;}
.y17f{bottom:779.505000px;}
.y108{bottom:783.465000px;}
.yc3{bottom:785.085000px;}
.y98{bottom:789.585000px;}
.y132{bottom:792.285000px;}
.yeb{bottom:793.545000px;}
.y14e{bottom:795.705000px;}
.y6b{bottom:796.245000px;}
.y17e{bottom:796.605000px;}
.y107{bottom:801.105000px;}
.yc2{bottom:802.365000px;}
.y97{bottom:806.865000px;}
.y131{bottom:809.925000px;}
.yea{bottom:810.825000px;}
.y14d{bottom:812.985000px;}
.y6a{bottom:813.525000px;}
.y17d{bottom:813.885000px;}
.y106{bottom:818.385000px;}
.y96{bottom:823.785000px;}
.ye9{bottom:828.285000px;}
.y14c{bottom:830.265000px;}
.y69{bottom:830.805000px;}
.y17c{bottom:831.165000px;}
.y105{bottom:835.665000px;}
.ye8{bottom:845.565000px;}
.y14b{bottom:847.545000px;}
.y68{bottom:847.905000px;}
.y17b{bottom:848.445000px;}
.y104{bottom:852.585000px;}
.y95{bottom:858.705000px;}
.ye7{bottom:862.845000px;}
.y14a{bottom:864.825000px;}
.y67{bottom:865.185000px;}
.y17a{bottom:865.725000px;}
.y103{bottom:869.865000px;}
.ye6{bottom:879.810000px;}
.y149{bottom:882.150000px;}
.y66{bottom:882.510000px;}
.y179{bottom:882.870000px;}
.y12{bottom:883.410000px;}
.y102{bottom:883.770000px;}
.y125{bottom:886.140000px;}
.y11{bottom:886.830000px;}
.y10{bottom:897.270000px;}
.ye5{bottom:897.450000px;}
.y65{bottom:899.790000px;}
.y178{bottom:900.150000px;}
.yf{bottom:914.370000px;}
.y148{bottom:917.070000px;}
.y64{bottom:917.430000px;}
.ye{bottom:931.650000px;}
.y147{bottom:934.170000px;}
.y63{bottom:934.710000px;}
.y146{bottom:951.450000px;}
.y62{bottom:951.990000px;}
.yd{bottom:955.770000px;}
.y145{bottom:968.730000px;}
.y177{bottom:968.910000px;}
.y61{bottom:969.270000px;}
.yc{bottom:973.050000px;}
.yb{bottom:983.130000px;}
.yd8{bottom:986.010000px;}
.y60{bottom:986.370000px;}
.y144{bottom:1003.290000px;}
.y5f{bottom:1003.650000px;}
.ya{bottom:1019.490000px;}
.yd7{bottom:1020.570000px;}
.y5e{bottom:1020.930000px;}
.y143{bottom:1037.670000px;}
.yd6{bottom:1037.850000px;}
.y5d{bottom:1038.210000px;}
.yc1{bottom:1038.390000px;}
.y9{bottom:1043.430000px;}
.yc0{bottom:1054.590000px;}
.y142{bottom:1054.950000px;}
.y94{bottom:1055.130000px;}
.y5c{bottom:1055.490000px;}
.ybf{bottom:1070.970000px;}
.y8{bottom:1071.870000px;}
.y141{bottom:1072.230000px;}
.y93{bottom:1072.410000px;}
.y5b{bottom:1072.770000px;}
.y58{bottom:1075.320000px;}
.ybe{bottom:1087.170000px;}
.y92{bottom:1089.510000px;}
.y5a{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.650313px;}
.hd{height:5.653125px;}
.h1b{height:15.465000px;}
.h1f{height:15.475500px;}
.h21{height:15.480000px;}
.h1e{height:15.501000px;}
.h1c{height:15.645000px;}
.h20{height:15.655500px;}
.h17{height:27.540000px;}
.hc{height:29.678906px;}
.ha{height:38.158594px;}
.h10{height:40.985156px;}
.h19{height:41.726953px;}
.hf{height:42.086250px;}
.h12{height:44.507812px;}
.h26{height:47.980898px;}
.h11{height:52.971680px;}
.h1d{height:52.998047px;}
.h23{height:53.709961px;}
.h15{height:54.421875px;}
.h7{height:57.324375px;}
.h24{height:58.621992px;}
.h6{height:58.651172px;}
.h13{height:59.439023px;}
.hb{height:60.226875px;}
.h1a{height:61.423863px;}
.h18{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h22{height:177.300000px;}
.h14{height:190.435500px;}
.h25{height:200.160000px;}
.he{height:572.310000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:71.265000px;}
.wb{width:86.205000px;}
.wa{width:86.241000px;}
.w9{width:86.565000px;}
.w8{width:86.601000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.wc{width:299.415000px;}
.w7{width:371.415000px;}
.wf{width:396.720000px;}
.we{width:471.960000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:6.876000px;}
.x1a{left:8.100000px;}
.x26{left:9.900000px;}
.x4{left:12.780000px;}
.x25{left:16.740000px;}
.x6{left:18.720000px;}
.x18{left:19.980000px;}
.x2e{left:27.795000px;}
.x17{left:29.520000px;}
.x11{left:43.740000px;}
.x1c{left:47.700000px;}
.x12{left:50.760000px;}
.x10{left:55.080000px;}
.x28{left:59.070000px;}
.x16{left:67.134000px;}
.x15{left:73.254000px;}
.x14{left:75.234000px;}
.x1{left:78.327000px;}
.x2d{left:83.910000px;}
.x9{left:86.436000px;}
.x2{left:95.763000px;}
.x2f{left:101.625000px;}
.x1d{left:102.774000px;}
.x1b{left:106.734000px;}
.x27{left:112.035000px;}
.x1f{left:113.436000px;}
.x13{left:124.554000px;}
.x30{left:134.130000px;}
.x5{left:141.345000px;}
.x20{left:173.910000px;}
.x3{left:182.370000px;}
.x24{left:207.360000px;}
.x29{left:212.115000px;}
.x19{left:219.090000px;}
.x2c{left:227.955000px;}
.x2b{left:247.320000px;}
.xb{left:459.285000px;}
.xc{left:465.945000px;}
.x23{left:474.060000px;}
.xa{left:486.645000px;}
.x21{left:545.700000px;}
.xf{left:561.705000px;}
.xe{left:612.510000px;}
.x22{left:632.670000px;}
.x2a{left:645.810000px;}
.xd{left:655.890000px;}
.x31{left:659.310000px;}
.x8{left:766.080000px;}
.x7{left:784.440000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v5{vertical-align:-61.440000pt;}
.v4{vertical-align:-56.320000pt;}
.v6{vertical-align:-34.026667pt;}
.v3{vertical-align:-24.320000pt;}
.v7{vertical-align:-1.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.062720pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls2{letter-spacing:14.234880pt;}
.ls15{letter-spacing:14.672640pt;}
.ls3{letter-spacing:26.394880pt;}
.ls14{letter-spacing:38.992640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls10{letter-spacing:211.872000pt;}
.ls11{letter-spacing:224.032000pt;}
.lsf{letter-spacing:258.592000pt;}
.lsd{letter-spacing:857.258667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.240000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.320000pt;}
.ws7{word-spacing:-11.904000pt;}
.wse{word-spacing:-10.832000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:72.154667pt;}
.wsf{word-spacing:77.957333pt;}
.wsc{word-spacing:522.224000pt;}
._19{margin-left:-2.080213pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._3{width:2.083200pt;}
._a{width:3.264000pt;}
._d{width:4.943360pt;}
._e{width:5.856000pt;}
._6{width:6.912640pt;}
._5{width:8.064000pt;}
._f{width:9.237547pt;}
._8{width:10.935680pt;}
._10{width:12.164480pt;}
._7{width:13.696000pt;}
._4{width:14.800000pt;}
._c{width:16.003200pt;}
._b{width:16.896000pt;}
._9{width:18.576000pt;}
._17{width:19.647787pt;}
._11{width:23.319680pt;}
._12{width:24.297600pt;}
._13{width:26.188160pt;}
._14{width:27.233920pt;}
._16{width:28.887253pt;}
._15{width:30.012160pt;}
._18{width:31.925120pt;}
._1a{width:43.941333pt;}
._1b{width:80.746667pt;}
._1c{width:136.437333pt;}
._2{width:1249.651840pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.236000pt;}
.ya3{bottom:2.560000pt;}
.yab{bottom:2.866667pt;}
.yb9{bottom:2.876000pt;}
.ya7{bottom:2.880000pt;}
.yad{bottom:3.026667pt;}
.ybb{bottom:3.036000pt;}
.ya5{bottom:3.040000pt;}
.y43{bottom:3.186667pt;}
.y5{bottom:3.680000pt;}
.y59{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4b{bottom:9.116000pt;}
.y130{bottom:15.680000pt;}
.y101{bottom:15.706667pt;}
.y57{bottom:15.836000pt;}
.y42{bottom:18.546667pt;}
.y4{bottom:20.506667pt;}
.y56{bottom:30.710667pt;}
.y41{bottom:33.906667pt;}
.y4a{bottom:36.150667pt;}
.yfe{bottom:42.266667pt;}
.y3{bottom:42.746667pt;}
.y55{bottom:46.230667pt;}
.y49{bottom:47.830667pt;}
.y40{bottom:49.306667pt;}
.y7{bottom:51.200000pt;}
.y12a{bottom:57.853333pt;}
.yfc{bottom:57.893333pt;}
.y48{bottom:59.350667pt;}
.y54{bottom:60.310667pt;}
.y3f{bottom:64.666667pt;}
.y129{bottom:71.133333pt;}
.y53{bottom:71.510667pt;}
.y52{bottom:77.270667pt;}
.y47{bottom:78.710667pt;}
.y12b{bottom:79.173333pt;}
.y3e{bottom:79.866667pt;}
.ybd{bottom:80.356000pt;}
.y124{bottom:81.472000pt;}
.y128{bottom:82.240000pt;}
.y51{bottom:91.350667pt;}
.y176{bottom:92.832000pt;}
.yd5{bottom:93.792000pt;}
.yfa{bottom:94.592000pt;}
.ybc{bottom:94.756000pt;}
.y3d{bottom:95.226667pt;}
.y123{bottom:96.832000pt;}
.yfd{bottom:98.173333pt;}
.y12c{bottom:100.453333pt;}
.y127{bottom:101.413333pt;}
.y44{bottom:104.196000pt;}
.y50{bottom:105.270667pt;}
.y175{bottom:108.192000pt;}
.yba{bottom:109.156000pt;}
.yd4{bottom:109.472000pt;}
.yf9{bottom:109.632000pt;}
.y3c{bottom:110.586667pt;}
.y122{bottom:112.192000pt;}
.y140{bottom:116.992000pt;}
.y4f{bottom:119.030667pt;}
.y100{bottom:121.440000pt;}
.y12d{bottom:121.733333pt;}
.y91{bottom:122.592000pt;}
.y174{bottom:123.552000pt;}
.yb8{bottom:123.716000pt;}
.yf8{bottom:124.992000pt;}
.y3b{bottom:125.946667pt;}
.y121{bottom:127.392000pt;}
.y126{bottom:131.200000pt;}
.y13f{bottom:132.352000pt;}
.y4e{bottom:132.790667pt;}
.y46{bottom:134.070667pt;}
.yff{bottom:136.160000pt;}
.yb7{bottom:138.120000pt;}
.y173{bottom:138.746667pt;}
.y90{bottom:139.226667pt;}
.yf7{bottom:140.186667pt;}
.y3a{bottom:141.306667pt;}
.y120{bottom:142.746667pt;}
.y45{bottom:143.350667pt;}
.y12f{bottom:144.826667pt;}
.y4d{bottom:146.230667pt;}
.y13e{bottom:147.386667pt;}
.yb6{bottom:152.680000pt;}
.y172{bottom:154.106667pt;}
.y8f{bottom:154.586667pt;}
.y39{bottom:156.666667pt;}
.y12e{bottom:157.946667pt;}
.y11f{bottom:158.106667pt;}
.y13d{bottom:163.066667pt;}
.yb5{bottom:167.080000pt;}
.y171{bottom:169.466667pt;}
.y8e{bottom:169.946667pt;}
.y38{bottom:171.866667pt;}
.ye4{bottom:172.346667pt;}
.y11e{bottom:173.466667pt;}
.y13c{bottom:178.106667pt;}
.yb4{bottom:181.480000pt;}
.y170{bottom:184.826667pt;}
.y8d{bottom:185.306667pt;}
.y37{bottom:187.226667pt;}
.ye3{bottom:187.706667pt;}
.y11d{bottom:188.826667pt;}
.y13b{bottom:190.426667pt;}
.yb3{bottom:196.040000pt;}
.y16f{bottom:200.186667pt;}
.y8c{bottom:200.986667pt;}
.y36{bottom:202.586667pt;}
.ye2{bottom:202.746667pt;}
.y11c{bottom:204.186667pt;}
.yb2{bottom:210.440000pt;}
.y16e{bottom:215.386667pt;}
.y8b{bottom:216.186667pt;}
.y35{bottom:217.946667pt;}
.ye1{bottom:218.426667pt;}
.y11b{bottom:219.386667pt;}
.y21{bottom:221.146667pt;}
.yb1{bottom:225.000000pt;}
.y16d{bottom:230.746667pt;}
.y8a{bottom:231.706667pt;}
.y34{bottom:233.306667pt;}
.ye0{bottom:233.466667pt;}
.y11a{bottom:234.746667pt;}
.yb0{bottom:239.400000pt;}
.y20{bottom:242.586667pt;}
.y16c{bottom:246.106667pt;}
.y89{bottom:247.386667pt;}
.ydf{bottom:248.666667pt;}
.y33{bottom:249.146667pt;}
.yaf{bottom:253.800000pt;}
.y16b{bottom:261.466667pt;}
.y88{bottom:262.586667pt;}
.y32{bottom:262.746667pt;}
.y1f{bottom:264.026667pt;}
.yde{bottom:264.346667pt;}
.yae{bottom:268.360000pt;}
.y13{bottom:274.280000pt;}
.y31{bottom:276.533333pt;}
.y16a{bottom:276.826667pt;}
.y87{bottom:277.946667pt;}
.ydd{bottom:279.706667pt;}
.yac{bottom:282.760000pt;}
.yd3{bottom:283.386667pt;}
.y1e{bottom:285.493333pt;}
.y30{bottom:290.453333pt;}
.y169{bottom:292.506667pt;}
.y86{bottom:293.306667pt;}
.ydc{bottom:295.066667pt;}
.yaa{bottom:297.320000pt;}
.yd2{bottom:298.266667pt;}
.y2f{bottom:304.213333pt;}
.y1d{bottom:306.933333pt;}
.y168{bottom:307.866667pt;}
.y85{bottom:308.666667pt;}
.ydb{bottom:310.106667pt;}
.ya9{bottom:311.746667pt;}
.yd1{bottom:313.666667pt;}
.y2e{bottom:317.973333pt;}
.y167{bottom:323.266667pt;}
.y84{bottom:324.066667pt;}
.yda{bottom:325.346667pt;}
.ya8{bottom:326.306667pt;}
.y1c{bottom:328.533333pt;}
.yd0{bottom:329.026667pt;}
.y2d{bottom:331.733333pt;}
.y166{bottom:338.626667pt;}
.y83{bottom:339.426667pt;}
.ya6{bottom:340.706667pt;}
.ycf{bottom:344.386667pt;}
.y2c{bottom:345.653333pt;}
.yf6{bottom:345.666667pt;}
.y1b{bottom:349.973333pt;}
.y165{bottom:353.826667pt;}
.y82{bottom:354.626667pt;}
.ya4{bottom:355.106667pt;}
.y2b{bottom:359.413333pt;}
.yf5{bottom:361.026667pt;}
.y164{bottom:369.186667pt;}
.y81{bottom:369.666667pt;}
.y1a{bottom:371.413333pt;}
.y2a{bottom:373.173333pt;}
.yf4{bottom:376.226667pt;}
.y163{bottom:384.546667pt;}
.y80{bottom:385.346667pt;}
.y29{bottom:386.933333pt;}
.ya2{bottom:387.426667pt;}
.yf3{bottom:391.266667pt;}
.y19{bottom:392.853333pt;}
.y13a{bottom:393.826667pt;}
.y162{bottom:399.906667pt;}
.y7f{bottom:400.706667pt;}
.y28{bottom:400.853333pt;}
.ya1{bottom:402.786667pt;}
.yf2{bottom:406.946667pt;}
.y139{bottom:409.026667pt;}
.y18{bottom:414.293333pt;}
.y27{bottom:414.613333pt;}
.y161{bottom:415.266667pt;}
.y7e{bottom:416.066667pt;}
.ya0{bottom:418.146667pt;}
.yf1{bottom:421.986667pt;}
.y138{bottom:424.386667pt;}
.y26{bottom:428.373333pt;}
.y160{bottom:430.626667pt;}
.y7d{bottom:431.426667pt;}
.y9f{bottom:433.026667pt;}
.y17{bottom:435.733333pt;}
.y119{bottom:436.066667pt;}
.yf0{bottom:437.346667pt;}
.y25{bottom:442.133333pt;}
.y15f{bottom:445.826667pt;}
.y7c{bottom:446.786667pt;}
.y9e{bottom:448.706667pt;}
.y118{bottom:451.426667pt;}
.y24{bottom:456.053333pt;}
.y16{bottom:457.333333pt;}
.y15e{bottom:461.186667pt;}
.y7b{bottom:462.466667pt;}
.y9d{bottom:464.066667pt;}
.y117{bottom:466.466667pt;}
.y23{bottom:469.813333pt;}
.y15d{bottom:476.546667pt;}
.y7a{bottom:477.666667pt;}
.y15{bottom:478.773333pt;}
.y9c{bottom:479.426667pt;}
.y116{bottom:481.826667pt;}
.y15c{bottom:491.906667pt;}
.y79{bottom:493.026667pt;}
.y9b{bottom:494.466667pt;}
.yfb{bottom:496.000000pt;}
.y115{bottom:497.186667pt;}
.y22{bottom:497.653333pt;}
.y14{bottom:500.253333pt;}
.yd9{bottom:507.266667pt;}
.y15b{bottom:507.586667pt;}
.y78{bottom:508.386667pt;}
.y114{bottom:512.546667pt;}
.y15a{bottom:522.946667pt;}
.y77{bottom:523.746667pt;}
.y113{bottom:527.746667pt;}
.yce{bottom:529.186667pt;}
.y159{bottom:538.306667pt;}
.y76{bottom:539.106667pt;}
.y112{bottom:543.133333pt;}
.ycd{bottom:544.573333pt;}
.y158{bottom:553.693333pt;}
.y75{bottom:554.493333pt;}
.y111{bottom:558.493333pt;}
.ycc{bottom:559.773333pt;}
.y157{bottom:568.893333pt;}
.y74{bottom:569.693333pt;}
.y110{bottom:573.853333pt;}
.ycb{bottom:574.813333pt;}
.y156{bottom:584.253333pt;}
.y73{bottom:585.053333pt;}
.y186{bottom:585.533333pt;}
.y10f{bottom:589.213333pt;}
.yca{bottom:590.493333pt;}
.y155{bottom:599.613333pt;}
.y72{bottom:600.413333pt;}
.y185{bottom:600.893333pt;}
.y10e{bottom:604.413333pt;}
.yc9{bottom:605.533333pt;}
.y154{bottom:614.973333pt;}
.y71{bottom:615.773333pt;}
.y184{bottom:616.093333pt;}
.y10d{bottom:619.773333pt;}
.yc8{bottom:620.893333pt;}
.y137{bottom:627.613333pt;}
.y153{bottom:630.333333pt;}
.y70{bottom:631.133333pt;}
.y183{bottom:631.453333pt;}
.y10c{bottom:635.133333pt;}
.yc7{bottom:636.573333pt;}
.y136{bottom:642.973333pt;}
.yef{bottom:644.253333pt;}
.y152{bottom:645.693333pt;}
.y6f{bottom:646.493333pt;}
.y182{bottom:646.813333pt;}
.y10b{bottom:650.813333pt;}
.yc6{bottom:651.773333pt;}
.y135{bottom:658.653333pt;}
.yee{bottom:659.293333pt;}
.y151{bottom:661.373333pt;}
.y6e{bottom:661.693333pt;}
.y181{bottom:662.173333pt;}
.y10a{bottom:666.173333pt;}
.yc5{bottom:667.133333pt;}
.y9a{bottom:671.293333pt;}
.y134{bottom:673.853333pt;}
.yed{bottom:674.973333pt;}
.y150{bottom:676.733333pt;}
.y6d{bottom:677.053333pt;}
.y180{bottom:677.533333pt;}
.y109{bottom:681.213333pt;}
.yc4{bottom:682.173333pt;}
.y99{bottom:686.333333pt;}
.y133{bottom:689.213333pt;}
.yec{bottom:690.333333pt;}
.y14f{bottom:692.093333pt;}
.y6c{bottom:692.413333pt;}
.y17f{bottom:692.893333pt;}
.y108{bottom:696.413333pt;}
.yc3{bottom:697.853333pt;}
.y98{bottom:701.853333pt;}
.y132{bottom:704.253333pt;}
.yeb{bottom:705.373333pt;}
.y14e{bottom:707.293333pt;}
.y6b{bottom:707.773333pt;}
.y17e{bottom:708.093333pt;}
.y107{bottom:712.093333pt;}
.yc2{bottom:713.213333pt;}
.y97{bottom:717.213333pt;}
.y131{bottom:719.933333pt;}
.yea{bottom:720.733333pt;}
.y14d{bottom:722.653333pt;}
.y6a{bottom:723.133333pt;}
.y17d{bottom:723.453333pt;}
.y106{bottom:727.453333pt;}
.y96{bottom:732.253333pt;}
.ye9{bottom:736.253333pt;}
.y14c{bottom:738.013333pt;}
.y69{bottom:738.493333pt;}
.y17c{bottom:738.813333pt;}
.y105{bottom:742.813333pt;}
.ye8{bottom:751.613333pt;}
.y14b{bottom:753.373333pt;}
.y68{bottom:753.693333pt;}
.y17b{bottom:754.173333pt;}
.y104{bottom:757.853333pt;}
.y95{bottom:763.293333pt;}
.ye7{bottom:766.973333pt;}
.y14a{bottom:768.733333pt;}
.y67{bottom:769.053333pt;}
.y17a{bottom:769.533333pt;}
.y103{bottom:773.213333pt;}
.ye6{bottom:782.053333pt;}
.y149{bottom:784.133333pt;}
.y66{bottom:784.453333pt;}
.y179{bottom:784.773333pt;}
.y12{bottom:785.253333pt;}
.y102{bottom:785.573333pt;}
.y125{bottom:787.680000pt;}
.y11{bottom:788.293333pt;}
.y10{bottom:797.573333pt;}
.ye5{bottom:797.733333pt;}
.y65{bottom:799.813333pt;}
.y178{bottom:800.133333pt;}
.yf{bottom:812.773333pt;}
.y148{bottom:815.173333pt;}
.y64{bottom:815.493333pt;}
.ye{bottom:828.133333pt;}
.y147{bottom:830.373333pt;}
.y63{bottom:830.853333pt;}
.y146{bottom:845.733333pt;}
.y62{bottom:846.213333pt;}
.yd{bottom:849.573333pt;}
.y145{bottom:861.093333pt;}
.y177{bottom:861.253333pt;}
.y61{bottom:861.573333pt;}
.yc{bottom:864.933333pt;}
.yb{bottom:873.893333pt;}
.yd8{bottom:876.453333pt;}
.y60{bottom:876.773333pt;}
.y144{bottom:891.813333pt;}
.y5f{bottom:892.133333pt;}
.ya{bottom:906.213333pt;}
.yd7{bottom:907.173333pt;}
.y5e{bottom:907.493333pt;}
.y143{bottom:922.373333pt;}
.yd6{bottom:922.533333pt;}
.y5d{bottom:922.853333pt;}
.yc1{bottom:923.013333pt;}
.y9{bottom:927.493333pt;}
.yc0{bottom:937.413333pt;}
.y142{bottom:937.733333pt;}
.y94{bottom:937.893333pt;}
.y5c{bottom:938.213333pt;}
.ybf{bottom:951.973333pt;}
.y8{bottom:952.773333pt;}
.y141{bottom:953.093333pt;}
.y93{bottom:953.253333pt;}
.y5b{bottom:953.573333pt;}
.y58{bottom:955.840000pt;}
.ybe{bottom:966.373333pt;}
.y92{bottom:968.453333pt;}
.y5a{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h16{height:5.022500pt;}
.hd{height:5.025000pt;}
.h1b{height:13.746667pt;}
.h1f{height:13.756000pt;}
.h21{height:13.760000pt;}
.h1e{height:13.778667pt;}
.h1c{height:13.906667pt;}
.h20{height:13.916000pt;}
.h17{height:24.480000pt;}
.hc{height:26.381250pt;}
.ha{height:33.918750pt;}
.h10{height:36.431250pt;}
.h19{height:37.090625pt;}
.hf{height:37.410000pt;}
.h12{height:39.562500pt;}
.h26{height:42.649687pt;}
.h11{height:47.085938pt;}
.h1d{height:47.109375pt;}
.h23{height:47.742188pt;}
.h15{height:48.375000pt;}
.h7{height:50.955000pt;}
.h24{height:52.108438pt;}
.h6{height:52.134375pt;}
.h13{height:52.834688pt;}
.hb{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h18{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h22{height:157.600000pt;}
.h14{height:169.276000pt;}
.h25{height:177.920000pt;}
.he{height:508.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:63.346667pt;}
.wb{width:76.626667pt;}
.wa{width:76.658667pt;}
.w9{width:76.946667pt;}
.w8{width:76.978667pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.wc{width:266.146667pt;}
.w7{width:330.146667pt;}
.wf{width:352.640000pt;}
.we{width:419.520000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.112000pt;}
.x1a{left:7.200000pt;}
.x26{left:8.800000pt;}
.x4{left:11.360000pt;}
.x25{left:14.880000pt;}
.x6{left:16.640000pt;}
.x18{left:17.760000pt;}
.x2e{left:24.706667pt;}
.x17{left:26.240000pt;}
.x11{left:38.880000pt;}
.x1c{left:42.400000pt;}
.x12{left:45.120000pt;}
.x10{left:48.960000pt;}
.x28{left:52.506667pt;}
.x16{left:59.674667pt;}
.x15{left:65.114667pt;}
.x14{left:66.874667pt;}
.x1{left:69.624000pt;}
.x2d{left:74.586667pt;}
.x9{left:76.832000pt;}
.x2{left:85.122667pt;}
.x2f{left:90.333333pt;}
.x1d{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x27{left:99.586667pt;}
.x1f{left:100.832000pt;}
.x13{left:110.714667pt;}
.x30{left:119.226667pt;}
.x5{left:125.640000pt;}
.x20{left:154.586667pt;}
.x3{left:162.106667pt;}
.x24{left:184.320000pt;}
.x29{left:188.546667pt;}
.x19{left:194.746667pt;}
.x2c{left:202.626667pt;}
.x2b{left:219.840000pt;}
.xb{left:408.253333pt;}
.xc{left:414.173333pt;}
.x23{left:421.386667pt;}
.xa{left:432.573333pt;}
.x21{left:485.066667pt;}
.xf{left:499.293333pt;}
.xe{left:544.453333pt;}
.x22{left:562.373333pt;}
.x2a{left:574.053333pt;}
.xd{left:583.013333pt;}
.x31{left:586.053333pt;}
.x8{left:680.960000pt;}
.x7{left:697.280000pt;}
}




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