
    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_3c2f6814d27c30063b69bef3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_217fac754a195bfb1f1d222b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3ede1fb9b020c8fca5621c63.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_49c5b3a96102b01a7cf46bba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_9106f05c84da8a75daae800e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_cc1e7cc3c01c15a57b31fd1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_1cd2f7c5dad46fd135656a97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_6193fc93719873dbca485474.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_b1f12fdc8ee15571e6eb82d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3a{letter-spacing:-5.148000px;}
.ls36{letter-spacing:-4.266000px;}
.lsf{letter-spacing:-0.828000px;}
.ls22{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.720000px;}
.ls38{letter-spacing:-0.666000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.513600px;}
.ls1e{letter-spacing:-0.460200px;}
.ls2a{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.206400px;}
.ls3b{letter-spacing:-0.106800px;}
.ls39{letter-spacing:-0.100200px;}
.ls14{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106560px;}
.ls19{letter-spacing:0.106800px;}
.ls26{letter-spacing:0.119520px;}
.ls23{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.153600px;}
.ls2d{letter-spacing:0.156000px;}
.ls8{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls20{letter-spacing:0.233280px;}
.ls1b{letter-spacing:0.235920px;}
.ls11{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.lse{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.305400px;}
.ls1d{letter-spacing:0.306600px;}
.ls25{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.666720px;}
.ls7{letter-spacing:0.876000px;}
.ls2{letter-spacing:0.900000px;}
.ls29{letter-spacing:0.978000px;}
.ls35{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.548000px;}
.lsb{letter-spacing:1.620000px;}
.ls15{letter-spacing:2.340000px;}
.ls27{letter-spacing:2.460000px;}
.ls28{letter-spacing:3.060000px;}
.ls3{letter-spacing:4.500000px;}
.ls2c{letter-spacing:6.660000px;}
.ls34{letter-spacing:8.100000px;}
.ls33{letter-spacing:8.820000px;}
.ls32{letter-spacing:9.540000px;}
.ls5{letter-spacing:10.980000px;}
.ls4{letter-spacing:11.100000px;}
.ls1f{letter-spacing:13.140000px;}
.ls2b{letter-spacing:16.506720px;}
.ls2f{letter-spacing:18.180000px;}
.ls30{letter-spacing:19.080000px;}
.ls1c{letter-spacing:44.820000px;}
.ls18{letter-spacing:44.964000px;}
.ls16{letter-spacing:46.026720px;}
.ls24{letter-spacing:55.362720px;}
.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;}
}
.ws2{word-spacing:-95.760000px;}
.wsd{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.940000px;}
.ws4{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.488000px;}
.ws1f{word-spacing:-16.020000px;}
.ws14{word-spacing:-15.918000px;}
.ws5{word-spacing:-15.732000px;}
.ws9{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws1b{word-spacing:-14.839800px;}
.ws1d{word-spacing:-14.833200px;}
.ws13{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.479800px;}
.ws10{word-spacing:-14.328000px;}
.ws1a{word-spacing:-14.274000px;}
.ws12{word-spacing:-14.166000px;}
.ws1{word-spacing:-10.440000px;}
.ws1c{word-spacing:-9.792000px;}
.ws6{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._25{margin-left:-8.066640px;}
._20{margin-left:-6.259680px;}
._13{margin-left:-4.965600px;}
._1b{margin-left:-3.588480px;}
._b{margin-left:-2.353680px;}
._0{margin-left:-1.080000px;}
._c{width:1.184400px;}
._1{width:2.220000px;}
._18{width:3.387600px;}
._16{width:4.765680px;}
._15{width:6.213600px;}
._14{width:7.311120px;}
._17{width:9.111120px;}
._6{width:10.800000px;}
._19{width:11.853360px;}
._1a{width:13.643760px;}
._1f{width:16.086720px;}
._1e{width:17.683680px;}
._11{width:18.948000px;}
._1c{width:20.019600px;}
._1d{width:29.880000px;}
._24{width:36.683280px;}
._23{width:37.691520px;}
._22{width:41.064720px;}
._21{width:42.088320px;}
._7{width:76.284960px;}
._12{width:99.660000px;}
._8{width:154.080000px;}
._e{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._f{width:637.320000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yb{bottom:60.300000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y3a{bottom:103.320000px;}
.y10e{bottom:105.120000px;}
.ya9{bottom:106.920000px;}
.y67{bottom:109.260000px;}
.y12d{bottom:112.320000px;}
.yd4{bottom:112.860000px;}
.y39{bottom:123.120000px;}
.y10d{bottom:124.920000px;}
.y2{bottom:125.670000px;}
.ya8{bottom:126.720000px;}
.y66{bottom:129.060000px;}
.y7e{bottom:130.860000px;}
.y12c{bottom:132.120000px;}
.yd3{bottom:132.660000px;}
.ye4{bottom:141.660000px;}
.y38{bottom:142.920000px;}
.ya7{bottom:144.000000px;}
.y10c{bottom:144.720000px;}
.y65{bottom:148.860000px;}
.y7d{bottom:150.660000px;}
.y12b{bottom:151.950000px;}
.yd2{bottom:152.670000px;}
.ye3{bottom:161.670000px;}
.y37{bottom:162.750000px;}
.y10b{bottom:164.550000px;}
.y64{bottom:168.690000px;}
.y7c{bottom:170.670000px;}
.ya6{bottom:172.830000px;}
.y12a{bottom:174.090000px;}
.yd1{bottom:181.470000px;}
.y10a{bottom:184.530000px;}
.y63{bottom:188.670000px;}
.y7b{bottom:190.470000px;}
.y36{bottom:191.730000px;}
.ya5{bottom:192.630000px;}
.y129{bottom:193.890000px;}
.yc1{bottom:199.470000px;}
.yd0{bottom:201.270000px;}
.y109{bottom:204.330000px;}
.y62{bottom:208.470000px;}
.y7a{bottom:210.270000px;}
.y35{bottom:211.530000px;}
.ya4{bottom:212.610000px;}
.y128{bottom:213.690000px;}
.yc0{bottom:219.270000px;}
.ycf{bottom:221.070000px;}
.y108{bottom:224.130000px;}
.y61{bottom:228.270000px;}
.y34{bottom:231.330000px;}
.ya3{bottom:232.410000px;}
.y127{bottom:233.670000px;}
.y79{bottom:239.070000px;}
.ye2{bottom:240.870000px;}
.y107{bottom:243.930000px;}
.y60{bottom:248.070000px;}
.yce{bottom:249.870000px;}
.y33{bottom:251.130000px;}
.ya2{bottom:252.210000px;}
.y126{bottom:253.470000px;}
.y78{bottom:258.870000px;}
.ye1{bottom:260.850000px;}
.y106{bottom:263.730000px;}
.y5f{bottom:267.870000px;}
.ycd{bottom:269.850000px;}
.ya1{bottom:272.010000px;}
.y125{bottom:273.270000px;}
.y32{bottom:279.930000px;}
.ye0{bottom:280.650000px;}
.y105{bottom:281.010000px;}
.y5e{bottom:287.850000px;}
.ycc{bottom:289.650000px;}
.ya0{bottom:291.810000px;}
.y124{bottom:293.070000px;}
.y104{bottom:298.290000px;}
.y31{bottom:299.910000px;}
.y5d{bottom:307.650000px;}
.ycb{bottom:309.450000px;}
.y9f{bottom:311.790000px;}
.y123{bottom:312.870000px;}
.y103{bottom:318.090000px;}
.y30{bottom:319.710000px;}
.y5c{bottom:327.450000px;}
.yca{bottom:329.250000px;}
.y9e{bottom:331.590000px;}
.y122{bottom:332.850000px;}
.ybf{bottom:336.450000px;}
.y102{bottom:337.890000px;}
.y2f{bottom:339.510000px;}
.y5b{bottom:347.250000px;}
.yc9{bottom:349.050000px;}
.y9d{bottom:351.390000px;}
.y121{bottom:352.650000px;}
.ybe{bottom:356.250000px;}
.y101{bottom:357.870000px;}
.y5a{bottom:367.050000px;}
.y2e{bottom:368.310000px;}
.yc8{bottom:369.030000px;}
.y9c{bottom:371.190000px;}
.y120{bottom:372.450000px;}
.y100{bottom:375.150000px;}
.ybd{bottom:376.050000px;}
.y59{bottom:387.030000px;}
.y2d{bottom:388.110000px;}
.yc7{bottom:388.830000px;}
.y9b{bottom:390.990000px;}
.y11f{bottom:392.250000px;}
.yff{bottom:394.950000px;}
.ybc{bottom:405.075000px;}
.y58{bottom:406.875000px;}
.y2c{bottom:408.135000px;}
.y9a{bottom:411.015000px;}
.y11e{bottom:412.095000px;}
.yfe{bottom:414.795000px;}
.yc6{bottom:417.675000px;}
.ybb{bottom:424.875000px;}
.y57{bottom:426.675000px;}
.y2b{bottom:427.935000px;}
.y99{bottom:430.815000px;}
.y11d{bottom:432.075000px;}
.yfd{bottom:434.595000px;}
.yc5{bottom:437.475000px;}
.yba{bottom:444.675000px;}
.y56{bottom:446.475000px;}
.y98{bottom:450.615000px;}
.y11c{bottom:451.875000px;}
.yfc{bottom:454.395000px;}
.y2a{bottom:456.735000px;}
.yc4{bottom:457.275000px;}
.y77{bottom:466.275000px;}
.y97{bottom:470.415000px;}
.y11b{bottom:471.675000px;}
.yb9{bottom:473.475000px;}
.yfb{bottom:474.195000px;}
.y55{bottom:475.275000px;}
.y29{bottom:476.535000px;}
.ydf{bottom:477.255000px;}
.y76{bottom:486.255000px;}
.y96{bottom:490.215000px;}
.y11a{bottom:491.475000px;}
.yb8{bottom:493.275000px;}
.yfa{bottom:494.175000px;}
.y54{bottom:495.255000px;}
.y28{bottom:496.335000px;}
.yde{bottom:497.055000px;}
.y75{bottom:506.055000px;}
.y95{bottom:510.195000px;}
.y119{bottom:511.275000px;}
.yb7{bottom:513.255000px;}
.yf9{bottom:513.975000px;}
.y27{bottom:516.315000px;}
.y53{bottom:524.055000px;}
.y74{bottom:525.855000px;}
.y94{bottom:527.475000px;}
.y118{bottom:531.255000px;}
.yb6{bottom:533.055000px;}
.yf8{bottom:533.775000px;}
.y26{bottom:536.115000px;}
.y52{bottom:543.855000px;}
.y73{bottom:545.655000px;}
.y117{bottom:551.055000px;}
.yb5{bottom:552.855000px;}
.yf7{bottom:553.575000px;}
.yc3{bottom:554.655000px;}
.y25{bottom:555.915000px;}
.y93{bottom:556.275000px;}
.y51{bottom:563.655000px;}
.ydd{bottom:565.455000px;}
.y116{bottom:570.855000px;}
.yf6{bottom:573.375000px;}
.y72{bottom:574.455000px;}
.y24{bottom:575.715000px;}
.y92{bottom:576.075000px;}
.yb4{bottom:581.655000px;}
.y50{bottom:583.455000px;}
.ydc{bottom:585.435000px;}
.y115{bottom:590.655000px;}
.yf5{bottom:593.355000px;}
.y71{bottom:594.435000px;}
.y23{bottom:595.515000px;}
.y91{bottom:595.875000px;}
.yb3{bottom:601.455000px;}
.ydb{bottom:605.235000px;}
.y114{bottom:610.455000px;}
.y4f{bottom:612.435000px;}
.yf4{bottom:613.155000px;}
.y22{bottom:615.495000px;}
.y90{bottom:615.675000px;}
.yb2{bottom:621.435000px;}
.y70{bottom:623.235000px;}
.y113{bottom:630.435000px;}
.y4e{bottom:632.235000px;}
.yf3{bottom:632.955000px;}
.yda{bottom:634.035000px;}
.y21{bottom:635.295000px;}
.y8f{bottom:635.475000px;}
.yb1{bottom:641.235000px;}
.y6f{bottom:643.035000px;}
.y112{bottom:650.265000px;}
.y4d{bottom:652.065000px;}
.yf2{bottom:652.785000px;}
.yd9{bottom:653.865000px;}
.y20{bottom:655.125000px;}
.y8e{bottom:655.485000px;}
.yb0{bottom:661.065000px;}
.yc2{bottom:662.865000px;}
.y111{bottom:670.065000px;}
.y4c{bottom:671.865000px;}
.yf1{bottom:672.585000px;}
.yd8{bottom:673.665000px;}
.y1f{bottom:674.925000px;}
.y8d{bottom:675.285000px;}
.yaf{bottom:680.865000px;}
.y110{bottom:689.865000px;}
.y4b{bottom:691.665000px;}
.yf0{bottom:692.565000px;}
.y1e{bottom:694.725000px;}
.y8c{bottom:695.085000px;}
.yae{bottom:700.665000px;}
.yd7{bottom:702.645000px;}
.y10f{bottom:709.665000px;}
.y4a{bottom:711.645000px;}
.y8b{bottom:712.365000px;}
.y1d{bottom:714.705000px;}
.yad{bottom:720.645000px;}
.yd6{bottom:722.445000px;}
.y8a{bottom:729.645000px;}
.y49{bottom:731.445000px;}
.yef{bottom:732.165000px;}
.y1c{bottom:734.505000px;}
.yac{bottom:740.445000px;}
.yd5{bottom:742.245000px;}
.y89{bottom:749.445000px;}
.y48{bottom:751.245000px;}
.yee{bottom:751.965000px;}
.y1b{bottom:754.305000px;}
.yab{bottom:760.245000px;}
.y88{bottom:769.245000px;}
.y47{bottom:771.045000px;}
.yed{bottom:771.765000px;}
.y1a{bottom:774.105000px;}
.yaa{bottom:780.045000px;}
.y87{bottom:789.045000px;}
.y46{bottom:790.845000px;}
.yec{bottom:791.745000px;}
.y19{bottom:793.905000px;}
.y6e{bottom:799.845000px;}
.y86{bottom:808.845000px;}
.y45{bottom:810.825000px;}
.yeb{bottom:811.545000px;}
.y18{bottom:813.885000px;}
.y6d{bottom:819.825000px;}
.y85{bottom:828.825000px;}
.y44{bottom:830.625000px;}
.yea{bottom:831.345000px;}
.y17{bottom:833.685000px;}
.y6c{bottom:839.625000px;}
.y84{bottom:848.625000px;}
.y43{bottom:850.425000px;}
.ye9{bottom:851.145000px;}
.y16{bottom:853.485000px;}
.y6b{bottom:859.425000px;}
.y83{bottom:868.425000px;}
.y42{bottom:870.225000px;}
.ye8{bottom:870.945000px;}
.y15{bottom:873.285000px;}
.y6a{bottom:879.225000px;}
.y82{bottom:888.225000px;}
.ye7{bottom:890.925000px;}
.y14{bottom:898.350000px;}
.y41{bottom:899.070000px;}
.y81{bottom:908.070000px;}
.ye6{bottom:910.770000px;}
.y13{bottom:918.330000px;}
.y40{bottom:919.050000px;}
.y80{bottom:928.050000px;}
.ye5{bottom:930.570000px;}
.y12{bottom:933.450000px;}
.y3f{bottom:938.850000px;}
.y7f{bottom:947.850000px;}
.y11{bottom:954.690000px;}
.y69{bottom:958.650000px;}
.y3e{bottom:967.650000px;}
.y10{bottom:978.090000px;}
.y68{bottom:978.450000px;}
.y3d{bottom:987.450000px;}
.y3c{bottom:1007.250000px;}
.yf{bottom:1009.950000px;}
.y3b{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.ha{height:21.240000px;}
.hf{height:27.147656px;}
.h7{height:33.480000px;}
.he{height:41.726953px;}
.h11{height:42.164648px;}
.h13{height:43.506914px;}
.h10{height:45.549492px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h12{height:48.496641px;}
.h9{height:53.224453px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hd{height:67.565039px;}
.hc{height:77.711484px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w3{width:130.716000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x7{left:68.939987px;}
.xf{left:80.999987px;}
.xa{left:98.855987px;}
.xe{left:108.035987px;}
.x4{left:118.290000px;}
.x10{left:135.035987px;}
.xd{left:162.029987px;}
.xb{left:324.794987px;}
.xc{left:398.774987px;}
.x8{left:416.414987px;}
.x9{left:446.504987px;}
.x3{left:705.930000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3a{letter-spacing:-4.576000pt;}
.ls36{letter-spacing:-3.792000pt;}
.lsf{letter-spacing:-0.736000pt;}
.ls22{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls38{letter-spacing:-0.592000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.456533pt;}
.ls1e{letter-spacing:-0.409067pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls3b{letter-spacing:-0.094933pt;}
.ls39{letter-spacing:-0.089067pt;}
.ls14{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094720pt;}
.ls19{letter-spacing:0.094933pt;}
.ls26{letter-spacing:0.106240pt;}
.ls23{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.136533pt;}
.ls2d{letter-spacing:0.138667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls20{letter-spacing:0.207360pt;}
.ls1b{letter-spacing:0.209707pt;}
.ls11{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.271467pt;}
.ls1d{letter-spacing:0.272533pt;}
.ls25{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.592640pt;}
.ls7{letter-spacing:0.778667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.869333pt;}
.ls35{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:1.376000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls15{letter-spacing:2.080000pt;}
.ls27{letter-spacing:2.186667pt;}
.ls28{letter-spacing:2.720000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls2c{letter-spacing:5.920000pt;}
.ls34{letter-spacing:7.200000pt;}
.ls33{letter-spacing:7.840000pt;}
.ls32{letter-spacing:8.480000pt;}
.ls5{letter-spacing:9.760000pt;}
.ls4{letter-spacing:9.866667pt;}
.ls1f{letter-spacing:11.680000pt;}
.ls2b{letter-spacing:14.672640pt;}
.ls2f{letter-spacing:16.160000pt;}
.ls30{letter-spacing:16.960000pt;}
.ls1c{letter-spacing:39.840000pt;}
.ls18{letter-spacing:39.968000pt;}
.ls16{letter-spacing:40.912640pt;}
.ls24{letter-spacing:49.211307pt;}
.ws2{word-spacing:-85.120000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws4{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.656000pt;}
.ws1f{word-spacing:-14.240000pt;}
.ws14{word-spacing:-14.149333pt;}
.ws5{word-spacing:-13.984000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws1b{word-spacing:-13.190933pt;}
.ws1d{word-spacing:-13.185067pt;}
.ws13{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.870933pt;}
.ws10{word-spacing:-12.736000pt;}
.ws1a{word-spacing:-12.688000pt;}
.ws12{word-spacing:-12.592000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws1c{word-spacing:-8.704000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._25{margin-left:-7.170347pt;}
._20{margin-left:-5.564160pt;}
._13{margin-left:-4.413867pt;}
._1b{margin-left:-3.189760pt;}
._b{margin-left:-2.092160pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.052800pt;}
._1{width:1.973333pt;}
._18{width:3.011200pt;}
._16{width:4.236160pt;}
._15{width:5.523200pt;}
._14{width:6.498773pt;}
._17{width:8.098773pt;}
._6{width:9.600000pt;}
._19{width:10.536320pt;}
._1a{width:12.127787pt;}
._1f{width:14.299307pt;}
._1e{width:15.718827pt;}
._11{width:16.842667pt;}
._1c{width:17.795200pt;}
._1d{width:26.560000pt;}
._24{width:32.607360pt;}
._23{width:33.503573pt;}
._22{width:36.501973pt;}
._21{width:37.411840pt;}
._7{width:67.808853pt;}
._12{width:88.586667pt;}
._8{width:136.960000pt;}
._e{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._f{width:566.506667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:53.600000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y3a{bottom:91.840000pt;}
.y10e{bottom:93.440000pt;}
.ya9{bottom:95.040000pt;}
.y67{bottom:97.120000pt;}
.y12d{bottom:99.840000pt;}
.yd4{bottom:100.320000pt;}
.y39{bottom:109.440000pt;}
.y10d{bottom:111.040000pt;}
.y2{bottom:111.706667pt;}
.ya8{bottom:112.640000pt;}
.y66{bottom:114.720000pt;}
.y7e{bottom:116.320000pt;}
.y12c{bottom:117.440000pt;}
.yd3{bottom:117.920000pt;}
.ye4{bottom:125.920000pt;}
.y38{bottom:127.040000pt;}
.ya7{bottom:128.000000pt;}
.y10c{bottom:128.640000pt;}
.y65{bottom:132.320000pt;}
.y7d{bottom:133.920000pt;}
.y12b{bottom:135.066667pt;}
.yd2{bottom:135.706667pt;}
.ye3{bottom:143.706667pt;}
.y37{bottom:144.666667pt;}
.y10b{bottom:146.266667pt;}
.y64{bottom:149.946667pt;}
.y7c{bottom:151.706667pt;}
.ya6{bottom:153.626667pt;}
.y12a{bottom:154.746667pt;}
.yd1{bottom:161.306667pt;}
.y10a{bottom:164.026667pt;}
.y63{bottom:167.706667pt;}
.y7b{bottom:169.306667pt;}
.y36{bottom:170.426667pt;}
.ya5{bottom:171.226667pt;}
.y129{bottom:172.346667pt;}
.yc1{bottom:177.306667pt;}
.yd0{bottom:178.906667pt;}
.y109{bottom:181.626667pt;}
.y62{bottom:185.306667pt;}
.y7a{bottom:186.906667pt;}
.y35{bottom:188.026667pt;}
.ya4{bottom:188.986667pt;}
.y128{bottom:189.946667pt;}
.yc0{bottom:194.906667pt;}
.ycf{bottom:196.506667pt;}
.y108{bottom:199.226667pt;}
.y61{bottom:202.906667pt;}
.y34{bottom:205.626667pt;}
.ya3{bottom:206.586667pt;}
.y127{bottom:207.706667pt;}
.y79{bottom:212.506667pt;}
.ye2{bottom:214.106667pt;}
.y107{bottom:216.826667pt;}
.y60{bottom:220.506667pt;}
.yce{bottom:222.106667pt;}
.y33{bottom:223.226667pt;}
.ya2{bottom:224.186667pt;}
.y126{bottom:225.306667pt;}
.y78{bottom:230.106667pt;}
.ye1{bottom:231.866667pt;}
.y106{bottom:234.426667pt;}
.y5f{bottom:238.106667pt;}
.ycd{bottom:239.866667pt;}
.ya1{bottom:241.786667pt;}
.y125{bottom:242.906667pt;}
.y32{bottom:248.826667pt;}
.ye0{bottom:249.466667pt;}
.y105{bottom:249.786667pt;}
.y5e{bottom:255.866667pt;}
.ycc{bottom:257.466667pt;}
.ya0{bottom:259.386667pt;}
.y124{bottom:260.506667pt;}
.y104{bottom:265.146667pt;}
.y31{bottom:266.586667pt;}
.y5d{bottom:273.466667pt;}
.ycb{bottom:275.066667pt;}
.y9f{bottom:277.146667pt;}
.y123{bottom:278.106667pt;}
.y103{bottom:282.746667pt;}
.y30{bottom:284.186667pt;}
.y5c{bottom:291.066667pt;}
.yca{bottom:292.666667pt;}
.y9e{bottom:294.746667pt;}
.y122{bottom:295.866667pt;}
.ybf{bottom:299.066667pt;}
.y102{bottom:300.346667pt;}
.y2f{bottom:301.786667pt;}
.y5b{bottom:308.666667pt;}
.yc9{bottom:310.266667pt;}
.y9d{bottom:312.346667pt;}
.y121{bottom:313.466667pt;}
.ybe{bottom:316.666667pt;}
.y101{bottom:318.106667pt;}
.y5a{bottom:326.266667pt;}
.y2e{bottom:327.386667pt;}
.yc8{bottom:328.026667pt;}
.y9c{bottom:329.946667pt;}
.y120{bottom:331.066667pt;}
.y100{bottom:333.466667pt;}
.ybd{bottom:334.266667pt;}
.y59{bottom:344.026667pt;}
.y2d{bottom:344.986667pt;}
.yc7{bottom:345.626667pt;}
.y9b{bottom:347.546667pt;}
.y11f{bottom:348.666667pt;}
.yff{bottom:351.066667pt;}
.ybc{bottom:360.066667pt;}
.y58{bottom:361.666667pt;}
.y2c{bottom:362.786667pt;}
.y9a{bottom:365.346667pt;}
.y11e{bottom:366.306667pt;}
.yfe{bottom:368.706667pt;}
.yc6{bottom:371.266667pt;}
.ybb{bottom:377.666667pt;}
.y57{bottom:379.266667pt;}
.y2b{bottom:380.386667pt;}
.y99{bottom:382.946667pt;}
.y11d{bottom:384.066667pt;}
.yfd{bottom:386.306667pt;}
.yc5{bottom:388.866667pt;}
.yba{bottom:395.266667pt;}
.y56{bottom:396.866667pt;}
.y98{bottom:400.546667pt;}
.y11c{bottom:401.666667pt;}
.yfc{bottom:403.906667pt;}
.y2a{bottom:405.986667pt;}
.yc4{bottom:406.466667pt;}
.y77{bottom:414.466667pt;}
.y97{bottom:418.146667pt;}
.y11b{bottom:419.266667pt;}
.yb9{bottom:420.866667pt;}
.yfb{bottom:421.506667pt;}
.y55{bottom:422.466667pt;}
.y29{bottom:423.586667pt;}
.ydf{bottom:424.226667pt;}
.y76{bottom:432.226667pt;}
.y96{bottom:435.746667pt;}
.y11a{bottom:436.866667pt;}
.yb8{bottom:438.466667pt;}
.yfa{bottom:439.266667pt;}
.y54{bottom:440.226667pt;}
.y28{bottom:441.186667pt;}
.yde{bottom:441.826667pt;}
.y75{bottom:449.826667pt;}
.y95{bottom:453.506667pt;}
.y119{bottom:454.466667pt;}
.yb7{bottom:456.226667pt;}
.yf9{bottom:456.866667pt;}
.y27{bottom:458.946667pt;}
.y53{bottom:465.826667pt;}
.y74{bottom:467.426667pt;}
.y94{bottom:468.866667pt;}
.y118{bottom:472.226667pt;}
.yb6{bottom:473.826667pt;}
.yf8{bottom:474.466667pt;}
.y26{bottom:476.546667pt;}
.y52{bottom:483.426667pt;}
.y73{bottom:485.026667pt;}
.y117{bottom:489.826667pt;}
.yb5{bottom:491.426667pt;}
.yf7{bottom:492.066667pt;}
.yc3{bottom:493.026667pt;}
.y25{bottom:494.146667pt;}
.y93{bottom:494.466667pt;}
.y51{bottom:501.026667pt;}
.ydd{bottom:502.626667pt;}
.y116{bottom:507.426667pt;}
.yf6{bottom:509.666667pt;}
.y72{bottom:510.626667pt;}
.y24{bottom:511.746667pt;}
.y92{bottom:512.066667pt;}
.yb4{bottom:517.026667pt;}
.y50{bottom:518.626667pt;}
.ydc{bottom:520.386667pt;}
.y115{bottom:525.026667pt;}
.yf5{bottom:527.426667pt;}
.y71{bottom:528.386667pt;}
.y23{bottom:529.346667pt;}
.y91{bottom:529.666667pt;}
.yb3{bottom:534.626667pt;}
.ydb{bottom:537.986667pt;}
.y114{bottom:542.626667pt;}
.y4f{bottom:544.386667pt;}
.yf4{bottom:545.026667pt;}
.y22{bottom:547.106667pt;}
.y90{bottom:547.266667pt;}
.yb2{bottom:552.386667pt;}
.y70{bottom:553.986667pt;}
.y113{bottom:560.386667pt;}
.y4e{bottom:561.986667pt;}
.yf3{bottom:562.626667pt;}
.yda{bottom:563.586667pt;}
.y21{bottom:564.706667pt;}
.y8f{bottom:564.866667pt;}
.yb1{bottom:569.986667pt;}
.y6f{bottom:571.586667pt;}
.y112{bottom:578.013333pt;}
.y4d{bottom:579.613333pt;}
.yf2{bottom:580.253333pt;}
.yd9{bottom:581.213333pt;}
.y20{bottom:582.333333pt;}
.y8e{bottom:582.653333pt;}
.yb0{bottom:587.613333pt;}
.yc2{bottom:589.213333pt;}
.y111{bottom:595.613333pt;}
.y4c{bottom:597.213333pt;}
.yf1{bottom:597.853333pt;}
.yd8{bottom:598.813333pt;}
.y1f{bottom:599.933333pt;}
.y8d{bottom:600.253333pt;}
.yaf{bottom:605.213333pt;}
.y110{bottom:613.213333pt;}
.y4b{bottom:614.813333pt;}
.yf0{bottom:615.613333pt;}
.y1e{bottom:617.533333pt;}
.y8c{bottom:617.853333pt;}
.yae{bottom:622.813333pt;}
.yd7{bottom:624.573333pt;}
.y10f{bottom:630.813333pt;}
.y4a{bottom:632.573333pt;}
.y8b{bottom:633.213333pt;}
.y1d{bottom:635.293333pt;}
.yad{bottom:640.573333pt;}
.yd6{bottom:642.173333pt;}
.y8a{bottom:648.573333pt;}
.y49{bottom:650.173333pt;}
.yef{bottom:650.813333pt;}
.y1c{bottom:652.893333pt;}
.yac{bottom:658.173333pt;}
.yd5{bottom:659.773333pt;}
.y89{bottom:666.173333pt;}
.y48{bottom:667.773333pt;}
.yee{bottom:668.413333pt;}
.y1b{bottom:670.493333pt;}
.yab{bottom:675.773333pt;}
.y88{bottom:683.773333pt;}
.y47{bottom:685.373333pt;}
.yed{bottom:686.013333pt;}
.y1a{bottom:688.093333pt;}
.yaa{bottom:693.373333pt;}
.y87{bottom:701.373333pt;}
.y46{bottom:702.973333pt;}
.yec{bottom:703.773333pt;}
.y19{bottom:705.693333pt;}
.y6e{bottom:710.973333pt;}
.y86{bottom:718.973333pt;}
.y45{bottom:720.733333pt;}
.yeb{bottom:721.373333pt;}
.y18{bottom:723.453333pt;}
.y6d{bottom:728.733333pt;}
.y85{bottom:736.733333pt;}
.y44{bottom:738.333333pt;}
.yea{bottom:738.973333pt;}
.y17{bottom:741.053333pt;}
.y6c{bottom:746.333333pt;}
.y84{bottom:754.333333pt;}
.y43{bottom:755.933333pt;}
.ye9{bottom:756.573333pt;}
.y16{bottom:758.653333pt;}
.y6b{bottom:763.933333pt;}
.y83{bottom:771.933333pt;}
.y42{bottom:773.533333pt;}
.ye8{bottom:774.173333pt;}
.y15{bottom:776.253333pt;}
.y6a{bottom:781.533333pt;}
.y82{bottom:789.533333pt;}
.ye7{bottom:791.933333pt;}
.y14{bottom:798.533333pt;}
.y41{bottom:799.173333pt;}
.y81{bottom:807.173333pt;}
.ye6{bottom:809.573333pt;}
.y13{bottom:816.293333pt;}
.y40{bottom:816.933333pt;}
.y80{bottom:824.933333pt;}
.ye5{bottom:827.173333pt;}
.y12{bottom:829.733333pt;}
.y3f{bottom:834.533333pt;}
.y7f{bottom:842.533333pt;}
.y11{bottom:848.613333pt;}
.y69{bottom:852.133333pt;}
.y3e{bottom:860.133333pt;}
.y10{bottom:869.413333pt;}
.y68{bottom:869.733333pt;}
.y3d{bottom:877.733333pt;}
.y3c{bottom:895.333333pt;}
.yf{bottom:897.733333pt;}
.y3b{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.ha{height:18.880000pt;}
.hf{height:24.131250pt;}
.h7{height:29.760000pt;}
.he{height:37.090625pt;}
.h11{height:37.479688pt;}
.h13{height:38.672812pt;}
.h10{height:40.488438pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h12{height:43.108125pt;}
.h9{height:47.310625pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hd{height:60.057813pt;}
.hc{height:69.076875pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w3{width:116.192000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x7{left:61.279988pt;}
.xf{left:71.999988pt;}
.xa{left:87.871988pt;}
.xe{left:96.031988pt;}
.x4{left:105.146667pt;}
.x10{left:120.031988pt;}
.xd{left:144.026655pt;}
.xb{left:288.706655pt;}
.xc{left:354.466655pt;}
.x8{left:370.146655pt;}
.x9{left:396.893322pt;}
.x3{left:627.493333pt;}
.x6{left:737.280000pt;}
}




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