
    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_65a33c8aa6696f2695d3bdd5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fd11aa73bd26b256b774de31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ebfa357e45718aeee2c420d2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a7e828d77a3d1a38859adc42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_cca7573ec8fe25f4f1b06f62.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ee8e1f86b1ab4f3d4ce33e84.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986328;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_fd08dbb3a833ceef16ec4d2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e05c24470176d8a581ce8830.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.986328;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.774000px;}
.ls1{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.253200px;}
.lsd{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106560px;}
.ls6{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.306600px;}
.ls8{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.666000px;}
.ls14{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.620000px;}
.ls18{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.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;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-3.487680px;}
._16{margin-left:-2.459040px;}
._0{margin-left:-1.080000px;}
._11{width:1.053360px;}
._1{width:2.220000px;}
._12{width:3.944160px;}
._1a{width:4.985280px;}
._18{width:6.030000px;}
._14{width:7.171200px;}
._13{width:8.187120px;}
._1c{width:9.728640px;}
._6{width:10.800000px;}
._1f{width:12.310560px;}
._1b{width:13.625280px;}
._19{width:16.089840px;}
._1d{width:17.538480px;}
._f{width:18.948000px;}
._1e{width:20.084400px;}
._25{width:22.111200px;}
._17{width:23.866560px;}
._21{width:25.995600px;}
._20{width:27.190800px;}
._23{width:28.527840px;}
._27{width:30.384000px;}
._35{width:31.389120px;}
._36{width:32.650560px;}
._44{width:34.840080px;}
._46{width:36.214560px;}
._34{width:37.615680px;}
._33{width:38.844000px;}
._41{width:40.266720px;}
._2e{width:41.328000px;}
._29{width:42.810480px;}
._28{width:43.923600px;}
._37{width:45.439920px;}
._43{width:47.867760px;}
._24{width:49.302000px;}
._3f{width:51.296400px;}
._42{width:57.108240px;}
._2b{width:59.065200px;}
._22{width:60.357600px;}
._2d{width:62.112960px;}
._3c{width:63.547200px;}
._2f{width:68.664240px;}
._39{width:70.001280px;}
._3d{width:72.929520px;}
._3e{width:74.341440px;}
._7{width:76.284960px;}
._3b{width:85.180320px;}
._2a{width:86.771520px;}
._40{width:91.074240px;}
._31{width:97.211760px;}
._10{width:99.660000px;}
._32{width:101.304000px;}
._38{width:103.803120px;}
._26{width:123.464160px;}
._3a{width:124.778880px;}
._8{width:154.080000px;}
._45{width:176.252160px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._30{width:289.272960px;}
._2c{width:301.926720px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc4{color:rgb(0,0,255);}
.fc5{color:rgb(70,120,134);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:5.760000px;}
.ye{bottom:5.940000px;}
.y170{bottom:7.200000px;}
.y187{bottom:8.460000px;}
.y1b4{bottom:8.490000px;}
.y178{bottom:9.720000px;}
.y6{bottom:12.420000px;}
.y17b{bottom:15.660000px;}
.y19c{bottom:15.690000px;}
.y1a3{bottom:15.885000px;}
.y8{bottom:18.180000px;}
.y185{bottom:18.360000px;}
.y1a8{bottom:18.390000px;}
.y1af{bottom:18.540000px;}
.y182{bottom:19.620000px;}
.yab{bottom:25.560000px;}
.y191{bottom:25.590000px;}
.yfb{bottom:25.605000px;}
.y174{bottom:25.740000px;}
.y1a1{bottom:25.785000px;}
.y186{bottom:28.260000px;}
.y1a9{bottom:28.290000px;}
.y1b0{bottom:28.440000px;}
.y1b3{bottom:28.470000px;}
.y176{bottom:29.700000px;}
.yc{bottom:34.560000px;}
.y189{bottom:35.460000px;}
.y190{bottom:35.490000px;}
.y194{bottom:35.505000px;}
.y172{bottom:35.640000px;}
.y19b{bottom:35.670000px;}
.y1a2{bottom:35.685000px;}
.y181{bottom:39.600000px;}
.y5{bottom:40.320000px;}
.yaa{bottom:45.360000px;}
.yae{bottom:45.390000px;}
.y195{bottom:45.405000px;}
.y173{bottom:45.540000px;}
.y17e{bottom:45.570000px;}
.y18b{bottom:45.585000px;}
.y183{bottom:49.500000px;}
.y177{bottom:49.545000px;}
.yb{bottom:55.080000px;}
.y18e{bottom:55.260000px;}
.y17a{bottom:55.440000px;}
.y17f{bottom:55.470000px;}
.yb1{bottom:65.160000px;}
.ya9{bottom:65.340000px;}
.yad{bottom:65.370000px;}
.y196{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ya{bottom:75.420000px;}
.ya8{bottom:85.140000px;}
.y3{bottom:96.330000px;}
.yf5{bottom:97.380000px;}
.y13a{bottom:98.280000px;}
.y3b{bottom:99.720000px;}
.ya4{bottom:100.800000px;}
.y1c6{bottom:101.160000px;}
.y11e{bottom:103.860000px;}
.y69{bottom:107.820000px;}
.y16e{bottom:114.840000px;}
.yf4{bottom:117.360000px;}
.y139{bottom:118.260000px;}
.y3a{bottom:119.700000px;}
.ya3{bottom:120.600000px;}
.y1c5{bottom:121.140000px;}
.y11d{bottom:123.840000px;}
.y2{bottom:125.670000px;}
.y15d{bottom:125.820000px;}
.y68{bottom:127.620000px;}
.y18f{bottom:129.600000px;}
.y138{bottom:134.820000px;}
.yf3{bottom:137.160000px;}
.y39{bottom:139.500000px;}
.ya2{bottom:140.400000px;}
.y1c4{bottom:140.940000px;}
.y1a7{bottom:142.920000px;}
.y11c{bottom:143.640000px;}
.y15c{bottom:145.620000px;}
.y67{bottom:147.420000px;}
.y16d{bottom:154.650000px;}
.y8e{bottom:156.450000px;}
.yf2{bottom:156.990000px;}
.y38{bottom:159.330000px;}
.ya1{bottom:160.410000px;}
.y1c3{bottom:163.290000px;}
.y11b{bottom:163.470000px;}
.y15b{bottom:165.450000px;}
.y66{bottom:167.250000px;}
.y16c{bottom:174.450000px;}
.y8d{bottom:176.250000px;}
.y37{bottom:179.130000px;}
.ya0{bottom:180.210000px;}
.ybe{bottom:180.750000px;}
.y1c2{bottom:183.090000px;}
.y11a{bottom:183.270000px;}
.y15a{bottom:185.250000px;}
.yf1{bottom:185.790000px;}
.y65{bottom:187.050000px;}
.y1a6{bottom:188.670000px;}
.y16b{bottom:194.250000px;}
.y8c{bottom:196.050000px;}
.y36{bottom:198.930000px;}
.y9f{bottom:200.010000px;}
.ybd{bottom:200.550000px;}
.y1c1{bottom:202.890000px;}
.y119{bottom:203.070000px;}
.y159{bottom:205.050000px;}
.yf0{bottom:205.590000px;}
.y64{bottom:207.030000px;}
.y18d{bottom:209.730000px;}
.y16a{bottom:214.050000px;}
.y8b{bottom:216.030000px;}
.y35{bottom:218.910000px;}
.y9e{bottom:219.810000px;}
.ybc{bottom:220.530000px;}
.y1c0{bottom:222.690000px;}
.y118{bottom:223.050000px;}
.y158{bottom:225.030000px;}
.yef{bottom:225.570000px;}
.y63{bottom:226.830000px;}
.y169{bottom:234.030000px;}
.y8a{bottom:235.830000px;}
.y34{bottom:238.710000px;}
.y9d{bottom:239.610000px;}
.ybb{bottom:240.330000px;}
.y1bf{bottom:242.490000px;}
.y117{bottom:242.850000px;}
.y157{bottom:244.830000px;}
.yee{bottom:245.370000px;}
.y62{bottom:246.630000px;}
.y1a5{bottom:248.970000px;}
.y168{bottom:253.830000px;}
.y89{bottom:255.630000px;}
.y9c{bottom:259.590000px;}
.yba{bottom:260.130000px;}
.y1be{bottom:262.470000px;}
.y116{bottom:262.650000px;}
.y156{bottom:264.630000px;}
.yed{bottom:265.170000px;}
.y61{bottom:266.430000px;}
.y33{bottom:267.510000px;}
.y167{bottom:273.630000px;}
.y88{bottom:275.430000px;}
.y9b{bottom:279.390000px;}
.y1bd{bottom:282.270000px;}
.y115{bottom:282.450000px;}
.y155{bottom:284.430000px;}
.yec{bottom:284.970000px;}
.y60{bottom:286.230000px;}
.y32{bottom:287.310000px;}
.yb9{bottom:288.930000px;}
.y166{bottom:293.430000px;}
.y87{bottom:295.230000px;}
.y9a{bottom:299.190000px;}
.y1bc{bottom:302.070000px;}
.y114{bottom:302.250000px;}
.y154{bottom:304.230000px;}
.yeb{bottom:304.770000px;}
.yd4{bottom:305.490000px;}
.y5f{bottom:306.210000px;}
.y31{bottom:307.110000px;}
.yb8{bottom:308.730000px;}
.y1a4{bottom:309.090000px;}
.y18c{bottom:309.630000px;}
.y165{bottom:313.230000px;}
.y86{bottom:315.210000px;}
.y99{bottom:318.990000px;}
.y1bb{bottom:321.870000px;}
.y113{bottom:322.230000px;}
.y153{bottom:324.210000px;}
.yea{bottom:324.570000px;}
.yd3{bottom:325.470000px;}
.y5e{bottom:326.010000px;}
.y30{bottom:327.090000px;}
.yb7{bottom:328.710000px;}
.y164{bottom:333.210000px;}
.y85{bottom:335.010000px;}
.y98{bottom:338.790000px;}
.y1ba{bottom:341.670000px;}
.y112{bottom:342.030000px;}
.y152{bottom:344.010000px;}
.ye9{bottom:344.550000px;}
.yd2{bottom:345.270000px;}
.y5d{bottom:345.810000px;}
.y2f{bottom:346.890000px;}
.yb6{bottom:348.510000px;}
.y163{bottom:353.010000px;}
.y84{bottom:354.810000px;}
.y18a{bottom:355.350000px;}
.y1b9{bottom:356.610000px;}
.y97{bottom:358.770000px;}
.y111{bottom:361.830000px;}
.y151{bottom:363.810000px;}
.ye8{bottom:364.350000px;}
.yd1{bottom:365.070000px;}
.y5c{bottom:365.610000px;}
.y2e{bottom:366.690000px;}
.yb5{bottom:368.310000px;}
.y162{bottom:372.810000px;}
.y83{bottom:374.610000px;}
.y96{bottom:378.570000px;}
.y110{bottom:381.630000px;}
.ye7{bottom:384.150000px;}
.yd0{bottom:384.870000px;}
.y5b{bottom:385.410000px;}
.y2d{bottom:386.490000px;}
.yb4{bottom:388.110000px;}
.y1a0{bottom:389.190000px;}
.y150{bottom:392.610000px;}
.y82{bottom:394.410000px;}
.y95{bottom:398.370000px;}
.y10f{bottom:401.475000px;}
.y1b8{bottom:402.375000px;}
.ye6{bottom:403.995000px;}
.ycf{bottom:404.715000px;}
.y5a{bottom:405.435000px;}
.y2c{bottom:406.335000px;}
.yb3{bottom:407.955000px;}
.y14f{bottom:412.455000px;}
.y137{bottom:412.995000px;}
.y81{bottom:414.435000px;}
.y188{bottom:415.695000px;}
.y94{bottom:418.215000px;}
.y10e{bottom:421.455000px;}
.ye5{bottom:423.795000px;}
.yce{bottom:424.695000px;}
.y161{bottom:425.235000px;}
.y2b{bottom:426.315000px;}
.yb2{bottom:427.935000px;}
.y14e{bottom:432.435000px;}
.y136{bottom:432.795000px;}
.y59{bottom:434.235000px;}
.y93{bottom:438.015000px;}
.y10d{bottom:441.255000px;}
.yb0{bottom:442.695000px;}
.ye4{bottom:443.775000px;}
.ycd{bottom:444.495000px;}
.y160{bottom:445.035000px;}
.y2a{bottom:446.115000px;}
.y19f{bottom:449.535000px;}
.y14d{bottom:452.235000px;}
.y135{bottom:452.595000px;}
.y58{bottom:454.035000px;}
.y92{bottom:457.995000px;}
.y10c{bottom:461.055000px;}
.y1b7{bottom:462.495000px;}
.ye3{bottom:463.575000px;}
.y15f{bottom:464.835000px;}
.y29{bottom:465.915000px;}
.y14c{bottom:472.035000px;}
.y134{bottom:472.395000px;}
.ycc{bottom:473.295000px;}
.y57{bottom:473.835000px;}
.y91{bottom:477.795000px;}
.y10b{bottom:480.855000px;}
.ye2{bottom:483.375000px;}
.y15e{bottom:484.635000px;}
.y28{bottom:485.715000px;}
.y14b{bottom:491.835000px;}
.y133{bottom:492.375000px;}
.ycb{bottom:493.095000px;}
.y56{bottom:493.635000px;}
.y184{bottom:495.795000px;}
.y90{bottom:497.595000px;}
.y10a{bottom:500.655000px;}
.ye1{bottom:503.175000px;}
.y27{bottom:505.515000px;}
.y14a{bottom:511.635000px;}
.yca{bottom:512.895000px;}
.y55{bottom:513.615000px;}
.y8f{bottom:513.975000px;}
.y109{bottom:520.635000px;}
.y132{bottom:521.175000px;}
.y80{bottom:522.615000px;}
.y1b6{bottom:522.795000px;}
.ye0{bottom:522.975000px;}
.y26{bottom:525.495000px;}
.y19e{bottom:529.635000px;}
.y149{bottom:531.615000px;}
.yc9{bottom:532.875000px;}
.y54{bottom:533.415000px;}
.y108{bottom:540.435000px;}
.y131{bottom:540.975000px;}
.y180{bottom:541.515000px;}
.y7f{bottom:542.415000px;}
.yaf{bottom:542.595000px;}
.ydf{bottom:542.955000px;}
.y25{bottom:545.295000px;}
.y148{bottom:551.415000px;}
.yc8{bottom:552.675000px;}
.y53{bottom:553.215000px;}
.y107{bottom:560.235000px;}
.y130{bottom:560.775000px;}
.y7e{bottom:562.215000px;}
.yde{bottom:562.755000px;}
.y24{bottom:565.095000px;}
.y147{bottom:571.215000px;}
.yc7{bottom:572.475000px;}
.y52{bottom:573.015000px;}
.y19d{bottom:575.355000px;}
.y106{bottom:580.035000px;}
.y12f{bottom:580.575000px;}
.y7d{bottom:582.015000px;}
.ydd{bottom:582.555000px;}
.y23{bottom:584.895000px;}
.y146{bottom:591.015000px;}
.yc6{bottom:592.275000px;}
.y51{bottom:592.815000px;}
.y105{bottom:599.835000px;}
.y12e{bottom:600.555000px;}
.y7c{bottom:601.815000px;}
.ydc{bottom:602.355000px;}
.y1b5{bottom:602.895000px;}
.y22{bottom:604.695000px;}
.y17d{bottom:609.735000px;}
.y145{bottom:610.815000px;}
.yc5{bottom:612.075000px;}
.y50{bottom:612.615000px;}
.y104{bottom:619.815000px;}
.y12d{bottom:620.355000px;}
.y7b{bottom:621.615000px;}
.ydb{bottom:622.155000px;}
.yac{bottom:622.695000px;}
.y21{bottom:624.675000px;}
.y144{bottom:630.615000px;}
.yc4{bottom:632.055000px;}
.y4f{bottom:632.595000px;}
.y19a{bottom:635.655000px;}
.y103{bottom:639.615000px;}
.y12c{bottom:640.155000px;}
.y7a{bottom:641.595000px;}
.yda{bottom:642.135000px;}
.y20{bottom:644.475000px;}
.y1b2{bottom:648.615000px;}
.y143{bottom:650.625000px;}
.yc3{bottom:651.885000px;}
.y4e{bottom:652.425000px;}
.y102{bottom:659.445000px;}
.y12b{bottom:659.985000px;}
.y79{bottom:661.425000px;}
.yd9{bottom:661.965000px;}
.y1f{bottom:664.305000px;}
.y142{bottom:670.425000px;}
.yc2{bottom:671.685000px;}
.y4d{bottom:672.225000px;}
.yd8{bottom:679.245000px;}
.y12a{bottom:679.785000px;}
.y78{bottom:681.225000px;}
.y1e{bottom:684.105000px;}
.y17c{bottom:689.865000px;}
.y141{bottom:690.225000px;}
.yc1{bottom:691.485000px;}
.y4c{bottom:692.025000px;}
.y1b1{bottom:694.365000px;}
.yd7{bottom:699.045000px;}
.y129{bottom:699.765000px;}
.y77{bottom:701.025000px;}
.ya7{bottom:702.825000px;}
.y1d{bottom:703.905000px;}
.y140{bottom:710.025000px;}
.yc0{bottom:711.285000px;}
.y4b{bottom:711.825000px;}
.y199{bottom:715.785000px;}
.yd6{bottom:718.845000px;}
.y101{bottom:719.025000px;}
.y128{bottom:719.565000px;}
.y76{bottom:720.825000px;}
.y1c{bottom:723.885000px;}
.ybf{bottom:727.845000px;}
.y13f{bottom:729.825000px;}
.y4a{bottom:731.805000px;}
.y100{bottom:733.785000px;}
.yd5{bottom:735.405000px;}
.y127{bottom:739.365000px;}
.y75{bottom:740.805000px;}
.y1b{bottom:743.685000px;}
.y13e{bottom:749.805000px;}
.y49{bottom:751.605000px;}
.yff{bottom:758.445000px;}
.y126{bottom:759.165000px;}
.y74{bottom:760.605000px;}
.y1a{bottom:763.485000px;}
.y13d{bottom:769.605000px;}
.y179{bottom:769.965000px;}
.y48{bottom:771.405000px;}
.y1ae{bottom:774.465000px;}
.y198{bottom:776.085000px;}
.y125{bottom:778.965000px;}
.y73{bottom:780.405000px;}
.y19{bottom:783.285000px;}
.y13c{bottom:789.405000px;}
.y124{bottom:798.945000px;}
.y47{bottom:800.205000px;}
.ya5{bottom:802.725000px;}
.y18{bottom:803.085000px;}
.yfe{bottom:807.945000px;}
.y13b{bottom:809.205000px;}
.y123{bottom:818.745000px;}
.y46{bottom:820.005000px;}
.y1ad{bottom:820.365000px;}
.y197{bottom:821.805000px;}
.y17{bottom:823.065000px;}
.y72{bottom:829.005000px;}
.yfd{bottom:832.785000px;}
.y122{bottom:838.545000px;}
.y45{bottom:839.985000px;}
.y16{bottom:842.865000px;}
.y71{bottom:848.985000px;}
.y175{bottom:850.065000px;}
.yfc{bottom:857.445000px;}
.y121{bottom:858.345000px;}
.y44{bottom:859.785000px;}
.y1ac{bottom:860.685000px;}
.y15{bottom:862.665000px;}
.y70{bottom:868.785000px;}
.y120{bottom:873.105000px;}
.y43{bottom:879.585000px;}
.y193{bottom:882.105000px;}
.yfa{bottom:882.285000px;}
.y14{bottom:882.465000px;}
.y6f{bottom:888.585000px;}
.y11f{bottom:897.990000px;}
.y42{bottom:899.430000px;}
.y13{bottom:907.530000px;}
.y6e{bottom:908.430000px;}
.y171{bottom:918.330000px;}
.y41{bottom:919.230000px;}
.y1ab{bottom:921.030000px;}
.yf9{bottom:922.650000px;}
.y12{bottom:922.830000px;}
.y6d{bottom:928.230000px;}
.y40{bottom:939.210000px;}
.yf8{bottom:947.490000px;}
.y6c{bottom:948.210000px;}
.y11{bottom:950.550000px;}
.y3f{bottom:959.010000px;}
.y192{bottom:962.250000px;}
.y6b{bottom:968.010000px;}
.y10{bottom:969.450000px;}
.yf7{bottom:972.150000px;}
.y3e{bottom:978.810000px;}
.y1aa{bottom:981.330000px;}
.y6a{bottom:987.810000px;}
.yf6{bottom:996.990000px;}
.y16f{bottom:998.430000px;}
.yf{bottom:1001.130000px;}
.y3d{bottom:1007.610000px;}
.y3c{bottom:1027.410000px;}
.y9{bottom:1045.410000px;}
.y1{bottom:1063.050000px;}
.y7{bottom:1097.250000px;}
.h7{height:2.581875px;}
.h12{height:19.800000px;}
.hc{height:21.420000px;}
.h19{height:22.500000px;}
.h16{height:23.940000px;}
.h17{height:24.120000px;}
.he{height:29.464453px;}
.h8{height:33.480000px;}
.h10{height:34.855313px;}
.h22{height:39.600000px;}
.h18{height:39.636000px;}
.h11{height:42.164648px;}
.h1c{height:45.000000px;}
.h23{height:45.024258px;}
.h21{height:45.036000px;}
.h4{height:46.736719px;}
.hf{height:53.224453px;}
.h5{height:53.573906px;}
.ha{height:59.383125px;}
.h20{height:59.400000px;}
.h1f{height:59.580000px;}
.h1d{height:59.616000px;}
.h3{height:63.500977px;}
.h9{height:64.546875px;}
.hb{height:65.884219px;}
.h1b{height:67.500000px;}
.h1a{height:67.536000px;}
.hd{height:67.565039px;}
.h1e{height:79.200000px;}
.h15{height:79.380000px;}
.h14{height:79.416000px;}
.h13{height:99.180000px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.we{width:33.840000px;}
.w14{width:63.000000px;}
.w10{width:63.360000px;}
.w15{width:79.776000px;}
.w11{width:80.136000px;}
.w6{width:113.076000px;}
.w3{width:137.556000px;}
.wb{width:179.850000px;}
.wa{width:180.210000px;}
.w8{width:188.490000px;}
.w13{width:219.630000px;}
.wf{width:219.990000px;}
.wd{width:244.110000px;}
.w16{width:301.530000px;}
.w12{width:301.890000px;}
.wc{width:328.935000px;}
.w7{width:480.525000px;}
.w9{width:499.215000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.x12{left:54.720000px;}
.x6{left:64.799987px;}
.xe{left:75.239987px;}
.xc{left:80.999987px;}
.xb{left:86.075987px;}
.x21{left:96.515987px;}
.x24{left:102.275987px;}
.x1a{left:106.596000px;}
.xd{left:108.035987px;}
.x4{left:118.470000px;}
.x22{left:123.515987px;}
.x23{left:129.275987px;}
.x25{left:130.356000px;}
.x19{left:156.989987px;}
.x1c{left:159.870000px;}
.x1f{left:165.089987px;}
.x13{left:168.510000px;}
.x18{left:190.289987px;}
.x20{left:194.609987px;}
.x16{left:200.189987px;}
.x11{left:202.349987px;}
.x7{left:217.109987px;}
.x9{left:272.234987px;}
.x10{left:280.694987px;}
.xa{left:313.274987px;}
.x26{left:350.715000px;}
.x27{left:414.435000px;}
.x8{left:446.504987px;}
.x1d{left:489.165000px;}
.x28{left:494.925000px;}
.x1b{left:606.165000px;}
.x14{left:649.950000px;}
.x3{left:702.510000px;}
.x15{left:709.169987px;}
.x17{left:710.249987px;}
.x1e{left:721.049987px;}
.x5{left:829.260000px;}
.xf{left:834.659987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.225067pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094720pt;}
.ls6{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.272533pt;}
.ls8{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-3.100160pt;}
._16{margin-left:-2.185813pt;}
._0{margin-left:-0.960000pt;}
._11{width:0.936320pt;}
._1{width:1.973333pt;}
._12{width:3.505920pt;}
._1a{width:4.431360pt;}
._18{width:5.360000pt;}
._14{width:6.374400pt;}
._13{width:7.277440pt;}
._1c{width:8.647680pt;}
._6{width:9.600000pt;}
._1f{width:10.942720pt;}
._1b{width:12.111360pt;}
._19{width:14.302080pt;}
._1d{width:15.589760pt;}
._f{width:16.842667pt;}
._1e{width:17.852800pt;}
._25{width:19.654400pt;}
._17{width:21.214720pt;}
._21{width:23.107200pt;}
._20{width:24.169600pt;}
._23{width:25.358080pt;}
._27{width:27.008000pt;}
._35{width:27.901440pt;}
._36{width:29.022720pt;}
._44{width:30.968960pt;}
._46{width:32.190720pt;}
._34{width:33.436160pt;}
._33{width:34.528000pt;}
._41{width:35.792640pt;}
._2e{width:36.736000pt;}
._29{width:38.053760pt;}
._28{width:39.043200pt;}
._37{width:40.391040pt;}
._43{width:42.549120pt;}
._24{width:43.824000pt;}
._3f{width:45.596800pt;}
._42{width:50.762880pt;}
._2b{width:52.502400pt;}
._22{width:53.651200pt;}
._2d{width:55.211520pt;}
._3c{width:56.486400pt;}
._2f{width:61.034880pt;}
._39{width:62.223360pt;}
._3d{width:64.826240pt;}
._3e{width:66.081280pt;}
._7{width:67.808853pt;}
._3b{width:75.715840pt;}
._2a{width:77.130240pt;}
._40{width:80.954880pt;}
._31{width:86.410453pt;}
._10{width:88.586667pt;}
._32{width:90.048000pt;}
._38{width:92.269440pt;}
._26{width:109.745920pt;}
._3a{width:110.914560pt;}
._8{width:136.960000pt;}
._45{width:156.668587pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._30{width:257.131520pt;}
._2c{width:268.379307pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:5.120000pt;}
.ye{bottom:5.280000pt;}
.y170{bottom:6.400000pt;}
.y187{bottom:7.520000pt;}
.y1b4{bottom:7.546667pt;}
.y178{bottom:8.640000pt;}
.y6{bottom:11.040000pt;}
.y17b{bottom:13.920000pt;}
.y19c{bottom:13.946667pt;}
.y1a3{bottom:14.120000pt;}
.y8{bottom:16.160000pt;}
.y185{bottom:16.320000pt;}
.y1a8{bottom:16.346667pt;}
.y1af{bottom:16.480000pt;}
.y182{bottom:17.440000pt;}
.yab{bottom:22.720000pt;}
.y191{bottom:22.746667pt;}
.yfb{bottom:22.760000pt;}
.y174{bottom:22.880000pt;}
.y1a1{bottom:22.920000pt;}
.y186{bottom:25.120000pt;}
.y1a9{bottom:25.146667pt;}
.y1b0{bottom:25.280000pt;}
.y1b3{bottom:25.306667pt;}
.y176{bottom:26.400000pt;}
.yc{bottom:30.720000pt;}
.y189{bottom:31.520000pt;}
.y190{bottom:31.546667pt;}
.y194{bottom:31.560000pt;}
.y172{bottom:31.680000pt;}
.y19b{bottom:31.706667pt;}
.y1a2{bottom:31.720000pt;}
.y181{bottom:35.200000pt;}
.y5{bottom:35.840000pt;}
.yaa{bottom:40.320000pt;}
.yae{bottom:40.346667pt;}
.y195{bottom:40.360000pt;}
.y173{bottom:40.480000pt;}
.y17e{bottom:40.506667pt;}
.y18b{bottom:40.520000pt;}
.y183{bottom:44.000000pt;}
.y177{bottom:44.040000pt;}
.yb{bottom:48.960000pt;}
.y18e{bottom:49.120000pt;}
.y17a{bottom:49.280000pt;}
.y17f{bottom:49.306667pt;}
.yb1{bottom:57.920000pt;}
.ya9{bottom:58.080000pt;}
.yad{bottom:58.106667pt;}
.y196{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ya{bottom:67.040000pt;}
.ya8{bottom:75.680000pt;}
.y3{bottom:85.626667pt;}
.yf5{bottom:86.560000pt;}
.y13a{bottom:87.360000pt;}
.y3b{bottom:88.640000pt;}
.ya4{bottom:89.600000pt;}
.y1c6{bottom:89.920000pt;}
.y11e{bottom:92.320000pt;}
.y69{bottom:95.840000pt;}
.y16e{bottom:102.080000pt;}
.yf4{bottom:104.320000pt;}
.y139{bottom:105.120000pt;}
.y3a{bottom:106.400000pt;}
.ya3{bottom:107.200000pt;}
.y1c5{bottom:107.680000pt;}
.y11d{bottom:110.080000pt;}
.y2{bottom:111.706667pt;}
.y15d{bottom:111.840000pt;}
.y68{bottom:113.440000pt;}
.y18f{bottom:115.200000pt;}
.y138{bottom:119.840000pt;}
.yf3{bottom:121.920000pt;}
.y39{bottom:124.000000pt;}
.ya2{bottom:124.800000pt;}
.y1c4{bottom:125.280000pt;}
.y1a7{bottom:127.040000pt;}
.y11c{bottom:127.680000pt;}
.y15c{bottom:129.440000pt;}
.y67{bottom:131.040000pt;}
.y16d{bottom:137.466667pt;}
.y8e{bottom:139.066667pt;}
.yf2{bottom:139.546667pt;}
.y38{bottom:141.626667pt;}
.ya1{bottom:142.586667pt;}
.y1c3{bottom:145.146667pt;}
.y11b{bottom:145.306667pt;}
.y15b{bottom:147.066667pt;}
.y66{bottom:148.666667pt;}
.y16c{bottom:155.066667pt;}
.y8d{bottom:156.666667pt;}
.y37{bottom:159.226667pt;}
.ya0{bottom:160.186667pt;}
.ybe{bottom:160.666667pt;}
.y1c2{bottom:162.746667pt;}
.y11a{bottom:162.906667pt;}
.y15a{bottom:164.666667pt;}
.yf1{bottom:165.146667pt;}
.y65{bottom:166.266667pt;}
.y1a6{bottom:167.706667pt;}
.y16b{bottom:172.666667pt;}
.y8c{bottom:174.266667pt;}
.y36{bottom:176.826667pt;}
.y9f{bottom:177.786667pt;}
.ybd{bottom:178.266667pt;}
.y1c1{bottom:180.346667pt;}
.y119{bottom:180.506667pt;}
.y159{bottom:182.266667pt;}
.yf0{bottom:182.746667pt;}
.y64{bottom:184.026667pt;}
.y18d{bottom:186.426667pt;}
.y16a{bottom:190.266667pt;}
.y8b{bottom:192.026667pt;}
.y35{bottom:194.586667pt;}
.y9e{bottom:195.386667pt;}
.ybc{bottom:196.026667pt;}
.y1c0{bottom:197.946667pt;}
.y118{bottom:198.266667pt;}
.y158{bottom:200.026667pt;}
.yef{bottom:200.506667pt;}
.y63{bottom:201.626667pt;}
.y169{bottom:208.026667pt;}
.y8a{bottom:209.626667pt;}
.y34{bottom:212.186667pt;}
.y9d{bottom:212.986667pt;}
.ybb{bottom:213.626667pt;}
.y1bf{bottom:215.546667pt;}
.y117{bottom:215.866667pt;}
.y157{bottom:217.626667pt;}
.yee{bottom:218.106667pt;}
.y62{bottom:219.226667pt;}
.y1a5{bottom:221.306667pt;}
.y168{bottom:225.626667pt;}
.y89{bottom:227.226667pt;}
.y9c{bottom:230.746667pt;}
.yba{bottom:231.226667pt;}
.y1be{bottom:233.306667pt;}
.y116{bottom:233.466667pt;}
.y156{bottom:235.226667pt;}
.yed{bottom:235.706667pt;}
.y61{bottom:236.826667pt;}
.y33{bottom:237.786667pt;}
.y167{bottom:243.226667pt;}
.y88{bottom:244.826667pt;}
.y9b{bottom:248.346667pt;}
.y1bd{bottom:250.906667pt;}
.y115{bottom:251.066667pt;}
.y155{bottom:252.826667pt;}
.yec{bottom:253.306667pt;}
.y60{bottom:254.426667pt;}
.y32{bottom:255.386667pt;}
.yb9{bottom:256.826667pt;}
.y166{bottom:260.826667pt;}
.y87{bottom:262.426667pt;}
.y9a{bottom:265.946667pt;}
.y1bc{bottom:268.506667pt;}
.y114{bottom:268.666667pt;}
.y154{bottom:270.426667pt;}
.yeb{bottom:270.906667pt;}
.yd4{bottom:271.546667pt;}
.y5f{bottom:272.186667pt;}
.y31{bottom:272.986667pt;}
.yb8{bottom:274.426667pt;}
.y1a4{bottom:274.746667pt;}
.y18c{bottom:275.226667pt;}
.y165{bottom:278.426667pt;}
.y86{bottom:280.186667pt;}
.y99{bottom:283.546667pt;}
.y1bb{bottom:286.106667pt;}
.y113{bottom:286.426667pt;}
.y153{bottom:288.186667pt;}
.yea{bottom:288.506667pt;}
.yd3{bottom:289.306667pt;}
.y5e{bottom:289.786667pt;}
.y30{bottom:290.746667pt;}
.yb7{bottom:292.186667pt;}
.y164{bottom:296.186667pt;}
.y85{bottom:297.786667pt;}
.y98{bottom:301.146667pt;}
.y1ba{bottom:303.706667pt;}
.y112{bottom:304.026667pt;}
.y152{bottom:305.786667pt;}
.ye9{bottom:306.266667pt;}
.yd2{bottom:306.906667pt;}
.y5d{bottom:307.386667pt;}
.y2f{bottom:308.346667pt;}
.yb6{bottom:309.786667pt;}
.y163{bottom:313.786667pt;}
.y84{bottom:315.386667pt;}
.y18a{bottom:315.866667pt;}
.y1b9{bottom:316.986667pt;}
.y97{bottom:318.906667pt;}
.y111{bottom:321.626667pt;}
.y151{bottom:323.386667pt;}
.ye8{bottom:323.866667pt;}
.yd1{bottom:324.506667pt;}
.y5c{bottom:324.986667pt;}
.y2e{bottom:325.946667pt;}
.yb5{bottom:327.386667pt;}
.y162{bottom:331.386667pt;}
.y83{bottom:332.986667pt;}
.y96{bottom:336.506667pt;}
.y110{bottom:339.226667pt;}
.ye7{bottom:341.466667pt;}
.yd0{bottom:342.106667pt;}
.y5b{bottom:342.586667pt;}
.y2d{bottom:343.546667pt;}
.yb4{bottom:344.986667pt;}
.y1a0{bottom:345.946667pt;}
.y150{bottom:348.986667pt;}
.y82{bottom:350.586667pt;}
.y95{bottom:354.106667pt;}
.y10f{bottom:356.866667pt;}
.y1b8{bottom:357.666667pt;}
.ye6{bottom:359.106667pt;}
.ycf{bottom:359.746667pt;}
.y5a{bottom:360.386667pt;}
.y2c{bottom:361.186667pt;}
.yb3{bottom:362.626667pt;}
.y14f{bottom:366.626667pt;}
.y137{bottom:367.106667pt;}
.y81{bottom:368.386667pt;}
.y188{bottom:369.506667pt;}
.y94{bottom:371.746667pt;}
.y10e{bottom:374.626667pt;}
.ye5{bottom:376.706667pt;}
.yce{bottom:377.506667pt;}
.y161{bottom:377.986667pt;}
.y2b{bottom:378.946667pt;}
.yb2{bottom:380.386667pt;}
.y14e{bottom:384.386667pt;}
.y136{bottom:384.706667pt;}
.y59{bottom:385.986667pt;}
.y93{bottom:389.346667pt;}
.y10d{bottom:392.226667pt;}
.yb0{bottom:393.506667pt;}
.ye4{bottom:394.466667pt;}
.ycd{bottom:395.106667pt;}
.y160{bottom:395.586667pt;}
.y2a{bottom:396.546667pt;}
.y19f{bottom:399.586667pt;}
.y14d{bottom:401.986667pt;}
.y135{bottom:402.306667pt;}
.y58{bottom:403.586667pt;}
.y92{bottom:407.106667pt;}
.y10c{bottom:409.826667pt;}
.y1b7{bottom:411.106667pt;}
.ye3{bottom:412.066667pt;}
.y15f{bottom:413.186667pt;}
.y29{bottom:414.146667pt;}
.y14c{bottom:419.586667pt;}
.y134{bottom:419.906667pt;}
.ycc{bottom:420.706667pt;}
.y57{bottom:421.186667pt;}
.y91{bottom:424.706667pt;}
.y10b{bottom:427.426667pt;}
.ye2{bottom:429.666667pt;}
.y15e{bottom:430.786667pt;}
.y28{bottom:431.746667pt;}
.y14b{bottom:437.186667pt;}
.y133{bottom:437.666667pt;}
.ycb{bottom:438.306667pt;}
.y56{bottom:438.786667pt;}
.y184{bottom:440.706667pt;}
.y90{bottom:442.306667pt;}
.y10a{bottom:445.026667pt;}
.ye1{bottom:447.266667pt;}
.y27{bottom:449.346667pt;}
.y14a{bottom:454.786667pt;}
.yca{bottom:455.906667pt;}
.y55{bottom:456.546667pt;}
.y8f{bottom:456.866667pt;}
.y109{bottom:462.786667pt;}
.y132{bottom:463.266667pt;}
.y80{bottom:464.546667pt;}
.y1b6{bottom:464.706667pt;}
.ye0{bottom:464.866667pt;}
.y26{bottom:467.106667pt;}
.y19e{bottom:470.786667pt;}
.y149{bottom:472.546667pt;}
.yc9{bottom:473.666667pt;}
.y54{bottom:474.146667pt;}
.y108{bottom:480.386667pt;}
.y131{bottom:480.866667pt;}
.y180{bottom:481.346667pt;}
.y7f{bottom:482.146667pt;}
.yaf{bottom:482.306667pt;}
.ydf{bottom:482.626667pt;}
.y25{bottom:484.706667pt;}
.y148{bottom:490.146667pt;}
.yc8{bottom:491.266667pt;}
.y53{bottom:491.746667pt;}
.y107{bottom:497.986667pt;}
.y130{bottom:498.466667pt;}
.y7e{bottom:499.746667pt;}
.yde{bottom:500.226667pt;}
.y24{bottom:502.306667pt;}
.y147{bottom:507.746667pt;}
.yc7{bottom:508.866667pt;}
.y52{bottom:509.346667pt;}
.y19d{bottom:511.426667pt;}
.y106{bottom:515.586667pt;}
.y12f{bottom:516.066667pt;}
.y7d{bottom:517.346667pt;}
.ydd{bottom:517.826667pt;}
.y23{bottom:519.906667pt;}
.y146{bottom:525.346667pt;}
.yc6{bottom:526.466667pt;}
.y51{bottom:526.946667pt;}
.y105{bottom:533.186667pt;}
.y12e{bottom:533.826667pt;}
.y7c{bottom:534.946667pt;}
.ydc{bottom:535.426667pt;}
.y1b5{bottom:535.906667pt;}
.y22{bottom:537.506667pt;}
.y17d{bottom:541.986667pt;}
.y145{bottom:542.946667pt;}
.yc5{bottom:544.066667pt;}
.y50{bottom:544.546667pt;}
.y104{bottom:550.946667pt;}
.y12d{bottom:551.426667pt;}
.y7b{bottom:552.546667pt;}
.ydb{bottom:553.026667pt;}
.yac{bottom:553.506667pt;}
.y21{bottom:555.266667pt;}
.y144{bottom:560.546667pt;}
.yc4{bottom:561.826667pt;}
.y4f{bottom:562.306667pt;}
.y19a{bottom:565.026667pt;}
.y103{bottom:568.546667pt;}
.y12c{bottom:569.026667pt;}
.y7a{bottom:570.306667pt;}
.yda{bottom:570.786667pt;}
.y20{bottom:572.866667pt;}
.y1b2{bottom:576.546667pt;}
.y143{bottom:578.333333pt;}
.yc3{bottom:579.453333pt;}
.y4e{bottom:579.933333pt;}
.y102{bottom:586.173333pt;}
.y12b{bottom:586.653333pt;}
.y79{bottom:587.933333pt;}
.yd9{bottom:588.413333pt;}
.y1f{bottom:590.493333pt;}
.y142{bottom:595.933333pt;}
.yc2{bottom:597.053333pt;}
.y4d{bottom:597.533333pt;}
.yd8{bottom:603.773333pt;}
.y12a{bottom:604.253333pt;}
.y78{bottom:605.533333pt;}
.y1e{bottom:608.093333pt;}
.y17c{bottom:613.213333pt;}
.y141{bottom:613.533333pt;}
.yc1{bottom:614.653333pt;}
.y4c{bottom:615.133333pt;}
.y1b1{bottom:617.213333pt;}
.yd7{bottom:621.373333pt;}
.y129{bottom:622.013333pt;}
.y77{bottom:623.133333pt;}
.ya7{bottom:624.733333pt;}
.y1d{bottom:625.693333pt;}
.y140{bottom:631.133333pt;}
.yc0{bottom:632.253333pt;}
.y4b{bottom:632.733333pt;}
.y199{bottom:636.253333pt;}
.yd6{bottom:638.973333pt;}
.y101{bottom:639.133333pt;}
.y128{bottom:639.613333pt;}
.y76{bottom:640.733333pt;}
.y1c{bottom:643.453333pt;}
.ybf{bottom:646.973333pt;}
.y13f{bottom:648.733333pt;}
.y4a{bottom:650.493333pt;}
.y100{bottom:652.253333pt;}
.yd5{bottom:653.693333pt;}
.y127{bottom:657.213333pt;}
.y75{bottom:658.493333pt;}
.y1b{bottom:661.053333pt;}
.y13e{bottom:666.493333pt;}
.y49{bottom:668.093333pt;}
.yff{bottom:674.173333pt;}
.y126{bottom:674.813333pt;}
.y74{bottom:676.093333pt;}
.y1a{bottom:678.653333pt;}
.y13d{bottom:684.093333pt;}
.y179{bottom:684.413333pt;}
.y48{bottom:685.693333pt;}
.y1ae{bottom:688.413333pt;}
.y198{bottom:689.853333pt;}
.y125{bottom:692.413333pt;}
.y73{bottom:693.693333pt;}
.y19{bottom:696.253333pt;}
.y13c{bottom:701.693333pt;}
.y124{bottom:710.173333pt;}
.y47{bottom:711.293333pt;}
.ya5{bottom:713.533333pt;}
.y18{bottom:713.853333pt;}
.yfe{bottom:718.173333pt;}
.y13b{bottom:719.293333pt;}
.y123{bottom:727.773333pt;}
.y46{bottom:728.893333pt;}
.y1ad{bottom:729.213333pt;}
.y197{bottom:730.493333pt;}
.y17{bottom:731.613333pt;}
.y72{bottom:736.893333pt;}
.yfd{bottom:740.253333pt;}
.y122{bottom:745.373333pt;}
.y45{bottom:746.653333pt;}
.y16{bottom:749.213333pt;}
.y71{bottom:754.653333pt;}
.y175{bottom:755.613333pt;}
.yfc{bottom:762.173333pt;}
.y121{bottom:762.973333pt;}
.y44{bottom:764.253333pt;}
.y1ac{bottom:765.053333pt;}
.y15{bottom:766.813333pt;}
.y70{bottom:772.253333pt;}
.y120{bottom:776.093333pt;}
.y43{bottom:781.853333pt;}
.y193{bottom:784.093333pt;}
.yfa{bottom:784.253333pt;}
.y14{bottom:784.413333pt;}
.y6f{bottom:789.853333pt;}
.y11f{bottom:798.213333pt;}
.y42{bottom:799.493333pt;}
.y13{bottom:806.693333pt;}
.y6e{bottom:807.493333pt;}
.y171{bottom:816.293333pt;}
.y41{bottom:817.093333pt;}
.y1ab{bottom:818.693333pt;}
.yf9{bottom:820.133333pt;}
.y12{bottom:820.293333pt;}
.y6d{bottom:825.093333pt;}
.y40{bottom:834.853333pt;}
.yf8{bottom:842.213333pt;}
.y6c{bottom:842.853333pt;}
.y11{bottom:844.933333pt;}
.y3f{bottom:852.453333pt;}
.y192{bottom:855.333333pt;}
.y6b{bottom:860.453333pt;}
.y10{bottom:861.733333pt;}
.yf7{bottom:864.133333pt;}
.y3e{bottom:870.053333pt;}
.y1aa{bottom:872.293333pt;}
.y6a{bottom:878.053333pt;}
.yf6{bottom:886.213333pt;}
.y16f{bottom:887.493333pt;}
.yf{bottom:889.893333pt;}
.y3d{bottom:895.653333pt;}
.y3c{bottom:913.253333pt;}
.y9{bottom:929.253333pt;}
.y1{bottom:944.933333pt;}
.y7{bottom:975.333333pt;}
.h7{height:2.295000pt;}
.h12{height:17.600000pt;}
.hc{height:19.040000pt;}
.h19{height:20.000000pt;}
.h16{height:21.280000pt;}
.h17{height:21.440000pt;}
.he{height:26.190625pt;}
.h8{height:29.760000pt;}
.h10{height:30.982500pt;}
.h22{height:35.200000pt;}
.h18{height:35.232000pt;}
.h11{height:37.479688pt;}
.h1c{height:40.000000pt;}
.h23{height:40.021563pt;}
.h21{height:40.032000pt;}
.h4{height:41.543750pt;}
.hf{height:47.310625pt;}
.h5{height:47.621250pt;}
.ha{height:52.785000pt;}
.h20{height:52.800000pt;}
.h1f{height:52.960000pt;}
.h1d{height:52.992000pt;}
.h3{height:56.445312pt;}
.h9{height:57.375000pt;}
.hb{height:58.563750pt;}
.h1b{height:60.000000pt;}
.h1a{height:60.032000pt;}
.hd{height:60.057813pt;}
.h1e{height:70.400000pt;}
.h15{height:70.560000pt;}
.h14{height:70.592000pt;}
.h13{height:88.160000pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.we{width:30.080000pt;}
.w14{width:56.000000pt;}
.w10{width:56.320000pt;}
.w15{width:70.912000pt;}
.w11{width:71.232000pt;}
.w6{width:100.512000pt;}
.w3{width:122.272000pt;}
.wb{width:159.866667pt;}
.wa{width:160.186667pt;}
.w8{width:167.546667pt;}
.w13{width:195.226667pt;}
.wf{width:195.546667pt;}
.wd{width:216.986667pt;}
.w16{width:268.026667pt;}
.w12{width:268.346667pt;}
.wc{width:292.386667pt;}
.w7{width:427.133333pt;}
.w9{width:443.746667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.x12{left:48.640000pt;}
.x6{left:57.599988pt;}
.xe{left:66.879988pt;}
.xc{left:71.999988pt;}
.xb{left:76.511988pt;}
.x21{left:85.791988pt;}
.x24{left:90.911988pt;}
.x1a{left:94.752000pt;}
.xd{left:96.031988pt;}
.x4{left:105.306667pt;}
.x22{left:109.791988pt;}
.x23{left:114.911988pt;}
.x25{left:115.872000pt;}
.x19{left:139.546655pt;}
.x1c{left:142.106667pt;}
.x1f{left:146.746655pt;}
.x13{left:149.786667pt;}
.x18{left:169.146655pt;}
.x20{left:172.986655pt;}
.x16{left:177.946655pt;}
.x11{left:179.866655pt;}
.x7{left:192.986655pt;}
.x9{left:241.986655pt;}
.x10{left:249.506655pt;}
.xa{left:278.466655pt;}
.x26{left:311.746667pt;}
.x27{left:368.386667pt;}
.x8{left:396.893322pt;}
.x1d{left:434.813333pt;}
.x28{left:439.933333pt;}
.x1b{left:538.813333pt;}
.x14{left:577.733333pt;}
.x3{left:624.453333pt;}
.x15{left:630.373322pt;}
.x17{left:631.333322pt;}
.x1e{left:640.933322pt;}
.x5{left:737.120000pt;}
.xf{left:741.919988pt;}
}




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