
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_8ae25fc1656cf8a76ccd90c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d8aae769117c007a3de61aa4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_860c36bfffbeef3416598c6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c46b775071669ddf85c18af1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f2d1b37cacf641dfb5fb2fff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_2c43f1d36ae1424753397a8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_582a2c05c8bd3008240c5318.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m4{transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls21{letter-spacing:-2.466000px;}
.lsf{letter-spacing:-1.896000px;}
.ls11{letter-spacing:-1.854000px;}
.ls10{letter-spacing:-1.746000px;}
.lse{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.332000px;}
.ls9{letter-spacing:-1.176000px;}
.ls12{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-0.984000px;}
.lsc{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.274800px;}
.ls1f{letter-spacing:-0.170400px;}
.ls1c{letter-spacing:-0.152400px;}
.ls1d{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.ls1a{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.414600px;}
.ls7{letter-spacing:1.440000px;}
.ls15{letter-spacing:7.920000px;}
.ls1e{letter-spacing:9.360000px;}
.ls14{letter-spacing:14.400000px;}
.ls18{letter-spacing:28.800000px;}
.ls19{letter-spacing:32.705280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.ws18{word-spacing:-16.974600px;}
.wsb{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.450800px;}
.ws19{word-spacing:-16.407600px;}
.ws16{word-spacing:-16.254600px;}
.ws17{word-spacing:-16.145400px;}
.wsc{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.840000px;}
.wse{word-spacing:-15.576000px;}
.ws14{word-spacing:-15.426000px;}
.ws9{word-spacing:-15.384000px;}
.ws1{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.228000px;}
.ws10{word-spacing:-15.120000px;}
.ws12{word-spacing:-14.814000px;}
.ws13{word-spacing:-14.706000px;}
.ws11{word-spacing:-14.664000px;}
.ws0{word-spacing:-14.580000px;}
.ws1b{word-spacing:-14.094000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.420000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._2a{margin-left:-6.934560px;}
._29{margin-left:-3.994560px;}
._12{margin-left:-2.704320px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._22{width:2.591040px;}
._f{width:3.604800px;}
._6{width:5.232960px;}
._5{width:6.640320px;}
._4{width:8.608320px;}
._3{width:9.869760px;}
._8{width:10.914240px;}
._9{width:12.233280px;}
._15{width:13.461120px;}
._c{width:14.705280px;}
._7{width:17.944320px;}
._1c{width:19.267200px;}
._b{width:20.401920px;}
._10{width:22.429440px;}
._11{width:23.755200px;}
._13{width:25.634880px;}
._14{width:27.614400px;}
._21{width:28.911360px;}
._d{width:30.524160px;}
._18{width:31.562880px;}
._a{width:32.921280px;}
._e{width:34.061760px;}
._28{width:35.184000px;}
._23{width:36.763200px;}
._19{width:38.352960px;}
._1b{width:39.758400px;}
._27{width:41.088000px;}
._1e{width:42.540480px;}
._1d{width:44.064000px;}
._32{width:45.573120px;}
._31{width:47.125440px;}
._2f{width:48.686400px;}
._35{width:50.938560px;}
._33{width:52.424640px;}
._1a{width:53.438880px;}
._2b{width:55.470720px;}
._2e{width:56.914560px;}
._1f{width:60.292800px;}
._20{width:61.536960px;}
._17{width:64.520640px;}
._16{width:66.884160px;}
._30{width:70.810560px;}
._26{width:85.464000px;}
._36{width:101.000640px;}
._24{width:113.204160px;}
._25{width:114.396480px;}
._34{width:175.097280px;}
._2c{width:194.926080px;}
._2d{width:211.883520px;}
._44{width:226.776000px;}
._42{width:243.336000px;}
._40{width:259.896000px;}
._3e{width:277.176000px;}
._3c{width:278.274720px;}
._3d{width:333.453600px;}
._3f{width:335.213280px;}
._41{width:350.045280px;}
._43{width:367.871520px;}
._45{width:383.885280px;}
._38{width:752.161440px;}
._39{width:768.721440px;}
._37{width:775.048800px;}
._3b{width:786.001440px;}
._3a{width:836.706720px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y66{bottom:9.894000px;}
.y63{bottom:9.900000px;}
.y8{bottom:10.800000px;}
.y6c{bottom:13.500000px;}
.y6a{bottom:13.530000px;}
.y8e{bottom:13.545000px;}
.yc3{bottom:13.674000px;}
.y70{bottom:13.680000px;}
.y89{bottom:14.220000px;}
.y93{bottom:14.400000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.y9c{bottom:41.070000px;}
.y99{bottom:41.214000px;}
.y90{bottom:41.265000px;}
.y97{bottom:41.934000px;}
.y9e{bottom:41.940000px;}
.yc7{bottom:41.970000px;}
.y8d{bottom:41.985000px;}
.yc2{bottom:42.114000px;}
.yb1{bottom:42.120000px;}
.y88{bottom:42.660000px;}
.y85{bottom:42.840000px;}
.yc0{bottom:43.554000px;}
.ya4{bottom:43.560000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y96{bottom:70.374000px;}
.y8c{bottom:70.425000px;}
.yb0{bottom:70.560000px;}
.ya0{bottom:71.100000px;}
.ybf{bottom:71.994000px;}
.y6e{bottom:72.000000px;}
.yc5{bottom:72.030000px;}
.y34{bottom:79.056000px;}
.yb4{bottom:97.410000px;}
.y30{bottom:97.596000px;}
.yaf{bottom:99.030000px;}
.ybe{bottom:100.434000px;}
.ya3{bottom:100.440000px;}
.yc4{bottom:100.470000px;}
.yba{bottom:100.485000px;}
.y79{bottom:101.160000px;}
.y7f{bottom:101.190000px;}
.y9a{bottom:102.276000px;}
.y68{bottom:104.436000px;}
.ybd{bottom:109.296000px;}
.yf9{bottom:109.476000px;}
.y5d{bottom:109.836000px;}
.yd9{bottom:113.616000px;}
.y67{bottom:125.136000px;}
.y2f{bottom:126.036000px;}
.yae{bottom:127.470000px;}
.y95{bottom:131.616000px;}
.yea{bottom:133.956000px;}
.yf8{bottom:138.096000px;}
.y5c{bottom:138.456000px;}
.yd8{bottom:141.696000px;}
.ydf{bottom:141.876000px;}
.y65{bottom:145.836000px;}
.y2e{bottom:154.470000px;}
.yad{bottom:155.910000px;}
.y72{bottom:159.660000px;}
.ye9{bottom:162.390000px;}
.yf7{bottom:166.530000px;}
.y5b{bottom:166.890000px;}
.y64{bottom:167.250000px;}
.yd7{bottom:170.130000px;}
.yde{bottom:170.310000px;}
.y2d{bottom:182.910000px;}
.yac{bottom:184.350000px;}
.y98{bottom:188.490000px;}
.y62{bottom:188.850000px;}
.ye8{bottom:190.830000px;}
.yf6{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.yc1{bottom:196.230000px;}
.yd6{bottom:198.570000px;}
.ydd{bottom:198.750000px;}
.y2c{bottom:211.350000px;}
.y92{bottom:217.650000px;}
.y7c{bottom:218.010000px;}
.ye7{bottom:219.270000px;}
.yf4{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.yb9{bottom:225.390000px;}
.yd5{bottom:227.010000px;}
.ydc{bottom:227.190000px;}
.y2b{bottom:239.790000px;}
.ye6{bottom:244.110000px;}
.y94{bottom:246.990000px;}
.y61{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.ybc{bottom:254.550000px;}
.ydb{bottom:255.630000px;}
.yf1{bottom:264.450000px;}
.y2a{bottom:268.230000px;}
.y91{bottom:276.150000px;}
.yda{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.y29{bottom:296.850000px;}
.y8b{bottom:305.310000px;}
.y56{bottom:309.090000px;}
.ybb{bottom:312.330000px;}
.y28{bottom:325.335000px;}
.y55{bottom:337.575000px;}
.yb8{bottom:341.535000px;}
.y27{bottom:353.775000px;}
.y8f{bottom:362.235000px;}
.yf3{bottom:365.655000px;}
.y54{bottom:366.015000px;}
.yb5{bottom:370.695000px;}
.y26{bottom:382.215000px;}
.y87{bottom:391.575000px;}
.y53{bottom:394.635000px;}
.yb7{bottom:400.035000px;}
.y25{bottom:410.655000px;}
.y8a{bottom:420.735000px;}
.y52{bottom:423.075000px;}
.y24{bottom:439.095000px;}
.y86{bottom:449.895000px;}
.y51{bottom:451.515000px;}
.yb6{bottom:457.635000px;}
.y23{bottom:467.535000px;}
.y84{bottom:479.055000px;}
.y50{bottom:479.955000px;}
.ye5{bottom:485.355000px;}
.yab{bottom:486.795000px;}
.y22{bottom:495.615000px;}
.y31{bottom:495.975000px;}
.yd4{bottom:497.235000px;}
.y4f{bottom:508.395000px;}
.ye4{bottom:513.795000px;}
.yf0{bottom:516.315000px;}
.yd3{bottom:525.675000px;}
.y21{bottom:528.195000px;}
.y4e{bottom:536.835000px;}
.ye3{bottom:538.455000px;}
.yd2{bottom:541.335000px;}
.yef{bottom:544.755000px;}
.y83{bottom:551.055000px;}
.y20{bottom:556.635000px;}
.y4d{bottom:565.275000px;}
.y7b{bottom:566.715000px;}
.yee{bottom:569.265000px;}
.yd1{bottom:569.805000px;}
.y1f{bottom:585.105000px;}
.y4c{bottom:593.745000px;}
.y82{bottom:596.085000px;}
.yd0{bottom:598.965000px;}
.yb3{bottom:600.045000px;}
.y1e{bottom:613.725000px;}
.y60{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y81{bottom:625.245000px;}
.ycf{bottom:627.405000px;}
.y1d{bottom:642.165000px;}
.y4a{bottom:650.805000px;}
.y80{bottom:654.405000px;}
.yce{bottom:656.745000px;}
.yb2{bottom:657.645000px;}
.y1c{bottom:670.605000px;}
.y49{bottom:679.245000px;}
.y78{bottom:683.565000px;}
.ycd{bottom:685.185000px;}
.yaa{bottom:686.805000px;}
.y1b{bottom:699.045000px;}
.y48{bottom:707.685000px;}
.y7e{bottom:712.905000px;}
.y1a{bottom:727.485000px;}
.ya9{bottom:729.285000px;}
.y47{bottom:736.125000px;}
.y7d{bottom:742.065000px;}
.yca{bottom:743.505000px;}
.ya7{bottom:745.305000px;}
.y19{bottom:755.925000px;}
.yf5{bottom:764.205000px;}
.y46{bottom:764.565000px;}
.y7a{bottom:771.225000px;}
.ycc{bottom:772.845000px;}
.ye2{bottom:781.665000px;}
.y18{bottom:784.365000px;}
.y5f{bottom:792.645000px;}
.y45{bottom:793.005000px;}
.yed{bottom:795.165000px;}
.y77{bottom:800.385000px;}
.ya8{bottom:802.905000px;}
.ye1{bottom:810.105000px;}
.y17{bottom:812.805000px;}
.y44{bottom:821.490000px;}
.yec{bottom:823.650000px;}
.y76{bottom:829.770000px;}
.ycb{bottom:830.490000px;}
.ya2{bottom:832.110000px;}
.ye0{bottom:834.810000px;}
.y16{bottom:847.230000px;}
.yeb{bottom:848.310000px;}
.y100{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y71{bottom:858.930000px;}
.yc8{bottom:859.650000px;}
.ya6{bottom:861.450000px;}
.y15{bottom:875.850000px;}
.yff{bottom:878.010000px;}
.y42{bottom:878.370000px;}
.y75{bottom:888.090000px;}
.yc9{bottom:888.810000px;}
.y14{bottom:904.290000px;}
.yfe{bottom:906.630000px;}
.y41{bottom:906.990000px;}
.y74{bottom:917.430000px;}
.ya5{bottom:919.050000px;}
.y13{bottom:932.730000px;}
.yfd{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.y6d{bottom:946.590000px;}
.ya1{bottom:948.210000px;}
.y12{bottom:961.170000px;}
.yfc{bottom:963.510000px;}
.y3f{bottom:963.870000px;}
.y73{bottom:975.750000px;}
.y9f{bottom:977.550000px;}
.y11{bottom:989.610000px;}
.yfb{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y6f{bottom:1004.910000px;}
.y9d{bottom:1006.710000px;}
.y10{bottom:1011.750000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y6b{bottom:1034.250000px;}
.y3c{bottom:1048.830000px;}
.y5e{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y69{bottom:1063.410000px;}
.y9b{bottom:1064.310000px;}
.y2{bottom:1072.620000px;}
.yfa{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.yc6{bottom:1091.880000px;}
.yf2{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h11{height:20.700000px;}
.h15{height:28.440000px;}
.h14{height:28.476000px;}
.h17{height:28.620000px;}
.h19{height:28.656000px;}
.h6{height:33.480000px;}
.hb{height:41.250938px;}
.h12{height:47.344922px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h23{height:56.016000px;}
.h22{height:56.160000px;}
.h20{height:56.196000px;}
.h24{height:56.880000px;}
.h2c{height:56.916000px;}
.h2b{height:57.060000px;}
.h1e{height:57.600000px;}
.h1d{height:57.780000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h2d{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h21{height:85.320000px;}
.h1f{height:85.356000px;}
.h25{height:86.040000px;}
.h27{height:86.076000px;}
.h16{height:86.940000px;}
.h13{height:111.043849px;}
.hf{height:111.043854px;}
.h29{height:112.356000px;}
.h26{height:115.380000px;}
.h2a{height:115.416000px;}
.h1a{height:116.100000px;}
.h1c{height:116.136000px;}
.h4{height:167.250000px;}
.h18{height:174.600000px;}
.h28{height:199.290000px;}
.h1b{height:232.950000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w2d{width:85.680000px;}
.w17{width:86.040000px;}
.w24{width:86.940000px;}
.w10{width:94.140000px;}
.w26{width:96.660000px;}
.w14{width:97.740000px;}
.we{width:100.620000px;}
.w2b{width:102.600000px;}
.w11{width:105.876000px;}
.w16{width:108.576000px;}
.w21{width:110.916000px;}
.w2a{width:112.896000px;}
.w1b{width:113.976000px;}
.w19{width:119.520000px;}
.w18{width:119.736000px;}
.w22{width:121.500000px;}
.w1c{width:125.100000px;}
.w23{width:129.996000px;}
.w20{width:130.356000px;}
.wd{width:132.876000px;}
.w1e{width:133.956000px;}
.w29{width:134.316000px;}
.w2c{width:135.576000px;}
.w27{width:154.830000px;}
.wf{width:171.210000px;}
.w12{width:187.230000px;}
.w1f{width:219.090000px;}
.w28{width:220.710000px;}
.w1d{width:225.570000px;}
.w15{width:239.970000px;}
.w13{width:261.795000px;}
.w9{width:263.370000px;}
.w8{width:263.595000px;}
.wa{width:275.250000px;}
.wc{width:294.015000px;}
.w3{width:361.335000px;}
.wb{width:795.930000px;}
.w1a{width:797.190000px;}
.w25{width:802.590000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x23{left:5.580000px;}
.xd{left:8.100000px;}
.x7{left:10.800000px;}
.x19{left:12.060000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x26{left:50.256000px;}
.x2{left:53.999986px;}
.x14{left:58.356000px;}
.xc{left:60.120000px;}
.x2e{left:79.379986px;}
.x35{left:84.779986px;}
.x36{left:97.595986px;}
.x3b{left:106.055986px;}
.x37{left:110.015986px;}
.x27{left:114.690000px;}
.x39{left:118.655986px;}
.x1{left:122.435986px;}
.x28{left:124.770000px;}
.x3a{left:126.035986px;}
.x3c{left:129.275986px;}
.x6{left:130.860000px;}
.x38{left:135.575986px;}
.x29{left:138.630000px;}
.x2a{left:149.250000px;}
.x13{left:161.130000px;}
.x3e{left:231.149986px;}
.x1d{left:274.170000px;}
.x1c{left:280.650000px;}
.x15{left:316.875000px;}
.xe{left:324.435000px;}
.x10{left:349.095000px;}
.x2f{left:376.814986px;}
.x30{left:391.934986px;}
.x1e{left:405.255000px;}
.x34{left:411.374986px;}
.x16{left:415.335000px;}
.x24{left:416.595000px;}
.x2b{left:436.574986px;}
.x3d{left:445.214986px;}
.x8{left:482.144986px;}
.x31{left:507.524986px;}
.x1f{left:517.065000px;}
.x5{left:521.025000px;}
.x1b{left:530.205000px;}
.x1a{left:535.785000px;}
.x11{left:584.205000px;}
.xf{left:588.525000px;}
.x22{left:614.445000px;}
.x25{left:633.705000px;}
.x20{left:639.285000px;}
.x17{left:656.205000px;}
.x3f{left:659.264986px;}
.x32{left:711.509986px;}
.x33{left:726.809986px;}
.x12{left:756.150000px;}
.x18{left:765.510000px;}
.x21{left:770.010000px;}
.x2d{left:863.429986px;}
.x2c{left:864.689986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls21{letter-spacing:-2.192000pt;}
.lsf{letter-spacing:-1.685333pt;}
.ls11{letter-spacing:-1.648000pt;}
.ls10{letter-spacing:-1.552000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.184000pt;}
.ls9{letter-spacing:-1.045333pt;}
.ls12{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.874667pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls1f{letter-spacing:-0.151467pt;}
.ls1c{letter-spacing:-0.135467pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.368533pt;}
.ls7{letter-spacing:1.280000pt;}
.ls15{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls14{letter-spacing:12.800000pt;}
.ls18{letter-spacing:25.600000pt;}
.ls19{letter-spacing:29.071360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.088533pt;}
.wsb{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.622933pt;}
.ws19{word-spacing:-14.584533pt;}
.ws16{word-spacing:-14.448533pt;}
.ws17{word-spacing:-14.351467pt;}
.wsc{word-spacing:-14.176000pt;}
.wsd{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.845333pt;}
.ws14{word-spacing:-13.712000pt;}
.ws9{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.536000pt;}
.ws10{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.168000pt;}
.ws13{word-spacing:-13.072000pt;}
.ws11{word-spacing:-13.034667pt;}
.ws0{word-spacing:-12.960000pt;}
.ws1b{word-spacing:-12.528000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._2a{margin-left:-6.164053pt;}
._29{margin-left:-3.550720pt;}
._12{margin-left:-2.403840pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._22{width:2.303147pt;}
._f{width:3.204267pt;}
._6{width:4.651520pt;}
._5{width:5.902507pt;}
._4{width:7.651840pt;}
._3{width:8.773120pt;}
._8{width:9.701547pt;}
._9{width:10.874027pt;}
._15{width:11.965440pt;}
._c{width:13.071360pt;}
._7{width:15.950507pt;}
._1c{width:17.126400pt;}
._b{width:18.135040pt;}
._10{width:19.937280pt;}
._11{width:21.115733pt;}
._13{width:22.786560pt;}
._14{width:24.546133pt;}
._21{width:25.698987pt;}
._d{width:27.132587pt;}
._18{width:28.055893pt;}
._a{width:29.263360pt;}
._e{width:30.277120pt;}
._28{width:31.274667pt;}
._23{width:32.678400pt;}
._19{width:34.091520pt;}
._1b{width:35.340800pt;}
._27{width:36.522667pt;}
._1e{width:37.813760pt;}
._1d{width:39.168000pt;}
._32{width:40.509440pt;}
._31{width:41.889280pt;}
._2f{width:43.276800pt;}
._35{width:45.278720pt;}
._33{width:46.599680pt;}
._1a{width:47.501227pt;}
._2b{width:49.307307pt;}
._2e{width:50.590720pt;}
._1f{width:53.593600pt;}
._20{width:54.699520pt;}
._17{width:57.351680pt;}
._16{width:59.452587pt;}
._30{width:62.942720pt;}
._26{width:75.968000pt;}
._36{width:89.778347pt;}
._24{width:100.625920pt;}
._25{width:101.685760pt;}
._34{width:155.642027pt;}
._2c{width:173.267627pt;}
._2d{width:188.340907pt;}
._44{width:201.578667pt;}
._42{width:216.298667pt;}
._40{width:231.018667pt;}
._3e{width:246.378667pt;}
._3c{width:247.355307pt;}
._3d{width:296.403200pt;}
._3f{width:297.967360pt;}
._41{width:311.151360pt;}
._43{width:326.996907pt;}
._45{width:341.231360pt;}
._38{width:668.587947pt;}
._39{width:683.307947pt;}
._37{width:688.932267pt;}
._3b{width:698.667947pt;}
._3a{width:743.739307pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y66{bottom:8.794667pt;}
.y63{bottom:8.800000pt;}
.y8{bottom:9.600000pt;}
.y6c{bottom:12.000000pt;}
.y6a{bottom:12.026667pt;}
.y8e{bottom:12.040000pt;}
.yc3{bottom:12.154667pt;}
.y70{bottom:12.160000pt;}
.y89{bottom:12.640000pt;}
.y93{bottom:12.800000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.y9c{bottom:36.506667pt;}
.y99{bottom:36.634667pt;}
.y90{bottom:36.680000pt;}
.y97{bottom:37.274667pt;}
.y9e{bottom:37.280000pt;}
.yc7{bottom:37.306667pt;}
.y8d{bottom:37.320000pt;}
.yc2{bottom:37.434667pt;}
.yb1{bottom:37.440000pt;}
.y88{bottom:37.920000pt;}
.y85{bottom:38.080000pt;}
.yc0{bottom:38.714667pt;}
.ya4{bottom:38.720000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y96{bottom:62.554667pt;}
.y8c{bottom:62.600000pt;}
.yb0{bottom:62.720000pt;}
.ya0{bottom:63.200000pt;}
.ybf{bottom:63.994667pt;}
.y6e{bottom:64.000000pt;}
.yc5{bottom:64.026667pt;}
.y34{bottom:70.272000pt;}
.yb4{bottom:86.586667pt;}
.y30{bottom:86.752000pt;}
.yaf{bottom:88.026667pt;}
.ybe{bottom:89.274667pt;}
.ya3{bottom:89.280000pt;}
.yc4{bottom:89.306667pt;}
.yba{bottom:89.320000pt;}
.y79{bottom:89.920000pt;}
.y7f{bottom:89.946667pt;}
.y9a{bottom:90.912000pt;}
.y68{bottom:92.832000pt;}
.ybd{bottom:97.152000pt;}
.yf9{bottom:97.312000pt;}
.y5d{bottom:97.632000pt;}
.yd9{bottom:100.992000pt;}
.y67{bottom:111.232000pt;}
.y2f{bottom:112.032000pt;}
.yae{bottom:113.306667pt;}
.y95{bottom:116.992000pt;}
.yea{bottom:119.072000pt;}
.yf8{bottom:122.752000pt;}
.y5c{bottom:123.072000pt;}
.yd8{bottom:125.952000pt;}
.ydf{bottom:126.112000pt;}
.y65{bottom:129.632000pt;}
.y2e{bottom:137.306667pt;}
.yad{bottom:138.586667pt;}
.y72{bottom:141.920000pt;}
.ye9{bottom:144.346667pt;}
.yf7{bottom:148.026667pt;}
.y5b{bottom:148.346667pt;}
.y64{bottom:148.666667pt;}
.yd7{bottom:151.226667pt;}
.yde{bottom:151.386667pt;}
.y2d{bottom:162.586667pt;}
.yac{bottom:163.866667pt;}
.y98{bottom:167.546667pt;}
.y62{bottom:167.866667pt;}
.ye8{bottom:169.626667pt;}
.yf6{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.yc1{bottom:174.426667pt;}
.yd6{bottom:176.506667pt;}
.ydd{bottom:176.666667pt;}
.y2c{bottom:187.866667pt;}
.y92{bottom:193.466667pt;}
.y7c{bottom:193.786667pt;}
.ye7{bottom:194.906667pt;}
.yf4{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.yb9{bottom:200.346667pt;}
.yd5{bottom:201.786667pt;}
.ydc{bottom:201.946667pt;}
.y2b{bottom:213.146667pt;}
.ye6{bottom:216.986667pt;}
.y94{bottom:219.546667pt;}
.y61{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.ybc{bottom:226.266667pt;}
.ydb{bottom:227.226667pt;}
.yf1{bottom:235.066667pt;}
.y2a{bottom:238.426667pt;}
.y91{bottom:245.466667pt;}
.yda{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.y29{bottom:263.866667pt;}
.y8b{bottom:271.386667pt;}
.y56{bottom:274.746667pt;}
.ybb{bottom:277.626667pt;}
.y28{bottom:289.186667pt;}
.y55{bottom:300.066667pt;}
.yb8{bottom:303.586667pt;}
.y27{bottom:314.466667pt;}
.y8f{bottom:321.986667pt;}
.yf3{bottom:325.026667pt;}
.y54{bottom:325.346667pt;}
.yb5{bottom:329.506667pt;}
.y26{bottom:339.746667pt;}
.y87{bottom:348.066667pt;}
.y53{bottom:350.786667pt;}
.yb7{bottom:355.586667pt;}
.y25{bottom:365.026667pt;}
.y8a{bottom:373.986667pt;}
.y52{bottom:376.066667pt;}
.y24{bottom:390.306667pt;}
.y86{bottom:399.906667pt;}
.y51{bottom:401.346667pt;}
.yb6{bottom:406.786667pt;}
.y23{bottom:415.586667pt;}
.y84{bottom:425.826667pt;}
.y50{bottom:426.626667pt;}
.ye5{bottom:431.426667pt;}
.yab{bottom:432.706667pt;}
.y22{bottom:440.546667pt;}
.y31{bottom:440.866667pt;}
.yd4{bottom:441.986667pt;}
.y4f{bottom:451.906667pt;}
.ye4{bottom:456.706667pt;}
.yf0{bottom:458.946667pt;}
.yd3{bottom:467.266667pt;}
.y21{bottom:469.506667pt;}
.y4e{bottom:477.186667pt;}
.ye3{bottom:478.626667pt;}
.yd2{bottom:481.186667pt;}
.yef{bottom:484.226667pt;}
.y83{bottom:489.826667pt;}
.y20{bottom:494.786667pt;}
.y4d{bottom:502.466667pt;}
.y7b{bottom:503.746667pt;}
.yee{bottom:506.013333pt;}
.yd1{bottom:506.493333pt;}
.y1f{bottom:520.093333pt;}
.y4c{bottom:527.773333pt;}
.y82{bottom:529.853333pt;}
.yd0{bottom:532.413333pt;}
.yb3{bottom:533.373333pt;}
.y1e{bottom:545.533333pt;}
.y60{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y81{bottom:555.773333pt;}
.ycf{bottom:557.693333pt;}
.y1d{bottom:570.813333pt;}
.y4a{bottom:578.493333pt;}
.y80{bottom:581.693333pt;}
.yce{bottom:583.773333pt;}
.yb2{bottom:584.573333pt;}
.y1c{bottom:596.093333pt;}
.y49{bottom:603.773333pt;}
.y78{bottom:607.613333pt;}
.ycd{bottom:609.053333pt;}
.yaa{bottom:610.493333pt;}
.y1b{bottom:621.373333pt;}
.y48{bottom:629.053333pt;}
.y7e{bottom:633.693333pt;}
.y1a{bottom:646.653333pt;}
.ya9{bottom:648.253333pt;}
.y47{bottom:654.333333pt;}
.y7d{bottom:659.613333pt;}
.yca{bottom:660.893333pt;}
.ya7{bottom:662.493333pt;}
.y19{bottom:671.933333pt;}
.yf5{bottom:679.293333pt;}
.y46{bottom:679.613333pt;}
.y7a{bottom:685.533333pt;}
.ycc{bottom:686.973333pt;}
.ye2{bottom:694.813333pt;}
.y18{bottom:697.213333pt;}
.y5f{bottom:704.573333pt;}
.y45{bottom:704.893333pt;}
.yed{bottom:706.813333pt;}
.y77{bottom:711.453333pt;}
.ya8{bottom:713.693333pt;}
.ye1{bottom:720.093333pt;}
.y17{bottom:722.493333pt;}
.y44{bottom:730.213333pt;}
.yec{bottom:732.133333pt;}
.y76{bottom:737.573333pt;}
.ycb{bottom:738.213333pt;}
.ya2{bottom:739.653333pt;}
.ye0{bottom:742.053333pt;}
.y16{bottom:753.093333pt;}
.yeb{bottom:754.053333pt;}
.y100{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y71{bottom:763.493333pt;}
.yc8{bottom:764.133333pt;}
.ya6{bottom:765.733333pt;}
.y15{bottom:778.533333pt;}
.yff{bottom:780.453333pt;}
.y42{bottom:780.773333pt;}
.y75{bottom:789.413333pt;}
.yc9{bottom:790.053333pt;}
.y14{bottom:803.813333pt;}
.yfe{bottom:805.893333pt;}
.y41{bottom:806.213333pt;}
.y74{bottom:815.493333pt;}
.ya5{bottom:816.933333pt;}
.y13{bottom:829.093333pt;}
.yfd{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.y6d{bottom:841.413333pt;}
.ya1{bottom:842.853333pt;}
.y12{bottom:854.373333pt;}
.yfc{bottom:856.453333pt;}
.y3f{bottom:856.773333pt;}
.y73{bottom:867.333333pt;}
.y9f{bottom:868.933333pt;}
.y11{bottom:879.653333pt;}
.yfb{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y6f{bottom:893.253333pt;}
.y9d{bottom:894.853333pt;}
.y10{bottom:899.333333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y6b{bottom:919.333333pt;}
.y3c{bottom:932.293333pt;}
.y5e{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y69{bottom:945.253333pt;}
.y9b{bottom:946.053333pt;}
.y2{bottom:953.440000pt;}
.yfa{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.yc6{bottom:970.560000pt;}
.yf2{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h11{height:18.400000pt;}
.h15{height:25.280000pt;}
.h14{height:25.312000pt;}
.h17{height:25.440000pt;}
.h19{height:25.472000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h12{height:42.084375pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h23{height:49.792000pt;}
.h22{height:49.920000pt;}
.h20{height:49.952000pt;}
.h24{height:50.560000pt;}
.h2c{height:50.592000pt;}
.h2b{height:50.720000pt;}
.h1e{height:51.200000pt;}
.h1d{height:51.360000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h2d{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h21{height:75.840000pt;}
.h1f{height:75.872000pt;}
.h25{height:76.480000pt;}
.h27{height:76.512000pt;}
.h16{height:77.280000pt;}
.h13{height:98.705643pt;}
.hf{height:98.705648pt;}
.h29{height:99.872000pt;}
.h26{height:102.560000pt;}
.h2a{height:102.592000pt;}
.h1a{height:103.200000pt;}
.h1c{height:103.232000pt;}
.h4{height:148.666667pt;}
.h18{height:155.200000pt;}
.h28{height:177.146667pt;}
.h1b{height:207.066667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w2d{width:76.160000pt;}
.w17{width:76.480000pt;}
.w24{width:77.280000pt;}
.w10{width:83.680000pt;}
.w26{width:85.920000pt;}
.w14{width:86.880000pt;}
.we{width:89.440000pt;}
.w2b{width:91.200000pt;}
.w11{width:94.112000pt;}
.w16{width:96.512000pt;}
.w21{width:98.592000pt;}
.w2a{width:100.352000pt;}
.w1b{width:101.312000pt;}
.w19{width:106.240000pt;}
.w18{width:106.432000pt;}
.w22{width:108.000000pt;}
.w1c{width:111.200000pt;}
.w23{width:115.552000pt;}
.w20{width:115.872000pt;}
.wd{width:118.112000pt;}
.w1e{width:119.072000pt;}
.w29{width:119.392000pt;}
.w2c{width:120.512000pt;}
.w27{width:137.626667pt;}
.wf{width:152.186667pt;}
.w12{width:166.426667pt;}
.w1f{width:194.746667pt;}
.w28{width:196.186667pt;}
.w1d{width:200.506667pt;}
.w15{width:213.306667pt;}
.w13{width:232.706667pt;}
.w9{width:234.106667pt;}
.w8{width:234.306667pt;}
.wa{width:244.666667pt;}
.wc{width:261.346667pt;}
.w3{width:321.186667pt;}
.wb{width:707.493333pt;}
.w1a{width:708.613333pt;}
.w25{width:713.413333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.960000pt;}
.xd{left:7.200000pt;}
.x7{left:9.600000pt;}
.x19{left:10.720000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x26{left:44.672000pt;}
.x2{left:47.999988pt;}
.x14{left:51.872000pt;}
.xc{left:53.440000pt;}
.x2e{left:70.559988pt;}
.x35{left:75.359988pt;}
.x36{left:86.751988pt;}
.x3b{left:94.271988pt;}
.x37{left:97.791988pt;}
.x27{left:101.946667pt;}
.x39{left:105.471988pt;}
.x1{left:108.831988pt;}
.x28{left:110.906667pt;}
.x3a{left:112.031988pt;}
.x3c{left:114.911988pt;}
.x6{left:116.320000pt;}
.x38{left:120.511988pt;}
.x29{left:123.226667pt;}
.x2a{left:132.666667pt;}
.x13{left:143.226667pt;}
.x3e{left:205.466655pt;}
.x1d{left:243.706667pt;}
.x1c{left:249.466667pt;}
.x15{left:281.666667pt;}
.xe{left:288.386667pt;}
.x10{left:310.306667pt;}
.x2f{left:334.946655pt;}
.x30{left:348.386655pt;}
.x1e{left:360.226667pt;}
.x34{left:365.666655pt;}
.x16{left:369.186667pt;}
.x24{left:370.306667pt;}
.x2b{left:388.066655pt;}
.x3d{left:395.746655pt;}
.x8{left:428.573321pt;}
.x31{left:451.133321pt;}
.x1f{left:459.613333pt;}
.x5{left:463.133333pt;}
.x1b{left:471.293333pt;}
.x1a{left:476.253333pt;}
.x11{left:519.293333pt;}
.xf{left:523.133333pt;}
.x22{left:546.173333pt;}
.x25{left:563.293333pt;}
.x20{left:568.253333pt;}
.x17{left:583.293333pt;}
.x3f{left:586.013321pt;}
.x32{left:632.453321pt;}
.x33{left:646.053321pt;}
.x12{left:672.133333pt;}
.x18{left:680.453333pt;}
.x21{left:684.453333pt;}
.x2d{left:767.493321pt;}
.x2c{left:768.613321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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