
    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_62e595f7fc42c918977cd579.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ed9673826ee153e1a23c7a3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f618b04691665c7b20b0747c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.805176;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_39dfaefd89e3314b805068f7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_89b681ac187908833e7a247a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_79b2140dcdfba0225ab65ff7.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_69b7055028bbfcf0ee62c842.woff2')format("woff");}.ff7{font-family:ff7;line-height:2.150879;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_985d478d1a4ff74f856a8c05.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.805176;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_b190a979482b1e05a2ffde98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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);}
.v1{vertical-align:-14.760000px;}
.v3{vertical-align:-12.960000px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.880000px;}
.v4{vertical-align:12.960000px;}
.v2{vertical-align:14.760000px;}
.vd{vertical-align:15.840000px;}
.v6{vertical-align:42.120000px;}
.v5{vertical-align:47.520000px;}
.vb{vertical-align:52.560000px;}
.v8{vertical-align:55.080000px;}
.v10{vertical-align:67.320000px;}
.va{vertical-align:76.320000px;}
.v9{vertical-align:78.840000px;}
.vf{vertical-align:80.280000px;}
.v7{vertical-align:102.600000px;}
.ls30{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.171000px;}
.ls10{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.045000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.ls11{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.045000px;}
.ls2f{letter-spacing:0.045360px;}
.ls1{letter-spacing:0.072000px;}
.lse{letter-spacing:0.099000px;}
.ls12{letter-spacing:0.135000px;}
.ls9{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.153000px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.261000px;}
.ls16{letter-spacing:0.477000px;}
.ls4{letter-spacing:0.648000px;}
.ls14{letter-spacing:1.161000px;}
.ls1c{letter-spacing:1.449000px;}
.ls3{letter-spacing:1.584000px;}
.ls19{letter-spacing:1.620000px;}
.ls7{letter-spacing:1.656000px;}
.ls2e{letter-spacing:1.746000px;}
.ls22{letter-spacing:1.764000px;}
.ls5{letter-spacing:1.800000px;}
.lsb{letter-spacing:2.016000px;}
.lsc{letter-spacing:2.304000px;}
.ls13{letter-spacing:2.745000px;}
.lsa{letter-spacing:3.096000px;}
.ls24{letter-spacing:3.105000px;}
.ls1b{letter-spacing:3.690000px;}
.ls1f{letter-spacing:4.005000px;}
.ls6{letter-spacing:4.056480px;}
.ls15{letter-spacing:10.458000px;}
.ls18{letter-spacing:13.185000px;}
.ls2d{letter-spacing:14.670000px;}
.ls25{letter-spacing:16.425000px;}
.ls20{letter-spacing:17.805000px;}
.ls17{letter-spacing:21.105000px;}
.lsd{letter-spacing:23.348880px;}
.ls26{letter-spacing:34.335000px;}
.ls1d{letter-spacing:86.733000px;}
.ls1e{letter-spacing:95.832000px;}
.ls23{letter-spacing:153.099000px;}
.ls21{letter-spacing:177.105000px;}
.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;}
}
.ws5{word-spacing:-72.072000px;}
.ws7{word-spacing:-72.000003px;}
.ws6{word-spacing:-72.000000px;}
.ws8{word-spacing:-71.856000px;}
.wsf{word-spacing:-63.153000px;}
.wsd{word-spacing:-63.135000px;}
.wse{word-spacing:-63.000000px;}
.ws12{word-spacing:-62.955000px;}
.ws13{word-spacing:-62.829000px;}
.ws10{word-spacing:-62.820000px;}
.ws1a{word-spacing:-45.135000px;}
.ws18{word-spacing:-45.045000px;}
.ws19{word-spacing:-45.000000px;}
.ws14{word-spacing:-42.651000px;}
.ws16{word-spacing:-28.338000px;}
.ws15{word-spacing:-25.695000px;}
.ws0{word-spacing:-24.030000px;}
.ws17{word-spacing:-19.260000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.051120px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.470000px;}
.wsb{word-spacing:-15.750000px;}
.wsc{word-spacing:-15.642000px;}
.ws1b{word-spacing:-4.095000px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:110.619000px;}
._1a{margin-left:-16.167126px;}
._1b{margin-left:-12.209160px;}
._21{margin-left:-8.388000px;}
._1c{margin-left:-7.227360px;}
._18{margin-left:-6.048000px;}
._0{margin-left:-4.781160px;}
._4{margin-left:-3.744000px;}
._3{margin-left:-2.376000px;}
._1{margin-left:-1.258200px;}
._2{width:1.174320px;}
._7{width:2.664000px;}
._f{width:4.176000px;}
._6{width:5.328000px;}
._5{width:6.480000px;}
._13{width:7.704000px;}
._a{width:9.322200px;}
._9{width:10.440000px;}
._14{width:11.664000px;}
._12{width:13.179360px;}
._15{width:14.760000px;}
._8{width:15.840000px;}
._20{width:17.262000px;}
._11{width:19.008000px;}
._1f{width:20.159280px;}
._19{width:22.608000px;}
._17{width:24.768000px;}
._16{width:25.776000px;}
._e{width:28.440000px;}
._d{width:32.400000px;}
._c{width:34.416000px;}
._b{width:37.296000px;}
._10{width:44.640000px;}
._1e{width:50.184000px;}
._1d{width:51.192000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.000000px;}
.fs5{font-size:51.120000px;}
.fs4{font-size:60.120000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.fs1{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.600000px;}
.y8a{bottom:6.660000px;}
.y95{bottom:7.200000px;}
.y8c{bottom:7.290000px;}
.y6e{bottom:7.920000px;}
.yb6{bottom:8.460000px;}
.y92{bottom:10.170000px;}
.y7b{bottom:10.350000px;}
.yaf{bottom:10.710000px;}
.y60{bottom:11.790000px;}
.ybf{bottom:12.600000px;}
.yb9{bottom:13.230000px;}
.yb3{bottom:13.680000px;}
.y6a{bottom:14.760000px;}
.y70{bottom:16.470000px;}
.y6f{bottom:16.560000px;}
.y71{bottom:16.920000px;}
.y89{bottom:17.190000px;}
.y86{bottom:17.640000px;}
.y87{bottom:17.730000px;}
.y8b{bottom:17.820000px;}
.yb5{bottom:18.990000px;}
.yab{bottom:21.270000px;}
.y9a{bottom:21.600000px;}
.ybb{bottom:22.770000px;}
.yb2{bottom:23.220000px;}
.y61{bottom:23.400000px;}
.y5e{bottom:23.760000px;}
.y6d{bottom:25.920000px;}
.y91{bottom:28.170000px;}
.yaa{bottom:29.460000px;}
.ya5{bottom:30.240000px;}
.ybd{bottom:30.600000px;}
.yae{bottom:31.530000px;}
.yb8{bottom:33.330000px;}
.y7a{bottom:33.750000px;}
.y5f{bottom:35.190000px;}
.yad{bottom:36.570000px;}
.y69{bottom:38.160000px;}
.y9b{bottom:39.600000px;}
.yb0{bottom:41.040000px;}
.yba{bottom:45.660000px;}
.y90{bottom:46.170000px;}
.yac{bottom:46.650000px;}
.ya4{bottom:48.240000px;}
.y79{bottom:57.150000px;}
.ya1{bottom:57.240000px;}
.ya0{bottom:57.600000px;}
.y68{bottom:61.560000px;}
.y8f{bottom:64.170000px;}
.ya3{bottom:66.240000px;}
.ya8{bottom:67.950000px;}
.y84{bottom:70.200000px;}
.y74{bottom:71.820000px;}
.y98{bottom:75.600000px;}
.yb1{bottom:76.140000px;}
.y7c{bottom:80.460000px;}
.y78{bottom:80.550000px;}
.y7d{bottom:80.820000px;}
.y8e{bottom:82.170000px;}
.ya2{bottom:84.240000px;}
.y6b{bottom:84.870000px;}
.y67{bottom:84.960000px;}
.y63{bottom:85.230000px;}
.ya7{bottom:85.950000px;}
.y83{bottom:88.230000px;}
.y73{bottom:89.820000px;}
.y97{bottom:93.600000px;}
.y77{bottom:103.950000px;}
.y82{bottom:106.230000px;}
.y66{bottom:108.390000px;}
.y9f{bottom:111.600000px;}
.ya6{bottom:116.460000px;}
.y76{bottom:127.350000px;}
.y3c{bottom:129.060000px;}
.y9e{bottom:129.600000px;}
.y5d{bottom:131.130000px;}
.y65{bottom:131.790000px;}
.y9d{bottom:147.600000px;}
.y7f{bottom:149.130000px;}
.y75{bottom:150.750000px;}
.y64{bottom:155.190000px;}
.y1f{bottom:156.330000px;}
.y3b{bottom:159.030000px;}
.y9c{bottom:165.600000px;}
.y1e{bottom:186.390000px;}
.y3a{bottom:189.090000px;}
.y5b{bottom:190.170000px;}
.ya9{bottom:210.870000px;}
.y1d{bottom:216.360000px;}
.y39{bottom:219.060000px;}
.y5a{bottom:224.460000px;}
.y59{bottom:242.490000px;}
.y1c{bottom:246.360000px;}
.y58{bottom:260.490000px;}
.y38{bottom:260.760000px;}
.y1b{bottom:276.420000px;}
.y57{bottom:278.490000px;}
.y96{bottom:281.820000px;}
.y37{bottom:290.820000px;}
.y1a{bottom:306.390000px;}
.y56{bottom:310.620000px;}
.y36{bottom:320.790000px;}
.y19{bottom:336.360000px;}
.y55{bottom:340.590000px;}
.y35{bottom:362.460000px;}
.y18{bottom:366.420000px;}
.y54{bottom:370.560000px;}
.y17{bottom:396.390000px;}
.y53{bottom:400.620000px;}
.y34{bottom:404.220000px;}
.y99{bottom:407.820000px;}
.y16{bottom:426.360000px;}
.y33{bottom:434.190000px;}
.y52{bottom:442.290000px;}
.y15{bottom:456.420000px;}
.y7e{bottom:462.540000px;}
.y32{bottom:464.160000px;}
.y51{bottom:472.260000px;}
.y14{bottom:486.390000px;}
.y31{bottom:494.220000px;}
.y50{bottom:502.320000px;}
.y94{bottom:510.150000px;}
.y13{bottom:516.360000px;}
.y93{bottom:528.870000px;}
.y4f{bottom:532.290000px;}
.y30{bottom:535.890000px;}
.y12{bottom:546.420000px;}
.y8d{bottom:547.590000px;}
.y4e{bottom:562.260000px;}
.y81{bottom:566.400000px;}
.y11{bottom:576.390000px;}
.y2f{bottom:577.560000px;}
.y4d{bottom:592.320000px;}
.y10{bottom:606.360000px;}
.y88{bottom:613.920000px;}
.y2e{bottom:619.320000px;}
.y4c{bottom:633.990000px;}
.yf{bottom:636.420000px;}
.y2d{bottom:649.320000px;}
.y85{bottom:661.470000px;}
.y4b{bottom:663.990000px;}
.ye{bottom:666.420000px;}
.y2c{bottom:679.290000px;}
.y4a{bottom:694.050000px;}
.yd{bottom:696.390000px;}
.y80{bottom:709.080000px;}
.y2b{bottom:709.350000px;}
.y49{bottom:724.020000px;}
.yc{bottom:726.450000px;}
.y2a{bottom:751.020000px;}
.y48{bottom:753.990000px;}
.y72{bottom:754.350000px;}
.yb{bottom:756.420000px;}
.yc3{bottom:773.700000px;}
.y29{bottom:780.990000px;}
.ya{bottom:786.390000px;}
.y47{bottom:795.750000px;}
.y28{bottom:811.050000px;}
.yc2{bottom:813.300000px;}
.y9{bottom:816.450000px;}
.y46{bottom:837.420000px;}
.y27{bottom:841.020000px;}
.y8{bottom:846.420000px;}
.yc1{bottom:864.060000px;}
.y45{bottom:867.390000px;}
.y26{bottom:870.990000px;}
.y7{bottom:876.390000px;}
.y44{bottom:897.450000px;}
.y25{bottom:901.050000px;}
.y6{bottom:906.450000px;}
.yc0{bottom:911.670000px;}
.ybe{bottom:926.880000px;}
.y43{bottom:927.420000px;}
.y6c{bottom:927.600000px;}
.y24{bottom:931.020000px;}
.y5{bottom:936.420000px;}
.ybc{bottom:963.600000px;}
.y4{bottom:966.390000px;}
.y42{bottom:969.090000px;}
.y62{bottom:972.870000px;}
.y23{bottom:981.780000px;}
.y41{bottom:999.150000px;}
.y3{bottom:1017.240000px;}
.y40{bottom:1029.120000px;}
.yb7{bottom:1036.320000px;}
.y22{bottom:1036.950000px;}
.y3f{bottom:1059.090000px;}
.y21{bottom:1072.080000px;}
.y2{bottom:1077.120000px;}
.y3e{bottom:1089.180000px;}
.yb4{bottom:1107.360000px;}
.y20{bottom:1122.840000px;}
.y1{bottom:1123.920000px;}
.y3d{bottom:1130.850000px;}
.ha{height:18.000000px;}
.h2a{height:36.000000px;}
.hf{height:43.989258px;}
.h10{height:44.550000px;}
.h9{height:46.482715px;}
.h15{height:46.800000px;}
.h16{height:46.830000px;}
.h12{height:47.649902px;}
.h2c{height:49.828184px;}
.h5{height:50.273438px;}
.h1d{height:54.000000px;}
.hc{height:58.230000px;}
.h2{height:59.182910px;}
.h22{height:61.127930px;}
.hb{height:64.754072px;}
.h2b{height:67.714259px;}
.h4{height:68.582109px;}
.h20{height:70.230000px;}
.h29{height:72.000000px;}
.h6{height:74.004654px;}
.hd{height:85.579102px;}
.h3{height:87.320391px;}
.h24{height:88.459102px;}
.h28{height:89.769902px;}
.h25{height:89.889902px;}
.h26{height:93.600000px;}
.h8{height:97.804688px;}
.h7{height:100.062422px;}
.h1a{height:103.050000px;}
.h1b{height:106.874072px;}
.h1e{height:125.280000px;}
.h18{height:127.699102px;}
.h17{height:133.099102px;}
.h23{height:138.139102px;}
.h21{height:164.419102px;}
.h1f{height:164.640000px;}
.h27{height:165.859102px;}
.h11{height:172.530000px;}
.h19{height:175.219102px;}
.h1c{height:180.000000px;}
.he{height:181.290000px;}
.h14{height:187.230000px;}
.h13{height:291.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:101.610000px;}
.w3{width:148.500000px;}
.w5{width:180.030000px;}
.w4{width:191.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.100000px;}
.x19{left:10.080000px;}
.xd{left:12.060000px;}
.x21{left:13.140000px;}
.x17{left:15.570000px;}
.x22{left:17.010000px;}
.xc{left:18.630000px;}
.x27{left:19.800000px;}
.x23{left:20.970000px;}
.x2a{left:23.130000px;}
.x2b{left:24.840000px;}
.x14{left:27.450000px;}
.x1c{left:29.160000px;}
.x1b{left:30.420000px;}
.x15{left:31.770000px;}
.x24{left:34.740000px;}
.x12{left:36.090000px;}
.x13{left:38.610000px;}
.xe{left:39.870000px;}
.x6{left:43.110000px;}
.x11{left:44.640000px;}
.x30{left:46.620000px;}
.x25{left:48.420000px;}
.xf{left:49.950000px;}
.x35{left:51.030000px;}
.x1e{left:52.560000px;}
.x2c{left:53.640000px;}
.x1a{left:54.900000px;}
.x18{left:56.520000px;}
.xa{left:57.600000px;}
.x36{left:58.950000px;}
.x31{left:62.010000px;}
.x20{left:63.900000px;}
.x1d{left:70.290000px;}
.x16{left:73.350000px;}
.x26{left:78.660000px;}
.x8{left:82.560000px;}
.x10{left:84.150000px;}
.x28{left:88.020000px;}
.x2d{left:90.000000px;}
.x32{left:91.620000px;}
.x2e{left:96.300000px;}
.x29{left:103.140000px;}
.x2f{left:108.540000px;}
.x33{left:118.710000px;}
.x34{left:128.010000px;}
.x3{left:135.029987px;}
.x2{left:136.199987px;}
.x5{left:166.529987px;}
.x37{left:168.059987px;}
.x4{left:171.029987px;}
.x1{left:205.319987px;}
.x7{left:283.890000px;}
.x9{left:475.620000px;}
.xb{left:656.460000px;}
@media print{
.v1{vertical-align:-13.120000pt;}
.v3{vertical-align:-11.520000pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.560000pt;}
.v4{vertical-align:11.520000pt;}
.v2{vertical-align:13.120000pt;}
.vd{vertical-align:14.080000pt;}
.v6{vertical-align:37.440000pt;}
.v5{vertical-align:42.240000pt;}
.vb{vertical-align:46.720000pt;}
.v8{vertical-align:48.960000pt;}
.v10{vertical-align:59.840000pt;}
.va{vertical-align:67.840000pt;}
.v9{vertical-align:70.080000pt;}
.vf{vertical-align:71.360000pt;}
.v7{vertical-align:91.200000pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.152000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.040000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000003pt;}
.ls11{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.040000pt;}
.ls2f{letter-spacing:0.040320pt;}
.ls1{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.088000pt;}
.ls12{letter-spacing:0.120000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.136000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.232000pt;}
.ls16{letter-spacing:0.424000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls14{letter-spacing:1.032000pt;}
.ls1c{letter-spacing:1.288000pt;}
.ls3{letter-spacing:1.408000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls7{letter-spacing:1.472000pt;}
.ls2e{letter-spacing:1.552000pt;}
.ls22{letter-spacing:1.568000pt;}
.ls5{letter-spacing:1.600000pt;}
.lsb{letter-spacing:1.792000pt;}
.lsc{letter-spacing:2.048000pt;}
.ls13{letter-spacing:2.440000pt;}
.lsa{letter-spacing:2.752000pt;}
.ls24{letter-spacing:2.760000pt;}
.ls1b{letter-spacing:3.280000pt;}
.ls1f{letter-spacing:3.560000pt;}
.ls6{letter-spacing:3.605760pt;}
.ls15{letter-spacing:9.296000pt;}
.ls18{letter-spacing:11.720000pt;}
.ls2d{letter-spacing:13.040000pt;}
.ls25{letter-spacing:14.600000pt;}
.ls20{letter-spacing:15.826667pt;}
.ls17{letter-spacing:18.760000pt;}
.lsd{letter-spacing:20.754560pt;}
.ls26{letter-spacing:30.520000pt;}
.ls1d{letter-spacing:77.096000pt;}
.ls1e{letter-spacing:85.184000pt;}
.ls23{letter-spacing:136.088000pt;}
.ls21{letter-spacing:157.426667pt;}
.ws5{word-spacing:-64.064000pt;}
.ws7{word-spacing:-64.000003pt;}
.ws6{word-spacing:-64.000000pt;}
.ws8{word-spacing:-63.872000pt;}
.wsf{word-spacing:-56.136000pt;}
.wsd{word-spacing:-56.120000pt;}
.wse{word-spacing:-56.000000pt;}
.ws12{word-spacing:-55.960000pt;}
.ws13{word-spacing:-55.848000pt;}
.ws10{word-spacing:-55.840000pt;}
.ws1a{word-spacing:-40.120000pt;}
.ws18{word-spacing:-40.040000pt;}
.ws19{word-spacing:-40.000000pt;}
.ws14{word-spacing:-37.912000pt;}
.ws16{word-spacing:-25.189333pt;}
.ws15{word-spacing:-22.840000pt;}
.ws0{word-spacing:-21.360000pt;}
.ws17{word-spacing:-17.120000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.045440pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.640000pt;}
.wsb{word-spacing:-14.000000pt;}
.wsc{word-spacing:-13.904000pt;}
.ws1b{word-spacing:-3.640000pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:98.328000pt;}
._1a{margin-left:-14.370778pt;}
._1b{margin-left:-10.852587pt;}
._21{margin-left:-7.456000pt;}
._1c{margin-left:-6.424320pt;}
._18{margin-left:-5.376000pt;}
._0{margin-left:-4.249920pt;}
._4{margin-left:-3.328000pt;}
._3{margin-left:-2.112000pt;}
._1{margin-left:-1.118400pt;}
._2{width:1.043840pt;}
._7{width:2.368000pt;}
._f{width:3.712000pt;}
._6{width:4.736000pt;}
._5{width:5.760000pt;}
._13{width:6.848000pt;}
._a{width:8.286400pt;}
._9{width:9.280000pt;}
._14{width:10.368000pt;}
._12{width:11.714987pt;}
._15{width:13.120000pt;}
._8{width:14.080000pt;}
._20{width:15.344000pt;}
._11{width:16.896000pt;}
._1f{width:17.919360pt;}
._19{width:20.096000pt;}
._17{width:22.016000pt;}
._16{width:22.912000pt;}
._e{width:25.280000pt;}
._d{width:28.800000pt;}
._c{width:30.592000pt;}
._b{width:33.152000pt;}
._10{width:39.680000pt;}
._1e{width:44.608000pt;}
._1d{width:45.504000pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:45.440000pt;}
.fs4{font-size:53.440000pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.fs1{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:3.200000pt;}
.y8a{bottom:5.920000pt;}
.y95{bottom:6.400000pt;}
.y8c{bottom:6.480000pt;}
.y6e{bottom:7.040000pt;}
.yb6{bottom:7.520000pt;}
.y92{bottom:9.040000pt;}
.y7b{bottom:9.200000pt;}
.yaf{bottom:9.520000pt;}
.y60{bottom:10.480000pt;}
.ybf{bottom:11.200000pt;}
.yb9{bottom:11.760000pt;}
.yb3{bottom:12.160000pt;}
.y6a{bottom:13.120000pt;}
.y70{bottom:14.640000pt;}
.y6f{bottom:14.720000pt;}
.y71{bottom:15.040000pt;}
.y89{bottom:15.280000pt;}
.y86{bottom:15.680000pt;}
.y87{bottom:15.760000pt;}
.y8b{bottom:15.840000pt;}
.yb5{bottom:16.880000pt;}
.yab{bottom:18.906667pt;}
.y9a{bottom:19.200000pt;}
.ybb{bottom:20.240000pt;}
.yb2{bottom:20.640000pt;}
.y61{bottom:20.800000pt;}
.y5e{bottom:21.120000pt;}
.y6d{bottom:23.040000pt;}
.y91{bottom:25.040000pt;}
.yaa{bottom:26.186667pt;}
.ya5{bottom:26.880000pt;}
.ybd{bottom:27.200000pt;}
.yae{bottom:28.026667pt;}
.yb8{bottom:29.626667pt;}
.y7a{bottom:30.000000pt;}
.y5f{bottom:31.280000pt;}
.yad{bottom:32.506667pt;}
.y69{bottom:33.920000pt;}
.y9b{bottom:35.200000pt;}
.yb0{bottom:36.480000pt;}
.yba{bottom:40.586667pt;}
.y90{bottom:41.040000pt;}
.yac{bottom:41.466667pt;}
.ya4{bottom:42.880000pt;}
.y79{bottom:50.800000pt;}
.ya1{bottom:50.880000pt;}
.ya0{bottom:51.200000pt;}
.y68{bottom:54.720000pt;}
.y8f{bottom:57.040000pt;}
.ya3{bottom:58.880000pt;}
.ya8{bottom:60.400000pt;}
.y84{bottom:62.400000pt;}
.y74{bottom:63.840000pt;}
.y98{bottom:67.200000pt;}
.yb1{bottom:67.680000pt;}
.y7c{bottom:71.520000pt;}
.y78{bottom:71.600000pt;}
.y7d{bottom:71.840000pt;}
.y8e{bottom:73.040000pt;}
.ya2{bottom:74.880000pt;}
.y6b{bottom:75.440000pt;}
.y67{bottom:75.520000pt;}
.y63{bottom:75.760000pt;}
.ya7{bottom:76.400000pt;}
.y83{bottom:78.426667pt;}
.y73{bottom:79.840000pt;}
.y97{bottom:83.200000pt;}
.y77{bottom:92.400000pt;}
.y82{bottom:94.426667pt;}
.y66{bottom:96.346667pt;}
.y9f{bottom:99.200000pt;}
.ya6{bottom:103.520000pt;}
.y76{bottom:113.200000pt;}
.y3c{bottom:114.720000pt;}
.y9e{bottom:115.200000pt;}
.y5d{bottom:116.560000pt;}
.y65{bottom:117.146667pt;}
.y9d{bottom:131.200000pt;}
.y7f{bottom:132.560000pt;}
.y75{bottom:134.000000pt;}
.y64{bottom:137.946667pt;}
.y1f{bottom:138.960000pt;}
.y3b{bottom:141.360000pt;}
.y9c{bottom:147.200000pt;}
.y1e{bottom:165.680000pt;}
.y3a{bottom:168.080000pt;}
.y5b{bottom:169.040000pt;}
.ya9{bottom:187.440000pt;}
.y1d{bottom:192.320000pt;}
.y39{bottom:194.720000pt;}
.y5a{bottom:199.520000pt;}
.y59{bottom:215.546667pt;}
.y1c{bottom:218.986667pt;}
.y58{bottom:231.546667pt;}
.y38{bottom:231.786667pt;}
.y1b{bottom:245.706667pt;}
.y57{bottom:247.546667pt;}
.y96{bottom:250.506667pt;}
.y37{bottom:258.506667pt;}
.y1a{bottom:272.346667pt;}
.y56{bottom:276.106667pt;}
.y36{bottom:285.146667pt;}
.y19{bottom:298.986667pt;}
.y55{bottom:302.746667pt;}
.y35{bottom:322.186667pt;}
.y18{bottom:325.706667pt;}
.y54{bottom:329.386667pt;}
.y17{bottom:352.346667pt;}
.y53{bottom:356.106667pt;}
.y34{bottom:359.306667pt;}
.y99{bottom:362.506667pt;}
.y16{bottom:378.986667pt;}
.y33{bottom:385.946667pt;}
.y52{bottom:393.146667pt;}
.y15{bottom:405.706667pt;}
.y7e{bottom:411.146667pt;}
.y32{bottom:412.586667pt;}
.y51{bottom:419.786667pt;}
.y14{bottom:432.346667pt;}
.y31{bottom:439.306667pt;}
.y50{bottom:446.506667pt;}
.y94{bottom:453.466667pt;}
.y13{bottom:458.986667pt;}
.y93{bottom:470.106667pt;}
.y4f{bottom:473.146667pt;}
.y30{bottom:476.346667pt;}
.y12{bottom:485.706667pt;}
.y8d{bottom:486.746667pt;}
.y4e{bottom:499.786667pt;}
.y81{bottom:503.466667pt;}
.y11{bottom:512.346667pt;}
.y2f{bottom:513.386667pt;}
.y4d{bottom:526.506667pt;}
.y10{bottom:538.986667pt;}
.y88{bottom:545.706667pt;}
.y2e{bottom:550.506667pt;}
.y4c{bottom:563.546667pt;}
.yf{bottom:565.706667pt;}
.y2d{bottom:577.173333pt;}
.y85{bottom:587.973333pt;}
.y4b{bottom:590.213333pt;}
.ye{bottom:592.373333pt;}
.y2c{bottom:603.813333pt;}
.y4a{bottom:616.933333pt;}
.yd{bottom:619.013333pt;}
.y80{bottom:630.293333pt;}
.y2b{bottom:630.533333pt;}
.y49{bottom:643.573333pt;}
.yc{bottom:645.733333pt;}
.y2a{bottom:667.573333pt;}
.y48{bottom:670.213333pt;}
.y72{bottom:670.533333pt;}
.yb{bottom:672.373333pt;}
.yc3{bottom:687.733333pt;}
.y29{bottom:694.213333pt;}
.ya{bottom:699.013333pt;}
.y47{bottom:707.333333pt;}
.y28{bottom:720.933333pt;}
.yc2{bottom:722.933333pt;}
.y9{bottom:725.733333pt;}
.y46{bottom:744.373333pt;}
.y27{bottom:747.573333pt;}
.y8{bottom:752.373333pt;}
.yc1{bottom:768.053333pt;}
.y45{bottom:771.013333pt;}
.y26{bottom:774.213333pt;}
.y7{bottom:779.013333pt;}
.y44{bottom:797.733333pt;}
.y25{bottom:800.933333pt;}
.y6{bottom:805.733333pt;}
.yc0{bottom:810.373333pt;}
.ybe{bottom:823.893333pt;}
.y43{bottom:824.373333pt;}
.y6c{bottom:824.533333pt;}
.y24{bottom:827.573333pt;}
.y5{bottom:832.373333pt;}
.ybc{bottom:856.533333pt;}
.y4{bottom:859.013333pt;}
.y42{bottom:861.413333pt;}
.y62{bottom:864.773333pt;}
.y23{bottom:872.693333pt;}
.y41{bottom:888.133333pt;}
.y3{bottom:904.213333pt;}
.y40{bottom:914.773333pt;}
.yb7{bottom:921.173333pt;}
.y22{bottom:921.733333pt;}
.y3f{bottom:941.413333pt;}
.y21{bottom:952.960000pt;}
.y2{bottom:957.440000pt;}
.y3e{bottom:968.160000pt;}
.yb4{bottom:984.320000pt;}
.y20{bottom:998.080000pt;}
.y1{bottom:999.040000pt;}
.y3d{bottom:1005.200000pt;}
.ha{height:16.000000pt;}
.h2a{height:32.000000pt;}
.hf{height:39.101562pt;}
.h10{height:39.600000pt;}
.h9{height:41.317969pt;}
.h15{height:41.600000pt;}
.h16{height:41.626667pt;}
.h12{height:42.355469pt;}
.h2c{height:44.291719pt;}
.h5{height:44.687500pt;}
.h1d{height:48.000000pt;}
.hc{height:51.760000pt;}
.h2{height:52.607031pt;}
.h22{height:54.335938pt;}
.hb{height:57.559176pt;}
.h2b{height:60.190452pt;}
.h4{height:60.961875pt;}
.h20{height:62.426667pt;}
.h29{height:64.000000pt;}
.h6{height:65.781915pt;}
.hd{height:76.070312pt;}
.h3{height:77.618125pt;}
.h24{height:78.630313pt;}
.h28{height:79.795469pt;}
.h25{height:79.902135pt;}
.h26{height:83.200000pt;}
.h8{height:86.937500pt;}
.h7{height:88.944375pt;}
.h1a{height:91.600000pt;}
.h1b{height:94.999176pt;}
.h1e{height:111.360000pt;}
.h18{height:113.510313pt;}
.h17{height:118.310312pt;}
.h23{height:122.790312pt;}
.h21{height:146.150313pt;}
.h1f{height:146.346667pt;}
.h27{height:147.430312pt;}
.h11{height:153.360000pt;}
.h19{height:155.750312pt;}
.h1c{height:160.000000pt;}
.he{height:161.146667pt;}
.h14{height:166.426667pt;}
.h13{height:258.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:90.320000pt;}
.w3{width:132.000000pt;}
.w5{width:160.026667pt;}
.w4{width:169.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.200000pt;}
.x19{left:8.960000pt;}
.xd{left:10.720000pt;}
.x21{left:11.680000pt;}
.x17{left:13.840000pt;}
.x22{left:15.120000pt;}
.xc{left:16.560000pt;}
.x27{left:17.600000pt;}
.x23{left:18.640000pt;}
.x2a{left:20.560000pt;}
.x2b{left:22.080000pt;}
.x14{left:24.400000pt;}
.x1c{left:25.920000pt;}
.x1b{left:27.040000pt;}
.x15{left:28.240000pt;}
.x24{left:30.880000pt;}
.x12{left:32.080000pt;}
.x13{left:34.320000pt;}
.xe{left:35.440000pt;}
.x6{left:38.320000pt;}
.x11{left:39.680000pt;}
.x30{left:41.440000pt;}
.x25{left:43.040000pt;}
.xf{left:44.400000pt;}
.x35{left:45.360000pt;}
.x1e{left:46.720000pt;}
.x2c{left:47.680000pt;}
.x1a{left:48.800000pt;}
.x18{left:50.240000pt;}
.xa{left:51.200000pt;}
.x36{left:52.400000pt;}
.x31{left:55.120000pt;}
.x20{left:56.800000pt;}
.x1d{left:62.480000pt;}
.x16{left:65.200000pt;}
.x26{left:69.920000pt;}
.x8{left:73.386667pt;}
.x10{left:74.800000pt;}
.x28{left:78.240000pt;}
.x2d{left:80.000000pt;}
.x32{left:81.440000pt;}
.x2e{left:85.600000pt;}
.x29{left:91.680000pt;}
.x2f{left:96.480000pt;}
.x33{left:105.520000pt;}
.x34{left:113.786667pt;}
.x3{left:120.026655pt;}
.x2{left:121.066655pt;}
.x5{left:148.026655pt;}
.x37{left:149.386655pt;}
.x4{left:152.026655pt;}
.x1{left:182.506655pt;}
.x7{left:252.346667pt;}
.x9{left:422.773333pt;}
.xb{left:583.520000pt;}
}




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