
    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_56d7cfe174ab081da28e24e9.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_3d7ce1781df6941099aff7bb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_649ae09d0983e4b96d974c37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.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_ea8bd0ba67a5e6e21353977a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_722c639c7c3a20e033bf415b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891602;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_1d671badc07825687f464d5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891602;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cc3ad87225fde81e3033bd1e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d6f0494c93da69b8a7b92160.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_131070eba90544ad1d4f9afd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_112cd12d449d31d8f63e2c02.woff2')format("woff");}.fff{font-family:fff;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.136080px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.496080px;}
.ls2{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.900000px;}
.ls11{letter-spacing:16.506720px;}
.ls8{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.lsf{letter-spacing:64.170720px;}
.ls1{letter-spacing:1335.900000px;}
.lsd{letter-spacing:1336.080000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.wsc{word-spacing:-59.760000px;}
.wsa{word-spacing:-48.600000px;}
.wsb{word-spacing:-48.240000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws9{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._14{margin-left:-6.372000px;}
._1{margin-left:-1.242960px;}
._0{width:1.048320px;}
._a{width:2.161440px;}
._6{width:3.185280px;}
._29{width:4.230000px;}
._d{width:5.232960px;}
._c{width:6.370560px;}
._b{width:8.020080px;}
._e{width:9.022560px;}
._9{width:10.124640px;}
._7{width:11.319120px;}
._8{width:12.911760px;}
._2f{width:13.920480px;}
._f{width:15.642000px;}
._10{width:16.722720px;}
._19{width:17.894880px;}
._5{width:19.737360px;}
._1c{width:21.095280px;}
._12{width:23.028000px;}
._11{width:24.230880px;}
._13{width:25.816320px;}
._23{width:27.310320px;}
._24{width:29.120400px;}
._28{width:30.639600px;}
._1f{width:32.569200px;}
._1e{width:33.612480px;}
._27{width:34.720560px;}
._2e{width:35.796240px;}
._2c{width:36.839520px;}
._33{width:38.090880px;}
._34{width:39.164880px;}
._20{width:40.695840px;}
._2a{width:42.668640px;}
._35{width:43.684560px;}
._1d{width:44.761440px;}
._1a{width:45.776160px;}
._17{width:47.358000px;}
._22{width:48.522960px;}
._16{width:49.626960px;}
._15{width:50.868000px;}
._32{width:52.114560px;}
._31{width:54.948720px;}
._2b{width:56.352960px;}
._1b{width:58.389120px;}
._18{width:59.724000px;}
._30{width:60.791040px;}
._25{width:65.584080px;}
._26{width:66.751920px;}
._36{width:71.744400px;}
._21{width:74.819520px;}
._2d{width:83.623680px;}
._3{width:197.604000px;}
._4{width:201.036000px;}
._2{width:833.938080px;}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fs3{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fse{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y20{bottom:0.360000px;}
.y7{bottom:2.520000px;}
.y49{bottom:2.880000px;}
.y3f{bottom:3.060000px;}
.y23{bottom:3.240000px;}
.y10{bottom:3.960000px;}
.y77{bottom:4.140000px;}
.y24{bottom:4.680000px;}
.y191{bottom:6.300000px;}
.y5{bottom:8.460000px;}
.y98{bottom:8.496000px;}
.y6{bottom:16.380000px;}
.y99{bottom:16.416000px;}
.y47{bottom:18.540000px;}
.y3e{bottom:19.440000px;}
.y190{bottom:20.160000px;}
.yf{bottom:22.320000px;}
.ye{bottom:33.120000px;}
.y46{bottom:34.020000px;}
.y9a{bottom:35.640000px;}
.y3d{bottom:36.000000px;}
.y18f{bottom:47.700000px;}
.y8{bottom:49.140000px;}
.y45{bottom:49.500000px;}
.yd{bottom:51.480000px;}
.y3c{bottom:52.380000px;}
.y97{bottom:59.940000px;}
.y44{bottom:65.160000px;}
.yc{bottom:65.700000px;}
.y3b{bottom:68.760000px;}
.y4{bottom:73.476000px;}
.y43{bottom:80.670000px;}
.y3a{bottom:85.140000px;}
.y42{bottom:96.150000px;}
.y39{bottom:101.520000px;}
.yb{bottom:103.680000px;}
.y11{bottom:103.860000px;}
.y41{bottom:111.630000px;}
.y18c{bottom:114.696000px;}
.y130{bottom:115.416000px;}
.y38{bottom:117.945000px;}
.y167{bottom:119.196000px;}
.y96{bottom:123.876000px;}
.y12f{bottom:129.276000px;}
.yd1{bottom:130.356000px;}
.y18b{bottom:131.976000px;}
.y54{bottom:133.956000px;}
.y37{bottom:134.325000px;}
.y8c{bottom:134.676000px;}
.ya{bottom:136.110000px;}
.y166{bottom:136.296000px;}
.y95{bottom:141.156000px;}
.y12e{bottom:142.956000px;}
.yd0{bottom:147.636000px;}
.y18a{bottom:149.256000px;}
.y36{bottom:150.705000px;}
.y53{bottom:151.230000px;}
.y8b{bottom:151.950000px;}
.y165{bottom:153.570000px;}
.y12d{bottom:156.810000px;}
.y94{bottom:158.250000px;}
.yfc{bottom:158.430000px;}
.ycf{bottom:164.910000px;}
.y189{bottom:166.350000px;}
.y35{bottom:167.085000px;}
.y52{bottom:168.510000px;}
.y12c{bottom:168.870000px;}
.y8a{bottom:169.050000px;}
.y164{bottom:170.850000px;}
.y93{bottom:175.530000px;}
.yfb{bottom:175.710000px;}
.y50{bottom:179.145000px;}
.yce{bottom:182.190000px;}
.y12b{bottom:183.450000px;}
.y34{bottom:183.465000px;}
.y188{bottom:183.630000px;}
.y51{bottom:185.610000px;}
.y89{bottom:187.410000px;}
.y163{bottom:188.130000px;}
.y92{bottom:192.810000px;}
.yfa{bottom:192.990000px;}
.y4f{bottom:194.805000px;}
.y12a{bottom:197.850000px;}
.y33{bottom:199.845000px;}
.y25{bottom:200.370000px;}
.y187{bottom:200.910000px;}
.ycd{bottom:204.690000px;}
.y162{bottom:205.410000px;}
.y88{bottom:205.770000px;}
.y91{bottom:210.090000px;}
.y4e{bottom:210.285000px;}
.y129{bottom:212.430000px;}
.y32{bottom:216.225000px;}
.ycc{bottom:216.570000px;}
.y186{bottom:218.190000px;}
.y161{bottom:222.690000px;}
.y87{bottom:224.130000px;}
.y4d{bottom:225.765000px;}
.y128{bottom:227.010000px;}
.y90{bottom:227.370000px;}
.y31{bottom:232.605000px;}
.ycb{bottom:233.850000px;}
.y185{bottom:235.470000px;}
.y160{bottom:239.790000px;}
.y4c{bottom:241.245000px;}
.y86{bottom:242.490000px;}
.y127{bottom:243.570000px;}
.y8f{bottom:244.650000px;}
.y30{bottom:248.985000px;}
.yca{bottom:251.130000px;}
.y184{bottom:252.750000px;}
.y126{bottom:254.370000px;}
.y4b{bottom:256.905000px;}
.y15f{bottom:257.070000px;}
.y85{bottom:260.670000px;}
.y8e{bottom:261.750000px;}
.yf9{bottom:261.930000px;}
.y2f{bottom:265.365000px;}
.y125{bottom:268.230000px;}
.yc9{bottom:268.410000px;}
.y183{bottom:269.850000px;}
.y4a{bottom:272.385000px;}
.y15e{bottom:274.350000px;}
.y84{bottom:277.950000px;}
.y8d{bottom:279.030000px;}
.yf8{bottom:279.210000px;}
.y2e{bottom:281.745000px;}
.y11c{bottom:282.810000px;}
.yc8{bottom:285.690000px;}
.y182{bottom:287.130000px;}
.y15d{bottom:291.630000px;}
.y83{bottom:296.310000px;}
.yf7{bottom:296.490000px;}
.y2d{bottom:298.125000px;}
.y11b{bottom:299.910000px;}
.yc7{bottom:302.970000px;}
.y124{bottom:303.150000px;}
.y181{bottom:304.410000px;}
.y15c{bottom:308.910000px;}
.y82{bottom:313.590000px;}
.y2c{bottom:314.505000px;}
.y11a{bottom:317.235000px;}
.yc6{bottom:320.115000px;}
.y123{bottom:320.475000px;}
.y180{bottom:321.735000px;}
.y15b{bottom:326.235000px;}
.y2b{bottom:330.885000px;}
.y81{bottom:330.915000px;}
.y119{bottom:334.515000px;}
.yc5{bottom:337.395000px;}
.y122{bottom:337.755000px;}
.y17f{bottom:339.015000px;}
.y15a{bottom:343.335000px;}
.y2a{bottom:347.265000px;}
.y80{bottom:348.195000px;}
.y118{bottom:352.875000px;}
.yc4{bottom:354.675000px;}
.y121{bottom:355.035000px;}
.y17e{bottom:356.295000px;}
.y159{bottom:360.615000px;}
.y29{bottom:363.645000px;}
.y7f{bottom:365.295000px;}
.yf6{bottom:365.475000px;}
.y117{bottom:370.155000px;}
.yc3{bottom:371.955000px;}
.y120{bottom:372.315000px;}
.y17d{bottom:373.395000px;}
.y158{bottom:377.895000px;}
.y28{bottom:380.055000px;}
.yf5{bottom:382.755000px;}
.y116{bottom:388.515000px;}
.yc2{bottom:389.235000px;}
.y11f{bottom:389.595000px;}
.y17c{bottom:390.675000px;}
.y157{bottom:395.175000px;}
.y27{bottom:396.435000px;}
.y7e{bottom:397.875000px;}
.yf4{bottom:399.855000px;}
.y115{bottom:405.615000px;}
.yc1{bottom:406.515000px;}
.y11e{bottom:406.695000px;}
.y17b{bottom:407.955000px;}
.y156{bottom:412.455000px;}
.y26{bottom:412.815000px;}
.y7d{bottom:415.695000px;}
.yf3{bottom:417.135000px;}
.y114{bottom:422.895000px;}
.yc0{bottom:423.615000px;}
.y11d{bottom:423.975000px;}
.y17a{bottom:425.235000px;}
.y155{bottom:429.555000px;}
.y7c{bottom:433.515000px;}
.yf2{bottom:434.415000px;}
.ybf{bottom:440.895000px;}
.y113{bottom:441.255000px;}
.y179{bottom:442.515000px;}
.y154{bottom:446.835000px;}
.y7b{bottom:451.155000px;}
.yf1{bottom:451.695000px;}
.y112{bottom:457.815000px;}
.ybe{bottom:458.175000px;}
.y178{bottom:459.795000px;}
.y153{bottom:464.115000px;}
.y7a{bottom:468.975000px;}
.y111{bottom:469.875000px;}
.ybd{bottom:475.455000px;}
.y177{bottom:476.895000px;}
.y152{bottom:481.395000px;}
.y110{bottom:484.455000px;}
.y48{bottom:486.075000px;}
.yf0{bottom:486.255000px;}
.y79{bottom:486.795000px;}
.ybc{bottom:492.735000px;}
.y176{bottom:494.175000px;}
.y151{bottom:498.675000px;}
.y10f{bottom:498.855000px;}
.y40{bottom:502.275000px;}
.yef{bottom:503.355000px;}
.y78{bottom:504.615000px;}
.ybb{bottom:510.915000px;}
.y175{bottom:511.455000px;}
.y10e{bottom:513.435000px;}
.y150{bottom:515.955000px;}
.yee{bottom:520.635000px;}
.y76{bottom:522.255000px;}
.yba{bottom:528.195000px;}
.y174{bottom:528.735000px;}
.y10d{bottom:529.995000px;}
.y14f{bottom:533.055000px;}
.yed{bottom:537.915000px;}
.y10c{bottom:540.795000px;}
.y75{bottom:542.235000px;}
.yb9{bottom:545.475000px;}
.y173{bottom:546.015000px;}
.y14e{bottom:550.335000px;}
.y74{bottom:553.035000px;}
.y10b{bottom:554.655000px;}
.yec{bottom:555.195000px;}
.yb8{bottom:562.755000px;}
.y172{bottom:563.115000px;}
.y73{bottom:567.435000px;}
.y14d{bottom:567.615000px;}
.y10a{bottom:569.265000px;}
.yeb{bottom:572.505000px;}
.yb7{bottom:580.065000px;}
.y171{bottom:580.425000px;}
.y72{bottom:584.745000px;}
.y14c{bottom:584.925000px;}
.y109{bottom:586.545000px;}
.yea{bottom:589.785000px;}
.yb6{bottom:597.345000px;}
.y170{bottom:597.705000px;}
.y71{bottom:602.025000px;}
.y14b{bottom:602.205000px;}
.y108{bottom:603.645000px;}
.ye9{bottom:606.885000px;}
.yb5{bottom:614.445000px;}
.y16f{bottom:614.985000px;}
.y70{bottom:619.305000px;}
.y14a{bottom:619.485000px;}
.y107{bottom:620.925000px;}
.ye8{bottom:624.165000px;}
.y22{bottom:627.225000px;}
.yb4{bottom:631.725000px;}
.y16e{bottom:632.265000px;}
.y6f{bottom:636.585000px;}
.y106{bottom:638.205000px;}
.ye7{bottom:641.445000px;}
.yb3{bottom:649.005000px;}
.y16d{bottom:649.545000px;}
.y6e{bottom:653.685000px;}
.y149{bottom:653.865000px;}
.y105{bottom:655.485000px;}
.y21{bottom:658.185000px;}
.ye6{bottom:658.725000px;}
.y1f{bottom:661.065000px;}
.y16c{bottom:666.645000px;}
.y1e{bottom:666.825000px;}
.yb2{bottom:667.365000px;}
.y6d{bottom:670.965000px;}
.y148{bottom:671.145000px;}
.y104{bottom:672.765000px;}
.ye5{bottom:676.005000px;}
.y1d{bottom:683.925000px;}
.yb1{bottom:684.645000px;}
.y6c{bottom:688.245000px;}
.y147{bottom:688.425000px;}
.y103{bottom:690.045000px;}
.ye4{bottom:693.285000px;}
.y1c{bottom:701.205000px;}
.yb0{bottom:702.825000px;}
.y6b{bottom:705.525000px;}
.y146{bottom:705.705000px;}
.y102{bottom:707.145000px;}
.ye3{bottom:710.385000px;}
.y1b{bottom:718.485000px;}
.yaf{bottom:721.185000px;}
.y6a{bottom:722.805000px;}
.y145{bottom:722.985000px;}
.y101{bottom:724.425000px;}
.ye2{bottom:727.665000px;}
.y1a{bottom:735.765000px;}
.yae{bottom:739.545000px;}
.y69{bottom:740.085000px;}
.y100{bottom:741.705000px;}
.ye1{bottom:744.945000px;}
.y16b{bottom:753.045000px;}
.y19{bottom:753.405000px;}
.y68{bottom:757.185000px;}
.y144{bottom:757.365000px;}
.yad{bottom:757.905000px;}
.yff{bottom:758.985000px;}
.ye0{bottom:762.225000px;}
.y16a{bottom:770.145000px;}
.y67{bottom:774.465000px;}
.y18{bottom:774.645000px;}
.yac{bottom:776.265000px;}
.ydf{bottom:779.505000px;}
.y169{bottom:787.425000px;}
.y66{bottom:791.745000px;}
.y143{bottom:791.925000px;}
.yab{bottom:793.545000px;}
.yde{bottom:796.605000px;}
.y168{bottom:804.705000px;}
.y17{bottom:805.605000px;}
.y65{bottom:809.025000px;}
.y142{bottom:809.205000px;}
.yfe{bottom:810.645000px;}
.yaa{bottom:811.725000px;}
.ydd{bottom:813.885000px;}
.y18e{bottom:819.510000px;}
.y64{bottom:826.350000px;}
.ya9{bottom:829.050000px;}
.ydc{bottom:831.210000px;}
.y16{bottom:836.790000px;}
.y63{bottom:843.450000px;}
.y141{bottom:843.630000px;}
.ya8{bottom:846.330000px;}
.yfd{bottom:847.410000px;}
.ydb{bottom:848.490000px;}
.y62{bottom:860.730000px;}
.y140{bottom:860.910000px;}
.ya7{bottom:863.610000px;}
.yda{bottom:865.770000px;}
.y15{bottom:867.750000px;}
.y61{bottom:878.010000px;}
.y13f{bottom:878.190000px;}
.y18d{bottom:879.270000px;}
.ya6{bottom:880.890000px;}
.yd9{bottom:883.050000px;}
.y13e{bottom:892.950000px;}
.y60{bottom:895.290000px;}
.ya5{bottom:897.990000px;}
.y14{bottom:898.890000px;}
.yd8{bottom:900.150000px;}
.y13d{bottom:907.530000px;}
.y5f{bottom:912.570000px;}
.ya4{bottom:915.270000px;}
.yd7{bottom:917.430000px;}
.y13c{bottom:922.110000px;}
.y13{bottom:927.330000px;}
.y5e{bottom:929.850000px;}
.ya3{bottom:932.550000px;}
.yd6{bottom:934.710000px;}
.y13b{bottom:936.510000px;}
.y5d{bottom:946.950000px;}
.ya2{bottom:949.830000px;}
.y13a{bottom:951.090000px;}
.yd5{bottom:951.990000px;}
.y12{bottom:953.610000px;}
.y9{bottom:955.950000px;}
.y5c{bottom:964.230000px;}
.y139{bottom:967.830000px;}
.ya1{bottom:968.190000px;}
.yd4{bottom:969.270000px;}
.y138{bottom:978.630000px;}
.y5b{bottom:981.510000px;}
.ya0{bottom:985.470000px;}
.yd3{bottom:986.550000px;}
.y137{bottom:992.310000px;}
.y5a{bottom:998.790000px;}
.y9f{bottom:1002.570000px;}
.yd2{bottom:1003.650000px;}
.y136{bottom:1004.370000px;}
.y59{bottom:1016.070000px;}
.y135{bottom:1018.950000px;}
.y9e{bottom:1020.930000px;}
.y58{bottom:1033.350000px;}
.y134{bottom:1033.530000px;}
.y9d{bottom:1038.210000px;}
.y133{bottom:1048.110000px;}
.y57{bottom:1050.450000px;}
.y9c{bottom:1055.490000px;}
.y132{bottom:1064.670000px;}
.y56{bottom:1067.730000px;}
.y9b{bottom:1072.800000px;}
.y131{bottom:1075.500000px;}
.y55{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.h12{height:1.620000px;}
.h13{height:4.021875px;}
.hf{height:4.064063px;}
.h14{height:8.636133px;}
.h29{height:13.680000px;}
.h28{height:13.860000px;}
.h1b{height:15.480000px;}
.h23{height:16.920000px;}
.h22{height:17.100000px;}
.h15{height:17.280000px;}
.hc{height:21.114844px;}
.ha{height:21.336328px;}
.h21{height:25.136719px;}
.h26{height:27.147656px;}
.h4{height:27.540000px;}
.h24{height:27.576000px;}
.h6{height:33.683203px;}
.h20{height:34.036523px;}
.h1d{height:37.705078px;}
.h16{height:38.100586px;}
.h7{height:39.336328px;}
.h25{height:39.480328px;}
.h18{height:39.716016px;}
.h1a{height:41.343750px;}
.h5{height:41.726953px;}
.h3{height:42.164648px;}
.h1e{height:43.506914px;}
.h2{height:45.024258px;}
.h1f{height:48.027656px;}
.h2a{height:48.312422px;}
.h2b{height:49.255313px;}
.h1{height:50.800781px;}
.h27{height:52.925625px;}
.h11{height:53.224453px;}
.h2c{height:59.040000px;}
.h8{height:65.884219px;}
.hd{height:72.147305px;}
.h10{height:76.201172px;}
.hb{height:92.965430px;}
.he{height:118.365820px;}
.h19{height:124.236000px;}
.h9{height:143.136000px;}
.h1c{height:284.970000px;}
.h17{height:426.135000px;}
.h0{height:1188.000000px;}
.wd{width:35.100000px;}
.w2{width:35.280000px;}
.wa{width:95.040000px;}
.wb{width:105.516000px;}
.w9{width:113.796000px;}
.w14{width:116.136000px;}
.w11{width:126.756000px;}
.wc{width:158.790000px;}
.w5{width:165.960000px;}
.w10{width:170.130000px;}
.w16{width:179.850000px;}
.w13{width:180.030000px;}
.w8{width:205.095000px;}
.wf{width:253.470000px;}
.w12{width:275.790000px;}
.w15{width:275.970000px;}
.w17{width:358.230000px;}
.w7{width:615.885000px;}
.w4{width:648.150000px;}
.w3{width:710.205000px;}
.we{width:710.430000px;}
.w6{width:901.440000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x14{left:3.240000px;}
.x2e{left:6.839986px;}
.x5{left:8.100000px;}
.x23{left:12.060000px;}
.x27{left:17.460000px;}
.x37{left:22.680000px;}
.x25{left:24.300000px;}
.x39{left:26.280000px;}
.x22{left:28.620000px;}
.x4a{left:30.600000px;}
.x2a{left:34.020000px;}
.x2c{left:37.800000px;}
.x28{left:41.400000px;}
.x2b{left:43.560000px;}
.x6{left:45.540000px;}
.x15{left:46.800000px;}
.x18{left:48.419986px;}
.x2f{left:52.200000px;}
.x1{left:53.999986px;}
.x4b{left:55.440000px;}
.x19{left:59.759986px;}
.x1a{left:60.839986px;}
.x30{left:63.539986px;}
.x38{left:64.650000px;}
.x17{left:65.745000px;}
.xa{left:70.416000px;}
.x3f{left:75.270000px;}
.x29{left:77.220000px;}
.x41{left:79.410000px;}
.xe{left:82.799986px;}
.x1b{left:87.839986px;}
.x31{left:90.539986px;}
.x3a{left:92.195986px;}
.x34{left:94.500000px;}
.x3{left:99.396000px;}
.x47{left:102.420000px;}
.x48{left:103.860000px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x44{left:110.160000px;}
.x43{left:113.580000px;}
.x42{left:119.520000px;}
.xf{left:123.695986px;}
.x3e{left:124.920000px;}
.x4{left:135.756000px;}
.x3d{left:156.810000px;}
.x33{left:178.230000px;}
.x32{left:193.529986px;}
.x8{left:200.190000px;}
.xb{left:231.690000px;}
.x20{left:265.529986px;}
.x3c{left:269.309986px;}
.x49{left:282.269986px;}
.x7{left:324.075000px;}
.x46{left:329.654986px;}
.x10{left:346.754986px;}
.x12{left:377.534986px;}
.x13{left:387.434986px;}
.x35{left:432.615000px;}
.x24{left:441.795000px;}
.x21{left:459.614986px;}
.x11{left:464.294986px;}
.x45{left:469.334986px;}
.x1c{left:486.104986px;}
.x1e{left:488.804986px;}
.x4c{left:506.985000px;}
.x1d{left:513.104986px;}
.x1f{left:515.804986px;}
.x3b{left:517.424986px;}
.x2d{left:540.104986px;}
.x26{left:548.205000px;}
.x36{left:603.465000px;}
.x40{left:614.085000px;}
.x16{left:663.405000px;}
.xc{left:693.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.120960pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.440960pt;}
.ls2{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls8{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.lsf{letter-spacing:57.040640pt;}
.ls1{letter-spacing:1187.466667pt;}
.lsd{letter-spacing:1187.626667pt;}
.ws2{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.120000pt;}
.wsa{word-spacing:-43.200000pt;}
.wsb{word-spacing:-42.880000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._14{margin-left:-5.664000pt;}
._1{margin-left:-1.104853pt;}
._0{width:0.931840pt;}
._a{width:1.921280pt;}
._6{width:2.831360pt;}
._29{width:3.760000pt;}
._d{width:4.651520pt;}
._c{width:5.662720pt;}
._b{width:7.128960pt;}
._e{width:8.020053pt;}
._9{width:8.999680pt;}
._7{width:10.061440pt;}
._8{width:11.477120pt;}
._2f{width:12.373760pt;}
._f{width:13.904000pt;}
._10{width:14.864640pt;}
._19{width:15.906560pt;}
._5{width:17.544320pt;}
._1c{width:18.751360pt;}
._12{width:20.469333pt;}
._11{width:21.538560pt;}
._13{width:22.947840pt;}
._23{width:24.275840pt;}
._24{width:25.884800pt;}
._28{width:27.235200pt;}
._1f{width:28.950400pt;}
._1e{width:29.877760pt;}
._27{width:30.862720pt;}
._2e{width:31.818880pt;}
._2c{width:32.746240pt;}
._33{width:33.858560pt;}
._34{width:34.813227pt;}
._20{width:36.174080pt;}
._2a{width:37.927680pt;}
._35{width:38.830720pt;}
._1d{width:39.787947pt;}
._1a{width:40.689920pt;}
._17{width:42.096000pt;}
._22{width:43.131520pt;}
._16{width:44.112853pt;}
._15{width:45.216000pt;}
._32{width:46.324053pt;}
._31{width:48.843307pt;}
._2b{width:50.091520pt;}
._1b{width:51.901440pt;}
._18{width:53.088000pt;}
._30{width:54.036480pt;}
._25{width:58.296960pt;}
._26{width:59.335040pt;}
._36{width:63.772800pt;}
._21{width:66.506240pt;}
._2d{width:74.332160pt;}
._3{width:175.648000pt;}
._4{width:178.698667pt;}
._2{width:741.278293pt;}
.fs8{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fs3{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:0.320000pt;}
.y7{bottom:2.240000pt;}
.y49{bottom:2.560000pt;}
.y3f{bottom:2.720000pt;}
.y23{bottom:2.880000pt;}
.y10{bottom:3.520000pt;}
.y77{bottom:3.680000pt;}
.y24{bottom:4.160000pt;}
.y191{bottom:5.600000pt;}
.y5{bottom:7.520000pt;}
.y98{bottom:7.552000pt;}
.y6{bottom:14.560000pt;}
.y99{bottom:14.592000pt;}
.y47{bottom:16.480000pt;}
.y3e{bottom:17.280000pt;}
.y190{bottom:17.920000pt;}
.yf{bottom:19.840000pt;}
.ye{bottom:29.440000pt;}
.y46{bottom:30.240000pt;}
.y9a{bottom:31.680000pt;}
.y3d{bottom:32.000000pt;}
.y18f{bottom:42.400000pt;}
.y8{bottom:43.680000pt;}
.y45{bottom:44.000000pt;}
.yd{bottom:45.760000pt;}
.y3c{bottom:46.560000pt;}
.y97{bottom:53.280000pt;}
.y44{bottom:57.920000pt;}
.yc{bottom:58.400000pt;}
.y3b{bottom:61.120000pt;}
.y4{bottom:65.312000pt;}
.y43{bottom:71.706667pt;}
.y3a{bottom:75.680000pt;}
.y42{bottom:85.466667pt;}
.y39{bottom:90.240000pt;}
.yb{bottom:92.160000pt;}
.y11{bottom:92.320000pt;}
.y41{bottom:99.226667pt;}
.y18c{bottom:101.952000pt;}
.y130{bottom:102.592000pt;}
.y38{bottom:104.840000pt;}
.y167{bottom:105.952000pt;}
.y96{bottom:110.112000pt;}
.y12f{bottom:114.912000pt;}
.yd1{bottom:115.872000pt;}
.y18b{bottom:117.312000pt;}
.y54{bottom:119.072000pt;}
.y37{bottom:119.400000pt;}
.y8c{bottom:119.712000pt;}
.ya{bottom:120.986667pt;}
.y166{bottom:121.152000pt;}
.y95{bottom:125.472000pt;}
.y12e{bottom:127.072000pt;}
.yd0{bottom:131.232000pt;}
.y18a{bottom:132.672000pt;}
.y36{bottom:133.960000pt;}
.y53{bottom:134.426667pt;}
.y8b{bottom:135.066667pt;}
.y165{bottom:136.506667pt;}
.y12d{bottom:139.386667pt;}
.y94{bottom:140.666667pt;}
.yfc{bottom:140.826667pt;}
.ycf{bottom:146.586667pt;}
.y189{bottom:147.866667pt;}
.y35{bottom:148.520000pt;}
.y52{bottom:149.786667pt;}
.y12c{bottom:150.106667pt;}
.y8a{bottom:150.266667pt;}
.y164{bottom:151.866667pt;}
.y93{bottom:156.026667pt;}
.yfb{bottom:156.186667pt;}
.y50{bottom:159.240000pt;}
.yce{bottom:161.946667pt;}
.y12b{bottom:163.066667pt;}
.y34{bottom:163.080000pt;}
.y188{bottom:163.226667pt;}
.y51{bottom:164.986667pt;}
.y89{bottom:166.586667pt;}
.y163{bottom:167.226667pt;}
.y92{bottom:171.386667pt;}
.yfa{bottom:171.546667pt;}
.y4f{bottom:173.160000pt;}
.y12a{bottom:175.866667pt;}
.y33{bottom:177.640000pt;}
.y25{bottom:178.106667pt;}
.y187{bottom:178.586667pt;}
.ycd{bottom:181.946667pt;}
.y162{bottom:182.586667pt;}
.y88{bottom:182.906667pt;}
.y91{bottom:186.746667pt;}
.y4e{bottom:186.920000pt;}
.y129{bottom:188.826667pt;}
.y32{bottom:192.200000pt;}
.ycc{bottom:192.506667pt;}
.y186{bottom:193.946667pt;}
.y161{bottom:197.946667pt;}
.y87{bottom:199.226667pt;}
.y4d{bottom:200.680000pt;}
.y128{bottom:201.786667pt;}
.y90{bottom:202.106667pt;}
.y31{bottom:206.760000pt;}
.ycb{bottom:207.866667pt;}
.y185{bottom:209.306667pt;}
.y160{bottom:213.146667pt;}
.y4c{bottom:214.440000pt;}
.y86{bottom:215.546667pt;}
.y127{bottom:216.506667pt;}
.y8f{bottom:217.466667pt;}
.y30{bottom:221.320000pt;}
.yca{bottom:223.226667pt;}
.y184{bottom:224.666667pt;}
.y126{bottom:226.106667pt;}
.y4b{bottom:228.360000pt;}
.y15f{bottom:228.506667pt;}
.y85{bottom:231.706667pt;}
.y8e{bottom:232.666667pt;}
.yf9{bottom:232.826667pt;}
.y2f{bottom:235.880000pt;}
.y125{bottom:238.426667pt;}
.yc9{bottom:238.586667pt;}
.y183{bottom:239.866667pt;}
.y4a{bottom:242.120000pt;}
.y15e{bottom:243.866667pt;}
.y84{bottom:247.066667pt;}
.y8d{bottom:248.026667pt;}
.yf8{bottom:248.186667pt;}
.y2e{bottom:250.440000pt;}
.y11c{bottom:251.386667pt;}
.yc8{bottom:253.946667pt;}
.y182{bottom:255.226667pt;}
.y15d{bottom:259.226667pt;}
.y83{bottom:263.386667pt;}
.yf7{bottom:263.546667pt;}
.y2d{bottom:265.000000pt;}
.y11b{bottom:266.586667pt;}
.yc7{bottom:269.306667pt;}
.y124{bottom:269.466667pt;}
.y181{bottom:270.586667pt;}
.y15c{bottom:274.586667pt;}
.y82{bottom:278.746667pt;}
.y2c{bottom:279.560000pt;}
.y11a{bottom:281.986667pt;}
.yc6{bottom:284.546667pt;}
.y123{bottom:284.866667pt;}
.y180{bottom:285.986667pt;}
.y15b{bottom:289.986667pt;}
.y2b{bottom:294.120000pt;}
.y81{bottom:294.146667pt;}
.y119{bottom:297.346667pt;}
.yc5{bottom:299.906667pt;}
.y122{bottom:300.226667pt;}
.y17f{bottom:301.346667pt;}
.y15a{bottom:305.186667pt;}
.y2a{bottom:308.680000pt;}
.y80{bottom:309.506667pt;}
.y118{bottom:313.666667pt;}
.yc4{bottom:315.266667pt;}
.y121{bottom:315.586667pt;}
.y17e{bottom:316.706667pt;}
.y159{bottom:320.546667pt;}
.y29{bottom:323.240000pt;}
.y7f{bottom:324.706667pt;}
.yf6{bottom:324.866667pt;}
.y117{bottom:329.026667pt;}
.yc3{bottom:330.626667pt;}
.y120{bottom:330.946667pt;}
.y17d{bottom:331.906667pt;}
.y158{bottom:335.906667pt;}
.y28{bottom:337.826667pt;}
.yf5{bottom:340.226667pt;}
.y116{bottom:345.346667pt;}
.yc2{bottom:345.986667pt;}
.y11f{bottom:346.306667pt;}
.y17c{bottom:347.266667pt;}
.y157{bottom:351.266667pt;}
.y27{bottom:352.386667pt;}
.y7e{bottom:353.666667pt;}
.yf4{bottom:355.426667pt;}
.y115{bottom:360.546667pt;}
.yc1{bottom:361.346667pt;}
.y11e{bottom:361.506667pt;}
.y17b{bottom:362.626667pt;}
.y156{bottom:366.626667pt;}
.y26{bottom:366.946667pt;}
.y7d{bottom:369.506667pt;}
.yf3{bottom:370.786667pt;}
.y114{bottom:375.906667pt;}
.yc0{bottom:376.546667pt;}
.y11d{bottom:376.866667pt;}
.y17a{bottom:377.986667pt;}
.y155{bottom:381.826667pt;}
.y7c{bottom:385.346667pt;}
.yf2{bottom:386.146667pt;}
.ybf{bottom:391.906667pt;}
.y113{bottom:392.226667pt;}
.y179{bottom:393.346667pt;}
.y154{bottom:397.186667pt;}
.y7b{bottom:401.026667pt;}
.yf1{bottom:401.506667pt;}
.y112{bottom:406.946667pt;}
.ybe{bottom:407.266667pt;}
.y178{bottom:408.706667pt;}
.y153{bottom:412.546667pt;}
.y7a{bottom:416.866667pt;}
.y111{bottom:417.666667pt;}
.ybd{bottom:422.626667pt;}
.y177{bottom:423.906667pt;}
.y152{bottom:427.906667pt;}
.y110{bottom:430.626667pt;}
.y48{bottom:432.066667pt;}
.yf0{bottom:432.226667pt;}
.y79{bottom:432.706667pt;}
.ybc{bottom:437.986667pt;}
.y176{bottom:439.266667pt;}
.y151{bottom:443.266667pt;}
.y10f{bottom:443.426667pt;}
.y40{bottom:446.466667pt;}
.yef{bottom:447.426667pt;}
.y78{bottom:448.546667pt;}
.ybb{bottom:454.146667pt;}
.y175{bottom:454.626667pt;}
.y10e{bottom:456.386667pt;}
.y150{bottom:458.626667pt;}
.yee{bottom:462.786667pt;}
.y76{bottom:464.226667pt;}
.yba{bottom:469.506667pt;}
.y174{bottom:469.986667pt;}
.y10d{bottom:471.106667pt;}
.y14f{bottom:473.826667pt;}
.yed{bottom:478.146667pt;}
.y10c{bottom:480.706667pt;}
.y75{bottom:481.986667pt;}
.yb9{bottom:484.866667pt;}
.y173{bottom:485.346667pt;}
.y14e{bottom:489.186667pt;}
.y74{bottom:491.586667pt;}
.y10b{bottom:493.026667pt;}
.yec{bottom:493.506667pt;}
.yb8{bottom:500.226667pt;}
.y172{bottom:500.546667pt;}
.y73{bottom:504.386667pt;}
.y14d{bottom:504.546667pt;}
.y10a{bottom:506.013333pt;}
.yeb{bottom:508.893333pt;}
.yb7{bottom:515.613333pt;}
.y171{bottom:515.933333pt;}
.y72{bottom:519.773333pt;}
.y14c{bottom:519.933333pt;}
.y109{bottom:521.373333pt;}
.yea{bottom:524.253333pt;}
.yb6{bottom:530.973333pt;}
.y170{bottom:531.293333pt;}
.y71{bottom:535.133333pt;}
.y14b{bottom:535.293333pt;}
.y108{bottom:536.573333pt;}
.ye9{bottom:539.453333pt;}
.yb5{bottom:546.173333pt;}
.y16f{bottom:546.653333pt;}
.y70{bottom:550.493333pt;}
.y14a{bottom:550.653333pt;}
.y107{bottom:551.933333pt;}
.ye8{bottom:554.813333pt;}
.y22{bottom:557.533333pt;}
.yb4{bottom:561.533333pt;}
.y16e{bottom:562.013333pt;}
.y6f{bottom:565.853333pt;}
.y106{bottom:567.293333pt;}
.ye7{bottom:570.173333pt;}
.yb3{bottom:576.893333pt;}
.y16d{bottom:577.373333pt;}
.y6e{bottom:581.053333pt;}
.y149{bottom:581.213333pt;}
.y105{bottom:582.653333pt;}
.y21{bottom:585.053333pt;}
.ye6{bottom:585.533333pt;}
.y1f{bottom:587.613333pt;}
.y16c{bottom:592.573333pt;}
.y1e{bottom:592.733333pt;}
.yb2{bottom:593.213333pt;}
.y6d{bottom:596.413333pt;}
.y148{bottom:596.573333pt;}
.y104{bottom:598.013333pt;}
.ye5{bottom:600.893333pt;}
.y1d{bottom:607.933333pt;}
.yb1{bottom:608.573333pt;}
.y6c{bottom:611.773333pt;}
.y147{bottom:611.933333pt;}
.y103{bottom:613.373333pt;}
.ye4{bottom:616.253333pt;}
.y1c{bottom:623.293333pt;}
.yb0{bottom:624.733333pt;}
.y6b{bottom:627.133333pt;}
.y146{bottom:627.293333pt;}
.y102{bottom:628.573333pt;}
.ye3{bottom:631.453333pt;}
.y1b{bottom:638.653333pt;}
.yaf{bottom:641.053333pt;}
.y6a{bottom:642.493333pt;}
.y145{bottom:642.653333pt;}
.y101{bottom:643.933333pt;}
.ye2{bottom:646.813333pt;}
.y1a{bottom:654.013333pt;}
.yae{bottom:657.373333pt;}
.y69{bottom:657.853333pt;}
.y100{bottom:659.293333pt;}
.ye1{bottom:662.173333pt;}
.y16b{bottom:669.373333pt;}
.y19{bottom:669.693333pt;}
.y68{bottom:673.053333pt;}
.y144{bottom:673.213333pt;}
.yad{bottom:673.693333pt;}
.yff{bottom:674.653333pt;}
.ye0{bottom:677.533333pt;}
.y16a{bottom:684.573333pt;}
.y67{bottom:688.413333pt;}
.y18{bottom:688.573333pt;}
.yac{bottom:690.013333pt;}
.ydf{bottom:692.893333pt;}
.y169{bottom:699.933333pt;}
.y66{bottom:703.773333pt;}
.y143{bottom:703.933333pt;}
.yab{bottom:705.373333pt;}
.yde{bottom:708.093333pt;}
.y168{bottom:715.293333pt;}
.y17{bottom:716.093333pt;}
.y65{bottom:719.133333pt;}
.y142{bottom:719.293333pt;}
.yfe{bottom:720.573333pt;}
.yaa{bottom:721.533333pt;}
.ydd{bottom:723.453333pt;}
.y18e{bottom:728.453333pt;}
.y64{bottom:734.533333pt;}
.ya9{bottom:736.933333pt;}
.ydc{bottom:738.853333pt;}
.y16{bottom:743.813333pt;}
.y63{bottom:749.733333pt;}
.y141{bottom:749.893333pt;}
.ya8{bottom:752.293333pt;}
.yfd{bottom:753.253333pt;}
.ydb{bottom:754.213333pt;}
.y62{bottom:765.093333pt;}
.y140{bottom:765.253333pt;}
.ya7{bottom:767.653333pt;}
.yda{bottom:769.573333pt;}
.y15{bottom:771.333333pt;}
.y61{bottom:780.453333pt;}
.y13f{bottom:780.613333pt;}
.y18d{bottom:781.573333pt;}
.ya6{bottom:783.013333pt;}
.yd9{bottom:784.933333pt;}
.y13e{bottom:793.733333pt;}
.y60{bottom:795.813333pt;}
.ya5{bottom:798.213333pt;}
.y14{bottom:799.013333pt;}
.yd8{bottom:800.133333pt;}
.y13d{bottom:806.693333pt;}
.y5f{bottom:811.173333pt;}
.ya4{bottom:813.573333pt;}
.yd7{bottom:815.493333pt;}
.y13c{bottom:819.653333pt;}
.y13{bottom:824.293333pt;}
.y5e{bottom:826.533333pt;}
.ya3{bottom:828.933333pt;}
.yd6{bottom:830.853333pt;}
.y13b{bottom:832.453333pt;}
.y5d{bottom:841.733333pt;}
.ya2{bottom:844.293333pt;}
.y13a{bottom:845.413333pt;}
.yd5{bottom:846.213333pt;}
.y12{bottom:847.653333pt;}
.y9{bottom:849.733333pt;}
.y5c{bottom:857.093333pt;}
.y139{bottom:860.293333pt;}
.ya1{bottom:860.613333pt;}
.yd4{bottom:861.573333pt;}
.y138{bottom:869.893333pt;}
.y5b{bottom:872.453333pt;}
.ya0{bottom:875.973333pt;}
.yd3{bottom:876.933333pt;}
.y137{bottom:882.053333pt;}
.y5a{bottom:887.813333pt;}
.y9f{bottom:891.173333pt;}
.yd2{bottom:892.133333pt;}
.y136{bottom:892.773333pt;}
.y59{bottom:903.173333pt;}
.y135{bottom:905.733333pt;}
.y9e{bottom:907.493333pt;}
.y58{bottom:918.533333pt;}
.y134{bottom:918.693333pt;}
.y9d{bottom:922.853333pt;}
.y133{bottom:931.653333pt;}
.y57{bottom:933.733333pt;}
.y9c{bottom:938.213333pt;}
.y132{bottom:946.373333pt;}
.y56{bottom:949.093333pt;}
.y9b{bottom:953.600000pt;}
.y131{bottom:956.000000pt;}
.y55{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.h12{height:1.440000pt;}
.h13{height:3.575000pt;}
.hf{height:3.612500pt;}
.h14{height:7.676562pt;}
.h29{height:12.160000pt;}
.h28{height:12.320000pt;}
.h1b{height:13.760000pt;}
.h23{height:15.040000pt;}
.h22{height:15.200000pt;}
.h15{height:15.360000pt;}
.hc{height:18.768750pt;}
.ha{height:18.965625pt;}
.h21{height:22.343750pt;}
.h26{height:24.131250pt;}
.h4{height:24.480000pt;}
.h24{height:24.512000pt;}
.h6{height:29.940625pt;}
.h20{height:30.254687pt;}
.h1d{height:33.515625pt;}
.h16{height:33.867188pt;}
.h7{height:34.965625pt;}
.h25{height:35.093625pt;}
.h18{height:35.303125pt;}
.h1a{height:36.750000pt;}
.h5{height:37.090625pt;}
.h3{height:37.479688pt;}
.h1e{height:38.672812pt;}
.h2{height:40.021563pt;}
.h1f{height:42.691250pt;}
.h2a{height:42.944375pt;}
.h2b{height:43.782500pt;}
.h1{height:45.156250pt;}
.h27{height:47.045000pt;}
.h11{height:47.310625pt;}
.h2c{height:52.480000pt;}
.h8{height:58.563750pt;}
.hd{height:64.130938pt;}
.h10{height:67.734375pt;}
.hb{height:82.635937pt;}
.he{height:105.214062pt;}
.h19{height:110.432000pt;}
.h9{height:127.232000pt;}
.h1c{height:253.306667pt;}
.h17{height:378.786667pt;}
.h0{height:1056.000000pt;}
.wd{width:31.200000pt;}
.w2{width:31.360000pt;}
.wa{width:84.480000pt;}
.wb{width:93.792000pt;}
.w9{width:101.152000pt;}
.w14{width:103.232000pt;}
.w11{width:112.672000pt;}
.wc{width:141.146667pt;}
.w5{width:147.520000pt;}
.w10{width:151.226667pt;}
.w16{width:159.866667pt;}
.w13{width:160.026667pt;}
.w8{width:182.306667pt;}
.wf{width:225.306667pt;}
.w12{width:245.146667pt;}
.w15{width:245.306667pt;}
.w17{width:318.426667pt;}
.w7{width:547.453333pt;}
.w4{width:576.133333pt;}
.w3{width:631.293333pt;}
.we{width:631.493333pt;}
.w6{width:801.280000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x14{left:2.880000pt;}
.x2e{left:6.079988pt;}
.x5{left:7.200000pt;}
.x23{left:10.720000pt;}
.x27{left:15.520000pt;}
.x37{left:20.160000pt;}
.x25{left:21.600000pt;}
.x39{left:23.360000pt;}
.x22{left:25.440000pt;}
.x4a{left:27.200000pt;}
.x2a{left:30.240000pt;}
.x2c{left:33.600000pt;}
.x28{left:36.800000pt;}
.x2b{left:38.720000pt;}
.x6{left:40.480000pt;}
.x15{left:41.600000pt;}
.x18{left:43.039988pt;}
.x2f{left:46.400000pt;}
.x1{left:47.999988pt;}
.x4b{left:49.280000pt;}
.x19{left:53.119988pt;}
.x1a{left:54.079988pt;}
.x30{left:56.479988pt;}
.x38{left:57.466667pt;}
.x17{left:58.440000pt;}
.xa{left:62.592000pt;}
.x3f{left:66.906667pt;}
.x29{left:68.640000pt;}
.x41{left:70.586667pt;}
.xe{left:73.599988pt;}
.x1b{left:78.079988pt;}
.x31{left:80.479988pt;}
.x3a{left:81.951988pt;}
.x34{left:84.000000pt;}
.x3{left:88.352000pt;}
.x47{left:91.040000pt;}
.x48{left:92.320000pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x44{left:97.920000pt;}
.x43{left:100.960000pt;}
.x42{left:106.240000pt;}
.xf{left:109.951988pt;}
.x3e{left:111.040000pt;}
.x4{left:120.672000pt;}
.x3d{left:139.386667pt;}
.x33{left:158.426667pt;}
.x32{left:172.026655pt;}
.x8{left:177.946667pt;}
.xb{left:205.946667pt;}
.x20{left:236.026655pt;}
.x3c{left:239.386655pt;}
.x49{left:250.906655pt;}
.x7{left:288.066667pt;}
.x46{left:293.026655pt;}
.x10{left:308.226655pt;}
.x12{left:335.586655pt;}
.x13{left:344.386655pt;}
.x35{left:384.546667pt;}
.x24{left:392.706667pt;}
.x21{left:408.546655pt;}
.x11{left:412.706655pt;}
.x45{left:417.186655pt;}
.x1c{left:432.093321pt;}
.x1e{left:434.493321pt;}
.x4c{left:450.653333pt;}
.x1d{left:456.093321pt;}
.x1f{left:458.493321pt;}
.x3b{left:459.933321pt;}
.x2d{left:480.093321pt;}
.x26{left:487.293333pt;}
.x36{left:536.413333pt;}
.x40{left:545.853333pt;}
.x16{left:589.693333pt;}
.xc{left:616.613333pt;}
}




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