
    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_367af15b4ccc39fec73a5133.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_1073452296d45550107ed62b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.055176;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_5febdee03fc25330c12f8bf5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2d5c8cc5536249b5a97f3e86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_806f4a57a94085899072a302.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3aa04546d67fbc62ccb109fa.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_f8a95d3ef4beaee32e47d74c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6e2c2eed0285c0ce640b50ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3c4c831c21705a64d4bc8b10.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:ffd;src:url('chunks/assets/font_5b188a52700b7d2e82b82bb9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_260e29e0f70a7bef7afe20ad.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976562;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:fff;src:url('chunks/assets/font_bba579c9e0faf3b39925fbc8.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-27.360000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsf{letter-spacing:-15.840000px;}
.ls8{letter-spacing:-0.756000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.230400px;}
.ls6{letter-spacing:-0.129600px;}
.ls7{letter-spacing:-0.058320px;}
.ls4{letter-spacing:-0.000001px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.028080px;}
.ls1c{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.lse{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.378600px;}
.ls10{letter-spacing:1.620000px;}
.ls18{letter-spacing:10.385280px;}
.ls22{letter-spacing:18.144000px;}
.ls1d{letter-spacing:23.904000px;}
.ls1f{letter-spacing:34.901280px;}
.ls17{letter-spacing:40.049280px;}
.ls21{letter-spacing:54.288000px;}
.ls1e{letter-spacing:55.169280px;}
.lsb{letter-spacing:60.209280px;}
.ls16{letter-spacing:76.805280px;}
.ls2{letter-spacing:84.330720px;}
.ls0{letter-spacing:200.160000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws6{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.304000px;}
.ws13{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.wsf{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.552000px;}
.wse{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.500000px;}
.ws12{word-spacing:-9.000000px;}
.wsa{word-spacing:-0.322440px;}
.ws3{word-spacing:-0.001440px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:2.715840px;}
.ws2{word-spacing:4.362480px;}
._2{margin-left:-17.124000px;}
._18{margin-left:-9.630720px;}
._12{margin-left:-4.392000px;}
._11{margin-left:-3.312000px;}
._6{margin-left:-1.699200px;}
._0{width:1.340640px;}
._1{width:2.734080px;}
._7{width:4.395840px;}
._b{width:5.400000px;}
._c{width:6.566400px;}
._19{width:7.617600px;}
._e{width:9.358560px;}
._13{width:10.442880px;}
._14{width:11.805120px;}
._9{width:13.608000px;}
._a{width:14.904000px;}
._d{width:16.992000px;}
._15{width:19.100160px;}
._1a{width:20.243520px;}
._8{width:21.600000px;}
._1b{width:29.052000px;}
._f{width:108.216000px;}
._10{width:123.624000px;}
._1c{width:139.968000px;}
._1d{width:141.006720px;}
._17{width:749.789760px;}
._4{width:751.254240px;}
._16{width:1060.785360px;}
._3{width:1085.656080px;}
._5{width:1612.649760px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:3.960000px;}
.y12{bottom:7.020000px;}
.y1d{bottom:24.660000px;}
.y1c{bottom:45.360000px;}
.y1b{bottom:66.060000px;}
.y6{bottom:75.276000px;}
.y1a{bottom:86.760000px;}
.y5{bottom:94.896000px;}
.y33{bottom:95.436000px;}
.y19{bottom:107.490000px;}
.y68{bottom:113.976000px;}
.yba{bottom:114.696000px;}
.y2f{bottom:115.056000px;}
.y67{bottom:118.476000px;}
.yd6{bottom:125.676000px;}
.y18{bottom:128.190000px;}
.y66{bottom:129.456000px;}
.yb9{bottom:131.076000px;}
.y65{bottom:133.956000px;}
.yb8{bottom:134.856000px;}
.y2e{bottom:138.996000px;}
.y64{bottom:145.116000px;}
.yb7{bottom:146.916000px;}
.y17{bottom:148.890000px;}
.yd5{bottom:149.436000px;}
.y76{bottom:149.616000px;}
.yb6{bottom:151.410000px;}
.y63{bottom:160.590000px;}
.yb5{bottom:162.390000px;}
.y2d{bottom:162.750000px;}
.y62{bottom:165.090000px;}
.y16{bottom:169.590000px;}
.yd4{bottom:173.370000px;}
.y61{bottom:176.070000px;}
.yc6{bottom:176.790000px;}
.yd2{bottom:177.690000px;}
.yb4{bottom:178.050000px;}
.y60{bottom:180.570000px;}
.y2c{bottom:186.510000px;}
.y15{bottom:190.290000px;}
.y75{bottom:191.550000px;}
.y5f{bottom:192.270000px;}
.yc5{bottom:193.170000px;}
.yb3{bottom:193.530000px;}
.y5e{bottom:196.050000px;}
.yc4{bottom:196.950000px;}
.yd3{bottom:197.130000px;}
.yb2{bottom:198.030000px;}
.y74{bottom:207.210000px;}
.ya4{bottom:208.650000px;}
.y84{bottom:208.830000px;}
.yb1{bottom:209.010000px;}
.y5d{bottom:209.730000px;}
.y2b{bottom:210.270000px;}
.y14{bottom:210.990000px;}
.yd1{bottom:212.430000px;}
.y83{bottom:212.610000px;}
.yb0{bottom:213.510000px;}
.yc9{bottom:220.890000px;}
.y73{bottom:222.690000px;}
.y82{bottom:224.490000px;}
.yc3{bottom:226.110000px;}
.y72{bottom:227.190000px;}
.y81{bottom:228.990000px;}
.yc2{bottom:229.890000px;}
.y2a{bottom:234.210000px;}
.yd0{bottom:236.370000px;}
.y71{bottom:238.170000px;}
.y80{bottom:240.150000px;}
.yc1{bottom:242.670000px;}
.y7f{bottom:244.650000px;}
.yc0{bottom:246.450000px;}
.y70{bottom:253.650000px;}
.yaf{bottom:255.630000px;}
.y7e{bottom:257.250000px;}
.y29{bottom:257.970000px;}
.y6f{bottom:258.150000px;}
.ya3{bottom:260.130000px;}
.yc8{bottom:268.590000px;}
.y6e{bottom:270.750000px;}
.yae{bottom:271.110000px;}
.y28{bottom:281.730000px;}
.ya1{bottom:283.890000px;}
.yad{bottom:286.590000px;}
.ya2{bottom:290.730000px;}
.yac{bottom:291.090000px;}
.y5b{bottom:292.350000px;}
.y5c{bottom:299.190000px;}
.yab{bottom:302.250000px;}
.y27{bottom:305.490000px;}
.ya0{bottom:307.650000px;}
.ycf{bottom:310.530000px;}
.y5a{bottom:316.110000px;}
.yaa{bottom:317.730000px;}
.ya9{bottom:322.230000px;}
.y26{bottom:329.430000px;}
.y9f{bottom:331.590000px;}
.yce{bottom:334.290000px;}
.ya8{bottom:334.830000px;}
.y59{bottom:339.915000px;}
.y7d{bottom:346.755000px;}
.y25{bottom:353.235000px;}
.y9e{bottom:355.395000px;}
.ycd{bottom:358.095000px;}
.y58{bottom:363.855000px;}
.y6d{bottom:370.695000px;}
.y24{bottom:376.995000px;}
.y9d{bottom:379.155000px;}
.ycc{bottom:384.735000px;}
.y57{bottom:387.615000px;}
.y7c{bottom:394.455000px;}
.y23{bottom:400.755000px;}
.y9c{bottom:402.915000px;}
.ycb{bottom:408.495000px;}
.y55{bottom:411.375000px;}
.y56{bottom:418.215000px;}
.y22{bottom:424.695000px;}
.y9b{bottom:426.855000px;}
.y54{bottom:435.135000px;}
.ybf{bottom:441.975000px;}
.y21{bottom:448.455000px;}
.y9a{bottom:450.615000px;}
.y52{bottom:458.895000px;}
.y53{bottom:465.735000px;}
.y20{bottom:472.215000px;}
.y98{bottom:474.375000px;}
.y99{bottom:481.215000px;}
.y51{bottom:482.835000px;}
.ya7{bottom:489.675000px;}
.y1f{bottom:495.975000px;}
.y97{bottom:498.135000px;}
.y50{bottom:506.595000px;}
.y13{bottom:513.435000px;}
.y96{bottom:522.075000px;}
.y4f{bottom:530.355000px;}
.y95{bottom:545.835000px;}
.y4e{bottom:554.115000px;}
.ybe{bottom:560.955000px;}
.y94{bottom:569.595000px;}
.y4c{bottom:578.055000px;}
.y4d{bottom:584.895000px;}
.y93{bottom:593.355000px;}
.y4b{bottom:601.815000px;}
.y6c{bottom:608.685000px;}
.y92{bottom:617.145000px;}
.y4a{bottom:625.605000px;}
.y7b{bottom:632.445000px;}
.y91{bottom:641.085000px;}
.y49{bottom:649.365000px;}
.y8f{bottom:664.845000px;}
.y90{bottom:671.685000px;}
.y48{bottom:673.305000px;}
.y8e{bottom:688.605000px;}
.y46{bottom:697.065000px;}
.y47{bottom:703.905000px;}
.y8d{bottom:712.365000px;}
.y45{bottom:720.825000px;}
.y7a{bottom:727.665000px;}
.y8c{bottom:736.305000px;}
.y11{bottom:742.065000px;}
.y44{bottom:744.585000px;}
.y6b{bottom:751.425000px;}
.y8b{bottom:760.065000px;}
.y43{bottom:768.525000px;}
.yd7{bottom:769.605000px;}
.y10{bottom:773.565000px;}
.ya6{bottom:775.365000px;}
.y8a{bottom:783.825000px;}
.y42{bottom:792.285000px;}
.yf{bottom:797.325000px;}
.yc7{bottom:799.125000px;}
.y89{bottom:810.465000px;}
.y41{bottom:816.045000px;}
.ye{bottom:821.265000px;}
.y88{bottom:834.225000px;}
.y40{bottom:839.805000px;}
.yd{bottom:845.025000px;}
.ybd{bottom:846.645000px;}
.y87{bottom:860.865000px;}
.y3f{bottom:863.745000px;}
.yc{bottom:868.785000px;}
.y79{bottom:870.630000px;}
.y86{bottom:884.670000px;}
.y3e{bottom:887.550000px;}
.yb{bottom:892.590000px;}
.y3d{bottom:911.310000px;}
.ya{bottom:916.530000px;}
.y3c{bottom:935.070000px;}
.y9{bottom:940.290000px;}
.yca{bottom:941.910000px;}
.y3b{bottom:958.830000px;}
.y8{bottom:965.130000px;}
.ya5{bottom:965.670000px;}
.y3a{bottom:982.770000px;}
.ybc{bottom:989.610000px;}
.y7{bottom:992.850000px;}
.y39{bottom:1006.530000px;}
.y6a{bottom:1013.370000px;}
.y4{bottom:1016.250000px;}
.y38{bottom:1030.290000px;}
.y3{bottom:1035.870000px;}
.ybb{bottom:1037.130000px;}
.y37{bottom:1054.050000px;}
.y2{bottom:1058.190000px;}
.y85{bottom:1060.890000px;}
.y36{bottom:1077.990000px;}
.y1{bottom:1081.230000px;}
.y78{bottom:1084.830000px;}
.y35{bottom:1101.750000px;}
.y69{bottom:1108.590000px;}
.y34{bottom:1125.510000px;}
.y77{bottom:1132.350000px;}
.y32{bottom:1146.780000px;}
.y31{bottom:1166.220000px;}
.y30{bottom:1187.100000px;}
.ha{height:23.760000px;}
.h11{height:25.136719px;}
.he{height:33.683203px;}
.hf{height:35.806641px;}
.h13{height:37.705078px;}
.h12{height:41.080078px;}
.hd{height:49.992188px;}
.h9{height:50.273438px;}
.hb{height:50.800781px;}
.h15{height:52.417969px;}
.h10{height:53.709961px;}
.h17{height:54.773438px;}
.h5{height:55.825312px;}
.h2{height:56.084062px;}
.h8{height:59.436914px;}
.h6{height:59.439023px;}
.h4{height:60.960938px;}
.h16{height:61.043203px;}
.h14{height:61.329023px;}
.h7{height:65.884219px;}
.h3{height:81.078047px;}
.hc{height:227.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:174.270000px;}
.w3{width:552.525000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.xf{left:17.640000px;}
.x3{left:74.519987px;}
.xc{left:77.580000px;}
.x1c{left:79.019987px;}
.x29{left:83.519987px;}
.x11{left:90.215987px;}
.x2{left:114.335987px;}
.x5{left:120.635987px;}
.x4d{left:151.949973px;}
.x47{left:156.089973px;}
.x53{left:161.129973px;}
.x4e{left:164.189987px;}
.x48{left:168.329987px;}
.x54{left:173.369987px;}
.x3a{left:176.609973px;}
.x38{left:178.949973px;}
.x3b{left:182.009973px;}
.x23{left:188.309973px;}
.x39{left:191.189987px;}
.x24{left:194.429987px;}
.x36{left:200.549973px;}
.x2e{left:203.429973px;}
.x41{left:204.509973px;}
.x45{left:208.649973px;}
.x37{left:212.789987px;}
.x2f{left:215.669987px;}
.x42{left:216.749987px;}
.x25{left:218.009973px;}
.x46{left:220.889987px;}
.x5d{left:222.869973px;}
.x26{left:230.249987px;}
.x19{left:232.949973px;}
.x5e{left:235.109987px;}
.x1a{left:239.069987px;}
.x9{left:256.529987px;}
.x4f{left:262.109973px;}
.xb{left:270.029987px;}
.x50{left:274.349987px;}
.x8{left:279.794987px;}
.x1b{left:290.594987px;}
.x3f{left:292.034973px;}
.x40{left:304.274987px;}
.x51{left:310.214973px;}
.x4c{left:317.414987px;}
.x52{left:322.634987px;}
.x6{left:323.714987px;}
.x1f{left:333.974973px;}
.x20{left:340.094987px;}
.x7{left:341.894987px;}
.xa{left:345.314987px;}
.x10{left:348.734987px;}
.x14{left:355.214987px;}
.x30{left:358.454987px;}
.x3c{left:371.054987px;}
.x43{left:399.134973px;}
.x44{left:411.374987px;}
.x4{left:441.254987px;}
.x32{left:451.514973px;}
.x31{left:452.594987px;}
.x21{left:460.514973px;}
.x33{left:463.754987px;}
.x22{left:466.664987px;}
.x4b{left:476.564987px;}
.x27{left:508.424973px;}
.x17{left:509.864973px;}
.x18{left:515.984987px;}
.x28{left:520.664987px;}
.x5b{left:581.324973px;}
.x3d{left:590.144973px;}
.x5c{left:593.564987px;}
.x15{left:600.944973px;}
.x3e{left:602.384987px;}
.x16{left:607.064987px;}
.x49{left:611.744973px;}
.x57{left:616.604973px;}
.x4a{left:625.244987px;}
.x58{left:628.844987px;}
.xe{left:630.825000px;}
.x2a{left:662.369973px;}
.x2b{left:674.969987px;}
.x12{left:680.189973px;}
.x13{left:686.309987px;}
.x55{left:696.569973px;}
.x56{left:708.809987px;}
.x34{left:714.389973px;}
.x59{left:724.469973px;}
.x35{left:726.629987px;}
.x5a{left:736.709987px;}
.x1d{left:785.129973px;}
.x1e{left:791.249987px;}
.x2c{left:793.049973px;}
.x2d{left:805.289987px;}
.x1{left:806.909987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsf{letter-spacing:-14.080000pt;}
.ls8{letter-spacing:-0.672000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.204800pt;}
.ls6{letter-spacing:-0.115200pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:-0.000001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.024960pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.336533pt;}
.ls10{letter-spacing:1.440000pt;}
.ls18{letter-spacing:9.231360pt;}
.ls22{letter-spacing:16.128000pt;}
.ls1d{letter-spacing:21.248000pt;}
.ls1f{letter-spacing:31.023360pt;}
.ls17{letter-spacing:35.599360pt;}
.ls21{letter-spacing:48.256000pt;}
.ls1e{letter-spacing:49.039360pt;}
.lsb{letter-spacing:53.519360pt;}
.ls16{letter-spacing:68.271360pt;}
.ls2{letter-spacing:74.960640pt;}
.ls0{letter-spacing:177.920000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws6{word-spacing:-19.056533pt;}
.ws4{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.wsf{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.824000pt;}
.wse{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.005120pt;}
.wsd{word-spacing:-12.000000pt;}
.ws12{word-spacing:-8.000000pt;}
.wsa{word-spacing:-0.286613pt;}
.ws3{word-spacing:-0.001280pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:2.414080pt;}
.ws2{word-spacing:3.877760pt;}
._2{margin-left:-15.221333pt;}
._18{margin-left:-8.560640pt;}
._12{margin-left:-3.904000pt;}
._11{margin-left:-2.944000pt;}
._6{margin-left:-1.510400pt;}
._0{width:1.191680pt;}
._1{width:2.430293pt;}
._7{width:3.907413pt;}
._b{width:4.800000pt;}
._c{width:5.836800pt;}
._19{width:6.771200pt;}
._e{width:8.318720pt;}
._13{width:9.282560pt;}
._14{width:10.493440pt;}
._9{width:12.096000pt;}
._a{width:13.248000pt;}
._d{width:15.104000pt;}
._15{width:16.977920pt;}
._1a{width:17.994240pt;}
._8{width:19.200000pt;}
._1b{width:25.824000pt;}
._f{width:96.192000pt;}
._10{width:109.888000pt;}
._1c{width:124.416000pt;}
._1d{width:125.339307pt;}
._17{width:666.479787pt;}
._4{width:667.781547pt;}
._16{width:942.920320pt;}
._3{width:965.027627pt;}
._5{width:1433.466453pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:3.520000pt;}
.y12{bottom:6.240000pt;}
.y1d{bottom:21.920000pt;}
.y1c{bottom:40.320000pt;}
.y1b{bottom:58.720000pt;}
.y6{bottom:66.912000pt;}
.y1a{bottom:77.120000pt;}
.y5{bottom:84.352000pt;}
.y33{bottom:84.832000pt;}
.y19{bottom:95.546667pt;}
.y68{bottom:101.312000pt;}
.yba{bottom:101.952000pt;}
.y2f{bottom:102.272000pt;}
.y67{bottom:105.312000pt;}
.yd6{bottom:111.712000pt;}
.y18{bottom:113.946667pt;}
.y66{bottom:115.072000pt;}
.yb9{bottom:116.512000pt;}
.y65{bottom:119.072000pt;}
.yb8{bottom:119.872000pt;}
.y2e{bottom:123.552000pt;}
.y64{bottom:128.992000pt;}
.yb7{bottom:130.592000pt;}
.y17{bottom:132.346667pt;}
.yd5{bottom:132.832000pt;}
.y76{bottom:132.992000pt;}
.yb6{bottom:134.586667pt;}
.y63{bottom:142.746667pt;}
.yb5{bottom:144.346667pt;}
.y2d{bottom:144.666667pt;}
.y62{bottom:146.746667pt;}
.y16{bottom:150.746667pt;}
.yd4{bottom:154.106667pt;}
.y61{bottom:156.506667pt;}
.yc6{bottom:157.146667pt;}
.yd2{bottom:157.946667pt;}
.yb4{bottom:158.266667pt;}
.y60{bottom:160.506667pt;}
.y2c{bottom:165.786667pt;}
.y15{bottom:169.146667pt;}
.y75{bottom:170.266667pt;}
.y5f{bottom:170.906667pt;}
.yc5{bottom:171.706667pt;}
.yb3{bottom:172.026667pt;}
.y5e{bottom:174.266667pt;}
.yc4{bottom:175.066667pt;}
.yd3{bottom:175.226667pt;}
.yb2{bottom:176.026667pt;}
.y74{bottom:184.186667pt;}
.ya4{bottom:185.466667pt;}
.y84{bottom:185.626667pt;}
.yb1{bottom:185.786667pt;}
.y5d{bottom:186.426667pt;}
.y2b{bottom:186.906667pt;}
.y14{bottom:187.546667pt;}
.yd1{bottom:188.826667pt;}
.y83{bottom:188.986667pt;}
.yb0{bottom:189.786667pt;}
.yc9{bottom:196.346667pt;}
.y73{bottom:197.946667pt;}
.y82{bottom:199.546667pt;}
.yc3{bottom:200.986667pt;}
.y72{bottom:201.946667pt;}
.y81{bottom:203.546667pt;}
.yc2{bottom:204.346667pt;}
.y2a{bottom:208.186667pt;}
.yd0{bottom:210.106667pt;}
.y71{bottom:211.706667pt;}
.y80{bottom:213.466667pt;}
.yc1{bottom:215.706667pt;}
.y7f{bottom:217.466667pt;}
.yc0{bottom:219.066667pt;}
.y70{bottom:225.466667pt;}
.yaf{bottom:227.226667pt;}
.y7e{bottom:228.666667pt;}
.y29{bottom:229.306667pt;}
.y6f{bottom:229.466667pt;}
.ya3{bottom:231.226667pt;}
.yc8{bottom:238.746667pt;}
.y6e{bottom:240.666667pt;}
.yae{bottom:240.986667pt;}
.y28{bottom:250.426667pt;}
.ya1{bottom:252.346667pt;}
.yad{bottom:254.746667pt;}
.ya2{bottom:258.426667pt;}
.yac{bottom:258.746667pt;}
.y5b{bottom:259.866667pt;}
.y5c{bottom:265.946667pt;}
.yab{bottom:268.666667pt;}
.y27{bottom:271.546667pt;}
.ya0{bottom:273.466667pt;}
.ycf{bottom:276.026667pt;}
.y5a{bottom:280.986667pt;}
.yaa{bottom:282.426667pt;}
.ya9{bottom:286.426667pt;}
.y26{bottom:292.826667pt;}
.y9f{bottom:294.746667pt;}
.yce{bottom:297.146667pt;}
.ya8{bottom:297.626667pt;}
.y59{bottom:302.146667pt;}
.y7d{bottom:308.226667pt;}
.y25{bottom:313.986667pt;}
.y9e{bottom:315.906667pt;}
.ycd{bottom:318.306667pt;}
.y58{bottom:323.426667pt;}
.y6d{bottom:329.506667pt;}
.y24{bottom:335.106667pt;}
.y9d{bottom:337.026667pt;}
.ycc{bottom:341.986667pt;}
.y57{bottom:344.546667pt;}
.y7c{bottom:350.626667pt;}
.y23{bottom:356.226667pt;}
.y9c{bottom:358.146667pt;}
.ycb{bottom:363.106667pt;}
.y55{bottom:365.666667pt;}
.y56{bottom:371.746667pt;}
.y22{bottom:377.506667pt;}
.y9b{bottom:379.426667pt;}
.y54{bottom:386.786667pt;}
.ybf{bottom:392.866667pt;}
.y21{bottom:398.626667pt;}
.y9a{bottom:400.546667pt;}
.y52{bottom:407.906667pt;}
.y53{bottom:413.986667pt;}
.y20{bottom:419.746667pt;}
.y98{bottom:421.666667pt;}
.y99{bottom:427.746667pt;}
.y51{bottom:429.186667pt;}
.ya7{bottom:435.266667pt;}
.y1f{bottom:440.866667pt;}
.y97{bottom:442.786667pt;}
.y50{bottom:450.306667pt;}
.y13{bottom:456.386667pt;}
.y96{bottom:464.066667pt;}
.y4f{bottom:471.426667pt;}
.y95{bottom:485.186667pt;}
.y4e{bottom:492.546667pt;}
.ybe{bottom:498.626667pt;}
.y94{bottom:506.306667pt;}
.y4c{bottom:513.826667pt;}
.y4d{bottom:519.906667pt;}
.y93{bottom:527.426667pt;}
.y4b{bottom:534.946667pt;}
.y6c{bottom:541.053333pt;}
.y92{bottom:548.573333pt;}
.y4a{bottom:556.093333pt;}
.y7b{bottom:562.173333pt;}
.y91{bottom:569.853333pt;}
.y49{bottom:577.213333pt;}
.y8f{bottom:590.973333pt;}
.y90{bottom:597.053333pt;}
.y48{bottom:598.493333pt;}
.y8e{bottom:612.093333pt;}
.y46{bottom:619.613333pt;}
.y47{bottom:625.693333pt;}
.y8d{bottom:633.213333pt;}
.y45{bottom:640.733333pt;}
.y7a{bottom:646.813333pt;}
.y8c{bottom:654.493333pt;}
.y11{bottom:659.613333pt;}
.y44{bottom:661.853333pt;}
.y6b{bottom:667.933333pt;}
.y8b{bottom:675.613333pt;}
.y43{bottom:683.133333pt;}
.yd7{bottom:684.093333pt;}
.y10{bottom:687.613333pt;}
.ya6{bottom:689.213333pt;}
.y8a{bottom:696.733333pt;}
.y42{bottom:704.253333pt;}
.yf{bottom:708.733333pt;}
.yc7{bottom:710.333333pt;}
.y89{bottom:720.413333pt;}
.y41{bottom:725.373333pt;}
.ye{bottom:730.013333pt;}
.y88{bottom:741.533333pt;}
.y40{bottom:746.493333pt;}
.yd{bottom:751.133333pt;}
.ybd{bottom:752.573333pt;}
.y87{bottom:765.213333pt;}
.y3f{bottom:767.773333pt;}
.yc{bottom:772.253333pt;}
.y79{bottom:773.893333pt;}
.y86{bottom:786.373333pt;}
.y3e{bottom:788.933333pt;}
.yb{bottom:793.413333pt;}
.y3d{bottom:810.053333pt;}
.ya{bottom:814.693333pt;}
.y3c{bottom:831.173333pt;}
.y9{bottom:835.813333pt;}
.yca{bottom:837.253333pt;}
.y3b{bottom:852.293333pt;}
.y8{bottom:857.893333pt;}
.ya5{bottom:858.373333pt;}
.y3a{bottom:873.573333pt;}
.ybc{bottom:879.653333pt;}
.y7{bottom:882.533333pt;}
.y39{bottom:894.693333pt;}
.y6a{bottom:900.773333pt;}
.y4{bottom:903.333333pt;}
.y38{bottom:915.813333pt;}
.y3{bottom:920.773333pt;}
.ybb{bottom:921.893333pt;}
.y37{bottom:936.933333pt;}
.y2{bottom:940.613333pt;}
.y85{bottom:943.013333pt;}
.y36{bottom:958.213333pt;}
.y1{bottom:961.093333pt;}
.y78{bottom:964.293333pt;}
.y35{bottom:979.333333pt;}
.y69{bottom:985.413333pt;}
.y34{bottom:1000.453333pt;}
.y77{bottom:1006.533333pt;}
.y32{bottom:1019.360000pt;}
.y31{bottom:1036.640000pt;}
.y30{bottom:1055.200000pt;}
.ha{height:21.120000pt;}
.h11{height:22.343750pt;}
.he{height:29.940625pt;}
.hf{height:31.828125pt;}
.h13{height:33.515625pt;}
.h12{height:36.515625pt;}
.hd{height:44.437500pt;}
.h9{height:44.687500pt;}
.hb{height:45.156250pt;}
.h15{height:46.593750pt;}
.h10{height:47.742188pt;}
.h17{height:48.687500pt;}
.h5{height:49.622500pt;}
.h2{height:49.852500pt;}
.h8{height:52.832812pt;}
.h6{height:52.834688pt;}
.h4{height:54.187500pt;}
.h16{height:54.260625pt;}
.h14{height:54.514687pt;}
.h7{height:58.563750pt;}
.h3{height:72.069375pt;}
.hc{height:202.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:154.906667pt;}
.w3{width:491.133333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.xf{left:15.680000pt;}
.x3{left:66.239988pt;}
.xc{left:68.960000pt;}
.x1c{left:70.239988pt;}
.x29{left:74.239988pt;}
.x11{left:80.191988pt;}
.x2{left:101.631988pt;}
.x5{left:107.231988pt;}
.x4d{left:135.066643pt;}
.x47{left:138.746643pt;}
.x53{left:143.226643pt;}
.x4e{left:145.946655pt;}
.x48{left:149.626655pt;}
.x54{left:154.106655pt;}
.x3a{left:156.986643pt;}
.x38{left:159.066643pt;}
.x3b{left:161.786643pt;}
.x23{left:167.386643pt;}
.x39{left:169.946655pt;}
.x24{left:172.826655pt;}
.x36{left:178.266643pt;}
.x2e{left:180.826643pt;}
.x41{left:181.786643pt;}
.x45{left:185.466643pt;}
.x37{left:189.146655pt;}
.x2f{left:191.706655pt;}
.x42{left:192.666655pt;}
.x25{left:193.786643pt;}
.x46{left:196.346655pt;}
.x5d{left:198.106643pt;}
.x26{left:204.666655pt;}
.x19{left:207.066643pt;}
.x5e{left:208.986655pt;}
.x1a{left:212.506655pt;}
.x9{left:228.026655pt;}
.x4f{left:232.986643pt;}
.xb{left:240.026655pt;}
.x50{left:243.866655pt;}
.x8{left:248.706655pt;}
.x1b{left:258.306655pt;}
.x3f{left:259.586643pt;}
.x40{left:270.466655pt;}
.x51{left:275.746643pt;}
.x4c{left:282.146655pt;}
.x52{left:286.786655pt;}
.x6{left:287.746655pt;}
.x1f{left:296.866643pt;}
.x20{left:302.306655pt;}
.x7{left:303.906655pt;}
.xa{left:306.946655pt;}
.x10{left:309.986655pt;}
.x14{left:315.746655pt;}
.x30{left:318.626655pt;}
.x3c{left:329.826655pt;}
.x43{left:354.786643pt;}
.x44{left:365.666655pt;}
.x4{left:392.226655pt;}
.x32{left:401.346643pt;}
.x31{left:402.306655pt;}
.x21{left:409.346643pt;}
.x33{left:412.226655pt;}
.x22{left:414.813322pt;}
.x4b{left:423.613322pt;}
.x27{left:451.933310pt;}
.x17{left:453.213310pt;}
.x18{left:458.653322pt;}
.x28{left:462.813322pt;}
.x5b{left:516.733310pt;}
.x3d{left:524.573310pt;}
.x5c{left:527.613322pt;}
.x15{left:534.173310pt;}
.x3e{left:535.453322pt;}
.x16{left:539.613322pt;}
.x49{left:543.773310pt;}
.x57{left:548.093310pt;}
.x4a{left:555.773322pt;}
.x58{left:558.973322pt;}
.xe{left:560.733333pt;}
.x2a{left:588.773310pt;}
.x2b{left:599.973322pt;}
.x12{left:604.613310pt;}
.x13{left:610.053322pt;}
.x55{left:619.173310pt;}
.x56{left:630.053322pt;}
.x34{left:635.013310pt;}
.x59{left:643.973310pt;}
.x35{left:645.893322pt;}
.x5a{left:654.853322pt;}
.x1d{left:697.893310pt;}
.x1e{left:703.333322pt;}
.x2c{left:704.933310pt;}
.x2d{left:715.813322pt;}
.x1{left:717.253322pt;}
}




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