
    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_a2fc3a363c879f2d423d6bba.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e7907e3e57d2a117428df435.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6bd187a9f821e0c8e09490ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f9367a6450a37aa35798eb68.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_17a85096634b747cf0e8cead.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_5bfe78c31a9eaede46b3e5a2.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_0e159e422a56b95143bc5ab1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_a09eb508cf4a0f3943d2b89b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_7b28b7765bb5539d12d0dd7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2e08f953d82800dfbe99491b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.117188;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_a63585dadd503b2269a4f30d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.695312;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_2cf1a4236183d67ec83aa04a.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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:-82.800000px;}
.v4{vertical-align:-80.100000px;}
.v2{vertical-align:-72.000000px;}
.v3{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.206640px;}
.ls4{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.350400px;}
.ls9{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.620000px;}
.ls1a{letter-spacing:2.340000px;}
.ls19{letter-spacing:5.220000px;}
.lse{letter-spacing:7.920000px;}
.ls12{letter-spacing:23.760000px;}
.lsb{letter-spacing:29.520000px;}
.ls14{letter-spacing:33.984000px;}
.ls1d{letter-spacing:65.664000px;}
.ls15{letter-spacing:180.864000px;}
.ls3{letter-spacing:817.380000px;}
.lsa{letter-spacing:838.440000px;}
.ls7{letter-spacing:990.336000px;}
.ls1{letter-spacing:1030.476000px;}
.ls0{letter-spacing:1257.276000px;}
.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;}
}
.ws6{word-spacing:-21.410400px;}
.ws8{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.wsb{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-4.176000px;}
._8{margin-left:-2.976000px;}
._0{margin-left:-1.080000px;}
._1{width:1.596000px;}
._f{width:2.988000px;}
._13{width:4.104000px;}
._12{width:5.184000px;}
._d{width:6.384000px;}
._c{width:7.848000px;}
._1e{width:8.868000px;}
._19{width:9.887520px;}
._a{width:11.712480px;}
._9{width:13.248000px;}
._b{width:14.267040px;}
._1d{width:15.696000px;}
._1b{width:16.992000px;}
._15{width:19.800000px;}
._1a{width:20.808000px;}
._16{width:22.608000px;}
._e{width:23.904000px;}
._1c{width:24.984000px;}
._17{width:26.424000px;}
._18{width:27.504000px;}
._4{width:28.728000px;}
._5{width:30.600000px;}
._14{width:31.884000px;}
._1f{width:33.192000px;}
._6{width:40.536000px;}
._10{width:82.584000px;}
._3{width:407.268000px;}
._2{width:846.156000px;}
._11{width:1087.500000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,71,156);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:10.080000px;}
.yc7{bottom:109.440000px;}
.yd7{bottom:114.660000px;}
.yf1{bottom:125.460000px;}
.yc6{bottom:126.540000px;}
.yed{bottom:127.800000px;}
.ya0{bottom:130.680000px;}
.yce{bottom:131.760000px;}
.yc5{bottom:143.820000px;}
.yf0{bottom:146.160000px;}
.yc4{bottom:149.040000px;}
.y9f{bottom:151.380000px;}
.yc3{bottom:161.130000px;}
.yc2{bottom:166.350000px;}
.yef{bottom:166.890000px;}
.y9e{bottom:172.110000px;}
.yc1{bottom:178.410000px;}
.ycd{bottom:179.670000px;}
.yd6{bottom:183.630000px;}
.yee{bottom:187.590000px;}
.y9d{bottom:192.810000px;}
.yc0{bottom:195.690000px;}
.yd5{bottom:200.910000px;}
.ycb{bottom:208.290000px;}
.ybf{bottom:212.970000px;}
.y9c{bottom:213.510000px;}
.yd4{bottom:214.230000px;}
.ycc{bottom:215.130000px;}
.y29{bottom:226.650000px;}
.yca{bottom:228.990000px;}
.ybe{bottom:230.070000px;}
.y9b{bottom:234.750000px;}
.ybd{bottom:235.290000px;}
.y28{bottom:247.350000px;}
.ybc{bottom:248.610000px;}
.yc9{bottom:249.690000px;}
.ye3{bottom:252.570000px;}
.y9a{bottom:258.330000px;}
.ye2{bottom:264.630000px;}
.y27{bottom:268.050000px;}
.ye1{bottom:269.850000px;}
.ybb{bottom:270.390000px;}
.y99{bottom:279.030000px;}
.ye0{bottom:281.910000px;}
.ydf{bottom:287.130000px;}
.y26{bottom:288.750000px;}
.yba{bottom:291.090000px;}
.yde{bottom:299.190000px;}
.y98{bottom:299.730000px;}
.ydd{bottom:304.410000px;}
.y25{bottom:309.450000px;}
.yb9{bottom:311.790000px;}
.yec{bottom:316.290000px;}
.ydc{bottom:317.550000px;}
.y97{bottom:320.430000px;}
.y24{bottom:330.150000px;}
.yb8{bottom:332.490000px;}
.yeb{bottom:333.570000px;}
.yd3{bottom:339.330000px;}
.y96{bottom:341.130000px;}
.y23{bottom:350.850000px;}
.yb7{bottom:353.190000px;}
.y95{bottom:361.830000px;}
.yea{bottom:368.130000px;}
.y22{bottom:371.550000px;}
.yb6{bottom:373.890000px;}
.y94{bottom:382.530000px;}
.ye9{bottom:385.410000px;}
.y21{bottom:392.250000px;}
.yb5{bottom:394.590000px;}
.ye8{bottom:402.690000px;}
.y93{bottom:403.230000px;}
.y20{bottom:412.995000px;}
.yb4{bottom:415.335000px;}
.ye7{bottom:419.835000px;}
.y92{bottom:423.975000px;}
.ye6{bottom:425.055000px;}
.y1f{bottom:433.695000px;}
.yb3{bottom:436.035000px;}
.ye5{bottom:438.375000px;}
.ydb{bottom:442.875000px;}
.y91{bottom:444.675000px;}
.y1e{bottom:454.395000px;}
.yb2{bottom:456.735000px;}
.y90{bottom:465.375000px;}
.y1d{bottom:471.135000px;}
.yb1{bottom:477.435000px;}
.y54{bottom:483.555000px;}
.yda{bottom:484.275000px;}
.y8f{bottom:486.075000px;}
.yb0{bottom:498.135000px;}
.y53{bottom:500.835000px;}
.yd9{bottom:504.975000px;}
.y8e{bottom:506.775000px;}
.y2a{bottom:510.375000px;}
.y52{bottom:518.115000px;}
.yaf{bottom:518.835000px;}
.y1c{bottom:521.895000px;}
.y8d{bottom:527.475000px;}
.y51{bottom:535.395000px;}
.ya9{bottom:539.535000px;}
.y1b{bottom:542.595000px;}
.yd2{bottom:546.375000px;}
.y8c{bottom:548.175000px;}
.y50{bottom:552.675000px;}
.ya8{bottom:560.235000px;}
.y1a{bottom:563.295000px;}
.yae{bottom:567.075000px;}
.y8b{bottom:568.875000px;}
.y4f{bottom:569.775000px;}
.ya7{bottom:580.935000px;}
.y19{bottom:583.995000px;}
.y4e{bottom:587.055000px;}
.y8a{bottom:589.575000px;}
.ya6{bottom:601.635000px;}
.y4d{bottom:604.335000px;}
.y18{bottom:604.695000px;}
.ye4{bottom:608.475000px;}
.y89{bottom:610.275000px;}
.y6f{bottom:614.055000px;}
.y4c{bottom:621.615000px;}
.ya5{bottom:622.335000px;}
.y17{bottom:625.395000px;}
.yc8{bottom:629.175000px;}
.y88{bottom:630.975000px;}
.y6e{bottom:634.755000px;}
.y4b{bottom:638.895000px;}
.ya4{bottom:643.035000px;}
.y16{bottom:645.735000px;}
.y87{bottom:651.345000px;}
.y6d{bottom:655.485000px;}
.y4a{bottom:656.025000px;}
.ya3{bottom:663.765000px;}
.y15{bottom:665.205000px;}
.y86{bottom:670.605000px;}
.y49{bottom:673.305000px;}
.y6c{bottom:676.185000px;}
.y14{bottom:684.465000px;}
.y48{bottom:690.585000px;}
.y85{bottom:691.305000px;}
.y6b{bottom:696.885000px;}
.y13{bottom:705.165000px;}
.y47{bottom:707.865000px;}
.y84{bottom:712.005000px;}
.y6a{bottom:717.585000px;}
.y46{bottom:725.145000px;}
.y12{bottom:725.865000px;}
.y83{bottom:732.705000px;}
.y69{bottom:738.285000px;}
.y45{bottom:742.425000px;}
.ya2{bottom:746.565000px;}
.y82{bottom:753.405000px;}
.y68{bottom:758.985000px;}
.y44{bottom:759.525000px;}
.y11{bottom:767.265000px;}
.y81{bottom:774.105000px;}
.y43{bottom:776.805000px;}
.y67{bottom:779.685000px;}
.y10{bottom:787.965000px;}
.y42{bottom:794.085000px;}
.y80{bottom:794.805000px;}
.y66{bottom:800.385000px;}
.yf{bottom:808.665000px;}
.y41{bottom:811.365000px;}
.y7f{bottom:815.505000px;}
.y65{bottom:821.085000px;}
.y40{bottom:828.645000px;}
.ye{bottom:829.365000px;}
.y7e{bottom:836.205000px;}
.y64{bottom:841.785000px;}
.y3f{bottom:845.925000px;}
.yd{bottom:850.065000px;}
.y7d{bottom:856.905000px;}
.y63{bottom:862.485000px;}
.y3e{bottom:863.025000px;}
.yc{bottom:870.765000px;}
.y7c{bottom:877.605000px;}
.y3d{bottom:880.305000px;}
.yb{bottom:891.465000px;}
.y3c{bottom:897.630000px;}
.y7b{bottom:898.350000px;}
.y62{bottom:903.210000px;}
.ya{bottom:912.210000px;}
.y3b{bottom:914.910000px;}
.y7a{bottom:919.050000px;}
.y61{bottom:920.490000px;}
.y3a{bottom:932.190000px;}
.y9{bottom:932.910000px;}
.y60{bottom:937.590000px;}
.y79{bottom:939.750000px;}
.y39{bottom:949.470000px;}
.y8{bottom:953.610000px;}
.y5f{bottom:954.870000px;}
.y78{bottom:960.450000px;}
.y5e{bottom:972.150000px;}
.y7{bottom:974.310000px;}
.yad{bottom:981.150000px;}
.y77{bottom:981.690000px;}
.y38{bottom:983.850000px;}
.y5d{bottom:986.190000px;}
.y6{bottom:995.010000px;}
.y37{bottom:1001.130000px;}
.yd0{bottom:1001.850000px;}
.y76{bottom:1005.270000px;}
.y5c{bottom:1006.890000px;}
.y30{bottom:1015.710000px;}
.y36{bottom:1018.410000px;}
.ycf{bottom:1022.550000px;}
.y5b{bottom:1023.990000px;}
.y75{bottom:1025.970000px;}
.y35{bottom:1035.690000px;}
.y5{bottom:1036.410000px;}
.y5a{bottom:1041.270000px;}
.yd8{bottom:1043.250000px;}
.y74{bottom:1046.670000px;}
.y34{bottom:1052.790000px;}
.y2f{bottom:1057.110000px;}
.y59{bottom:1058.550000px;}
.y4{bottom:1058.910000px;}
.y73{bottom:1067.370000px;}
.y33{bottom:1070.070000px;}
.y58{bottom:1075.830000px;}
.y2e{bottom:1077.810000px;}
.y32{bottom:1087.350000px;}
.y72{bottom:1088.070000px;}
.y57{bottom:1089.870000px;}
.y3{bottom:1090.050000px;}
.ya1{bottom:1098.510000px;}
.y2d{bottom:1100.310000px;}
.y31{bottom:1104.630000px;}
.yac{bottom:1105.350000px;}
.y71{bottom:1109.310000px;}
.y2{bottom:1119.210000px;}
.y56{bottom:1125.330000px;}
.yd1{bottom:1126.050000px;}
.y2c{bottom:1131.450000px;}
.y70{bottom:1134.330000px;}
.y1{bottom:1139.910000px;}
.y55{bottom:1142.640000px;}
.yab{bottom:1173.420000px;}
.yaa{bottom:1193.040000px;}
.h14{height:38.158594px;}
.h12{height:47.344922px;}
.h15{height:53.573906px;}
.ha{height:58.621992px;}
.hb{height:58.651172px;}
.hc{height:60.226875px;}
.hd{height:61.189805px;}
.h11{height:64.546875px;}
.h4{height:65.010937px;}
.h5{height:65.884219px;}
.h6{height:70.628906px;}
.h2{height:70.664062px;}
.h8{height:71.613281px;}
.he{height:72.562500px;}
.h16{height:74.004654px;}
.h13{height:74.953125px;}
.h10{height:84.898125px;}
.hf{height:96.508125px;}
.h3{height:108.843750px;}
.h9{height:110.583984px;}
.h7{height:118.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:357.015000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x4{left:127.655987px;}
.x29{left:130.895987px;}
.x2b{left:135.395987px;}
.x3d{left:137.375987px;}
.x26{left:152.309987px;}
.x38{left:154.649987px;}
.x39{left:170.129987px;}
.x8{left:174.269987px;}
.x37{left:181.649987px;}
.x3{left:186.869987px;}
.x2{left:189.929987px;}
.xf{left:192.089987px;}
.x5a{left:198.929987px;}
.x27{left:212.069987px;}
.x52{left:218.549973px;}
.xd{left:223.770000px;}
.x53{left:230.789987px;}
.x13{left:232.589987px;}
.x32{left:245.549987px;}
.x4c{left:266.609973px;}
.x12{left:269.309987px;}
.x4d{left:278.849987px;}
.x6{left:282.269987px;}
.xa{left:292.169987px;}
.x46{left:293.789987px;}
.x44{left:310.934973px;}
.x57{left:318.494973px;}
.x45{left:323.174987px;}
.xc{left:324.614987px;}
.x58{left:330.734987px;}
.x24{left:334.874987px;}
.x51{left:336.494987px;}
.x34{left:339.374987px;}
.x5{left:344.234987px;}
.x10{left:346.574987px;}
.x1f{left:358.994987px;}
.x21{left:361.694987px;}
.x25{left:363.134987px;}
.x33{left:364.574987px;}
.x1e{left:365.654987px;}
.x20{left:367.634987px;}
.x17{left:371.594987px;}
.x3a{left:374.294987px;}
.x18{left:375.374987px;}
.x7{left:377.354987px;}
.x47{left:379.874973px;}
.x15{left:382.934987px;}
.x19{left:388.514987px;}
.x1a{left:392.114987px;}
.x14{left:393.194987px;}
.xb{left:395.714987px;}
.x1d{left:398.054987px;}
.x22{left:399.314987px;}
.x1b{left:405.434987px;}
.x16{left:406.694987px;}
.x23{left:408.854987px;}
.x11{left:412.994987px;}
.x1c{left:415.874987px;}
.x28{left:418.574987px;}
.x5e{left:421.994987px;}
.x1{left:446.474987px;}
.x40{left:472.034973px;}
.x3e{left:473.294973px;}
.x41{left:484.274987px;}
.x3f{left:485.534987px;}
.x4f{left:506.264973px;}
.x9{left:511.124987px;}
.x5d{left:514.544973px;}
.x50{left:518.504987px;}
.x42{left:526.244973px;}
.x43{left:538.484987px;}
.x35{left:541.364973px;}
.x36{left:553.604987px;}
.x54{left:601.844973px;}
.x55{left:614.084987px;}
.x56{left:633.884973px;}
.x5b{left:640.004973px;}
.x48{left:646.304973px;}
.x5c{left:652.244987px;}
.x49{left:658.544987px;}
.x59{left:712.949973px;}
.x4e{left:714.749973px;}
.x2e{left:716.009987px;}
.x2d{left:720.509987px;}
.x2f{left:725.009987px;}
.x3b{left:727.529973px;}
.x2a{left:734.009987px;}
.x2c{left:738.509987px;}
.x3c{left:739.769987px;}
.x30{left:743.009987px;}
.x4a{left:748.949973px;}
.x4b{left:761.189987px;}
.x31{left:765.509987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-71.200000pt;}
.v2{vertical-align:-64.000000pt;}
.v3{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.183680pt;}
.ls4{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.311467pt;}
.ls9{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls19{letter-spacing:4.640000pt;}
.lse{letter-spacing:7.040000pt;}
.ls12{letter-spacing:21.120000pt;}
.lsb{letter-spacing:26.240000pt;}
.ls14{letter-spacing:30.208000pt;}
.ls1d{letter-spacing:58.368000pt;}
.ls15{letter-spacing:160.768000pt;}
.ls3{letter-spacing:726.560000pt;}
.lsa{letter-spacing:745.280000pt;}
.ls7{letter-spacing:880.298667pt;}
.ls1{letter-spacing:915.978667pt;}
.ls0{letter-spacing:1117.578667pt;}
.ws6{word-spacing:-19.031467pt;}
.ws8{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsb{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-3.712000pt;}
._8{margin-left:-2.645333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.418667pt;}
._f{width:2.656000pt;}
._13{width:3.648000pt;}
._12{width:4.608000pt;}
._d{width:5.674667pt;}
._c{width:6.976000pt;}
._1e{width:7.882667pt;}
._19{width:8.788907pt;}
._a{width:10.411093pt;}
._9{width:11.776000pt;}
._b{width:12.681813pt;}
._1d{width:13.952000pt;}
._1b{width:15.104000pt;}
._15{width:17.600000pt;}
._1a{width:18.496000pt;}
._16{width:20.096000pt;}
._e{width:21.248000pt;}
._1c{width:22.208000pt;}
._17{width:23.488000pt;}
._18{width:24.448000pt;}
._4{width:25.536000pt;}
._5{width:27.200000pt;}
._14{width:28.341333pt;}
._1f{width:29.504000pt;}
._6{width:36.032000pt;}
._10{width:73.408000pt;}
._3{width:362.016000pt;}
._2{width:752.138667pt;}
._11{width:966.666667pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:8.960000pt;}
.yc7{bottom:97.280000pt;}
.yd7{bottom:101.920000pt;}
.yf1{bottom:111.520000pt;}
.yc6{bottom:112.480000pt;}
.yed{bottom:113.600000pt;}
.ya0{bottom:116.160000pt;}
.yce{bottom:117.120000pt;}
.yc5{bottom:127.840000pt;}
.yf0{bottom:129.920000pt;}
.yc4{bottom:132.480000pt;}
.y9f{bottom:134.560000pt;}
.yc3{bottom:143.226667pt;}
.yc2{bottom:147.866667pt;}
.yef{bottom:148.346667pt;}
.y9e{bottom:152.986667pt;}
.yc1{bottom:158.586667pt;}
.ycd{bottom:159.706667pt;}
.yd6{bottom:163.226667pt;}
.yee{bottom:166.746667pt;}
.y9d{bottom:171.386667pt;}
.yc0{bottom:173.946667pt;}
.yd5{bottom:178.586667pt;}
.ycb{bottom:185.146667pt;}
.ybf{bottom:189.306667pt;}
.y9c{bottom:189.786667pt;}
.yd4{bottom:190.426667pt;}
.ycc{bottom:191.226667pt;}
.y29{bottom:201.466667pt;}
.yca{bottom:203.546667pt;}
.ybe{bottom:204.506667pt;}
.y9b{bottom:208.666667pt;}
.ybd{bottom:209.146667pt;}
.y28{bottom:219.866667pt;}
.ybc{bottom:220.986667pt;}
.yc9{bottom:221.946667pt;}
.ye3{bottom:224.506667pt;}
.y9a{bottom:229.626667pt;}
.ye2{bottom:235.226667pt;}
.y27{bottom:238.266667pt;}
.ye1{bottom:239.866667pt;}
.ybb{bottom:240.346667pt;}
.y99{bottom:248.026667pt;}
.ye0{bottom:250.586667pt;}
.ydf{bottom:255.226667pt;}
.y26{bottom:256.666667pt;}
.yba{bottom:258.746667pt;}
.yde{bottom:265.946667pt;}
.y98{bottom:266.426667pt;}
.ydd{bottom:270.586667pt;}
.y25{bottom:275.066667pt;}
.yb9{bottom:277.146667pt;}
.yec{bottom:281.146667pt;}
.ydc{bottom:282.266667pt;}
.y97{bottom:284.826667pt;}
.y24{bottom:293.466667pt;}
.yb8{bottom:295.546667pt;}
.yeb{bottom:296.506667pt;}
.yd3{bottom:301.626667pt;}
.y96{bottom:303.226667pt;}
.y23{bottom:311.866667pt;}
.yb7{bottom:313.946667pt;}
.y95{bottom:321.626667pt;}
.yea{bottom:327.226667pt;}
.y22{bottom:330.266667pt;}
.yb6{bottom:332.346667pt;}
.y94{bottom:340.026667pt;}
.ye9{bottom:342.586667pt;}
.y21{bottom:348.666667pt;}
.yb5{bottom:350.746667pt;}
.ye8{bottom:357.946667pt;}
.y93{bottom:358.426667pt;}
.y20{bottom:367.106667pt;}
.yb4{bottom:369.186667pt;}
.ye7{bottom:373.186667pt;}
.y92{bottom:376.866667pt;}
.ye6{bottom:377.826667pt;}
.y1f{bottom:385.506667pt;}
.yb3{bottom:387.586667pt;}
.ye5{bottom:389.666667pt;}
.ydb{bottom:393.666667pt;}
.y91{bottom:395.266667pt;}
.y1e{bottom:403.906667pt;}
.yb2{bottom:405.986667pt;}
.y90{bottom:413.666667pt;}
.y1d{bottom:418.786667pt;}
.yb1{bottom:424.386667pt;}
.y54{bottom:429.826667pt;}
.yda{bottom:430.466667pt;}
.y8f{bottom:432.066667pt;}
.yb0{bottom:442.786667pt;}
.y53{bottom:445.186667pt;}
.yd9{bottom:448.866667pt;}
.y8e{bottom:450.466667pt;}
.y2a{bottom:453.666667pt;}
.y52{bottom:460.546667pt;}
.yaf{bottom:461.186667pt;}
.y1c{bottom:463.906667pt;}
.y8d{bottom:468.866667pt;}
.y51{bottom:475.906667pt;}
.ya9{bottom:479.586667pt;}
.y1b{bottom:482.306667pt;}
.yd2{bottom:485.666667pt;}
.y8c{bottom:487.266667pt;}
.y50{bottom:491.266667pt;}
.ya8{bottom:497.986667pt;}
.y1a{bottom:500.706667pt;}
.yae{bottom:504.066667pt;}
.y8b{bottom:505.666667pt;}
.y4f{bottom:506.466667pt;}
.ya7{bottom:516.386667pt;}
.y19{bottom:519.106667pt;}
.y4e{bottom:521.826667pt;}
.y8a{bottom:524.066667pt;}
.ya6{bottom:534.786667pt;}
.y4d{bottom:537.186667pt;}
.y18{bottom:537.506667pt;}
.ye4{bottom:540.866667pt;}
.y89{bottom:542.466667pt;}
.y6f{bottom:545.826667pt;}
.y4c{bottom:552.546667pt;}
.ya5{bottom:553.186667pt;}
.y17{bottom:555.906667pt;}
.yc8{bottom:559.266667pt;}
.y88{bottom:560.866667pt;}
.y6e{bottom:564.226667pt;}
.y4b{bottom:567.906667pt;}
.ya4{bottom:571.586667pt;}
.y16{bottom:573.986667pt;}
.y87{bottom:578.973333pt;}
.y6d{bottom:582.653333pt;}
.y4a{bottom:583.133333pt;}
.ya3{bottom:590.013333pt;}
.y15{bottom:591.293333pt;}
.y86{bottom:596.093333pt;}
.y49{bottom:598.493333pt;}
.y6c{bottom:601.053333pt;}
.y14{bottom:608.413333pt;}
.y48{bottom:613.853333pt;}
.y85{bottom:614.493333pt;}
.y6b{bottom:619.453333pt;}
.y13{bottom:626.813333pt;}
.y47{bottom:629.213333pt;}
.y84{bottom:632.893333pt;}
.y6a{bottom:637.853333pt;}
.y46{bottom:644.573333pt;}
.y12{bottom:645.213333pt;}
.y83{bottom:651.293333pt;}
.y69{bottom:656.253333pt;}
.y45{bottom:659.933333pt;}
.ya2{bottom:663.613333pt;}
.y82{bottom:669.693333pt;}
.y68{bottom:674.653333pt;}
.y44{bottom:675.133333pt;}
.y11{bottom:682.013333pt;}
.y81{bottom:688.093333pt;}
.y43{bottom:690.493333pt;}
.y67{bottom:693.053333pt;}
.y10{bottom:700.413333pt;}
.y42{bottom:705.853333pt;}
.y80{bottom:706.493333pt;}
.y66{bottom:711.453333pt;}
.yf{bottom:718.813333pt;}
.y41{bottom:721.213333pt;}
.y7f{bottom:724.893333pt;}
.y65{bottom:729.853333pt;}
.y40{bottom:736.573333pt;}
.ye{bottom:737.213333pt;}
.y7e{bottom:743.293333pt;}
.y64{bottom:748.253333pt;}
.y3f{bottom:751.933333pt;}
.yd{bottom:755.613333pt;}
.y7d{bottom:761.693333pt;}
.y63{bottom:766.653333pt;}
.y3e{bottom:767.133333pt;}
.yc{bottom:774.013333pt;}
.y7c{bottom:780.093333pt;}
.y3d{bottom:782.493333pt;}
.yb{bottom:792.413333pt;}
.y3c{bottom:797.893333pt;}
.y7b{bottom:798.533333pt;}
.y62{bottom:802.853333pt;}
.ya{bottom:810.853333pt;}
.y3b{bottom:813.253333pt;}
.y7a{bottom:816.933333pt;}
.y61{bottom:818.213333pt;}
.y3a{bottom:828.613333pt;}
.y9{bottom:829.253333pt;}
.y60{bottom:833.413333pt;}
.y79{bottom:835.333333pt;}
.y39{bottom:843.973333pt;}
.y8{bottom:847.653333pt;}
.y5f{bottom:848.773333pt;}
.y78{bottom:853.733333pt;}
.y5e{bottom:864.133333pt;}
.y7{bottom:866.053333pt;}
.yad{bottom:872.133333pt;}
.y77{bottom:872.613333pt;}
.y38{bottom:874.533333pt;}
.y5d{bottom:876.613333pt;}
.y6{bottom:884.453333pt;}
.y37{bottom:889.893333pt;}
.yd0{bottom:890.533333pt;}
.y76{bottom:893.573333pt;}
.y5c{bottom:895.013333pt;}
.y30{bottom:902.853333pt;}
.y36{bottom:905.253333pt;}
.ycf{bottom:908.933333pt;}
.y5b{bottom:910.213333pt;}
.y75{bottom:911.973333pt;}
.y35{bottom:920.613333pt;}
.y5{bottom:921.253333pt;}
.y5a{bottom:925.573333pt;}
.yd8{bottom:927.333333pt;}
.y74{bottom:930.373333pt;}
.y34{bottom:935.813333pt;}
.y2f{bottom:939.653333pt;}
.y59{bottom:940.933333pt;}
.y4{bottom:941.253333pt;}
.y73{bottom:948.773333pt;}
.y33{bottom:951.173333pt;}
.y58{bottom:956.293333pt;}
.y2e{bottom:958.053333pt;}
.y32{bottom:966.533333pt;}
.y72{bottom:967.173333pt;}
.y57{bottom:968.773333pt;}
.y3{bottom:968.933333pt;}
.ya1{bottom:976.453333pt;}
.y2d{bottom:978.053333pt;}
.y31{bottom:981.893333pt;}
.yac{bottom:982.533333pt;}
.y71{bottom:986.053333pt;}
.y2{bottom:994.853333pt;}
.y56{bottom:1000.293333pt;}
.yd1{bottom:1000.933333pt;}
.y2c{bottom:1005.733333pt;}
.y70{bottom:1008.293333pt;}
.y1{bottom:1013.253333pt;}
.y55{bottom:1015.680000pt;}
.yab{bottom:1043.040000pt;}
.yaa{bottom:1060.480000pt;}
.h14{height:33.918750pt;}
.h12{height:42.084375pt;}
.h15{height:47.621250pt;}
.ha{height:52.108438pt;}
.hb{height:52.134375pt;}
.hc{height:53.535000pt;}
.hd{height:54.390938pt;}
.h11{height:57.375000pt;}
.h4{height:57.787500pt;}
.h5{height:58.563750pt;}
.h6{height:62.781250pt;}
.h2{height:62.812500pt;}
.h8{height:63.656250pt;}
.he{height:64.500000pt;}
.h16{height:65.781915pt;}
.h13{height:66.625000pt;}
.h10{height:75.465000pt;}
.hf{height:85.785000pt;}
.h3{height:96.750000pt;}
.h9{height:98.296875pt;}
.h7{height:104.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:317.346667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x4{left:113.471988pt;}
.x29{left:116.351988pt;}
.x2b{left:120.351988pt;}
.x3d{left:122.111988pt;}
.x26{left:135.386655pt;}
.x38{left:137.466655pt;}
.x39{left:151.226655pt;}
.x8{left:154.906655pt;}
.x37{left:161.466655pt;}
.x3{left:166.106655pt;}
.x2{left:168.826655pt;}
.xf{left:170.746655pt;}
.x5a{left:176.826655pt;}
.x27{left:188.506655pt;}
.x52{left:194.266643pt;}
.xd{left:198.906667pt;}
.x53{left:205.146655pt;}
.x13{left:206.746655pt;}
.x32{left:218.266655pt;}
.x4c{left:236.986643pt;}
.x12{left:239.386655pt;}
.x4d{left:247.866655pt;}
.x6{left:250.906655pt;}
.xa{left:259.706655pt;}
.x46{left:261.146655pt;}
.x44{left:276.386643pt;}
.x57{left:283.106643pt;}
.x45{left:287.266655pt;}
.xc{left:288.546655pt;}
.x58{left:293.986655pt;}
.x24{left:297.666655pt;}
.x51{left:299.106655pt;}
.x34{left:301.666655pt;}
.x5{left:305.986655pt;}
.x10{left:308.066655pt;}
.x1f{left:319.106655pt;}
.x21{left:321.506655pt;}
.x25{left:322.786655pt;}
.x33{left:324.066655pt;}
.x1e{left:325.026655pt;}
.x20{left:326.786655pt;}
.x17{left:330.306655pt;}
.x3a{left:332.706655pt;}
.x18{left:333.666655pt;}
.x7{left:335.426655pt;}
.x47{left:337.666643pt;}
.x15{left:340.386655pt;}
.x19{left:345.346655pt;}
.x1a{left:348.546655pt;}
.x14{left:349.506655pt;}
.xb{left:351.746655pt;}
.x1d{left:353.826655pt;}
.x22{left:354.946655pt;}
.x1b{left:360.386655pt;}
.x16{left:361.506655pt;}
.x23{left:363.426655pt;}
.x11{left:367.106655pt;}
.x1c{left:369.666655pt;}
.x28{left:372.066655pt;}
.x5e{left:375.106655pt;}
.x1{left:396.866655pt;}
.x40{left:419.586643pt;}
.x3e{left:420.706643pt;}
.x41{left:430.466655pt;}
.x3f{left:431.586655pt;}
.x4f{left:450.013310pt;}
.x9{left:454.333322pt;}
.x5d{left:457.373310pt;}
.x50{left:460.893322pt;}
.x42{left:467.773310pt;}
.x43{left:478.653322pt;}
.x35{left:481.213310pt;}
.x36{left:492.093322pt;}
.x54{left:534.973310pt;}
.x55{left:545.853322pt;}
.x56{left:563.453310pt;}
.x5b{left:568.893310pt;}
.x48{left:574.493310pt;}
.x5c{left:579.773322pt;}
.x49{left:585.373322pt;}
.x59{left:633.733310pt;}
.x4e{left:635.333310pt;}
.x2e{left:636.453322pt;}
.x2d{left:640.453322pt;}
.x2f{left:644.453322pt;}
.x3b{left:646.693310pt;}
.x2a{left:652.453322pt;}
.x2c{left:656.453322pt;}
.x3c{left:657.573322pt;}
.x30{left:660.453322pt;}
.x4a{left:665.733310pt;}
.x4b{left:676.613322pt;}
.x31{left:680.453322pt;}
}




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