
    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_7877cd438100d5e060a02293.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e602a7506a6256957fa7ab25.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3c5668312a5bc5405de77f0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bf2addad3536e365bd8e7815.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f2580e7c05f5d8e75c81a570.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_89ce392268aab590b8d6ffa2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8cbdaaace3c265b805b2ec06.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,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;}
.ls13{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.684000px;}
.ls1a{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.037440px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.208200px;}
.ls19{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls15{letter-spacing:10.800000px;}
.ls16{letter-spacing:12.960000px;}
.ls18{letter-spacing:13.680000px;}
.ls17{letter-spacing:14.400000px;}
.ls1b{letter-spacing:15.840000px;}
.ls9{letter-spacing:43.541280px;}
.ls7{letter-spacing:63.677280px;}
.ls10{letter-spacing:1068.780000px;}
.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;}
}
.ws15{word-spacing:-72.000000px;}
.ws4{word-spacing:-48.600000px;}
.ws1{word-spacing:-24.148200px;}
.ws0{word-spacing:-23.921280px;}
.ws2{word-spacing:-23.256000px;}
.ws8{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.022560px;}
.ws12{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.720000px;}
.ws18{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.568000px;}
.ws10{word-spacing:-17.280000px;}
.ws14{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.488000px;}
.wse{word-spacing:-15.300000px;}
.wsf{word-spacing:-14.580000px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-4.941120px;}
._6{margin-left:-3.901440px;}
._7{margin-left:-2.662560px;}
._0{margin-left:-1.457280px;}
._1{width:1.722240px;}
._f{width:3.384000px;}
._15{width:4.752000px;}
._12{width:6.215040px;}
._11{width:7.272000px;}
._a{width:8.892000px;}
._b{width:10.332000px;}
._13{width:11.376000px;}
._e{width:12.960000px;}
._c{width:14.472000px;}
._d{width:15.480000px;}
._1c{width:16.860000px;}
._10{width:19.368000px;}
._27{width:20.557440px;}
._26{width:21.977280px;}
._1d{width:23.400000px;}
._1e{width:24.431040px;}
._24{width:25.824480px;}
._23{width:26.856000px;}
._1b{width:28.529280px;}
._19{width:29.880000px;}
._1a{width:31.908000px;}
._21{width:34.848000px;}
._22{width:36.144000px;}
._17{width:37.908000px;}
._16{width:39.888000px;}
._20{width:40.924800px;}
._1f{width:42.209280px;}
._18{width:45.192000px;}
._8{width:53.360640px;}
._4{width:65.232960px;}
._5{width:67.011600px;}
._3{width:70.383600px;}
._9{width:77.375520px;}
._28{width:80.136000px;}
._29{width:81.504000px;}
._2{width:91.356480px;}
._25{width:111.168000px;}
.fc1{color:rgb(0,0,9);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs6{font-size:20.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:7.200000px;}
.yb3{bottom:7.380000px;}
.ya6{bottom:7.560000px;}
.ya4{bottom:10.080000px;}
.ya9{bottom:10.260000px;}
.yb0{bottom:10.440000px;}
.y5{bottom:81.540000px;}
.y4{bottom:86.040000px;}
.y3{bottom:105.120000px;}
.y2{bottom:124.020000px;}
.y1{bottom:142.956000px;}
.y55{bottom:164.370000px;}
.y100{bottom:165.090000px;}
.y70{bottom:171.210000px;}
.y84{bottom:175.530000px;}
.y30{bottom:179.310000px;}
.yff{bottom:185.790000px;}
.y54{bottom:195.510000px;}
.ya1{bottom:196.950000px;}
.y2f{bottom:200.010000px;}
.y6f{bottom:202.170000px;}
.yfe{bottom:206.490000px;}
.y83{bottom:206.670000px;}
.y2e{bottom:220.710000px;}
.y53{bottom:226.470000px;}
.yfd{bottom:227.190000px;}
.y6e{bottom:233.130000px;}
.ya0{bottom:233.850000px;}
.y82{bottom:237.630000px;}
.y2d{bottom:241.230000px;}
.yfc{bottom:247.890000px;}
.y52{bottom:257.610000px;}
.y6d{bottom:260.310000px;}
.y2c{bottom:261.930000px;}
.y81{bottom:268.590000px;}
.y9f{bottom:270.930000px;}
.yde{bottom:281.550000px;}
.y2b{bottom:282.810000px;}
.y6c{bottom:284.610000px;}
.y51{bottom:288.570000px;}
.yfb{bottom:289.290000px;}
.y80{bottom:295.950000px;}
.yc3{bottom:300.090000px;}
.y9e{bottom:301.890000px;}
.y2a{bottom:303.510000px;}
.yfa{bottom:309.990000px;}
.ydd{bottom:312.690000px;}
.y7f{bottom:319.530000px;}
.y50{bottom:319.710000px;}
.y6b{bottom:320.070000px;}
.y29{bottom:324.210000px;}
.yf9{bottom:330.690000px;}
.yc2{bottom:331.050000px;}
.y9d{bottom:332.850000px;}
.y6a{bottom:343.650000px;}
.y28{bottom:344.910000px;}
.y4f{bottom:350.670000px;}
.yf8{bottom:351.390000px;}
.y7e{bottom:359.670000px;}
.y9c{bottom:360.210000px;}
.yc1{bottom:362.190000px;}
.y27{bottom:365.610000px;}
.yf7{bottom:372.090000px;}
.ydc{bottom:374.790000px;}
.y69{bottom:379.470000px;}
.y4e{bottom:381.810000px;}
.y26{bottom:386.310000px;}
.y9b{bottom:388.515000px;}
.y7d{bottom:390.675000px;}
.yf6{bottom:392.835000px;}
.yc0{bottom:393.195000px;}
.ydb{bottom:405.795000px;}
.y25{bottom:407.055000px;}
.y9a{bottom:409.035000px;}
.y68{bottom:410.655000px;}
.y4d{bottom:412.815000px;}
.yf5{bottom:413.535000px;}
.y7c{bottom:421.815000px;}
.ybf{bottom:424.155000px;}
.y24{bottom:427.755000px;}
.y99{bottom:429.735000px;}
.yf4{bottom:434.235000px;}
.yda{bottom:436.935000px;}
.y67{bottom:441.615000px;}
.y4c{bottom:443.955000px;}
.y23{bottom:448.455000px;}
.y7b{bottom:452.775000px;}
.yf3{bottom:454.935000px;}
.ybe{bottom:455.295000px;}
.yd9{bottom:467.895000px;}
.y22{bottom:469.155000px;}
.y98{bottom:471.135000px;}
.y66{bottom:472.755000px;}
.y4b{bottom:474.915000px;}
.yf2{bottom:475.635000px;}
.y7a{bottom:483.915000px;}
.ybd{bottom:486.255000px;}
.y21{bottom:489.855000px;}
.yf1{bottom:496.335000px;}
.yd8{bottom:499.035000px;}
.y97{bottom:502.095000px;}
.y65{bottom:503.715000px;}
.y4a{bottom:506.055000px;}
.y20{bottom:510.555000px;}
.y79{bottom:515.055000px;}
.yf0{bottom:517.035000px;}
.ybc{bottom:517.395000px;}
.yd7{bottom:529.995000px;}
.y1f{bottom:531.255000px;}
.y96{bottom:533.235000px;}
.y64{bottom:534.855000px;}
.y49{bottom:537.015000px;}
.yef{bottom:537.735000px;}
.y78{bottom:546.195000px;}
.ybb{bottom:548.355000px;}
.y1e{bottom:551.955000px;}
.yee{bottom:558.435000px;}
.yd6{bottom:561.135000px;}
.y95{bottom:564.195000px;}
.y63{bottom:565.815000px;}
.y48{bottom:568.155000px;}
.yba{bottom:569.235000px;}
.y1d{bottom:572.655000px;}
.y77{bottom:576.975000px;}
.yed{bottom:579.135000px;}
.yd5{bottom:592.095000px;}
.y1c{bottom:593.355000px;}
.y94{bottom:595.155000px;}
.y62{bottom:596.955000px;}
.y47{bottom:599.115000px;}
.yec{bottom:599.835000px;}
.yb9{bottom:600.735000px;}
.y76{bottom:604.155000px;}
.y1b{bottom:614.055000px;}
.yb8{bottom:615.495000px;}
.yeb{bottom:620.535000px;}
.y93{bottom:622.515000px;}
.yd4{bottom:623.055000px;}
.y75{bottom:627.195000px;}
.y61{bottom:627.915000px;}
.y46{bottom:630.255000px;}
.y1a{bottom:634.755000px;}
.yea{bottom:641.265000px;}
.yb7{bottom:645.045000px;}
.y74{bottom:645.585000px;}
.y92{bottom:646.125000px;}
.yd3{bottom:654.225000px;}
.y19{bottom:655.485000px;}
.y60{bottom:659.085000px;}
.y45{bottom:661.245000px;}
.ye9{bottom:661.965000px;}
.y73{bottom:662.865000px;}
.yb5{bottom:671.685000px;}
.y18{bottom:676.185000px;}
.ye8{bottom:682.845000px;}
.yd2{bottom:685.365000px;}
.y91{bottom:686.265000px;}
.y5f{bottom:690.045000px;}
.y44{bottom:692.385000px;}
.y17{bottom:696.885000px;}
.yb4{bottom:698.325000px;}
.ye7{bottom:709.845000px;}
.yd1{bottom:716.325000px;}
.y90{bottom:717.225000px;}
.y16{bottom:717.585000px;}
.y5e{bottom:721.185000px;}
.y43{bottom:723.345000px;}
.yb2{bottom:724.965000px;}
.y15{bottom:738.285000px;}
.yd0{bottom:747.465000px;}
.y8f{bottom:748.365000px;}
.ye6{bottom:748.545000px;}
.yb1{bottom:751.605000px;}
.y5d{bottom:752.145000px;}
.y42{bottom:754.305000px;}
.y14{bottom:758.985000px;}
.yaf{bottom:776.265000px;}
.ycf{bottom:778.425000px;}
.y8e{bottom:779.325000px;}
.ye5{bottom:779.505000px;}
.y13{bottom:779.685000px;}
.y41{bottom:781.485000px;}
.y5c{bottom:783.285000px;}
.y12{bottom:800.385000px;}
.yae{bottom:804.885000px;}
.y40{bottom:805.245000px;}
.yce{bottom:809.565000px;}
.y8d{bottom:810.465000px;}
.ye4{bottom:810.645000px;}
.y5b{bottom:814.245000px;}
.y11{bottom:821.085000px;}
.y3f{bottom:834.945000px;}
.ycd{bottom:840.525000px;}
.y8c{bottom:841.425000px;}
.ye3{bottom:841.605000px;}
.y10{bottom:841.785000px;}
.y5a{bottom:845.385000px;}
.y3e{bottom:855.645000px;}
.yf{bottom:862.485000px;}
.ycc{bottom:871.665000px;}
.y8b{bottom:872.565000px;}
.ye2{bottom:872.745000px;}
.y3d{bottom:876.345000px;}
.yad{bottom:877.965000px;}
.ye{bottom:883.185000px;}
.y3c{bottom:897.090000px;}
.ycb{bottom:902.670000px;}
.y8a{bottom:903.750000px;}
.yd{bottom:903.930000px;}
.y59{bottom:907.530000px;}
.yac{bottom:908.970000px;}
.y3b{bottom:917.790000px;}
.yab{bottom:929.850000px;}
.yca{bottom:933.630000px;}
.y89{bottom:934.890000px;}
.y3a{bottom:938.490000px;}
.yc{bottom:946.770000px;}
.y39{bottom:959.190000px;}
.yc9{bottom:964.950000px;}
.y88{bottom:965.850000px;}
.y58{bottom:969.630000px;}
.yaa{bottom:969.990000px;}
.yb{bottom:974.310000px;}
.y38{bottom:979.890000px;}
.ya8{bottom:984.750000px;}
.yc8{bottom:995.910000px;}
.y87{bottom:996.990000px;}
.y37{bottom:1000.590000px;}
.ya{bottom:1001.850000px;}
.ya7{bottom:1012.290000px;}
.y36{bottom:1021.290000px;}
.y72{bottom:1023.090000px;}
.yc7{bottom:1027.050000px;}
.y86{bottom:1027.950000px;}
.y9{bottom:1029.390000px;}
.y71{bottom:1029.750000px;}
.y57{bottom:1031.730000px;}
.ya5{bottom:1041.630000px;}
.y35{bottom:1041.990000px;}
.y85{bottom:1055.130000px;}
.yc6{bottom:1058.010000px;}
.ye1{bottom:1059.090000px;}
.y8{bottom:1059.630000px;}
.y34{bottom:1062.690000px;}
.ya3{bottom:1066.470000px;}
.y33{bottom:1083.390000px;}
.y7{bottom:1087.170000px;}
.yc5{bottom:1089.150000px;}
.ye0{bottom:1090.050000px;}
.y56{bottom:1093.830000px;}
.ya2{bottom:1094.730000px;}
.y32{bottom:1104.090000px;}
.y6{bottom:1114.710000px;}
.ydf{bottom:1117.230000px;}
.yc4{bottom:1120.110000px;}
.y31{bottom:1124.790000px;}
.h9{height:9.329414px;}
.ha{height:15.914883px;}
.h10{height:23.940000px;}
.hd{height:24.120000px;}
.hb{height:26.460000px;}
.h11{height:26.640000px;}
.hf{height:26.820000px;}
.he{height:29.340000px;}
.h12{height:29.556000px;}
.h8{height:45.549492px;}
.h3{height:53.573906px;}
.h6{height:54.878906px;}
.h2{height:59.383125px;}
.hc{height:63.949219px;}
.h5{height:64.546875px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:76.680000px;}
.w9{width:84.420000px;}
.wa{width:89.496000px;}
.w5{width:109.116000px;}
.w3{width:143.136000px;}
.w7{width:157.350000px;}
.wc{width:160.230000px;}
.wb{width:164.730000px;}
.w8{width:182.370000px;}
.w6{width:194.970000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x26{left:8.640000px;}
.x25{left:15.120000px;}
.x23{left:19.080000px;}
.x21{left:20.880000px;}
.x12{left:29.880000px;}
.x10{left:32.220000px;}
.x15{left:33.480000px;}
.x17{left:38.880000px;}
.x28{left:40.350000px;}
.x27{left:47.160000px;}
.x1f{left:49.860000px;}
.x16{left:51.114000px;}
.xe{left:52.734000px;}
.x18{left:56.700000px;}
.x1a{left:65.694000px;}
.x19{left:73.440000px;}
.x1d{left:84.954000px;}
.x1{left:117.035987px;}
.x3{left:127.835987px;}
.xa{left:131.795987px;}
.x4{left:170.129987px;}
.x5{left:173.549987px;}
.xb{left:177.329987px;}
.x9{left:178.409987px;}
.x1c{left:192.989987px;}
.x29{left:205.769987px;}
.xd{left:228.449987px;}
.x7{left:246.449987px;}
.x2a{left:258.734987px;}
.xf{left:270.795000px;}
.x2b{left:285.914987px;}
.x2c{left:298.154987px;}
.x1e{left:310.035000px;}
.x6{left:311.294987px;}
.x11{left:347.475000px;}
.x2d{left:360.794987px;}
.x2e{left:373.034987px;}
.xc{left:377.354987px;}
.x2f{left:386.534987px;}
.x20{left:394.455000px;}
.x30{left:398.774987px;}
.x8{left:402.014987px;}
.x1b{left:420.404987px;}
.x31{left:433.364987px;}
.x32{left:446.864987px;}
.x13{left:456.585000px;}
.x33{left:459.104987px;}
.x34{left:472.424987px;}
.x22{left:483.945000px;}
.x35{left:497.984987px;}
.x36{left:510.224987px;}
.x37{left:577.724987px;}
.x38{left:590.009987px;}
.x39{left:630.509987px;}
.x3a{left:642.749987px;}
.x24{left:648.690000px;}
.x14{left:651.570000px;}
.x3b{left:679.469987px;}
.x3c{left:691.709987px;}
.x2{left:819.179987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.608000pt;}
.ls1a{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.185067pt;}
.ls19{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls16{letter-spacing:11.520000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls17{letter-spacing:12.800000pt;}
.ls1b{letter-spacing:14.080000pt;}
.ls9{letter-spacing:38.703360pt;}
.ls7{letter-spacing:56.602027pt;}
.ls10{letter-spacing:950.026667pt;}
.ws15{word-spacing:-64.000000pt;}
.ws4{word-spacing:-43.200000pt;}
.ws1{word-spacing:-21.465067pt;}
.ws0{word-spacing:-21.263360pt;}
.ws2{word-spacing:-20.672000pt;}
.ws8{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.686720pt;}
.ws12{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws18{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.616000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws14{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.656000pt;}
.wse{word-spacing:-13.600000pt;}
.wsf{word-spacing:-12.960000pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-4.392107pt;}
._6{margin-left:-3.467947pt;}
._7{margin-left:-2.366720pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.530880pt;}
._f{width:3.008000pt;}
._15{width:4.224000pt;}
._12{width:5.524480pt;}
._11{width:6.464000pt;}
._a{width:7.904000pt;}
._b{width:9.184000pt;}
._13{width:10.112000pt;}
._e{width:11.520000pt;}
._c{width:12.864000pt;}
._d{width:13.760000pt;}
._1c{width:14.986667pt;}
._10{width:17.216000pt;}
._27{width:18.273280pt;}
._26{width:19.535360pt;}
._1d{width:20.800000pt;}
._1e{width:21.716480pt;}
._24{width:22.955093pt;}
._23{width:23.872000pt;}
._1b{width:25.359360pt;}
._19{width:26.560000pt;}
._1a{width:28.362667pt;}
._21{width:30.976000pt;}
._22{width:32.128000pt;}
._17{width:33.696000pt;}
._16{width:35.456000pt;}
._20{width:36.377600pt;}
._1f{width:37.519360pt;}
._18{width:40.170667pt;}
._8{width:47.431680pt;}
._4{width:57.984853pt;}
._5{width:59.565867pt;}
._3{width:62.563200pt;}
._9{width:68.778240pt;}
._28{width:71.232000pt;}
._29{width:72.448000pt;}
._2{width:81.205760pt;}
._25{width:98.816000pt;}
.fs5{font-size:10.880000pt;}
.fs6{font-size:18.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:6.400000pt;}
.yb3{bottom:6.560000pt;}
.ya6{bottom:6.720000pt;}
.ya4{bottom:8.960000pt;}
.ya9{bottom:9.120000pt;}
.yb0{bottom:9.280000pt;}
.y5{bottom:72.480000pt;}
.y4{bottom:76.480000pt;}
.y3{bottom:93.440000pt;}
.y2{bottom:110.240000pt;}
.y1{bottom:127.072000pt;}
.y55{bottom:146.106667pt;}
.y100{bottom:146.746667pt;}
.y70{bottom:152.186667pt;}
.y84{bottom:156.026667pt;}
.y30{bottom:159.386667pt;}
.yff{bottom:165.146667pt;}
.y54{bottom:173.786667pt;}
.ya1{bottom:175.066667pt;}
.y2f{bottom:177.786667pt;}
.y6f{bottom:179.706667pt;}
.yfe{bottom:183.546667pt;}
.y83{bottom:183.706667pt;}
.y2e{bottom:196.186667pt;}
.y53{bottom:201.306667pt;}
.yfd{bottom:201.946667pt;}
.y6e{bottom:207.226667pt;}
.ya0{bottom:207.866667pt;}
.y82{bottom:211.226667pt;}
.y2d{bottom:214.426667pt;}
.yfc{bottom:220.346667pt;}
.y52{bottom:228.986667pt;}
.y6d{bottom:231.386667pt;}
.y2c{bottom:232.826667pt;}
.y81{bottom:238.746667pt;}
.y9f{bottom:240.826667pt;}
.yde{bottom:250.266667pt;}
.y2b{bottom:251.386667pt;}
.y6c{bottom:252.986667pt;}
.y51{bottom:256.506667pt;}
.yfb{bottom:257.146667pt;}
.y80{bottom:263.066667pt;}
.yc3{bottom:266.746667pt;}
.y9e{bottom:268.346667pt;}
.y2a{bottom:269.786667pt;}
.yfa{bottom:275.546667pt;}
.ydd{bottom:277.946667pt;}
.y7f{bottom:284.026667pt;}
.y50{bottom:284.186667pt;}
.y6b{bottom:284.506667pt;}
.y29{bottom:288.186667pt;}
.yf9{bottom:293.946667pt;}
.yc2{bottom:294.266667pt;}
.y9d{bottom:295.866667pt;}
.y6a{bottom:305.466667pt;}
.y28{bottom:306.586667pt;}
.y4f{bottom:311.706667pt;}
.yf8{bottom:312.346667pt;}
.y7e{bottom:319.706667pt;}
.y9c{bottom:320.186667pt;}
.yc1{bottom:321.946667pt;}
.y27{bottom:324.986667pt;}
.yf7{bottom:330.746667pt;}
.ydc{bottom:333.146667pt;}
.y69{bottom:337.306667pt;}
.y4e{bottom:339.386667pt;}
.y26{bottom:343.386667pt;}
.y9b{bottom:345.346667pt;}
.y7d{bottom:347.266667pt;}
.yf6{bottom:349.186667pt;}
.yc0{bottom:349.506667pt;}
.ydb{bottom:360.706667pt;}
.y25{bottom:361.826667pt;}
.y9a{bottom:363.586667pt;}
.y68{bottom:365.026667pt;}
.y4d{bottom:366.946667pt;}
.yf5{bottom:367.586667pt;}
.y7c{bottom:374.946667pt;}
.ybf{bottom:377.026667pt;}
.y24{bottom:380.226667pt;}
.y99{bottom:381.986667pt;}
.yf4{bottom:385.986667pt;}
.yda{bottom:388.386667pt;}
.y67{bottom:392.546667pt;}
.y4c{bottom:394.626667pt;}
.y23{bottom:398.626667pt;}
.y7b{bottom:402.466667pt;}
.yf3{bottom:404.386667pt;}
.ybe{bottom:404.706667pt;}
.yd9{bottom:415.906667pt;}
.y22{bottom:417.026667pt;}
.y98{bottom:418.786667pt;}
.y66{bottom:420.226667pt;}
.y4b{bottom:422.146667pt;}
.yf2{bottom:422.786667pt;}
.y7a{bottom:430.146667pt;}
.ybd{bottom:432.226667pt;}
.y21{bottom:435.426667pt;}
.yf1{bottom:441.186667pt;}
.yd8{bottom:443.586667pt;}
.y97{bottom:446.306667pt;}
.y65{bottom:447.746667pt;}
.y4a{bottom:449.826667pt;}
.y20{bottom:453.826667pt;}
.y79{bottom:457.826667pt;}
.yf0{bottom:459.586667pt;}
.ybc{bottom:459.906667pt;}
.yd7{bottom:471.106667pt;}
.y1f{bottom:472.226667pt;}
.y96{bottom:473.986667pt;}
.y64{bottom:475.426667pt;}
.y49{bottom:477.346667pt;}
.yef{bottom:477.986667pt;}
.y78{bottom:485.506667pt;}
.ybb{bottom:487.426667pt;}
.y1e{bottom:490.626667pt;}
.yee{bottom:496.386667pt;}
.yd6{bottom:498.786667pt;}
.y95{bottom:501.506667pt;}
.y63{bottom:502.946667pt;}
.y48{bottom:505.026667pt;}
.yba{bottom:505.986667pt;}
.y1d{bottom:509.026667pt;}
.y77{bottom:512.866667pt;}
.yed{bottom:514.786667pt;}
.yd5{bottom:526.306667pt;}
.y1c{bottom:527.426667pt;}
.y94{bottom:529.026667pt;}
.y62{bottom:530.626667pt;}
.y47{bottom:532.546667pt;}
.yec{bottom:533.186667pt;}
.yb9{bottom:533.986667pt;}
.y76{bottom:537.026667pt;}
.y1b{bottom:545.826667pt;}
.yb8{bottom:547.106667pt;}
.yeb{bottom:551.586667pt;}
.y93{bottom:553.346667pt;}
.yd4{bottom:553.826667pt;}
.y75{bottom:557.506667pt;}
.y61{bottom:558.146667pt;}
.y46{bottom:560.226667pt;}
.y1a{bottom:564.226667pt;}
.yea{bottom:570.013333pt;}
.yb7{bottom:573.373333pt;}
.y74{bottom:573.853333pt;}
.y92{bottom:574.333333pt;}
.yd3{bottom:581.533333pt;}
.y19{bottom:582.653333pt;}
.y60{bottom:585.853333pt;}
.y45{bottom:587.773333pt;}
.ye9{bottom:588.413333pt;}
.y73{bottom:589.213333pt;}
.yb5{bottom:597.053333pt;}
.y18{bottom:601.053333pt;}
.ye8{bottom:606.973333pt;}
.yd2{bottom:609.213333pt;}
.y91{bottom:610.013333pt;}
.y5f{bottom:613.373333pt;}
.y44{bottom:615.453333pt;}
.y17{bottom:619.453333pt;}
.yb4{bottom:620.733333pt;}
.ye7{bottom:630.973333pt;}
.yd1{bottom:636.733333pt;}
.y90{bottom:637.533333pt;}
.y16{bottom:637.853333pt;}
.y5e{bottom:641.053333pt;}
.y43{bottom:642.973333pt;}
.yb2{bottom:644.413333pt;}
.y15{bottom:656.253333pt;}
.yd0{bottom:664.413333pt;}
.y8f{bottom:665.213333pt;}
.ye6{bottom:665.373333pt;}
.yb1{bottom:668.093333pt;}
.y5d{bottom:668.573333pt;}
.y42{bottom:670.493333pt;}
.y14{bottom:674.653333pt;}
.yaf{bottom:690.013333pt;}
.ycf{bottom:691.933333pt;}
.y8e{bottom:692.733333pt;}
.ye5{bottom:692.893333pt;}
.y13{bottom:693.053333pt;}
.y41{bottom:694.653333pt;}
.y5c{bottom:696.253333pt;}
.y12{bottom:711.453333pt;}
.yae{bottom:715.453333pt;}
.y40{bottom:715.773333pt;}
.yce{bottom:719.613333pt;}
.y8d{bottom:720.413333pt;}
.ye4{bottom:720.573333pt;}
.y5b{bottom:723.773333pt;}
.y11{bottom:729.853333pt;}
.y3f{bottom:742.173333pt;}
.ycd{bottom:747.133333pt;}
.y8c{bottom:747.933333pt;}
.ye3{bottom:748.093333pt;}
.y10{bottom:748.253333pt;}
.y5a{bottom:751.453333pt;}
.y3e{bottom:760.573333pt;}
.yf{bottom:766.653333pt;}
.ycc{bottom:774.813333pt;}
.y8b{bottom:775.613333pt;}
.ye2{bottom:775.773333pt;}
.y3d{bottom:778.973333pt;}
.yad{bottom:780.413333pt;}
.ye{bottom:785.053333pt;}
.y3c{bottom:797.413333pt;}
.ycb{bottom:802.373333pt;}
.y8a{bottom:803.333333pt;}
.yd{bottom:803.493333pt;}
.y59{bottom:806.693333pt;}
.yac{bottom:807.973333pt;}
.y3b{bottom:815.813333pt;}
.yab{bottom:826.533333pt;}
.yca{bottom:829.893333pt;}
.y89{bottom:831.013333pt;}
.y3a{bottom:834.213333pt;}
.yc{bottom:841.573333pt;}
.y39{bottom:852.613333pt;}
.yc9{bottom:857.733333pt;}
.y88{bottom:858.533333pt;}
.y58{bottom:861.893333pt;}
.yaa{bottom:862.213333pt;}
.yb{bottom:866.053333pt;}
.y38{bottom:871.013333pt;}
.ya8{bottom:875.333333pt;}
.yc8{bottom:885.253333pt;}
.y87{bottom:886.213333pt;}
.y37{bottom:889.413333pt;}
.ya{bottom:890.533333pt;}
.ya7{bottom:899.813333pt;}
.y36{bottom:907.813333pt;}
.y72{bottom:909.413333pt;}
.yc7{bottom:912.933333pt;}
.y86{bottom:913.733333pt;}
.y9{bottom:915.013333pt;}
.y71{bottom:915.333333pt;}
.y57{bottom:917.093333pt;}
.ya5{bottom:925.893333pt;}
.y35{bottom:926.213333pt;}
.y85{bottom:937.893333pt;}
.yc6{bottom:940.453333pt;}
.ye1{bottom:941.413333pt;}
.y8{bottom:941.893333pt;}
.y34{bottom:944.613333pt;}
.ya3{bottom:947.973333pt;}
.y33{bottom:963.013333pt;}
.y7{bottom:966.373333pt;}
.yc5{bottom:968.133333pt;}
.ye0{bottom:968.933333pt;}
.y56{bottom:972.293333pt;}
.ya2{bottom:973.093333pt;}
.y32{bottom:981.413333pt;}
.y6{bottom:990.853333pt;}
.ydf{bottom:993.093333pt;}
.yc4{bottom:995.653333pt;}
.y31{bottom:999.813333pt;}
.h9{height:8.292813pt;}
.ha{height:14.146562pt;}
.h10{height:21.280000pt;}
.hd{height:21.440000pt;}
.hb{height:23.520000pt;}
.h11{height:23.680000pt;}
.hf{height:23.840000pt;}
.he{height:26.080000pt;}
.h12{height:26.272000pt;}
.h8{height:40.488438pt;}
.h3{height:47.621250pt;}
.h6{height:48.781250pt;}
.h2{height:52.785000pt;}
.hc{height:56.843750pt;}
.h5{height:57.375000pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:68.160000pt;}
.w9{width:75.040000pt;}
.wa{width:79.552000pt;}
.w5{width:96.992000pt;}
.w3{width:127.232000pt;}
.w7{width:139.866667pt;}
.wc{width:142.426667pt;}
.wb{width:146.426667pt;}
.w8{width:162.106667pt;}
.w6{width:173.306667pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x26{left:7.680000pt;}
.x25{left:13.440000pt;}
.x23{left:16.960000pt;}
.x21{left:18.560000pt;}
.x12{left:26.560000pt;}
.x10{left:28.640000pt;}
.x15{left:29.760000pt;}
.x17{left:34.560000pt;}
.x28{left:35.866667pt;}
.x27{left:41.920000pt;}
.x1f{left:44.320000pt;}
.x16{left:45.434667pt;}
.xe{left:46.874667pt;}
.x18{left:50.400000pt;}
.x1a{left:58.394667pt;}
.x19{left:65.280000pt;}
.x1d{left:75.514667pt;}
.x1{left:104.031988pt;}
.x3{left:113.631988pt;}
.xa{left:117.151988pt;}
.x4{left:151.226655pt;}
.x5{left:154.266655pt;}
.xb{left:157.626655pt;}
.x9{left:158.586655pt;}
.x1c{left:171.546655pt;}
.x29{left:182.906655pt;}
.xd{left:203.066655pt;}
.x7{left:219.066655pt;}
.x2a{left:229.986655pt;}
.xf{left:240.706667pt;}
.x2b{left:254.146655pt;}
.x2c{left:265.026655pt;}
.x1e{left:275.586667pt;}
.x6{left:276.706655pt;}
.x11{left:308.866667pt;}
.x2d{left:320.706655pt;}
.x2e{left:331.586655pt;}
.xc{left:335.426655pt;}
.x2f{left:343.586655pt;}
.x20{left:350.626667pt;}
.x30{left:354.466655pt;}
.x8{left:357.346655pt;}
.x1b{left:373.693321pt;}
.x31{left:385.213321pt;}
.x32{left:397.213321pt;}
.x13{left:405.853333pt;}
.x33{left:408.093322pt;}
.x34{left:419.933321pt;}
.x22{left:430.173333pt;}
.x35{left:442.653321pt;}
.x36{left:453.533321pt;}
.x37{left:513.533322pt;}
.x38{left:524.453322pt;}
.x39{left:560.453322pt;}
.x3a{left:571.333322pt;}
.x24{left:576.613333pt;}
.x14{left:579.173333pt;}
.x3b{left:603.973321pt;}
.x3c{left:614.853321pt;}
.x2{left:728.159988pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  