
    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_1df721d419ac881144942065.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_9253d2c3e80cca7ca8bab7e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_16db6da305a9f7ae0a239af5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_db8b018c7c038a6196673d3e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf34786592da1b852324d8a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_710be4988e31cd35cc546287.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_41972c489800561a678a1429.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-67.680000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.000000px;}
.v1{vertical-align:23.760000px;}
.ls27{letter-spacing:-13.500000px;}
.ls31{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.798000px;}
.ls32{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.326400px;}
.ls24{letter-spacing:-0.301200px;}
.ls8{letter-spacing:-0.292200px;}
.ls10{letter-spacing:-0.272400px;}
.ls28{letter-spacing:-0.208800px;}
.ls20{letter-spacing:-0.172200px;}
.ls2b{letter-spacing:-0.143400px;}
.lsd{letter-spacing:-0.115800px;}
.ls16{letter-spacing:-0.069600px;}
.ls11{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.032400px;}
.ls5{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.038880px;}
.ls1f{letter-spacing:0.060600px;}
.ls1d{letter-spacing:0.174000px;}
.ls17{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.175200px;}
.ls1e{letter-spacing:0.218400px;}
.ls1b{letter-spacing:0.249000px;}
.ls7{letter-spacing:0.256200px;}
.ls22{letter-spacing:0.274800px;}
.ls2c{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.309000px;}
.lse{letter-spacing:0.342720px;}
.ls25{letter-spacing:0.375000px;}
.lsc{letter-spacing:0.393600px;}
.lsf{letter-spacing:0.433440px;}
.ls15{letter-spacing:0.447600px;}
.ls26{letter-spacing:0.447840px;}
.ls2f{letter-spacing:0.479520px;}
.ls14{letter-spacing:0.493200px;}
.ls4{letter-spacing:0.617760px;}
.ls19{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.744000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1c{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.ls30{letter-spacing:12.186720px;}
.ls3{letter-spacing:38.106720px;}
.ls2e{letter-spacing:42.426720px;}
.ls2d{letter-spacing:64.026720px;}
.ls2a{letter-spacing:291.054240px;}
.ls29{letter-spacing:1047.174240px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.249760px;}
.ws19{word-spacing:-13.880760px;}
.ws17{word-spacing:-13.814760px;}
.ws1c{word-spacing:-13.811760px;}
.ws16{word-spacing:-13.780560px;}
.ws11{word-spacing:-13.754760px;}
.ws12{word-spacing:-13.724160px;}
.ws13{word-spacing:-13.566360px;}
.ws15{word-spacing:-13.544640px;}
.ws8{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.473360px;}
.wsc{word-spacing:-13.447440px;}
.wse{word-spacing:-13.436160px;}
.ws9{word-spacing:-13.389960px;}
.ws1b{word-spacing:-13.362360px;}
.ws14{word-spacing:-13.333560px;}
.ws1a{word-spacing:-13.296960px;}
.ws18{word-spacing:-13.204560px;}
.ws5{word-spacing:-9.437760px;}
.wsd{word-spacing:-9.234480px;}
.ws4{word-spacing:-9.145560px;}
.ws6{word-spacing:-8.786880px;}
.wsb{word-spacing:-8.514480px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-945.100800px;}
._5{margin-left:-582.617760px;}
._19{margin-left:-13.886640px;}
._1a{margin-left:-12.549600px;}
._7{margin-left:-4.380480px;}
._6{margin-left:-3.312000px;}
._16{margin-left:-2.283120px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:3.376080px;}
._f{width:4.493760px;}
._15{width:6.241920px;}
._20{width:7.266000px;}
._10{width:8.283120px;}
._14{width:9.629280px;}
._12{width:10.872000px;}
._11{width:12.032160px;}
._e{width:15.238800px;}
._13{width:16.434000px;}
._d{width:18.167040px;}
._1e{width:20.908800px;}
._c{width:22.111200px;}
._b{width:23.263200px;}
._18{width:24.887520px;}
._1f{width:27.250560px;}
._1b{width:30.251520px;}
._9{width:39.504960px;}
._8{width:41.269440px;}
._1c{width:42.907680px;}
._1d{width:78.644160px;}
._17{width:2700.611520px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y112{bottom:6.654000px;}
.y60{bottom:6.660000px;}
.yd8{bottom:6.690000px;}
.yc7{bottom:6.705000px;}
.y109{bottom:6.840000px;}
.y106{bottom:7.020000px;}
.y5e{bottom:7.380000px;}
.yc5{bottom:7.425000px;}
.y97{bottom:8.100000px;}
.y12f{bottom:9.000000px;}
.y12c{bottom:9.180000px;}
.y99{bottom:9.360000px;}
.y133{bottom:9.405000px;}
.y63{bottom:9.540000px;}
.yf5{bottom:9.720000px;}
.yf7{bottom:10.620000px;}
.y121{bottom:11.520000px;}
.y11f{bottom:11.700000px;}
.y11c{bottom:16.200000px;}
.y124{bottom:16.380000px;}
.yaf{bottom:19.080000px;}
.yad{bottom:19.260000px;}
.yb1{bottom:19.620000px;}
.yab{bottom:23.760000px;}
.yb8{bottom:27.540000px;}
.yc0{bottom:27.720000px;}
.ya9{bottom:27.750000px;}
.y18a{bottom:28.080000px;}
.y5d{bottom:28.440000px;}
.yc4{bottom:28.485000px;}
.y13e{bottom:30.825000px;}
.y188{bottom:35.460000px;}
.y11b{bottom:37.260000px;}
.y123{bottom:37.440000px;}
.yb7{bottom:48.600000px;}
.yc2{bottom:49.500000px;}
.ycd{bottom:50.940000px;}
.y6{bottom:61.416000px;}
.y189{bottom:70.560000px;}
.ycc{bottom:72.000000px;}
.yd4{bottom:72.030000px;}
.yb3{bottom:95.076000px;}
.y186{bottom:99.216000px;}
.y114{bottom:99.936000px;}
.y145{bottom:104.076000px;}
.y65{bottom:105.336000px;}
.y95{bottom:107.136000px;}
.yff{bottom:109.116000px;}
.yda{bottom:115.740000px;}
.yb2{bottom:117.396000px;}
.y185{bottom:120.276000px;}
.y113{bottom:121.716000px;}
.yed{bottom:124.416000px;}
.y152{bottom:125.136000px;}
.y144{bottom:125.856000px;}
.ye7{bottom:127.296000px;}
.y94{bottom:128.196000px;}
.y2f{bottom:128.376000px;}
.y64{bottom:129.996000px;}
.yfe{bottom:130.176000px;}
.ye1{bottom:133.776000px;}
.yec{bottom:141.336000px;}
.y161{bottom:143.316000px;}
.y111{bottom:143.856000px;}
.y143{bottom:147.816000px;}
.y93{bottom:149.256000px;}
.y2e{bottom:149.436000px;}
.yfd{bottom:151.230000px;}
.y62{bottom:151.770000px;}
.y151{bottom:155.190000px;}
.yc9{bottom:160.740000px;}
.y184{bottom:162.390000px;}
.y160{bottom:164.370000px;}
.y110{bottom:165.630000px;}
.y142{bottom:169.590000px;}
.y92{bottom:170.310000px;}
.y2d{bottom:170.490000px;}
.yfc{bottom:172.290000px;}
.y150{bottom:176.250000px;}
.y61{bottom:176.430000px;}
.y183{bottom:183.450000px;}
.y15f{bottom:185.430000px;}
.yfb{bottom:187.590000px;}
.y91{bottom:191.370000px;}
.y2c{bottom:191.550000px;}
.y14f{bottom:197.310000px;}
.y5c{bottom:198.390000px;}
.yba{bottom:202.185000px;}
.y182{bottom:204.510000px;}
.y15e{bottom:206.490000px;}
.y10f{bottom:209.730000px;}
.yfa{bottom:212.250000px;}
.y90{bottom:212.430000px;}
.y2b{bottom:212.610000px;}
.y141{bottom:213.150000px;}
.y14e{bottom:218.370000px;}
.y5f{bottom:220.170000px;}
.y181{bottom:225.570000px;}
.y15d{bottom:227.550000px;}
.y10e{bottom:231.510000px;}
.y8f{bottom:233.490000px;}
.y2a{bottom:233.670000px;}
.y140{bottom:234.930000px;}
.yf9{bottom:237.090000px;}
.y14d{bottom:239.430000px;}
.y180{bottom:246.630000px;}
.y5b{bottom:248.610000px;}
.y10d{bottom:253.470000px;}
.y8e{bottom:254.550000px;}
.y29{bottom:254.730000px;}
.y13d{bottom:256.710000px;}
.y134{bottom:257.070000px;}
.y15c{bottom:257.610000px;}
.y14c{bottom:260.490000px;}
.yf8{bottom:261.750000px;}
.y17f{bottom:267.690000px;}
.y5a{bottom:269.670000px;}
.y132{bottom:272.190000px;}
.y8d{bottom:275.655000px;}
.y13f{bottom:278.535000px;}
.y15b{bottom:278.715000px;}
.y14b{bottom:281.595000px;}
.y28{bottom:284.835000px;}
.yf6{bottom:286.635000px;}
.y17e{bottom:288.795000px;}
.y59{bottom:290.775000px;}
.y8c{bottom:296.715000px;}
.y10c{bottom:297.435000px;}
.y14a{bottom:298.695000px;}
.y15a{bottom:299.775000px;}
.y27{bottom:305.895000px;}
.y13c{bottom:309.315000px;}
.y17d{bottom:309.855000px;}
.y58{bottom:311.835000px;}
.yf4{bottom:312.375000px;}
.y8b{bottom:317.775000px;}
.y159{bottom:320.835000px;}
.y131{bottom:321.195000px;}
.y26{bottom:326.955000px;}
.y13b{bottom:330.375000px;}
.y17c{bottom:330.915000px;}
.y10b{bottom:331.815000px;}
.y57{bottom:332.895000px;}
.yf3{bottom:337.215000px;}
.y8a{bottom:338.835000px;}
.y130{bottom:345.495000px;}
.y25{bottom:347.835000px;}
.y158{bottom:350.895000px;}
.y13a{bottom:351.435000px;}
.y17b{bottom:351.975000px;}
.y10a{bottom:353.595000px;}
.y56{bottom:353.955000px;}
.y89{bottom:359.895000px;}
.ye6{bottom:364.755000px;}
.y24{bottom:368.895000px;}
.y12e{bottom:370.155000px;}
.y157{bottom:371.955000px;}
.y17a{bottom:373.035000px;}
.y55{bottom:375.015000px;}
.y108{bottom:375.735000px;}
.yeb{bottom:376.095000px;}
.ya7{bottom:379.335000px;}
.y88{bottom:380.955000px;}
.yf2{bottom:386.715000px;}
.y139{bottom:389.415000px;}
.y23{bottom:389.955000px;}
.yb0{bottom:391.035000px;}
.y156{bottom:393.015000px;}
.y179{bottom:394.095000px;}
.y12d{bottom:394.455000px;}
.y54{bottom:396.075000px;}
.y107{bottom:397.695000px;}
.ya6{bottom:400.395000px;}
.y87{bottom:402.015000px;}
.ye0{bottom:403.815000px;}
.yf1{bottom:407.775000px;}
.y22{bottom:411.015000px;}
.y155{bottom:414.075000px;}
.y178{bottom:415.155000px;}
.y53{bottom:417.135000px;}
.yd9{bottom:418.935000px;}
.y105{bottom:419.475000px;}
.ya5{bottom:421.455000px;}
.y86{bottom:423.075000px;}
.yae{bottom:425.775000px;}
.yf0{bottom:428.835000px;}
.y21{bottom:432.075000px;}
.y154{bottom:435.135000px;}
.y177{bottom:436.215000px;}
.y52{bottom:438.195000px;}
.ydf{bottom:440.715000px;}
.ya4{bottom:442.515000px;}
.y12a{bottom:443.235000px;}
.y85{bottom:444.135000px;}
.yef{bottom:445.935000px;}
.y104{bottom:448.275000px;}
.y20{bottom:453.135000px;}
.y153{bottom:456.195000px;}
.y176{bottom:457.275000px;}
.y51{bottom:459.255000px;}
.yac{bottom:459.975000px;}
.yde{bottom:462.495000px;}
.ya3{bottom:463.575000px;}
.y12b{bottom:465.015000px;}
.y84{bottom:465.195000px;}
.y103{bottom:469.335000px;}
.y1f{bottom:474.195000px;}
.y175{bottom:478.335000px;}
.ydd{bottom:484.455000px;}
.ya2{bottom:484.635000px;}
.y50{bottom:485.535000px;}
.y83{bottom:486.255000px;}
.y102{bottom:490.395000px;}
.y129{bottom:493.455000px;}
.yaa{bottom:494.535000px;}
.y1e{bottom:495.255000px;}
.y174{bottom:499.395000px;}
.y4f{bottom:501.375000px;}
.ya1{bottom:505.695000px;}
.ydc{bottom:506.235000px;}
.y82{bottom:507.315000px;}
.y101{bottom:511.455000px;}
.y128{bottom:514.515000px;}
.y1d{bottom:516.315000px;}
.y173{bottom:520.455000px;}
.y4e{bottom:522.435000px;}
.ya0{bottom:526.755000px;}
.ydb{bottom:528.015000px;}
.y81{bottom:528.375000px;}
.y100{bottom:528.555000px;}
.ya8{bottom:533.415000px;}
.y149{bottom:533.955000px;}
.y127{bottom:535.575000px;}
.y1c{bottom:537.375000px;}
.y172{bottom:542.235000px;}
.y4d{bottom:543.495000px;}
.y9f{bottom:547.815000px;}
.y80{bottom:549.435000px;}
.yd3{bottom:549.795000px;}
.y126{bottom:556.665000px;}
.y1b{bottom:558.465000px;}
.y171{bottom:563.505000px;}
.y4c{bottom:564.585000px;}
.y9e{bottom:568.905000px;}
.y7f{bottom:570.525000px;}
.yd7{bottom:571.605000px;}
.y125{bottom:571.785000px;}
.y1a{bottom:582.045000px;}
.y170{bottom:585.285000px;}
.y4b{bottom:585.645000px;}
.y9d{bottom:589.965000px;}
.y7e{bottom:591.585000px;}
.yd6{bottom:593.385000px;}
.y122{bottom:598.605000px;}
.y16f{bottom:606.345000px;}
.y9c{bottom:611.025000px;}
.y7d{bottom:612.645000px;}
.yd5{bottom:615.165000px;}
.y4a{bottom:615.705000px;}
.y19{bottom:618.045000px;}
.y16e{bottom:627.405000px;}
.y9b{bottom:632.085000px;}
.ye5{bottom:632.445000px;}
.y138{bottom:632.985000px;}
.y7c{bottom:633.705000px;}
.y49{bottom:636.765000px;}
.yc8{bottom:637.125000px;}
.y18{bottom:638.925000px;}
.y16d{bottom:649.185000px;}
.y120{bottom:651.165000px;}
.y9a{bottom:653.145000px;}
.ye4{bottom:653.505000px;}
.y7b{bottom:654.765000px;}
.y48{bottom:657.825000px;}
.yd1{bottom:658.905000px;}
.y17{bottom:659.985000px;}
.ye3{bottom:670.785000px;}
.y16c{bottom:670.965000px;}
.y7a{bottom:675.825000px;}
.y11e{bottom:677.805000px;}
.y47{bottom:678.885000px;}
.yd2{bottom:680.685000px;}
.y16{bottom:681.045000px;}
.yee{bottom:682.665000px;}
.y16b{bottom:692.205000px;}
.y79{bottom:696.885000px;}
.y46{bottom:699.945000px;}
.y15{bottom:702.105000px;}
.yd0{bottom:702.465000px;}
.y11d{bottom:704.805000px;}
.y16a{bottom:713.985000px;}
.y78{bottom:717.945000px;}
.y45{bottom:721.005000px;}
.y14{bottom:723.165000px;}
.ycb{bottom:725.865000px;}
.y11a{bottom:730.545000px;}
.y169{bottom:735.045000px;}
.y77{bottom:739.005000px;}
.y44{bottom:742.065000px;}
.y13{bottom:744.225000px;}
.ycf{bottom:747.645000px;}
.y168{bottom:756.825000px;}
.y76{bottom:760.065000px;}
.y43{bottom:763.125000px;}
.y148{bottom:763.485000px;}
.y12{bottom:765.285000px;}
.yce{bottom:769.425000px;}
.y167{bottom:778.065000px;}
.y75{bottom:781.125000px;}
.y119{bottom:782.925000px;}
.y42{bottom:784.185000px;}
.y147{bottom:784.545000px;}
.y11{bottom:786.345000px;}
.yca{bottom:791.205000px;}
.y166{bottom:799.845000px;}
.y146{bottom:801.645000px;}
.y74{bottom:802.185000px;}
.y41{bottom:805.245000px;}
.y10{bottom:807.405000px;}
.yb9{bottom:812.985000px;}
.y165{bottom:820.905000px;}
.y73{bottom:823.245000px;}
.y40{bottom:826.305000px;}
.yf{bottom:828.465000px;}
.y118{bottom:832.425000px;}
.yc3{bottom:834.765000px;}
.y164{bottom:842.730000px;}
.y72{bottom:844.350000px;}
.y3f{bottom:847.410000px;}
.yea{bottom:851.190000px;}
.ye{bottom:851.730000px;}
.y117{bottom:853.530000px;}
.yc6{bottom:856.590000px;}
.y137{bottom:858.030000px;}
.y163{bottom:864.510000px;}
.y71{bottom:865.410000px;}
.y3e{bottom:868.470000px;}
.ye9{bottom:872.250000px;}
.y116{bottom:874.590000px;}
.yd{bottom:878.010000px;}
.yc1{bottom:878.550000px;}
.y136{bottom:879.090000px;}
.y187{bottom:881.970000px;}
.y162{bottom:885.750000px;}
.y70{bottom:886.470000px;}
.y3d{bottom:889.530000px;}
.y115{bottom:891.690000px;}
.ye8{bottom:893.310000px;}
.y135{bottom:896.370000px;}
.yc{bottom:899.070000px;}
.ybf{bottom:900.330000px;}
.y6f{bottom:907.530000px;}
.y3c{bottom:910.590000px;}
.yb{bottom:915.810000px;}
.ye2{bottom:921.030000px;}
.y6e{bottom:928.590000px;}
.y3b{bottom:931.650000px;}
.ya{bottom:939.030000px;}
.ybd{bottom:943.170000px;}
.y6d{bottom:949.650000px;}
.y3a{bottom:952.710000px;}
.y9{bottom:961.350000px;}
.ybe{bottom:964.950000px;}
.y6c{bottom:970.710000px;}
.y39{bottom:982.770000px;}
.y8{bottom:986.550000px;}
.ybb{bottom:986.730000px;}
.y6b{bottom:991.770000px;}
.y38{bottom:1003.830000px;}
.ybc{bottom:1008.510000px;}
.y6a{bottom:1012.830000px;}
.y7{bottom:1020.210000px;}
.y37{bottom:1024.890000px;}
.yb6{bottom:1030.470000px;}
.y69{bottom:1033.890000px;}
.y36{bottom:1045.950000px;}
.y68{bottom:1054.950000px;}
.y5{bottom:1060.350000px;}
.y35{bottom:1067.010000px;}
.y67{bottom:1076.010000px;}
.y34{bottom:1088.070000px;}
.y4{bottom:1092.570000px;}
.y66{bottom:1097.070000px;}
.yb5{bottom:1101.030000px;}
.y98{bottom:1105.530000px;}
.y33{bottom:1118.130000px;}
.y3{bottom:1124.640000px;}
.y96{bottom:1130.220000px;}
.yb4{bottom:1137.960000px;}
.y32{bottom:1139.220000px;}
.y2{bottom:1156.860000px;}
.y31{bottom:1170.000000px;}
.y1{bottom:1191.420000px;}
.y30{bottom:1193.220000px;}
.h2e{height:2.864531px;}
.hc{height:21.060000px;}
.h1a{height:21.096000px;}
.h23{height:21.240000px;}
.h22{height:21.420000px;}
.h24{height:21.456000px;}
.he{height:22.500000px;}
.h2b{height:23.400000px;}
.h29{height:23.580000px;}
.h2a{height:23.760000px;}
.hf{height:23.796000px;}
.hd{height:23.940000px;}
.h21{height:23.976000px;}
.h1f{height:24.120000px;}
.h20{height:25.020000px;}
.h27{height:25.920000px;}
.h26{height:26.100000px;}
.h13{height:33.480000px;}
.h12{height:33.660000px;}
.h14{height:34.020000px;}
.h11{height:38.160000px;}
.h7{height:38.671172px;}
.h17{height:42.120000px;}
.h10{height:42.156000px;}
.hb{height:42.840000px;}
.h19{height:42.876000px;}
.h2c{height:45.216000px;}
.h25{height:51.660000px;}
.h28{height:51.840000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.ha{height:59.551172px;}
.h9{height:59.671172px;}
.h5{height:61.189805px;}
.h15{height:63.000000px;}
.h18{height:63.900000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2d{height:84.960000px;}
.h1c{height:86.400000px;}
.h1d{height:86.436000px;}
.h4{height:98.051133px;}
.h1e{height:130.140000px;}
.h1b{height:175.140000px;}
.h16{height:216.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:56.700000px;}
.w3{width:60.660000px;}
.w7{width:61.416000px;}
.wa{width:61.740000px;}
.wd{width:64.296000px;}
.w9{width:66.060000px;}
.w6{width:73.080000px;}
.w16{width:76.896000px;}
.w18{width:81.756000px;}
.w19{width:88.020000px;}
.wb{width:91.440000px;}
.w13{width:92.376000px;}
.wf{width:97.056000px;}
.w1b{width:100.800000px;}
.w1a{width:100.836000px;}
.w14{width:113.796000px;}
.w15{width:115.380000px;}
.w17{width:123.300000px;}
.we{width:130.500000px;}
.w1e{width:136.080000px;}
.w11{width:136.260000px;}
.w1c{width:136.296000px;}
.w1d{width:136.476000px;}
.w10{width:142.776000px;}
.w1f{width:147.276000px;}
.wc{width:149.796000px;}
.w12{width:156.630000px;}
.w26{width:168.690000px;}
.w27{width:168.870000px;}
.w22{width:189.570000px;}
.w23{width:189.750000px;}
.w4{width:195.870000px;}
.w28{width:210.810000px;}
.w24{width:221.790000px;}
.w20{width:249.150000px;}
.w25{width:338.475000px;}
.w21{width:380.055000px;}
.w5{width:384.195000px;}
.w29{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x17{left:-12.780000px;}
.x32{left:-1.080000px;}
.x0{left:0.000000px;}
.x2e{left:1.440000px;}
.x3{left:7.740000px;}
.x13{left:37.074000px;}
.x1{left:53.999987px;}
.x40{left:71.099987px;}
.x11{left:80.820000px;}
.x25{left:91.440000px;}
.x1e{left:98.460000px;}
.x33{left:113.616000px;}
.x2{left:125.496000px;}
.x12{left:146.016000px;}
.x3a{left:166.170000px;}
.x4{left:186.870000px;}
.x41{left:190.110000px;}
.x1f{left:191.730000px;}
.x19{left:193.529987px;}
.x2c{left:234.209987px;}
.x2d{left:235.830000px;}
.x1b{left:244.829987px;}
.x1c{left:250.049987px;}
.x1d{left:254.009987px;}
.x42{left:264.810000px;}
.x14{left:277.230000px;}
.x37{left:281.369987px;}
.x3e{left:283.349987px;}
.x26{left:294.510000px;}
.xe{left:295.589987px;}
.xf{left:304.454987px;}
.x10{left:305.894987px;}
.x39{left:307.514987px;}
.x38{left:308.594987px;}
.xc{left:325.515000px;}
.x23{left:330.014987px;}
.xb{left:337.034987px;}
.x34{left:363.495000px;}
.x2f{left:373.035000px;}
.x15{left:375.195000px;}
.x5{left:383.475000px;}
.x3b{left:388.695000px;}
.x27{left:396.255000px;}
.xd{left:417.855000px;}
.x20{left:422.535000px;}
.x1a{left:446.474987px;}
.x6{left:457.275000px;}
.x28{left:497.805000px;}
.x21{left:500.145000px;}
.x30{left:510.225000px;}
.x7{left:519.405000px;}
.x35{left:553.785000px;}
.x3c{left:558.285000px;}
.x8{left:577.005000px;}
.x29{left:599.325000px;}
.x22{left:624.345000px;}
.x9{left:643.785000px;}
.x31{left:647.025000px;}
.x16{left:655.665000px;}
.x2a{left:700.890000px;}
.xa{left:705.930000px;}
.x2b{left:719.969987px;}
.x36{left:729.329987px;}
.x3d{left:736.889987px;}
.x18{left:785.129987px;}
.x24{left:809.069987px;}
.x3f{left:812.309987px;}
@media print{
.v6{vertical-align:-60.160000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.666667pt;}
.v1{vertical-align:21.120000pt;}
.ls27{letter-spacing:-12.000000pt;}
.ls31{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.709333pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls24{letter-spacing:-0.267733pt;}
.ls8{letter-spacing:-0.259733pt;}
.ls10{letter-spacing:-0.242133pt;}
.ls28{letter-spacing:-0.185600pt;}
.ls20{letter-spacing:-0.153067pt;}
.ls2b{letter-spacing:-0.127467pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls16{letter-spacing:-0.061867pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.034560pt;}
.ls1f{letter-spacing:0.053867pt;}
.ls1d{letter-spacing:0.154667pt;}
.ls17{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.155733pt;}
.ls1e{letter-spacing:0.194133pt;}
.ls1b{letter-spacing:0.221333pt;}
.ls7{letter-spacing:0.227733pt;}
.ls22{letter-spacing:0.244267pt;}
.ls2c{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.274667pt;}
.lse{letter-spacing:0.304640pt;}
.ls25{letter-spacing:0.333333pt;}
.lsc{letter-spacing:0.349867pt;}
.lsf{letter-spacing:0.385280pt;}
.ls15{letter-spacing:0.397867pt;}
.ls26{letter-spacing:0.398080pt;}
.ls2f{letter-spacing:0.426240pt;}
.ls14{letter-spacing:0.438400pt;}
.ls4{letter-spacing:0.549120pt;}
.ls19{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.661333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1c{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.ls30{letter-spacing:10.832640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls2e{letter-spacing:37.712640pt;}
.ls2d{letter-spacing:56.912640pt;}
.ls2a{letter-spacing:258.714880pt;}
.ls29{letter-spacing:930.821547pt;}
.wsf{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.666453pt;}
.ws19{word-spacing:-12.338453pt;}
.ws17{word-spacing:-12.279787pt;}
.ws1c{word-spacing:-12.277120pt;}
.ws16{word-spacing:-12.249387pt;}
.ws11{word-spacing:-12.226453pt;}
.ws12{word-spacing:-12.199253pt;}
.ws13{word-spacing:-12.058987pt;}
.ws15{word-spacing:-12.039680pt;}
.ws8{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.976320pt;}
.wsc{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.943253pt;}
.ws9{word-spacing:-11.902187pt;}
.ws1b{word-spacing:-11.877653pt;}
.ws14{word-spacing:-11.852053pt;}
.ws1a{word-spacing:-11.819520pt;}
.ws18{word-spacing:-11.737387pt;}
.ws5{word-spacing:-8.389120pt;}
.wsd{word-spacing:-8.208427pt;}
.ws4{word-spacing:-8.129387pt;}
.ws6{word-spacing:-7.810560pt;}
.wsb{word-spacing:-7.568427pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-840.089600pt;}
._5{margin-left:-517.882453pt;}
._19{margin-left:-12.343680pt;}
._1a{margin-left:-11.155200pt;}
._7{margin-left:-3.893760pt;}
._6{margin-left:-2.944000pt;}
._16{margin-left:-2.029440pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:3.000960pt;}
._f{width:3.994453pt;}
._15{width:5.548373pt;}
._20{width:6.458667pt;}
._10{width:7.362773pt;}
._14{width:8.559360pt;}
._12{width:9.664000pt;}
._11{width:10.695253pt;}
._e{width:13.545600pt;}
._13{width:14.608000pt;}
._d{width:16.148480pt;}
._1e{width:18.585600pt;}
._c{width:19.654400pt;}
._b{width:20.678400pt;}
._18{width:22.122240pt;}
._1f{width:24.222720pt;}
._1b{width:26.890240pt;}
._9{width:35.115520pt;}
._8{width:36.683947pt;}
._1c{width:38.140160pt;}
._1d{width:69.905920pt;}
._17{width:2400.543573pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:5.914667pt;}
.y60{bottom:5.920000pt;}
.yd8{bottom:5.946667pt;}
.yc7{bottom:5.960000pt;}
.y109{bottom:6.080000pt;}
.y106{bottom:6.240000pt;}
.y5e{bottom:6.560000pt;}
.yc5{bottom:6.600000pt;}
.y97{bottom:7.200000pt;}
.y12f{bottom:8.000000pt;}
.y12c{bottom:8.160000pt;}
.y99{bottom:8.320000pt;}
.y133{bottom:8.360000pt;}
.y63{bottom:8.480000pt;}
.yf5{bottom:8.640000pt;}
.yf7{bottom:9.440000pt;}
.y121{bottom:10.240000pt;}
.y11f{bottom:10.400000pt;}
.y11c{bottom:14.400000pt;}
.y124{bottom:14.560000pt;}
.yaf{bottom:16.960000pt;}
.yad{bottom:17.120000pt;}
.yb1{bottom:17.440000pt;}
.yab{bottom:21.120000pt;}
.yb8{bottom:24.480000pt;}
.yc0{bottom:24.640000pt;}
.ya9{bottom:24.666667pt;}
.y18a{bottom:24.960000pt;}
.y5d{bottom:25.280000pt;}
.yc4{bottom:25.320000pt;}
.y13e{bottom:27.400000pt;}
.y188{bottom:31.520000pt;}
.y11b{bottom:33.120000pt;}
.y123{bottom:33.280000pt;}
.yb7{bottom:43.200000pt;}
.yc2{bottom:44.000000pt;}
.ycd{bottom:45.280000pt;}
.y6{bottom:54.592000pt;}
.y189{bottom:62.720000pt;}
.ycc{bottom:64.000000pt;}
.yd4{bottom:64.026667pt;}
.yb3{bottom:84.512000pt;}
.y186{bottom:88.192000pt;}
.y114{bottom:88.832000pt;}
.y145{bottom:92.512000pt;}
.y65{bottom:93.632000pt;}
.y95{bottom:95.232000pt;}
.yff{bottom:96.992000pt;}
.yda{bottom:102.880000pt;}
.yb2{bottom:104.352000pt;}
.y185{bottom:106.912000pt;}
.y113{bottom:108.192000pt;}
.yed{bottom:110.592000pt;}
.y152{bottom:111.232000pt;}
.y144{bottom:111.872000pt;}
.ye7{bottom:113.152000pt;}
.y94{bottom:113.952000pt;}
.y2f{bottom:114.112000pt;}
.y64{bottom:115.552000pt;}
.yfe{bottom:115.712000pt;}
.ye1{bottom:118.912000pt;}
.yec{bottom:125.632000pt;}
.y161{bottom:127.392000pt;}
.y111{bottom:127.872000pt;}
.y143{bottom:131.392000pt;}
.y93{bottom:132.672000pt;}
.y2e{bottom:132.832000pt;}
.yfd{bottom:134.426667pt;}
.y62{bottom:134.906667pt;}
.y151{bottom:137.946667pt;}
.yc9{bottom:142.880000pt;}
.y184{bottom:144.346667pt;}
.y160{bottom:146.106667pt;}
.y110{bottom:147.226667pt;}
.y142{bottom:150.746667pt;}
.y92{bottom:151.386667pt;}
.y2d{bottom:151.546667pt;}
.yfc{bottom:153.146667pt;}
.y150{bottom:156.666667pt;}
.y61{bottom:156.826667pt;}
.y183{bottom:163.066667pt;}
.y15f{bottom:164.826667pt;}
.yfb{bottom:166.746667pt;}
.y91{bottom:170.106667pt;}
.y2c{bottom:170.266667pt;}
.y14f{bottom:175.386667pt;}
.y5c{bottom:176.346667pt;}
.yba{bottom:179.720000pt;}
.y182{bottom:181.786667pt;}
.y15e{bottom:183.546667pt;}
.y10f{bottom:186.426667pt;}
.yfa{bottom:188.666667pt;}
.y90{bottom:188.826667pt;}
.y2b{bottom:188.986667pt;}
.y141{bottom:189.466667pt;}
.y14e{bottom:194.106667pt;}
.y5f{bottom:195.706667pt;}
.y181{bottom:200.506667pt;}
.y15d{bottom:202.266667pt;}
.y10e{bottom:205.786667pt;}
.y8f{bottom:207.546667pt;}
.y2a{bottom:207.706667pt;}
.y140{bottom:208.826667pt;}
.yf9{bottom:210.746667pt;}
.y14d{bottom:212.826667pt;}
.y180{bottom:219.226667pt;}
.y5b{bottom:220.986667pt;}
.y10d{bottom:225.306667pt;}
.y8e{bottom:226.266667pt;}
.y29{bottom:226.426667pt;}
.y13d{bottom:228.186667pt;}
.y134{bottom:228.506667pt;}
.y15c{bottom:228.986667pt;}
.y14c{bottom:231.546667pt;}
.yf8{bottom:232.666667pt;}
.y17f{bottom:237.946667pt;}
.y5a{bottom:239.706667pt;}
.y132{bottom:241.946667pt;}
.y8d{bottom:245.026667pt;}
.y13f{bottom:247.586667pt;}
.y15b{bottom:247.746667pt;}
.y14b{bottom:250.306667pt;}
.y28{bottom:253.186667pt;}
.yf6{bottom:254.786667pt;}
.y17e{bottom:256.706667pt;}
.y59{bottom:258.466667pt;}
.y8c{bottom:263.746667pt;}
.y10c{bottom:264.386667pt;}
.y14a{bottom:265.506667pt;}
.y15a{bottom:266.466667pt;}
.y27{bottom:271.906667pt;}
.y13c{bottom:274.946667pt;}
.y17d{bottom:275.426667pt;}
.y58{bottom:277.186667pt;}
.yf4{bottom:277.666667pt;}
.y8b{bottom:282.466667pt;}
.y159{bottom:285.186667pt;}
.y131{bottom:285.506667pt;}
.y26{bottom:290.626667pt;}
.y13b{bottom:293.666667pt;}
.y17c{bottom:294.146667pt;}
.y10b{bottom:294.946667pt;}
.y57{bottom:295.906667pt;}
.yf3{bottom:299.746667pt;}
.y8a{bottom:301.186667pt;}
.y130{bottom:307.106667pt;}
.y25{bottom:309.186667pt;}
.y158{bottom:311.906667pt;}
.y13a{bottom:312.386667pt;}
.y17b{bottom:312.866667pt;}
.y10a{bottom:314.306667pt;}
.y56{bottom:314.626667pt;}
.y89{bottom:319.906667pt;}
.ye6{bottom:324.226667pt;}
.y24{bottom:327.906667pt;}
.y12e{bottom:329.026667pt;}
.y157{bottom:330.626667pt;}
.y17a{bottom:331.586667pt;}
.y55{bottom:333.346667pt;}
.y108{bottom:333.986667pt;}
.yeb{bottom:334.306667pt;}
.ya7{bottom:337.186667pt;}
.y88{bottom:338.626667pt;}
.yf2{bottom:343.746667pt;}
.y139{bottom:346.146667pt;}
.y23{bottom:346.626667pt;}
.yb0{bottom:347.586667pt;}
.y156{bottom:349.346667pt;}
.y179{bottom:350.306667pt;}
.y12d{bottom:350.626667pt;}
.y54{bottom:352.066667pt;}
.y107{bottom:353.506667pt;}
.ya6{bottom:355.906667pt;}
.y87{bottom:357.346667pt;}
.ye0{bottom:358.946667pt;}
.yf1{bottom:362.466667pt;}
.y22{bottom:365.346667pt;}
.y155{bottom:368.066667pt;}
.y178{bottom:369.026667pt;}
.y53{bottom:370.786667pt;}
.yd9{bottom:372.386667pt;}
.y105{bottom:372.866667pt;}
.ya5{bottom:374.626667pt;}
.y86{bottom:376.066667pt;}
.yae{bottom:378.466667pt;}
.yf0{bottom:381.186667pt;}
.y21{bottom:384.066667pt;}
.y154{bottom:386.786667pt;}
.y177{bottom:387.746667pt;}
.y52{bottom:389.506667pt;}
.ydf{bottom:391.746667pt;}
.ya4{bottom:393.346667pt;}
.y12a{bottom:393.986667pt;}
.y85{bottom:394.786667pt;}
.yef{bottom:396.386667pt;}
.y104{bottom:398.466667pt;}
.y20{bottom:402.786667pt;}
.y153{bottom:405.506667pt;}
.y176{bottom:406.466667pt;}
.y51{bottom:408.226667pt;}
.yac{bottom:408.866667pt;}
.yde{bottom:411.106667pt;}
.ya3{bottom:412.066667pt;}
.y12b{bottom:413.346667pt;}
.y84{bottom:413.506667pt;}
.y103{bottom:417.186667pt;}
.y1f{bottom:421.506667pt;}
.y175{bottom:425.186667pt;}
.ydd{bottom:430.626667pt;}
.ya2{bottom:430.786667pt;}
.y50{bottom:431.586667pt;}
.y83{bottom:432.226667pt;}
.y102{bottom:435.906667pt;}
.y129{bottom:438.626667pt;}
.yaa{bottom:439.586667pt;}
.y1e{bottom:440.226667pt;}
.y174{bottom:443.906667pt;}
.y4f{bottom:445.666667pt;}
.ya1{bottom:449.506667pt;}
.ydc{bottom:449.986667pt;}
.y82{bottom:450.946667pt;}
.y101{bottom:454.626667pt;}
.y128{bottom:457.346667pt;}
.y1d{bottom:458.946667pt;}
.y173{bottom:462.626667pt;}
.y4e{bottom:464.386667pt;}
.ya0{bottom:468.226667pt;}
.ydb{bottom:469.346667pt;}
.y81{bottom:469.666667pt;}
.y100{bottom:469.826667pt;}
.ya8{bottom:474.146667pt;}
.y149{bottom:474.626667pt;}
.y127{bottom:476.066667pt;}
.y1c{bottom:477.666667pt;}
.y172{bottom:481.986667pt;}
.y4d{bottom:483.106667pt;}
.y9f{bottom:486.946667pt;}
.y80{bottom:488.386667pt;}
.yd3{bottom:488.706667pt;}
.y126{bottom:494.813333pt;}
.y1b{bottom:496.413333pt;}
.y171{bottom:500.893333pt;}
.y4c{bottom:501.853333pt;}
.y9e{bottom:505.693333pt;}
.y7f{bottom:507.133333pt;}
.yd7{bottom:508.093333pt;}
.y125{bottom:508.253333pt;}
.y1a{bottom:517.373333pt;}
.y170{bottom:520.253333pt;}
.y4b{bottom:520.573333pt;}
.y9d{bottom:524.413333pt;}
.y7e{bottom:525.853333pt;}
.yd6{bottom:527.453333pt;}
.y122{bottom:532.093333pt;}
.y16f{bottom:538.973333pt;}
.y9c{bottom:543.133333pt;}
.y7d{bottom:544.573333pt;}
.yd5{bottom:546.813333pt;}
.y4a{bottom:547.293333pt;}
.y19{bottom:549.373333pt;}
.y16e{bottom:557.693333pt;}
.y9b{bottom:561.853333pt;}
.ye5{bottom:562.173333pt;}
.y138{bottom:562.653333pt;}
.y7c{bottom:563.293333pt;}
.y49{bottom:566.013333pt;}
.yc8{bottom:566.333333pt;}
.y18{bottom:567.933333pt;}
.y16d{bottom:577.053333pt;}
.y120{bottom:578.813333pt;}
.y9a{bottom:580.573333pt;}
.ye4{bottom:580.893333pt;}
.y7b{bottom:582.013333pt;}
.y48{bottom:584.733333pt;}
.yd1{bottom:585.693333pt;}
.y17{bottom:586.653333pt;}
.ye3{bottom:596.253333pt;}
.y16c{bottom:596.413333pt;}
.y7a{bottom:600.733333pt;}
.y11e{bottom:602.493333pt;}
.y47{bottom:603.453333pt;}
.yd2{bottom:605.053333pt;}
.y16{bottom:605.373333pt;}
.yee{bottom:606.813333pt;}
.y16b{bottom:615.293333pt;}
.y79{bottom:619.453333pt;}
.y46{bottom:622.173333pt;}
.y15{bottom:624.093333pt;}
.yd0{bottom:624.413333pt;}
.y11d{bottom:626.493333pt;}
.y16a{bottom:634.653333pt;}
.y78{bottom:638.173333pt;}
.y45{bottom:640.893333pt;}
.y14{bottom:642.813333pt;}
.ycb{bottom:645.213333pt;}
.y11a{bottom:649.373333pt;}
.y169{bottom:653.373333pt;}
.y77{bottom:656.893333pt;}
.y44{bottom:659.613333pt;}
.y13{bottom:661.533333pt;}
.ycf{bottom:664.573333pt;}
.y168{bottom:672.733333pt;}
.y76{bottom:675.613333pt;}
.y43{bottom:678.333333pt;}
.y148{bottom:678.653333pt;}
.y12{bottom:680.253333pt;}
.yce{bottom:683.933333pt;}
.y167{bottom:691.613333pt;}
.y75{bottom:694.333333pt;}
.y119{bottom:695.933333pt;}
.y42{bottom:697.053333pt;}
.y147{bottom:697.373333pt;}
.y11{bottom:698.973333pt;}
.yca{bottom:703.293333pt;}
.y166{bottom:710.973333pt;}
.y146{bottom:712.573333pt;}
.y74{bottom:713.053333pt;}
.y41{bottom:715.773333pt;}
.y10{bottom:717.693333pt;}
.yb9{bottom:722.653333pt;}
.y165{bottom:729.693333pt;}
.y73{bottom:731.773333pt;}
.y40{bottom:734.493333pt;}
.yf{bottom:736.413333pt;}
.y118{bottom:739.933333pt;}
.yc3{bottom:742.013333pt;}
.y164{bottom:749.093333pt;}
.y72{bottom:750.533333pt;}
.y3f{bottom:753.253333pt;}
.yea{bottom:756.613333pt;}
.ye{bottom:757.093333pt;}
.y117{bottom:758.693333pt;}
.yc6{bottom:761.413333pt;}
.y137{bottom:762.693333pt;}
.y163{bottom:768.453333pt;}
.y71{bottom:769.253333pt;}
.y3e{bottom:771.973333pt;}
.ye9{bottom:775.333333pt;}
.y116{bottom:777.413333pt;}
.yd{bottom:780.453333pt;}
.yc1{bottom:780.933333pt;}
.y136{bottom:781.413333pt;}
.y187{bottom:783.973333pt;}
.y162{bottom:787.333333pt;}
.y70{bottom:787.973333pt;}
.y3d{bottom:790.693333pt;}
.y115{bottom:792.613333pt;}
.ye8{bottom:794.053333pt;}
.y135{bottom:796.773333pt;}
.yc{bottom:799.173333pt;}
.ybf{bottom:800.293333pt;}
.y6f{bottom:806.693333pt;}
.y3c{bottom:809.413333pt;}
.yb{bottom:814.053333pt;}
.ye2{bottom:818.693333pt;}
.y6e{bottom:825.413333pt;}
.y3b{bottom:828.133333pt;}
.ya{bottom:834.693333pt;}
.ybd{bottom:838.373333pt;}
.y6d{bottom:844.133333pt;}
.y3a{bottom:846.853333pt;}
.y9{bottom:854.533333pt;}
.ybe{bottom:857.733333pt;}
.y6c{bottom:862.853333pt;}
.y39{bottom:873.573333pt;}
.y8{bottom:876.933333pt;}
.ybb{bottom:877.093333pt;}
.y6b{bottom:881.573333pt;}
.y38{bottom:892.293333pt;}
.ybc{bottom:896.453333pt;}
.y6a{bottom:900.293333pt;}
.y7{bottom:906.853333pt;}
.y37{bottom:911.013333pt;}
.yb6{bottom:915.973333pt;}
.y69{bottom:919.013333pt;}
.y36{bottom:929.733333pt;}
.y68{bottom:937.733333pt;}
.y5{bottom:942.533333pt;}
.y35{bottom:948.453333pt;}
.y67{bottom:956.453333pt;}
.y34{bottom:967.173333pt;}
.y4{bottom:971.173333pt;}
.y66{bottom:975.173333pt;}
.yb5{bottom:978.693333pt;}
.y98{bottom:982.693333pt;}
.y33{bottom:993.893333pt;}
.y3{bottom:999.680000pt;}
.y96{bottom:1004.640000pt;}
.yb4{bottom:1011.520000pt;}
.y32{bottom:1012.640000pt;}
.y2{bottom:1028.320000pt;}
.y31{bottom:1040.000000pt;}
.y1{bottom:1059.040000pt;}
.y30{bottom:1060.640000pt;}
.h2e{height:2.546250pt;}
.hc{height:18.720000pt;}
.h1a{height:18.752000pt;}
.h23{height:18.880000pt;}
.h22{height:19.040000pt;}
.h24{height:19.072000pt;}
.he{height:20.000000pt;}
.h2b{height:20.800000pt;}
.h29{height:20.960000pt;}
.h2a{height:21.120000pt;}
.hf{height:21.152000pt;}
.hd{height:21.280000pt;}
.h21{height:21.312000pt;}
.h1f{height:21.440000pt;}
.h20{height:22.240000pt;}
.h27{height:23.040000pt;}
.h26{height:23.200000pt;}
.h13{height:29.760000pt;}
.h12{height:29.920000pt;}
.h14{height:30.240000pt;}
.h11{height:33.920000pt;}
.h7{height:34.374375pt;}
.h17{height:37.440000pt;}
.h10{height:37.472000pt;}
.hb{height:38.080000pt;}
.h19{height:38.112000pt;}
.h2c{height:40.192000pt;}
.h25{height:45.920000pt;}
.h28{height:46.080000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.ha{height:52.934375pt;}
.h9{height:53.041042pt;}
.h5{height:54.390938pt;}
.h15{height:56.000000pt;}
.h18{height:56.800000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2d{height:75.520000pt;}
.h1c{height:76.800000pt;}
.h1d{height:76.832000pt;}
.h4{height:87.156562pt;}
.h1e{height:115.680000pt;}
.h1b{height:155.680000pt;}
.h16{height:192.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:50.400000pt;}
.w3{width:53.920000pt;}
.w7{width:54.592000pt;}
.wa{width:54.880000pt;}
.wd{width:57.152000pt;}
.w9{width:58.720000pt;}
.w6{width:64.960000pt;}
.w16{width:68.352000pt;}
.w18{width:72.672000pt;}
.w19{width:78.240000pt;}
.wb{width:81.280000pt;}
.w13{width:82.112000pt;}
.wf{width:86.272000pt;}
.w1b{width:89.600000pt;}
.w1a{width:89.632000pt;}
.w14{width:101.152000pt;}
.w15{width:102.560000pt;}
.w17{width:109.600000pt;}
.we{width:116.000000pt;}
.w1e{width:120.960000pt;}
.w11{width:121.120000pt;}
.w1c{width:121.152000pt;}
.w1d{width:121.312000pt;}
.w10{width:126.912000pt;}
.w1f{width:130.912000pt;}
.wc{width:133.152000pt;}
.w12{width:139.226667pt;}
.w26{width:149.946667pt;}
.w27{width:150.106667pt;}
.w22{width:168.506667pt;}
.w23{width:168.666667pt;}
.w4{width:174.106667pt;}
.w28{width:187.386667pt;}
.w24{width:197.146667pt;}
.w20{width:221.466667pt;}
.w25{width:300.866667pt;}
.w21{width:337.826667pt;}
.w5{width:341.506667pt;}
.w29{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x17{left:-11.360000pt;}
.x32{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x2e{left:1.280000pt;}
.x3{left:6.880000pt;}
.x13{left:32.954667pt;}
.x1{left:47.999988pt;}
.x40{left:63.199988pt;}
.x11{left:71.840000pt;}
.x25{left:81.280000pt;}
.x1e{left:87.520000pt;}
.x33{left:100.992000pt;}
.x2{left:111.552000pt;}
.x12{left:129.792000pt;}
.x3a{left:147.706667pt;}
.x4{left:166.106667pt;}
.x41{left:168.986667pt;}
.x1f{left:170.426667pt;}
.x19{left:172.026655pt;}
.x2c{left:208.186655pt;}
.x2d{left:209.626667pt;}
.x1b{left:217.626655pt;}
.x1c{left:222.266655pt;}
.x1d{left:225.786655pt;}
.x42{left:235.386667pt;}
.x14{left:246.426667pt;}
.x37{left:250.106655pt;}
.x3e{left:251.866655pt;}
.x26{left:261.786667pt;}
.xe{left:262.746655pt;}
.xf{left:270.626655pt;}
.x10{left:271.906655pt;}
.x39{left:273.346655pt;}
.x38{left:274.306655pt;}
.xc{left:289.346667pt;}
.x23{left:293.346655pt;}
.xb{left:299.586655pt;}
.x34{left:323.106667pt;}
.x2f{left:331.586667pt;}
.x15{left:333.506667pt;}
.x5{left:340.866667pt;}
.x3b{left:345.506667pt;}
.x27{left:352.226667pt;}
.xd{left:371.426667pt;}
.x20{left:375.586667pt;}
.x1a{left:396.866655pt;}
.x6{left:406.466667pt;}
.x28{left:442.493333pt;}
.x21{left:444.573333pt;}
.x30{left:453.533333pt;}
.x7{left:461.693333pt;}
.x35{left:492.253333pt;}
.x3c{left:496.253333pt;}
.x8{left:512.893333pt;}
.x29{left:532.733333pt;}
.x22{left:554.973333pt;}
.x9{left:572.253333pt;}
.x31{left:575.133333pt;}
.x16{left:582.813333pt;}
.x2a{left:623.013333pt;}
.xa{left:627.493333pt;}
.x2b{left:639.973322pt;}
.x36{left:648.293322pt;}
.x3d{left:655.013322pt;}
.x18{left:697.893322pt;}
.x24{left:719.173322pt;}
.x3f{left:722.053322pt;}
}




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