
    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_fde73d9776d54a1d4e027415.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1a56891a1950b5d5179136d5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1f98caaa6d44391ffb604ef.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_231aa92e8d39cb68898f09d3.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_9ce3aee45fe7b64aec10690c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_92f6c87964a6a5469bb0e8a8.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_0630ec191e87f5c799d2eba1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_168b8e49a827ba14d548edad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.060547;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_bdc3835993b2263a0751518b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060547;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_b16faedac6c4b1ed450ce933.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;}
.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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:27.540000px;}
.v4{vertical-align:31.680000px;}
.v6{vertical-align:59.220000px;}
.lse{letter-spacing:-9.900000px;}
.lsf{letter-spacing:-2.520000px;}
.ls10{letter-spacing:-1.800000px;}
.ls1a{letter-spacing:-0.804000px;}
.ls22{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.249000px;}
.ls25{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.191400px;}
.ls1e{letter-spacing:-0.174000px;}
.ls23{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.085200px;}
.ls1c{letter-spacing:-0.082200px;}
.ls9{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.292200px;}
.ls20{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.738000px;}
.ls7{letter-spacing:1.589760px;}
.ls6{letter-spacing:1.620000px;}
.ls24{letter-spacing:2.340000px;}
.ls4{letter-spacing:8.100000px;}
.ls15{letter-spacing:10.872000px;}
.ls14{letter-spacing:15.102000px;}
.ls16{letter-spacing:22.848480px;}
.ls27{letter-spacing:25.308000px;}
.ls26{letter-spacing:52.668000px;}
.ls17{letter-spacing:54.882000px;}
.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:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.112000px;}
.wsf{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.824000px;}
.ws9{word-spacing:-13.626000px;}
.ws5{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.392000px;}
.ws14{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.980000px;}
.wsc{word-spacing:-10.905000px;}
.wse{word-spacing:-10.612800px;}
.wsb{word-spacing:-10.527600px;}
.wsd{word-spacing:-9.808800px;}
.ws3{word-spacing:-9.000000px;}
.ws12{word-spacing:-8.856000px;}
.ws11{word-spacing:-8.280000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._1{width:1.162560px;}
._7{width:2.563680px;}
._b{width:3.855120px;}
._c{width:5.357760px;}
._6{width:6.500880px;}
._5{width:8.152560px;}
._d{width:9.342000px;}
._9{width:10.962000px;}
._a{width:12.138000px;}
._8{width:15.102000px;}
._10{width:16.135440px;}
._11{width:17.442000px;}
._16{width:19.440000px;}
._17{width:20.844000px;}
._15{width:23.040000px;}
._f{width:24.426000px;}
._e{width:25.542000px;}
._22{width:27.340560px;}
._13{width:28.350000px;}
._14{width:30.231120px;}
._1a{width:31.802880px;}
._1c{width:32.971680px;}
._1f{width:34.700640px;}
._1d{width:36.594000px;}
._1e{width:37.600560px;}
._28{width:39.114000px;}
._12{width:40.338000px;}
._2a{width:42.984000px;}
._20{width:44.820000px;}
._21{width:45.955440px;}
._18{width:47.358000px;}
._19{width:48.439440px;}
._29{width:54.054000px;}
._25{width:55.692000px;}
._24{width:61.560000px;}
._27{width:67.878000px;}
._26{width:68.958000px;}
._1b{width:109.249200px;}
._23{width:858.456000px;}
._2{width:1625.460000px;}
._3{width:1927.132800px;}
.fc7{color:rgb(0,112,192);}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.yc3{bottom:-12.615000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:2.865000px;}
.yc7{bottom:3.045000px;}
.yc9{bottom:3.225000px;}
.ycd{bottom:3.240000px;}
.ycf{bottom:3.420000px;}
.y28{bottom:5.565000px;}
.y24{bottom:5.580000px;}
.ydf{bottom:5.760000px;}
.yd7{bottom:6.840000px;}
.yd5{bottom:7.380000px;}
.ye0{bottom:14.580000px;}
.yc5{bottom:18.345000px;}
.yd9{bottom:18.360000px;}
.y27{bottom:23.430000px;}
.yde{bottom:23.580000px;}
.y23{bottom:29.340000px;}
.y26{bottom:41.430000px;}
.y22{bottom:47.340000px;}
.y3e{bottom:58.500000px;}
.y21{bottom:65.160000px;}
.y7{bottom:76.860000px;}
.y107{bottom:78.840000px;}
.y20{bottom:82.980000px;}
.y8a{bottom:83.340000px;}
.y193{bottom:84.420000px;}
.y12e{bottom:84.780000px;}
.y15b{bottom:88.740000px;}
.y6d{bottom:90.900000px;}
.yd1{bottom:93.600000px;}
.y106{bottom:96.660000px;}
.y1f{bottom:100.800000px;}
.y89{bottom:101.160000px;}
.y192{bottom:102.420000px;}
.y12d{bottom:102.600000px;}
.y105{bottom:114.480000px;}
.y6c{bottom:114.660000px;}
.yd0{bottom:115.560000px;}
.y1e{bottom:118.620000px;}
.y38{bottom:118.980000px;}
.y88{bottom:119.160000px;}
.y15a{bottom:120.060000px;}
.y191{bottom:120.240000px;}
.y12c{bottom:120.420000px;}
.y104{bottom:132.480000px;}
.y1d{bottom:136.620000px;}
.y37{bottom:136.800000px;}
.y159{bottom:137.880000px;}
.y190{bottom:138.060000px;}
.y12b{bottom:138.420000px;}
.y6b{bottom:138.960000px;}
.y87{bottom:142.920000px;}
.y103{bottom:150.300000px;}
.y1c{bottom:154.440000px;}
.y36{bottom:154.620000px;}
.y158{bottom:155.700000px;}
.y18f{bottom:155.880000px;}
.yce{bottom:156.240000px;}
.y6a{bottom:156.780000px;}
.y102{bottom:168.120000px;}
.y86{bottom:168.840000px;}
.y1b{bottom:172.260000px;}
.y35{bottom:172.440000px;}
.y157{bottom:173.700000px;}
.y12a{bottom:174.060000px;}
.y69{bottom:174.600000px;}
.y85{bottom:175.680000px;}
.y101{bottom:185.940000px;}
.y1a{bottom:190.080000px;}
.y34{bottom:190.260000px;}
.y156{bottom:191.520000px;}
.y18e{bottom:191.700000px;}
.y129{bottom:191.880000px;}
.y68{bottom:192.420000px;}
.ycc{bottom:196.920000px;}
.y100{bottom:203.760000px;}
.y84{bottom:203.940000px;}
.y19{bottom:207.930000px;}
.y33{bottom:208.290000px;}
.y155{bottom:209.370000px;}
.y18d{bottom:209.550000px;}
.y128{bottom:209.730000px;}
.y67{bottom:210.270000px;}
.yff{bottom:221.610000px;}
.y83{bottom:221.790000px;}
.y18{bottom:225.930000px;}
.y32{bottom:226.110000px;}
.y154{bottom:227.190000px;}
.y18c{bottom:227.370000px;}
.y127{bottom:227.730000px;}
.y66{bottom:228.270000px;}
.ycb{bottom:237.645000px;}
.y82{bottom:239.610000px;}
.y31{bottom:243.930000px;}
.y153{bottom:245.010000px;}
.y18b{bottom:245.190000px;}
.y126{bottom:245.550000px;}
.y65{bottom:246.090000px;}
.y81{bottom:257.430000px;}
.y30{bottom:261.750000px;}
.y152{bottom:262.830000px;}
.y18a{bottom:263.010000px;}
.y125{bottom:263.370000px;}
.y64{bottom:263.910000px;}
.yfe{bottom:275.250000px;}
.y80{bottom:275.430000px;}
.yca{bottom:278.325000px;}
.y2f{bottom:279.570000px;}
.y151{bottom:280.830000px;}
.y63{bottom:281.730000px;}
.y124{bottom:290.190000px;}
.yfd{bottom:293.070000px;}
.y2e{bottom:297.570000px;}
.y150{bottom:298.650000px;}
.y7f{bottom:298.830000px;}
.y62{bottom:299.550000px;}
.y123{bottom:308.010000px;}
.yfc{bottom:310.890000px;}
.y2d{bottom:315.390000px;}
.y14f{bottom:316.470000px;}
.y189{bottom:316.650000px;}
.y61{bottom:317.370000px;}
.yc8{bottom:319.005000px;}
.y7e{bottom:322.950000px;}
.y122{bottom:325.830000px;}
.yfb{bottom:328.890000px;}
.y2c{bottom:333.210000px;}
.y14e{bottom:334.290000px;}
.y188{bottom:334.470000px;}
.y60{bottom:335.370000px;}
.y7d{bottom:340.950000px;}
.y121{bottom:343.830000px;}
.y2b{bottom:351.030000px;}
.y14d{bottom:352.110000px;}
.y187{bottom:352.290000px;}
.y5f{bottom:353.190000px;}
.yfa{bottom:355.710000px;}
.y3a{bottom:356.970000px;}
.yc4{bottom:360.405000px;}
.y120{bottom:361.650000px;}
.y7c{bottom:361.830000px;}
.y7b{bottom:368.670000px;}
.y2a{bottom:369.030000px;}
.y14c{bottom:370.110000px;}
.y5e{bottom:371.010000px;}
.yf9{bottom:373.530000px;}
.y39{bottom:374.970000px;}
.y11f{bottom:379.470000px;}
.y14b{bottom:387.930000px;}
.y186{bottom:388.110000px;}
.yf8{bottom:391.350000px;}
.y29{bottom:394.230000px;}
.y5d{bottom:394.590000px;}
.y7a{bottom:396.390000px;}
.y11e{bottom:397.290000px;}
.yc2{bottom:400.905000px;}
.y14a{bottom:405.750000px;}
.y185{bottom:405.930000px;}
.yf7{bottom:409.170000px;}
.y79{bottom:414.210000px;}
.y11d{bottom:415.110000px;}
.y5c{bottom:418.710000px;}
.y25{bottom:420.705000px;}
.y149{bottom:423.570000px;}
.y184{bottom:423.750000px;}
.yf6{bottom:426.990000px;}
.y11c{bottom:433.110000px;}
.yc1{bottom:434.910000px;}
.y5b{bottom:436.530000px;}
.y78{bottom:437.070000px;}
.y183{bottom:441.615000px;}
.y77{bottom:443.955000px;}
.yf5{bottom:445.035000px;}
.y11b{bottom:450.975000px;}
.y148{bottom:451.875000px;}
.y5a{bottom:454.395000px;}
.y182{bottom:459.435000px;}
.yad{bottom:462.135000px;}
.yf4{bottom:462.855000px;}
.y11a{bottom:468.795000px;}
.y76{bottom:472.215000px;}
.y59{bottom:472.395000px;}
.y181{bottom:477.255000px;}
.yac{bottom:479.955000px;}
.yf3{bottom:480.675000px;}
.y147{bottom:483.195000px;}
.y17{bottom:484.095000px;}
.y119{bottom:486.615000px;}
.y75{bottom:490.035000px;}
.y58{bottom:490.215000px;}
.yc0{bottom:492.015000px;}
.y180{bottom:495.255000px;}
.yab{bottom:497.955000px;}
.yf2{bottom:498.495000px;}
.y146{bottom:501.195000px;}
.y118{bottom:504.435000px;}
.y57{bottom:508.035000px;}
.ybf{bottom:509.835000px;}
.y17f{bottom:513.075000px;}
.yf1{bottom:516.315000px;}
.y145{bottom:519.015000px;}
.yaa{bottom:521.355000px;}
.y117{bottom:522.255000px;}
.y56{bottom:525.855000px;}
.ybe{bottom:527.655000px;}
.y17e{bottom:530.895000px;}
.yf0{bottom:534.315000px;}
.y144{bottom:536.835000px;}
.y116{bottom:540.255000px;}
.y55{bottom:543.675000px;}
.ya9{bottom:545.475000px;}
.ybd{bottom:545.655000px;}
.y17d{bottom:548.715000px;}
.y74{bottom:549.435000px;}
.yef{bottom:552.135000px;}
.y143{bottom:554.655000px;}
.y115{bottom:558.075000px;}
.y54{bottom:561.495000px;}
.ya8{bottom:563.475000px;}
.y19e{bottom:563.655000px;}
.y17c{bottom:566.535000px;}
.yee{bottom:569.955000px;}
.y142{bottom:572.475000px;}
.y73{bottom:573.555000px;}
.y114{bottom:575.895000px;}
.y53{bottom:579.495000px;}
.ya7{bottom:581.295000px;}
.y19d{bottom:581.475000px;}
.y17b{bottom:584.535000px;}
.yed{bottom:587.775000px;}
.y141{bottom:590.475000px;}
.y72{bottom:591.375000px;}
.y113{bottom:593.715000px;}
.y52{bottom:597.315000px;}
.ya6{bottom:599.115000px;}
.ybc{bottom:599.295000px;}
.y19c{bottom:599.475000px;}
.y17a{bottom:602.355000px;}
.yec{bottom:605.595000px;}
.y140{bottom:608.295000px;}
.y71{bottom:609.195000px;}
.y112{bottom:611.535000px;}
.y51{bottom:615.135000px;}
.ya5{bottom:616.935000px;}
.y19b{bottom:617.295000px;}
.y179{bottom:620.175000px;}
.ybb{bottom:622.695000px;}
.yeb{bottom:623.415000px;}
.y13f{bottom:626.115000px;}
.y70{bottom:627.015000px;}
.y111{bottom:629.535000px;}
.ya4{bottom:634.755000px;}
.y19a{bottom:635.115000px;}
.y178{bottom:637.995000px;}
.y50{bottom:638.715000px;}
.yea{bottom:641.415000px;}
.y13e{bottom:643.935000px;}
.y6f{bottom:645.015000px;}
.yba{bottom:646.815000px;}
.y110{bottom:647.355000px;}
.ya3{bottom:652.575000px;}
.y199{bottom:652.935000px;}
.y177{bottom:655.815000px;}
.ye9{bottom:659.235000px;}
.y13d{bottom:661.755000px;}
.y4f{bottom:664.275000px;}
.yb9{bottom:664.635000px;}
.y10f{bottom:665.175000px;}
.y6e{bottom:668.415000px;}
.ya2{bottom:670.575000px;}
.y198{bottom:670.755000px;}
.y176{bottom:673.635000px;}
.ye8{bottom:677.085000px;}
.y13c{bottom:679.605000px;}
.yb8{bottom:682.665000px;}
.y10e{bottom:683.025000px;}
.ya1{bottom:688.425000px;}
.y197{bottom:688.605000px;}
.y175{bottom:691.665000px;}
.y4e{bottom:692.385000px;}
.ye7{bottom:694.905000px;}
.y13b{bottom:697.605000px;}
.yb7{bottom:700.485000px;}
.y10d{bottom:700.845000px;}
.ya0{bottom:706.245000px;}
.y196{bottom:706.605000px;}
.y174{bottom:709.485000px;}
.ye6{bottom:712.725000px;}
.y13a{bottom:715.425000px;}
.y4d{bottom:717.045000px;}
.yb6{bottom:718.305000px;}
.y10c{bottom:718.665000px;}
.y9f{bottom:724.065000px;}
.y195{bottom:724.425000px;}
.y173{bottom:727.305000px;}
.ye5{bottom:730.725000px;}
.y139{bottom:733.245000px;}
.y16{bottom:734.505000px;}
.yb5{bottom:736.125000px;}
.y10b{bottom:736.665000px;}
.y9e{bottom:741.885000px;}
.y194{bottom:742.245000px;}
.y172{bottom:745.125000px;}
.ye4{bottom:748.545000px;}
.yb4{bottom:753.945000px;}
.y10a{bottom:754.485000px;}
.y15{bottom:758.445000px;}
.y9d{bottom:759.885000px;}
.y138{bottom:760.065000px;}
.y171{bottom:762.945000px;}
.ye3{bottom:766.365000px;}
.yb3{bottom:771.765000px;}
.y9c{bottom:777.705000px;}
.y137{bottom:777.885000px;}
.y170{bottom:780.765000px;}
.y109{bottom:781.305000px;}
.y14{bottom:788.145000px;}
.yb2{bottom:789.765000px;}
.ye2{bottom:794.625000px;}
.y136{bottom:795.885000px;}
.y16f{bottom:798.765000px;}
.y108{bottom:799.125000px;}
.y9b{bottom:801.285000px;}
.yb1{bottom:807.585000px;}
.y13{bottom:812.085000px;}
.y135{bottom:813.705000px;}
.y16e{bottom:816.585000px;}
.y9a{bottom:825.405000px;}
.ye1{bottom:825.945000px;}
.y134{bottom:831.525000px;}
.y16d{bottom:834.405000px;}
.y12{bottom:835.845000px;}
.y99{bottom:843.225000px;}
.ydd{bottom:847.905000px;}
.y133{bottom:849.345000px;}
.y16c{bottom:852.225000px;}
.y11{bottom:859.785000px;}
.y98{bottom:861.045000px;}
.y132{bottom:867.165000px;}
.y16b{bottom:870.045000px;}
.y97{bottom:878.865000px;}
.yb0{bottom:879.045000px;}
.y10{bottom:883.725000px;}
.y131{bottom:884.985000px;}
.y16a{bottom:888.045000px;}
.y96{bottom:896.685000px;}
.yaf{bottom:902.445000px;}
.y130{bottom:902.985000px;}
.y169{bottom:905.865000px;}
.yf{bottom:907.485000px;}
.y95{bottom:914.730000px;}
.y12f{bottom:920.850000px;}
.y168{bottom:923.730000px;}
.ydc{bottom:926.970000px;}
.yae{bottom:928.230000px;}
.ye{bottom:931.470000px;}
.y94{bottom:932.550000px;}
.y4c{bottom:938.670000px;}
.y167{bottom:941.550000px;}
.yd{bottom:948.930000px;}
.y93{bottom:956.130000px;}
.y4b{bottom:956.490000px;}
.y166{bottom:959.370000px;}
.yc{bottom:966.750000px;}
.ydb{bottom:970.170000px;}
.y4a{bottom:974.310000px;}
.y165{bottom:977.190000px;}
.y92{bottom:980.250000px;}
.y49{bottom:992.310000px;}
.yb{bottom:993.570000px;}
.y164{bottom:995.190000px;}
.y91{bottom:998.070000px;}
.y48{bottom:1010.130000px;}
.y163{bottom:1013.010000px;}
.yda{bottom:1013.370000px;}
.y90{bottom:1015.890000px;}
.ya{bottom:1021.470000px;}
.y47{bottom:1027.950000px;}
.y162{bottom:1030.830000px;}
.y8f{bottom:1033.710000px;}
.y46{bottom:1045.770000px;}
.y161{bottom:1048.650000px;}
.y8e{bottom:1051.710000px;}
.yd8{bottom:1056.570000px;}
.y9{bottom:1056.930000px;}
.y45{bottom:1063.590000px;}
.y160{bottom:1066.470000px;}
.y8d{bottom:1069.530000px;}
.y44{bottom:1081.410000px;}
.y15f{bottom:1084.470000px;}
.y8{bottom:1087.350000px;}
.y8c{bottom:1093.110000px;}
.y43{bottom:1099.410000px;}
.yd6{bottom:1100.490000px;}
.y15e{bottom:1102.290000px;}
.y6{bottom:1113.270000px;}
.y42{bottom:1117.230000px;}
.y15d{bottom:1120.110000px;}
.yd4{bottom:1121.550000px;}
.y5{bottom:1132.530000px;}
.y41{bottom:1135.050000px;}
.y15c{bottom:1137.930000px;}
.yd3{bottom:1148.580000px;}
.y4{bottom:1150.920000px;}
.y40{bottom:1152.900000px;}
.y3{bottom:1166.220000px;}
.yd2{bottom:1170.360000px;}
.y8b{bottom:1170.720000px;}
.y3f{bottom:1170.900000px;}
.y2{bottom:1181.520000px;}
.y3d{bottom:1183.860000px;}
.y3c{bottom:1189.260000px;}
.y3b{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h12{height:10.363359px;}
.h11{height:15.240234px;}
.h22{height:21.045000px;}
.h21{height:22.125000px;}
.h19{height:27.885000px;}
.hb{height:35.332031px;}
.h25{height:35.820000px;}
.h1b{height:40.485000px;}
.h1c{height:40.665000px;}
.h20{height:40.678500px;}
.h1f{height:40.680000px;}
.h1d{height:40.716000px;}
.h10{height:40.843828px;}
.h23{height:43.185000px;}
.h24{height:43.222500px;}
.h6{height:47.344922px;}
.h27{height:52.971680px;}
.h7{height:52.998047px;}
.hc{height:54.421875px;}
.h26{height:55.503491px;}
.h16{height:59.092031px;}
.h1e{height:59.212031px;}
.ha{height:60.041250px;}
.he{height:62.661000px;}
.h13{height:64.447031px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.h1a{height:68.385000px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.hf{height:72.562500px;}
.h18{height:80.358047px;}
.h15{height:80.538047px;}
.h9{height:84.898125px;}
.h17{height:91.807031px;}
.h14{height:91.987031px;}
.hd{height:244.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.774500px;}
.w13{width:97.590000px;}
.w11{width:97.905000px;}
.w10{width:98.316000px;}
.w7{width:99.000000px;}
.w9{width:99.201000px;}
.wa{width:100.965000px;}
.w12{width:101.721000px;}
.we{width:106.761000px;}
.wf{width:109.080000px;}
.w4{width:110.689500px;}
.w8{width:110.736000px;}
.w6{width:115.401000px;}
.wd{width:116.134500px;}
.wb{width:119.730000px;}
.w5{width:645.075000px;}
.wc{width:727.558500px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x1e{left:11.338500px;}
.x1a{left:15.829500px;}
.x28{left:18.358500px;}
.x1b{left:19.609500px;}
.x2b{left:20.880000px;}
.x2d{left:22.665000px;}
.x2c{left:23.760000px;}
.x2a{left:25.005000px;}
.x30{left:26.820000px;}
.x2e{left:30.240000px;}
.x1f{left:31.305000px;}
.x26{left:34.740000px;}
.x21{left:38.160000px;}
.x24{left:39.765000px;}
.x39{left:41.940000px;}
.x37{left:44.130000px;}
.x34{left:45.750000px;}
.x19{left:46.801500px;}
.x2f{left:48.409500px;}
.x33{left:49.845000px;}
.x29{left:51.649500px;}
.x5{left:54.000000px;}
.xf{left:55.440000px;}
.x8{left:72.901500px;}
.x3b{left:81.000000px;}
.x31{left:82.801500px;}
.x6{left:89.676000px;}
.xa{left:95.256000px;}
.x3c{left:108.036000px;}
.x32{left:198.945000px;}
.x1c{left:201.285000px;}
.xd{left:225.390000px;}
.x1{left:259.950000px;}
.x1d{left:276.180000px;}
.x12{left:305.355000px;}
.x20{left:316.695000px;}
.x2{left:320.475000px;}
.x4{left:332.715000px;}
.x3{left:353.055000px;}
.x22{left:415.695000px;}
.xe{left:446.505000px;}
.xb{left:473.505000px;}
.x3a{left:500.505000px;}
.x35{left:513.120000px;}
.xc{left:514.725000px;}
.x23{left:526.440000px;}
.x15{left:527.505000px;}
.x16{left:604.725000px;}
.x36{left:611.040000px;}
.x17{left:624.210000px;}
.x25{left:625.650000px;}
.x13{left:627.630000px;}
.x11{left:665.430000px;}
.x38{left:712.770000px;}
.x27{left:726.630000px;}
.x18{left:728.250000px;}
.x14{left:760.110000px;}
.x10{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:24.480000pt;}
.v4{vertical-align:28.160000pt;}
.v6{vertical-align:52.640000pt;}
.lse{letter-spacing:-8.800000pt;}
.lsf{letter-spacing:-2.240000pt;}
.ls10{letter-spacing:-1.600000pt;}
.ls1a{letter-spacing:-0.714667pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.221333pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.170133pt;}
.ls1e{letter-spacing:-0.154667pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.075733pt;}
.ls1c{letter-spacing:-0.073067pt;}
.ls9{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.259733pt;}
.ls20{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.656000pt;}
.ls7{letter-spacing:1.413120pt;}
.ls6{letter-spacing:1.440000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls4{letter-spacing:7.200000pt;}
.ls15{letter-spacing:9.664000pt;}
.ls14{letter-spacing:13.424000pt;}
.ls16{letter-spacing:20.309760pt;}
.ls27{letter-spacing:22.496000pt;}
.ls26{letter-spacing:46.816000pt;}
.ls17{letter-spacing:48.784000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws4{word-spacing:-12.544000pt;}
.wsf{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.288000pt;}
.ws9{word-spacing:-12.112000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.760000pt;}
.wsc{word-spacing:-9.693333pt;}
.wse{word-spacing:-9.433600pt;}
.wsb{word-spacing:-9.357867pt;}
.wsd{word-spacing:-8.718933pt;}
.ws3{word-spacing:-8.000000pt;}
.ws12{word-spacing:-7.872000pt;}
.ws11{word-spacing:-7.360000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.033387pt;}
._7{width:2.278827pt;}
._b{width:3.426773pt;}
._c{width:4.762453pt;}
._6{width:5.778560pt;}
._5{width:7.246720pt;}
._d{width:8.304000pt;}
._9{width:9.744000pt;}
._a{width:10.789333pt;}
._8{width:13.424000pt;}
._10{width:14.342613pt;}
._11{width:15.504000pt;}
._16{width:17.280000pt;}
._17{width:18.528000pt;}
._15{width:20.480000pt;}
._f{width:21.712000pt;}
._e{width:22.704000pt;}
._22{width:24.302720pt;}
._13{width:25.200000pt;}
._14{width:26.872107pt;}
._1a{width:28.269227pt;}
._1c{width:29.308160pt;}
._1f{width:30.845013pt;}
._1d{width:32.528000pt;}
._1e{width:33.422720pt;}
._28{width:34.768000pt;}
._12{width:35.856000pt;}
._2a{width:38.208000pt;}
._20{width:39.840000pt;}
._21{width:40.849280pt;}
._18{width:42.096000pt;}
._19{width:43.057280pt;}
._29{width:48.048000pt;}
._25{width:49.504000pt;}
._24{width:54.720000pt;}
._27{width:60.336000pt;}
._26{width:61.296000pt;}
._1b{width:97.110400pt;}
._23{width:763.072000pt;}
._2{width:1444.853333pt;}
._3{width:1713.006933pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.yc3{bottom:-11.213333pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:2.546667pt;}
.yc7{bottom:2.706667pt;}
.yc9{bottom:2.866667pt;}
.ycd{bottom:2.880000pt;}
.ycf{bottom:3.040000pt;}
.y28{bottom:4.946667pt;}
.y24{bottom:4.960000pt;}
.ydf{bottom:5.120000pt;}
.yd7{bottom:6.080000pt;}
.yd5{bottom:6.560000pt;}
.ye0{bottom:12.960000pt;}
.yc5{bottom:16.306667pt;}
.yd9{bottom:16.320000pt;}
.y27{bottom:20.826667pt;}
.yde{bottom:20.960000pt;}
.y23{bottom:26.080000pt;}
.y26{bottom:36.826667pt;}
.y22{bottom:42.080000pt;}
.y3e{bottom:52.000000pt;}
.y21{bottom:57.920000pt;}
.y7{bottom:68.320000pt;}
.y107{bottom:70.080000pt;}
.y20{bottom:73.760000pt;}
.y8a{bottom:74.080000pt;}
.y193{bottom:75.040000pt;}
.y12e{bottom:75.360000pt;}
.y15b{bottom:78.880000pt;}
.y6d{bottom:80.800000pt;}
.yd1{bottom:83.200000pt;}
.y106{bottom:85.920000pt;}
.y1f{bottom:89.600000pt;}
.y89{bottom:89.920000pt;}
.y192{bottom:91.040000pt;}
.y12d{bottom:91.200000pt;}
.y105{bottom:101.760000pt;}
.y6c{bottom:101.920000pt;}
.yd0{bottom:102.720000pt;}
.y1e{bottom:105.440000pt;}
.y38{bottom:105.760000pt;}
.y88{bottom:105.920000pt;}
.y15a{bottom:106.720000pt;}
.y191{bottom:106.880000pt;}
.y12c{bottom:107.040000pt;}
.y104{bottom:117.760000pt;}
.y1d{bottom:121.440000pt;}
.y37{bottom:121.600000pt;}
.y159{bottom:122.560000pt;}
.y190{bottom:122.720000pt;}
.y12b{bottom:123.040000pt;}
.y6b{bottom:123.520000pt;}
.y87{bottom:127.040000pt;}
.y103{bottom:133.600000pt;}
.y1c{bottom:137.280000pt;}
.y36{bottom:137.440000pt;}
.y158{bottom:138.400000pt;}
.y18f{bottom:138.560000pt;}
.yce{bottom:138.880000pt;}
.y6a{bottom:139.360000pt;}
.y102{bottom:149.440000pt;}
.y86{bottom:150.080000pt;}
.y1b{bottom:153.120000pt;}
.y35{bottom:153.280000pt;}
.y157{bottom:154.400000pt;}
.y12a{bottom:154.720000pt;}
.y69{bottom:155.200000pt;}
.y85{bottom:156.160000pt;}
.y101{bottom:165.280000pt;}
.y1a{bottom:168.960000pt;}
.y34{bottom:169.120000pt;}
.y156{bottom:170.240000pt;}
.y18e{bottom:170.400000pt;}
.y129{bottom:170.560000pt;}
.y68{bottom:171.040000pt;}
.ycc{bottom:175.040000pt;}
.y100{bottom:181.120000pt;}
.y84{bottom:181.280000pt;}
.y19{bottom:184.826667pt;}
.y33{bottom:185.146667pt;}
.y155{bottom:186.106667pt;}
.y18d{bottom:186.266667pt;}
.y128{bottom:186.426667pt;}
.y67{bottom:186.906667pt;}
.yff{bottom:196.986667pt;}
.y83{bottom:197.146667pt;}
.y18{bottom:200.826667pt;}
.y32{bottom:200.986667pt;}
.y154{bottom:201.946667pt;}
.y18c{bottom:202.106667pt;}
.y127{bottom:202.426667pt;}
.y66{bottom:202.906667pt;}
.ycb{bottom:211.240000pt;}
.y82{bottom:212.986667pt;}
.y31{bottom:216.826667pt;}
.y153{bottom:217.786667pt;}
.y18b{bottom:217.946667pt;}
.y126{bottom:218.266667pt;}
.y65{bottom:218.746667pt;}
.y81{bottom:228.826667pt;}
.y30{bottom:232.666667pt;}
.y152{bottom:233.626667pt;}
.y18a{bottom:233.786667pt;}
.y125{bottom:234.106667pt;}
.y64{bottom:234.586667pt;}
.yfe{bottom:244.666667pt;}
.y80{bottom:244.826667pt;}
.yca{bottom:247.400000pt;}
.y2f{bottom:248.506667pt;}
.y151{bottom:249.626667pt;}
.y63{bottom:250.426667pt;}
.y124{bottom:257.946667pt;}
.yfd{bottom:260.506667pt;}
.y2e{bottom:264.506667pt;}
.y150{bottom:265.466667pt;}
.y7f{bottom:265.626667pt;}
.y62{bottom:266.266667pt;}
.y123{bottom:273.786667pt;}
.yfc{bottom:276.346667pt;}
.y2d{bottom:280.346667pt;}
.y14f{bottom:281.306667pt;}
.y189{bottom:281.466667pt;}
.y61{bottom:282.106667pt;}
.yc8{bottom:283.560000pt;}
.y7e{bottom:287.066667pt;}
.y122{bottom:289.626667pt;}
.yfb{bottom:292.346667pt;}
.y2c{bottom:296.186667pt;}
.y14e{bottom:297.146667pt;}
.y188{bottom:297.306667pt;}
.y60{bottom:298.106667pt;}
.y7d{bottom:303.066667pt;}
.y121{bottom:305.626667pt;}
.y2b{bottom:312.026667pt;}
.y14d{bottom:312.986667pt;}
.y187{bottom:313.146667pt;}
.y5f{bottom:313.946667pt;}
.yfa{bottom:316.186667pt;}
.y3a{bottom:317.306667pt;}
.yc4{bottom:320.360000pt;}
.y120{bottom:321.466667pt;}
.y7c{bottom:321.626667pt;}
.y7b{bottom:327.706667pt;}
.y2a{bottom:328.026667pt;}
.y14c{bottom:328.986667pt;}
.y5e{bottom:329.786667pt;}
.yf9{bottom:332.026667pt;}
.y39{bottom:333.306667pt;}
.y11f{bottom:337.306667pt;}
.y14b{bottom:344.826667pt;}
.y186{bottom:344.986667pt;}
.yf8{bottom:347.866667pt;}
.y29{bottom:350.426667pt;}
.y5d{bottom:350.746667pt;}
.y7a{bottom:352.346667pt;}
.y11e{bottom:353.146667pt;}
.yc2{bottom:356.360000pt;}
.y14a{bottom:360.666667pt;}
.y185{bottom:360.826667pt;}
.yf7{bottom:363.706667pt;}
.y79{bottom:368.186667pt;}
.y11d{bottom:368.986667pt;}
.y5c{bottom:372.186667pt;}
.y25{bottom:373.960000pt;}
.y149{bottom:376.506667pt;}
.y184{bottom:376.666667pt;}
.yf6{bottom:379.546667pt;}
.y11c{bottom:384.986667pt;}
.yc1{bottom:386.586667pt;}
.y5b{bottom:388.026667pt;}
.y78{bottom:388.506667pt;}
.y183{bottom:392.546667pt;}
.y77{bottom:394.626667pt;}
.yf5{bottom:395.586667pt;}
.y11b{bottom:400.866667pt;}
.y148{bottom:401.666667pt;}
.y5a{bottom:403.906667pt;}
.y182{bottom:408.386667pt;}
.yad{bottom:410.786667pt;}
.yf4{bottom:411.426667pt;}
.y11a{bottom:416.706667pt;}
.y76{bottom:419.746667pt;}
.y59{bottom:419.906667pt;}
.y181{bottom:424.226667pt;}
.yac{bottom:426.626667pt;}
.yf3{bottom:427.266667pt;}
.y147{bottom:429.506667pt;}
.y17{bottom:430.306667pt;}
.y119{bottom:432.546667pt;}
.y75{bottom:435.586667pt;}
.y58{bottom:435.746667pt;}
.yc0{bottom:437.346667pt;}
.y180{bottom:440.226667pt;}
.yab{bottom:442.626667pt;}
.yf2{bottom:443.106667pt;}
.y146{bottom:445.506667pt;}
.y118{bottom:448.386667pt;}
.y57{bottom:451.586667pt;}
.ybf{bottom:453.186667pt;}
.y17f{bottom:456.066667pt;}
.yf1{bottom:458.946667pt;}
.y145{bottom:461.346667pt;}
.yaa{bottom:463.426667pt;}
.y117{bottom:464.226667pt;}
.y56{bottom:467.426667pt;}
.ybe{bottom:469.026667pt;}
.y17e{bottom:471.906667pt;}
.yf0{bottom:474.946667pt;}
.y144{bottom:477.186667pt;}
.y116{bottom:480.226667pt;}
.y55{bottom:483.266667pt;}
.ya9{bottom:484.866667pt;}
.ybd{bottom:485.026667pt;}
.y17d{bottom:487.746667pt;}
.y74{bottom:488.386667pt;}
.yef{bottom:490.786667pt;}
.y143{bottom:493.026667pt;}
.y115{bottom:496.066667pt;}
.y54{bottom:499.106667pt;}
.ya8{bottom:500.866667pt;}
.y19e{bottom:501.026667pt;}
.y17c{bottom:503.586667pt;}
.yee{bottom:506.626667pt;}
.y142{bottom:508.866667pt;}
.y73{bottom:509.826667pt;}
.y114{bottom:511.906667pt;}
.y53{bottom:515.106667pt;}
.ya7{bottom:516.706667pt;}
.y19d{bottom:516.866667pt;}
.y17b{bottom:519.586667pt;}
.yed{bottom:522.466667pt;}
.y141{bottom:524.866667pt;}
.y72{bottom:525.666667pt;}
.y113{bottom:527.746667pt;}
.y52{bottom:530.946667pt;}
.ya6{bottom:532.546667pt;}
.ybc{bottom:532.706667pt;}
.y19c{bottom:532.866667pt;}
.y17a{bottom:535.426667pt;}
.yec{bottom:538.306667pt;}
.y140{bottom:540.706667pt;}
.y71{bottom:541.506667pt;}
.y112{bottom:543.586667pt;}
.y51{bottom:546.786667pt;}
.ya5{bottom:548.386667pt;}
.y19b{bottom:548.706667pt;}
.y179{bottom:551.266667pt;}
.ybb{bottom:553.506667pt;}
.yeb{bottom:554.146667pt;}
.y13f{bottom:556.546667pt;}
.y70{bottom:557.346667pt;}
.y111{bottom:559.586667pt;}
.ya4{bottom:564.226667pt;}
.y19a{bottom:564.546667pt;}
.y178{bottom:567.106667pt;}
.y50{bottom:567.746667pt;}
.yea{bottom:570.146667pt;}
.y13e{bottom:572.386667pt;}
.y6f{bottom:573.346667pt;}
.yba{bottom:574.946667pt;}
.y110{bottom:575.426667pt;}
.ya3{bottom:580.066667pt;}
.y199{bottom:580.386667pt;}
.y177{bottom:582.946667pt;}
.ye9{bottom:585.986667pt;}
.y13d{bottom:588.226667pt;}
.y4f{bottom:590.466667pt;}
.yb9{bottom:590.786667pt;}
.y10f{bottom:591.266667pt;}
.y6e{bottom:594.146667pt;}
.ya2{bottom:596.066667pt;}
.y198{bottom:596.226667pt;}
.y176{bottom:598.786667pt;}
.ye8{bottom:601.853333pt;}
.y13c{bottom:604.093333pt;}
.yb8{bottom:606.813333pt;}
.y10e{bottom:607.133333pt;}
.ya1{bottom:611.933333pt;}
.y197{bottom:612.093333pt;}
.y175{bottom:614.813333pt;}
.y4e{bottom:615.453333pt;}
.ye7{bottom:617.693333pt;}
.y13b{bottom:620.093333pt;}
.yb7{bottom:622.653333pt;}
.y10d{bottom:622.973333pt;}
.ya0{bottom:627.773333pt;}
.y196{bottom:628.093333pt;}
.y174{bottom:630.653333pt;}
.ye6{bottom:633.533333pt;}
.y13a{bottom:635.933333pt;}
.y4d{bottom:637.373333pt;}
.yb6{bottom:638.493333pt;}
.y10c{bottom:638.813333pt;}
.y9f{bottom:643.613333pt;}
.y195{bottom:643.933333pt;}
.y173{bottom:646.493333pt;}
.ye5{bottom:649.533333pt;}
.y139{bottom:651.773333pt;}
.y16{bottom:652.893333pt;}
.yb5{bottom:654.333333pt;}
.y10b{bottom:654.813333pt;}
.y9e{bottom:659.453333pt;}
.y194{bottom:659.773333pt;}
.y172{bottom:662.333333pt;}
.ye4{bottom:665.373333pt;}
.yb4{bottom:670.173333pt;}
.y10a{bottom:670.653333pt;}
.y15{bottom:674.173333pt;}
.y9d{bottom:675.453333pt;}
.y138{bottom:675.613333pt;}
.y171{bottom:678.173333pt;}
.ye3{bottom:681.213333pt;}
.yb3{bottom:686.013333pt;}
.y9c{bottom:691.293333pt;}
.y137{bottom:691.453333pt;}
.y170{bottom:694.013333pt;}
.y109{bottom:694.493333pt;}
.y14{bottom:700.573333pt;}
.yb2{bottom:702.013333pt;}
.ye2{bottom:706.333333pt;}
.y136{bottom:707.453333pt;}
.y16f{bottom:710.013333pt;}
.y108{bottom:710.333333pt;}
.y9b{bottom:712.253333pt;}
.yb1{bottom:717.853333pt;}
.y13{bottom:721.853333pt;}
.y135{bottom:723.293333pt;}
.y16e{bottom:725.853333pt;}
.y9a{bottom:733.693333pt;}
.ye1{bottom:734.173333pt;}
.y134{bottom:739.133333pt;}
.y16d{bottom:741.693333pt;}
.y12{bottom:742.973333pt;}
.y99{bottom:749.533333pt;}
.ydd{bottom:753.693333pt;}
.y133{bottom:754.973333pt;}
.y16c{bottom:757.533333pt;}
.y11{bottom:764.253333pt;}
.y98{bottom:765.373333pt;}
.y132{bottom:770.813333pt;}
.y16b{bottom:773.373333pt;}
.y97{bottom:781.213333pt;}
.yb0{bottom:781.373333pt;}
.y10{bottom:785.533333pt;}
.y131{bottom:786.653333pt;}
.y16a{bottom:789.373333pt;}
.y96{bottom:797.053333pt;}
.yaf{bottom:802.173333pt;}
.y130{bottom:802.653333pt;}
.y169{bottom:805.213333pt;}
.yf{bottom:806.653333pt;}
.y95{bottom:813.093333pt;}
.y12f{bottom:818.533333pt;}
.y168{bottom:821.093333pt;}
.ydc{bottom:823.973333pt;}
.yae{bottom:825.093333pt;}
.ye{bottom:827.973333pt;}
.y94{bottom:828.933333pt;}
.y4c{bottom:834.373333pt;}
.y167{bottom:836.933333pt;}
.yd{bottom:843.493333pt;}
.y93{bottom:849.893333pt;}
.y4b{bottom:850.213333pt;}
.y166{bottom:852.773333pt;}
.yc{bottom:859.333333pt;}
.ydb{bottom:862.373333pt;}
.y4a{bottom:866.053333pt;}
.y165{bottom:868.613333pt;}
.y92{bottom:871.333333pt;}
.y49{bottom:882.053333pt;}
.yb{bottom:883.173333pt;}
.y164{bottom:884.613333pt;}
.y91{bottom:887.173333pt;}
.y48{bottom:897.893333pt;}
.y163{bottom:900.453333pt;}
.yda{bottom:900.773333pt;}
.y90{bottom:903.013333pt;}
.ya{bottom:907.973333pt;}
.y47{bottom:913.733333pt;}
.y162{bottom:916.293333pt;}
.y8f{bottom:918.853333pt;}
.y46{bottom:929.573333pt;}
.y161{bottom:932.133333pt;}
.y8e{bottom:934.853333pt;}
.yd8{bottom:939.173333pt;}
.y9{bottom:939.493333pt;}
.y45{bottom:945.413333pt;}
.y160{bottom:947.973333pt;}
.y8d{bottom:950.693333pt;}
.y44{bottom:961.253333pt;}
.y15f{bottom:963.973333pt;}
.y8{bottom:966.533333pt;}
.y8c{bottom:971.653333pt;}
.y43{bottom:977.253333pt;}
.yd6{bottom:978.213333pt;}
.y15e{bottom:979.813333pt;}
.y6{bottom:989.573333pt;}
.y42{bottom:993.093333pt;}
.y15d{bottom:995.653333pt;}
.yd4{bottom:996.933333pt;}
.y5{bottom:1006.693333pt;}
.y41{bottom:1008.933333pt;}
.y15c{bottom:1011.493333pt;}
.yd3{bottom:1020.960000pt;}
.y4{bottom:1023.040000pt;}
.y40{bottom:1024.800000pt;}
.y3{bottom:1036.640000pt;}
.yd2{bottom:1040.320000pt;}
.y8b{bottom:1040.640000pt;}
.y3f{bottom:1040.800000pt;}
.y2{bottom:1050.240000pt;}
.y3d{bottom:1052.320000pt;}
.y3c{bottom:1057.120000pt;}
.y3b{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h12{height:9.211875pt;}
.h11{height:13.546875pt;}
.h22{height:18.706667pt;}
.h21{height:19.666667pt;}
.h19{height:24.786667pt;}
.hb{height:31.406250pt;}
.h25{height:31.840000pt;}
.h1b{height:35.986667pt;}
.h1c{height:36.146667pt;}
.h20{height:36.158667pt;}
.h1f{height:36.160000pt;}
.h1d{height:36.192000pt;}
.h10{height:36.305625pt;}
.h23{height:38.386667pt;}
.h24{height:38.420000pt;}
.h6{height:42.084375pt;}
.h27{height:47.085938pt;}
.h7{height:47.109375pt;}
.hc{height:48.375000pt;}
.h26{height:49.336436pt;}
.h16{height:52.526250pt;}
.h1e{height:52.632917pt;}
.ha{height:53.370000pt;}
.he{height:55.698667pt;}
.h13{height:57.286250pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.h1a{height:60.786667pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.hf{height:64.500000pt;}
.h18{height:71.429375pt;}
.h15{height:71.589375pt;}
.h9{height:75.465000pt;}
.h17{height:81.606250pt;}
.h14{height:81.766250pt;}
.hd{height:216.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.910667pt;}
.w13{width:86.746667pt;}
.w11{width:87.026667pt;}
.w10{width:87.392000pt;}
.w7{width:88.000000pt;}
.w9{width:88.178667pt;}
.wa{width:89.746667pt;}
.w12{width:90.418667pt;}
.we{width:94.898667pt;}
.wf{width:96.960000pt;}
.w4{width:98.390667pt;}
.w8{width:98.432000pt;}
.w6{width:102.578667pt;}
.wd{width:103.230667pt;}
.wb{width:106.426667pt;}
.w5{width:573.400000pt;}
.wc{width:646.718667pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x1e{left:10.078667pt;}
.x1a{left:14.070667pt;}
.x28{left:16.318667pt;}
.x1b{left:17.430667pt;}
.x2b{left:18.560000pt;}
.x2d{left:20.146667pt;}
.x2c{left:21.120000pt;}
.x2a{left:22.226667pt;}
.x30{left:23.840000pt;}
.x2e{left:26.880000pt;}
.x1f{left:27.826667pt;}
.x26{left:30.880000pt;}
.x21{left:33.920000pt;}
.x24{left:35.346667pt;}
.x39{left:37.280000pt;}
.x37{left:39.226667pt;}
.x34{left:40.666667pt;}
.x19{left:41.601333pt;}
.x2f{left:43.030667pt;}
.x33{left:44.306667pt;}
.x29{left:45.910667pt;}
.x5{left:48.000000pt;}
.xf{left:49.280000pt;}
.x8{left:64.801333pt;}
.x3b{left:72.000000pt;}
.x31{left:73.601333pt;}
.x6{left:79.712000pt;}
.xa{left:84.672000pt;}
.x3c{left:96.032000pt;}
.x32{left:176.840000pt;}
.x1c{left:178.920000pt;}
.xd{left:200.346667pt;}
.x1{left:231.066667pt;}
.x1d{left:245.493333pt;}
.x12{left:271.426667pt;}
.x20{left:281.506667pt;}
.x2{left:284.866667pt;}
.x4{left:295.746667pt;}
.x3{left:313.826667pt;}
.x22{left:369.506667pt;}
.xe{left:396.893333pt;}
.xb{left:420.893333pt;}
.x3a{left:444.893333pt;}
.x35{left:456.106667pt;}
.xc{left:457.533333pt;}
.x23{left:467.946667pt;}
.x15{left:468.893333pt;}
.x16{left:537.533333pt;}
.x36{left:543.146667pt;}
.x17{left:554.853333pt;}
.x25{left:556.133333pt;}
.x13{left:557.893333pt;}
.x11{left:591.493333pt;}
.x38{left:633.573333pt;}
.x27{left:645.893333pt;}
.x18{left:647.333333pt;}
.x14{left:675.653333pt;}
.x10{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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