
    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_6b7131f6bda9c2a391d76c0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_aa45dcbd4821dfc0912dd552.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_f09f3fff2dac6585141b6a80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_58499c6fcacd3cd7142f3b30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_90435fcdfcb56e4cac1131d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_e2411d48a6bb24b2891e1be1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7cbab38d5ff879857920f7c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.152000px;}
.ls12{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls10{letter-spacing:31.836000px;}
.lsf{letter-spacing:41.904000px;}
.lsb{letter-spacing:54.876000px;}
.lse{letter-spacing:69.264000px;}
.ls11{letter-spacing:79.021440px;}
.ls6{letter-spacing:93.744000px;}
.ls7{letter-spacing:98.064000px;}
.ls5{letter-spacing:122.544000px;}
.ls8{letter-spacing:125.424000px;}
.ls2{letter-spacing:149.916000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws7{word-spacing:-20.880000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.352000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-5.547840px;}
._4{margin-left:-4.446720px;}
._5{margin-left:-3.150720px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:3.145920px;}
._c{width:4.504320px;}
._a{width:5.544000px;}
._6{width:7.200000px;}
._7{width:8.714880px;}
._b{width:10.048320px;}
._16{width:11.511360px;}
._d{width:12.672000px;}
._e{width:13.680000px;}
._8{width:14.760000px;}
._9{width:15.929280px;}
._19{width:16.992000px;}
._15{width:19.168800px;}
._17{width:20.339520px;}
._11{width:21.496320px;}
._1a{width:22.919040px;}
._10{width:24.120000px;}
._12{width:25.398720px;}
._20{width:27.288000px;}
._13{width:28.512000px;}
._14{width:30.096000px;}
._18{width:31.144320px;}
._1b{width:32.904000px;}
._1c{width:38.013120px;}
._1d{width:39.609120px;}
._1f{width:41.296320px;}
._f{width:42.696000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs3{font-size:108.000000px;}
.yf1{bottom:-61.920000px;}
.yf0{bottom:-28.080000px;}
.yf8{bottom:-18.360000px;}
.yf3{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.yec{bottom:0.360000px;}
.ye9{bottom:1.080000px;}
.yfb{bottom:1.440000px;}
.yef{bottom:5.040000px;}
.y100{bottom:10.080000px;}
.yfd{bottom:13.725000px;}
.yf7{bottom:14.760000px;}
.y103{bottom:15.840000px;}
.yf5{bottom:16.920000px;}
.yf2{bottom:20.520000px;}
.yfa{bottom:23.760000px;}
.yff{bottom:32.400000px;}
.yeb{bottom:33.480000px;}
.y102{bottom:38.160000px;}
.yee{bottom:39.600000px;}
.y5{bottom:57.240000px;}
.y121{bottom:110.196000px;}
.yb2{bottom:116.676000px;}
.y60{bottom:117.036000px;}
.y8b{bottom:117.396000px;}
.ycb{bottom:123.156000px;}
.y41{bottom:123.876000px;}
.y22{bottom:127.476000px;}
.y135{bottom:130.716000px;}
.y75{bottom:131.076000px;}
.yb1{bottom:139.356000px;}
.ye7{bottom:143.676000px;}
.y5f{bottom:147.996000px;}
.y84{bottom:150.150000px;}
.y8a{bottom:151.590000px;}
.y120{bottom:153.390000px;}
.yca{bottom:154.110000px;}
.y40{bottom:154.830000px;}
.yb0{bottom:161.670000px;}
.y74{bottom:162.030000px;}
.y104{bottom:164.190000px;}
.y21{bottom:170.670000px;}
.ye6{bottom:177.870000px;}
.y5e{bottom:178.950000px;}
.y83{bottom:181.110000px;}
.yaf{bottom:183.990000px;}
.y11f{bottom:184.350000px;}
.yc9{bottom:185.430000px;}
.y3f{bottom:186.150000px;}
.y134{bottom:192.630000px;}
.y20{bottom:201.675000px;}
.y73{bottom:205.275000px;}
.yae{bottom:206.355000px;}
.y5d{bottom:209.955000px;}
.y82{bottom:212.115000px;}
.ye5{bottom:212.475000px;}
.y11e{bottom:215.355000px;}
.yc8{bottom:216.435000px;}
.y3e{bottom:217.155000px;}
.y133{bottom:223.635000px;}
.yad{bottom:228.675000px;}
.y1f{bottom:232.635000px;}
.y72{bottom:236.235000px;}
.y5c{bottom:241.275000px;}
.ye4{bottom:246.675000px;}
.yc7{bottom:247.395000px;}
.y3d{bottom:248.115000px;}
.yac{bottom:250.995000px;}
.y132{bottom:254.955000px;}
.y81{bottom:255.315000px;}
.y101{bottom:257.115000px;}
.y71{bottom:267.195000px;}
.yab{bottom:273.315000px;}
.y1e{bottom:275.835000px;}
.y11d{bottom:277.635000px;}
.yc6{bottom:278.355000px;}
.y3c{bottom:279.075000px;}
.ye3{bottom:280.875000px;}
.y5b{bottom:284.115000px;}
.y131{bottom:285.915000px;}
.yaa{bottom:295.635000px;}
.y70{bottom:298.155000px;}
.y1d{bottom:306.795000px;}
.y11c{bottom:308.595000px;}
.yc5{bottom:309.675000px;}
.y3b{bottom:310.395000px;}
.y5a{bottom:315.075000px;}
.ye2{bottom:315.435000px;}
.y130{bottom:316.875000px;}
.ya9{bottom:317.955000px;}
.y80{bottom:329.505000px;}
.y1c{bottom:337.785000px;}
.ya8{bottom:340.305000px;}
.yc4{bottom:340.665000px;}
.y6f{bottom:341.385000px;}
.y59{bottom:346.425000px;}
.y12f{bottom:347.865000px;}
.ye1{bottom:349.665000px;}
.y11b{bottom:351.825000px;}
.y3a{bottom:353.265000px;}
.y7f{bottom:360.465000px;}
.yfe{bottom:360.825000px;}
.y1b{bottom:369.105000px;}
.ya7{bottom:371.265000px;}
.yc3{bottom:371.625000px;}
.y6e{bottom:372.345000px;}
.y58{bottom:377.385000px;}
.y12e{bottom:379.185000px;}
.y11a{bottom:382.785000px;}
.ye0{bottom:383.865000px;}
.y39{bottom:384.225000px;}
.y7e{bottom:391.425000px;}
.y1a{bottom:400.065000px;}
.ya6{bottom:402.225000px;}
.yc2{bottom:402.585000px;}
.y6d{bottom:403.305000px;}
.y57{bottom:408.345000px;}
.y12d{bottom:410.145000px;}
.y119{bottom:413.745000px;}
.y38{bottom:415.545000px;}
.ydf{bottom:418.425000px;}
.y7d{bottom:422.385000px;}
.y19{bottom:431.025000px;}
.ya5{bottom:433.545000px;}
.y6c{bottom:434.625000px;}
.y56{bottom:439.305000px;}
.y12c{bottom:441.105000px;}
.y118{bottom:444.705000px;}
.y37{bottom:446.505000px;}
.yfc{bottom:447.585000px;}
.yde{bottom:452.670000px;}
.y18{bottom:462.030000px;}
.ya4{bottom:464.550000px;}
.yc1{bottom:464.910000px;}
.y6b{bottom:465.630000px;}
.y55{bottom:470.670000px;}
.y12b{bottom:472.110000px;}
.y117{bottom:476.070000px;}
.y36{bottom:477.510000px;}
.ydd{bottom:487.230000px;}
.ya3{bottom:495.510000px;}
.yc0{bottom:495.870000px;}
.y6a{bottom:496.590000px;}
.y17{bottom:505.230000px;}
.y116{bottom:507.030000px;}
.y12a{bottom:507.750000px;}
.y35{bottom:508.470000px;}
.y54{bottom:513.510000px;}
.ydc{bottom:521.430000px;}
.ya2{bottom:526.470000px;}
.ybf{bottom:526.830000px;}
.y16{bottom:536.190000px;}
.y34{bottom:539.790000px;}
.y115{bottom:541.230000px;}
.y53{bottom:544.470000px;}
.y89{bottom:551.670000px;}
.y129{bottom:553.470000px;}
.ydb{bottom:555.630000px;}
.ya1{bottom:557.790000px;}
.y15{bottom:567.150000px;}
.y69{bottom:570.750000px;}
.y52{bottom:575.820000px;}
.yf9{bottom:580.500000px;}
.y33{bottom:582.660000px;}
.y114{bottom:584.460000px;}
.ya0{bottom:588.780000px;}
.ybe{bottom:589.140000px;}
.yda{bottom:590.220000px;}
.y14{bottom:598.500000px;}
.y68{bottom:601.740000px;}
.y51{bottom:606.780000px;}
.y9f{bottom:611.100000px;}
.y88{bottom:613.620000px;}
.y113{bottom:615.420000px;}
.ybd{bottom:620.100000px;}
.yd9{bottom:624.420000px;}
.y32{bottom:625.860000px;}
.y128{bottom:627.300000px;}
.y13{bottom:629.460000px;}
.y67{bottom:632.700000px;}
.y9e{bottom:642.060000px;}
.ybc{bottom:642.420000px;}
.y87{bottom:644.940000px;}
.y112{bottom:646.380000px;}
.y50{bottom:649.620000px;}
.yf6{bottom:654.660000px;}
.yd8{bottom:658.620000px;}
.y12{bottom:660.420000px;}
.y66{bottom:664.020000px;}
.y31{bottom:668.700000px;}
.y9d{bottom:673.020000px;}
.ybb{bottom:673.740000px;}
.y7c{bottom:675.900000px;}
.y111{bottom:677.700000px;}
.y4f{bottom:680.940000px;}
.y127{bottom:689.580000px;}
.yd7{bottom:693.180000px;}
.y11{bottom:694.620000px;}
.y30{bottom:700.020000px;}
.y9c{bottom:704.370000px;}
.yba{bottom:706.170000px;}
.y65{bottom:706.890000px;}
.y110{bottom:708.690000px;}
.y4e{bottom:711.930000px;}
.y7b{bottom:719.130000px;}
.y126{bottom:720.570000px;}
.yd6{bottom:727.410000px;}
.y10{bottom:729.210000px;}
.y2f{bottom:731.010000px;}
.y9b{bottom:735.330000px;}
.yf4{bottom:736.050000px;}
.yb9{bottom:738.210000px;}
.y4d{bottom:742.890000px;}
.y64{bottom:750.090000px;}
.y10f{bottom:751.530000px;}
.yd5{bottom:761.970000px;}
.yf{bottom:763.410000px;}
.y9a{bottom:766.290000px;}
.yb8{bottom:769.530000px;}
.y2e{bottom:773.850000px;}
.y63{bottom:781.050000px;}
.y10e{bottom:782.850000px;}
.y4c{bottom:786.090000px;}
.y86{bottom:792.930000px;}
.yd4{bottom:796.170000px;}
.y99{bottom:797.250000px;}
.ye{bottom:797.970000px;}
.yb7{bottom:801.930000px;}
.y2d{bottom:805.170000px;}
.y7a{bottom:812.010000px;}
.y10d{bottom:813.810000px;}
.y4b{bottom:817.050000px;}
.y62{bottom:824.250000px;}
.y98{bottom:828.615000px;}
.yd3{bottom:830.415000px;}
.yd{bottom:832.215000px;}
.yb6{bottom:834.015000px;}
.y2c{bottom:836.175000px;}
.y79{bottom:843.375000px;}
.y10c{bottom:844.815000px;}
.y4a{bottom:848.055000px;}
.y61{bottom:855.255000px;}
.y97{bottom:859.575000px;}
.yd2{bottom:864.975000px;}
.yc{bottom:866.415000px;}
.y2b{bottom:867.135000px;}
.y10b{bottom:875.775000px;}
.y49{bottom:879.375000px;}
.y96{bottom:881.895000px;}
.y78{bottom:886.215000px;}
.yed{bottom:891.255000px;}
.y2a{bottom:898.095000px;}
.yb5{bottom:898.815000px;}
.yd1{bottom:899.175000px;}
.y95{bottom:904.215000px;}
.y10a{bottom:907.095000px;}
.y48{bottom:910.335000px;}
.yb{bottom:912.135000px;}
.yb4{bottom:922.215000px;}
.y94{bottom:926.535000px;}
.y29{bottom:929.415000px;}
.yd0{bottom:933.735000px;}
.y125{bottom:938.055000px;}
.y47{bottom:941.295000px;}
.ya{bottom:948.495000px;}
.y93{bottom:948.855000px;}
.y109{bottom:949.935000px;}
.yb3{bottom:953.205000px;}
.y77{bottom:960.405000px;}
.ycf{bottom:967.965000px;}
.y124{bottom:969.045000px;}
.y92{bottom:971.205000px;}
.y28{bottom:972.285000px;}
.y108{bottom:980.925000px;}
.y46{bottom:984.525000px;}
.y76{bottom:991.365000px;}
.y91{bottom:993.525000px;}
.y9{bottom:996.765000px;}
.yea{bottom:997.845000px;}
.y123{bottom:1000.005000px;}
.yce{bottom:1002.165000px;}
.y27{bottom:1003.245000px;}
.y107{bottom:1012.245000px;}
.y45{bottom:1015.485000px;}
.y90{bottom:1015.845000px;}
.y85{bottom:1022.325000px;}
.y122{bottom:1031.325000px;}
.y8{bottom:1032.765000px;}
.y26{bottom:1034.565000px;}
.ycd{bottom:1036.725000px;}
.y8f{bottom:1038.165000px;}
.y106{bottom:1043.205000px;}
.y44{bottom:1046.445000px;}
.y8e{bottom:1060.485000px;}
.y25{bottom:1065.525000px;}
.ycc{bottom:1070.925000px;}
.y105{bottom:1074.165000px;}
.y43{bottom:1077.405000px;}
.y7{bottom:1081.050000px;}
.y8d{bottom:1082.850000px;}
.ye8{bottom:1091.130000px;}
.y24{bottom:1096.530000px;}
.y8c{bottom:1105.170000px;}
.y42{bottom:1108.770000px;}
.y6{bottom:1115.970000px;}
.y4{bottom:1137.210000px;}
.y23{bottom:1139.730000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.370000px;}
.ha{height:18.000000px;}
.h11{height:30.636000px;}
.hf{height:31.680000px;}
.he{height:33.840000px;}
.hd{height:36.036000px;}
.h10{height:40.680000px;}
.h3{height:47.965781px;}
.hb{height:49.320000px;}
.h13{height:49.356000px;}
.h2{height:52.136719px;}
.h9{height:52.417969px;}
.h12{height:55.080000px;}
.hc{height:56.520000px;}
.h4{height:58.121719px;}
.h7{height:60.478594px;}
.h14{height:60.804844px;}
.h8{height:63.175781px;}
.h15{height:63.351562px;}
.h5{height:65.884219px;}
.h6{height:78.205078px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:230.115000px;}
.w7{width:378.870000px;}
.w4{width:790.890000px;}
.w6{width:794.130000px;}
.w5{width:799.890000px;}
.w8{width:812.520000px;}
.w9{width:841.320000px;}
.wb{width:851.400000px;}
.wd{width:862.920000px;}
.wc{width:865.080000px;}
.wa{width:869.760000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:10.836000px;}
.x1f{left:11.880000px;}
.x21{left:14.400000px;}
.x22{left:17.640000px;}
.x20{left:22.320000px;}
.x1d{left:24.480000px;}
.x16{left:30.960000px;}
.x13{left:33.480000px;}
.x14{left:37.800000px;}
.x1b{left:39.960000px;}
.x1{left:106.235987px;}
.x18{left:109.872000px;}
.x8{left:114.155987px;}
.xf{left:133.271987px;}
.x10{left:160.274987px;}
.x1a{left:190.875000px;}
.x11{left:203.474987px;}
.x2{left:241.664987px;}
.x9{left:253.544987px;}
.xd{left:275.504987px;}
.xc{left:278.384987px;}
.xe{left:302.144987px;}
.xb{left:304.664987px;}
.x17{left:349.350000px;}
.xa{left:366.629987px;}
.x12{left:381.029987px;}
.x1e{left:392.940000px;}
.x19{left:399.780000px;}
.x1c{left:405.900000px;}
.x4{left:431.099987px;}
.x5{left:433.979987px;}
.x7{left:446.579987px;}
.x6{left:545.249987px;}
.x3{left:696.524987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.024000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls10{letter-spacing:28.298667pt;}
.lsf{letter-spacing:37.248000pt;}
.lsb{letter-spacing:48.778667pt;}
.lse{letter-spacing:61.568000pt;}
.ls11{letter-spacing:70.241280pt;}
.ls6{letter-spacing:83.328000pt;}
.ls7{letter-spacing:87.168000pt;}
.ls5{letter-spacing:108.928000pt;}
.ls8{letter-spacing:111.488000pt;}
.ls2{letter-spacing:133.258667pt;}
.ws6{word-spacing:-64.000000pt;}
.ws7{word-spacing:-18.560000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-4.931413pt;}
._4{margin-left:-3.952640pt;}
._5{margin-left:-2.800640pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:2.796373pt;}
._c{width:4.003840pt;}
._a{width:4.928000pt;}
._6{width:6.400000pt;}
._7{width:7.746560pt;}
._b{width:8.931840pt;}
._16{width:10.232320pt;}
._d{width:11.264000pt;}
._e{width:12.160000pt;}
._8{width:13.120000pt;}
._9{width:14.159360pt;}
._19{width:15.104000pt;}
._15{width:17.038933pt;}
._17{width:18.079573pt;}
._11{width:19.107840pt;}
._1a{width:20.372480pt;}
._10{width:21.440000pt;}
._12{width:22.576640pt;}
._20{width:24.256000pt;}
._13{width:25.344000pt;}
._14{width:26.752000pt;}
._18{width:27.683840pt;}
._1b{width:29.248000pt;}
._1c{width:33.789440pt;}
._1d{width:35.208107pt;}
._1f{width:36.707840pt;}
._f{width:37.952000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs3{font-size:96.000000pt;}
.yf1{bottom:-55.040000pt;}
.yf0{bottom:-24.960000pt;}
.yf8{bottom:-16.320000pt;}
.yf3{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:0.320000pt;}
.ye9{bottom:0.960000pt;}
.yfb{bottom:1.280000pt;}
.yef{bottom:4.480000pt;}
.y100{bottom:8.960000pt;}
.yfd{bottom:12.200000pt;}
.yf7{bottom:13.120000pt;}
.y103{bottom:14.080000pt;}
.yf5{bottom:15.040000pt;}
.yf2{bottom:18.240000pt;}
.yfa{bottom:21.120000pt;}
.yff{bottom:28.800000pt;}
.yeb{bottom:29.760000pt;}
.y102{bottom:33.920000pt;}
.yee{bottom:35.200000pt;}
.y5{bottom:50.880000pt;}
.y121{bottom:97.952000pt;}
.yb2{bottom:103.712000pt;}
.y60{bottom:104.032000pt;}
.y8b{bottom:104.352000pt;}
.ycb{bottom:109.472000pt;}
.y41{bottom:110.112000pt;}
.y22{bottom:113.312000pt;}
.y135{bottom:116.192000pt;}
.y75{bottom:116.512000pt;}
.yb1{bottom:123.872000pt;}
.ye7{bottom:127.712000pt;}
.y5f{bottom:131.552000pt;}
.y84{bottom:133.466667pt;}
.y8a{bottom:134.746667pt;}
.y120{bottom:136.346667pt;}
.yca{bottom:136.986667pt;}
.y40{bottom:137.626667pt;}
.yb0{bottom:143.706667pt;}
.y74{bottom:144.026667pt;}
.y104{bottom:145.946667pt;}
.y21{bottom:151.706667pt;}
.ye6{bottom:158.106667pt;}
.y5e{bottom:159.066667pt;}
.y83{bottom:160.986667pt;}
.yaf{bottom:163.546667pt;}
.y11f{bottom:163.866667pt;}
.yc9{bottom:164.826667pt;}
.y3f{bottom:165.466667pt;}
.y134{bottom:171.226667pt;}
.y20{bottom:179.266667pt;}
.y73{bottom:182.466667pt;}
.yae{bottom:183.426667pt;}
.y5d{bottom:186.626667pt;}
.y82{bottom:188.546667pt;}
.ye5{bottom:188.866667pt;}
.y11e{bottom:191.426667pt;}
.yc8{bottom:192.386667pt;}
.y3e{bottom:193.026667pt;}
.y133{bottom:198.786667pt;}
.yad{bottom:203.266667pt;}
.y1f{bottom:206.786667pt;}
.y72{bottom:209.986667pt;}
.y5c{bottom:214.466667pt;}
.ye4{bottom:219.266667pt;}
.yc7{bottom:219.906667pt;}
.y3d{bottom:220.546667pt;}
.yac{bottom:223.106667pt;}
.y132{bottom:226.626667pt;}
.y81{bottom:226.946667pt;}
.y101{bottom:228.546667pt;}
.y71{bottom:237.506667pt;}
.yab{bottom:242.946667pt;}
.y1e{bottom:245.186667pt;}
.y11d{bottom:246.786667pt;}
.yc6{bottom:247.426667pt;}
.y3c{bottom:248.066667pt;}
.ye3{bottom:249.666667pt;}
.y5b{bottom:252.546667pt;}
.y131{bottom:254.146667pt;}
.yaa{bottom:262.786667pt;}
.y70{bottom:265.026667pt;}
.y1d{bottom:272.706667pt;}
.y11c{bottom:274.306667pt;}
.yc5{bottom:275.266667pt;}
.y3b{bottom:275.906667pt;}
.y5a{bottom:280.066667pt;}
.ye2{bottom:280.386667pt;}
.y130{bottom:281.666667pt;}
.ya9{bottom:282.626667pt;}
.y80{bottom:292.893333pt;}
.y1c{bottom:300.253333pt;}
.ya8{bottom:302.493333pt;}
.yc4{bottom:302.813333pt;}
.y6f{bottom:303.453333pt;}
.y59{bottom:307.933333pt;}
.y12f{bottom:309.213333pt;}
.ye1{bottom:310.813333pt;}
.y11b{bottom:312.733333pt;}
.y3a{bottom:314.013333pt;}
.y7f{bottom:320.413333pt;}
.yfe{bottom:320.733333pt;}
.y1b{bottom:328.093333pt;}
.ya7{bottom:330.013333pt;}
.yc3{bottom:330.333333pt;}
.y6e{bottom:330.973333pt;}
.y58{bottom:335.453333pt;}
.y12e{bottom:337.053333pt;}
.y11a{bottom:340.253333pt;}
.ye0{bottom:341.213333pt;}
.y39{bottom:341.533333pt;}
.y7e{bottom:347.933333pt;}
.y1a{bottom:355.613333pt;}
.ya6{bottom:357.533333pt;}
.yc2{bottom:357.853333pt;}
.y6d{bottom:358.493333pt;}
.y57{bottom:362.973333pt;}
.y12d{bottom:364.573333pt;}
.y119{bottom:367.773333pt;}
.y38{bottom:369.373333pt;}
.ydf{bottom:371.933333pt;}
.y7d{bottom:375.453333pt;}
.y19{bottom:383.133333pt;}
.ya5{bottom:385.373333pt;}
.y6c{bottom:386.333333pt;}
.y56{bottom:390.493333pt;}
.y12c{bottom:392.093333pt;}
.y118{bottom:395.293333pt;}
.y37{bottom:396.893333pt;}
.yfc{bottom:397.853333pt;}
.yde{bottom:402.373333pt;}
.y18{bottom:410.693333pt;}
.ya4{bottom:412.933333pt;}
.yc1{bottom:413.253333pt;}
.y6b{bottom:413.893333pt;}
.y55{bottom:418.373333pt;}
.y12b{bottom:419.653333pt;}
.y117{bottom:423.173333pt;}
.y36{bottom:424.453333pt;}
.ydd{bottom:433.093333pt;}
.ya3{bottom:440.453333pt;}
.yc0{bottom:440.773333pt;}
.y6a{bottom:441.413333pt;}
.y17{bottom:449.093333pt;}
.y116{bottom:450.693333pt;}
.y12a{bottom:451.333333pt;}
.y35{bottom:451.973333pt;}
.y54{bottom:456.453333pt;}
.ydc{bottom:463.493333pt;}
.ya2{bottom:467.973333pt;}
.ybf{bottom:468.293333pt;}
.y16{bottom:476.613333pt;}
.y34{bottom:479.813333pt;}
.y115{bottom:481.093333pt;}
.y53{bottom:483.973333pt;}
.y89{bottom:490.373333pt;}
.y129{bottom:491.973333pt;}
.ydb{bottom:493.893333pt;}
.ya1{bottom:495.813333pt;}
.y15{bottom:504.133333pt;}
.y69{bottom:507.333333pt;}
.y52{bottom:511.840000pt;}
.yf9{bottom:516.000000pt;}
.y33{bottom:517.920000pt;}
.y114{bottom:519.520000pt;}
.ya0{bottom:523.360000pt;}
.ybe{bottom:523.680000pt;}
.yda{bottom:524.640000pt;}
.y14{bottom:532.000000pt;}
.y68{bottom:534.880000pt;}
.y51{bottom:539.360000pt;}
.y9f{bottom:543.200000pt;}
.y88{bottom:545.440000pt;}
.y113{bottom:547.040000pt;}
.ybd{bottom:551.200000pt;}
.yd9{bottom:555.040000pt;}
.y32{bottom:556.320000pt;}
.y128{bottom:557.600000pt;}
.y13{bottom:559.520000pt;}
.y67{bottom:562.400000pt;}
.y9e{bottom:570.720000pt;}
.ybc{bottom:571.040000pt;}
.y87{bottom:573.280000pt;}
.y112{bottom:574.560000pt;}
.y50{bottom:577.440000pt;}
.yf6{bottom:581.920000pt;}
.yd8{bottom:585.440000pt;}
.y12{bottom:587.040000pt;}
.y66{bottom:590.240000pt;}
.y31{bottom:594.400000pt;}
.y9d{bottom:598.240000pt;}
.ybb{bottom:598.880000pt;}
.y7c{bottom:600.800000pt;}
.y111{bottom:602.400000pt;}
.y4f{bottom:605.280000pt;}
.y127{bottom:612.960000pt;}
.yd7{bottom:616.160000pt;}
.y11{bottom:617.440000pt;}
.y30{bottom:622.240000pt;}
.y9c{bottom:626.106667pt;}
.yba{bottom:627.706667pt;}
.y65{bottom:628.346667pt;}
.y110{bottom:629.946667pt;}
.y4e{bottom:632.826667pt;}
.y7b{bottom:639.226667pt;}
.y126{bottom:640.506667pt;}
.yd6{bottom:646.586667pt;}
.y10{bottom:648.186667pt;}
.y2f{bottom:649.786667pt;}
.y9b{bottom:653.626667pt;}
.yf4{bottom:654.266667pt;}
.yb9{bottom:656.186667pt;}
.y4d{bottom:660.346667pt;}
.y64{bottom:666.746667pt;}
.y10f{bottom:668.026667pt;}
.yd5{bottom:677.306667pt;}
.yf{bottom:678.586667pt;}
.y9a{bottom:681.146667pt;}
.yb8{bottom:684.026667pt;}
.y2e{bottom:687.866667pt;}
.y63{bottom:694.266667pt;}
.y10e{bottom:695.866667pt;}
.y4c{bottom:698.746667pt;}
.y86{bottom:704.826667pt;}
.yd4{bottom:707.706667pt;}
.y99{bottom:708.666667pt;}
.ye{bottom:709.306667pt;}
.yb7{bottom:712.826667pt;}
.y2d{bottom:715.706667pt;}
.y7a{bottom:721.786667pt;}
.y10d{bottom:723.386667pt;}
.y4b{bottom:726.266667pt;}
.y62{bottom:732.666667pt;}
.y98{bottom:736.546667pt;}
.yd3{bottom:738.146667pt;}
.yd{bottom:739.746667pt;}
.yb6{bottom:741.346667pt;}
.y2c{bottom:743.266667pt;}
.y79{bottom:749.666667pt;}
.y10c{bottom:750.946667pt;}
.y4a{bottom:753.826667pt;}
.y61{bottom:760.226667pt;}
.y97{bottom:764.066667pt;}
.yd2{bottom:768.866667pt;}
.yc{bottom:770.146667pt;}
.y2b{bottom:770.786667pt;}
.y10b{bottom:778.466667pt;}
.y49{bottom:781.666667pt;}
.y96{bottom:783.906667pt;}
.y78{bottom:787.746667pt;}
.yed{bottom:792.226667pt;}
.y2a{bottom:798.306667pt;}
.yb5{bottom:798.946667pt;}
.yd1{bottom:799.266667pt;}
.y95{bottom:803.746667pt;}
.y10a{bottom:806.306667pt;}
.y48{bottom:809.186667pt;}
.yb{bottom:810.786667pt;}
.yb4{bottom:819.746667pt;}
.y94{bottom:823.586667pt;}
.y29{bottom:826.146667pt;}
.yd0{bottom:829.986667pt;}
.y125{bottom:833.826667pt;}
.y47{bottom:836.706667pt;}
.ya{bottom:843.106667pt;}
.y93{bottom:843.426667pt;}
.y109{bottom:844.386667pt;}
.yb3{bottom:847.293333pt;}
.y77{bottom:853.693333pt;}
.ycf{bottom:860.413333pt;}
.y124{bottom:861.373333pt;}
.y92{bottom:863.293333pt;}
.y28{bottom:864.253333pt;}
.y108{bottom:871.933333pt;}
.y46{bottom:875.133333pt;}
.y76{bottom:881.213333pt;}
.y91{bottom:883.133333pt;}
.y9{bottom:886.013333pt;}
.yea{bottom:886.973333pt;}
.y123{bottom:888.893333pt;}
.yce{bottom:890.813333pt;}
.y27{bottom:891.773333pt;}
.y107{bottom:899.773333pt;}
.y45{bottom:902.653333pt;}
.y90{bottom:902.973333pt;}
.y85{bottom:908.733333pt;}
.y122{bottom:916.733333pt;}
.y8{bottom:918.013333pt;}
.y26{bottom:919.613333pt;}
.ycd{bottom:921.533333pt;}
.y8f{bottom:922.813333pt;}
.y106{bottom:927.293333pt;}
.y44{bottom:930.173333pt;}
.y8e{bottom:942.653333pt;}
.y25{bottom:947.133333pt;}
.ycc{bottom:951.933333pt;}
.y105{bottom:954.813333pt;}
.y43{bottom:957.693333pt;}
.y7{bottom:960.933333pt;}
.y8d{bottom:962.533333pt;}
.ye8{bottom:969.893333pt;}
.y24{bottom:974.693333pt;}
.y8c{bottom:982.373333pt;}
.y42{bottom:985.573333pt;}
.y6{bottom:991.973333pt;}
.y4{bottom:1010.853333pt;}
.y23{bottom:1013.093333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.773333pt;}
.ha{height:16.000000pt;}
.h11{height:27.232000pt;}
.hf{height:28.160000pt;}
.he{height:30.080000pt;}
.hd{height:32.032000pt;}
.h10{height:36.160000pt;}
.h3{height:42.636250pt;}
.hb{height:43.840000pt;}
.h13{height:43.872000pt;}
.h2{height:46.343750pt;}
.h9{height:46.593750pt;}
.h12{height:48.960000pt;}
.hc{height:50.240000pt;}
.h4{height:51.663750pt;}
.h7{height:53.758750pt;}
.h14{height:54.048750pt;}
.h8{height:56.156250pt;}
.h15{height:56.312500pt;}
.h5{height:58.563750pt;}
.h6{height:69.515625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:204.546667pt;}
.w7{width:336.773333pt;}
.w4{width:703.013333pt;}
.w6{width:705.893333pt;}
.w5{width:711.013333pt;}
.w8{width:722.240000pt;}
.w9{width:747.840000pt;}
.wb{width:756.800000pt;}
.wd{width:767.040000pt;}
.wc{width:768.960000pt;}
.wa{width:773.120000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:9.632000pt;}
.x1f{left:10.560000pt;}
.x21{left:12.800000pt;}
.x22{left:15.680000pt;}
.x20{left:19.840000pt;}
.x1d{left:21.760000pt;}
.x16{left:27.520000pt;}
.x13{left:29.760000pt;}
.x14{left:33.600000pt;}
.x1b{left:35.520000pt;}
.x1{left:94.431988pt;}
.x18{left:97.664000pt;}
.x8{left:101.471988pt;}
.xf{left:118.463988pt;}
.x10{left:142.466655pt;}
.x1a{left:169.666667pt;}
.x11{left:180.866655pt;}
.x2{left:214.813322pt;}
.x9{left:225.373322pt;}
.xd{left:244.893322pt;}
.xc{left:247.453322pt;}
.xe{left:268.573322pt;}
.xb{left:270.813322pt;}
.x17{left:310.533333pt;}
.xa{left:325.893322pt;}
.x12{left:338.693322pt;}
.x1e{left:349.280000pt;}
.x19{left:355.360000pt;}
.x1c{left:360.800000pt;}
.x4{left:383.199988pt;}
.x5{left:385.759988pt;}
.x7{left:396.959988pt;}
.x6{left:484.666655pt;}
.x3{left:619.133322pt;}
}




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