
    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_8e4f810d5650f88cbf94001c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_9b8dfb44c163488fa1263474.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d9f5cabab4d976f1c8b04953.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48ce7ba0c36bf39a23219273.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_5d3b6d7cabd7dfdda9986d22.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_089f1dde01ee7ffc83f66afa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.046387;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_0ef65b03913b1e44c4483a68.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_5d84e3a6d929c7d320c52096.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_87f012823f0423e7cb4aa28b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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(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);}
.v2{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:27.360000px;}
.ls27{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.576000px;}
.ls37{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.341400px;}
.ls11{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.028080px;}
.lsd{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.037440px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.152640px;}
.ls17{letter-spacing:0.192000px;}
.ls1a{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.256200px;}
.ls35{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.350640px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.378600px;}
.ls2e{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.720000px;}
.ls2c{letter-spacing:1.440000px;}
.ls25{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.880000px;}
.ls15{letter-spacing:4.320000px;}
.lsb{letter-spacing:5.040000px;}
.ls34{letter-spacing:5.760000px;}
.ls2d{letter-spacing:8.640000px;}
.ls26{letter-spacing:9.900000px;}
.ls22{letter-spacing:10.080000px;}
.ls33{letter-spacing:11.664000px;}
.ls36{letter-spacing:16.560000px;}
.ls2a{letter-spacing:18.720000px;}
.ls39{letter-spacing:20.880000px;}
.ls31{letter-spacing:21.600000px;}
.ls7{letter-spacing:25.920000px;}
.ls16{letter-spacing:27.360000px;}
.lsc{letter-spacing:28.080000px;}
.ls19{letter-spacing:31.680000px;}
.ls14{letter-spacing:34.560000px;}
.ls18{letter-spacing:35.280000px;}
.ls8{letter-spacing:36.000000px;}
.ls4{letter-spacing:38.160000px;}
.ls32{letter-spacing:39.600000px;}
.ls29{letter-spacing:41.160000px;}
.ls20{letter-spacing:41.760000px;}
.ls5{letter-spacing:43.200000px;}
.ls24{letter-spacing:61.380000px;}
.ls30{letter-spacing:90.000000px;}
.ls3a{letter-spacing:102.384000px;}
.ls38{letter-spacing:138.384000px;}
.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;}
}
.ws0{word-spacing:-26.424000px;}
.ws12{word-spacing:-21.097440px;}
.ws3{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.031920px;}
.ws2{word-spacing:-20.718600px;}
.wsd{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wse{word-spacing:-17.280000px;}
.ws1{word-spacing:-15.226440px;}
.ws13{word-spacing:-12.060000px;}
.wsb{word-spacing:0.000000px;}
._2b{margin-left:-3.545520px;}
._2a{margin-left:-2.424960px;}
._0{margin-left:-1.188000px;}
._2{width:1.152000px;}
._d{width:2.928000px;}
._e{width:4.296000px;}
._f{width:5.604000px;}
._7{width:6.624000px;}
._1a{width:7.632000px;}
._1b{width:9.576000px;}
._6{width:10.620000px;}
._5{width:11.640000px;}
._16{width:12.840000px;}
._15{width:13.872000px;}
._19{width:15.552000px;}
._18{width:16.812000px;}
._1{width:18.648000px;}
._17{width:19.776000px;}
._14{width:21.024000px;}
._13{width:22.116000px;}
._12{width:23.160000px;}
._b{width:26.184000px;}
._11{width:27.708000px;}
._10{width:28.740000px;}
._1c{width:30.720000px;}
._20{width:32.304000px;}
._1d{width:34.236000px;}
._c{width:35.688000px;}
._4{width:37.140000px;}
._3{width:38.784000px;}
._2c{width:40.752000px;}
._9{width:41.796000px;}
._8{width:43.248000px;}
._1f{width:45.360000px;}
._1e{width:47.016000px;}
._30{width:50.328000px;}
._31{width:51.840000px;}
._28{width:54.072000px;}
._26{width:60.588000px;}
._25{width:61.848000px;}
._27{width:62.976000px;}
._29{width:64.344000px;}
._22{width:87.072000px;}
._21{width:88.272000px;}
._2d{width:89.964000px;}
._a{width:94.044000px;}
._23{width:102.456000px;}
._24{width:103.548000px;}
._2e{width:204.816000px;}
._2f{width:205.824000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.960000px;}
.y85{bottom:4.140000px;}
.y3{bottom:7.020000px;}
.y88{bottom:7.560000px;}
.y8b{bottom:8.280000px;}
.y87{bottom:11.160000px;}
.y7{bottom:11.340000px;}
.y8a{bottom:12.780000px;}
.y60{bottom:14.220000px;}
.y61{bottom:14.400000px;}
.y83{bottom:24.840000px;}
.y2{bottom:28.260000px;}
.y5e{bottom:30.240000px;}
.y81{bottom:35.640000px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.y7f{bottom:137.196000px;}
.y51{bottom:143.496000px;}
.ybd{bottom:152.310000px;}
.y7e{bottom:160.950000px;}
.ya7{bottom:161.490000px;}
.y50{bottom:174.630000px;}
.y30{bottom:177.510000px;}
.ybc{bottom:183.450000px;}
.y7d{bottom:184.710000px;}
.ya6{bottom:194.790000px;}
.y2f{bottom:201.270000px;}
.y4f{bottom:205.590000px;}
.ybb{bottom:214.410000px;}
.y7c{bottom:215.850000px;}
.y2e{bottom:225.030000px;}
.ya5{bottom:231.150000px;}
.y4e{bottom:236.730000px;}
.yba{bottom:245.550000px;}
.y7b{bottom:246.810000px;}
.y2d{bottom:248.970000px;}
.ya4{bottom:267.330000px;}
.y4d{bottom:267.690000px;}
.y2c{bottom:272.730000px;}
.yb9{bottom:276.510000px;}
.y7a{bottom:277.950000px;}
.y2b{bottom:296.490000px;}
.y4c{bottom:298.830000px;}
.y70{bottom:299.370000px;}
.ya3{bottom:303.510000px;}
.yb8{bottom:307.650000px;}
.y79{bottom:308.910000px;}
.y2a{bottom:320.250000px;}
.y4b{bottom:329.790000px;}
.y6f{bottom:330.510000px;}
.yb7{bottom:338.655000px;}
.ya2{bottom:339.735000px;}
.y78{bottom:340.095000px;}
.y29{bottom:344.235000px;}
.y4a{bottom:360.975000px;}
.y6e{bottom:361.515000px;}
.y28{bottom:367.995000px;}
.yb6{bottom:369.795000px;}
.y77{bottom:371.055000px;}
.ya1{bottom:373.755000px;}
.y27{bottom:391.755000px;}
.y49{bottom:391.935000px;}
.y6d{bottom:392.655000px;}
.yb5{bottom:400.755000px;}
.ya0{bottom:404.715000px;}
.y26{bottom:415.515000px;}
.y48{bottom:423.075000px;}
.y6c{bottom:423.615000px;}
.yb4{bottom:431.895000px;}
.y9f{bottom:435.855000px;}
.y25{bottom:439.455000px;}
.y47{bottom:454.035000px;}
.y6b{bottom:454.755000px;}
.yb3{bottom:462.855000px;}
.y24{bottom:463.215000px;}
.y9e{bottom:466.815000px;}
.y46{bottom:485.175000px;}
.y6a{bottom:485.715000px;}
.y23{bottom:486.975000px;}
.yb2{bottom:493.995000px;}
.y9d{bottom:497.955000px;}
.y22{bottom:510.735000px;}
.y45{bottom:516.135000px;}
.y69{bottom:516.855000px;}
.yb1{bottom:524.955000px;}
.y9c{bottom:528.915000px;}
.y21{bottom:535.755000px;}
.y44{bottom:547.275000px;}
.y68{bottom:547.815000px;}
.yb0{bottom:556.095000px;}
.y9b{bottom:560.055000px;}
.y20{bottom:563.475000px;}
.y43{bottom:578.235000px;}
.y67{bottom:578.955000px;}
.yaf{bottom:587.055000px;}
.y9a{bottom:591.015000px;}
.y1f{bottom:591.195000px;}
.y42{bottom:609.405000px;}
.y66{bottom:609.945000px;}
.y1e{bottom:617.865000px;}
.yae{bottom:618.045000px;}
.y99{bottom:622.185000px;}
.y41{bottom:640.365000px;}
.y65{bottom:641.085000px;}
.y1d{bottom:641.805000px;}
.yad{bottom:649.185000px;}
.y98{bottom:653.145000px;}
.y1c{bottom:665.565000px;}
.y76{bottom:671.325000px;}
.y40{bottom:671.505000px;}
.y64{bottom:672.045000px;}
.yac{bottom:680.145000px;}
.y97{bottom:684.285000px;}
.y1b{bottom:689.325000px;}
.y75{bottom:702.285000px;}
.y3f{bottom:702.465000px;}
.y63{bottom:705.345000px;}
.yab{bottom:711.285000px;}
.y1a{bottom:713.085000px;}
.y96{bottom:715.245000px;}
.y62{bottom:725.685000px;}
.y74{bottom:733.425000px;}
.y3e{bottom:733.605000px;}
.y19{bottom:737.025000px;}
.yaa{bottom:742.245000px;}
.y95{bottom:746.385000px;}
.y5d{bottom:757.545000px;}
.y18{bottom:760.785000px;}
.y73{bottom:764.385000px;}
.y3d{bottom:764.565000px;}
.ya9{bottom:773.385000px;}
.y94{bottom:777.345000px;}
.y17{bottom:784.545000px;}
.y72{bottom:789.225000px;}
.y5f{bottom:789.405000px;}
.y3c{bottom:797.865000px;}
.ya8{bottom:804.345000px;}
.y16{bottom:808.305000px;}
.y93{bottom:808.485000px;}
.y71{bottom:817.125000px;}
.y3b{bottom:824.685000px;}
.y15{bottom:832.245000px;}
.y5c{bottom:835.485000px;}
.y92{bottom:839.445000px;}
.y3a{bottom:848.445000px;}
.y14{bottom:856.005000px;}
.y5b{bottom:866.445000px;}
.y91{bottom:870.630000px;}
.y39{bottom:872.250000px;}
.y13{bottom:879.810000px;}
.y90{bottom:888.090000px;}
.y38{bottom:896.010000px;}
.y5a{bottom:897.630000px;}
.ybe{bottom:898.710000px;}
.y12{bottom:903.570000px;}
.y8f{bottom:909.510000px;}
.y37{bottom:919.770000px;}
.y59{bottom:928.590000px;}
.y8e{bottom:930.930000px;}
.y11{bottom:934.710000px;}
.y36{bottom:943.710000px;}
.y8d{bottom:952.350000px;}
.y58{bottom:959.730000px;}
.y10{bottom:965.310000px;}
.y35{bottom:967.470000px;}
.y8c{bottom:973.770000px;}
.yf{bottom:982.230000px;}
.y57{bottom:990.690000px;}
.y34{bottom:991.230000px;}
.y89{bottom:995.370000px;}
.ye{bottom:1012.830000px;}
.y33{bottom:1014.990000px;}
.y56{bottom:1021.830000px;}
.y86{bottom:1025.610000px;}
.y32{bottom:1038.930000px;}
.yd{bottom:1040.370000px;}
.y55{bottom:1052.790000px;}
.y80{bottom:1054.230000px;}
.y31{bottom:1062.690000px;}
.yc{bottom:1068.630000px;}
.y82{bottom:1075.830000px;}
.y54{bottom:1083.930000px;}
.yb{bottom:1087.530000px;}
.y53{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y9{bottom:1143.180000px;}
.y52{bottom:1146.060000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h1a{height:20.700000px;}
.h17{height:20.880000px;}
.h5{height:27.000000px;}
.h18{height:27.900000px;}
.h19{height:29.520000px;}
.h11{height:30.960000px;}
.h12{height:31.140000px;}
.h7{height:39.147891px;}
.h9{height:40.066523px;}
.h8{height:41.715352px;}
.hc{height:52.628906px;}
.h2{height:53.460000px;}
.hb{height:58.429688px;}
.ha{height:59.800781px;}
.h14{height:61.575820px;}
.he{height:62.261719px;}
.h16{height:62.316000px;}
.h10{height:62.820000px;}
.h4{height:65.884219px;}
.hf{height:67.426523px;}
.hd{height:68.362734px;}
.h13{height:69.966914px;}
.h6{height:72.846211px;}
.h15{height:83.916000px;}
.h3{height:89.701172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:39.420000px;}
.w7{width:40.680000px;}
.wc{width:69.696000px;}
.wd{width:70.200000px;}
.we{width:70.236000px;}
.wa{width:70.740000px;}
.wb{width:74.520000px;}
.wf{width:91.260000px;}
.w15{width:94.860000px;}
.w11{width:102.600000px;}
.w5{width:106.416000px;}
.w17{width:111.420000px;}
.w14{width:116.316000px;}
.w13{width:121.536000px;}
.w16{width:126.756000px;}
.w8{width:135.576000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.w9{width:521.895000px;}
.w12{width:573.945000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:11.700000px;}
.x2b{left:15.840000px;}
.x2c{left:16.920000px;}
.x2d{left:19.080000px;}
.x38{left:21.060000px;}
.x26{left:22.860000px;}
.x20{left:25.380000px;}
.x34{left:27.714000px;}
.x24{left:28.800000px;}
.x22{left:32.220000px;}
.x3d{left:33.300000px;}
.x2a{left:36.000000px;}
.x1d{left:37.254000px;}
.x3e{left:39.960000px;}
.x3b{left:42.294000px;}
.x9{left:44.820000px;}
.x3c{left:49.140000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x33{left:98.496000px;}
.x5{left:106.415987px;}
.xc{left:113.255987px;}
.x14{left:134.315987px;}
.x1b{left:138.995987px;}
.x12{left:148.895987px;}
.x17{left:150.509987px;}
.x1f{left:151.560000px;}
.x11{left:156.809987px;}
.x19{left:159.509987px;}
.x32{left:165.809987px;}
.x2f{left:169.589987px;}
.x2{left:197.310000px;}
.x13{left:212.609987px;}
.x16{left:233.849987px;}
.xb{left:237.269987px;}
.x35{left:241.950000px;}
.x1{left:278.175000px;}
.x1e{left:285.015000px;}
.x7{left:297.795000px;}
.x15{left:300.494987px;}
.xd{left:306.794987px;}
.x40{left:312.914987px;}
.xf{left:321.914987px;}
.x18{left:347.294987px;}
.x21{left:356.475000px;}
.x36{left:364.215000px;}
.x8{left:390.855000px;}
.x2e{left:404.714987px;}
.x10{left:410.474987px;}
.x23{left:431.715000px;}
.xe{left:457.274987px;}
.x3f{left:478.544987px;}
.x37{left:481.245000px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x25{left:502.125000px;}
.x27{left:573.585000px;}
.x39{left:577.005000px;}
.x28{left:644.505000px;}
.x3a{left:704.490000px;}
.x29{left:715.650000px;}
.x1a{left:717.629987px;}
.x31{left:730.409987px;}
.x30{left:808.169987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls27{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.303467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.024960pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.033280pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.135680pt;}
.ls17{letter-spacing:0.170667pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls35{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.311680pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.336533pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls25{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.840000pt;}
.lsb{letter-spacing:4.480000pt;}
.ls34{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:7.680000pt;}
.ls26{letter-spacing:8.800000pt;}
.ls22{letter-spacing:8.960000pt;}
.ls33{letter-spacing:10.368000pt;}
.ls36{letter-spacing:14.720000pt;}
.ls2a{letter-spacing:16.640000pt;}
.ls39{letter-spacing:18.560000pt;}
.ls31{letter-spacing:19.200000pt;}
.ls7{letter-spacing:23.040000pt;}
.ls16{letter-spacing:24.320000pt;}
.lsc{letter-spacing:24.960000pt;}
.ls19{letter-spacing:28.160000pt;}
.ls14{letter-spacing:30.720000pt;}
.ls18{letter-spacing:31.360000pt;}
.ls8{letter-spacing:32.000000pt;}
.ls4{letter-spacing:33.920000pt;}
.ls32{letter-spacing:35.200000pt;}
.ls29{letter-spacing:36.586667pt;}
.ls20{letter-spacing:37.120000pt;}
.ls5{letter-spacing:38.400000pt;}
.ls24{letter-spacing:54.560000pt;}
.ls30{letter-spacing:80.000000pt;}
.ls3a{letter-spacing:91.008000pt;}
.ls38{letter-spacing:123.008000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws12{word-spacing:-18.753280pt;}
.ws3{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.695040pt;}
.ws2{word-spacing:-18.416533pt;}
.wsd{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.360000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws13{word-spacing:-10.720000pt;}
.wsb{word-spacing:0.000000pt;}
._2b{margin-left:-3.151573pt;}
._2a{margin-left:-2.155520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.024000pt;}
._d{width:2.602667pt;}
._e{width:3.818667pt;}
._f{width:4.981333pt;}
._7{width:5.888000pt;}
._1a{width:6.784000pt;}
._1b{width:8.512000pt;}
._6{width:9.440000pt;}
._5{width:10.346667pt;}
._16{width:11.413333pt;}
._15{width:12.330667pt;}
._19{width:13.824000pt;}
._18{width:14.944000pt;}
._1{width:16.576000pt;}
._17{width:17.578667pt;}
._14{width:18.688000pt;}
._13{width:19.658667pt;}
._12{width:20.586667pt;}
._b{width:23.274667pt;}
._11{width:24.629333pt;}
._10{width:25.546667pt;}
._1c{width:27.306667pt;}
._20{width:28.714667pt;}
._1d{width:30.432000pt;}
._c{width:31.722667pt;}
._4{width:33.013333pt;}
._3{width:34.474667pt;}
._2c{width:36.224000pt;}
._9{width:37.152000pt;}
._8{width:38.442667pt;}
._1f{width:40.320000pt;}
._1e{width:41.792000pt;}
._30{width:44.736000pt;}
._31{width:46.080000pt;}
._28{width:48.064000pt;}
._26{width:53.856000pt;}
._25{width:54.976000pt;}
._27{width:55.978667pt;}
._29{width:57.194667pt;}
._22{width:77.397333pt;}
._21{width:78.464000pt;}
._2d{width:79.968000pt;}
._a{width:83.594667pt;}
._23{width:91.072000pt;}
._24{width:92.042667pt;}
._2e{width:182.058667pt;}
._2f{width:182.954667pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.520000pt;}
.y85{bottom:3.680000pt;}
.y3{bottom:6.240000pt;}
.y88{bottom:6.720000pt;}
.y8b{bottom:7.360000pt;}
.y87{bottom:9.920000pt;}
.y7{bottom:10.080000pt;}
.y8a{bottom:11.360000pt;}
.y60{bottom:12.640000pt;}
.y61{bottom:12.800000pt;}
.y83{bottom:22.080000pt;}
.y2{bottom:25.120000pt;}
.y5e{bottom:26.880000pt;}
.y81{bottom:31.680000pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.y7f{bottom:121.952000pt;}
.y51{bottom:127.552000pt;}
.ybd{bottom:135.386667pt;}
.y7e{bottom:143.066667pt;}
.ya7{bottom:143.546667pt;}
.y50{bottom:155.226667pt;}
.y30{bottom:157.786667pt;}
.ybc{bottom:163.066667pt;}
.y7d{bottom:164.186667pt;}
.ya6{bottom:173.146667pt;}
.y2f{bottom:178.906667pt;}
.y4f{bottom:182.746667pt;}
.ybb{bottom:190.586667pt;}
.y7c{bottom:191.866667pt;}
.y2e{bottom:200.026667pt;}
.ya5{bottom:205.466667pt;}
.y4e{bottom:210.426667pt;}
.yba{bottom:218.266667pt;}
.y7b{bottom:219.386667pt;}
.y2d{bottom:221.306667pt;}
.ya4{bottom:237.626667pt;}
.y4d{bottom:237.946667pt;}
.y2c{bottom:242.426667pt;}
.yb9{bottom:245.786667pt;}
.y7a{bottom:247.066667pt;}
.y2b{bottom:263.546667pt;}
.y4c{bottom:265.626667pt;}
.y70{bottom:266.106667pt;}
.ya3{bottom:269.786667pt;}
.yb8{bottom:273.466667pt;}
.y79{bottom:274.586667pt;}
.y2a{bottom:284.666667pt;}
.y4b{bottom:293.146667pt;}
.y6f{bottom:293.786667pt;}
.yb7{bottom:301.026667pt;}
.ya2{bottom:301.986667pt;}
.y78{bottom:302.306667pt;}
.y29{bottom:305.986667pt;}
.y4a{bottom:320.866667pt;}
.y6e{bottom:321.346667pt;}
.y28{bottom:327.106667pt;}
.yb6{bottom:328.706667pt;}
.y77{bottom:329.826667pt;}
.ya1{bottom:332.226667pt;}
.y27{bottom:348.226667pt;}
.y49{bottom:348.386667pt;}
.y6d{bottom:349.026667pt;}
.yb5{bottom:356.226667pt;}
.ya0{bottom:359.746667pt;}
.y26{bottom:369.346667pt;}
.y48{bottom:376.066667pt;}
.y6c{bottom:376.546667pt;}
.yb4{bottom:383.906667pt;}
.y9f{bottom:387.426667pt;}
.y25{bottom:390.626667pt;}
.y47{bottom:403.586667pt;}
.y6b{bottom:404.226667pt;}
.yb3{bottom:411.426667pt;}
.y24{bottom:411.746667pt;}
.y9e{bottom:414.946667pt;}
.y46{bottom:431.266667pt;}
.y6a{bottom:431.746667pt;}
.y23{bottom:432.866667pt;}
.yb2{bottom:439.106667pt;}
.y9d{bottom:442.626667pt;}
.y22{bottom:453.986667pt;}
.y45{bottom:458.786667pt;}
.y69{bottom:459.426667pt;}
.yb1{bottom:466.626667pt;}
.y9c{bottom:470.146667pt;}
.y21{bottom:476.226667pt;}
.y44{bottom:486.466667pt;}
.y68{bottom:486.946667pt;}
.yb0{bottom:494.306667pt;}
.y9b{bottom:497.826667pt;}
.y20{bottom:500.866667pt;}
.y43{bottom:513.986667pt;}
.y67{bottom:514.626667pt;}
.yaf{bottom:521.826667pt;}
.y9a{bottom:525.346667pt;}
.y1f{bottom:525.506667pt;}
.y42{bottom:541.693333pt;}
.y66{bottom:542.173333pt;}
.y1e{bottom:549.213333pt;}
.yae{bottom:549.373333pt;}
.y99{bottom:553.053333pt;}
.y41{bottom:569.213333pt;}
.y65{bottom:569.853333pt;}
.y1d{bottom:570.493333pt;}
.yad{bottom:577.053333pt;}
.y98{bottom:580.573333pt;}
.y1c{bottom:591.613333pt;}
.y76{bottom:596.733333pt;}
.y40{bottom:596.893333pt;}
.y64{bottom:597.373333pt;}
.yac{bottom:604.573333pt;}
.y97{bottom:608.253333pt;}
.y1b{bottom:612.733333pt;}
.y75{bottom:624.253333pt;}
.y3f{bottom:624.413333pt;}
.y63{bottom:626.973333pt;}
.yab{bottom:632.253333pt;}
.y1a{bottom:633.853333pt;}
.y96{bottom:635.773333pt;}
.y62{bottom:645.053333pt;}
.y74{bottom:651.933333pt;}
.y3e{bottom:652.093333pt;}
.y19{bottom:655.133333pt;}
.yaa{bottom:659.773333pt;}
.y95{bottom:663.453333pt;}
.y5d{bottom:673.373333pt;}
.y18{bottom:676.253333pt;}
.y73{bottom:679.453333pt;}
.y3d{bottom:679.613333pt;}
.ya9{bottom:687.453333pt;}
.y94{bottom:690.973333pt;}
.y17{bottom:697.373333pt;}
.y72{bottom:701.533333pt;}
.y5f{bottom:701.693333pt;}
.y3c{bottom:709.213333pt;}
.ya8{bottom:714.973333pt;}
.y16{bottom:718.493333pt;}
.y93{bottom:718.653333pt;}
.y71{bottom:726.333333pt;}
.y3b{bottom:733.053333pt;}
.y15{bottom:739.773333pt;}
.y5c{bottom:742.653333pt;}
.y92{bottom:746.173333pt;}
.y3a{bottom:754.173333pt;}
.y14{bottom:760.893333pt;}
.y5b{bottom:770.173333pt;}
.y91{bottom:773.893333pt;}
.y39{bottom:775.333333pt;}
.y13{bottom:782.053333pt;}
.y90{bottom:789.413333pt;}
.y38{bottom:796.453333pt;}
.y5a{bottom:797.893333pt;}
.ybe{bottom:798.853333pt;}
.y12{bottom:803.173333pt;}
.y8f{bottom:808.453333pt;}
.y37{bottom:817.573333pt;}
.y59{bottom:825.413333pt;}
.y8e{bottom:827.493333pt;}
.y11{bottom:830.853333pt;}
.y36{bottom:838.853333pt;}
.y8d{bottom:846.533333pt;}
.y58{bottom:853.093333pt;}
.y10{bottom:858.053333pt;}
.y35{bottom:859.973333pt;}
.y8c{bottom:865.573333pt;}
.yf{bottom:873.093333pt;}
.y57{bottom:880.613333pt;}
.y34{bottom:881.093333pt;}
.y89{bottom:884.773333pt;}
.ye{bottom:900.293333pt;}
.y33{bottom:902.213333pt;}
.y56{bottom:908.293333pt;}
.y86{bottom:911.653333pt;}
.y32{bottom:923.493333pt;}
.yd{bottom:924.773333pt;}
.y55{bottom:935.813333pt;}
.y80{bottom:937.093333pt;}
.y31{bottom:944.613333pt;}
.yc{bottom:949.893333pt;}
.y82{bottom:956.293333pt;}
.y54{bottom:963.493333pt;}
.yb{bottom:966.693333pt;}
.y53{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y9{bottom:1016.160000pt;}
.y52{bottom:1018.720000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h1a{height:18.400000pt;}
.h17{height:18.560000pt;}
.h5{height:24.000000pt;}
.h18{height:24.800000pt;}
.h19{height:26.240000pt;}
.h11{height:27.520000pt;}
.h12{height:27.680000pt;}
.h7{height:34.798125pt;}
.h9{height:35.614687pt;}
.h8{height:37.080312pt;}
.hc{height:46.781250pt;}
.h2{height:47.520000pt;}
.hb{height:51.937500pt;}
.ha{height:53.156250pt;}
.h14{height:54.734062pt;}
.he{height:55.343750pt;}
.h16{height:55.392000pt;}
.h10{height:55.840000pt;}
.h4{height:58.563750pt;}
.hf{height:59.934687pt;}
.hd{height:60.766875pt;}
.h13{height:62.192812pt;}
.h6{height:64.752187pt;}
.h15{height:74.592000pt;}
.h3{height:79.734375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:35.040000pt;}
.w7{width:36.160000pt;}
.wc{width:61.952000pt;}
.wd{width:62.400000pt;}
.we{width:62.432000pt;}
.wa{width:62.880000pt;}
.wb{width:66.240000pt;}
.wf{width:81.120000pt;}
.w15{width:84.320000pt;}
.w11{width:91.200000pt;}
.w5{width:94.592000pt;}
.w17{width:99.040000pt;}
.w14{width:103.392000pt;}
.w13{width:108.032000pt;}
.w16{width:112.672000pt;}
.w8{width:120.512000pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.w9{width:463.906667pt;}
.w12{width:510.173333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:10.400000pt;}
.x2b{left:14.080000pt;}
.x2c{left:15.040000pt;}
.x2d{left:16.960000pt;}
.x38{left:18.720000pt;}
.x26{left:20.320000pt;}
.x20{left:22.560000pt;}
.x34{left:24.634667pt;}
.x24{left:25.600000pt;}
.x22{left:28.640000pt;}
.x3d{left:29.600000pt;}
.x2a{left:32.000000pt;}
.x1d{left:33.114667pt;}
.x3e{left:35.520000pt;}
.x3b{left:37.594667pt;}
.x9{left:39.840000pt;}
.x3c{left:43.680000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x33{left:87.552000pt;}
.x5{left:94.591988pt;}
.xc{left:100.671988pt;}
.x14{left:119.391988pt;}
.x1b{left:123.551988pt;}
.x12{left:132.351988pt;}
.x17{left:133.786655pt;}
.x1f{left:134.720000pt;}
.x11{left:139.386655pt;}
.x19{left:141.786655pt;}
.x32{left:147.386655pt;}
.x2f{left:150.746655pt;}
.x2{left:175.386667pt;}
.x13{left:188.986655pt;}
.x16{left:207.866655pt;}
.xb{left:210.906655pt;}
.x35{left:215.066667pt;}
.x1{left:247.266667pt;}
.x1e{left:253.346667pt;}
.x7{left:264.706667pt;}
.x15{left:267.106655pt;}
.xd{left:272.706655pt;}
.x40{left:278.146655pt;}
.xf{left:286.146655pt;}
.x18{left:308.706655pt;}
.x21{left:316.866667pt;}
.x36{left:323.746667pt;}
.x8{left:347.426667pt;}
.x2e{left:359.746655pt;}
.x10{left:364.866655pt;}
.x23{left:383.746667pt;}
.xe{left:406.466655pt;}
.x3f{left:425.373322pt;}
.x37{left:427.773333pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x25{left:446.333333pt;}
.x27{left:509.853333pt;}
.x39{left:512.893333pt;}
.x28{left:572.893333pt;}
.x3a{left:626.213333pt;}
.x29{left:636.133333pt;}
.x1a{left:637.893322pt;}
.x31{left:649.253322pt;}
.x30{left:718.373322pt;}
}




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