
    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_008a7c0e858442b3865de668.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_4c400eaa8cebf3f6a0016551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_69e2d30534cba4204cb172a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_10c62259d6ac677fbe585b66.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_f6593a45933e1b8bbd77f906.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_83941e1822567beccd11cb7c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119629;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_ed5602049607a7a53dfba09b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d8076144d932bcf71a0d2b49.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_869567f1763e970db62edf73.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3a35c1158f2c6e5a3cbf7cdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsa{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.720000px;}
.lsd{letter-spacing:7.920000px;}
.ls1{letter-spacing:11.520000px;}
.ls9{letter-spacing:15.120000px;}
.lse{letter-spacing:30.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws7{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.488000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-5.851680px;}
._10{margin-left:-2.272560px;}
._1{margin-left:-1.178640px;}
._0{width:1.347840px;}
._2{width:2.520000px;}
._c{width:3.816000px;}
._7{width:4.824000px;}
._6{width:6.336000px;}
._5{width:7.344000px;}
._8{width:9.312000px;}
._4{width:10.488000px;}
._3{width:11.592000px;}
._1a{width:12.692880px;}
._f{width:13.824000px;}
._a{width:15.610800px;}
._9{width:16.704000px;}
._b{width:19.656000px;}
._13{width:21.096000px;}
._14{width:22.202640px;}
._15{width:23.760000px;}
._17{width:25.116720px;}
._16{width:26.188320px;}
._e{width:28.817280px;}
._d{width:30.024000px;}
._12{width:31.596720px;}
._19{width:39.084000px;}
._18{width:40.404000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:48.240000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y46{bottom:4.140000px;}
.y4a{bottom:4.500000px;}
.y48{bottom:6.480000px;}
.y97{bottom:7.020000px;}
.y66{bottom:7.380000px;}
.y9f{bottom:7.425000px;}
.y6c{bottom:7.560000px;}
.y64{bottom:7.740000px;}
.ycd{bottom:7.920000px;}
.y8c{bottom:9.180000px;}
.y6f{bottom:12.600000px;}
.y61{bottom:12.960000px;}
.y4c{bottom:14.760000px;}
.y43{bottom:14.940000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y9b{bottom:18.900000px;}
.ya1{bottom:18.945000px;}
.yc6{bottom:19.080000px;}
.y69{bottom:19.260000px;}
.y6d{bottom:19.440000px;}
.y8e{bottom:19.620000px;}
.y7{bottom:20.700000px;}
.y88{bottom:21.060000px;}
.y45{bottom:24.840000px;}
.y41{bottom:25.200000px;}
.y4{bottom:27.900000px;}
.yc5{bottom:30.960000px;}
.y68{bottom:31.140000px;}
.y9e{bottom:31.185000px;}
.y71{bottom:31.320000px;}
.y6b{bottom:31.350000px;}
.y63{bottom:31.500000px;}
.y94{bottom:31.680000px;}
.yd0{bottom:31.725000px;}
.y84{bottom:32.040000px;}
.y8b{bottom:33.120000px;}
.y42{bottom:35.640000px;}
.yc8{bottom:42.840000px;}
.yc3{bottom:43.200000px;}
.y85{bottom:43.920000px;}
.y87{bottom:45.000000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.yca{bottom:48.780000px;}
.y8{bottom:48.960000px;}
.yc7{bottom:54.720000px;}
.y99{bottom:54.900000px;}
.y9d{bottom:54.945000px;}
.yc0{bottom:55.080000px;}
.y83{bottom:55.800000px;}
.y8a{bottom:56.880000px;}
.yc9{bottom:66.600000px;}
.yc2{bottom:66.960000px;}
.y86{bottom:68.760000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ycb{bottom:78.480000px;}
.ybf{bottom:78.840000px;}
.y89{bottom:80.640000px;}
.yc1{bottom:90.720000px;}
.ya{bottom:91.116000px;}
.ybe{bottom:102.600000px;}
.ybc{bottom:130.896000px;}
.yee{bottom:131.616000px;}
.y53{bottom:140.436000px;}
.y7d{bottom:154.470000px;}
.ybb{bottom:154.650000px;}
.yed{bottom:155.370000px;}
.y37{bottom:163.650000px;}
.y7c{bottom:178.230000px;}
.yba{bottom:178.410000px;}
.yec{bottom:179.130000px;}
.y36{bottom:187.410000px;}
.y7b{bottom:202.170000px;}
.yeb{bottom:203.070000px;}
.y35{bottom:211.350000px;}
.y81{bottom:212.610000px;}
.y7a{bottom:225.930000px;}
.yb9{bottom:226.110000px;}
.yea{bottom:226.830000px;}
.y34{bottom:235.110000px;}
.y80{bottom:236.370000px;}
.y79{bottom:249.690000px;}
.yb8{bottom:249.870000px;}
.ye9{bottom:250.590000px;}
.y33{bottom:258.870000px;}
.y7f{bottom:259.950000px;}
.y78{bottom:273.450000px;}
.yb7{bottom:273.630000px;}
.ye8{bottom:274.350000px;}
.y9c{bottom:277.410000px;}
.y32{bottom:282.675000px;}
.y77{bottom:297.435000px;}
.ye7{bottom:298.335000px;}
.y31{bottom:306.435000px;}
.yf0{bottom:306.615000px;}
.y76{bottom:321.195000px;}
.yb6{bottom:321.375000px;}
.ye6{bottom:322.095000px;}
.ya0{bottom:324.975000px;}
.y30{bottom:330.375000px;}
.y75{bottom:344.955000px;}
.yb5{bottom:345.135000px;}
.ye5{bottom:345.855000px;}
.y98{bottom:349.635000px;}
.y2f{bottom:354.135000px;}
.y74{bottom:368.715000px;}
.yb4{bottom:368.895000px;}
.ye4{bottom:369.615000px;}
.y2e{bottom:377.895000px;}
.y73{bottom:392.295000px;}
.yb3{bottom:392.655000px;}
.ye3{bottom:393.555000px;}
.y9a{bottom:397.155000px;}
.y2d{bottom:401.655000px;}
.y72{bottom:409.755000px;}
.yb2{bottom:416.595000px;}
.ye2{bottom:417.315000px;}
.y96{bottom:421.815000px;}
.y2c{bottom:425.595000px;}
.yb1{bottom:440.355000px;}
.ye1{bottom:441.075000px;}
.y93{bottom:446.295000px;}
.y2b{bottom:449.355000px;}
.y52{bottom:454.215000px;}
.y70{bottom:457.995000px;}
.yb0{bottom:464.115000px;}
.ye0{bottom:464.835000px;}
.y51{bottom:471.135000px;}
.y2a{bottom:473.115000px;}
.yaf{bottom:487.875000px;}
.ydf{bottom:488.775000px;}
.y50{bottom:492.555000px;}
.y95{bottom:494.715000px;}
.y29{bottom:496.875000px;}
.y6e{bottom:506.415000px;}
.yae{bottom:511.815000px;}
.yde{bottom:512.535000px;}
.y4f{bottom:513.975000px;}
.y91{bottom:519.195000px;}
.y28{bottom:520.815000px;}
.y4e{bottom:535.395000px;}
.yad{bottom:535.575000px;}
.ydd{bottom:536.295000px;}
.y6a{bottom:541.155000px;}
.y92{bottom:543.675000px;}
.y27{bottom:544.575000px;}
.yac{bottom:559.335000px;}
.ydc{bottom:560.055000px;}
.y26{bottom:568.365000px;}
.y4d{bottom:577.725000px;}
.yab{bottom:583.125000px;}
.ydb{bottom:584.025000px;}
.y67{bottom:589.605000px;}
.y25{bottom:592.125000px;}
.y90{bottom:592.845000px;}
.yaa{bottom:607.065000px;}
.yda{bottom:607.785000px;}
.y24{bottom:616.065000px;}
.y8d{bottom:617.505000px;}
.y4b{bottom:619.845000px;}
.ya9{bottom:630.825000px;}
.yd9{bottom:631.545000px;}
.y62{bottom:638.025000px;}
.y23{bottom:639.825000px;}
.y8f{bottom:641.985000px;}
.ya8{bottom:654.585000px;}
.yd8{bottom:655.305000px;}
.y49{bottom:661.965000px;}
.y65{bottom:662.505000px;}
.y22{bottom:663.585000px;}
.y82{bottom:666.465000px;}
.ya7{bottom:678.345000px;}
.yd7{bottom:679.065000px;}
.y47{bottom:683.385000px;}
.y60{bottom:686.985000px;}
.y21{bottom:687.345000px;}
.ya6{bottom:702.105000px;}
.yd6{bottom:703.005000px;}
.y40{bottom:709.485000px;}
.yef{bottom:710.925000px;}
.y20{bottom:711.285000px;}
.yd4{bottom:720.105000px;}
.ya5{bottom:725.685000px;}
.y5f{bottom:730.365000px;}
.y44{bottom:730.905000px;}
.y1f{bottom:735.045000px;}
.yd5{bottom:744.585000px;}
.ya4{bottom:749.445000px;}
.y5e{bottom:756.285000px;}
.y1e{bottom:758.805000px;}
.yd2{bottom:769.245000px;}
.ya3{bottom:773.205000px;}
.y3f{bottom:780.225000px;}
.y7e{bottom:782.205000px;}
.y1d{bottom:782.565000px;}
.ya2{bottom:793.185000px;}
.yd3{bottom:793.725000px;}
.y5d{bottom:804.345000px;}
.y3e{bottom:805.965000px;}
.y1c{bottom:806.325000px;}
.ycf{bottom:818.205000px;}
.y5c{bottom:828.105000px;}
.y3d{bottom:829.905000px;}
.y1b{bottom:830.265000px;}
.yd1{bottom:842.865000px;}
.y5b{bottom:851.910000px;}
.y1a{bottom:854.070000px;}
.ycc{bottom:867.390000px;}
.y5a{bottom:875.850000px;}
.y19{bottom:877.830000px;}
.yce{bottom:892.050000px;}
.y59{bottom:899.610000px;}
.y18{bottom:901.590000px;}
.ybd{bottom:916.530000px;}
.y58{bottom:923.370000px;}
.y17{bottom:925.530000px;}
.y57{bottom:947.130000px;}
.y16{bottom:948.930000px;}
.y3c{bottom:949.290000px;}
.y56{bottom:970.890000px;}
.y15{bottom:973.050000px;}
.y55{bottom:994.830000px;}
.y14{bottom:996.810000px;}
.yc4{bottom:1012.470000px;}
.y54{bottom:1020.390000px;}
.y13{bottom:1020.750000px;}
.y12{bottom:1044.150000px;}
.y3b{bottom:1044.510000px;}
.y11{bottom:1067.910000px;}
.y3a{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y39{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y38{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.he{height:20.700000px;}
.h13{height:23.760000px;}
.h25{height:23.796000px;}
.h24{height:23.940000px;}
.h1a{height:23.976000px;}
.hf{height:25.380000px;}
.h8{height:33.120000px;}
.h16{height:34.020000px;}
.h11{height:35.640000px;}
.hd{height:41.400000px;}
.h10{height:41.436000px;}
.h1d{height:46.800000px;}
.h1f{height:46.836000px;}
.h14{height:47.520000px;}
.h17{height:47.700000px;}
.h15{height:47.736000px;}
.h12{height:48.240000px;}
.h23{height:48.420000px;}
.h19{height:48.456000px;}
.h22{height:48.802500px;}
.hb{height:50.273438px;}
.hc{height:62.820000px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h1c{height:71.280000px;}
.h1e{height:71.316000px;}
.ha{height:71.613281px;}
.h1b{height:72.180000px;}
.h3{height:72.562500px;}
.h26{height:74.004654px;}
.h4{height:82.635820px;}
.h21{height:95.220000px;}
.h18{height:97.380000px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h20{height:143.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w16{width:40.140000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.w1c{width:67.860000px;}
.w15{width:70.920000px;}
.w1e{width:73.800000px;}
.w21{width:75.096000px;}
.w25{width:80.856000px;}
.w18{width:85.716000px;}
.w24{width:89.460000px;}
.w26{width:90.360000px;}
.wa{width:92.340000px;}
.w23{width:102.096000px;}
.w22{width:104.220000px;}
.w11{width:111.960000px;}
.w14{width:112.140000px;}
.w12{width:112.176000px;}
.w13{width:112.356000px;}
.w2{width:125.856000px;}
.we{width:126.540000px;}
.wf{width:126.576000px;}
.wc{width:127.116000px;}
.w1b{width:130.896000px;}
.w1a{width:135.360000px;}
.w19{width:144.576000px;}
.w17{width:171.720000px;}
.wd{width:253.830000px;}
.wb{width:259.770000px;}
.w20{width:262.290000px;}
.w1f{width:282.855000px;}
.w10{width:642.165000px;}
.w3{width:705.525000px;}
.w1d{width:739.725000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x5e{left:3.960000px;}
.x40{left:6.120000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x3f{left:11.520000px;}
.x2d{left:13.500000px;}
.x7{left:14.580000px;}
.x3d{left:16.560000px;}
.x4a{left:19.080000px;}
.x27{left:20.340000px;}
.x28{left:22.365000px;}
.x38{left:23.940000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3a{left:28.620000px;}
.x3{left:30.239973px;}
.x2a{left:31.320000px;}
.x23{left:32.940000px;}
.x25{left:36.045000px;}
.x20{left:39.960000px;}
.x36{left:43.065000px;}
.x49{left:45.900000px;}
.x4f{left:50.214000px;}
.x47{left:51.840000px;}
.x22{left:53.100000px;}
.x2e{left:55.800000px;}
.x4d{left:57.825000px;}
.x4b{left:60.120000px;}
.x51{left:64.434000px;}
.x44{left:69.834000px;}
.x5{left:71.994000px;}
.x58{left:97.965000px;}
.x2b{left:99.000000px;}
.x29{left:101.340000px;}
.x26{left:105.840000px;}
.x1e{left:109.800000px;}
.x43{left:113.976000px;}
.x33{left:119.916000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x5f{left:154.649987px;}
.x12{left:157.169987px;}
.x1d{left:162.750000px;}
.x42{left:170.129987px;}
.x19{left:180.749987px;}
.x31{left:182.549987px;}
.x3e{left:191.730000px;}
.x54{left:193.349987px;}
.x13{left:201.629987px;}
.x1b{left:208.109987px;}
.x56{left:212.970000px;}
.x2c{left:222.345000px;}
.x34{left:232.770000px;}
.x35{left:283.890000px;}
.x45{left:286.410000px;}
.x57{left:287.490000px;}
.x16{left:290.549987px;}
.x50{left:301.359000px;}
.x18{left:333.074987px;}
.x15{left:349.994987px;}
.x5a{left:363.315000px;}
.x32{left:367.274987px;}
.x46{left:372.855000px;}
.x55{left:378.254987px;}
.x37{left:396.795000px;}
.x30{left:419.474987px;}
.x1f{left:423.255000px;}
.x17{left:424.694987px;}
.x1c{left:427.394987px;}
.x14{left:429.734987px;}
.x5b{left:468.255000px;}
.x39{left:509.865000px;}
.x48{left:518.145000px;}
.x21{left:551.085000px;}
.x59{left:571.065000px;}
.xb{left:619.305000px;}
.x3b{left:622.725000px;}
.x4c{left:654.225000px;}
.x5c{left:661.245000px;}
.xc{left:669.705000px;}
.x24{left:678.345000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x3c{left:735.810000px;}
.x10{left:738.870000px;}
.x5d{left:743.010000px;}
.x53{left:750.929987px;}
.x41{left:755.429987px;}
.x1a{left:782.429987px;}
.x4e{left:785.850000px;}
.x2f{left:802.049987px;}
.x52{left:818.069987px;}
.x8{left:831.390000px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsd{letter-spacing:7.040000pt;}
.ls1{letter-spacing:10.240000pt;}
.ls9{letter-spacing:13.440000pt;}
.lse{letter-spacing:27.008000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-5.201493pt;}
._10{margin-left:-2.020053pt;}
._1{margin-left:-1.047680pt;}
._0{width:1.198080pt;}
._2{width:2.240000pt;}
._c{width:3.392000pt;}
._7{width:4.288000pt;}
._6{width:5.632000pt;}
._5{width:6.528000pt;}
._8{width:8.277333pt;}
._4{width:9.322667pt;}
._3{width:10.304000pt;}
._1a{width:11.282560pt;}
._f{width:12.288000pt;}
._a{width:13.876267pt;}
._9{width:14.848000pt;}
._b{width:17.472000pt;}
._13{width:18.752000pt;}
._14{width:19.735680pt;}
._15{width:21.120000pt;}
._17{width:22.325973pt;}
._16{width:23.278507pt;}
._e{width:25.615360pt;}
._d{width:26.688000pt;}
._12{width:28.085973pt;}
._19{width:34.741333pt;}
._18{width:35.914667pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:3.680000pt;}
.y4a{bottom:4.000000pt;}
.y48{bottom:5.760000pt;}
.y97{bottom:6.240000pt;}
.y66{bottom:6.560000pt;}
.y9f{bottom:6.600000pt;}
.y6c{bottom:6.720000pt;}
.y64{bottom:6.880000pt;}
.ycd{bottom:7.040000pt;}
.y8c{bottom:8.160000pt;}
.y6f{bottom:11.200000pt;}
.y61{bottom:11.520000pt;}
.y4c{bottom:13.120000pt;}
.y43{bottom:13.280000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y9b{bottom:16.800000pt;}
.ya1{bottom:16.840000pt;}
.yc6{bottom:16.960000pt;}
.y69{bottom:17.120000pt;}
.y6d{bottom:17.280000pt;}
.y8e{bottom:17.440000pt;}
.y7{bottom:18.400000pt;}
.y88{bottom:18.720000pt;}
.y45{bottom:22.080000pt;}
.y41{bottom:22.400000pt;}
.y4{bottom:24.800000pt;}
.yc5{bottom:27.520000pt;}
.y68{bottom:27.680000pt;}
.y9e{bottom:27.720000pt;}
.y71{bottom:27.840000pt;}
.y6b{bottom:27.866667pt;}
.y63{bottom:28.000000pt;}
.y94{bottom:28.160000pt;}
.yd0{bottom:28.200000pt;}
.y84{bottom:28.480000pt;}
.y8b{bottom:29.440000pt;}
.y42{bottom:31.680000pt;}
.yc8{bottom:38.080000pt;}
.yc3{bottom:38.400000pt;}
.y85{bottom:39.040000pt;}
.y87{bottom:40.000000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.yca{bottom:43.360000pt;}
.y8{bottom:43.520000pt;}
.yc7{bottom:48.640000pt;}
.y99{bottom:48.800000pt;}
.y9d{bottom:48.840000pt;}
.yc0{bottom:48.960000pt;}
.y83{bottom:49.600000pt;}
.y8a{bottom:50.560000pt;}
.yc9{bottom:59.200000pt;}
.yc2{bottom:59.520000pt;}
.y86{bottom:61.120000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ycb{bottom:69.760000pt;}
.ybf{bottom:70.080000pt;}
.y89{bottom:71.680000pt;}
.yc1{bottom:80.640000pt;}
.ya{bottom:80.992000pt;}
.ybe{bottom:91.200000pt;}
.ybc{bottom:116.352000pt;}
.yee{bottom:116.992000pt;}
.y53{bottom:124.832000pt;}
.y7d{bottom:137.306667pt;}
.ybb{bottom:137.466667pt;}
.yed{bottom:138.106667pt;}
.y37{bottom:145.466667pt;}
.y7c{bottom:158.426667pt;}
.yba{bottom:158.586667pt;}
.yec{bottom:159.226667pt;}
.y36{bottom:166.586667pt;}
.y7b{bottom:179.706667pt;}
.yeb{bottom:180.506667pt;}
.y35{bottom:187.866667pt;}
.y81{bottom:188.986667pt;}
.y7a{bottom:200.826667pt;}
.yb9{bottom:200.986667pt;}
.yea{bottom:201.626667pt;}
.y34{bottom:208.986667pt;}
.y80{bottom:210.106667pt;}
.y79{bottom:221.946667pt;}
.yb8{bottom:222.106667pt;}
.ye9{bottom:222.746667pt;}
.y33{bottom:230.106667pt;}
.y7f{bottom:231.066667pt;}
.y78{bottom:243.066667pt;}
.yb7{bottom:243.226667pt;}
.ye8{bottom:243.866667pt;}
.y9c{bottom:246.586667pt;}
.y32{bottom:251.266667pt;}
.y77{bottom:264.386667pt;}
.ye7{bottom:265.186667pt;}
.y31{bottom:272.386667pt;}
.yf0{bottom:272.546667pt;}
.y76{bottom:285.506667pt;}
.yb6{bottom:285.666667pt;}
.ye6{bottom:286.306667pt;}
.ya0{bottom:288.866667pt;}
.y30{bottom:293.666667pt;}
.y75{bottom:306.626667pt;}
.yb5{bottom:306.786667pt;}
.ye5{bottom:307.426667pt;}
.y98{bottom:310.786667pt;}
.y2f{bottom:314.786667pt;}
.y74{bottom:327.746667pt;}
.yb4{bottom:327.906667pt;}
.ye4{bottom:328.546667pt;}
.y2e{bottom:335.906667pt;}
.y73{bottom:348.706667pt;}
.yb3{bottom:349.026667pt;}
.ye3{bottom:349.826667pt;}
.y9a{bottom:353.026667pt;}
.y2d{bottom:357.026667pt;}
.y72{bottom:364.226667pt;}
.yb2{bottom:370.306667pt;}
.ye2{bottom:370.946667pt;}
.y96{bottom:374.946667pt;}
.y2c{bottom:378.306667pt;}
.yb1{bottom:391.426667pt;}
.ye1{bottom:392.066667pt;}
.y93{bottom:396.706667pt;}
.y2b{bottom:399.426667pt;}
.y52{bottom:403.746667pt;}
.y70{bottom:407.106667pt;}
.yb0{bottom:412.546667pt;}
.ye0{bottom:413.186667pt;}
.y51{bottom:418.786667pt;}
.y2a{bottom:420.546667pt;}
.yaf{bottom:433.666667pt;}
.ydf{bottom:434.466667pt;}
.y50{bottom:437.826667pt;}
.y95{bottom:439.746667pt;}
.y29{bottom:441.666667pt;}
.y6e{bottom:450.146667pt;}
.yae{bottom:454.946667pt;}
.yde{bottom:455.586667pt;}
.y4f{bottom:456.866667pt;}
.y91{bottom:461.506667pt;}
.y28{bottom:462.946667pt;}
.y4e{bottom:475.906667pt;}
.yad{bottom:476.066667pt;}
.ydd{bottom:476.706667pt;}
.y6a{bottom:481.026667pt;}
.y92{bottom:483.266667pt;}
.y27{bottom:484.066667pt;}
.yac{bottom:497.186667pt;}
.ydc{bottom:497.826667pt;}
.y26{bottom:505.213333pt;}
.y4d{bottom:513.533333pt;}
.yab{bottom:518.333333pt;}
.ydb{bottom:519.133333pt;}
.y67{bottom:524.093333pt;}
.y25{bottom:526.333333pt;}
.y90{bottom:526.973333pt;}
.yaa{bottom:539.613333pt;}
.yda{bottom:540.253333pt;}
.y24{bottom:547.613333pt;}
.y8d{bottom:548.893333pt;}
.y4b{bottom:550.973333pt;}
.ya9{bottom:560.733333pt;}
.yd9{bottom:561.373333pt;}
.y62{bottom:567.133333pt;}
.y23{bottom:568.733333pt;}
.y8f{bottom:570.653333pt;}
.ya8{bottom:581.853333pt;}
.yd8{bottom:582.493333pt;}
.y49{bottom:588.413333pt;}
.y65{bottom:588.893333pt;}
.y22{bottom:589.853333pt;}
.y82{bottom:592.413333pt;}
.ya7{bottom:602.973333pt;}
.yd7{bottom:603.613333pt;}
.y47{bottom:607.453333pt;}
.y60{bottom:610.653333pt;}
.y21{bottom:610.973333pt;}
.ya6{bottom:624.093333pt;}
.yd6{bottom:624.893333pt;}
.y40{bottom:630.653333pt;}
.yef{bottom:631.933333pt;}
.y20{bottom:632.253333pt;}
.yd4{bottom:640.093333pt;}
.ya5{bottom:645.053333pt;}
.y5f{bottom:649.213333pt;}
.y44{bottom:649.693333pt;}
.y1f{bottom:653.373333pt;}
.yd5{bottom:661.853333pt;}
.ya4{bottom:666.173333pt;}
.y5e{bottom:672.253333pt;}
.y1e{bottom:674.493333pt;}
.yd2{bottom:683.773333pt;}
.ya3{bottom:687.293333pt;}
.y3f{bottom:693.533333pt;}
.y7e{bottom:695.293333pt;}
.y1d{bottom:695.613333pt;}
.ya2{bottom:705.053333pt;}
.yd3{bottom:705.533333pt;}
.y5d{bottom:714.973333pt;}
.y3e{bottom:716.413333pt;}
.y1c{bottom:716.733333pt;}
.ycf{bottom:727.293333pt;}
.y5c{bottom:736.093333pt;}
.y3d{bottom:737.693333pt;}
.y1b{bottom:738.013333pt;}
.yd1{bottom:749.213333pt;}
.y5b{bottom:757.253333pt;}
.y1a{bottom:759.173333pt;}
.ycc{bottom:771.013333pt;}
.y5a{bottom:778.533333pt;}
.y19{bottom:780.293333pt;}
.yce{bottom:792.933333pt;}
.y59{bottom:799.653333pt;}
.y18{bottom:801.413333pt;}
.ybd{bottom:814.693333pt;}
.y58{bottom:820.773333pt;}
.y17{bottom:822.693333pt;}
.y57{bottom:841.893333pt;}
.y16{bottom:843.493333pt;}
.y3c{bottom:843.813333pt;}
.y56{bottom:863.013333pt;}
.y15{bottom:864.933333pt;}
.y55{bottom:884.293333pt;}
.y14{bottom:886.053333pt;}
.yc4{bottom:899.973333pt;}
.y54{bottom:907.013333pt;}
.y13{bottom:907.333333pt;}
.y12{bottom:928.133333pt;}
.y3b{bottom:928.453333pt;}
.y11{bottom:949.253333pt;}
.y3a{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y39{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y38{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.he{height:18.400000pt;}
.h13{height:21.120000pt;}
.h25{height:21.152000pt;}
.h24{height:21.280000pt;}
.h1a{height:21.312000pt;}
.hf{height:22.560000pt;}
.h8{height:29.440000pt;}
.h16{height:30.240000pt;}
.h11{height:31.680000pt;}
.hd{height:36.800000pt;}
.h10{height:36.832000pt;}
.h1d{height:41.600000pt;}
.h1f{height:41.632000pt;}
.h14{height:42.240000pt;}
.h17{height:42.400000pt;}
.h15{height:42.432000pt;}
.h12{height:42.880000pt;}
.h23{height:43.040000pt;}
.h19{height:43.072000pt;}
.h22{height:43.380000pt;}
.hb{height:44.687500pt;}
.hc{height:55.840000pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h1c{height:63.360000pt;}
.h1e{height:63.392000pt;}
.ha{height:63.656250pt;}
.h1b{height:64.160000pt;}
.h3{height:64.500000pt;}
.h26{height:65.781915pt;}
.h4{height:73.454062pt;}
.h21{height:84.640000pt;}
.h18{height:86.560000pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h20{height:127.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w16{width:35.680000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.w1c{width:60.320000pt;}
.w15{width:63.040000pt;}
.w1e{width:65.600000pt;}
.w21{width:66.752000pt;}
.w25{width:71.872000pt;}
.w18{width:76.192000pt;}
.w24{width:79.520000pt;}
.w26{width:80.320000pt;}
.wa{width:82.080000pt;}
.w23{width:90.752000pt;}
.w22{width:92.640000pt;}
.w11{width:99.520000pt;}
.w14{width:99.680000pt;}
.w12{width:99.712000pt;}
.w13{width:99.872000pt;}
.w2{width:111.872000pt;}
.we{width:112.480000pt;}
.wf{width:112.512000pt;}
.wc{width:112.992000pt;}
.w1b{width:116.352000pt;}
.w1a{width:120.320000pt;}
.w19{width:128.512000pt;}
.w17{width:152.640000pt;}
.wd{width:225.626667pt;}
.wb{width:230.906667pt;}
.w20{width:233.146667pt;}
.w1f{width:251.426667pt;}
.w10{width:570.813333pt;}
.w3{width:627.133333pt;}
.w1d{width:657.533333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x5e{left:3.520000pt;}
.x40{left:5.440000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x3f{left:10.240000pt;}
.x2d{left:12.000000pt;}
.x7{left:12.960000pt;}
.x3d{left:14.720000pt;}
.x4a{left:16.960000pt;}
.x27{left:18.080000pt;}
.x28{left:19.880000pt;}
.x38{left:21.280000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3a{left:25.440000pt;}
.x3{left:26.879976pt;}
.x2a{left:27.840000pt;}
.x23{left:29.280000pt;}
.x25{left:32.040000pt;}
.x20{left:35.520000pt;}
.x36{left:38.280000pt;}
.x49{left:40.800000pt;}
.x4f{left:44.634667pt;}
.x47{left:46.080000pt;}
.x22{left:47.200000pt;}
.x2e{left:49.600000pt;}
.x4d{left:51.400000pt;}
.x4b{left:53.440000pt;}
.x51{left:57.274667pt;}
.x44{left:62.074667pt;}
.x5{left:63.994667pt;}
.x58{left:87.080000pt;}
.x2b{left:88.000000pt;}
.x29{left:90.080000pt;}
.x26{left:94.080000pt;}
.x1e{left:97.600000pt;}
.x43{left:101.312000pt;}
.x33{left:106.592000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x5f{left:137.466655pt;}
.x12{left:139.706655pt;}
.x1d{left:144.666667pt;}
.x42{left:151.226655pt;}
.x19{left:160.666655pt;}
.x31{left:162.266655pt;}
.x3e{left:170.426667pt;}
.x54{left:171.866655pt;}
.x13{left:179.226655pt;}
.x1b{left:184.986655pt;}
.x56{left:189.306667pt;}
.x2c{left:197.640000pt;}
.x34{left:206.906667pt;}
.x35{left:252.346667pt;}
.x45{left:254.586667pt;}
.x57{left:255.546667pt;}
.x16{left:258.266655pt;}
.x50{left:267.874667pt;}
.x18{left:296.066655pt;}
.x15{left:311.106655pt;}
.x5a{left:322.946667pt;}
.x32{left:326.466655pt;}
.x46{left:331.426667pt;}
.x55{left:336.226655pt;}
.x37{left:352.706667pt;}
.x30{left:372.866655pt;}
.x1f{left:376.226667pt;}
.x17{left:377.506655pt;}
.x1c{left:379.906655pt;}
.x14{left:381.986655pt;}
.x5b{left:416.226667pt;}
.x39{left:453.213333pt;}
.x48{left:460.573333pt;}
.x21{left:489.853333pt;}
.x59{left:507.613333pt;}
.xb{left:550.493333pt;}
.x3b{left:553.533333pt;}
.x4c{left:581.533333pt;}
.x5c{left:587.773333pt;}
.xc{left:595.293333pt;}
.x24{left:602.973333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x3c{left:654.053333pt;}
.x10{left:656.773333pt;}
.x5d{left:660.453333pt;}
.x53{left:667.493322pt;}
.x41{left:671.493322pt;}
.x1a{left:695.493322pt;}
.x4e{left:698.533333pt;}
.x2f{left:712.933322pt;}
.x52{left:727.173322pt;}
.x8{left:739.013333pt;}
}




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