
    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_bc8221d1df10c26928cc9b6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_eaafc4e6bb8de6d3e45cf75c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_199350caa2b2ed41ce9b4262.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_8afc9aa43c1b251208bc6a22.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c290ce8cb190124677cc263b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2c8044ff2bae4f441bd6dfe5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_0930bf37c02c4a4d5ca8c26f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_bd254c30cddfda3389deaffa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.070000;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_6f42255ec14fed55fe9a0acc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.027000;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_64c260a0bca4fed5cec9940d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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);}
.v1b{vertical-align:-48.960000px;}
.v2a{vertical-align:-46.080000px;}
.v8{vertical-align:-24.480000px;}
.v27{vertical-align:-23.040000px;}
.v21{vertical-align:-21.600000px;}
.v1d{vertical-align:-20.160000px;}
.v1e{vertical-align:-18.720000px;}
.vf{vertical-align:-17.280000px;}
.v19{vertical-align:-15.840000px;}
.v28{vertical-align:-14.400000px;}
.v2{vertical-align:-12.960000px;}
.v22{vertical-align:-11.520000px;}
.v12{vertical-align:-10.080000px;}
.v26{vertical-align:-8.640000px;}
.v25{vertical-align:-7.200000px;}
.v18{vertical-align:-5.760000px;}
.v17{vertical-align:-4.320000px;}
.v5{vertical-align:-2.880000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v11{vertical-align:2.880000px;}
.v14{vertical-align:4.320000px;}
.v10{vertical-align:5.760000px;}
.ve{vertical-align:7.200000px;}
.v7{vertical-align:8.640000px;}
.v9{vertical-align:10.080000px;}
.va{vertical-align:11.520000px;}
.vc{vertical-align:12.960000px;}
.vd{vertical-align:14.400000px;}
.v1a{vertical-align:15.840000px;}
.v13{vertical-align:17.280000px;}
.v23{vertical-align:18.720000px;}
.v20{vertical-align:20.160000px;}
.v24{vertical-align:21.600000px;}
.v3{vertical-align:23.040000px;}
.v29{vertical-align:28.800000px;}
.vb{vertical-align:30.240000px;}
.v1f{vertical-align:46.080000px;}
.v1c{vertical-align:47.520000px;}
.v15{vertical-align:48.960000px;}
.v16{vertical-align:50.400000px;}
.v1{vertical-align:57.600000px;}
.ls13{letter-spacing:-0.907200px;}
.ls12{letter-spacing:-0.828000px;}
.ls17{letter-spacing:-0.172800px;}
.ls14{letter-spacing:-0.032400px;}
.ls15{letter-spacing:-0.010800px;}
.ls11{letter-spacing:-0.001200px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002400px;}
.lse{letter-spacing:0.009000px;}
.ls2{letter-spacing:0.015600px;}
.lsc{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.065400px;}
.lsb{letter-spacing:0.084000px;}
.ls4{letter-spacing:0.100800px;}
.lsa{letter-spacing:0.110400px;}
.ls7{letter-spacing:0.167400px;}
.ls5{letter-spacing:0.189600px;}
.lsf{letter-spacing:0.192000px;}
.ls16{letter-spacing:0.273600px;}
.ls9{letter-spacing:0.590400px;}
.ls10{letter-spacing:0.918000px;}
.ls3{letter-spacing:1.605600px;}
.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;}
}
.ws4{word-spacing:-13.773600px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.489200px;}
.ws1{word-spacing:-11.092800px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-1.716045px;}
._7{width:1.332000px;}
._0{width:2.385000px;}
._3{width:3.618000px;}
._a{width:4.740000px;}
._1{width:5.856000px;}
._5{width:6.876000px;}
._e{width:7.968045px;}
._2{width:8.982000px;}
._9{width:10.086000px;}
._4{width:11.178000px;}
._d{width:12.822000px;}
._8{width:14.337000px;}
._10{width:15.351000px;}
._6{width:16.704000px;}
._f{width:18.081000px;}
._c{width:19.932000px;}
._11{width:21.429000px;}
._13{width:22.674000px;}
._12{width:24.912000px;}
._b{width:26.739000px;}
._15{width:121.046400px;}
.fc2{color:rgb(48,48,48);}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs22{font-size:18.000000px;}
.fs24{font-size:21.000000px;}
.fs25{font-size:24.000000px;}
.fse{font-size:27.000000px;}
.fs6{font-size:30.000000px;}
.fs12{font-size:33.000000px;}
.fsd{font-size:36.000000px;}
.fs10{font-size:39.000000px;}
.fsc{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs20{font-size:57.000000px;}
.fs21{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs19{font-size:66.000000px;}
.fs18{font-size:69.000000px;}
.fs1a{font-size:72.000000px;}
.fs1f{font-size:75.000000px;}
.fs1d{font-size:78.000000px;}
.fs13{font-size:81.000000px;}
.fs1e{font-size:84.000000px;}
.fs16{font-size:87.000000px;}
.fs1b{font-size:90.000000px;}
.fs17{font-size:93.000000px;}
.fsa{font-size:96.000000px;}
.fs3{font-size:99.000000px;}
.fs1c{font-size:102.000000px;}
.fs15{font-size:105.000000px;}
.fs14{font-size:108.000000px;}
.fs8{font-size:111.000000px;}
.fs9{font-size:120.000000px;}
.fs7{font-size:126.000000px;}
.fs5{font-size:129.000000px;}
.fs2{font-size:147.000000px;}
.fs23{font-size:198.000000px;}
.fs11{font-size:246.000000px;}
.y8a{bottom:-25.511850px;}
.y0{bottom:0.000000px;}
.y102{bottom:29.568150px;}
.y166{bottom:29.928150px;}
.yda{bottom:30.648150px;}
.y169{bottom:31.320000px;}
.y3c{bottom:32.088150px;}
.y89{bottom:32.448150px;}
.y88{bottom:34.968150px;}
.ydb{bottom:35.328150px;}
.y13e{bottom:36.048150px;}
.y125{bottom:59.088150px;}
.y165{bottom:60.888150px;}
.y13d{bottom:61.968150px;}
.yd9{bottom:63.408150px;}
.y101{bottom:63.768150px;}
.y87{bottom:67.008150px;}
.yb1{bottom:69.528150px;}
.y13c{bottom:76.728150px;}
.y124{bottom:77.088150px;}
.yd8{bottom:77.808150px;}
.y65{bottom:78.528150px;}
.y164{bottom:78.888150px;}
.yb0{bottom:83.568150px;}
.y86{bottom:85.728150px;}
.y168{bottom:88.860000px;}
.y3b{bottom:88.968150px;}
.y123{bottom:91.128150px;}
.y13b{bottom:94.728150px;}
.yd7{bottom:96.168150px;}
.y163{bottom:97.248150px;}
.y64{bottom:99.768150px;}
.y85{bottom:100.128150px;}
.yaf{bottom:101.928150px;}
.y100{bottom:104.448150px;}
.y13a{bottom:109.488150px;}
.y122{bottom:109.848150px;}
.y3a{bottom:110.208150px;}
.yd6{bottom:114.528150px;}
.y162{bottom:115.608150px;}
.y84{bottom:118.488150px;}
.y63{bottom:120.288150px;}
.y121{bottom:124.248150px;}
.y14{bottom:124.920000px;}
.yff{bottom:125.688150px;}
.y161{bottom:130.008150px;}
.y39{bottom:130.728150px;}
.y83{bottom:132.888150px;}
.y139{bottom:138.288150px;}
.yae{bottom:138.648150px;}
.yf{bottom:139.680000px;}
.y62{bottom:141.528150px;}
.y120{bottom:142.608150px;}
.yfe{bottom:146.568150px;}
.y160{bottom:148.368150px;}
.y82{bottom:151.248150px;}
.y38{bottom:151.968150px;}
.y138{bottom:156.648150px;}
.yad{bottom:157.008150px;}
.y13{bottom:157.320000px;}
.y61{bottom:162.408150px;}
.yd5{bottom:165.288150px;}
.yfd{bottom:167.448150px;}
.y37{bottom:172.848150px;}
.y137{bottom:175.008150px;}
.yac{bottom:175.368150px;}
.y60{bottom:183.288150px;}
.yd4{bottom:185.808150px;}
.y15f{bottom:186.888150px;}
.yfc{bottom:188.688150px;}
.y136{bottom:189.408150px;}
.yab{bottom:189.768150px;}
.y36{bottom:193.728150px;}
.y11f{bottom:194.808150px;}
.y12{bottom:195.120000px;}
.yaa{bottom:204.528150px;}
.y5f{bottom:206.688150px;}
.yd3{bottom:207.408150px;}
.y135{bottom:207.768150px;}
.yfb{bottom:209.928150px;}
.y35{bottom:214.608150px;}
.y11e{bottom:216.048150px;}
.ya9{bottom:222.528150px;}
.y5e{bottom:227.568150px;}
.yd2{bottom:228.288150px;}
.y15e{bottom:228.648150px;}
.yfa{bottom:230.808150px;}
.y81{bottom:233.688150px;}
.y34{bottom:234.768150px;}
.y11d{bottom:236.568150px;}
.y11{bottom:239.040000px;}
.y5d{bottom:248.448150px;}
.yd1{bottom:248.808150px;}
.y15d{bottom:249.168150px;}
.yf9{bottom:251.688150px;}
.y80{bottom:253.848150px;}
.y11c{bottom:257.808150px;}
.y33{bottom:258.528150px;}
.yd0{bottom:269.328150px;}
.y10{bottom:269.640000px;}
.y5c{bottom:269.688150px;}
.yf8{bottom:272.568150px;}
.y7f{bottom:277.248150px;}
.ya8{bottom:278.688150px;}
.y11b{bottom:279.048150px;}
.y32{bottom:279.768150px;}
.y5b{bottom:290.928150px;}
.ycf{bottom:292.728150px;}
.yf7{bottom:293.808150px;}
.y7e{bottom:298.488150px;}
.ya7{bottom:299.928150px;}
.y31{bottom:300.648150px;}
.y5a{bottom:311.808150px;}
.y15c{bottom:314.688150px;}
.yf6{bottom:315.048150px;}
.ye{bottom:317.520000px;}
.y7d{bottom:319.368150px;}
.y11a{bottom:320.448150px;}
.ya6{bottom:320.808150px;}
.y30{bottom:321.888150px;}
.yf5{bottom:330.528150px;}
.yc{bottom:332.640000px;}
.y59{bottom:333.048150px;}
.y15b{bottom:335.568150px;}
.yce{bottom:338.808150px;}
.y7c{bottom:340.248150px;}
.y119{bottom:341.328150px;}
.ya5{bottom:342.048150px;}
.y2f{bottom:342.408150px;}
.y58{bottom:353.928150px;}
.y15a{bottom:356.808150px;}
.yf4{bottom:357.168150px;}
.ycd{bottom:360.048150px;}
.y7b{bottom:361.128150px;}
.y118{bottom:362.568150px;}
.ya4{bottom:362.928150px;}
.y2e{bottom:363.288150px;}
.y57{bottom:375.168150px;}
.y159{bottom:377.688150px;}
.yf3{bottom:378.048150px;}
.ycc{bottom:380.928150px;}
.yb{bottom:381.600000px;}
.y7a{bottom:382.368150px;}
.y117{bottom:383.448150px;}
.y2d{bottom:384.168150px;}
.y56{bottom:396.048150px;}
.y134{bottom:396.408150px;}
.y158{bottom:398.568150px;}
.yf2{bottom:398.928150px;}
.y116{bottom:400.368150px;}
.y79{bottom:401.088150px;}
.ycb{bottom:401.808150px;}
.ya3{bottom:405.048150px;}
.y2c{bottom:405.408150px;}
.y55{bottom:416.928150px;}
.y133{bottom:419.448150px;}
.y157{bottom:419.808150px;}
.yf1{bottom:420.168150px;}
.yca{bottom:423.048150px;}
.y115{bottom:425.568150px;}
.ya2{bottom:425.928150px;}
.y2b{bottom:426.288150px;}
.y78{bottom:426.648150px;}
.y132{bottom:440.328150px;}
.y54{bottom:440.688150px;}
.yf0{bottom:441.048150px;}
.y156{bottom:442.488150px;}
.yc9{bottom:443.928150px;}
.yd{bottom:444.600000px;}
.y114{bottom:446.448150px;}
.y2a{bottom:447.528150px;}
.y77{bottom:447.888150px;}
.ya1{bottom:449.328150px;}
.ya{bottom:455.400000px;}
.y29{bottom:456.528150px;}
.y53{bottom:461.208150px;}
.y131{bottom:461.568150px;}
.yef{bottom:462.288150px;}
.y155{bottom:463.728150px;}
.y9{bottom:464.400000px;}
.yc8{bottom:464.448150px;}
.y113{bottom:467.688150px;}
.y76{bottom:468.408150px;}
.ya0{bottom:470.208150px;}
.y130{bottom:482.448150px;}
.yee{bottom:483.528150px;}
.y154{bottom:484.608150px;}
.yc7{bottom:485.688150px;}
.y112{bottom:488.568150px;}
.y28{bottom:489.288150px;}
.y75{bottom:489.648150px;}
.y9f{bottom:491.448150px;}
.y12f{bottom:503.688150px;}
.yed{bottom:504.408150px;}
.y153{bottom:505.488150px;}
.yc6{bottom:506.568150px;}
.y52{bottom:507.648150px;}
.y111{bottom:509.448150px;}
.y27{bottom:510.168150px;}
.y74{bottom:510.528150px;}
.y9e{bottom:512.328150px;}
.y12e{bottom:524.568150px;}
.yec{bottom:525.288150px;}
.y152{bottom:526.368150px;}
.yc5{bottom:527.448150px;}
.y51{bottom:528.528150px;}
.y167{bottom:530.085000px;}
.y110{bottom:531.048150px;}
.y26{bottom:531.408150px;}
.y9d{bottom:533.208150px;}
.y151{bottom:547.248150px;}
.y12d{bottom:547.968150px;}
.yc4{bottom:548.328150px;}
.y50{bottom:549.768150px;}
.y25{bottom:552.288150px;}
.y73{bottom:552.648150px;}
.y10f{bottom:553.368150px;}
.y9c{bottom:554.448150px;}
.y150{bottom:568.128150px;}
.yc3{bottom:568.848150px;}
.yeb{bottom:569.568150px;}
.y4f{bottom:572.808150px;}
.y24{bottom:573.168150px;}
.y72{bottom:573.528150px;}
.y10e{bottom:574.248150px;}
.y9b{bottom:575.328150px;}
.y14f{bottom:588.648150px;}
.yc2{bottom:589.728150px;}
.yea{bottom:590.448150px;}
.y12c{bottom:593.688150px;}
.y23{bottom:594.048150px;}
.y71{bottom:594.408150px;}
.y10d{bottom:595.128150px;}
.y9a{bottom:596.568150px;}
.y14e{bottom:609.888150px;}
.ye9{bottom:611.328150px;}
.yc1{bottom:612.408150px;}
.y4e{bottom:614.568150px;}
.y22{bottom:614.928150px;}
.y70{bottom:615.288150px;}
.y10c{bottom:616.008150px;}
.y99{bottom:617.088150px;}
.y14d{bottom:630.768150px;}
.ye8{bottom:632.568150px;}
.yc0{bottom:633.648150px;}
.y21{bottom:635.808150px;}
.y6f{bottom:636.168150px;}
.y10b{bottom:636.888150px;}
.y98{bottom:638.328150px;}
.y14c{bottom:651.288150px;}
.ye7{bottom:653.448150px;}
.ybf{bottom:654.528150px;}
.y20{bottom:656.328150px;}
.y4d{bottom:656.688150px;}
.y6e{bottom:657.048150px;}
.y10a{bottom:657.768150px;}
.y97{bottom:659.568150px;}
.y14b{bottom:672.528150px;}
.ye6{bottom:674.328150px;}
.ybe{bottom:675.408150px;}
.y1f{bottom:677.568150px;}
.y4c{bottom:677.928150px;}
.y109{bottom:678.288150px;}
.y96{bottom:680.448150px;}
.y14a{bottom:693.408150px;}
.ye5{bottom:695.568150px;}
.ybd{bottom:696.288150px;}
.y1e{bottom:698.448150px;}
.y6d{bottom:698.808150px;}
.y12b{bottom:699.168150px;}
.y108{bottom:699.528150px;}
.y95{bottom:701.328150px;}
.y149{bottom:713.928150px;}
.ye4{bottom:716.448150px;}
.ybc{bottom:716.808150px;}
.y1d{bottom:719.328150px;}
.y4b{bottom:719.688150px;}
.y12a{bottom:720.048150px;}
.y107{bottom:720.408150px;}
.y94{bottom:722.208150px;}
.y148{bottom:735.168150px;}
.ybb{bottom:737.328150px;}
.ye3{bottom:737.688150px;}
.y6{bottom:740.160000px;}
.y1c{bottom:740.208150px;}
.y4a{bottom:740.568150px;}
.y6c{bottom:740.928150px;}
.y106{bottom:741.288150px;}
.y93{bottom:743.448150px;}
.y147{bottom:756.048150px;}
.yba{bottom:758.568150px;}
.ye2{bottom:758.928150px;}
.y49{bottom:761.808150px;}
.y1b{bottom:763.248150px;}
.y129{bottom:763.968150px;}
.y92{bottom:764.328150px;}
.yb9{bottom:779.448150px;}
.y146{bottom:779.808150px;}
.y48{bottom:782.688150px;}
.y105{bottom:783.048150px;}
.y6b{bottom:784.488150px;}
.y128{bottom:785.208150px;}
.y91{bottom:785.568150px;}
.y1a{bottom:786.648150px;}
.y5{bottom:792.000000px;}
.y145{bottom:799.968150px;}
.yb8{bottom:800.328150px;}
.ye1{bottom:800.688150px;}
.y47{bottom:803.928150px;}
.y127{bottom:806.088150px;}
.y6a{bottom:806.448150px;}
.y19{bottom:810.048150px;}
.y144{bottom:821.208150px;}
.yb7{bottom:821.928150px;}
.y8{bottom:826.200000px;}
.y69{bottom:826.608150px;}
.y46{bottom:827.328150px;}
.y90{bottom:827.688150px;}
.y18{bottom:833.448150px;}
.y7{bottom:837.000000px;}
.y143{bottom:841.008150px;}
.yb6{bottom:842.448150px;}
.ye0{bottom:843.168150px;}
.y68{bottom:847.848150px;}
.y45{bottom:848.208150px;}
.y8f{bottom:848.568150px;}
.y4{bottom:853.920000px;}
.y142{bottom:862.608150px;}
.ydf{bottom:864.048150px;}
.y40{bottom:867.339150px;}
.yb5{bottom:867.648150px;}
.y67{bottom:869.088150px;}
.y44{bottom:869.448150px;}
.y8e{bottom:869.808150px;}
.y17{bottom:877.008150px;}
.y141{bottom:883.848150px;}
.yb4{bottom:884.208150px;}
.y3{bottom:886.320000px;}
.y3f{bottom:887.139150px;}
.yde{bottom:887.808150px;}
.y66{bottom:890.328150px;}
.y43{bottom:890.688150px;}
.y8d{bottom:891.048150px;}
.y16{bottom:902.208150px;}
.y140{bottom:904.728150px;}
.yb3{bottom:905.088150px;}
.y3e{bottom:906.939150px;}
.y8c{bottom:907.608150px;}
.ydd{bottom:908.328150px;}
.y104{bottom:911.208150px;}
.y42{bottom:911.568150px;}
.y126{bottom:911.928150px;}
.y2{bottom:915.480000px;}
.y13f{bottom:925.968150px;}
.y3d{bottom:926.739150px;}
.y15{bottom:927.768150px;}
.ydc{bottom:929.928150px;}
.yb2{bottom:930.648150px;}
.y103{bottom:932.448150px;}
.y41{bottom:932.808150px;}
.y8b{bottom:933.528150px;}
.y1{bottom:1039.320000px;}
.ha{height:31.289062px;}
.h93{height:37.200000px;}
.h9{height:37.546875px;}
.he{height:37.795781px;}
.hb{height:39.929062px;}
.h94{height:40.344000px;}
.hc{height:40.675781px;}
.h81{height:41.422500px;}
.h8{height:43.804688px;}
.h95{height:43.956000px;}
.h51{height:45.244687px;}
.h50{height:45.493594px;}
.h5f{height:46.738125px;}
.h5e{height:46.933594px;}
.h32{height:46.992000px;}
.h52{height:48.373594px;}
.h86{height:48.622500px;}
.h3{height:50.062500px;}
.h82{height:50.311406px;}
.h70{height:50.560313px;}
.h88{height:51.253594px;}
.h87{height:51.751406px;}
.h91{height:52.000312px;}
.h89{height:53.191406px;}
.h5c{height:54.880312px;}
.h85{height:55.822500px;}
.h53{height:56.320312px;}
.h5d{height:56.569219px;}
.h7{height:57.760313px;}
.h6f{height:58.258125px;}
.h54{height:59.449219px;}
.h60{height:59.698125px;}
.h83{height:62.275781px;}
.h3e{height:62.578125px;}
.h2d{height:62.827031px;}
.h58{height:64.018125px;}
.h35{height:64.267031px;}
.h5a{height:64.515937px;}
.h2{height:65.707031px;}
.h37{height:65.955937px;}
.h39{height:66.898125px;}
.h1b{height:67.147031px;}
.h3d{height:67.395938px;}
.h5b{height:67.893750px;}
.h80{height:68.089219px;}
.h36{height:68.338125px;}
.h4f{height:68.587031px;}
.h2e{height:68.835938px;}
.h57{height:69.084844px;}
.h74{height:69.778125px;}
.h29{height:70.027031px;}
.h2a{height:70.275938px;}
.h38{height:70.524844px;}
.h49{height:71.467031px;}
.h62{height:71.715938px;}
.h12{height:71.964844px;}
.h30{height:72.213750px;}
.h7f{height:72.409219px;}
.h22{height:72.907031px;}
.h24{height:73.155938px;}
.h6c{height:73.404844px;}
.h11{height:73.653750px;}
.h3a{height:73.902656px;}
.h69{height:74.098125px;}
.h41{height:74.347031px;}
.h25{height:74.595938px;}
.h2b{height:74.844844px;}
.h34{height:75.093750px;}
.h4b{height:75.289219px;}
.h59{height:75.342656px;}
.h8d{height:75.538125px;}
.h42{height:75.787031px;}
.h1f{height:76.035938px;}
.h1a{height:76.533750px;}
.h7d{height:76.978125px;}
.h78{height:77.227031px;}
.h27{height:77.475938px;}
.h47{height:77.724844px;}
.h73{height:77.973750px;}
.h43{height:78.169219px;}
.h1c{height:78.222656px;}
.h68{height:78.418125px;}
.h31{height:78.471562px;}
.h77{height:78.667031px;}
.h21{height:78.915938px;}
.h20{height:79.164844px;}
.h26{height:79.413750px;}
.h3f{height:79.609219px;}
.h2c{height:79.662656px;}
.h3c{height:80.160469px;}
.h44{height:80.355937px;}
.h7a{height:80.604844px;}
.h23{height:80.853750px;}
.h4c{height:81.102656px;}
.h33{height:81.351562px;}
.h67{height:81.547031px;}
.h1e{height:82.044844px;}
.h3b{height:83.040469px;}
.h63{height:83.235938px;}
.h4a{height:83.982656px;}
.h4e{height:84.231563px;}
.h8b{height:84.427031px;}
.h84{height:84.480469px;}
.h56{height:84.675937px;}
.h6d{height:84.729375px;}
.h75{height:84.924844px;}
.h8f{height:85.422656px;}
.h46{height:85.867031px;}
.h65{height:86.115937px;}
.h66{height:86.364844px;}
.h6e{height:86.418281px;}
.h40{height:86.613750px;}
.h1d{height:86.862656px;}
.h7e{height:87.555938px;}
.h2f{height:87.609375px;}
.h8e{height:88.053750px;}
.h64{height:88.249219px;}
.h7c{height:88.551562px;}
.h61{height:89.244844px;}
.h79{height:89.742656px;}
.h4d{height:90.435938px;}
.h8c{height:90.684844px;}
.h48{height:91.680469px;}
.h76{height:92.124844px;}
.h72{height:93.618281px;}
.h71{height:93.867188px;}
.h8a{height:94.062656px;}
.h45{height:94.560469px;}
.h7b{height:99.378281px;}
.h90{height:100.071563px;}
.h6b{height:100.818281px;}
.h6a{height:101.067188px;}
.h10{height:103.253906px;}
.h19{height:105.387187px;}
.h18{height:113.085000px;}
.hf{height:114.080625px;}
.h28{height:120.675938px;}
.h5{height:121.582969px;}
.h17{height:123.911719px;}
.h6{height:134.542969px;}
.h4{height:153.316406px;}
.h55{height:206.507812px;}
.hd{height:256.570312px;}
.h15{height:994.348650px;}
.h16{height:994.500000px;}
.h92{height:994.680000px;}
.h13{height:1007.104590px;}
.h14{height:1007.250000px;}
.h1{height:1041.000000px;}
.h0{height:1041.120000px;}
.w3{width:701.250000px;}
.w2{width:701.552550px;}
.w0{width:705.736500px;}
.w1{width:705.750000px;}
.w4{width:1360.340250px;}
.w6{width:1360.440000px;}
.w5{width:1360.500000px;}
.x0{left:0.000000px;}
.x20{left:63.552750px;}
.x1b{left:64.667250px;}
.x1c{left:65.712750px;}
.x1d{left:66.792750px;}
.x25{left:67.872750px;}
.x2c{left:68.952750px;}
.xd{left:70.200000px;}
.x33{left:74.160000px;}
.x1f{left:106.752750px;}
.x30{left:109.632750px;}
.x21{left:117.192750px;}
.x5{left:118.440000px;}
.x1e{left:119.712750px;}
.x2f{left:121.512750px;}
.x2b{left:122.592750px;}
.x11{left:172.800000px;}
.x4{left:183.240000px;}
.x10{left:191.520000px;}
.x34{left:227.520000px;}
.xb{left:237.240000px;}
.xf{left:241.920000px;}
.xe{left:260.640000px;}
.x12{left:318.240000px;}
.x8{left:325.440000px;}
.x6{left:332.280000px;}
.x3{left:333.360000px;}
.x2{left:334.800000px;}
.xa{left:340.200000px;}
.x9{left:344.160000px;}
.x23{left:352.272750px;}
.x29{left:354.072750px;}
.x7{left:357.120000px;}
.x2d{left:358.392750px;}
.x35{left:361.800000px;}
.xc{left:407.160000px;}
.x24{left:669.432750px;}
.x2a{left:670.872750px;}
.x1{left:697.680000px;}
.x31{left:706.152750px;}
.x22{left:707.232750px;}
.x13{left:709.032750px;}
.x18{left:710.112750px;}
.x17{left:711.192750px;}
.x27{left:748.632750px;}
.x16{left:751.872750px;}
.x32{left:759.432750px;}
.x26{left:760.512750px;}
.x2e{left:761.952750px;}
.x19{left:763.392750px;}
.x28{left:995.952750px;}
.x1a{left:998.832750px;}
.x15{left:1102.872750px;}
.x14{left:1114.032750px;}
@media print{
.v1b{vertical-align:-43.520000pt;}
.v2a{vertical-align:-40.960000pt;}
.v8{vertical-align:-21.760000pt;}
.v27{vertical-align:-20.480000pt;}
.v21{vertical-align:-19.200000pt;}
.v1d{vertical-align:-17.920000pt;}
.v1e{vertical-align:-16.640000pt;}
.vf{vertical-align:-15.360000pt;}
.v19{vertical-align:-14.080000pt;}
.v28{vertical-align:-12.800000pt;}
.v2{vertical-align:-11.520000pt;}
.v22{vertical-align:-10.240000pt;}
.v12{vertical-align:-8.960000pt;}
.v26{vertical-align:-7.680000pt;}
.v25{vertical-align:-6.400000pt;}
.v18{vertical-align:-5.120000pt;}
.v17{vertical-align:-3.840000pt;}
.v5{vertical-align:-2.560000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v11{vertical-align:2.560000pt;}
.v14{vertical-align:3.840000pt;}
.v10{vertical-align:5.120000pt;}
.ve{vertical-align:6.400000pt;}
.v7{vertical-align:7.680000pt;}
.v9{vertical-align:8.960000pt;}
.va{vertical-align:10.240000pt;}
.vc{vertical-align:11.520000pt;}
.vd{vertical-align:12.800000pt;}
.v1a{vertical-align:14.080000pt;}
.v13{vertical-align:15.360000pt;}
.v23{vertical-align:16.640000pt;}
.v20{vertical-align:17.920000pt;}
.v24{vertical-align:19.200000pt;}
.v3{vertical-align:20.480000pt;}
.v29{vertical-align:25.600000pt;}
.vb{vertical-align:26.880000pt;}
.v1f{vertical-align:40.960000pt;}
.v1c{vertical-align:42.240000pt;}
.v15{vertical-align:43.520000pt;}
.v16{vertical-align:44.800000pt;}
.v1{vertical-align:51.200000pt;}
.ls13{letter-spacing:-0.806400pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls17{letter-spacing:-0.153600pt;}
.ls14{letter-spacing:-0.028800pt;}
.ls15{letter-spacing:-0.009600pt;}
.ls11{letter-spacing:-0.001067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002133pt;}
.lse{letter-spacing:0.008000pt;}
.ls2{letter-spacing:0.013867pt;}
.lsc{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.058133pt;}
.lsb{letter-spacing:0.074667pt;}
.ls4{letter-spacing:0.089600pt;}
.lsa{letter-spacing:0.098133pt;}
.ls7{letter-spacing:0.148800pt;}
.ls5{letter-spacing:0.168533pt;}
.lsf{letter-spacing:0.170667pt;}
.ls16{letter-spacing:0.243200pt;}
.ls9{letter-spacing:0.524800pt;}
.ls10{letter-spacing:0.816000pt;}
.ls3{letter-spacing:1.427200pt;}
.ws4{word-spacing:-12.243200pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.990400pt;}
.ws1{word-spacing:-9.860267pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-1.525373pt;}
._7{width:1.184000pt;}
._0{width:2.120000pt;}
._3{width:3.216000pt;}
._a{width:4.213333pt;}
._1{width:5.205333pt;}
._5{width:6.112000pt;}
._e{width:7.082707pt;}
._2{width:7.984000pt;}
._9{width:8.965333pt;}
._4{width:9.936000pt;}
._d{width:11.397333pt;}
._8{width:12.744000pt;}
._10{width:13.645333pt;}
._6{width:14.848000pt;}
._f{width:16.072000pt;}
._c{width:17.717333pt;}
._11{width:19.048000pt;}
._13{width:20.154667pt;}
._12{width:22.144000pt;}
._b{width:23.768000pt;}
._15{width:107.596800pt;}
.fs22{font-size:16.000000pt;}
.fs24{font-size:18.666667pt;}
.fs25{font-size:21.333333pt;}
.fse{font-size:24.000000pt;}
.fs6{font-size:26.666667pt;}
.fs12{font-size:29.333333pt;}
.fsd{font-size:32.000000pt;}
.fs10{font-size:34.666667pt;}
.fsc{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs20{font-size:50.666667pt;}
.fs21{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs19{font-size:58.666667pt;}
.fs18{font-size:61.333333pt;}
.fs1a{font-size:64.000000pt;}
.fs1f{font-size:66.666667pt;}
.fs1d{font-size:69.333333pt;}
.fs13{font-size:72.000000pt;}
.fs1e{font-size:74.666667pt;}
.fs16{font-size:77.333333pt;}
.fs1b{font-size:80.000000pt;}
.fs17{font-size:82.666667pt;}
.fsa{font-size:85.333333pt;}
.fs3{font-size:88.000000pt;}
.fs1c{font-size:90.666667pt;}
.fs15{font-size:93.333333pt;}
.fs14{font-size:96.000000pt;}
.fs8{font-size:98.666667pt;}
.fs9{font-size:106.666667pt;}
.fs7{font-size:112.000000pt;}
.fs5{font-size:114.666667pt;}
.fs2{font-size:130.666667pt;}
.fs23{font-size:176.000000pt;}
.fs11{font-size:218.666667pt;}
.y8a{bottom:-22.677200pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:26.282800pt;}
.y166{bottom:26.602800pt;}
.yda{bottom:27.242800pt;}
.y169{bottom:27.840000pt;}
.y3c{bottom:28.522800pt;}
.y89{bottom:28.842800pt;}
.y88{bottom:31.082800pt;}
.ydb{bottom:31.402800pt;}
.y13e{bottom:32.042800pt;}
.y125{bottom:52.522800pt;}
.y165{bottom:54.122800pt;}
.y13d{bottom:55.082800pt;}
.yd9{bottom:56.362800pt;}
.y101{bottom:56.682800pt;}
.y87{bottom:59.562800pt;}
.yb1{bottom:61.802800pt;}
.y13c{bottom:68.202800pt;}
.y124{bottom:68.522800pt;}
.yd8{bottom:69.162800pt;}
.y65{bottom:69.802800pt;}
.y164{bottom:70.122800pt;}
.yb0{bottom:74.282800pt;}
.y86{bottom:76.202800pt;}
.y168{bottom:78.986667pt;}
.y3b{bottom:79.082800pt;}
.y123{bottom:81.002800pt;}
.y13b{bottom:84.202800pt;}
.yd7{bottom:85.482800pt;}
.y163{bottom:86.442800pt;}
.y64{bottom:88.682800pt;}
.y85{bottom:89.002800pt;}
.yaf{bottom:90.602800pt;}
.y100{bottom:92.842800pt;}
.y13a{bottom:97.322800pt;}
.y122{bottom:97.642800pt;}
.y3a{bottom:97.962800pt;}
.yd6{bottom:101.802800pt;}
.y162{bottom:102.762800pt;}
.y84{bottom:105.322800pt;}
.y63{bottom:106.922800pt;}
.y121{bottom:110.442800pt;}
.y14{bottom:111.040000pt;}
.yff{bottom:111.722800pt;}
.y161{bottom:115.562800pt;}
.y39{bottom:116.202800pt;}
.y83{bottom:118.122800pt;}
.y139{bottom:122.922800pt;}
.yae{bottom:123.242800pt;}
.yf{bottom:124.160000pt;}
.y62{bottom:125.802800pt;}
.y120{bottom:126.762800pt;}
.yfe{bottom:130.282800pt;}
.y160{bottom:131.882800pt;}
.y82{bottom:134.442800pt;}
.y38{bottom:135.082800pt;}
.y138{bottom:139.242800pt;}
.yad{bottom:139.562800pt;}
.y13{bottom:139.840000pt;}
.y61{bottom:144.362800pt;}
.yd5{bottom:146.922800pt;}
.yfd{bottom:148.842800pt;}
.y37{bottom:153.642800pt;}
.y137{bottom:155.562800pt;}
.yac{bottom:155.882800pt;}
.y60{bottom:162.922800pt;}
.yd4{bottom:165.162800pt;}
.y15f{bottom:166.122800pt;}
.yfc{bottom:167.722800pt;}
.y136{bottom:168.362800pt;}
.yab{bottom:168.682800pt;}
.y36{bottom:172.202800pt;}
.y11f{bottom:173.162800pt;}
.y12{bottom:173.440000pt;}
.yaa{bottom:181.802800pt;}
.y5f{bottom:183.722800pt;}
.yd3{bottom:184.362800pt;}
.y135{bottom:184.682800pt;}
.yfb{bottom:186.602800pt;}
.y35{bottom:190.762800pt;}
.y11e{bottom:192.042800pt;}
.ya9{bottom:197.802800pt;}
.y5e{bottom:202.282800pt;}
.yd2{bottom:202.922800pt;}
.y15e{bottom:203.242800pt;}
.yfa{bottom:205.162800pt;}
.y81{bottom:207.722800pt;}
.y34{bottom:208.682800pt;}
.y11d{bottom:210.282800pt;}
.y11{bottom:212.480000pt;}
.y5d{bottom:220.842800pt;}
.yd1{bottom:221.162800pt;}
.y15d{bottom:221.482800pt;}
.yf9{bottom:223.722800pt;}
.y80{bottom:225.642800pt;}
.y11c{bottom:229.162800pt;}
.y33{bottom:229.802800pt;}
.yd0{bottom:239.402800pt;}
.y10{bottom:239.680000pt;}
.y5c{bottom:239.722800pt;}
.yf8{bottom:242.282800pt;}
.y7f{bottom:246.442800pt;}
.ya8{bottom:247.722800pt;}
.y11b{bottom:248.042800pt;}
.y32{bottom:248.682800pt;}
.y5b{bottom:258.602800pt;}
.ycf{bottom:260.202800pt;}
.yf7{bottom:261.162800pt;}
.y7e{bottom:265.322800pt;}
.ya7{bottom:266.602800pt;}
.y31{bottom:267.242800pt;}
.y5a{bottom:277.162800pt;}
.y15c{bottom:279.722800pt;}
.yf6{bottom:280.042800pt;}
.ye{bottom:282.240000pt;}
.y7d{bottom:283.882800pt;}
.y11a{bottom:284.842800pt;}
.ya6{bottom:285.162800pt;}
.y30{bottom:286.122800pt;}
.yf5{bottom:293.802800pt;}
.yc{bottom:295.680000pt;}
.y59{bottom:296.042800pt;}
.y15b{bottom:298.282800pt;}
.yce{bottom:301.162800pt;}
.y7c{bottom:302.442800pt;}
.y119{bottom:303.402800pt;}
.ya5{bottom:304.042800pt;}
.y2f{bottom:304.362800pt;}
.y58{bottom:314.602800pt;}
.y15a{bottom:317.162800pt;}
.yf4{bottom:317.482800pt;}
.ycd{bottom:320.042800pt;}
.y7b{bottom:321.002800pt;}
.y118{bottom:322.282800pt;}
.ya4{bottom:322.602800pt;}
.y2e{bottom:322.922800pt;}
.y57{bottom:333.482800pt;}
.y159{bottom:335.722800pt;}
.yf3{bottom:336.042800pt;}
.ycc{bottom:338.602800pt;}
.yb{bottom:339.200000pt;}
.y7a{bottom:339.882800pt;}
.y117{bottom:340.842800pt;}
.y2d{bottom:341.482800pt;}
.y56{bottom:352.042800pt;}
.y134{bottom:352.362800pt;}
.y158{bottom:354.282800pt;}
.yf2{bottom:354.602800pt;}
.y116{bottom:355.882800pt;}
.y79{bottom:356.522800pt;}
.ycb{bottom:357.162800pt;}
.ya3{bottom:360.042800pt;}
.y2c{bottom:360.362800pt;}
.y55{bottom:370.602800pt;}
.y133{bottom:372.842800pt;}
.y157{bottom:373.162800pt;}
.yf1{bottom:373.482800pt;}
.yca{bottom:376.042800pt;}
.y115{bottom:378.282800pt;}
.ya2{bottom:378.602800pt;}
.y2b{bottom:378.922800pt;}
.y78{bottom:379.242800pt;}
.y132{bottom:391.402800pt;}
.y54{bottom:391.722800pt;}
.yf0{bottom:392.042800pt;}
.y156{bottom:393.322800pt;}
.yc9{bottom:394.602800pt;}
.yd{bottom:395.200000pt;}
.y114{bottom:396.842800pt;}
.y2a{bottom:397.802800pt;}
.y77{bottom:398.122800pt;}
.ya1{bottom:399.402800pt;}
.ya{bottom:404.800000pt;}
.y29{bottom:405.802800pt;}
.y53{bottom:409.962800pt;}
.y131{bottom:410.282800pt;}
.yef{bottom:410.922800pt;}
.y155{bottom:412.202800pt;}
.y9{bottom:412.800000pt;}
.yc8{bottom:412.842800pt;}
.y113{bottom:415.722800pt;}
.y76{bottom:416.362800pt;}
.ya0{bottom:417.962800pt;}
.y130{bottom:428.842800pt;}
.yee{bottom:429.802800pt;}
.y154{bottom:430.762800pt;}
.yc7{bottom:431.722800pt;}
.y112{bottom:434.282800pt;}
.y28{bottom:434.922800pt;}
.y75{bottom:435.242800pt;}
.y9f{bottom:436.842800pt;}
.y12f{bottom:447.722800pt;}
.yed{bottom:448.362800pt;}
.y153{bottom:449.322800pt;}
.yc6{bottom:450.282800pt;}
.y52{bottom:451.242800pt;}
.y111{bottom:452.842800pt;}
.y27{bottom:453.482800pt;}
.y74{bottom:453.802800pt;}
.y9e{bottom:455.402800pt;}
.y12e{bottom:466.282800pt;}
.yec{bottom:466.922800pt;}
.y152{bottom:467.882800pt;}
.yc5{bottom:468.842800pt;}
.y51{bottom:469.802800pt;}
.y167{bottom:471.186667pt;}
.y110{bottom:472.042800pt;}
.y26{bottom:472.362800pt;}
.y9d{bottom:473.962800pt;}
.y151{bottom:486.442800pt;}
.y12d{bottom:487.082800pt;}
.yc4{bottom:487.402800pt;}
.y50{bottom:488.682800pt;}
.y25{bottom:490.922800pt;}
.y73{bottom:491.242800pt;}
.y10f{bottom:491.882800pt;}
.y9c{bottom:492.842800pt;}
.y150{bottom:505.002800pt;}
.yc3{bottom:505.642800pt;}
.yeb{bottom:506.282800pt;}
.y4f{bottom:509.162800pt;}
.y24{bottom:509.482800pt;}
.y72{bottom:509.802800pt;}
.y10e{bottom:510.442800pt;}
.y9b{bottom:511.402800pt;}
.y14f{bottom:523.242800pt;}
.yc2{bottom:524.202800pt;}
.yea{bottom:524.842800pt;}
.y12c{bottom:527.722800pt;}
.y23{bottom:528.042800pt;}
.y71{bottom:528.362800pt;}
.y10d{bottom:529.002800pt;}
.y9a{bottom:530.282800pt;}
.y14e{bottom:542.122800pt;}
.ye9{bottom:543.402800pt;}
.yc1{bottom:544.362800pt;}
.y4e{bottom:546.282800pt;}
.y22{bottom:546.602800pt;}
.y70{bottom:546.922800pt;}
.y10c{bottom:547.562800pt;}
.y99{bottom:548.522800pt;}
.y14d{bottom:560.682800pt;}
.ye8{bottom:562.282800pt;}
.yc0{bottom:563.242800pt;}
.y21{bottom:565.162800pt;}
.y6f{bottom:565.482800pt;}
.y10b{bottom:566.122800pt;}
.y98{bottom:567.402800pt;}
.y14c{bottom:578.922800pt;}
.ye7{bottom:580.842800pt;}
.ybf{bottom:581.802800pt;}
.y20{bottom:583.402800pt;}
.y4d{bottom:583.722800pt;}
.y6e{bottom:584.042800pt;}
.y10a{bottom:584.682800pt;}
.y97{bottom:586.282800pt;}
.y14b{bottom:597.802800pt;}
.ye6{bottom:599.402800pt;}
.ybe{bottom:600.362800pt;}
.y1f{bottom:602.282800pt;}
.y4c{bottom:602.602800pt;}
.y109{bottom:602.922800pt;}
.y96{bottom:604.842800pt;}
.y14a{bottom:616.362800pt;}
.ye5{bottom:618.282800pt;}
.ybd{bottom:618.922800pt;}
.y1e{bottom:620.842800pt;}
.y6d{bottom:621.162800pt;}
.y12b{bottom:621.482800pt;}
.y108{bottom:621.802800pt;}
.y95{bottom:623.402800pt;}
.y149{bottom:634.602800pt;}
.ye4{bottom:636.842800pt;}
.ybc{bottom:637.162800pt;}
.y1d{bottom:639.402800pt;}
.y4b{bottom:639.722800pt;}
.y12a{bottom:640.042800pt;}
.y107{bottom:640.362800pt;}
.y94{bottom:641.962800pt;}
.y148{bottom:653.482800pt;}
.ybb{bottom:655.402800pt;}
.ye3{bottom:655.722800pt;}
.y6{bottom:657.920000pt;}
.y1c{bottom:657.962800pt;}
.y4a{bottom:658.282800pt;}
.y6c{bottom:658.602800pt;}
.y106{bottom:658.922800pt;}
.y93{bottom:660.842800pt;}
.y147{bottom:672.042800pt;}
.yba{bottom:674.282800pt;}
.ye2{bottom:674.602800pt;}
.y49{bottom:677.162800pt;}
.y1b{bottom:678.442800pt;}
.y129{bottom:679.082800pt;}
.y92{bottom:679.402800pt;}
.yb9{bottom:692.842800pt;}
.y146{bottom:693.162800pt;}
.y48{bottom:695.722800pt;}
.y105{bottom:696.042800pt;}
.y6b{bottom:697.322800pt;}
.y128{bottom:697.962800pt;}
.y91{bottom:698.282800pt;}
.y1a{bottom:699.242800pt;}
.y5{bottom:704.000000pt;}
.y145{bottom:711.082800pt;}
.yb8{bottom:711.402800pt;}
.ye1{bottom:711.722800pt;}
.y47{bottom:714.602800pt;}
.y127{bottom:716.522800pt;}
.y6a{bottom:716.842800pt;}
.y19{bottom:720.042800pt;}
.y144{bottom:729.962800pt;}
.yb7{bottom:730.602800pt;}
.y8{bottom:734.400000pt;}
.y69{bottom:734.762800pt;}
.y46{bottom:735.402800pt;}
.y90{bottom:735.722800pt;}
.y18{bottom:740.842800pt;}
.y7{bottom:744.000000pt;}
.y143{bottom:747.562800pt;}
.yb6{bottom:748.842800pt;}
.ye0{bottom:749.482800pt;}
.y68{bottom:753.642800pt;}
.y45{bottom:753.962800pt;}
.y8f{bottom:754.282800pt;}
.y4{bottom:759.040000pt;}
.y142{bottom:766.762800pt;}
.ydf{bottom:768.042800pt;}
.y40{bottom:770.968133pt;}
.yb5{bottom:771.242800pt;}
.y67{bottom:772.522800pt;}
.y44{bottom:772.842800pt;}
.y8e{bottom:773.162800pt;}
.y17{bottom:779.562800pt;}
.y141{bottom:785.642800pt;}
.yb4{bottom:785.962800pt;}
.y3{bottom:787.840000pt;}
.y3f{bottom:788.568133pt;}
.yde{bottom:789.162800pt;}
.y66{bottom:791.402800pt;}
.y43{bottom:791.722800pt;}
.y8d{bottom:792.042800pt;}
.y16{bottom:801.962800pt;}
.y140{bottom:804.202800pt;}
.yb3{bottom:804.522800pt;}
.y3e{bottom:806.168133pt;}
.y8c{bottom:806.762800pt;}
.ydd{bottom:807.402800pt;}
.y104{bottom:809.962800pt;}
.y42{bottom:810.282800pt;}
.y126{bottom:810.602800pt;}
.y2{bottom:813.760000pt;}
.y13f{bottom:823.082800pt;}
.y3d{bottom:823.768133pt;}
.y15{bottom:824.682800pt;}
.ydc{bottom:826.602800pt;}
.yb2{bottom:827.242800pt;}
.y103{bottom:828.842800pt;}
.y41{bottom:829.162800pt;}
.y8b{bottom:829.802800pt;}
.y1{bottom:923.840000pt;}
.ha{height:27.812500pt;}
.h93{height:33.066667pt;}
.h9{height:33.375000pt;}
.he{height:33.596250pt;}
.hb{height:35.492500pt;}
.h94{height:35.861333pt;}
.hc{height:36.156250pt;}
.h81{height:36.820000pt;}
.h8{height:38.937500pt;}
.h95{height:39.072000pt;}
.h51{height:40.217500pt;}
.h50{height:40.438750pt;}
.h5f{height:41.545000pt;}
.h5e{height:41.718750pt;}
.h32{height:41.770667pt;}
.h52{height:42.998750pt;}
.h86{height:43.220000pt;}
.h3{height:44.500000pt;}
.h82{height:44.721250pt;}
.h70{height:44.942500pt;}
.h88{height:45.558750pt;}
.h87{height:46.001250pt;}
.h91{height:46.222500pt;}
.h89{height:47.281250pt;}
.h5c{height:48.782500pt;}
.h85{height:49.620000pt;}
.h53{height:50.062500pt;}
.h5d{height:50.283750pt;}
.h7{height:51.342500pt;}
.h6f{height:51.785000pt;}
.h54{height:52.843750pt;}
.h60{height:53.065000pt;}
.h83{height:55.356250pt;}
.h3e{height:55.625000pt;}
.h2d{height:55.846250pt;}
.h58{height:56.905000pt;}
.h35{height:57.126250pt;}
.h5a{height:57.347500pt;}
.h2{height:58.406250pt;}
.h37{height:58.627500pt;}
.h39{height:59.465000pt;}
.h1b{height:59.686250pt;}
.h3d{height:59.907500pt;}
.h5b{height:60.350000pt;}
.h80{height:60.523750pt;}
.h36{height:60.745000pt;}
.h4f{height:60.966250pt;}
.h2e{height:61.187500pt;}
.h57{height:61.408750pt;}
.h74{height:62.025000pt;}
.h29{height:62.246250pt;}
.h2a{height:62.467500pt;}
.h38{height:62.688750pt;}
.h49{height:63.526250pt;}
.h62{height:63.747500pt;}
.h12{height:63.968750pt;}
.h30{height:64.190000pt;}
.h7f{height:64.363750pt;}
.h22{height:64.806250pt;}
.h24{height:65.027500pt;}
.h6c{height:65.248750pt;}
.h11{height:65.470000pt;}
.h3a{height:65.691250pt;}
.h69{height:65.865000pt;}
.h41{height:66.086250pt;}
.h25{height:66.307500pt;}
.h2b{height:66.528750pt;}
.h34{height:66.750000pt;}
.h4b{height:66.923750pt;}
.h59{height:66.971250pt;}
.h8d{height:67.145000pt;}
.h42{height:67.366250pt;}
.h1f{height:67.587500pt;}
.h1a{height:68.030000pt;}
.h7d{height:68.425000pt;}
.h78{height:68.646250pt;}
.h27{height:68.867500pt;}
.h47{height:69.088750pt;}
.h73{height:69.310000pt;}
.h43{height:69.483750pt;}
.h1c{height:69.531250pt;}
.h68{height:69.705000pt;}
.h31{height:69.752500pt;}
.h77{height:69.926250pt;}
.h21{height:70.147500pt;}
.h20{height:70.368750pt;}
.h26{height:70.590000pt;}
.h3f{height:70.763750pt;}
.h2c{height:70.811250pt;}
.h3c{height:71.253750pt;}
.h44{height:71.427500pt;}
.h7a{height:71.648750pt;}
.h23{height:71.870000pt;}
.h4c{height:72.091250pt;}
.h33{height:72.312500pt;}
.h67{height:72.486250pt;}
.h1e{height:72.928750pt;}
.h3b{height:73.813750pt;}
.h63{height:73.987500pt;}
.h4a{height:74.651250pt;}
.h4e{height:74.872500pt;}
.h8b{height:75.046250pt;}
.h84{height:75.093750pt;}
.h56{height:75.267500pt;}
.h6d{height:75.315000pt;}
.h75{height:75.488750pt;}
.h8f{height:75.931250pt;}
.h46{height:76.326250pt;}
.h65{height:76.547500pt;}
.h66{height:76.768750pt;}
.h6e{height:76.816250pt;}
.h40{height:76.990000pt;}
.h1d{height:77.211250pt;}
.h7e{height:77.827500pt;}
.h2f{height:77.875000pt;}
.h8e{height:78.270000pt;}
.h64{height:78.443750pt;}
.h7c{height:78.712500pt;}
.h61{height:79.328750pt;}
.h79{height:79.771250pt;}
.h4d{height:80.387500pt;}
.h8c{height:80.608750pt;}
.h48{height:81.493750pt;}
.h76{height:81.888750pt;}
.h72{height:83.216250pt;}
.h71{height:83.437500pt;}
.h8a{height:83.611250pt;}
.h45{height:84.053750pt;}
.h7b{height:88.336250pt;}
.h90{height:88.952500pt;}
.h6b{height:89.616250pt;}
.h6a{height:89.837500pt;}
.h10{height:91.781250pt;}
.h19{height:93.677500pt;}
.h18{height:100.520000pt;}
.hf{height:101.405000pt;}
.h28{height:107.267500pt;}
.h5{height:108.073750pt;}
.h17{height:110.143750pt;}
.h6{height:119.593750pt;}
.h4{height:136.281250pt;}
.h55{height:183.562500pt;}
.hd{height:228.062500pt;}
.h15{height:883.865467pt;}
.h16{height:884.000000pt;}
.h92{height:884.160000pt;}
.h13{height:895.204080pt;}
.h14{height:895.333333pt;}
.h1{height:925.333333pt;}
.h0{height:925.440000pt;}
.w3{width:623.333333pt;}
.w2{width:623.602267pt;}
.w0{width:627.321333pt;}
.w1{width:627.333333pt;}
.w4{width:1209.191333pt;}
.w6{width:1209.280000pt;}
.w5{width:1209.333333pt;}
.x0{left:0.000000pt;}
.x20{left:56.491333pt;}
.x1b{left:57.482000pt;}
.x1c{left:58.411333pt;}
.x1d{left:59.371333pt;}
.x25{left:60.331333pt;}
.x2c{left:61.291333pt;}
.xd{left:62.400000pt;}
.x33{left:65.920000pt;}
.x1f{left:94.891333pt;}
.x30{left:97.451333pt;}
.x21{left:104.171333pt;}
.x5{left:105.280000pt;}
.x1e{left:106.411333pt;}
.x2f{left:108.011333pt;}
.x2b{left:108.971333pt;}
.x11{left:153.600000pt;}
.x4{left:162.880000pt;}
.x10{left:170.240000pt;}
.x34{left:202.240000pt;}
.xb{left:210.880000pt;}
.xf{left:215.040000pt;}
.xe{left:231.680000pt;}
.x12{left:282.880000pt;}
.x8{left:289.280000pt;}
.x6{left:295.360000pt;}
.x3{left:296.320000pt;}
.x2{left:297.600000pt;}
.xa{left:302.400000pt;}
.x9{left:305.920000pt;}
.x23{left:313.131333pt;}
.x29{left:314.731333pt;}
.x7{left:317.440000pt;}
.x2d{left:318.571333pt;}
.x35{left:321.600000pt;}
.xc{left:361.920000pt;}
.x24{left:595.051333pt;}
.x2a{left:596.331333pt;}
.x1{left:620.160000pt;}
.x31{left:627.691333pt;}
.x22{left:628.651333pt;}
.x13{left:630.251333pt;}
.x18{left:631.211333pt;}
.x17{left:632.171333pt;}
.x27{left:665.451333pt;}
.x16{left:668.331333pt;}
.x32{left:675.051333pt;}
.x26{left:676.011333pt;}
.x2e{left:677.291333pt;}
.x19{left:678.571333pt;}
.x28{left:885.291333pt;}
.x1a{left:887.851333pt;}
.x15{left:980.331333pt;}
.x14{left:990.251333pt;}
}




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