
    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_342218c147fe0bc130a6e1a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122000;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_dc72bb861741b6cbeb40dca9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.144000;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_4be94c63ddd02d29053c9639.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115000;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_59d00195d99da0048b8df7c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dfd21e7dad5179fe24f27cd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_296db29a2b7d3545f5e531e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.071000;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_049d011f018b48dd35dfc30c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130000;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_b31488ca79c536ad35eea935.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_5348b695062d308509c5c818.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934000;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_a62bf7b102062ec6972cf83a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.034000;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_3d6b2720748987dfd12eeaf3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.881836;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_0e1fafdd14c7c06c87a0b66e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4cf3f3dc83e274d409450634.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.980000;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_de08fe40f57e0ab1b4e56b21.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_7b075d0cef77ce963aa424c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.980000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.252522,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252522,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252522,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.252525,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252525,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252525,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.978600px;}
.ls7{letter-spacing:-3.780000px;}
.ls5{letter-spacing:-3.240000px;}
.ls13{letter-spacing:-2.754000px;}
.lsc{letter-spacing:-2.484000px;}
.ls8{letter-spacing:-2.376000px;}
.ls4{letter-spacing:-1.512000px;}
.lsb{letter-spacing:-1.026000px;}
.ls3{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.486000px;}
.ls14{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.002808px;}
.ls9{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.340306px;}
.lsa{letter-spacing:0.569208px;}
.ls2{letter-spacing:0.756000px;}
.lsd{letter-spacing:1.026000px;}
.ls15{letter-spacing:1.134000px;}
.ls11{letter-spacing:49.562826px;}
.ls10{letter-spacing:49.563420px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.ws1{word-spacing:-18.348000px;}
.ws8{word-spacing:-16.038000px;}
.ws2{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.066000px;}
.ws3{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.526000px;}
.wsa{word-spacing:-13.535962px;}
.ws7{word-spacing:-12.528000px;}
.ws0{word-spacing:-10.696884px;}
.ws6{word-spacing:-8.751996px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-11.610000px;}
._b{margin-left:-8.465333px;}
._0{margin-left:-7.330368px;}
._1{margin-left:-6.072000px;}
._2{margin-left:-4.440000px;}
._8{margin-left:-2.732667px;}
._3{margin-left:-1.188000px;}
._7{width:1.404000px;}
._6{width:2.430000px;}
._e{width:4.328667px;}
._4{width:5.430667px;}
._d{width:6.960000px;}
._f{width:8.052000px;}
._10{width:9.552000px;}
._11{width:10.590000px;}
._13{width:11.826000px;}
._22{width:12.897333px;}
._14{width:13.932000px;}
._21{width:16.578000px;}
._1a{width:17.766000px;}
._20{width:20.822667px;}
._18{width:23.004000px;}
._16{width:25.002000px;}
._17{width:26.028000px;}
._15{width:27.734667px;}
._1b{width:33.534000px;}
._19{width:39.204000px;}
._1c{width:43.524000px;}
._1f{width:46.872000px;}
._1e{width:50.058000px;}
._1d{width:63.450000px;}
._c{width:117.869333px;}
._5{width:120.204000px;}
._9{width:124.146000px;}
._a{width:125.616000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs9{font-size:45.729600px;}
.fs8{font-size:47.520000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y109{bottom:3.661650px;}
.y10b{bottom:3.943800px;}
.y113{bottom:4.506000px;}
.y10e{bottom:14.212200px;}
.y108{bottom:19.493100px;}
.y10f{bottom:20.079900px;}
.y110{bottom:23.013900px;}
.y10a{bottom:24.785700px;}
.y10c{bottom:25.067700px;}
.y10d{bottom:28.881600px;}
.y111{bottom:29.468400px;}
.y1{bottom:31.500000px;}
.y2{bottom:33.159600px;}
.y107{bottom:64.147200px;}
.y103{bottom:70.542900px;}
.y105{bottom:85.223700px;}
.y76{bottom:93.480000px;}
.y191{bottom:93.504300px;}
.y91{bottom:93.515550px;}
.y165{bottom:93.517800px;}
.yae{bottom:93.535500px;}
.y118{bottom:93.541950px;}
.yd2{bottom:93.560400px;}
.y145{bottom:93.967050px;}
.y144{bottom:98.691300px;}
.y48{bottom:101.545500px;}
.y90{bottom:113.104050px;}
.y75{bottom:113.190000px;}
.yd1{bottom:113.391900px;}
.yad{bottom:113.961000px;}
.y164{bottom:114.051300px;}
.y117{bottom:114.304950px;}
.y190{bottom:114.334800px;}
.y143{bottom:118.941300px;}
.y100{bottom:123.644250px;}
.y8f{bottom:132.692550px;}
.y74{bottom:132.900000px;}
.yd0{bottom:133.223400px;}
.yac{bottom:133.644000px;}
.y163{bottom:134.584800px;}
.y116{bottom:135.067950px;}
.y18f{bottom:135.165300px;}
.y142{bottom:139.191300px;}
.yff{bottom:143.138250px;}
.y8e{bottom:152.281050px;}
.y73{bottom:152.610000px;}
.ycf{bottom:153.054900px;}
.yab{bottom:153.327000px;}
.y162{bottom:155.118300px;}
.y115{bottom:155.830950px;}
.y18e{bottom:155.995800px;}
.y141{bottom:159.441300px;}
.yfe{bottom:162.632250px;}
.y8d{bottom:171.869550px;}
.y72{bottom:172.320000px;}
.yce{bottom:172.886400px;}
.yaa{bottom:173.010000px;}
.y161{bottom:175.651800px;}
.y114{bottom:176.593350px;}
.y18d{bottom:176.826300px;}
.y140{bottom:179.691300px;}
.yfd{bottom:182.126250px;}
.y8c{bottom:191.458050px;}
.y71{bottom:192.030000px;}
.ya9{bottom:192.693000px;}
.ycd{bottom:192.717900px;}
.y160{bottom:196.185300px;}
.y18c{bottom:197.656800px;}
.y13f{bottom:199.941300px;}
.yfc{bottom:201.620250px;}
.y8b{bottom:211.046550px;}
.y70{bottom:211.740000px;}
.ya8{bottom:212.376000px;}
.ycc{bottom:212.552850px;}
.y15f{bottom:216.718800px;}
.y18b{bottom:218.487300px;}
.y13e{bottom:220.191300px;}
.yfb{bottom:221.114250px;}
.y8a{bottom:230.635050px;}
.y101{bottom:230.735550px;}
.y6f{bottom:231.450000px;}
.ya7{bottom:232.059000px;}
.y3a{bottom:232.906500px;}
.y15e{bottom:237.252300px;}
.ycb{bottom:238.772550px;}
.y18a{bottom:239.317800px;}
.y13d{bottom:240.441300px;}
.yfa{bottom:240.608250px;}
.y89{bottom:250.223550px;}
.y6e{bottom:251.160000px;}
.ya6{bottom:251.742000px;}
.y39{bottom:253.156500px;}
.yca{bottom:258.604050px;}
.yf9{bottom:260.102250px;}
.y189{bottom:260.148300px;}
.y13c{bottom:260.691300px;}
.y112{bottom:263.202000px;}
.y102{bottom:263.764500px;}
.y88{bottom:269.812050px;}
.y6d{bottom:270.870000px;}
.ya5{bottom:271.425000px;}
.y38{bottom:273.406500px;}
.y15d{bottom:274.789950px;}
.yc9{bottom:278.435550px;}
.yf8{bottom:279.596250px;}
.y13b{bottom:280.941300px;}
.y188{bottom:280.978800px;}
.y87{bottom:289.400550px;}
.y6c{bottom:290.580000px;}
.ya4{bottom:291.108000px;}
.y37{bottom:293.656500px;}
.yc8{bottom:298.270500px;}
.yf7{bottom:299.090250px;}
.y13a{bottom:301.191300px;}
.y187{bottom:301.809300px;}
.y86{bottom:308.989050px;}
.y6b{bottom:310.290000px;}
.yf6{bottom:318.584250px;}
.ya3{bottom:319.296000px;}
.y139{bottom:321.441300px;}
.y36{bottom:322.410450px;}
.y186{bottom:322.639800px;}
.y1b2{bottom:324.153000px;}
.yc7{bottom:324.504000px;}
.y85{bottom:328.577550px;}
.yf5{bottom:338.078250px;}
.ya2{bottom:338.979000px;}
.y35{bottom:342.660450px;}
.y185{bottom:343.470300px;}
.y15c{bottom:344.002800px;}
.yc6{bottom:344.335500px;}
.y1b1{bottom:344.403000px;}
.y6a{bottom:347.002050px;}
.y138{bottom:350.196300px;}
.yf4{bottom:357.572250px;}
.ya1{bottom:358.662000px;}
.y15b{bottom:358.678800px;}
.y34{bottom:362.910450px;}
.yc5{bottom:364.167000px;}
.y1b0{bottom:364.653000px;}
.y137{bottom:370.446300px;}
.y184{bottom:372.785250px;}
.y15a{bottom:373.354800px;}
.y84{bottom:377.008200px;}
.ya0{bottom:378.345000px;}
.y13{bottom:380.580300px;}
.y33{bottom:383.160450px;}
.yf3{bottom:383.504250px;}
.yc4{bottom:383.998500px;}
.y1af{bottom:384.903000px;}
.y159{bottom:388.030800px;}
.y136{bottom:390.696300px;}
.y83{bottom:391.492200px;}
.y183{bottom:393.615750px;}
.y9f{bottom:398.028000px;}
.y158{bottom:402.706800px;}
.yf2{bottom:402.998250px;}
.y32{bottom:403.410450px;}
.yc3{bottom:403.830000px;}
.y69{bottom:404.757150px;}
.y1ae{bottom:405.153000px;}
.y104{bottom:405.436500px;}
.y82{bottom:405.976200px;}
.y12{bottom:409.334100px;}
.y1b4{bottom:410.358150px;}
.y135{bottom:410.946300px;}
.y182{bottom:414.446250px;}
.y157{bottom:417.382800px;}
.y81{bottom:420.462450px;}
.yf1{bottom:422.492250px;}
.y31{bottom:423.660450px;}
.yc2{bottom:423.661500px;}
.y68{bottom:424.467150px;}
.y1b3{bottom:424.758150px;}
.y134{bottom:431.196300px;}
.y156{bottom:432.062550px;}
.y181{bottom:435.276750px;}
.y11{bottom:438.088050px;}
.yf0{bottom:441.986250px;}
.yc1{bottom:443.493000px;}
.y30{bottom:443.910450px;}
.y67{bottom:444.177150px;}
.y9e{bottom:446.658300px;}
.y133{bottom:451.446300px;}
.y180{bottom:456.107250px;}
.y9d{bottom:461.238300px;}
.yef{bottom:461.480250px;}
.y66{bottom:463.887150px;}
.y2f{bottom:464.160450px;}
.y10{bottom:466.842000px;}
.y1ad{bottom:468.603000px;}
.yc0{bottom:469.726500px;}
.y132{bottom:471.696300px;}
.y9c{bottom:475.818300px;}
.y17f{bottom:476.937750px;}
.yee{bottom:480.974250px;}
.y1ac{bottom:483.003000px;}
.y65{bottom:483.597150px;}
.y2e{bottom:484.410450px;}
.ybf{bottom:489.558000px;}
.y9b{bottom:490.398300px;}
.y131{bottom:491.946300px;}
.yf{bottom:495.595950px;}
.y1ab{bottom:497.403000px;}
.y17e{bottom:497.764950px;}
.yed{bottom:500.468250px;}
.y64{bottom:503.307150px;}
.y2d{bottom:504.660450px;}
.y9a{bottom:504.978300px;}
.ybe{bottom:509.389500px;}
.y1aa{bottom:511.803000px;}
.y130{bottom:512.196300px;}
.y99{bottom:519.558300px;}
.yec{bottom:519.962250px;}
.y63{bottom:523.017150px;}
.ye{bottom:524.349900px;}
.y2c{bottom:524.910450px;}
.y1a9{bottom:526.203000px;}
.y17d{bottom:527.086500px;}
.ybd{bottom:529.221000px;}
.y12f{bottom:532.446300px;}
.y98{bottom:534.138300px;}
.yeb{bottom:539.456250px;}
.y1a8{bottom:540.603000px;}
.y62{bottom:542.727150px;}
.y2b{bottom:545.160450px;}
.y17c{bottom:547.917000px;}
.ybc{bottom:549.052500px;}
.y12e{bottom:552.696300px;}
.y1a7{bottom:555.003000px;}
.yea{bottom:558.950250px;}
.y2a{bottom:565.410450px;}
.y17b{bottom:568.747500px;}
.ybb{bottom:568.884000px;}
.y1a6{bottom:569.403000px;}
.y61{bottom:570.942150px;}
.y12d{bottom:572.946300px;}
.yd{bottom:581.857800px;}
.y1a5{bottom:583.803000px;}
.ye9{bottom:584.882250px;}
.yba{bottom:588.715500px;}
.y17a{bottom:589.578000px;}
.y60{bottom:590.652150px;}
.y12c{bottom:593.196300px;}
.y29{bottom:594.164400px;}
.y1a4{bottom:598.203000px;}
.y1a2{bottom:598.457100px;}
.ye8{bottom:604.376250px;}
.yb9{bottom:608.550450px;}
.y5f{bottom:610.362150px;}
.y1a3{bottom:612.603000px;}
.y12b{bottom:613.446300px;}
.y28{bottom:614.414400px;}
.y1a1{bottom:618.707100px;}
.y179{bottom:618.896100px;}
.ye7{bottom:623.870250px;}
.y5e{bottom:630.072150px;}
.y12a{bottom:633.696300px;}
.y27{bottom:634.664400px;}
.yb8{bottom:634.780350px;}
.y1a0{bottom:638.957100px;}
.y178{bottom:639.726600px;}
.ye6{bottom:643.364250px;}
.y5d{bottom:649.782150px;}
.y129{bottom:653.946300px;}
.yb7{bottom:654.611850px;}
.y26{bottom:654.914400px;}
.y19f{bottom:659.207100px;}
.y177{bottom:660.557100px;}
.ye5{bottom:662.858250px;}
.yc{bottom:667.663500px;}
.y5c{bottom:669.492150px;}
.y128{bottom:674.196300px;}
.yb6{bottom:674.443350px;}
.y25{bottom:675.164400px;}
.y19e{bottom:679.457100px;}
.y176{bottom:681.387600px;}
.ye4{bottom:682.352250px;}
.y47{bottom:688.930200px;}
.y5b{bottom:689.202150px;}
.yb{bottom:690.169500px;}
.yb5{bottom:694.274850px;}
.y127{bottom:694.446300px;}
.y19d{bottom:699.707100px;}
.ye3{bottom:701.846250px;}
.y175{bottom:702.218100px;}
.y24{bottom:703.915200px;}
.y5a{bottom:708.912150px;}
.y46{bottom:709.180200px;}
.yb4{bottom:714.106350px;}
.y126{bottom:714.696300px;}
.y155{bottom:715.462200px;}
.y19c{bottom:719.957100px;}
.ya{bottom:721.172550px;}
.ye2{bottom:721.340250px;}
.y23{bottom:724.165200px;}
.y59{bottom:728.622150px;}
.y45{bottom:729.430200px;}
.y174{bottom:731.510400px;}
.yb3{bottom:733.937850px;}
.y125{bottom:734.946300px;}
.y154{bottom:735.995700px;}
.y19b{bottom:740.207100px;}
.ye1{bottom:740.834250px;}
.y9{bottom:743.672550px;}
.y22{bottom:744.415200px;}
.y58{bottom:748.332150px;}
.y44{bottom:749.680200px;}
.y173{bottom:752.340900px;}
.y106{bottom:753.841500px;}
.y124{bottom:755.196300px;}
.y153{bottom:756.529200px;}
.ye0{bottom:760.328250px;}
.y19a{bottom:760.457100px;}
.y21{bottom:764.665200px;}
.y8{bottom:766.172550px;}
.y57{bottom:768.042150px;}
.y43{bottom:769.930200px;}
.yb2{bottom:770.780700px;}
.y172{bottom:773.171400px;}
.y123{bottom:775.446300px;}
.y152{bottom:777.062700px;}
.y199{bottom:780.707100px;}
.y20{bottom:784.915200px;}
.ydf{bottom:786.254250px;}
.y56{bottom:787.752150px;}
.y42{bottom:790.180200px;}
.y171{bottom:794.001900px;}
.y122{bottom:795.696300px;}
.y7{bottom:797.177550px;}
.y151{bottom:797.596200px;}
.yde{bottom:805.748250px;}
.y55{bottom:807.462150px;}
.y198{bottom:809.462100px;}
.y41{bottom:810.430200px;}
.y1f{bottom:813.670200px;}
.y170{bottom:814.832400px;}
.y121{bottom:815.946300px;}
.y150{bottom:818.129700px;}
.y6{bottom:819.677550px;}
.yb1{bottom:824.503500px;}
.ydd{bottom:825.242250px;}
.y54{bottom:827.172150px;}
.y197{bottom:829.712100px;}
.y40{bottom:830.680200px;}
.y1e{bottom:833.920200px;}
.y16f{bottom:835.662900px;}
.y120{bottom:836.196300px;}
.y14f{bottom:838.659600px;}
.yb0{bottom:839.239500px;}
.ydc{bottom:844.736250px;}
.y53{bottom:846.882150px;}
.y80{bottom:847.329600px;}
.y196{bottom:849.962100px;}
.y3f{bottom:850.930200px;}
.yaf{bottom:853.974450px;}
.y1d{bottom:854.170200px;}
.y11f{bottom:856.446300px;}
.y16e{bottom:856.493400px;}
.ydb{bottom:864.230250px;}
.y52{bottom:866.592150px;}
.y7f{bottom:867.660600px;}
.y14e{bottom:867.689700px;}
.y195{bottom:870.212100px;}
.y3e{bottom:871.180200px;}
.y1c{bottom:874.420200px;}
.y16d{bottom:877.323900px;}
.y5{bottom:879.435300px;}
.yda{bottom:883.724250px;}
.y51{bottom:886.302150px;}
.y7e{bottom:887.249100px;}
.y14d{bottom:888.219600px;}
.y194{bottom:890.462100px;}
.y3d{bottom:891.430200px;}
.y11e{bottom:893.704200px;}
.y16c{bottom:898.154400px;}
.y4{bottom:899.235300px;}
.y1b{bottom:903.175200px;}
.yd9{bottom:903.218250px;}
.y7d{bottom:906.837600px;}
.y14c{bottom:908.727600px;}
.y193{bottom:910.712100px;}
.y3c{bottom:911.680200px;}
.y50{bottom:914.503650px;}
.y16b{bottom:918.984900px;}
.yd8{bottom:922.712250px;}
.y1a{bottom:923.425200px;}
.y7c{bottom:926.426100px;}
.y14b{bottom:929.261100px;}
.y192{bottom:930.962100px;}
.y3b{bottom:931.930200px;}
.y97{bottom:933.621600px;}
.y4f{bottom:934.213650px;}
.y16a{bottom:939.815400px;}
.yd7{bottom:942.206250px;}
.y7b{bottom:946.014600px;}
.y14a{bottom:949.794600px;}
.y11d{bottom:951.212100px;}
.y19{bottom:952.180200px;}
.y4e{bottom:953.923650px;}
.y96{bottom:954.047100px;}
.y3{bottom:956.293200px;}
.y169{bottom:960.645900px;}
.y7a{bottom:965.603100px;}
.yd6{bottom:968.090100px;}
.y149{bottom:970.328100px;}
.y11c{bottom:971.462100px;}
.y18{bottom:972.430200px;}
.y4d{bottom:973.633650px;}
.y95{bottom:973.730100px;}
.y168{bottom:981.476400px;}
.yd5{bottom:987.584100px;}
.y148{bottom:990.861600px;}
.y11b{bottom:991.712100px;}
.y17{bottom:992.680200px;}
.y4c{bottom:993.343650px;}
.y94{bottom:993.413100px;}
.y79{bottom:993.696600px;}
.y167{bottom:1002.303750px;}
.y147{bottom:1011.395100px;}
.y11a{bottom:1011.962100px;}
.y16{bottom:1012.930200px;}
.y4b{bottom:1013.042100px;}
.y93{bottom:1013.096100px;}
.y78{bottom:1013.285100px;}
.yd4{bottom:1013.474100px;}
.y166{bottom:1031.631600px;}
.y146{bottom:1031.928600px;}
.y119{bottom:1032.212100px;}
.y4a{bottom:1032.752100px;}
.y92{bottom:1032.779100px;}
.y77{bottom:1032.873600px;}
.yd3{bottom:1032.968100px;}
.y14{bottom:1042.592250px;}
.y15{bottom:1050.188100px;}
.y49{bottom:1052.462100px;}
.h16{height:34.754496px;}
.h12{height:34.845955px;}
.h1b{height:41.040000px;}
.h14{height:41.613936px;}
.he{height:43.148160px;}
.h3{height:43.296000px;}
.hc{height:43.584000px;}
.h15{height:47.002823px;}
.h10{height:47.605228px;}
.ha{height:48.708000px;}
.h19{height:48.722400px;}
.h1a{height:48.723000px;}
.hd{height:48.754200px;}
.h18{height:48.810000px;}
.h7{height:53.700000px;}
.h6{height:54.120000px;}
.h5{height:59.532000px;}
.h9{height:60.720000px;}
.h8{height:64.775391px;}
.hb{height:84.000000px;}
.h4{height:99.360000px;}
.hf{height:141.109500px;}
.h13{height:339.393000px;}
.h11{height:347.842500px;}
.h17{height:830.596500px;}
.h2{height:1105.512000px;}
.h1{height:1168.500000px;}
.h0{height:1168.512000px;}
.w3{width:396.040500px;}
.w2{width:510.235500px;}
.w1{width:573.000000px;}
.w0{width:573.235500px;}
.x0{left:0.000000px;}
.x15{left:17.846250px;}
.x1{left:31.500000px;}
.xd{left:42.519750px;}
.x9{left:43.830450px;}
.x16{left:54.652800px;}
.x8{left:56.760450px;}
.x4{left:61.652100px;}
.xb{left:63.766050px;}
.x6{left:66.210450px;}
.x17{left:67.479150px;}
.x3{left:73.306800px;}
.x18{left:80.305650px;}
.x10{left:85.039350px;}
.x19{left:93.132300px;}
.xf{left:95.669250px;}
.x11{left:97.795200px;}
.x1a{left:105.679950px;}
.x7{left:109.260450px;}
.x3b{left:116.929200px;}
.x12{left:119.041800px;}
.x1d{left:125.756100px;}
.x1e{left:138.582600px;}
.x1b{left:151.130250px;}
.x1c{left:163.956750px;}
.x1f{left:176.783400px;}
.xa{left:188.685450px;}
.x21{left:209.686050px;}
.x26{left:216.099300px;}
.x5{left:222.964350px;}
.x27{left:228.925800px;}
.xc{left:230.937600px;}
.x22{left:235.060200px;}
.x2{left:239.110050px;}
.x28{left:241.473450px;}
.x20{left:247.886700px;}
.x29{left:254.299950px;}
.x23{left:260.713200px;}
.x2a{left:267.126450px;}
.x24{left:273.539700px;}
.x2b{left:279.952950px;}
.x25{left:286.366200px;}
.x2e{left:306.163650px;}
.x2c{left:312.298050px;}
.x2f{left:318.990150px;}
.x2d{left:325.124550px;}
.x30{left:331.816650px;}
.xe{left:339.769350px;}
.x33{left:351.892950px;}
.x31{left:358.027350px;}
.x34{left:364.719450px;}
.x32{left:370.853850px;}
.x35{left:377.267100px;}
.x36{left:393.997350px;}
.x37{left:424.613400px;}
.x38{left:439.013400px;}
.x13{left:451.659900px;}
.x39{left:453.413400px;}
.x14{left:465.915900px;}
.x3a{left:467.813400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.536533pt;}
.ls7{letter-spacing:-3.360000pt;}
.ls5{letter-spacing:-2.880000pt;}
.ls13{letter-spacing:-2.448000pt;}
.lsc{letter-spacing:-2.208000pt;}
.ls8{letter-spacing:-2.112000pt;}
.ls4{letter-spacing:-1.344000pt;}
.lsb{letter-spacing:-0.912000pt;}
.ls3{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.432000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002496pt;}
.ls9{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.302495pt;}
.lsa{letter-spacing:0.505963pt;}
.ls2{letter-spacing:0.672000pt;}
.lsd{letter-spacing:0.912000pt;}
.ls15{letter-spacing:1.008000pt;}
.ls11{letter-spacing:44.055845pt;}
.ls10{letter-spacing:44.056373pt;}
.wsb{word-spacing:-48.000000pt;}
.ws1{word-spacing:-16.309333pt;}
.ws8{word-spacing:-14.256000pt;}
.ws2{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.392000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws9{word-spacing:-12.912000pt;}
.wsa{word-spacing:-12.031966pt;}
.ws7{word-spacing:-11.136000pt;}
.ws0{word-spacing:-9.508341pt;}
.ws6{word-spacing:-7.779552pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-10.320000pt;}
._b{margin-left:-7.524741pt;}
._0{margin-left:-6.515883pt;}
._1{margin-left:-5.397333pt;}
._2{margin-left:-3.946667pt;}
._8{margin-left:-2.429037pt;}
._3{margin-left:-1.056000pt;}
._7{width:1.248000pt;}
._6{width:2.160000pt;}
._e{width:3.847704pt;}
._4{width:4.827259pt;}
._d{width:6.186667pt;}
._f{width:7.157333pt;}
._10{width:8.490667pt;}
._11{width:9.413333pt;}
._13{width:10.512000pt;}
._22{width:11.464296pt;}
._14{width:12.384000pt;}
._21{width:14.736000pt;}
._1a{width:15.792000pt;}
._20{width:18.509037pt;}
._18{width:20.448000pt;}
._16{width:22.224000pt;}
._17{width:23.136000pt;}
._15{width:24.653037pt;}
._1b{width:29.808000pt;}
._19{width:34.848000pt;}
._1c{width:38.688000pt;}
._1f{width:41.664000pt;}
._1e{width:44.496000pt;}
._1d{width:56.400000pt;}
._c{width:104.772741pt;}
._5{width:106.848000pt;}
._9{width:110.352000pt;}
._a{width:111.658667pt;}
.fs7{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs9{font-size:40.648533pt;}
.fs8{font-size:42.240000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:3.254800pt;}
.y10b{bottom:3.505600pt;}
.y113{bottom:4.005333pt;}
.y10e{bottom:12.633067pt;}
.y108{bottom:17.327200pt;}
.y10f{bottom:17.848800pt;}
.y110{bottom:20.456800pt;}
.y10a{bottom:22.031733pt;}
.y10c{bottom:22.282400pt;}
.y10d{bottom:25.672533pt;}
.y111{bottom:26.194133pt;}
.y1{bottom:28.000000pt;}
.y2{bottom:29.475200pt;}
.y107{bottom:57.019733pt;}
.y103{bottom:62.704800pt;}
.y105{bottom:75.754400pt;}
.y76{bottom:83.093333pt;}
.y191{bottom:83.114933pt;}
.y91{bottom:83.124933pt;}
.y165{bottom:83.126933pt;}
.yae{bottom:83.142667pt;}
.y118{bottom:83.148400pt;}
.yd2{bottom:83.164800pt;}
.y145{bottom:83.526267pt;}
.y144{bottom:87.725600pt;}
.y48{bottom:90.262667pt;}
.y90{bottom:100.536933pt;}
.y75{bottom:100.613333pt;}
.yd1{bottom:100.792800pt;}
.yad{bottom:101.298667pt;}
.y164{bottom:101.378933pt;}
.y117{bottom:101.604400pt;}
.y190{bottom:101.630933pt;}
.y143{bottom:105.725600pt;}
.y100{bottom:109.906000pt;}
.y8f{bottom:117.948933pt;}
.y74{bottom:118.133333pt;}
.yd0{bottom:118.420800pt;}
.yac{bottom:118.794667pt;}
.y163{bottom:119.630933pt;}
.y116{bottom:120.060400pt;}
.y18f{bottom:120.146933pt;}
.y142{bottom:123.725600pt;}
.yff{bottom:127.234000pt;}
.y8e{bottom:135.360933pt;}
.y73{bottom:135.653333pt;}
.ycf{bottom:136.048800pt;}
.yab{bottom:136.290667pt;}
.y162{bottom:137.882933pt;}
.y115{bottom:138.516400pt;}
.y18e{bottom:138.662933pt;}
.y141{bottom:141.725600pt;}
.yfe{bottom:144.562000pt;}
.y8d{bottom:152.772933pt;}
.y72{bottom:153.173333pt;}
.yce{bottom:153.676800pt;}
.yaa{bottom:153.786667pt;}
.y161{bottom:156.134933pt;}
.y114{bottom:156.971867pt;}
.y18d{bottom:157.178933pt;}
.y140{bottom:159.725600pt;}
.yfd{bottom:161.890000pt;}
.y8c{bottom:170.184933pt;}
.y71{bottom:170.693333pt;}
.ya9{bottom:171.282667pt;}
.ycd{bottom:171.304800pt;}
.y160{bottom:174.386933pt;}
.y18c{bottom:175.694933pt;}
.y13f{bottom:177.725600pt;}
.yfc{bottom:179.218000pt;}
.y8b{bottom:187.596933pt;}
.y70{bottom:188.213333pt;}
.ya8{bottom:188.778667pt;}
.ycc{bottom:188.935867pt;}
.y15f{bottom:192.638933pt;}
.y18b{bottom:194.210933pt;}
.y13e{bottom:195.725600pt;}
.yfb{bottom:196.546000pt;}
.y8a{bottom:205.008933pt;}
.y101{bottom:205.098267pt;}
.y6f{bottom:205.733333pt;}
.ya7{bottom:206.274667pt;}
.y3a{bottom:207.028000pt;}
.y15e{bottom:210.890933pt;}
.ycb{bottom:212.242267pt;}
.y18a{bottom:212.726933pt;}
.y13d{bottom:213.725600pt;}
.yfa{bottom:213.874000pt;}
.y89{bottom:222.420933pt;}
.y6e{bottom:223.253333pt;}
.ya6{bottom:223.770667pt;}
.y39{bottom:225.028000pt;}
.yca{bottom:229.870267pt;}
.yf9{bottom:231.202000pt;}
.y189{bottom:231.242933pt;}
.y13c{bottom:231.725600pt;}
.y112{bottom:233.957333pt;}
.y102{bottom:234.457333pt;}
.y88{bottom:239.832933pt;}
.y6d{bottom:240.773333pt;}
.ya5{bottom:241.266667pt;}
.y38{bottom:243.028000pt;}
.y15d{bottom:244.257733pt;}
.yc9{bottom:247.498267pt;}
.yf8{bottom:248.530000pt;}
.y13b{bottom:249.725600pt;}
.y188{bottom:249.758933pt;}
.y87{bottom:257.244933pt;}
.y6c{bottom:258.293333pt;}
.ya4{bottom:258.762667pt;}
.y37{bottom:261.028000pt;}
.yc8{bottom:265.129333pt;}
.yf7{bottom:265.858000pt;}
.y13a{bottom:267.725600pt;}
.y187{bottom:268.274933pt;}
.y86{bottom:274.656933pt;}
.y6b{bottom:275.813333pt;}
.yf6{bottom:283.186000pt;}
.ya3{bottom:283.818667pt;}
.y139{bottom:285.725600pt;}
.y36{bottom:286.587067pt;}
.y186{bottom:286.790933pt;}
.y1b2{bottom:288.136000pt;}
.yc7{bottom:288.448000pt;}
.y85{bottom:292.068933pt;}
.yf5{bottom:300.514000pt;}
.ya2{bottom:301.314667pt;}
.y35{bottom:304.587067pt;}
.y185{bottom:305.306933pt;}
.y15c{bottom:305.780267pt;}
.yc6{bottom:306.076000pt;}
.y1b1{bottom:306.136000pt;}
.y6a{bottom:308.446267pt;}
.y138{bottom:311.285600pt;}
.yf4{bottom:317.842000pt;}
.ya1{bottom:318.810667pt;}
.y15b{bottom:318.825600pt;}
.y34{bottom:322.587067pt;}
.yc5{bottom:323.704000pt;}
.y1b0{bottom:324.136000pt;}
.y137{bottom:329.285600pt;}
.y184{bottom:331.364667pt;}
.y15a{bottom:331.870933pt;}
.y84{bottom:335.118400pt;}
.ya0{bottom:336.306667pt;}
.y13{bottom:338.293600pt;}
.y33{bottom:340.587067pt;}
.yf3{bottom:340.892667pt;}
.yc4{bottom:341.332000pt;}
.y1af{bottom:342.136000pt;}
.y159{bottom:344.916267pt;}
.y136{bottom:347.285600pt;}
.y83{bottom:347.993067pt;}
.y183{bottom:349.880667pt;}
.y9f{bottom:353.802667pt;}
.y158{bottom:357.961600pt;}
.yf2{bottom:358.220667pt;}
.y32{bottom:358.587067pt;}
.yc3{bottom:358.960000pt;}
.y69{bottom:359.784133pt;}
.y1ae{bottom:360.136000pt;}
.y104{bottom:360.388000pt;}
.y82{bottom:360.867733pt;}
.y12{bottom:363.852533pt;}
.y1b4{bottom:364.762800pt;}
.y135{bottom:365.285600pt;}
.y182{bottom:368.396667pt;}
.y157{bottom:371.006933pt;}
.y81{bottom:373.744400pt;}
.yf1{bottom:375.548667pt;}
.y31{bottom:376.587067pt;}
.yc2{bottom:376.588000pt;}
.y68{bottom:377.304133pt;}
.y1b3{bottom:377.562800pt;}
.y134{bottom:383.285600pt;}
.y156{bottom:384.055600pt;}
.y181{bottom:386.912667pt;}
.y11{bottom:389.411600pt;}
.yf0{bottom:392.876667pt;}
.yc1{bottom:394.216000pt;}
.y30{bottom:394.587067pt;}
.y67{bottom:394.824133pt;}
.y9e{bottom:397.029600pt;}
.y133{bottom:401.285600pt;}
.y180{bottom:405.428667pt;}
.y9d{bottom:409.989600pt;}
.yef{bottom:410.204667pt;}
.y66{bottom:412.344133pt;}
.y2f{bottom:412.587067pt;}
.y10{bottom:414.970667pt;}
.y1ad{bottom:416.536000pt;}
.yc0{bottom:417.534667pt;}
.y132{bottom:419.285600pt;}
.y9c{bottom:422.949600pt;}
.y17f{bottom:423.944667pt;}
.yee{bottom:427.532667pt;}
.y1ac{bottom:429.336000pt;}
.y65{bottom:429.864133pt;}
.y2e{bottom:430.587067pt;}
.ybf{bottom:435.162667pt;}
.y9b{bottom:435.909600pt;}
.y131{bottom:437.285600pt;}
.yf{bottom:440.529733pt;}
.y1ab{bottom:442.136000pt;}
.y17e{bottom:442.457733pt;}
.yed{bottom:444.860667pt;}
.y64{bottom:447.384133pt;}
.y2d{bottom:448.587067pt;}
.y9a{bottom:448.869600pt;}
.ybe{bottom:452.790667pt;}
.y1aa{bottom:454.936000pt;}
.y130{bottom:455.285600pt;}
.y99{bottom:461.829600pt;}
.yec{bottom:462.188667pt;}
.y63{bottom:464.904133pt;}
.ye{bottom:466.088800pt;}
.y2c{bottom:466.587067pt;}
.y1a9{bottom:467.736000pt;}
.y17d{bottom:468.521333pt;}
.ybd{bottom:470.418667pt;}
.y12f{bottom:473.285600pt;}
.y98{bottom:474.789600pt;}
.yeb{bottom:479.516667pt;}
.y1a8{bottom:480.536000pt;}
.y62{bottom:482.424133pt;}
.y2b{bottom:484.587067pt;}
.y17c{bottom:487.037333pt;}
.ybc{bottom:488.046667pt;}
.y12e{bottom:491.285600pt;}
.y1a7{bottom:493.336000pt;}
.yea{bottom:496.844667pt;}
.y2a{bottom:502.587067pt;}
.y17b{bottom:505.553333pt;}
.ybb{bottom:505.674667pt;}
.y1a6{bottom:506.136000pt;}
.y61{bottom:507.504133pt;}
.y12d{bottom:509.285600pt;}
.yd{bottom:517.206933pt;}
.y1a5{bottom:518.936000pt;}
.ye9{bottom:519.895333pt;}
.yba{bottom:523.302667pt;}
.y17a{bottom:524.069333pt;}
.y60{bottom:525.024133pt;}
.y12c{bottom:527.285600pt;}
.y29{bottom:528.146133pt;}
.y1a4{bottom:531.736000pt;}
.y1a2{bottom:531.961867pt;}
.ye8{bottom:537.223333pt;}
.yb9{bottom:540.933733pt;}
.y5f{bottom:542.544133pt;}
.y1a3{bottom:544.536000pt;}
.y12b{bottom:545.285600pt;}
.y28{bottom:546.146133pt;}
.y1a1{bottom:549.961867pt;}
.y179{bottom:550.129867pt;}
.ye7{bottom:554.551333pt;}
.y5e{bottom:560.064133pt;}
.y12a{bottom:563.285600pt;}
.y27{bottom:564.146133pt;}
.yb8{bottom:564.249200pt;}
.y1a0{bottom:567.961867pt;}
.y178{bottom:568.645867pt;}
.ye6{bottom:571.879333pt;}
.y5d{bottom:577.584133pt;}
.y129{bottom:581.285600pt;}
.yb7{bottom:581.877200pt;}
.y26{bottom:582.146133pt;}
.y19f{bottom:585.961867pt;}
.y177{bottom:587.161867pt;}
.ye5{bottom:589.207333pt;}
.yc{bottom:593.478667pt;}
.y5c{bottom:595.104133pt;}
.y128{bottom:599.285600pt;}
.yb6{bottom:599.505200pt;}
.y25{bottom:600.146133pt;}
.y19e{bottom:603.961867pt;}
.y176{bottom:605.677867pt;}
.ye4{bottom:606.535333pt;}
.y47{bottom:612.382400pt;}
.y5b{bottom:612.624133pt;}
.yb{bottom:613.484000pt;}
.yb5{bottom:617.133200pt;}
.y127{bottom:617.285600pt;}
.y19d{bottom:621.961867pt;}
.ye3{bottom:623.863333pt;}
.y175{bottom:624.193867pt;}
.y24{bottom:625.702400pt;}
.y5a{bottom:630.144133pt;}
.y46{bottom:630.382400pt;}
.yb4{bottom:634.761200pt;}
.y126{bottom:635.285600pt;}
.y155{bottom:635.966400pt;}
.y19c{bottom:639.961867pt;}
.ya{bottom:641.042267pt;}
.ye2{bottom:641.191333pt;}
.y23{bottom:643.702400pt;}
.y59{bottom:647.664133pt;}
.y45{bottom:648.382400pt;}
.y174{bottom:650.231467pt;}
.yb3{bottom:652.389200pt;}
.y125{bottom:653.285600pt;}
.y154{bottom:654.218400pt;}
.y19b{bottom:657.961867pt;}
.ye1{bottom:658.519333pt;}
.y9{bottom:661.042267pt;}
.y22{bottom:661.702400pt;}
.y58{bottom:665.184133pt;}
.y44{bottom:666.382400pt;}
.y173{bottom:668.747467pt;}
.y106{bottom:670.081333pt;}
.y124{bottom:671.285600pt;}
.y153{bottom:672.470400pt;}
.ye0{bottom:675.847333pt;}
.y19a{bottom:675.961867pt;}
.y21{bottom:679.702400pt;}
.y8{bottom:681.042267pt;}
.y57{bottom:682.704133pt;}
.y43{bottom:684.382400pt;}
.yb2{bottom:685.138400pt;}
.y172{bottom:687.263467pt;}
.y123{bottom:689.285600pt;}
.y152{bottom:690.722400pt;}
.y199{bottom:693.961867pt;}
.y20{bottom:697.702400pt;}
.ydf{bottom:698.892667pt;}
.y56{bottom:700.224133pt;}
.y42{bottom:702.382400pt;}
.y171{bottom:705.779467pt;}
.y122{bottom:707.285600pt;}
.y7{bottom:708.602267pt;}
.y151{bottom:708.974400pt;}
.yde{bottom:716.220667pt;}
.y55{bottom:717.744133pt;}
.y198{bottom:719.521867pt;}
.y41{bottom:720.382400pt;}
.y1f{bottom:723.262400pt;}
.y170{bottom:724.295467pt;}
.y121{bottom:725.285600pt;}
.y150{bottom:727.226400pt;}
.y6{bottom:728.602267pt;}
.yb1{bottom:732.892000pt;}
.ydd{bottom:733.548667pt;}
.y54{bottom:735.264133pt;}
.y197{bottom:737.521867pt;}
.y40{bottom:738.382400pt;}
.y1e{bottom:741.262400pt;}
.y16f{bottom:742.811467pt;}
.y120{bottom:743.285600pt;}
.y14f{bottom:745.475200pt;}
.yb0{bottom:745.990667pt;}
.ydc{bottom:750.876667pt;}
.y53{bottom:752.784133pt;}
.y80{bottom:753.181867pt;}
.y196{bottom:755.521867pt;}
.y3f{bottom:756.382400pt;}
.yaf{bottom:759.088400pt;}
.y1d{bottom:759.262400pt;}
.y11f{bottom:761.285600pt;}
.y16e{bottom:761.327467pt;}
.ydb{bottom:768.204667pt;}
.y52{bottom:770.304133pt;}
.y7f{bottom:771.253867pt;}
.y14e{bottom:771.279733pt;}
.y195{bottom:773.521867pt;}
.y3e{bottom:774.382400pt;}
.y1c{bottom:777.262400pt;}
.y16d{bottom:779.843467pt;}
.y5{bottom:781.720267pt;}
.yda{bottom:785.532667pt;}
.y51{bottom:787.824133pt;}
.y7e{bottom:788.665867pt;}
.y14d{bottom:789.528533pt;}
.y194{bottom:791.521867pt;}
.y3d{bottom:792.382400pt;}
.y11e{bottom:794.403733pt;}
.y16c{bottom:798.359467pt;}
.y4{bottom:799.320267pt;}
.y1b{bottom:802.822400pt;}
.yd9{bottom:802.860667pt;}
.y7d{bottom:806.077867pt;}
.y14c{bottom:807.757867pt;}
.y193{bottom:809.521867pt;}
.y3c{bottom:810.382400pt;}
.y50{bottom:812.892133pt;}
.y16b{bottom:816.875467pt;}
.yd8{bottom:820.188667pt;}
.y1a{bottom:820.822400pt;}
.y7c{bottom:823.489867pt;}
.y14b{bottom:826.009867pt;}
.y192{bottom:827.521867pt;}
.y3b{bottom:828.382400pt;}
.y97{bottom:829.885867pt;}
.y4f{bottom:830.412133pt;}
.y16a{bottom:835.391467pt;}
.yd7{bottom:837.516667pt;}
.y7b{bottom:840.901867pt;}
.y14a{bottom:844.261867pt;}
.y11d{bottom:845.521867pt;}
.y19{bottom:846.382400pt;}
.y4e{bottom:847.932133pt;}
.y96{bottom:848.041867pt;}
.y3{bottom:850.038400pt;}
.y169{bottom:853.907467pt;}
.y7a{bottom:858.313867pt;}
.yd6{bottom:860.524533pt;}
.y149{bottom:862.513867pt;}
.y11c{bottom:863.521867pt;}
.y18{bottom:864.382400pt;}
.y4d{bottom:865.452133pt;}
.y95{bottom:865.537867pt;}
.y168{bottom:872.423467pt;}
.yd5{bottom:877.852533pt;}
.y148{bottom:880.765867pt;}
.y11b{bottom:881.521867pt;}
.y17{bottom:882.382400pt;}
.y4c{bottom:882.972133pt;}
.y94{bottom:883.033867pt;}
.y79{bottom:883.285867pt;}
.y167{bottom:890.936667pt;}
.y147{bottom:899.017867pt;}
.y11a{bottom:899.521867pt;}
.y16{bottom:900.382400pt;}
.y4b{bottom:900.481867pt;}
.y93{bottom:900.529867pt;}
.y78{bottom:900.697867pt;}
.yd4{bottom:900.865867pt;}
.y166{bottom:917.005867pt;}
.y146{bottom:917.269867pt;}
.y119{bottom:917.521867pt;}
.y4a{bottom:918.001867pt;}
.y92{bottom:918.025867pt;}
.y77{bottom:918.109867pt;}
.yd3{bottom:918.193867pt;}
.y14{bottom:926.748667pt;}
.y15{bottom:933.500533pt;}
.y49{bottom:935.521867pt;}
.h16{height:30.892885pt;}
.h12{height:30.974182pt;}
.h1b{height:36.480000pt;}
.h14{height:36.990165pt;}
.he{height:38.353920pt;}
.h3{height:38.485333pt;}
.hc{height:38.741333pt;}
.h15{height:41.780287pt;}
.h10{height:42.315758pt;}
.ha{height:43.296000pt;}
.h19{height:43.308800pt;}
.h1a{height:43.309333pt;}
.hd{height:43.337067pt;}
.h18{height:43.386667pt;}
.h7{height:47.733333pt;}
.h6{height:48.106667pt;}
.h5{height:52.917333pt;}
.h9{height:53.973333pt;}
.h8{height:57.578125pt;}
.hb{height:74.666667pt;}
.h4{height:88.320000pt;}
.hf{height:125.430667pt;}
.h13{height:301.682667pt;}
.h11{height:309.193333pt;}
.h17{height:738.308000pt;}
.h2{height:982.677333pt;}
.h1{height:1038.666667pt;}
.h0{height:1038.677333pt;}
.w3{width:352.036000pt;}
.w2{width:453.542667pt;}
.w1{width:509.333333pt;}
.w0{width:509.542667pt;}
.x0{left:0.000000pt;}
.x15{left:15.863333pt;}
.x1{left:28.000000pt;}
.xd{left:37.795333pt;}
.x9{left:38.960400pt;}
.x16{left:48.580267pt;}
.x8{left:50.453733pt;}
.x4{left:54.801867pt;}
.xb{left:56.680933pt;}
.x6{left:58.853733pt;}
.x17{left:59.981467pt;}
.x3{left:65.161600pt;}
.x18{left:71.382800pt;}
.x10{left:75.590533pt;}
.x19{left:82.784267pt;}
.xf{left:85.039333pt;}
.x11{left:86.929067pt;}
.x1a{left:93.937733pt;}
.x7{left:97.120400pt;}
.x3b{left:103.937067pt;}
.x12{left:105.814933pt;}
.x1d{left:111.783200pt;}
.x1e{left:123.184533pt;}
.x1b{left:134.338000pt;}
.x1c{left:145.739333pt;}
.x1f{left:157.140800pt;}
.xa{left:167.720400pt;}
.x21{left:186.387600pt;}
.x26{left:192.088267pt;}
.x5{left:198.190533pt;}
.x27{left:203.489600pt;}
.xc{left:205.277867pt;}
.x22{left:208.942400pt;}
.x2{left:212.542267pt;}
.x28{left:214.643067pt;}
.x20{left:220.343733pt;}
.x29{left:226.044400pt;}
.x23{left:231.745067pt;}
.x2a{left:237.445733pt;}
.x24{left:243.146400pt;}
.x2b{left:248.847067pt;}
.x25{left:254.547733pt;}
.x2e{left:272.145467pt;}
.x2c{left:277.598267pt;}
.x2f{left:283.546800pt;}
.x2d{left:288.999600pt;}
.x30{left:294.948133pt;}
.xe{left:302.017200pt;}
.x33{left:312.793733pt;}
.x31{left:318.246533pt;}
.x34{left:324.195067pt;}
.x32{left:329.647867pt;}
.x35{left:335.348533pt;}
.x36{left:350.219867pt;}
.x37{left:377.434133pt;}
.x38{left:390.234133pt;}
.x13{left:401.475467pt;}
.x39{left:403.034133pt;}
.x14{left:414.147467pt;}
.x3a{left:415.834133pt;}
}




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