
    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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4269fa32a63959220f450faa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933105;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_de2215a46adf0172cf1c7d06.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_216b1d37638825a890a8e8ac.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9684283f993748114ed06c97.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_38cba92420d6e2cd48757566.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_22b64494600da802fb608a9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955078;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_19b73d2158d10572fddeedc9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5e802d6ba576cdb2cb5cc4f8.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8824251e802a9655ad1b3884.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.990000px;}
.ls13{letter-spacing:-0.942000px;}
.lsd{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.211800px;}
.ls10{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.102000px;}
.ls1f{letter-spacing:-0.090600px;}
.ls6{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.022320px;}
.ls11{letter-spacing:0.083400px;}
.ls1e{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls1c{letter-spacing:4.320000px;}
.ls17{letter-spacing:54.305280px;}
.ls1a{letter-spacing:59.345280px;}
.ls1d{letter-spacing:62.945280px;}
.ls14{letter-spacing:199.416000px;}
.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;}
}
.wsf{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.wse{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.609400px;}
.wsc{word-spacing:-11.118000px;}
.ws7{word-spacing:-11.070000px;}
.wsb{word-spacing:-10.924560px;}
.ws9{word-spacing:-10.902240px;}
.wsa{word-spacing:-10.776240px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-4.428480px;}
._13{margin-left:-3.416160px;}
._d{margin-left:-2.346720px;}
._0{margin-left:-1.258560px;}
._3{width:1.334400px;}
._5{width:3.167280px;}
._4{width:4.183200px;}
._6{width:5.390400px;}
._e{width:6.478560px;}
._15{width:7.497600px;}
._b{width:8.625120px;}
._8{width:9.900480px;}
._c{width:11.030880px;}
._a{width:12.948240px;}
._2{width:14.580000px;}
._1b{width:18.178080px;}
._1e{width:19.205760px;}
._7{width:20.437920px;}
._12{width:22.435680px;}
._11{width:23.533920px;}
._10{width:24.773760px;}
._9{width:26.693040px;}
._19{width:27.754560px;}
._1a{width:29.109600px;}
._1f{width:31.927680px;}
._17{width:42.976080px;}
._18{width:44.508000px;}
._16{width:51.062880px;}
._22{width:52.993920px;}
._24{width:60.193920px;}
._25{width:62.682240px;}
._26{width:64.034400px;}
._1c{width:91.145280px;}
._1d{width:199.416000px;}
._f{width:203.128320px;}
._20{width:267.079680px;}
._21{width:268.314720px;}
._23{width:276.193920px;}
._1{width:1099.053120px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:4.500000px;}
.y5{bottom:7.380000px;}
.y4b{bottom:7.560000px;}
.y4e{bottom:47.340000px;}
.y4d{bottom:54.360000px;}
.y8{bottom:56.340000px;}
.y7{bottom:74.556000px;}
.y47{bottom:110.376000px;}
.y9b{bottom:111.276000px;}
.ycf{bottom:114.876000px;}
.yc8{bottom:115.056000px;}
.y46{bottom:124.236000px;}
.yae{bottom:124.956000px;}
.yd7{bottom:125.136000px;}
.y9a{bottom:125.856000px;}
.yad{bottom:128.736000px;}
.y99{bottom:129.636000px;}
.yc7{bottom:129.996000px;}
.yd9{bottom:133.776000px;}
.y45{bottom:137.916000px;}
.yac{bottom:138.816000px;}
.y98{bottom:140.436000px;}
.y44{bottom:142.416000px;}
.ycb{bottom:142.956000px;}
.y43{bottom:151.770000px;}
.yab{bottom:152.670000px;}
.yd8{bottom:152.850000px;}
.yd5{bottom:153.390000px;}
.y97{bottom:155.190000px;}
.yc4{bottom:156.270000px;}
.yce{bottom:156.810000px;}
.yd4{bottom:157.170000px;}
.yc3{bottom:165.630000px;}
.y42{bottom:166.350000px;}
.yaa{bottom:166.530000px;}
.yd3{bottom:168.150000px;}
.y96{bottom:169.770000px;}
.y41{bottom:170.130000px;}
.ya9{bottom:171.030000px;}
.yd6{bottom:171.390000px;}
.yca{bottom:171.750000px;}
.yd2{bottom:171.930000px;}
.yc2{bottom:180.210000px;}
.yc1{bottom:183.990000px;}
.y95{bottom:184.350000px;}
.y40{bottom:185.250000px;}
.yd1{bottom:186.870000px;}
.y94{bottom:188.130000px;}
.yc9{bottom:190.830000px;}
.yc0{bottom:194.790000px;}
.ybf{bottom:198.570000px;}
.y93{bottom:199.110000px;}
.y3e{bottom:206.310000px;}
.ybe{bottom:208.650000px;}
.yc6{bottom:209.730000px;}
.y3f{bottom:212.250000px;}
.y92{bottom:213.690000px;}
.y91{bottom:217.470000px;}
.ybd{bottom:222.510000px;}
.y3d{bottom:225.210000px;}
.ybc{bottom:227.010000px;}
.y90{bottom:227.550000px;}
.ya8{bottom:228.630000px;}
.ybb{bottom:236.370000px;}
.y8f{bottom:241.410000px;}
.y3c{bottom:244.290000px;}
.ya7{bottom:247.710000px;}
.yba{bottom:250.050000px;}
.y8e{bottom:255.270000px;}
.y8d{bottom:259.770000px;}
.y3b{bottom:263.190000px;}
.yb9{bottom:263.910000px;}
.ya6{bottom:266.610000px;}
.yb8{bottom:268.410000px;}
.y8c{bottom:268.950000px;}
.yb7{bottom:277.770000px;}
.y3a{bottom:282.090000px;}
.yb6{bottom:282.270000px;}
.y8b{bottom:282.810000px;}
.ya5{bottom:285.690000px;}
.y8a{bottom:287.310000px;}
.yb5{bottom:296.490000px;}
.y89{bottom:296.670000px;}
.y39{bottom:301.170000px;}
.ya4{bottom:304.590000px;}
.y88{bottom:310.350000px;}
.y87{bottom:314.850000px;}
.y37{bottom:320.070000px;}
.ya3{bottom:323.490000px;}
.y86{bottom:324.210000px;}
.y38{bottom:326.010000px;}
.y85{bottom:337.935000px;}
.y36{bottom:339.195000px;}
.ya2{bottom:342.615000px;}
.y84{bottom:351.795000px;}
.y83{bottom:356.295000px;}
.y35{bottom:358.095000px;}
.ya1{bottom:361.515000px;}
.y82{bottom:365.655000px;}
.y34{bottom:377.175000px;}
.y81{bottom:379.335000px;}
.ya0{bottom:380.595000px;}
.y80{bottom:394.095000px;}
.y33{bottom:396.075000px;}
.y7f{bottom:397.875000px;}
.y9f{bottom:399.495000px;}
.y7e{bottom:412.815000px;}
.y32{bottom:413.895000px;}
.y9e{bottom:418.575000px;}
.y31{bottom:427.755000px;}
.y7c{bottom:437.475000px;}
.y30{bottom:442.695000px;}
.y7d{bottom:443.415000px;}
.y7a{bottom:456.375000px;}
.y2f{bottom:461.235000px;}
.yb4{bottom:462.315000px;}
.y7b{bottom:463.215000px;}
.y78{bottom:475.455000px;}
.y2e{bottom:478.335000px;}
.y79{bottom:481.395000px;}
.y77{bottom:494.355000px;}
.y2d{bottom:495.615000px;}
.y2c{bottom:512.895000px;}
.y76{bottom:513.435000px;}
.y2b{bottom:530.175000px;}
.y75{bottom:532.335000px;}
.y2a{bottom:547.455000px;}
.y74{bottom:551.235000px;}
.yb3{bottom:557.175000px;}
.y29{bottom:564.735000px;}
.y73{bottom:570.315000px;}
.y28{bottom:581.835000px;}
.y71{bottom:589.215000px;}
.y72{bottom:595.155000px;}
.y27{bottom:599.115000px;}
.y70{bottom:608.325000px;}
.y26{bottom:616.425000px;}
.y6f{bottom:627.225000px;}
.y25{bottom:633.705000px;}
.y6e{bottom:646.125000px;}
.y24{bottom:650.985000px;}
.y6d{bottom:665.205000px;}
.y23{bottom:668.265000px;}
.y6c{bottom:684.105000px;}
.y22{bottom:685.365000px;}
.ycd{bottom:690.045000px;}
.y21{bottom:702.645000px;}
.y6b{bottom:703.185000px;}
.y20{bottom:719.925000px;}
.y6a{bottom:722.085000px;}
.y1f{bottom:737.205000px;}
.y69{bottom:740.985000px;}
.yb2{bottom:746.925000px;}
.y1e{bottom:754.485000px;}
.y67{bottom:760.065000px;}
.y68{bottom:766.005000px;}
.y1d{bottom:771.765000px;}
.y66{bottom:778.965000px;}
.y1c{bottom:788.865000px;}
.y65{bottom:798.045000px;}
.y1b{bottom:806.145000px;}
.y64{bottom:816.945000px;}
.ycc{bottom:822.885000px;}
.y1a{bottom:823.425000px;}
.y63{bottom:835.845000px;}
.y19{bottom:840.705000px;}
.yb1{bottom:841.785000px;}
.y61{bottom:854.925000px;}
.y18{bottom:857.985000px;}
.y62{bottom:860.865000px;}
.y60{bottom:873.870000px;}
.y17{bottom:875.130000px;}
.yb0{bottom:879.810000px;}
.y16{bottom:892.410000px;}
.y5f{bottom:892.950000px;}
.y15{bottom:910.230000px;}
.y5e{bottom:911.850000px;}
.y14{bottom:929.130000px;}
.y5d{bottom:930.930000px;}
.yc5{bottom:936.870000px;}
.y13{bottom:948.030000px;}
.y5c{bottom:949.830000px;}
.y12{bottom:967.110000px;}
.y5b{bottom:968.730000px;}
.y9d{bottom:974.670000px;}
.y11{bottom:986.010000px;}
.y5a{bottom:987.810000px;}
.yaf{bottom:993.750000px;}
.y10{bottom:1005.450000px;}
.y58{bottom:1006.710000px;}
.y59{bottom:1012.650000px;}
.y57{bottom:1025.790000px;}
.yf{bottom:1027.950000px;}
.y56{bottom:1044.690000px;}
.ye{bottom:1050.270000px;}
.y55{bottom:1063.590000px;}
.yd{bottom:1071.870000px;}
.y54{bottom:1082.670000px;}
.yc{bottom:1089.150000px;}
.y53{bottom:1101.570000px;}
.yb{bottom:1106.430000px;}
.yd0{bottom:1107.510000px;}
.y51{bottom:1120.650000px;}
.ya{bottom:1123.530000px;}
.y52{bottom:1126.590000px;}
.y50{bottom:1139.580000px;}
.y9{bottom:1140.840000px;}
.y9c{bottom:1145.520000px;}
.y4c{bottom:1162.980000px;}
.y6{bottom:1168.020000px;}
.y4a{bottom:1178.640000px;}
.y4{bottom:1182.240000px;}
.y49{bottom:1208.520000px;}
.y3{bottom:1211.760000px;}
.y48{bottom:1227.960000px;}
.y2{bottom:1229.400000px;}
.y1{bottom:1247.220000px;}
.h18{height:20.160000px;}
.h16{height:21.114844px;}
.h4{height:26.100000px;}
.h17{height:26.280000px;}
.h12{height:29.158594px;}
.h13{height:30.077578px;}
.h15{height:33.683203px;}
.h10{height:34.036523px;}
.h19{height:34.419375px;}
.h6{height:39.760312px;}
.hf{height:41.726953px;}
.h8{height:42.164648px;}
.hd{height:43.156758px;}
.hc{height:46.251562px;}
.hb{height:46.736719px;}
.h1a{height:47.836406px;}
.h14{height:47.980898px;}
.h1b{height:48.224531px;}
.he{height:49.255313px;}
.h5{height:50.068125px;}
.h3{height:50.364141px;}
.h11{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:55.825312px;}
.ha{height:56.155781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:9.720000px;}
.w3{width:61.200000px;}
.w4{width:619.305000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x3{left:13.860000px;}
.x2{left:108.035987px;}
.x13{left:111.815987px;}
.x22{left:115.595987px;}
.x42{left:117.035987px;}
.x7{left:121.175987px;}
.x21{left:123.515987px;}
.x38{left:138.095987px;}
.x30{left:139.895987px;}
.xd{left:161.129987px;}
.x32{left:162.569973px;}
.x4{left:169.230000px;}
.x33{left:178.589987px;}
.x8{left:180.029987px;}
.x24{left:184.709973px;}
.x40{left:192.809973px;}
.xe{left:195.509973px;}
.xf{left:200.729987px;}
.x41{left:203.249987px;}
.x3c{left:212.969973px;}
.x3d{left:223.409987px;}
.x3a{left:227.909973px;}
.x3b{left:238.349987px;}
.xa{left:274.169987px;}
.x16{left:282.134987px;}
.x39{left:313.274973px;}
.xb{left:320.654987px;}
.x12{left:324.074987px;}
.x1b{left:345.134973px;}
.x1c{left:350.354987px;}
.x9{left:371.774987px;}
.xc{left:420.734987px;}
.x2a{left:439.454973px;}
.x6{left:446.474987px;}
.x2b{left:452.054987px;}
.x2e{left:464.474973px;}
.x23{left:467.204973px;}
.x1f{left:473.324973px;}
.x2f{left:474.944987px;}
.x10{left:476.744973px;}
.x11{left:481.964987px;}
.x20{left:483.764987px;}
.x25{left:485.744987px;}
.x28{left:533.984973px;}
.x29{left:544.424987px;}
.x17{left:561.164973px;}
.x18{left:567.824987px;}
.x3e{left:619.844973px;}
.x36{left:624.164973px;}
.x3f{left:630.284987px;}
.x37{left:634.604987px;}
.x1d{left:645.224973px;}
.x34{left:648.464973px;}
.x1e{left:650.444987px;}
.x35{left:658.949987px;}
.x19{left:667.589973px;}
.x1a{left:672.809987px;}
.x31{left:683.789987px;}
.x26{left:703.769973px;}
.x27{left:714.209987px;}
.x2c{left:745.709973px;}
.x2d{left:756.149987px;}
.x14{left:775.050000px;}
.x15{left:779.909973px;}
.x1{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.880000pt;}
.ls13{letter-spacing:-0.837333pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.188267pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.090667pt;}
.ls1f{letter-spacing:-0.080533pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.019840pt;}
.ls11{letter-spacing:0.074133pt;}
.ls1e{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls17{letter-spacing:48.271360pt;}
.ls1a{letter-spacing:52.751360pt;}
.ls1d{letter-spacing:55.951360pt;}
.ls14{letter-spacing:177.258667pt;}
.wsf{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.400000pt;}
.ws8{word-spacing:-10.319467pt;}
.wsc{word-spacing:-9.882667pt;}
.ws7{word-spacing:-9.840000pt;}
.wsb{word-spacing:-9.710720pt;}
.ws9{word-spacing:-9.690880pt;}
.wsa{word-spacing:-9.578880pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-3.936427pt;}
._13{margin-left:-3.036587pt;}
._d{margin-left:-2.085973pt;}
._0{margin-left:-1.118720pt;}
._3{width:1.186133pt;}
._5{width:2.815360pt;}
._4{width:3.718400pt;}
._6{width:4.791467pt;}
._e{width:5.758720pt;}
._15{width:6.664533pt;}
._b{width:7.666773pt;}
._8{width:8.800427pt;}
._c{width:9.805227pt;}
._a{width:11.509547pt;}
._2{width:12.960000pt;}
._1b{width:16.158293pt;}
._1e{width:17.071787pt;}
._7{width:18.167040pt;}
._12{width:19.942827pt;}
._11{width:20.919040pt;}
._10{width:22.021120pt;}
._9{width:23.727147pt;}
._19{width:24.670720pt;}
._1a{width:25.875200pt;}
._1f{width:28.380160pt;}
._17{width:38.200960pt;}
._18{width:39.562667pt;}
._16{width:45.389227pt;}
._22{width:47.105707pt;}
._24{width:53.505707pt;}
._25{width:55.717547pt;}
._26{width:56.919467pt;}
._1c{width:81.018027pt;}
._1d{width:177.258667pt;}
._f{width:180.558507pt;}
._20{width:237.404160pt;}
._21{width:238.501973pt;}
._23{width:245.505707pt;}
._1{width:976.936107pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:4.000000pt;}
.y5{bottom:6.560000pt;}
.y4b{bottom:6.720000pt;}
.y4e{bottom:42.080000pt;}
.y4d{bottom:48.320000pt;}
.y8{bottom:50.080000pt;}
.y7{bottom:66.272000pt;}
.y47{bottom:98.112000pt;}
.y9b{bottom:98.912000pt;}
.ycf{bottom:102.112000pt;}
.yc8{bottom:102.272000pt;}
.y46{bottom:110.432000pt;}
.yae{bottom:111.072000pt;}
.yd7{bottom:111.232000pt;}
.y9a{bottom:111.872000pt;}
.yad{bottom:114.432000pt;}
.y99{bottom:115.232000pt;}
.yc7{bottom:115.552000pt;}
.yd9{bottom:118.912000pt;}
.y45{bottom:122.592000pt;}
.yac{bottom:123.392000pt;}
.y98{bottom:124.832000pt;}
.y44{bottom:126.592000pt;}
.ycb{bottom:127.072000pt;}
.y43{bottom:134.906667pt;}
.yab{bottom:135.706667pt;}
.yd8{bottom:135.866667pt;}
.yd5{bottom:136.346667pt;}
.y97{bottom:137.946667pt;}
.yc4{bottom:138.906667pt;}
.yce{bottom:139.386667pt;}
.yd4{bottom:139.706667pt;}
.yc3{bottom:147.226667pt;}
.y42{bottom:147.866667pt;}
.yaa{bottom:148.026667pt;}
.yd3{bottom:149.466667pt;}
.y96{bottom:150.906667pt;}
.y41{bottom:151.226667pt;}
.ya9{bottom:152.026667pt;}
.yd6{bottom:152.346667pt;}
.yca{bottom:152.666667pt;}
.yd2{bottom:152.826667pt;}
.yc2{bottom:160.186667pt;}
.yc1{bottom:163.546667pt;}
.y95{bottom:163.866667pt;}
.y40{bottom:164.666667pt;}
.yd1{bottom:166.106667pt;}
.y94{bottom:167.226667pt;}
.yc9{bottom:169.626667pt;}
.yc0{bottom:173.146667pt;}
.ybf{bottom:176.506667pt;}
.y93{bottom:176.986667pt;}
.y3e{bottom:183.386667pt;}
.ybe{bottom:185.466667pt;}
.yc6{bottom:186.426667pt;}
.y3f{bottom:188.666667pt;}
.y92{bottom:189.946667pt;}
.y91{bottom:193.306667pt;}
.ybd{bottom:197.786667pt;}
.y3d{bottom:200.186667pt;}
.ybc{bottom:201.786667pt;}
.y90{bottom:202.266667pt;}
.ya8{bottom:203.226667pt;}
.ybb{bottom:210.106667pt;}
.y8f{bottom:214.586667pt;}
.y3c{bottom:217.146667pt;}
.ya7{bottom:220.186667pt;}
.yba{bottom:222.266667pt;}
.y8e{bottom:226.906667pt;}
.y8d{bottom:230.906667pt;}
.y3b{bottom:233.946667pt;}
.yb9{bottom:234.586667pt;}
.ya6{bottom:236.986667pt;}
.yb8{bottom:238.586667pt;}
.y8c{bottom:239.066667pt;}
.yb7{bottom:246.906667pt;}
.y3a{bottom:250.746667pt;}
.yb6{bottom:250.906667pt;}
.y8b{bottom:251.386667pt;}
.ya5{bottom:253.946667pt;}
.y8a{bottom:255.386667pt;}
.yb5{bottom:263.546667pt;}
.y89{bottom:263.706667pt;}
.y39{bottom:267.706667pt;}
.ya4{bottom:270.746667pt;}
.y88{bottom:275.866667pt;}
.y87{bottom:279.866667pt;}
.y37{bottom:284.506667pt;}
.ya3{bottom:287.546667pt;}
.y86{bottom:288.186667pt;}
.y38{bottom:289.786667pt;}
.y85{bottom:300.386667pt;}
.y36{bottom:301.506667pt;}
.ya2{bottom:304.546667pt;}
.y84{bottom:312.706667pt;}
.y83{bottom:316.706667pt;}
.y35{bottom:318.306667pt;}
.ya1{bottom:321.346667pt;}
.y82{bottom:325.026667pt;}
.y34{bottom:335.266667pt;}
.y81{bottom:337.186667pt;}
.ya0{bottom:338.306667pt;}
.y80{bottom:350.306667pt;}
.y33{bottom:352.066667pt;}
.y7f{bottom:353.666667pt;}
.y9f{bottom:355.106667pt;}
.y7e{bottom:366.946667pt;}
.y32{bottom:367.906667pt;}
.y9e{bottom:372.066667pt;}
.y31{bottom:380.226667pt;}
.y7c{bottom:388.866667pt;}
.y30{bottom:393.506667pt;}
.y7d{bottom:394.146667pt;}
.y7a{bottom:405.666667pt;}
.y2f{bottom:409.986667pt;}
.yb4{bottom:410.946667pt;}
.y7b{bottom:411.746667pt;}
.y78{bottom:422.626667pt;}
.y2e{bottom:425.186667pt;}
.y79{bottom:427.906667pt;}
.y77{bottom:439.426667pt;}
.y2d{bottom:440.546667pt;}
.y2c{bottom:455.906667pt;}
.y76{bottom:456.386667pt;}
.y2b{bottom:471.266667pt;}
.y75{bottom:473.186667pt;}
.y2a{bottom:486.626667pt;}
.y74{bottom:489.986667pt;}
.yb3{bottom:495.266667pt;}
.y29{bottom:501.986667pt;}
.y73{bottom:506.946667pt;}
.y28{bottom:517.186667pt;}
.y71{bottom:523.746667pt;}
.y72{bottom:529.026667pt;}
.y27{bottom:532.546667pt;}
.y70{bottom:540.733333pt;}
.y26{bottom:547.933333pt;}
.y6f{bottom:557.533333pt;}
.y25{bottom:563.293333pt;}
.y6e{bottom:574.333333pt;}
.y24{bottom:578.653333pt;}
.y6d{bottom:591.293333pt;}
.y23{bottom:594.013333pt;}
.y6c{bottom:608.093333pt;}
.y22{bottom:609.213333pt;}
.ycd{bottom:613.373333pt;}
.y21{bottom:624.573333pt;}
.y6b{bottom:625.053333pt;}
.y20{bottom:639.933333pt;}
.y6a{bottom:641.853333pt;}
.y1f{bottom:655.293333pt;}
.y69{bottom:658.653333pt;}
.yb2{bottom:663.933333pt;}
.y1e{bottom:670.653333pt;}
.y67{bottom:675.613333pt;}
.y68{bottom:680.893333pt;}
.y1d{bottom:686.013333pt;}
.y66{bottom:692.413333pt;}
.y1c{bottom:701.213333pt;}
.y65{bottom:709.373333pt;}
.y1b{bottom:716.573333pt;}
.y64{bottom:726.173333pt;}
.ycc{bottom:731.453333pt;}
.y1a{bottom:731.933333pt;}
.y63{bottom:742.973333pt;}
.y19{bottom:747.293333pt;}
.yb1{bottom:748.253333pt;}
.y61{bottom:759.933333pt;}
.y18{bottom:762.653333pt;}
.y62{bottom:765.213333pt;}
.y60{bottom:776.773333pt;}
.y17{bottom:777.893333pt;}
.yb0{bottom:782.053333pt;}
.y16{bottom:793.253333pt;}
.y5f{bottom:793.733333pt;}
.y15{bottom:809.093333pt;}
.y5e{bottom:810.533333pt;}
.y14{bottom:825.893333pt;}
.y5d{bottom:827.493333pt;}
.yc5{bottom:832.773333pt;}
.y13{bottom:842.693333pt;}
.y5c{bottom:844.293333pt;}
.y12{bottom:859.653333pt;}
.y5b{bottom:861.093333pt;}
.y9d{bottom:866.373333pt;}
.y11{bottom:876.453333pt;}
.y5a{bottom:878.053333pt;}
.yaf{bottom:883.333333pt;}
.y10{bottom:893.733333pt;}
.y58{bottom:894.853333pt;}
.y59{bottom:900.133333pt;}
.y57{bottom:911.813333pt;}
.yf{bottom:913.733333pt;}
.y56{bottom:928.613333pt;}
.ye{bottom:933.573333pt;}
.y55{bottom:945.413333pt;}
.yd{bottom:952.773333pt;}
.y54{bottom:962.373333pt;}
.yc{bottom:968.133333pt;}
.y53{bottom:979.173333pt;}
.yb{bottom:983.493333pt;}
.yd0{bottom:984.453333pt;}
.y51{bottom:996.133333pt;}
.ya{bottom:998.693333pt;}
.y52{bottom:1001.413333pt;}
.y50{bottom:1012.960000pt;}
.y9{bottom:1014.080000pt;}
.y9c{bottom:1018.240000pt;}
.y4c{bottom:1033.760000pt;}
.y6{bottom:1038.240000pt;}
.y4a{bottom:1047.680000pt;}
.y4{bottom:1050.880000pt;}
.y49{bottom:1074.240000pt;}
.y3{bottom:1077.120000pt;}
.y48{bottom:1091.520000pt;}
.y2{bottom:1092.800000pt;}
.y1{bottom:1108.640000pt;}
.h18{height:17.920000pt;}
.h16{height:18.768750pt;}
.h4{height:23.200000pt;}
.h17{height:23.360000pt;}
.h12{height:25.918750pt;}
.h13{height:26.735625pt;}
.h15{height:29.940625pt;}
.h10{height:30.254687pt;}
.h19{height:30.595000pt;}
.h6{height:35.342500pt;}
.hf{height:37.090625pt;}
.h8{height:37.479688pt;}
.hd{height:38.361562pt;}
.hc{height:41.112500pt;}
.hb{height:41.543750pt;}
.h1a{height:42.521250pt;}
.h14{height:42.649687pt;}
.h1b{height:42.866250pt;}
.he{height:43.782500pt;}
.h5{height:44.505000pt;}
.h3{height:44.768125pt;}
.h11{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:49.622500pt;}
.ha{height:49.916250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:8.640000pt;}
.w3{width:54.400000pt;}
.w4{width:550.493333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x3{left:12.320000pt;}
.x2{left:96.031988pt;}
.x13{left:99.391988pt;}
.x22{left:102.751988pt;}
.x42{left:104.031988pt;}
.x7{left:107.711988pt;}
.x21{left:109.791988pt;}
.x38{left:122.751988pt;}
.x30{left:124.351988pt;}
.xd{left:143.226655pt;}
.x32{left:144.506643pt;}
.x4{left:150.426667pt;}
.x33{left:158.746655pt;}
.x8{left:160.026655pt;}
.x24{left:164.186643pt;}
.x40{left:171.386643pt;}
.xe{left:173.786643pt;}
.xf{left:178.426655pt;}
.x41{left:180.666655pt;}
.x3c{left:189.306643pt;}
.x3d{left:198.586655pt;}
.x3a{left:202.586643pt;}
.x3b{left:211.866655pt;}
.xa{left:243.706655pt;}
.x16{left:250.786655pt;}
.x39{left:278.466643pt;}
.xb{left:285.026655pt;}
.x12{left:288.066655pt;}
.x1b{left:306.786643pt;}
.x1c{left:311.426655pt;}
.x9{left:330.466655pt;}
.xc{left:373.986655pt;}
.x2a{left:390.626643pt;}
.x6{left:396.866655pt;}
.x2b{left:401.826655pt;}
.x2e{left:412.866643pt;}
.x23{left:415.293310pt;}
.x1f{left:420.733310pt;}
.x2f{left:422.173322pt;}
.x10{left:423.773310pt;}
.x11{left:428.413322pt;}
.x20{left:430.013322pt;}
.x25{left:431.773322pt;}
.x28{left:474.653310pt;}
.x29{left:483.933322pt;}
.x17{left:498.813310pt;}
.x18{left:504.733322pt;}
.x3e{left:550.973310pt;}
.x36{left:554.813310pt;}
.x3f{left:560.253322pt;}
.x37{left:564.093322pt;}
.x1d{left:573.533310pt;}
.x34{left:576.413310pt;}
.x1e{left:578.173322pt;}
.x35{left:585.733322pt;}
.x19{left:593.413310pt;}
.x1a{left:598.053322pt;}
.x31{left:607.813322pt;}
.x26{left:625.573310pt;}
.x27{left:634.853322pt;}
.x2c{left:662.853310pt;}
.x2d{left:672.133322pt;}
.x14{left:688.933333pt;}
.x15{left:693.253310pt;}
.x1{left:697.893322pt;}
}




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