
    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_64da793297a9c36dd32d71d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ffd27057d8700894164b5890.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f151ceb2a043a97ff598b62a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_3d8a4dd356490dfd42724623.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_c74d7f60a89fe4a5ef1ad345.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_58a67a29b76d9a7fb335d440.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.449400px;}
.ls5{letter-spacing:-0.350400px;}
.ls13{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.282000px;}
.ls17{letter-spacing:-0.271200px;}
.ls7{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.028080px;}
.ls9{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.129600px;}
.ls8{letter-spacing:0.291600px;}
.ls12{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.398400px;}
.lsf{letter-spacing:1.260000px;}
.ls10{letter-spacing:4.860000px;}
.lsd{letter-spacing:5.580000px;}
.ls1{letter-spacing:13.500000px;}
.lsa{letter-spacing:17.100000px;}
.ls1b{letter-spacing:18.540000px;}
.ls1a{letter-spacing:20.700000px;}
.lsc{letter-spacing:21.197280px;}
.ls11{letter-spacing:27.180000px;}
.lse{letter-spacing:35.100000px;}
.ls2{letter-spacing:43.020000px;}
.ls19{letter-spacing:46.002720px;}
.ls1c{letter-spacing:63.900000px;}
.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;}
}
.ws9{word-spacing:-21.458400px;}
.ws5{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.097440px;}
.ws7{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.050640px;}
.ws8{word-spacing:-21.031920px;}
.wsa{word-spacing:-20.788800px;}
.ws4{word-spacing:-20.778000px;}
.ws6{word-spacing:-20.718600px;}
.ws1{word-spacing:-20.709600px;}
.wsd{word-spacing:-20.610600px;}
.wsc{word-spacing:-15.300000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-5.222880px;}
._f{margin-left:-4.163520px;}
._1{margin-left:-2.733120px;}
._0{margin-left:-1.312080px;}
._4{width:1.128480px;}
._a{width:2.238480px;}
._15{width:3.790800px;}
._16{width:5.211600px;}
._1d{width:6.353280px;}
._14{width:7.511040px;}
._1a{width:8.916960px;}
._17{width:11.203920px;}
._c{width:13.225680px;}
._d{width:14.991840px;}
._1f{width:16.005600px;}
._18{width:17.985120px;}
._13{width:19.632000px;}
._39{width:22.203600px;}
._3a{width:23.715120px;}
._35{width:24.935040px;}
._2f{width:26.332560px;}
._19{width:27.799200px;}
._30{width:29.119440px;}
._3f{width:30.385440px;}
._3b{width:31.470000px;}
._2b{width:33.948720px;}
._2c{width:35.514720px;}
._8{width:36.560160px;}
._9{width:37.908000px;}
._1e{width:40.098240px;}
._11{width:42.035760px;}
._12{width:43.067520px;}
._3d{width:45.236880px;}
._3e{width:46.681680px;}
._2d{width:50.038560px;}
._2e{width:51.230640px;}
._20{width:52.734240px;}
._6{width:54.503280px;}
._7{width:55.518240px;}
._26{width:57.030480px;}
._e{width:58.209840px;}
._b{width:62.321520px;}
._37{width:63.322560px;}
._5{width:65.702160px;}
._32{width:72.747600px;}
._22{width:74.215440px;}
._23{width:75.563280px;}
._24{width:77.500800px;}
._31{width:80.364960px;}
._3c{width:85.894080px;}
._21{width:90.170400px;}
._34{width:103.867920px;}
._38{width:107.658720px;}
._27{width:114.614880px;}
._33{width:122.400720px;}
._1b{width:130.150800px;}
._1c{width:131.258640px;}
._28{width:200.876640px;}
._2a{width:212.417520px;}
._25{width:215.068800px;}
._36{width:235.619280px;}
._29{width:354.109200px;}
._2{width:641.856000px;}
._3{width:1830.720000px;}
.fc2{color:transparent;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.y6{bottom:-25.020000px;}
.y2b{bottom:-4.350000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:5.940000px;}
.y5{bottom:10.830000px;}
.ya{bottom:12.240000px;}
.y45{bottom:16.725000px;}
.y4f{bottom:16.740000px;}
.y88{bottom:16.785000px;}
.y83{bottom:16.905000px;}
.y7b{bottom:16.920000px;}
.y6a{bottom:17.085000px;}
.y53{bottom:17.100000px;}
.ycd{bottom:17.130000px;}
.y8a{bottom:17.145000px;}
.y8e{bottom:17.265000px;}
.y62{bottom:17.280000px;}
.y2{bottom:20.340000px;}
.y49{bottom:25.740000px;}
.y4b{bottom:26.100000px;}
.y7{bottom:31.500000px;}
.y7d{bottom:34.725000px;}
.y43{bottom:34.905000px;}
.y4d{bottom:34.920000px;}
.y6f{bottom:34.950000px;}
.ycb{bottom:35.265000px;}
.y59{bottom:35.280000px;}
.y73{bottom:35.310000px;}
.y8b{bottom:35.325000px;}
.y47{bottom:44.310000px;}
.y4{bottom:47.010000px;}
.y44{bottom:52.905000px;}
.y76{bottom:52.920000px;}
.y66{bottom:53.085000px;}
.y4e{bottom:53.100000px;}
.y87{bottom:53.145000px;}
.ybb{bottom:53.265000px;}
.y77{bottom:53.280000px;}
.y7f{bottom:53.310000px;}
.y69{bottom:53.445000px;}
.y52{bottom:53.460000px;}
.y71{bottom:53.490000px;}
.y89{bottom:53.505000px;}
.yc{bottom:59.400000px;}
.y48{bottom:61.950000px;}
.y4a{bottom:62.310000px;}
.yd{bottom:64.800000px;}
.y5e{bottom:71.100000px;}
.y6e{bottom:71.130000px;}
.y64{bottom:71.445000px;}
.y55{bottom:71.460000px;}
.y6c{bottom:71.490000px;}
.y29{bottom:82.410000px;}
.y65{bottom:89.265000px;}
.y56{bottom:89.280000px;}
.yd3{bottom:89.445000px;}
.yc1{bottom:89.460000px;}
.y7e{bottom:89.490000px;}
.y68{bottom:89.625000px;}
.y51{bottom:89.640000px;}
.y70{bottom:89.670000px;}
.y6d{bottom:107.310000px;}
.yb3{bottom:107.325000px;}
.y5d{bottom:107.460000px;}
.yca{bottom:107.625000px;}
.y58{bottom:107.640000px;}
.y72{bottom:107.670000px;}
.yb6{bottom:107.850000px;}
.ybd{bottom:118.080000px;}
.yb1{bottom:125.505000px;}
.yd2{bottom:125.625000px;}
.yc6{bottom:125.805000px;}
.y57{bottom:125.820000px;}
.y67{bottom:125.850000px;}
.y27{bottom:131.400000px;}
.y6b{bottom:137.700000px;}
.ye2{bottom:138.240000px;}
.ydb{bottom:139.140000px;}
.y84{bottom:139.680000px;}
.y46{bottom:140.400000px;}
.y5c{bottom:143.640000px;}
.yac{bottom:143.685000px;}
.yc9{bottom:143.805000px;}
.ybc{bottom:143.850000px;}
.yd0{bottom:144.030000px;}
.yaa{bottom:161.685000px;}
.yc5{bottom:161.985000px;}
.yc0{bottom:162.000000px;}
.yba{bottom:162.030000px;}
.y61{bottom:162.180000px;}
.yb5{bottom:162.210000px;}
.y26{bottom:167.580000px;}
.yda{bottom:170.490000px;}
.ye1{bottom:174.450000px;}
.y5b{bottom:179.820000px;}
.yab{bottom:179.865000px;}
.yc8{bottom:180.165000px;}
.ycf{bottom:180.210000px;}
.ya8{bottom:187.410000px;}
.yd1{bottom:190.665000px;}
.yb0{bottom:197.865000px;}
.yc4{bottom:198.165000px;}
.ybf{bottom:198.180000px;}
.yb9{bottom:198.210000px;}
.y60{bottom:198.390000px;}
.y82{bottom:199.125000px;}
.y25{bottom:203.790000px;}
.ye0{bottom:210.630000px;}
.yb2{bottom:216.045000px;}
.yc7{bottom:216.345000px;}
.yce{bottom:216.390000px;}
.ya7{bottom:223.590000px;}
.yaf{bottom:234.225000px;}
.yb8{bottom:234.390000px;}
.yc3{bottom:234.525000px;}
.y5f{bottom:234.570000px;}
.y9d{bottom:238.530000px;}
.y24{bottom:239.970000px;}
.ydf{bottom:246.990000px;}
.y42{bottom:254.025000px;}
.ya6{bottom:259.770000px;}
.yae{bottom:270.405000px;}
.y9c{bottom:274.890000px;}
.y23{bottom:276.330000px;}
.yde{bottom:283.170000px;}
.ya5{bottom:296.130000px;}
.y81{bottom:300.810000px;}
.y63{bottom:305.865000px;}
.yad{bottom:306.585000px;}
.y9b{bottom:311.070000px;}
.y22{bottom:312.510000px;}
.ydd{bottom:319.350000px;}
.ya4{bottom:332.310000px;}
.yb7{bottom:336.285000px;}
.y80{bottom:336.990000px;}
.y9a{bottom:347.250000px;}
.y21{bottom:348.690000px;}
.y41{bottom:355.530000px;}
.ya3{bottom:363.630000px;}
.y7c{bottom:368.145000px;}
.y99{bottom:383.430000px;}
.y20{bottom:384.870000px;}
.y40{bottom:391.890000px;}
.ycc{bottom:408.645000px;}
.y98{bottom:419.835000px;}
.y1f{bottom:421.095000px;}
.y3f{bottom:428.115000px;}
.y97{bottom:456.015000px;}
.y1e{bottom:457.455000px;}
.y3e{bottom:464.295000px;}
.y5a{bottom:474.015000px;}
.y96{bottom:492.195000px;}
.y1d{bottom:493.635000px;}
.y7a{bottom:499.935000px;}
.y3d{bottom:500.475000px;}
.yd9{bottom:516.135000px;}
.y95{bottom:528.375000px;}
.y1c{bottom:529.815000px;}
.y3c{bottom:536.835000px;}
.yd8{bottom:552.315000px;}
.y94{bottom:564.555000px;}
.y1b{bottom:565.995000px;}
.ydc{bottom:572.655000px;}
.y3b{bottom:573.015000px;}
.yd7{bottom:588.495000px;}
.yb4{bottom:590.475000px;}
.y79{bottom:595.695000px;}
.y93{bottom:600.915000px;}
.y1a{bottom:602.355000px;}
.y3a{bottom:609.195000px;}
.yd6{bottom:624.675000px;}
.y92{bottom:637.095000px;}
.y19{bottom:638.535000px;}
.y39{bottom:645.375000px;}
.yd5{bottom:661.065000px;}
.yc2{bottom:663.060000px;}
.y91{bottom:673.305000px;}
.y18{bottom:674.745000px;}
.y38{bottom:681.585000px;}
.yd4{bottom:692.205000px;}
.ya2{bottom:700.845000px;}
.y90{bottom:709.485000px;}
.y17{bottom:710.925000px;}
.y37{bottom:717.945000px;}
.y78{bottom:727.665000px;}
.ya1{bottom:737.025000px;}
.y8f{bottom:745.845000px;}
.y16{bottom:747.285000px;}
.y54{bottom:750.885000px;}
.y36{bottom:754.125000px;}
.ya0{bottom:773.205000px;}
.y8d{bottom:776.820000px;}
.y15{bottom:783.465000px;}
.y35{bottom:790.305000px;}
.ya9{bottom:808.665000px;}
.y9f{bottom:809.565000px;}
.y14{bottom:819.645000px;}
.y75{bottom:823.425000px;}
.y34{bottom:826.485000px;}
.y8c{bottom:836.385000px;}
.y9e{bottom:840.705000px;}
.y13{bottom:855.825000px;}
.y33{bottom:862.845000px;}
.y12{bottom:892.005000px;}
.y86{bottom:895.785000px;}
.ye3{bottom:898.665000px;}
.y32{bottom:899.025000px;}
.ybe{bottom:917.430000px;}
.y50{bottom:919.050000px;}
.y11{bottom:928.050000px;}
.y31{bottom:935.250000px;}
.y10{bottom:964.230000px;}
.y30{bottom:971.430000px;}
.y85{bottom:991.590000px;}
.yf{bottom:1000.410000px;}
.y2f{bottom:1007.790000px;}
.y74{bottom:1014.810000px;}
.ye{bottom:1031.910000px;}
.y28{bottom:1033.560000px;}
.y2e{bottom:1043.970000px;}
.y4c{bottom:1050.990000px;}
.y2a{bottom:1079.790000px;}
.y2d{bottom:1080.150000px;}
.y2c{bottom:1116.330000px;}
.y3{bottom:1148.190000px;}
.y1{bottom:1171.260000px;}
.y9{bottom:1195.920000px;}
.h6{height:25.380000px;}
.h16{height:36.165000px;}
.h1c{height:36.180000px;}
.h1a{height:36.216000px;}
.h1d{height:36.345000px;}
.h2{height:40.320000px;}
.h7{height:58.651172px;}
.ha{height:59.066719px;}
.h26{height:61.423863px;}
.h4{height:66.450000px;}
.he{height:72.345000px;}
.h17{height:72.360000px;}
.h10{height:72.525000px;}
.h1b{height:72.562500px;}
.hc{height:72.846211px;}
.h5{height:82.676953px;}
.h3{height:84.898125px;}
.h1e{height:86.585445px;}
.hf{height:90.396000px;}
.hb{height:101.880000px;}
.h19{height:108.561000px;}
.h11{height:108.705000px;}
.h18{height:108.750000px;}
.h8{height:110.700000px;}
.h12{height:144.900000px;}
.h14{height:144.921000px;}
.h15{height:144.936000px;}
.hd{height:145.125000px;}
.h9{height:182.039062px;}
.h23{height:217.245000px;}
.h22{height:217.290000px;}
.h20{height:217.470000px;}
.h21{height:253.455000px;}
.h24{height:253.635000px;}
.h13{height:253.650000px;}
.h25{height:253.680000px;}
.h1f{height:326.010000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w15{width:28.251000px;}
.w7{width:34.731000px;}
.w1a{width:92.901000px;}
.w16{width:98.631000px;}
.w19{width:101.505000px;}
.w1b{width:104.565000px;}
.w5{width:122.400000px;}
.wb{width:126.930000px;}
.wc{width:127.290000px;}
.w18{width:129.096000px;}
.w17{width:132.501000px;}
.wa{width:138.621000px;}
.w8{width:154.275000px;}
.w3{width:163.830000px;}
.w11{width:165.615000px;}
.w4{width:169.230000px;}
.wd{width:173.181000px;}
.w2{width:188.481000px;}
.wf{width:216.915000px;}
.w10{width:217.275000px;}
.w9{width:234.390000px;}
.w13{width:252.735000px;}
.w14{width:253.095000px;}
.w12{width:278.490000px;}
.we{width:289.830000px;}
.w6{width:693.900000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x47{left:1.431000px;}
.x21{left:5.040000px;}
.x31{left:7.911000px;}
.x1e{left:10.260000px;}
.x34{left:14.391000px;}
.x2c{left:15.651000px;}
.x20{left:17.985000px;}
.x22{left:19.605000px;}
.x33{left:21.240000px;}
.x4{left:22.680000px;}
.x1a{left:24.120000px;}
.x1f{left:25.920000px;}
.x7{left:29.880000px;}
.x38{left:30.951000px;}
.x2d{left:32.940000px;}
.x26{left:36.165000px;}
.x2f{left:37.605000px;}
.x39{left:39.405000px;}
.x23{left:41.025000px;}
.x2e{left:44.820000px;}
.x17{left:46.605000px;}
.x36{left:47.700000px;}
.x1c{left:49.845000px;}
.x27{left:54.165000px;}
.x30{left:55.650000px;}
.x19{left:59.040000px;}
.x2b{left:60.870000px;}
.x3a{left:63.540000px;}
.x24{left:66.225000px;}
.x35{left:67.320000px;}
.x10{left:69.510000px;}
.x25{left:70.905000px;}
.x3c{left:74.160000px;}
.x3d{left:79.200000px;}
.x37{left:84.090000px;}
.x32{left:86.430000px;}
.x8{left:89.676000px;}
.x29{left:97.920000px;}
.x6{left:100.476000px;}
.x1{left:106.425000px;}
.x5{left:108.036000px;}
.x15{left:121.185000px;}
.x3f{left:127.476000px;}
.x46{left:130.365000px;}
.xf{left:153.570000px;}
.x16{left:156.285000px;}
.x50{left:192.630000px;}
.x45{left:201.630000px;}
.x14{left:208.470000px;}
.x4e{left:218.190000px;}
.x48{left:229.905000px;}
.xd{left:259.230000px;}
.x43{left:263.055000px;}
.x3b{left:264.495000px;}
.x28{left:280.515000px;}
.x18{left:311.295000px;}
.xb{left:324.435000px;}
.xa{left:334.515000px;}
.x41{left:340.815000px;}
.x11{left:346.965000px;}
.x44{left:350.535000px;}
.xc{left:353.595000px;}
.x49{left:363.135000px;}
.x13{left:378.435000px;}
.x51{left:416.235000px;}
.x12{left:418.215000px;}
.xe{left:447.405000px;}
.x4a{left:492.960000px;}
.x3e{left:543.720000px;}
.x1b{left:546.420000px;}
.x2a{left:571.080000px;}
.x40{left:585.285000px;}
.x4b{left:595.200000px;}
.x4d{left:632.490000px;}
.x42{left:641.490000px;}
.x3{left:643.830000px;}
.x2{left:648.150000px;}
.x4f{left:674.250000px;}
.x1d{left:685.770000px;}
.x4c{left:689.010000px;}
.x9{left:795.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.399467pt;}
.ls5{letter-spacing:-0.311467pt;}
.ls13{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.250667pt;}
.ls17{letter-spacing:-0.241067pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.024960pt;}
.ls9{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.115200pt;}
.ls8{letter-spacing:0.259200pt;}
.ls12{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.354133pt;}
.lsf{letter-spacing:1.120000pt;}
.ls10{letter-spacing:4.320000pt;}
.lsd{letter-spacing:4.960000pt;}
.ls1{letter-spacing:12.000000pt;}
.lsa{letter-spacing:15.200000pt;}
.ls1b{letter-spacing:16.480000pt;}
.ls1a{letter-spacing:18.400000pt;}
.lsc{letter-spacing:18.842027pt;}
.ls11{letter-spacing:24.160000pt;}
.lse{letter-spacing:31.200000pt;}
.ls2{letter-spacing:38.240000pt;}
.ls19{letter-spacing:40.891307pt;}
.ls1c{letter-spacing:56.800000pt;}
.ws9{word-spacing:-19.074133pt;}
.ws5{word-spacing:-19.040000pt;}
.wsb{word-spacing:-18.753280pt;}
.ws7{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.711680pt;}
.ws8{word-spacing:-18.695040pt;}
.wsa{word-spacing:-18.478933pt;}
.ws4{word-spacing:-18.469333pt;}
.ws6{word-spacing:-18.416533pt;}
.ws1{word-spacing:-18.408533pt;}
.wsd{word-spacing:-18.320533pt;}
.wsc{word-spacing:-13.600000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.642560pt;}
._f{margin-left:-3.700907pt;}
._1{margin-left:-2.429440pt;}
._0{margin-left:-1.166293pt;}
._4{width:1.003093pt;}
._a{width:1.989760pt;}
._15{width:3.369600pt;}
._16{width:4.632533pt;}
._1d{width:5.647360pt;}
._14{width:6.676480pt;}
._1a{width:7.926187pt;}
._17{width:9.959040pt;}
._c{width:11.756160pt;}
._d{width:13.326080pt;}
._1f{width:14.227200pt;}
._18{width:15.986773pt;}
._13{width:17.450667pt;}
._39{width:19.736533pt;}
._3a{width:21.080107pt;}
._35{width:22.164480pt;}
._2f{width:23.406720pt;}
._19{width:24.710400pt;}
._30{width:25.883947pt;}
._3f{width:27.009280pt;}
._3b{width:27.973333pt;}
._2b{width:30.176640pt;}
._2c{width:31.568640pt;}
._8{width:32.497920pt;}
._9{width:33.696000pt;}
._1e{width:35.642880pt;}
._11{width:37.365120pt;}
._12{width:38.282240pt;}
._3d{width:40.210560pt;}
._3e{width:41.494827pt;}
._2d{width:44.478720pt;}
._2e{width:45.538347pt;}
._20{width:46.874880pt;}
._6{width:48.447360pt;}
._7{width:49.349547pt;}
._26{width:50.693760pt;}
._e{width:51.742080pt;}
._b{width:55.396907pt;}
._37{width:56.286720pt;}
._5{width:58.401920pt;}
._32{width:64.664533pt;}
._22{width:65.969280pt;}
._23{width:67.167360pt;}
._24{width:68.889600pt;}
._31{width:71.435520pt;}
._3c{width:76.350293pt;}
._21{width:80.151467pt;}
._34{width:92.327040pt;}
._38{width:95.696640pt;}
._27{width:101.879893pt;}
._33{width:108.800640pt;}
._1b{width:115.689600pt;}
._1c{width:116.674347pt;}
._28{width:178.557013pt;}
._2a{width:188.815573pt;}
._25{width:191.172267pt;}
._36{width:209.439360pt;}
._29{width:314.763733pt;}
._2{width:570.538667pt;}
._3{width:1627.306667pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.y6{bottom:-22.240000pt;}
.y2b{bottom:-3.866667pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:5.280000pt;}
.y5{bottom:9.626667pt;}
.ya{bottom:10.880000pt;}
.y45{bottom:14.866667pt;}
.y4f{bottom:14.880000pt;}
.y88{bottom:14.920000pt;}
.y83{bottom:15.026667pt;}
.y7b{bottom:15.040000pt;}
.y6a{bottom:15.186667pt;}
.y53{bottom:15.200000pt;}
.ycd{bottom:15.226667pt;}
.y8a{bottom:15.240000pt;}
.y8e{bottom:15.346667pt;}
.y62{bottom:15.360000pt;}
.y2{bottom:18.080000pt;}
.y49{bottom:22.880000pt;}
.y4b{bottom:23.200000pt;}
.y7{bottom:28.000000pt;}
.y7d{bottom:30.866667pt;}
.y43{bottom:31.026667pt;}
.y4d{bottom:31.040000pt;}
.y6f{bottom:31.066667pt;}
.ycb{bottom:31.346667pt;}
.y59{bottom:31.360000pt;}
.y73{bottom:31.386667pt;}
.y8b{bottom:31.400000pt;}
.y47{bottom:39.386667pt;}
.y4{bottom:41.786667pt;}
.y44{bottom:47.026667pt;}
.y76{bottom:47.040000pt;}
.y66{bottom:47.186667pt;}
.y4e{bottom:47.200000pt;}
.y87{bottom:47.240000pt;}
.ybb{bottom:47.346667pt;}
.y77{bottom:47.360000pt;}
.y7f{bottom:47.386667pt;}
.y69{bottom:47.506667pt;}
.y52{bottom:47.520000pt;}
.y71{bottom:47.546667pt;}
.y89{bottom:47.560000pt;}
.yc{bottom:52.800000pt;}
.y48{bottom:55.066667pt;}
.y4a{bottom:55.386667pt;}
.yd{bottom:57.600000pt;}
.y5e{bottom:63.200000pt;}
.y6e{bottom:63.226667pt;}
.y64{bottom:63.506667pt;}
.y55{bottom:63.520000pt;}
.y6c{bottom:63.546667pt;}
.y29{bottom:73.253333pt;}
.y65{bottom:79.346667pt;}
.y56{bottom:79.360000pt;}
.yd3{bottom:79.506667pt;}
.yc1{bottom:79.520000pt;}
.y7e{bottom:79.546667pt;}
.y68{bottom:79.666667pt;}
.y51{bottom:79.680000pt;}
.y70{bottom:79.706667pt;}
.y6d{bottom:95.386667pt;}
.yb3{bottom:95.400000pt;}
.y5d{bottom:95.520000pt;}
.yca{bottom:95.666667pt;}
.y58{bottom:95.680000pt;}
.y72{bottom:95.706667pt;}
.yb6{bottom:95.866667pt;}
.ybd{bottom:104.960000pt;}
.yb1{bottom:111.560000pt;}
.yd2{bottom:111.666667pt;}
.yc6{bottom:111.826667pt;}
.y57{bottom:111.840000pt;}
.y67{bottom:111.866667pt;}
.y27{bottom:116.800000pt;}
.y6b{bottom:122.400000pt;}
.ye2{bottom:122.880000pt;}
.ydb{bottom:123.680000pt;}
.y84{bottom:124.160000pt;}
.y46{bottom:124.800000pt;}
.y5c{bottom:127.680000pt;}
.yac{bottom:127.720000pt;}
.yc9{bottom:127.826667pt;}
.ybc{bottom:127.866667pt;}
.yd0{bottom:128.026667pt;}
.yaa{bottom:143.720000pt;}
.yc5{bottom:143.986667pt;}
.yc0{bottom:144.000000pt;}
.yba{bottom:144.026667pt;}
.y61{bottom:144.160000pt;}
.yb5{bottom:144.186667pt;}
.y26{bottom:148.960000pt;}
.yda{bottom:151.546667pt;}
.ye1{bottom:155.066667pt;}
.y5b{bottom:159.840000pt;}
.yab{bottom:159.880000pt;}
.yc8{bottom:160.146667pt;}
.ycf{bottom:160.186667pt;}
.ya8{bottom:166.586667pt;}
.yd1{bottom:169.480000pt;}
.yb0{bottom:175.880000pt;}
.yc4{bottom:176.146667pt;}
.ybf{bottom:176.160000pt;}
.yb9{bottom:176.186667pt;}
.y60{bottom:176.346667pt;}
.y82{bottom:177.000000pt;}
.y25{bottom:181.146667pt;}
.ye0{bottom:187.226667pt;}
.yb2{bottom:192.040000pt;}
.yc7{bottom:192.306667pt;}
.yce{bottom:192.346667pt;}
.ya7{bottom:198.746667pt;}
.yaf{bottom:208.200000pt;}
.yb8{bottom:208.346667pt;}
.yc3{bottom:208.466667pt;}
.y5f{bottom:208.506667pt;}
.y9d{bottom:212.026667pt;}
.y24{bottom:213.306667pt;}
.ydf{bottom:219.546667pt;}
.y42{bottom:225.800000pt;}
.ya6{bottom:230.906667pt;}
.yae{bottom:240.360000pt;}
.y9c{bottom:244.346667pt;}
.y23{bottom:245.626667pt;}
.yde{bottom:251.706667pt;}
.ya5{bottom:263.226667pt;}
.y81{bottom:267.386667pt;}
.y63{bottom:271.880000pt;}
.yad{bottom:272.520000pt;}
.y9b{bottom:276.506667pt;}
.y22{bottom:277.786667pt;}
.ydd{bottom:283.866667pt;}
.ya4{bottom:295.386667pt;}
.yb7{bottom:298.920000pt;}
.y80{bottom:299.546667pt;}
.y9a{bottom:308.666667pt;}
.y21{bottom:309.946667pt;}
.y41{bottom:316.026667pt;}
.ya3{bottom:323.226667pt;}
.y7c{bottom:327.240000pt;}
.y99{bottom:340.826667pt;}
.y20{bottom:342.106667pt;}
.y40{bottom:348.346667pt;}
.ycc{bottom:363.240000pt;}
.y98{bottom:373.186667pt;}
.y1f{bottom:374.306667pt;}
.y3f{bottom:380.546667pt;}
.y97{bottom:405.346667pt;}
.y1e{bottom:406.626667pt;}
.y3e{bottom:412.706667pt;}
.y5a{bottom:421.346667pt;}
.y96{bottom:437.506667pt;}
.y1d{bottom:438.786667pt;}
.y7a{bottom:444.386667pt;}
.y3d{bottom:444.866667pt;}
.yd9{bottom:458.786667pt;}
.y95{bottom:469.666667pt;}
.y1c{bottom:470.946667pt;}
.y3c{bottom:477.186667pt;}
.yd8{bottom:490.946667pt;}
.y94{bottom:501.826667pt;}
.y1b{bottom:503.106667pt;}
.ydc{bottom:509.026667pt;}
.y3b{bottom:509.346667pt;}
.yd7{bottom:523.106667pt;}
.yb4{bottom:524.866667pt;}
.y79{bottom:529.506667pt;}
.y93{bottom:534.146667pt;}
.y1a{bottom:535.426667pt;}
.y3a{bottom:541.506667pt;}
.yd6{bottom:555.266667pt;}
.y92{bottom:566.306667pt;}
.y19{bottom:567.586667pt;}
.y39{bottom:573.666667pt;}
.yd5{bottom:587.613333pt;}
.yc2{bottom:589.386667pt;}
.y91{bottom:598.493333pt;}
.y18{bottom:599.773333pt;}
.y38{bottom:605.853333pt;}
.yd4{bottom:615.293333pt;}
.ya2{bottom:622.973333pt;}
.y90{bottom:630.653333pt;}
.y17{bottom:631.933333pt;}
.y37{bottom:638.173333pt;}
.y78{bottom:646.813333pt;}
.ya1{bottom:655.133333pt;}
.y8f{bottom:662.973333pt;}
.y16{bottom:664.253333pt;}
.y54{bottom:667.453333pt;}
.y36{bottom:670.333333pt;}
.ya0{bottom:687.293333pt;}
.y8d{bottom:690.506667pt;}
.y15{bottom:696.413333pt;}
.y35{bottom:702.493333pt;}
.ya9{bottom:718.813333pt;}
.y9f{bottom:719.613333pt;}
.y14{bottom:728.573333pt;}
.y75{bottom:731.933333pt;}
.y34{bottom:734.653333pt;}
.y8c{bottom:743.453333pt;}
.y9e{bottom:747.293333pt;}
.y13{bottom:760.733333pt;}
.y33{bottom:766.973333pt;}
.y12{bottom:792.893333pt;}
.y86{bottom:796.253333pt;}
.ye3{bottom:798.813333pt;}
.y32{bottom:799.133333pt;}
.ybe{bottom:815.493333pt;}
.y50{bottom:816.933333pt;}
.y11{bottom:824.933333pt;}
.y31{bottom:831.333333pt;}
.y10{bottom:857.093333pt;}
.y30{bottom:863.493333pt;}
.y85{bottom:881.413333pt;}
.yf{bottom:889.253333pt;}
.y2f{bottom:895.813333pt;}
.y74{bottom:902.053333pt;}
.ye{bottom:917.253333pt;}
.y28{bottom:918.720000pt;}
.y2e{bottom:927.973333pt;}
.y4c{bottom:934.213333pt;}
.y2a{bottom:959.813333pt;}
.y2d{bottom:960.133333pt;}
.y2c{bottom:992.293333pt;}
.y3{bottom:1020.613333pt;}
.y1{bottom:1041.120000pt;}
.y9{bottom:1063.040000pt;}
.h6{height:22.560000pt;}
.h16{height:32.146667pt;}
.h1c{height:32.160000pt;}
.h1a{height:32.192000pt;}
.h1d{height:32.306667pt;}
.h2{height:35.840000pt;}
.h7{height:52.134375pt;}
.ha{height:52.503750pt;}
.h26{height:54.598989pt;}
.h4{height:59.066667pt;}
.he{height:64.306667pt;}
.h17{height:64.320000pt;}
.h10{height:64.466667pt;}
.h1b{height:64.500000pt;}
.hc{height:64.752187pt;}
.h5{height:73.490625pt;}
.h3{height:75.465000pt;}
.h1e{height:76.964840pt;}
.hf{height:80.352000pt;}
.hb{height:90.560000pt;}
.h19{height:96.498667pt;}
.h11{height:96.626667pt;}
.h18{height:96.666667pt;}
.h8{height:98.400000pt;}
.h12{height:128.800000pt;}
.h14{height:128.818667pt;}
.h15{height:128.832000pt;}
.hd{height:129.000000pt;}
.h9{height:161.812500pt;}
.h23{height:193.106667pt;}
.h22{height:193.146667pt;}
.h20{height:193.306667pt;}
.h21{height:225.293333pt;}
.h24{height:225.453333pt;}
.h13{height:225.466667pt;}
.h25{height:225.493333pt;}
.h1f{height:289.786667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w15{width:25.112000pt;}
.w7{width:30.872000pt;}
.w1a{width:82.578667pt;}
.w16{width:87.672000pt;}
.w19{width:90.226667pt;}
.w1b{width:92.946667pt;}
.w5{width:108.800000pt;}
.wb{width:112.826667pt;}
.wc{width:113.146667pt;}
.w18{width:114.752000pt;}
.w17{width:117.778667pt;}
.wa{width:123.218667pt;}
.w8{width:137.133333pt;}
.w3{width:145.626667pt;}
.w11{width:147.213333pt;}
.w4{width:150.426667pt;}
.wd{width:153.938667pt;}
.w2{width:167.538667pt;}
.wf{width:192.813333pt;}
.w10{width:193.133333pt;}
.w9{width:208.346667pt;}
.w13{width:224.653333pt;}
.w14{width:224.973333pt;}
.w12{width:247.546667pt;}
.we{width:257.626667pt;}
.w6{width:616.800000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x47{left:1.272000pt;}
.x21{left:4.480000pt;}
.x31{left:7.032000pt;}
.x1e{left:9.120000pt;}
.x34{left:12.792000pt;}
.x2c{left:13.912000pt;}
.x20{left:15.986667pt;}
.x22{left:17.426667pt;}
.x33{left:18.880000pt;}
.x4{left:20.160000pt;}
.x1a{left:21.440000pt;}
.x1f{left:23.040000pt;}
.x7{left:26.560000pt;}
.x38{left:27.512000pt;}
.x2d{left:29.280000pt;}
.x26{left:32.146667pt;}
.x2f{left:33.426667pt;}
.x39{left:35.026667pt;}
.x23{left:36.466667pt;}
.x2e{left:39.840000pt;}
.x17{left:41.426667pt;}
.x36{left:42.400000pt;}
.x1c{left:44.306667pt;}
.x27{left:48.146667pt;}
.x30{left:49.466667pt;}
.x19{left:52.480000pt;}
.x2b{left:54.106667pt;}
.x3a{left:56.480000pt;}
.x24{left:58.866667pt;}
.x35{left:59.840000pt;}
.x10{left:61.786667pt;}
.x25{left:63.026667pt;}
.x3c{left:65.920000pt;}
.x3d{left:70.400000pt;}
.x37{left:74.746667pt;}
.x32{left:76.826667pt;}
.x8{left:79.712000pt;}
.x29{left:87.040000pt;}
.x6{left:89.312000pt;}
.x1{left:94.600000pt;}
.x5{left:96.032000pt;}
.x15{left:107.720000pt;}
.x3f{left:113.312000pt;}
.x46{left:115.880000pt;}
.xf{left:136.506667pt;}
.x16{left:138.920000pt;}
.x50{left:171.226667pt;}
.x45{left:179.226667pt;}
.x14{left:185.306667pt;}
.x4e{left:193.946667pt;}
.x48{left:204.360000pt;}
.xd{left:230.426667pt;}
.x43{left:233.826667pt;}
.x3b{left:235.106667pt;}
.x28{left:249.346667pt;}
.x18{left:276.706667pt;}
.xb{left:288.386667pt;}
.xa{left:297.346667pt;}
.x41{left:302.946667pt;}
.x11{left:308.413333pt;}
.x44{left:311.586667pt;}
.xc{left:314.306667pt;}
.x49{left:322.786667pt;}
.x13{left:336.386667pt;}
.x51{left:369.986667pt;}
.x12{left:371.746667pt;}
.xe{left:397.693333pt;}
.x4a{left:438.186667pt;}
.x3e{left:483.306667pt;}
.x1b{left:485.706667pt;}
.x2a{left:507.626667pt;}
.x40{left:520.253333pt;}
.x4b{left:529.066667pt;}
.x4d{left:562.213333pt;}
.x42{left:570.213333pt;}
.x3{left:572.293333pt;}
.x2{left:576.133333pt;}
.x4f{left:599.333333pt;}
.x1d{left:609.573333pt;}
.x4c{left:612.453333pt;}
.x9{left:707.333333pt;}
}




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