
    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_fb8d1e0062d1eee7fa628563.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_490993d6eeaf7ef14952cf0e.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_860e53c2fbce8f377db88c94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_1d5151ba303c5ad97ce101b7.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_207feff8a5c8f4a4506bf74e.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_a9dbbb1d455626429ef30ae8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9a4ce8aa91b8cbeb6d17090f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_8a881f09c6a7415724a44359.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_133e1c27daaed6ea9bd9e2d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8648d02ca1d0ecd22c11568d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.274800px;}
.ls12{letter-spacing:-0.109200px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.109440px;}
.lsf{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.567600px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.440000px;}
.ls13{letter-spacing:5.040000px;}
.ls1c{letter-spacing:6.785280px;}
.ls15{letter-spacing:8.280000px;}
.ls9{letter-spacing:11.520000px;}
.ls19{letter-spacing:12.960000px;}
.ls16{letter-spacing:19.440000px;}
.ls14{letter-spacing:19.745280px;}
.ls18{letter-spacing:19.800000px;}
.ls17{letter-spacing:29.520000px;}
.lsb{letter-spacing:30.545280px;}
.lsa{letter-spacing:34.865280px;}
.ls1b{letter-spacing:39.905280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws1{word-spacing:-59.760000px;}
.wsb{word-spacing:-28.987200px;}
.wsa{word-spacing:-28.712400px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.939200px;}
.ws8{word-spacing:-13.500000px;}
.ws5{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-2.041440px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._3{width:2.649600px;}
._e{width:4.504320px;}
._6{width:5.774400px;}
._f{width:6.967200px;}
._5{width:8.067360px;}
._4{width:9.198720px;}
._18{width:11.146080px;}
._10{width:12.916800px;}
._13{width:14.042880px;}
._1d{width:15.528960px;}
._20{width:17.637600px;}
._21{width:18.950400px;}
._2e{width:19.986720px;}
._8{width:21.064320px;}
._9{width:22.068960px;}
._d{width:23.250240px;}
._c{width:24.695520px;}
._1f{width:25.983840px;}
._12{width:27.043680px;}
._11{width:28.152000px;}
._19{width:29.410560px;}
._2f{width:30.602880px;}
._30{width:32.313120px;}
._25{width:33.864960px;}
._1e{width:34.867200px;}
._16{width:35.986080px;}
._15{width:37.226880px;}
._17{width:38.261760px;}
._1a{width:39.629280px;}
._34{width:41.039040px;}
._48{width:42.393600px;}
._35{width:43.983360px;}
._24{width:45.573120px;}
._2c{width:46.915680px;}
._2d{width:48.391680px;}
._54{width:49.396800px;}
._14{width:50.739840px;}
._27{width:51.853440px;}
._26{width:53.443680px;}
._a{width:55.442880px;}
._b{width:57.020640px;}
._1c{width:58.140000px;}
._1b{width:59.206560px;}
._39{width:60.609600px;}
._32{width:62.415840px;}
._31{width:64.042080px;}
._3a{width:65.710080px;}
._2a{width:67.101120px;}
._2b{width:68.311680px;}
._33{width:71.340480px;}
._4c{width:72.665280px;}
._23{width:75.266400px;}
._51{width:78.361920px;}
._22{width:79.605600px;}
._41{width:81.806400px;}
._57{width:84.389760px;}
._3d{width:86.045760px;}
._58{width:88.020960px;}
._55{width:89.076960px;}
._4e{width:90.086400px;}
._37{width:95.186880px;}
._50{width:96.379200px;}
._3b{width:98.035200px;}
._28{width:100.516800px;}
._29{width:103.731840px;}
._42{width:112.343040px;}
._46{width:113.667840px;}
._56{width:116.913600px;}
._4b{width:118.587360px;}
._38{width:137.646720px;}
._36{width:141.952320px;}
._4f{width:143.740800px;}
._3e{width:152.153280px;}
._49{width:158.512320px;}
._44{width:164.010240px;}
._43{width:178.053120px;}
._3c{width:179.179200px;}
._47{width:185.339520px;}
._53{width:189.711360px;}
._40{width:190.837440px;}
._45{width:198.521280px;}
._52{width:208.842720px;}
._4a{width:222.831360px;}
._4d{width:343.851840px;}
._3f{width:377.170560px;}
._2{width:961.680000px;}
.fc8{color:transparent;}
.fc7{color:rgb(83,129,53);}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc9{color:rgb(34,34,34);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.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;}
.y8{bottom:10.800000px;}
.yb2{bottom:13.494000px;}
.y68{bottom:13.500000px;}
.y6e{bottom:13.545000px;}
.y9a{bottom:13.680000px;}
.y37{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y65{bottom:30.600000px;}
.y36{bottom:37.080000px;}
.y67{bottom:41.940000px;}
.y91{bottom:41.970000px;}
.y6d{bottom:41.985000px;}
.yb1{bottom:42.114000px;}
.y99{bottom:42.120000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y35{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y9e{bottom:70.374000px;}
.y6a{bottom:70.380000px;}
.y6c{bottom:70.425000px;}
.yb0{bottom:70.554000px;}
.y95{bottom:70.560000px;}
.y30{bottom:97.596000px;}
.y9d{bottom:98.814000px;}
.ya2{bottom:98.820000px;}
.ya9{bottom:98.850000px;}
.yaf{bottom:98.994000px;}
.y94{bottom:99.000000px;}
.y98{bottom:99.045000px;}
.y5d{bottom:99.756000px;}
.y9b{bottom:101.016000px;}
.yfb{bottom:102.816000px;}
.yb3{bottom:109.476000px;}
.ycd{bottom:110.376000px;}
.y2f{bottom:126.036000px;}
.y9c{bottom:127.254000px;}
.ya6{bottom:127.260000px;}
.yae{bottom:127.434000px;}
.y93{bottom:127.440000px;}
.ya8{bottom:127.470000px;}
.y97{bottom:127.485000px;}
.y5c{bottom:128.196000px;}
.yfa{bottom:131.256000px;}
.y84{bottom:135.216000px;}
.yac{bottom:138.636000px;}
.ycc{bottom:138.816000px;}
.y2e{bottom:154.470000px;}
.ya5{bottom:155.700000px;}
.yad{bottom:155.874000px;}
.ya0{bottom:155.910000px;}
.yab{bottom:155.925000px;}
.y5b{bottom:156.270000px;}
.yfc{bottom:156.630000px;}
.yf9{bottom:159.690000px;}
.y83{bottom:163.650000px;}
.ycb{bottom:167.250000px;}
.ydd{bottom:170.310000px;}
.y2d{bottom:182.910000px;}
.ya4{bottom:184.140000px;}
.y5a{bottom:185.250000px;}
.yf8{bottom:188.130000px;}
.y82{bottom:191.730000px;}
.y88{bottom:192.090000px;}
.yca{bottom:195.690000px;}
.ydc{bottom:199.110000px;}
.y2c{bottom:211.350000px;}
.yfe{bottom:213.330000px;}
.y59{bottom:213.690000px;}
.yf7{bottom:216.570000px;}
.y81{bottom:220.530000px;}
.ydb{bottom:223.590000px;}
.yc9{bottom:224.130000px;}
.y32{bottom:239.430000px;}
.y2b{bottom:239.790000px;}
.y58{bottom:242.130000px;}
.y96{bottom:243.930000px;}
.yf6{bottom:245.010000px;}
.y80{bottom:248.970000px;}
.yc8{bottom:252.210000px;}
.y2a{bottom:268.230000px;}
.y57{bottom:270.570000px;}
.yf5{bottom:273.450000px;}
.y7f{bottom:277.410000px;}
.yc7{bottom:281.010000px;}
.y29{bottom:296.850000px;}
.y56{bottom:298.650000px;}
.y63{bottom:299.010000px;}
.yf4{bottom:302.070000px;}
.y87{bottom:305.490000px;}
.y7e{bottom:305.850000px;}
.yc6{bottom:309.630000px;}
.yaa{bottom:310.170000px;}
.y28{bottom:325.335000px;}
.y55{bottom:327.135000px;}
.y62{bottom:327.495000px;}
.yf3{bottom:330.555000px;}
.y7d{bottom:333.975000px;}
.yc5{bottom:338.115000px;}
.y27{bottom:353.775000px;}
.y54{bottom:355.935000px;}
.yf2{bottom:358.995000px;}
.y7c{bottom:362.955000px;}
.yc4{bottom:366.555000px;}
.y26{bottom:382.215000px;}
.y53{bottom:384.375000px;}
.yda{bottom:385.635000px;}
.y92{bottom:387.075000px;}
.yf1{bottom:387.435000px;}
.y7b{bottom:391.395000px;}
.yc3{bottom:394.635000px;}
.y25{bottom:410.655000px;}
.y52{bottom:412.815000px;}
.yd9{bottom:414.075000px;}
.yf0{bottom:415.875000px;}
.y7a{bottom:419.835000px;}
.yc2{bottom:423.435000px;}
.y24{bottom:439.095000px;}
.y61{bottom:441.075000px;}
.y51{bottom:441.435000px;}
.yd8{bottom:442.515000px;}
.yef{bottom:444.315000px;}
.yc1{bottom:447.915000px;}
.y79{bottom:448.275000px;}
.y23{bottom:467.535000px;}
.y50{bottom:469.875000px;}
.yc0{bottom:470.235000px;}
.yd7{bottom:470.955000px;}
.yee{bottom:472.755000px;}
.y78{bottom:476.355000px;}
.ya7{bottom:481.755000px;}
.y22{bottom:495.975000px;}
.yfd{bottom:497.955000px;}
.y4f{bottom:498.315000px;}
.ybf{bottom:498.675000px;}
.yd6{bottom:499.395000px;}
.yed{bottom:501.195000px;}
.y77{bottom:505.155000px;}
.ybe{bottom:523.155000px;}
.y21{bottom:524.415000px;}
.y4e{bottom:526.755000px;}
.yd5{bottom:527.835000px;}
.yec{bottom:529.635000px;}
.y90{bottom:530.175000px;}
.y76{bottom:533.595000px;}
.y20{bottom:553.035000px;}
.y4d{bottom:555.195000px;}
.yd4{bottom:556.275000px;}
.yeb{bottom:558.255000px;}
.y75{bottom:562.035000px;}
.y1f{bottom:581.505000px;}
.y4c{bottom:583.665000px;}
.yd3{bottom:584.385000px;}
.yea{bottom:586.725000px;}
.y74{bottom:590.505000px;}
.y8f{bottom:601.305000px;}
.y1e{bottom:609.945000px;}
.y60{bottom:611.745000px;}
.y4b{bottom:612.105000px;}
.yd2{bottom:613.185000px;}
.ye9{bottom:615.165000px;}
.y73{bottom:619.125000px;}
.ya3{bottom:624.885000px;}
.y8d{bottom:629.925000px;}
.y1d{bottom:638.385000px;}
.y4a{bottom:640.545000px;}
.yd1{bottom:641.805000px;}
.ye8{bottom:643.605000px;}
.y86{bottom:647.205000px;}
.y72{bottom:647.565000px;}
.y8c{bottom:658.365000px;}
.yd0{bottom:666.285000px;}
.y1c{bottom:666.825000px;}
.ybd{bottom:667.545000px;}
.y49{bottom:668.985000px;}
.ye7{bottom:672.045000px;}
.y71{bottom:676.005000px;}
.y8b{bottom:686.445000px;}
.y1b{bottom:695.265000px;}
.ybc{bottom:695.985000px;}
.y8e{bottom:697.245000px;}
.y48{bottom:697.605000px;}
.ye6{bottom:700.485000px;}
.y70{bottom:704.085000px;}
.y85{bottom:704.445000px;}
.y8a{bottom:715.245000px;}
.y6f{bottom:720.105000px;}
.y1a{bottom:723.345000px;}
.y31{bottom:723.705000px;}
.ybb{bottom:724.425000px;}
.y47{bottom:726.045000px;}
.ye5{bottom:728.925000px;}
.y89{bottom:739.725000px;}
.yba{bottom:752.865000px;}
.y46{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.ye4{bottom:757.365000px;}
.yb9{bottom:781.485000px;}
.y45{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.ye3{bottom:785.805000px;}
.y6b{bottom:806.325000px;}
.yb8{bottom:809.925000px;}
.y44{bottom:811.365000px;}
.y17{bottom:812.805000px;}
.ye2{bottom:814.425000px;}
.ya1{bottom:824.910000px;}
.yb7{bottom:838.410000px;}
.y5f{bottom:839.490000px;}
.y43{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.ye1{bottom:842.550000px;}
.yb6{bottom:866.850000px;}
.y5e{bottom:867.930000px;}
.y42{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.ye0{bottom:871.350000px;}
.ycf{bottom:880.890000px;}
.y69{bottom:892.410000px;}
.yb5{bottom:894.930000px;}
.y41{bottom:896.730000px;}
.y14{bottom:898.350000px;}
.ydf{bottom:899.790000px;}
.yce{bottom:905.550000px;}
.yb4{bottom:923.730000px;}
.yde{bottom:924.270000px;}
.y40{bottom:925.170000px;}
.y13{bottom:926.790000px;}
.y9f{bottom:939.390000px;}
.y3f{bottom:953.790000px;}
.y12{bottom:955.230000px;}
.y66{bottom:978.630000px;}
.y3e{bottom:982.230000px;}
.y11{bottom:989.610000px;}
.y3d{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.y64{bottom:1036.230000px;}
.y3c{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y3b{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y3a{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y34{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y33{bottom:1131.660000px;}
.h20{height:28.440000px;}
.h6{height:33.480000px;}
.hb{height:42.997500px;}
.h14{height:45.576000px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h12{height:55.243125px;}
.h15{height:56.880000px;}
.h18{height:56.916000px;}
.h2{height:58.621992px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h21{height:68.084282px;}
.h13{height:68.956875px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h16{height:85.320000px;}
.h17{height:85.356000px;}
.h10{height:111.043849px;}
.hf{height:111.043854px;}
.h1d{height:113.760000px;}
.h1b{height:142.200000px;}
.h19{height:142.380000px;}
.h1a{height:142.416000px;}
.h4{height:167.250000px;}
.h1f{height:170.820000px;}
.h1c{height:170.850000px;}
.h1e{height:199.110000px;}
.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;}
.wb{width:73.620000px;}
.wd{width:94.860000px;}
.wc{width:105.696000px;}
.w8{width:113.076000px;}
.w10{width:116.280000px;}
.wa{width:116.316000px;}
.wf{width:126.936000px;}
.we{width:158.610000px;}
.w3{width:361.335000px;}
.w9{width:685.005000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x18{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xd{left:168.150000px;}
.xf{left:171.390000px;}
.x10{left:245.730000px;}
.x11{left:352.155000px;}
.xe{left:432.074986px;}
.x12{left:447.915000px;}
.x8{left:486.104986px;}
.x17{left:513.104986px;}
.x5{left:521.025000px;}
.x13{left:607.245000px;}
.x14{left:734.910000px;}
.x15{left:846.329986px;}
.x16{left:864.149986px;}
.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;}
.lsd{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.244267pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.097280pt;}
.lsf{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.504533pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:6.031360pt;}
.ls15{letter-spacing:7.360000pt;}
.ls9{letter-spacing:10.240000pt;}
.ls19{letter-spacing:11.520000pt;}
.ls16{letter-spacing:17.280000pt;}
.ls14{letter-spacing:17.551360pt;}
.ls18{letter-spacing:17.600000pt;}
.ls17{letter-spacing:26.240000pt;}
.lsb{letter-spacing:27.151360pt;}
.lsa{letter-spacing:30.991360pt;}
.ls1b{letter-spacing:35.471360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws4{word-spacing:-58.880000pt;}
.ws1{word-spacing:-53.120000pt;}
.wsb{word-spacing:-25.766400pt;}
.wsa{word-spacing:-25.522133pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.390400pt;}
.ws8{word-spacing:-12.000000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-1.814613pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._3{width:2.355200pt;}
._e{width:4.003840pt;}
._6{width:5.132800pt;}
._f{width:6.193067pt;}
._5{width:7.170987pt;}
._4{width:8.176640pt;}
._18{width:9.907627pt;}
._10{width:11.481600pt;}
._13{width:12.482560pt;}
._1d{width:13.803520pt;}
._20{width:15.677867pt;}
._21{width:16.844800pt;}
._2e{width:17.765973pt;}
._8{width:18.723840pt;}
._9{width:19.616853pt;}
._d{width:20.666880pt;}
._c{width:21.951573pt;}
._1f{width:23.096747pt;}
._12{width:24.038827pt;}
._11{width:25.024000pt;}
._19{width:26.142720pt;}
._2f{width:27.202560pt;}
._30{width:28.722773pt;}
._25{width:30.102187pt;}
._1e{width:30.993067pt;}
._16{width:31.987627pt;}
._15{width:33.090560pt;}
._17{width:34.010453pt;}
._1a{width:35.226027pt;}
._34{width:36.479147pt;}
._48{width:37.683200pt;}
._35{width:39.096320pt;}
._24{width:40.509440pt;}
._2c{width:41.702827pt;}
._2d{width:43.014827pt;}
._54{width:43.908267pt;}
._14{width:45.102080pt;}
._27{width:46.091947pt;}
._26{width:47.505493pt;}
._a{width:49.282560pt;}
._b{width:50.685013pt;}
._1c{width:51.680000pt;}
._1b{width:52.628053pt;}
._39{width:53.875200pt;}
._32{width:55.480747pt;}
._31{width:56.926293pt;}
._3a{width:58.408960pt;}
._2a{width:59.645440pt;}
._2b{width:60.721493pt;}
._33{width:63.413760pt;}
._4c{width:64.591360pt;}
._23{width:66.903467pt;}
._51{width:69.655040pt;}
._22{width:70.760533pt;}
._41{width:72.716800pt;}
._57{width:75.013120pt;}
._3d{width:76.485120pt;}
._58{width:78.240853pt;}
._55{width:79.179520pt;}
._4e{width:80.076800pt;}
._37{width:84.610560pt;}
._50{width:85.670400pt;}
._3b{width:87.142400pt;}
._28{width:89.348267pt;}
._29{width:92.206080pt;}
._42{width:99.860480pt;}
._46{width:101.038080pt;}
._56{width:103.923200pt;}
._4b{width:105.410987pt;}
._38{width:122.352640pt;}
._36{width:126.179840pt;}
._4f{width:127.769600pt;}
._3e{width:135.247360pt;}
._49{width:140.899840pt;}
._44{width:145.786880pt;}
._43{width:158.269440pt;}
._3c{width:159.270400pt;}
._47{width:164.746240pt;}
._53{width:168.632320pt;}
._40{width:169.633280pt;}
._45{width:176.463360pt;}
._52{width:185.637973pt;}
._4a{width:198.072320pt;}
._4d{width:305.646080pt;}
._3f{width:335.262720pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.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;}
.y8{bottom:9.600000pt;}
.yb2{bottom:11.994667pt;}
.y68{bottom:12.000000pt;}
.y6e{bottom:12.040000pt;}
.y9a{bottom:12.160000pt;}
.y37{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y65{bottom:27.200000pt;}
.y36{bottom:32.960000pt;}
.y67{bottom:37.280000pt;}
.y91{bottom:37.306667pt;}
.y6d{bottom:37.320000pt;}
.yb1{bottom:37.434667pt;}
.y99{bottom:37.440000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y35{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y9e{bottom:62.554667pt;}
.y6a{bottom:62.560000pt;}
.y6c{bottom:62.600000pt;}
.yb0{bottom:62.714667pt;}
.y95{bottom:62.720000pt;}
.y30{bottom:86.752000pt;}
.y9d{bottom:87.834667pt;}
.ya2{bottom:87.840000pt;}
.ya9{bottom:87.866667pt;}
.yaf{bottom:87.994667pt;}
.y94{bottom:88.000000pt;}
.y98{bottom:88.040000pt;}
.y5d{bottom:88.672000pt;}
.y9b{bottom:89.792000pt;}
.yfb{bottom:91.392000pt;}
.yb3{bottom:97.312000pt;}
.ycd{bottom:98.112000pt;}
.y2f{bottom:112.032000pt;}
.y9c{bottom:113.114667pt;}
.ya6{bottom:113.120000pt;}
.yae{bottom:113.274667pt;}
.y93{bottom:113.280000pt;}
.ya8{bottom:113.306667pt;}
.y97{bottom:113.320000pt;}
.y5c{bottom:113.952000pt;}
.yfa{bottom:116.672000pt;}
.y84{bottom:120.192000pt;}
.yac{bottom:123.232000pt;}
.ycc{bottom:123.392000pt;}
.y2e{bottom:137.306667pt;}
.ya5{bottom:138.400000pt;}
.yad{bottom:138.554667pt;}
.ya0{bottom:138.586667pt;}
.yab{bottom:138.600000pt;}
.y5b{bottom:138.906667pt;}
.yfc{bottom:139.226667pt;}
.yf9{bottom:141.946667pt;}
.y83{bottom:145.466667pt;}
.ycb{bottom:148.666667pt;}
.ydd{bottom:151.386667pt;}
.y2d{bottom:162.586667pt;}
.ya4{bottom:163.680000pt;}
.y5a{bottom:164.666667pt;}
.yf8{bottom:167.226667pt;}
.y82{bottom:170.426667pt;}
.y88{bottom:170.746667pt;}
.yca{bottom:173.946667pt;}
.ydc{bottom:176.986667pt;}
.y2c{bottom:187.866667pt;}
.yfe{bottom:189.626667pt;}
.y59{bottom:189.946667pt;}
.yf7{bottom:192.506667pt;}
.y81{bottom:196.026667pt;}
.ydb{bottom:198.746667pt;}
.yc9{bottom:199.226667pt;}
.y32{bottom:212.826667pt;}
.y2b{bottom:213.146667pt;}
.y58{bottom:215.226667pt;}
.y96{bottom:216.826667pt;}
.yf6{bottom:217.786667pt;}
.y80{bottom:221.306667pt;}
.yc8{bottom:224.186667pt;}
.y2a{bottom:238.426667pt;}
.y57{bottom:240.506667pt;}
.yf5{bottom:243.066667pt;}
.y7f{bottom:246.586667pt;}
.yc7{bottom:249.786667pt;}
.y29{bottom:263.866667pt;}
.y56{bottom:265.466667pt;}
.y63{bottom:265.786667pt;}
.yf4{bottom:268.506667pt;}
.y87{bottom:271.546667pt;}
.y7e{bottom:271.866667pt;}
.yc6{bottom:275.226667pt;}
.yaa{bottom:275.706667pt;}
.y28{bottom:289.186667pt;}
.y55{bottom:290.786667pt;}
.y62{bottom:291.106667pt;}
.yf3{bottom:293.826667pt;}
.y7d{bottom:296.866667pt;}
.yc5{bottom:300.546667pt;}
.y27{bottom:314.466667pt;}
.y54{bottom:316.386667pt;}
.yf2{bottom:319.106667pt;}
.y7c{bottom:322.626667pt;}
.yc4{bottom:325.826667pt;}
.y26{bottom:339.746667pt;}
.y53{bottom:341.666667pt;}
.yda{bottom:342.786667pt;}
.y92{bottom:344.066667pt;}
.yf1{bottom:344.386667pt;}
.y7b{bottom:347.906667pt;}
.yc3{bottom:350.786667pt;}
.y25{bottom:365.026667pt;}
.y52{bottom:366.946667pt;}
.yd9{bottom:368.066667pt;}
.yf0{bottom:369.666667pt;}
.y7a{bottom:373.186667pt;}
.yc2{bottom:376.386667pt;}
.y24{bottom:390.306667pt;}
.y61{bottom:392.066667pt;}
.y51{bottom:392.386667pt;}
.yd8{bottom:393.346667pt;}
.yef{bottom:394.946667pt;}
.yc1{bottom:398.146667pt;}
.y79{bottom:398.466667pt;}
.y23{bottom:415.586667pt;}
.y50{bottom:417.666667pt;}
.yc0{bottom:417.986667pt;}
.yd7{bottom:418.626667pt;}
.yee{bottom:420.226667pt;}
.y78{bottom:423.426667pt;}
.ya7{bottom:428.226667pt;}
.y22{bottom:440.866667pt;}
.yfd{bottom:442.626667pt;}
.y4f{bottom:442.946667pt;}
.ybf{bottom:443.266667pt;}
.yd6{bottom:443.906667pt;}
.yed{bottom:445.506667pt;}
.y77{bottom:449.026667pt;}
.ybe{bottom:465.026667pt;}
.y21{bottom:466.146667pt;}
.y4e{bottom:468.226667pt;}
.yd5{bottom:469.186667pt;}
.yec{bottom:470.786667pt;}
.y90{bottom:471.266667pt;}
.y76{bottom:474.306667pt;}
.y20{bottom:491.586667pt;}
.y4d{bottom:493.506667pt;}
.yd4{bottom:494.466667pt;}
.yeb{bottom:496.226667pt;}
.y75{bottom:499.586667pt;}
.y1f{bottom:516.893333pt;}
.y4c{bottom:518.813333pt;}
.yd3{bottom:519.453333pt;}
.yea{bottom:521.533333pt;}
.y74{bottom:524.893333pt;}
.y8f{bottom:534.493333pt;}
.y1e{bottom:542.173333pt;}
.y60{bottom:543.773333pt;}
.y4b{bottom:544.093333pt;}
.yd2{bottom:545.053333pt;}
.ye9{bottom:546.813333pt;}
.y73{bottom:550.333333pt;}
.ya3{bottom:555.453333pt;}
.y8d{bottom:559.933333pt;}
.y1d{bottom:567.453333pt;}
.y4a{bottom:569.373333pt;}
.yd1{bottom:570.493333pt;}
.ye8{bottom:572.093333pt;}
.y86{bottom:575.293333pt;}
.y72{bottom:575.613333pt;}
.y8c{bottom:585.213333pt;}
.yd0{bottom:592.253333pt;}
.y1c{bottom:592.733333pt;}
.ybd{bottom:593.373333pt;}
.y49{bottom:594.653333pt;}
.ye7{bottom:597.373333pt;}
.y71{bottom:600.893333pt;}
.y8b{bottom:610.173333pt;}
.y1b{bottom:618.013333pt;}
.ybc{bottom:618.653333pt;}
.y8e{bottom:619.773333pt;}
.y48{bottom:620.093333pt;}
.ye6{bottom:622.653333pt;}
.y70{bottom:625.853333pt;}
.y85{bottom:626.173333pt;}
.y8a{bottom:635.773333pt;}
.y6f{bottom:640.093333pt;}
.y1a{bottom:642.973333pt;}
.y31{bottom:643.293333pt;}
.ybb{bottom:643.933333pt;}
.y47{bottom:645.373333pt;}
.ye5{bottom:647.933333pt;}
.y89{bottom:657.533333pt;}
.yba{bottom:669.213333pt;}
.y46{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.ye4{bottom:673.213333pt;}
.yb9{bottom:694.653333pt;}
.y45{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.ye3{bottom:698.493333pt;}
.y6b{bottom:716.733333pt;}
.yb8{bottom:719.933333pt;}
.y44{bottom:721.213333pt;}
.y17{bottom:722.493333pt;}
.ye2{bottom:723.933333pt;}
.ya1{bottom:733.253333pt;}
.yb7{bottom:745.253333pt;}
.y5f{bottom:746.213333pt;}
.y43{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.ye1{bottom:748.933333pt;}
.yb6{bottom:770.533333pt;}
.y5e{bottom:771.493333pt;}
.y42{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.ye0{bottom:774.533333pt;}
.ycf{bottom:783.013333pt;}
.y69{bottom:793.253333pt;}
.yb5{bottom:795.493333pt;}
.y41{bottom:797.093333pt;}
.y14{bottom:798.533333pt;}
.ydf{bottom:799.813333pt;}
.yce{bottom:804.933333pt;}
.yb4{bottom:821.093333pt;}
.yde{bottom:821.573333pt;}
.y40{bottom:822.373333pt;}
.y13{bottom:823.813333pt;}
.y9f{bottom:835.013333pt;}
.y3f{bottom:847.813333pt;}
.y12{bottom:849.093333pt;}
.y66{bottom:869.893333pt;}
.y3e{bottom:873.093333pt;}
.y11{bottom:879.653333pt;}
.y3d{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.y64{bottom:921.093333pt;}
.y3c{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y3b{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y3a{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y34{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y33{bottom:1005.920000pt;}
.h20{height:25.280000pt;}
.h6{height:29.760000pt;}
.hb{height:38.220000pt;}
.h14{height:40.512000pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h12{height:49.105000pt;}
.h15{height:50.560000pt;}
.h18{height:50.592000pt;}
.h2{height:52.108438pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h21{height:60.519362pt;}
.h13{height:61.295000pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h16{height:75.840000pt;}
.h17{height:75.872000pt;}
.h10{height:98.705643pt;}
.hf{height:98.705648pt;}
.h1d{height:101.120000pt;}
.h1b{height:126.400000pt;}
.h19{height:126.560000pt;}
.h1a{height:126.592000pt;}
.h4{height:148.666667pt;}
.h1f{height:151.840000pt;}
.h1c{height:151.866667pt;}
.h1e{height:176.986667pt;}
.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;}
.wb{width:65.440000pt;}
.wd{width:84.320000pt;}
.wc{width:93.952000pt;}
.w8{width:100.512000pt;}
.w10{width:103.360000pt;}
.wa{width:103.392000pt;}
.wf{width:112.832000pt;}
.we{width:140.986667pt;}
.w3{width:321.186667pt;}
.w9{width:608.893333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x18{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xd{left:149.466667pt;}
.xf{left:152.346667pt;}
.x10{left:218.426667pt;}
.x11{left:313.026667pt;}
.xe{left:384.066655pt;}
.x12{left:398.146667pt;}
.x8{left:432.093321pt;}
.x17{left:456.093321pt;}
.x5{left:463.133333pt;}
.x13{left:539.773333pt;}
.x14{left:653.253333pt;}
.x15{left:752.293321pt;}
.x16{left:768.133321pt;}
.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; }
  