
    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_74afe1c2dabe062e61e7e776.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_897e5f51a013a636adce9aca.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ed7ab54930c8012e3f017eb9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7db5258e9c322e20f1afe92c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7375f5903d2184f0e6a6a1e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_5c9fab2b67a6056389a6aecb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a86490b2182c936e1d1cfd1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_c0732f7f902eb0c990542831.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_74948d4a44704176830c2f2c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_65e7eae0d7af035117e00850.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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;}
.m5{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,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);}
.m7{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.ls18{letter-spacing:-1.332000px;}
.ls2{letter-spacing:-1.176000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls19{letter-spacing:-0.666000px;}
.ls1b{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.357000px;}
.ls7{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.109200px;}
.ls2b{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.153600px;}
.ls1a{letter-spacing:0.163800px;}
.ls9{letter-spacing:0.180000px;}
.lse{letter-spacing:0.196800px;}
.lsd{letter-spacing:0.198000px;}
.ls23{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.466800px;}
.ls20{letter-spacing:0.513600px;}
.ls10{letter-spacing:0.562800px;}
.ls17{letter-spacing:0.582600px;}
.ls1f{letter-spacing:0.612000px;}
.ls12{letter-spacing:0.666000px;}
.ls2c{letter-spacing:0.774000px;}
.ls13{letter-spacing:0.828000px;}
.ls2a{letter-spacing:0.900000px;}
.ls2e{letter-spacing:0.924000px;}
.ls5{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.745280px;}
.ls8{letter-spacing:3.780000px;}
.ls14{letter-spacing:3.960000px;}
.ls26{letter-spacing:5.220000px;}
.ls24{letter-spacing:6.660000px;}
.ls27{letter-spacing:7.380000px;}
.ls22{letter-spacing:8.100000px;}
.ls15{letter-spacing:8.820000px;}
.ls21{letter-spacing:11.466720px;}
.ls2d{letter-spacing:16.080000px;}
.lsb{letter-spacing:18.900000px;}
.ls1d{letter-spacing:41.706720px;}
.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;}
}
.ws1c{word-spacing:-59.760000px;}
.ws2{word-spacing:-24.300000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws7{word-spacing:-16.020000px;}
.ws1d{word-spacing:-15.864000px;}
.ws10{word-spacing:-15.768000px;}
.ws1b{word-spacing:-15.714000px;}
.wse{word-spacing:-15.606000px;}
.ws15{word-spacing:-15.552000px;}
.ws17{word-spacing:-15.453600px;}
.ws1e{word-spacing:-15.406800px;}
.ws1{word-spacing:-15.384000px;}
.ws6{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.146400px;}
.ws16{word-spacing:-15.093600px;}
.wsf{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.833200px;}
.ws18{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.613240px;}
.wsb{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.274000px;}
.ws14{word-spacing:-13.860000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2539.120320px;}
._3{margin-left:-1450.271520px;}
._5{margin-left:-1444.384320px;}
._4{margin-left:-997.192800px;}
._6{margin-left:-577.600560px;}
._1f{margin-left:-16.077120px;}
._7{margin-left:-8.036160px;}
._8{margin-left:-4.364400px;}
._14{margin-left:-2.631840px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._d{width:2.474640px;}
._c{width:3.525840px;}
._11{width:4.721760px;}
._e{width:6.229440px;}
._b{width:7.290720px;}
._10{width:8.555760px;}
._f{width:10.103280px;}
._a{width:11.117520px;}
._9{width:12.870720px;}
._15{width:13.899600px;}
._17{width:16.266720px;}
._13{width:17.384160px;}
._12{width:19.073280px;}
._16{width:20.295120px;}
._1a{width:21.812400px;}
._1b{width:23.212560px;}
._18{width:24.789600px;}
._1c{width:27.472320px;}
._21{width:28.649520px;}
._20{width:29.759520px;}
._19{width:30.800880px;}
._1e{width:86.226240px;}
._1d{width:87.249600px;}
.fc5{color:rgb(248,194,59);}
.fc3{color:rgb(67,58,107);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(244,244,244);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y10f{bottom:10.980000px;}
.y10e{bottom:30.780000px;}
.y10b{bottom:34.776000px;}
.y10d{bottom:50.616000px;}
.y37{bottom:54.180000px;}
.y6{bottom:61.020000px;}
.y36{bottom:62.100000px;}
.y10c{bottom:70.410000px;}
.ya8{bottom:94.320000px;}
.y10a{bottom:95.220000px;}
.yd9{bottom:99.180000px;}
.y34{bottom:101.520000px;}
.yb3{bottom:102.420000px;}
.y6d{bottom:102.780000px;}
.ya7{bottom:114.120000px;}
.yd8{bottom:118.980000px;}
.y33{bottom:121.320000px;}
.y6c{bottom:122.220000px;}
.y8e{bottom:122.580000px;}
.ya6{bottom:133.956000px;}
.yd7{bottom:138.816000px;}
.y32{bottom:141.156000px;}
.yb2{bottom:142.056000px;}
.y8d{bottom:142.416000px;}
.y6b{bottom:151.410000px;}
.ya5{bottom:153.750000px;}
.yd6{bottom:158.610000px;}
.y31{bottom:160.950000px;}
.yb1{bottom:161.850000px;}
.y8c{bottom:162.210000px;}
.y6a{bottom:171.210000px;}
.ya4{bottom:173.730000px;}
.yd5{bottom:178.410000px;}
.y30{bottom:180.750000px;}
.yb0{bottom:181.830000px;}
.y8b{bottom:182.190000px;}
.y69{bottom:191.190000px;}
.ya3{bottom:193.530000px;}
.yd4{bottom:198.390000px;}
.y2f{bottom:200.730000px;}
.yaf{bottom:201.630000px;}
.y8a{bottom:201.990000px;}
.y109{bottom:209.550000px;}
.y68{bottom:210.990000px;}
.ya2{bottom:213.330000px;}
.yd3{bottom:218.190000px;}
.y2e{bottom:220.530000px;}
.yae{bottom:221.430000px;}
.y89{bottom:221.790000px;}
.y108{bottom:229.350000px;}
.y67{bottom:230.790000px;}
.ya1{bottom:233.130000px;}
.yd2{bottom:237.990000px;}
.y2d{bottom:240.330000px;}
.yad{bottom:241.230000px;}
.y88{bottom:241.590000px;}
.y107{bottom:249.150000px;}
.y66{bottom:250.590000px;}
.ya0{bottom:252.930000px;}
.yd1{bottom:257.790000px;}
.y2c{bottom:259.770000px;}
.yac{bottom:261.030000px;}
.y87{bottom:261.390000px;}
.y106{bottom:269.130000px;}
.y65{bottom:270.390000px;}
.y9f{bottom:272.910000px;}
.yd0{bottom:277.590000px;}
.y2b{bottom:279.930000px;}
.yab{bottom:281.010000px;}
.y86{bottom:281.370000px;}
.y105{bottom:288.930000px;}
.y64{bottom:290.370000px;}
.y9e{bottom:292.710000px;}
.ycf{bottom:297.570000px;}
.y2a{bottom:299.910000px;}
.yaa{bottom:300.810000px;}
.y85{bottom:301.170000px;}
.y104{bottom:308.730000px;}
.y63{bottom:310.170000px;}
.y9d{bottom:312.510000px;}
.yce{bottom:317.370000px;}
.y29{bottom:319.710000px;}
.y84{bottom:320.970000px;}
.y103{bottom:328.530000px;}
.y62{bottom:329.970000px;}
.y9c{bottom:332.310000px;}
.ycd{bottom:337.170000px;}
.y28{bottom:339.510000px;}
.y83{bottom:340.770000px;}
.y102{bottom:348.330000px;}
.y61{bottom:349.770000px;}
.y9b{bottom:352.110000px;}
.ycc{bottom:356.970000px;}
.y27{bottom:359.310000px;}
.y82{bottom:360.570000px;}
.y101{bottom:368.310000px;}
.y60{bottom:369.570000px;}
.y9a{bottom:372.090000px;}
.ycb{bottom:376.770000px;}
.y26{bottom:379.110000px;}
.yf0{bottom:380.235000px;}
.y81{bottom:380.595000px;}
.y100{bottom:388.155000px;}
.y5f{bottom:389.595000px;}
.y99{bottom:391.935000px;}
.yca{bottom:396.795000px;}
.y25{bottom:399.135000px;}
.y80{bottom:400.395000px;}
.yff{bottom:407.955000px;}
.y5e{bottom:409.395000px;}
.y98{bottom:411.735000px;}
.yc9{bottom:416.595000px;}
.y24{bottom:418.935000px;}
.y7f{bottom:420.195000px;}
.yfe{bottom:427.755000px;}
.y5d{bottom:429.195000px;}
.y97{bottom:431.535000px;}
.yc8{bottom:436.395000px;}
.y23{bottom:438.735000px;}
.ya9{bottom:439.635000px;}
.y7e{bottom:439.995000px;}
.yfd{bottom:447.555000px;}
.y5c{bottom:448.995000px;}
.y96{bottom:451.335000px;}
.yc7{bottom:456.195000px;}
.y22{bottom:458.535000px;}
.y7d{bottom:459.795000px;}
.yfc{bottom:467.535000px;}
.y5b{bottom:468.795000px;}
.y95{bottom:471.315000px;}
.yc6{bottom:475.995000px;}
.y21{bottom:478.335000px;}
.y7c{bottom:479.775000px;}
.yfb{bottom:487.335000px;}
.y5a{bottom:488.775000px;}
.y94{bottom:491.115000px;}
.yc5{bottom:495.975000px;}
.y20{bottom:498.315000px;}
.y7b{bottom:499.575000px;}
.yfa{bottom:507.135000px;}
.y59{bottom:508.575000px;}
.y93{bottom:510.915000px;}
.yc4{bottom:515.775000px;}
.y1f{bottom:518.115000px;}
.y7a{bottom:519.375000px;}
.yf9{bottom:526.935000px;}
.y58{bottom:528.375000px;}
.y92{bottom:530.715000px;}
.yc3{bottom:535.575000px;}
.y1e{bottom:537.915000px;}
.y79{bottom:539.175000px;}
.yf8{bottom:546.735000px;}
.y57{bottom:548.175000px;}
.y91{bottom:550.155000px;}
.yc2{bottom:555.375000px;}
.y1d{bottom:557.715000px;}
.y78{bottom:558.975000px;}
.yf7{bottom:566.715000px;}
.y56{bottom:567.975000px;}
.y90{bottom:570.135000px;}
.yc1{bottom:575.175000px;}
.y1c{bottom:577.515000px;}
.y77{bottom:578.955000px;}
.yf6{bottom:586.515000px;}
.y8f{bottom:586.695000px;}
.y55{bottom:587.955000px;}
.yc0{bottom:595.155000px;}
.y1b{bottom:597.495000px;}
.y76{bottom:598.755000px;}
.yf5{bottom:606.315000px;}
.y54{bottom:607.755000px;}
.ybf{bottom:614.955000px;}
.y1a{bottom:617.295000px;}
.y75{bottom:618.555000px;}
.yf4{bottom:626.115000px;}
.y53{bottom:627.555000px;}
.ybe{bottom:634.785000px;}
.y19{bottom:637.125000px;}
.y74{bottom:638.385000px;}
.yf3{bottom:645.945000px;}
.y52{bottom:647.385000px;}
.ybd{bottom:654.585000px;}
.y18{bottom:656.925000px;}
.y73{bottom:658.185000px;}
.yf2{bottom:665.925000px;}
.y51{bottom:667.185000px;}
.ybc{bottom:674.385000px;}
.y17{bottom:676.725000px;}
.y72{bottom:678.165000px;}
.yf1{bottom:685.905000px;}
.y50{bottom:687.165000px;}
.ybb{bottom:694.365000px;}
.y16{bottom:696.705000px;}
.y71{bottom:697.605000px;}
.yef{bottom:697.965000px;}
.y4f{bottom:706.965000px;}
.yba{bottom:714.165000px;}
.y15{bottom:716.145000px;}
.yee{bottom:717.765000px;}
.y70{bottom:726.405000px;}
.y4e{bottom:726.765000px;}
.yb9{bottom:733.965000px;}
.y14{bottom:736.305000px;}
.yed{bottom:737.565000px;}
.y4d{bottom:746.565000px;}
.yb8{bottom:753.765000px;}
.yec{bottom:757.005000px;}
.y13{bottom:758.445000px;}
.y4c{bottom:766.365000px;}
.yb7{bottom:773.565000px;}
.yeb{bottom:777.345000px;}
.y4b{bottom:786.345000px;}
.y12{bottom:787.245000px;}
.yb6{bottom:793.545000px;}
.yea{bottom:797.145000px;}
.y4a{bottom:806.145000px;}
.y11{bottom:807.045000px;}
.yb5{bottom:813.345000px;}
.ye9{bottom:816.945000px;}
.y49{bottom:825.945000px;}
.y10{bottom:826.845000px;}
.ye8{bottom:836.745000px;}
.yb4{bottom:841.785000px;}
.y48{bottom:845.745000px;}
.yf{bottom:846.645000px;}
.ye7{bottom:856.545000px;}
.y47{bottom:865.545000px;}
.ye{bottom:866.625000px;}
.ye6{bottom:876.525000px;}
.y46{bottom:885.570000px;}
.yd{bottom:886.470000px;}
.ye5{bottom:896.370000px;}
.y45{bottom:905.370000px;}
.yc{bottom:906.270000px;}
.ye4{bottom:916.170000px;}
.y44{bottom:925.170000px;}
.yb{bottom:928.410000px;}
.ye3{bottom:935.970000px;}
.y43{bottom:944.970000px;}
.ya{bottom:953.430000px;}
.ye2{bottom:955.770000px;}
.y42{bottom:964.770000px;}
.y9{bottom:968.370000px;}
.ye1{bottom:975.750000px;}
.y41{bottom:984.750000px;}
.y8{bottom:989.430000px;}
.ye0{bottom:995.550000px;}
.y40{bottom:1004.550000px;}
.y7{bottom:1013.010000px;}
.ydf{bottom:1015.350000px;}
.y3f{bottom:1024.350000px;}
.yde{bottom:1035.150000px;}
.y3e{bottom:1044.150000px;}
.y5{bottom:1051.890000px;}
.ydd{bottom:1054.950000px;}
.y3d{bottom:1063.950000px;}
.ydc{bottom:1074.930000px;}
.y4{bottom:1082.670000px;}
.y3c{bottom:1083.930000px;}
.ydb{bottom:1094.730000px;}
.y3b{bottom:1103.730000px;}
.y3{bottom:1113.450000px;}
.yda{bottom:1114.170000px;}
.y3a{bottom:1123.170000px;}
.y6f{bottom:1123.530000px;}
.y39{bottom:1143.000000px;}
.y6e{bottom:1143.360000px;}
.y2{bottom:1144.080000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.580000px;}
.hf{height:2.826563px;}
.h6{height:38.158594px;}
.h9{height:41.726953px;}
.hb{height:58.621992px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.hc{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.hd{height:68.084282px;}
.he{height:84.096000px;}
.h2{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:212.475000px;}
.w4{width:585.645000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x19{left:45.900000px;}
.x2{left:52.739987px;}
.x1{left:54.179987px;}
.x7{left:56.519987px;}
.x3{left:61.919987px;}
.xa{left:66.419987px;}
.x6{left:67.679987px;}
.x4{left:74.339987px;}
.x5{left:75.599987px;}
.x8{left:77.039987px;}
.x13{left:78.659987px;}
.x9{left:80.999987px;}
.xb{left:84.599987px;}
.xf{left:92.195987px;}
.xc{left:94.535987px;}
.xe{left:101.375987px;}
.x16{left:108.035987px;}
.xd{left:110.735987px;}
.x10{left:122.795987px;}
.x1a{left:191.370000px;}
.x17{left:195.509987px;}
.x18{left:218.549987px;}
.x1b{left:258.375000px;}
.x15{left:283.034987px;}
.x12{left:297.074987px;}
.x14{left:446.684987px;}
.x11{left:855.179987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-1.184000pt;}
.ls2{letter-spacing:-1.045333pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls19{letter-spacing:-0.592000pt;}
.ls1b{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.317333pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls2b{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.136533pt;}
.ls1a{letter-spacing:0.145600pt;}
.ls9{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.174933pt;}
.lsd{letter-spacing:0.176000pt;}
.ls23{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.414933pt;}
.ls20{letter-spacing:0.456533pt;}
.ls10{letter-spacing:0.500267pt;}
.ls17{letter-spacing:0.517867pt;}
.ls1f{letter-spacing:0.544000pt;}
.ls12{letter-spacing:0.592000pt;}
.ls2c{letter-spacing:0.688000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls2e{letter-spacing:0.821333pt;}
.ls5{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.551360pt;}
.ls8{letter-spacing:3.360000pt;}
.ls14{letter-spacing:3.520000pt;}
.ls26{letter-spacing:4.640000pt;}
.ls24{letter-spacing:5.920000pt;}
.ls27{letter-spacing:6.560000pt;}
.ls22{letter-spacing:7.200000pt;}
.ls15{letter-spacing:7.840000pt;}
.ls21{letter-spacing:10.192640pt;}
.ls2d{letter-spacing:14.293333pt;}
.lsb{letter-spacing:16.800000pt;}
.ls1d{letter-spacing:37.072640pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws7{word-spacing:-14.240000pt;}
.ws1d{word-spacing:-14.101333pt;}
.ws10{word-spacing:-14.016000pt;}
.ws1b{word-spacing:-13.968000pt;}
.wse{word-spacing:-13.872000pt;}
.ws15{word-spacing:-13.824000pt;}
.ws17{word-spacing:-13.736533pt;}
.ws1e{word-spacing:-13.694933pt;}
.ws1{word-spacing:-13.674667pt;}
.ws6{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.416533pt;}
.wsf{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.185067pt;}
.ws18{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.989547pt;}
.wsb{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.688000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-2256.995840pt;}
._3{margin-left:-1289.130240pt;}
._5{margin-left:-1283.897173pt;}
._4{margin-left:-886.393600pt;}
._6{margin-left:-513.422720pt;}
._1f{margin-left:-14.290773pt;}
._7{margin-left:-7.143253pt;}
._8{margin-left:-3.879467pt;}
._14{margin-left:-2.339413pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._d{width:2.199680pt;}
._c{width:3.134080pt;}
._11{width:4.197120pt;}
._e{width:5.537280pt;}
._b{width:6.480640pt;}
._10{width:7.605120pt;}
._f{width:8.980693pt;}
._a{width:9.882240pt;}
._9{width:11.440640pt;}
._15{width:12.355200pt;}
._17{width:14.459307pt;}
._13{width:15.452587pt;}
._12{width:16.954027pt;}
._16{width:18.040107pt;}
._1a{width:19.388800pt;}
._1b{width:20.633387pt;}
._18{width:22.035200pt;}
._1c{width:24.419840pt;}
._21{width:25.466240pt;}
._20{width:26.452907pt;}
._19{width:27.378560pt;}
._1e{width:76.645547pt;}
._1d{width:77.555200pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:9.760000pt;}
.y10e{bottom:27.360000pt;}
.y10b{bottom:30.912000pt;}
.y10d{bottom:44.992000pt;}
.y37{bottom:48.160000pt;}
.y6{bottom:54.240000pt;}
.y36{bottom:55.200000pt;}
.y10c{bottom:62.586667pt;}
.ya8{bottom:83.840000pt;}
.y10a{bottom:84.640000pt;}
.yd9{bottom:88.160000pt;}
.y34{bottom:90.240000pt;}
.yb3{bottom:91.040000pt;}
.y6d{bottom:91.360000pt;}
.ya7{bottom:101.440000pt;}
.yd8{bottom:105.760000pt;}
.y33{bottom:107.840000pt;}
.y6c{bottom:108.640000pt;}
.y8e{bottom:108.960000pt;}
.ya6{bottom:119.072000pt;}
.yd7{bottom:123.392000pt;}
.y32{bottom:125.472000pt;}
.yb2{bottom:126.272000pt;}
.y8d{bottom:126.592000pt;}
.y6b{bottom:134.586667pt;}
.ya5{bottom:136.666667pt;}
.yd6{bottom:140.986667pt;}
.y31{bottom:143.066667pt;}
.yb1{bottom:143.866667pt;}
.y8c{bottom:144.186667pt;}
.y6a{bottom:152.186667pt;}
.ya4{bottom:154.426667pt;}
.yd5{bottom:158.586667pt;}
.y30{bottom:160.666667pt;}
.yb0{bottom:161.626667pt;}
.y8b{bottom:161.946667pt;}
.y69{bottom:169.946667pt;}
.ya3{bottom:172.026667pt;}
.yd4{bottom:176.346667pt;}
.y2f{bottom:178.426667pt;}
.yaf{bottom:179.226667pt;}
.y8a{bottom:179.546667pt;}
.y109{bottom:186.266667pt;}
.y68{bottom:187.546667pt;}
.ya2{bottom:189.626667pt;}
.yd3{bottom:193.946667pt;}
.y2e{bottom:196.026667pt;}
.yae{bottom:196.826667pt;}
.y89{bottom:197.146667pt;}
.y108{bottom:203.866667pt;}
.y67{bottom:205.146667pt;}
.ya1{bottom:207.226667pt;}
.yd2{bottom:211.546667pt;}
.y2d{bottom:213.626667pt;}
.yad{bottom:214.426667pt;}
.y88{bottom:214.746667pt;}
.y107{bottom:221.466667pt;}
.y66{bottom:222.746667pt;}
.ya0{bottom:224.826667pt;}
.yd1{bottom:229.146667pt;}
.y2c{bottom:230.906667pt;}
.yac{bottom:232.026667pt;}
.y87{bottom:232.346667pt;}
.y106{bottom:239.226667pt;}
.y65{bottom:240.346667pt;}
.y9f{bottom:242.586667pt;}
.yd0{bottom:246.746667pt;}
.y2b{bottom:248.826667pt;}
.yab{bottom:249.786667pt;}
.y86{bottom:250.106667pt;}
.y105{bottom:256.826667pt;}
.y64{bottom:258.106667pt;}
.y9e{bottom:260.186667pt;}
.ycf{bottom:264.506667pt;}
.y2a{bottom:266.586667pt;}
.yaa{bottom:267.386667pt;}
.y85{bottom:267.706667pt;}
.y104{bottom:274.426667pt;}
.y63{bottom:275.706667pt;}
.y9d{bottom:277.786667pt;}
.yce{bottom:282.106667pt;}
.y29{bottom:284.186667pt;}
.y84{bottom:285.306667pt;}
.y103{bottom:292.026667pt;}
.y62{bottom:293.306667pt;}
.y9c{bottom:295.386667pt;}
.ycd{bottom:299.706667pt;}
.y28{bottom:301.786667pt;}
.y83{bottom:302.906667pt;}
.y102{bottom:309.626667pt;}
.y61{bottom:310.906667pt;}
.y9b{bottom:312.986667pt;}
.ycc{bottom:317.306667pt;}
.y27{bottom:319.386667pt;}
.y82{bottom:320.506667pt;}
.y101{bottom:327.386667pt;}
.y60{bottom:328.506667pt;}
.y9a{bottom:330.746667pt;}
.ycb{bottom:334.906667pt;}
.y26{bottom:336.986667pt;}
.yf0{bottom:337.986667pt;}
.y81{bottom:338.306667pt;}
.y100{bottom:345.026667pt;}
.y5f{bottom:346.306667pt;}
.y99{bottom:348.386667pt;}
.yca{bottom:352.706667pt;}
.y25{bottom:354.786667pt;}
.y80{bottom:355.906667pt;}
.yff{bottom:362.626667pt;}
.y5e{bottom:363.906667pt;}
.y98{bottom:365.986667pt;}
.yc9{bottom:370.306667pt;}
.y24{bottom:372.386667pt;}
.y7f{bottom:373.506667pt;}
.yfe{bottom:380.226667pt;}
.y5d{bottom:381.506667pt;}
.y97{bottom:383.586667pt;}
.yc8{bottom:387.906667pt;}
.y23{bottom:389.986667pt;}
.ya9{bottom:390.786667pt;}
.y7e{bottom:391.106667pt;}
.yfd{bottom:397.826667pt;}
.y5c{bottom:399.106667pt;}
.y96{bottom:401.186667pt;}
.yc7{bottom:405.506667pt;}
.y22{bottom:407.586667pt;}
.y7d{bottom:408.706667pt;}
.yfc{bottom:415.586667pt;}
.y5b{bottom:416.706667pt;}
.y95{bottom:418.946667pt;}
.yc6{bottom:423.106667pt;}
.y21{bottom:425.186667pt;}
.y7c{bottom:426.466667pt;}
.yfb{bottom:433.186667pt;}
.y5a{bottom:434.466667pt;}
.y94{bottom:436.546667pt;}
.yc5{bottom:440.866667pt;}
.y20{bottom:442.946667pt;}
.y7b{bottom:444.066667pt;}
.yfa{bottom:450.786667pt;}
.y59{bottom:452.066667pt;}
.y93{bottom:454.146667pt;}
.yc4{bottom:458.466667pt;}
.y1f{bottom:460.546667pt;}
.y7a{bottom:461.666667pt;}
.yf9{bottom:468.386667pt;}
.y58{bottom:469.666667pt;}
.y92{bottom:471.746667pt;}
.yc3{bottom:476.066667pt;}
.y1e{bottom:478.146667pt;}
.y79{bottom:479.266667pt;}
.yf8{bottom:485.986667pt;}
.y57{bottom:487.266667pt;}
.y91{bottom:489.026667pt;}
.yc2{bottom:493.666667pt;}
.y1d{bottom:495.746667pt;}
.y78{bottom:496.866667pt;}
.yf7{bottom:503.746667pt;}
.y56{bottom:504.866667pt;}
.y90{bottom:506.786667pt;}
.yc1{bottom:511.266667pt;}
.y1c{bottom:513.346667pt;}
.y77{bottom:514.626667pt;}
.yf6{bottom:521.346667pt;}
.y8f{bottom:521.506667pt;}
.y55{bottom:522.626667pt;}
.yc0{bottom:529.026667pt;}
.y1b{bottom:531.106667pt;}
.y76{bottom:532.226667pt;}
.yf5{bottom:538.946667pt;}
.y54{bottom:540.226667pt;}
.ybf{bottom:546.626667pt;}
.y1a{bottom:548.706667pt;}
.y75{bottom:549.826667pt;}
.yf4{bottom:556.546667pt;}
.y53{bottom:557.826667pt;}
.ybe{bottom:564.253333pt;}
.y19{bottom:566.333333pt;}
.y74{bottom:567.453333pt;}
.yf3{bottom:574.173333pt;}
.y52{bottom:575.453333pt;}
.ybd{bottom:581.853333pt;}
.y18{bottom:583.933333pt;}
.y73{bottom:585.053333pt;}
.yf2{bottom:591.933333pt;}
.y51{bottom:593.053333pt;}
.ybc{bottom:599.453333pt;}
.y17{bottom:601.533333pt;}
.y72{bottom:602.813333pt;}
.yf1{bottom:609.693333pt;}
.y50{bottom:610.813333pt;}
.ybb{bottom:617.213333pt;}
.y16{bottom:619.293333pt;}
.y71{bottom:620.093333pt;}
.yef{bottom:620.413333pt;}
.y4f{bottom:628.413333pt;}
.yba{bottom:634.813333pt;}
.y15{bottom:636.573333pt;}
.yee{bottom:638.013333pt;}
.y70{bottom:645.693333pt;}
.y4e{bottom:646.013333pt;}
.yb9{bottom:652.413333pt;}
.y14{bottom:654.493333pt;}
.yed{bottom:655.613333pt;}
.y4d{bottom:663.613333pt;}
.yb8{bottom:670.013333pt;}
.yec{bottom:672.893333pt;}
.y13{bottom:674.173333pt;}
.y4c{bottom:681.213333pt;}
.yb7{bottom:687.613333pt;}
.yeb{bottom:690.973333pt;}
.y4b{bottom:698.973333pt;}
.y12{bottom:699.773333pt;}
.yb6{bottom:705.373333pt;}
.yea{bottom:708.573333pt;}
.y4a{bottom:716.573333pt;}
.y11{bottom:717.373333pt;}
.yb5{bottom:722.973333pt;}
.ye9{bottom:726.173333pt;}
.y49{bottom:734.173333pt;}
.y10{bottom:734.973333pt;}
.ye8{bottom:743.773333pt;}
.yb4{bottom:748.253333pt;}
.y48{bottom:751.773333pt;}
.yf{bottom:752.573333pt;}
.ye7{bottom:761.373333pt;}
.y47{bottom:769.373333pt;}
.ye{bottom:770.333333pt;}
.ye6{bottom:779.133333pt;}
.y46{bottom:787.173333pt;}
.yd{bottom:787.973333pt;}
.ye5{bottom:796.773333pt;}
.y45{bottom:804.773333pt;}
.yc{bottom:805.573333pt;}
.ye4{bottom:814.373333pt;}
.y44{bottom:822.373333pt;}
.yb{bottom:825.253333pt;}
.ye3{bottom:831.973333pt;}
.y43{bottom:839.973333pt;}
.ya{bottom:847.493333pt;}
.ye2{bottom:849.573333pt;}
.y42{bottom:857.573333pt;}
.y9{bottom:860.773333pt;}
.ye1{bottom:867.333333pt;}
.y41{bottom:875.333333pt;}
.y8{bottom:879.493333pt;}
.ye0{bottom:884.933333pt;}
.y40{bottom:892.933333pt;}
.y7{bottom:900.453333pt;}
.ydf{bottom:902.533333pt;}
.y3f{bottom:910.533333pt;}
.yde{bottom:920.133333pt;}
.y3e{bottom:928.133333pt;}
.y5{bottom:935.013333pt;}
.ydd{bottom:937.733333pt;}
.y3d{bottom:945.733333pt;}
.ydc{bottom:955.493333pt;}
.y4{bottom:962.373333pt;}
.y3c{bottom:963.493333pt;}
.ydb{bottom:973.093333pt;}
.y3b{bottom:981.093333pt;}
.y3{bottom:989.733333pt;}
.yda{bottom:990.373333pt;}
.y3a{bottom:998.373333pt;}
.y6f{bottom:998.693333pt;}
.y39{bottom:1016.000000pt;}
.y6e{bottom:1016.320000pt;}
.y2{bottom:1016.960000pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.960000pt;}
.hf{height:2.512500pt;}
.h6{height:33.918750pt;}
.h9{height:37.090625pt;}
.hb{height:52.108438pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.hc{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.hd{height:60.519362pt;}
.he{height:74.752000pt;}
.h2{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:188.866667pt;}
.w4{width:520.573333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x19{left:40.800000pt;}
.x2{left:46.879988pt;}
.x1{left:48.159988pt;}
.x7{left:50.239988pt;}
.x3{left:55.039988pt;}
.xa{left:59.039988pt;}
.x6{left:60.159988pt;}
.x4{left:66.079988pt;}
.x5{left:67.199988pt;}
.x8{left:68.479988pt;}
.x13{left:69.919988pt;}
.x9{left:71.999988pt;}
.xb{left:75.199988pt;}
.xf{left:81.951988pt;}
.xc{left:84.031988pt;}
.xe{left:90.111988pt;}
.x16{left:96.031988pt;}
.xd{left:98.431988pt;}
.x10{left:109.151988pt;}
.x1a{left:170.106667pt;}
.x17{left:173.786655pt;}
.x18{left:194.266655pt;}
.x1b{left:229.666667pt;}
.x15{left:251.586655pt;}
.x12{left:264.066655pt;}
.x14{left:397.053321pt;}
.x11{left:760.159988pt;}
}




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