
    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_361457682e377d8985a434e6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_52945f7043e864a48fd47350.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_2f7c3cbc3aff79c59c051821.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_2921e32a1a7d9582ccdf21a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_362a4d8c9cede17e007dbb12.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_cd6503ee28e7bf8600ffa854.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m2{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.360000px;}
.ls10{letter-spacing:2.160000px;}
.ls7{letter-spacing:4.911120px;}
.lsd{letter-spacing:8.280000px;}
.ls16{letter-spacing:9.720000px;}
.ls8{letter-spacing:11.031120px;}
.ls6{letter-spacing:17.151120px;}
.ls0{letter-spacing:62.910000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.640000px;}
.ws10{word-spacing:-15.210000px;}
.ws0{word-spacing:-14.976720px;}
.ws1{word-spacing:-14.850000px;}
.wsd{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.482000px;}
.wsc{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.374000px;}
.wsb{word-spacing:-13.356000px;}
.ws7{word-spacing:-11.970000px;}
.ws2{word-spacing:-11.790000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-9.454560px;}
._12{margin-left:-5.064000px;}
._9{margin-left:-3.816000px;}
._7{margin-left:-2.304000px;}
._0{margin-left:-1.022040px;}
._1{width:1.006560px;}
._3{width:2.232000px;}
._4{width:3.456000px;}
._e{width:4.464000px;}
._8{width:5.472000px;}
._b{width:7.416000px;}
._c{width:8.424000px;}
._13{width:9.576000px;}
._6{width:11.520000px;}
._5{width:12.672000px;}
._15{width:13.728000px;}
._16{width:14.832000px;}
._17{width:15.960000px;}
._21{width:16.984920px;}
._d{width:19.272000px;}
._14{width:20.712000px;}
._f{width:21.744000px;}
._1a{width:23.112000px;}
._1d{width:24.120000px;}
._a{width:25.632000px;}
._1b{width:26.640000px;}
._1c{width:28.105440px;}
._22{width:29.326560px;}
._18{width:30.528000px;}
._19{width:32.184000px;}
._20{width:33.840000px;}
._1f{width:34.848000px;}
._26{width:36.025440px;}
._11{width:37.440000px;}
._10{width:38.568000px;}
._2e{width:40.896000px;}
._32{width:50.285520px;}
._25{width:52.032000px;}
._24{width:53.064000px;}
._2a{width:55.440000px;}
._29{width:56.712000px;}
._2{width:63.354000px;}
._2b{width:88.632000px;}
._27{width:96.624000px;}
._28{width:97.728000px;}
._2f{width:111.456000px;}
._2d{width:217.008000px;}
._31{width:226.920000px;}
._30{width:228.000000px;}
._23{width:444.384000px;}
._2c{width:1019.496000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.120000px;}
.fs5{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs6{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.420000px;}
.ya{bottom:5.670000px;}
.y7{bottom:7.920000px;}
.y66{bottom:10.710000px;}
.y76{bottom:10.800000px;}
.y69{bottom:10.980000px;}
.y6b{bottom:11.070000px;}
.y87{bottom:11.100000px;}
.ya4{bottom:22.770000px;}
.y9{bottom:22.950000px;}
.y5{bottom:25.110000px;}
.y6{bottom:33.030000px;}
.ya3{bottom:34.380000px;}
.y64{bottom:34.770000px;}
.y80{bottom:34.830000px;}
.y8{bottom:40.140000px;}
.y4{bottom:42.390000px;}
.yd{bottom:60.480000px;}
.yc{bottom:97.740000px;}
.y50{bottom:128.250000px;}
.yb3{bottom:131.850000px;}
.y2a{bottom:143.550000px;}
.y99{bottom:153.540000px;}
.y7c{bottom:157.590000px;}
.y47{bottom:159.300000px;}
.yb2{bottom:162.810000px;}
.y98{bottom:170.820000px;}
.y29{bottom:174.780000px;}
.y7b{bottom:174.870000px;}
.y4e{bottom:179.910000px;}
.yb4{bottom:184.500000px;}
.y46{bottom:190.260000px;}
.yb1{bottom:193.860000px;}
.y97{bottom:194.850000px;}
.y7a{bottom:198.990000px;}
.y28{bottom:205.830000px;}
.y4d{bottom:210.960000px;}
.y96{bottom:218.880000px;}
.yb8{bottom:221.130000px;}
.y45{bottom:221.310000px;}
.y79{bottom:223.020000px;}
.yb0{bottom:224.910000px;}
.y27{bottom:236.880000px;}
.y4c{bottom:242.010000px;}
.y95{bottom:242.910000px;}
.y78{bottom:247.050000px;}
.y44{bottom:252.360000px;}
.yaf{bottom:255.960000px;}
.y94{bottom:266.970000px;}
.y26{bottom:267.960000px;}
.y77{bottom:271.110000px;}
.y4b{bottom:273.090000px;}
.y43{bottom:283.440000px;}
.yae{bottom:287.040000px;}
.y91{bottom:291.000000px;}
.y75{bottom:295.140000px;}
.y25{bottom:299.010000px;}
.y4a{bottom:304.140000px;}
.y42{bottom:314.310000px;}
.y4f{bottom:314.490000px;}
.y93{bottom:315.030000px;}
.yad{bottom:318.090000px;}
.y74{bottom:332.310000px;}
.y49{bottom:335.190000px;}
.y24{bottom:336.810000px;}
.y92{bottom:339.150000px;}
.y41{bottom:345.540000px;}
.yac{bottom:349.140000px;}
.y23{bottom:361.110000px;}
.y73{bottom:362.100000px;}
.y61{bottom:366.240000px;}
.y48{bottom:370.830000px;}
.y90{bottom:376.320000px;}
.y40{bottom:376.590000px;}
.yab{bottom:380.190000px;}
.y72{bottom:393.150000px;}
.y60{bottom:397.290000px;}
.y22{bottom:398.910000px;}
.y8f{bottom:406.110000px;}
.y3f{bottom:407.640000px;}
.yaa{bottom:411.240000px;}
.y21{bottom:423.210000px;}
.y71{bottom:424.200000px;}
.y5f{bottom:428.340000px;}
.y8e{bottom:437.160000px;}
.y3e{bottom:438.690000px;}
.ya9{bottom:442.290000px;}
.y70{bottom:455.250000px;}
.y5e{bottom:459.390000px;}
.y20{bottom:461.010000px;}
.y8d{bottom:468.210000px;}
.yb7{bottom:469.560000px;}
.y3d{bottom:469.740000px;}
.ya8{bottom:473.340000px;}
.y1f{bottom:485.310000px;}
.y6f{bottom:486.300000px;}
.y5d{bottom:490.440000px;}
.y8c{bottom:499.260000px;}
.y3c{bottom:500.790000px;}
.y6e{bottom:503.580000px;}
.ya7{bottom:504.390000px;}
.y1e{bottom:516.360000px;}
.y5c{bottom:521.490000px;}
.y6d{bottom:527.610000px;}
.y8b{bottom:530.310000px;}
.y3b{bottom:531.840000px;}
.ya6{bottom:535.440000px;}
.y6c{bottom:551.640000px;}
.y5b{bottom:552.540000px;}
.y1d{bottom:554.160000px;}
.y8a{bottom:561.360000px;}
.yb6{bottom:562.710000px;}
.y3a{bottom:562.890000px;}
.ya5{bottom:566.490000px;}
.y6a{bottom:575.670000px;}
.y1c{bottom:578.460000px;}
.y5a{bottom:583.590000px;}
.ya2{bottom:583.770000px;}
.y89{bottom:592.410000px;}
.y39{bottom:593.940000px;}
.y68{bottom:599.790000px;}
.y88{bottom:609.690000px;}
.y59{bottom:614.640000px;}
.y1b{bottom:616.260000px;}
.y63{bottom:623.820000px;}
.y38{bottom:624.990000px;}
.ya1{bottom:631.110000px;}
.y86{bottom:633.720000px;}
.y1a{bottom:640.590000px;}
.y58{bottom:645.720000px;}
.y67{bottom:647.880000px;}
.ya0{bottom:655.170000px;}
.y37{bottom:656.070000px;}
.y85{bottom:657.780000px;}
.y19{bottom:671.640000px;}
.y65{bottom:671.910000px;}
.y57{bottom:676.770000px;}
.y9f{bottom:679.200000px;}
.yb5{bottom:681.360000px;}
.y84{bottom:681.810000px;}
.y36{bottom:687.120000px;}
.y18{bottom:702.600000px;}
.y9e{bottom:703.230000px;}
.y83{bottom:705.840000px;}
.y56{bottom:707.820000px;}
.y62{bottom:709.080000px;}
.y35{bottom:718.170000px;}
.y9b{bottom:727.260000px;}
.y7f{bottom:729.870000px;}
.y17{bottom:733.650000px;}
.y55{bottom:738.870000px;}
.y34{bottom:749.220000px;}
.y9d{bottom:751.380000px;}
.y82{bottom:753.900000px;}
.y16{bottom:764.700000px;}
.y54{bottom:769.920000px;}
.y9c{bottom:775.410000px;}
.y81{bottom:777.930000px;}
.y33{bottom:780.270000px;}
.y15{bottom:795.750000px;}
.y53{bottom:800.970000px;}
.y32{bottom:811.320000px;}
.y9a{bottom:812.580000px;}
.y7e{bottom:815.190000px;}
.y14{bottom:826.800000px;}
.y52{bottom:832.020000px;}
.y31{bottom:842.370000px;}
.y7d{bottom:843.540000px;}
.y13{bottom:860.010000px;}
.y51{bottom:867.660000px;}
.y30{bottom:873.420000px;}
.y12{bottom:896.190000px;}
.y2f{bottom:904.470000px;}
.y11{bottom:932.460000px;}
.y2e{bottom:935.520000px;}
.y2d{bottom:966.570000px;}
.y10{bottom:968.640000px;}
.y2c{bottom:997.620000px;}
.yf{bottom:1002.750000px;}
.y2b{bottom:1028.700000px;}
.ye{bottom:1031.310000px;}
.yb{bottom:1045.260000px;}
.y3{bottom:1072.260000px;}
.y1{bottom:1128.420000px;}
.h2{height:17.190000px;}
.h12{height:23.220000px;}
.h13{height:23.250000px;}
.h15{height:23.310000px;}
.h17{height:23.340000px;}
.h6{height:23.990449px;}
.h18{height:46.620000px;}
.hb{height:46.991602px;}
.h14{height:52.998047px;}
.h11{height:54.421875px;}
.h4{height:56.160000px;}
.h3{height:59.004492px;}
.he{height:64.546875px;}
.h7{height:65.526152px;}
.hf{height:66.394687px;}
.h8{height:70.664062px;}
.h10{height:71.310000px;}
.h16{height:71.370000px;}
.hc{height:72.562500px;}
.ha{height:73.991602px;}
.h5{height:77.505120px;}
.h9{height:84.535312px;}
.hd{height:96.870938px;}
.h1{height:1188.000000px;}
.h0{height:1188.180000px;}
.w2b{width:52.290000px;}
.w28{width:52.380000px;}
.w29{width:52.410000px;}
.w2a{width:52.470000px;}
.w1b{width:71.190000px;}
.w20{width:73.530000px;}
.w1a{width:73.560000px;}
.we{width:73.620000px;}
.w10{width:73.650000px;}
.wf{width:73.710000px;}
.w11{width:73.740000px;}
.w19{width:73.800000px;}
.w21{width:84.420000px;}
.w22{width:84.630000px;}
.w4{width:86.430000px;}
.w7{width:90.090000px;}
.w13{width:94.950000px;}
.w23{width:98.010000px;}
.w26{width:105.510000px;}
.w27{width:105.570000px;}
.w14{width:105.660000px;}
.w6{width:118.830000px;}
.w9{width:126.930000px;}
.w18{width:145.470000px;}
.wb{width:148.050000px;}
.wc{width:148.080000px;}
.wd{width:148.140000px;}
.w17{width:148.410000px;}
.w1e{width:158.670000px;}
.w1f{width:183.360000px;}
.w3{width:208.920000px;}
.w25{width:211.800000px;}
.w12{width:254.100000px;}
.w16{width:294.600000px;}
.w1d{width:342.840000px;}
.w1c{width:403.080000px;}
.w5{width:469.830000px;}
.w15{width:477.330000px;}
.w24{width:541.320000px;}
.w2{width:556.260000px;}
.wa{width:594.600000px;}
.w1{width:918.000000px;}
.w8{width:918.179986px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x3b{left:7.740000px;}
.x64{left:10.980000px;}
.x2c{left:12.060000px;}
.x8{left:13.320000px;}
.x65{left:14.400000px;}
.x60{left:16.200000px;}
.x3e{left:18.270000px;}
.x62{left:19.440000px;}
.x30{left:21.330000px;}
.x32{left:23.580000px;}
.x7{left:25.110000px;}
.x35{left:26.820000px;}
.x50{left:28.800000px;}
.x37{left:30.150000px;}
.x58{left:32.310000px;}
.x3c{left:33.480000px;}
.x57{left:35.460000px;}
.x44{left:37.530000px;}
.x5a{left:38.880000px;}
.x46{left:41.040000px;}
.x4{left:43.110000px;}
.xa{left:45.000000px;}
.x3{left:46.440000px;}
.x3d{left:49.170000px;}
.x34{left:58.620000px;}
.x42{left:65.340000px;}
.x4c{left:68.580000px;}
.x49{left:72.810000px;}
.x5e{left:74.070000px;}
.x1{left:76.500000px;}
.x5c{left:82.170000px;}
.x56{left:83.460000px;}
.x14{left:85.049986px;}
.x10{left:93.059986px;}
.x6a{left:95.489986px;}
.x2b{left:97.920000px;}
.x47{left:112.770000px;}
.x4b{left:115.380000px;}
.x12{left:132.569986px;}
.x54{left:139.590000px;}
.x6{left:148.680000px;}
.x5{left:162.930000px;}
.x48{left:165.359986px;}
.x52{left:172.290000px;}
.x2a{left:173.459986px;}
.x51{left:182.099986px;}
.x5b{left:195.779986px;}
.xd{left:204.149986px;}
.x40{left:208.829986px;}
.x2d{left:225.660000px;}
.x41{left:231.060000px;}
.x26{left:234.119986px;}
.x27{left:236.099986px;}
.x2e{left:239.700000px;}
.x5d{left:241.410000px;}
.x72{left:264.719986px;}
.x36{left:300.000000px;}
.x13{left:348.869986px;}
.x74{left:352.829986px;}
.x19{left:354.539986px;}
.x1a{left:355.709986px;}
.x21{left:362.459986px;}
.x1b{left:366.959986px;}
.x1c{left:371.999986px;}
.x2f{left:374.520000px;}
.x73{left:376.589986px;}
.x25{left:377.759986px;}
.x71{left:392.429986px;}
.x68{left:395.129986px;}
.x69{left:396.479986px;}
.x22{left:397.739986px;}
.x75{left:409.619986px;}
.x11{left:419.429986px;}
.x38{left:448.890000px;}
.x70{left:451.589986px;}
.xc{left:455.369986px;}
.x6b{left:456.809986px;}
.xf{left:459.149986px;}
.x28{left:468.149986px;}
.x29{left:469.319986px;}
.x6c{left:476.429986px;}
.x6d{left:477.869986px;}
.x43{left:485.880000px;}
.x53{left:489.570000px;}
.x31{left:523.320000px;}
.x6e{left:541.139986px;}
.x6f{left:543.029986px;}
.x4a{left:550.860000px;}
.x66{left:553.919986px;}
.x67{left:555.809986px;}
.x15{left:564.449986px;}
.x16{left:565.979986px;}
.x45{left:581.550000px;}
.x39{left:597.750000px;}
.x1d{left:623.939986px;}
.x4e{left:625.470000px;}
.x1e{left:628.979986px;}
.x2{left:632.760000px;}
.x55{left:649.050000px;}
.x33{left:672.180000px;}
.x61{left:677.310000px;}
.x4d{left:699.990000px;}
.xe{left:726.209986px;}
.x5f{left:730.440000px;}
.x59{left:734.400000px;}
.x3a{left:746.640000px;}
.x9{left:751.590000px;}
.x23{left:771.209986px;}
.x24{left:772.739986px;}
.x4f{left:774.270000px;}
.x63{left:783.720000px;}
.x17{left:806.039986px;}
.x18{left:807.569986px;}
.x3f{left:811.079986px;}
.x1f{left:813.239986px;}
.x20{left:818.279986px;}
.xb{left:833.039986px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls7{letter-spacing:4.365440pt;}
.lsd{letter-spacing:7.360000pt;}
.ls16{letter-spacing:8.640000pt;}
.ls8{letter-spacing:9.805440pt;}
.ls6{letter-spacing:15.245440pt;}
.ls0{letter-spacing:55.920000pt;}
.ws6{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.680000pt;}
.ws10{word-spacing:-13.520000pt;}
.ws0{word-spacing:-13.312640pt;}
.ws1{word-spacing:-13.200000pt;}
.wsd{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.984000pt;}
.wsc{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.888000pt;}
.wsb{word-spacing:-11.872000pt;}
.ws7{word-spacing:-10.640000pt;}
.ws2{word-spacing:-10.480000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-8.404053pt;}
._12{margin-left:-4.501333pt;}
._9{margin-left:-3.392000pt;}
._7{margin-left:-2.048000pt;}
._0{margin-left:-0.908480pt;}
._1{width:0.894720pt;}
._3{width:1.984000pt;}
._4{width:3.072000pt;}
._e{width:3.968000pt;}
._8{width:4.864000pt;}
._b{width:6.592000pt;}
._c{width:7.488000pt;}
._13{width:8.512000pt;}
._6{width:10.240000pt;}
._5{width:11.264000pt;}
._15{width:12.202667pt;}
._16{width:13.184000pt;}
._17{width:14.186667pt;}
._21{width:15.097707pt;}
._d{width:17.130667pt;}
._14{width:18.410667pt;}
._f{width:19.328000pt;}
._1a{width:20.544000pt;}
._1d{width:21.440000pt;}
._a{width:22.784000pt;}
._1b{width:23.680000pt;}
._1c{width:24.982613pt;}
._22{width:26.068053pt;}
._18{width:27.136000pt;}
._19{width:28.608000pt;}
._20{width:30.080000pt;}
._1f{width:30.976000pt;}
._26{width:32.022613pt;}
._11{width:33.280000pt;}
._10{width:34.282667pt;}
._2e{width:36.352000pt;}
._32{width:44.698240pt;}
._25{width:46.250667pt;}
._24{width:47.168000pt;}
._2a{width:49.280000pt;}
._29{width:50.410667pt;}
._2{width:56.314667pt;}
._2b{width:78.784000pt;}
._27{width:85.888000pt;}
._28{width:86.869333pt;}
._2f{width:99.072000pt;}
._2d{width:192.896000pt;}
._31{width:201.706667pt;}
._30{width:202.666667pt;}
._23{width:395.008000pt;}
._2c{width:906.218667pt;}
.fs2{font-size:21.440000pt;}
.fs5{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs6{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.040000pt;}
.ya{bottom:5.040000pt;}
.y7{bottom:7.040000pt;}
.y66{bottom:9.520000pt;}
.y76{bottom:9.600000pt;}
.y69{bottom:9.760000pt;}
.y6b{bottom:9.840000pt;}
.y87{bottom:9.866667pt;}
.ya4{bottom:20.240000pt;}
.y9{bottom:20.400000pt;}
.y5{bottom:22.320000pt;}
.y6{bottom:29.360000pt;}
.ya3{bottom:30.560000pt;}
.y64{bottom:30.906667pt;}
.y80{bottom:30.960000pt;}
.y8{bottom:35.680000pt;}
.y4{bottom:37.680000pt;}
.yd{bottom:53.760000pt;}
.yc{bottom:86.880000pt;}
.y50{bottom:114.000000pt;}
.yb3{bottom:117.200000pt;}
.y2a{bottom:127.600000pt;}
.y99{bottom:136.480000pt;}
.y7c{bottom:140.080000pt;}
.y47{bottom:141.600000pt;}
.yb2{bottom:144.720000pt;}
.y98{bottom:151.840000pt;}
.y29{bottom:155.360000pt;}
.y7b{bottom:155.440000pt;}
.y4e{bottom:159.920000pt;}
.yb4{bottom:164.000000pt;}
.y46{bottom:169.120000pt;}
.yb1{bottom:172.320000pt;}
.y97{bottom:173.200000pt;}
.y7a{bottom:176.880000pt;}
.y28{bottom:182.960000pt;}
.y4d{bottom:187.520000pt;}
.y96{bottom:194.560000pt;}
.yb8{bottom:196.560000pt;}
.y45{bottom:196.720000pt;}
.y79{bottom:198.240000pt;}
.yb0{bottom:199.920000pt;}
.y27{bottom:210.560000pt;}
.y4c{bottom:215.120000pt;}
.y95{bottom:215.920000pt;}
.y78{bottom:219.600000pt;}
.y44{bottom:224.320000pt;}
.yaf{bottom:227.520000pt;}
.y94{bottom:237.306667pt;}
.y26{bottom:238.186667pt;}
.y77{bottom:240.986667pt;}
.y4b{bottom:242.746667pt;}
.y43{bottom:251.946667pt;}
.yae{bottom:255.146667pt;}
.y91{bottom:258.666667pt;}
.y75{bottom:262.346667pt;}
.y25{bottom:265.786667pt;}
.y4a{bottom:270.346667pt;}
.y42{bottom:279.386667pt;}
.y4f{bottom:279.546667pt;}
.y93{bottom:280.026667pt;}
.yad{bottom:282.746667pt;}
.y74{bottom:295.386667pt;}
.y49{bottom:297.946667pt;}
.y24{bottom:299.386667pt;}
.y92{bottom:301.466667pt;}
.y41{bottom:307.146667pt;}
.yac{bottom:310.346667pt;}
.y23{bottom:320.986667pt;}
.y73{bottom:321.866667pt;}
.y61{bottom:325.546667pt;}
.y48{bottom:329.626667pt;}
.y90{bottom:334.506667pt;}
.y40{bottom:334.746667pt;}
.yab{bottom:337.946667pt;}
.y72{bottom:349.466667pt;}
.y60{bottom:353.146667pt;}
.y22{bottom:354.586667pt;}
.y8f{bottom:360.986667pt;}
.y3f{bottom:362.346667pt;}
.yaa{bottom:365.546667pt;}
.y21{bottom:376.186667pt;}
.y71{bottom:377.066667pt;}
.y5f{bottom:380.746667pt;}
.y8e{bottom:388.586667pt;}
.y3e{bottom:389.946667pt;}
.ya9{bottom:393.146667pt;}
.y70{bottom:404.666667pt;}
.y5e{bottom:408.346667pt;}
.y20{bottom:409.786667pt;}
.y8d{bottom:416.186667pt;}
.yb7{bottom:417.386667pt;}
.y3d{bottom:417.546667pt;}
.ya8{bottom:420.746667pt;}
.y1f{bottom:431.386667pt;}
.y6f{bottom:432.266667pt;}
.y5d{bottom:435.946667pt;}
.y8c{bottom:443.786667pt;}
.y3c{bottom:445.146667pt;}
.y6e{bottom:447.626667pt;}
.ya7{bottom:448.346667pt;}
.y1e{bottom:458.986667pt;}
.y5c{bottom:463.546667pt;}
.y6d{bottom:468.986667pt;}
.y8b{bottom:471.386667pt;}
.y3b{bottom:472.746667pt;}
.ya6{bottom:475.946667pt;}
.y6c{bottom:490.346667pt;}
.y5b{bottom:491.146667pt;}
.y1d{bottom:492.586667pt;}
.y8a{bottom:498.986667pt;}
.yb6{bottom:500.186667pt;}
.y3a{bottom:500.346667pt;}
.ya5{bottom:503.546667pt;}
.y6a{bottom:511.706667pt;}
.y1c{bottom:514.186667pt;}
.y5a{bottom:518.746667pt;}
.ya2{bottom:518.906667pt;}
.y89{bottom:526.586667pt;}
.y39{bottom:527.946667pt;}
.y68{bottom:533.146667pt;}
.y88{bottom:541.946667pt;}
.y59{bottom:546.346667pt;}
.y1b{bottom:547.786667pt;}
.y63{bottom:554.506667pt;}
.y38{bottom:555.546667pt;}
.ya1{bottom:560.986667pt;}
.y86{bottom:563.306667pt;}
.y1a{bottom:569.413333pt;}
.y58{bottom:573.973333pt;}
.y67{bottom:575.893333pt;}
.ya0{bottom:582.373333pt;}
.y37{bottom:583.173333pt;}
.y85{bottom:584.693333pt;}
.y19{bottom:597.013333pt;}
.y65{bottom:597.253333pt;}
.y57{bottom:601.573333pt;}
.y9f{bottom:603.733333pt;}
.yb5{bottom:605.653333pt;}
.y84{bottom:606.053333pt;}
.y36{bottom:610.773333pt;}
.y18{bottom:624.533333pt;}
.y9e{bottom:625.093333pt;}
.y83{bottom:627.413333pt;}
.y56{bottom:629.173333pt;}
.y62{bottom:630.293333pt;}
.y35{bottom:638.373333pt;}
.y9b{bottom:646.453333pt;}
.y7f{bottom:648.773333pt;}
.y17{bottom:652.133333pt;}
.y55{bottom:656.773333pt;}
.y34{bottom:665.973333pt;}
.y9d{bottom:667.893333pt;}
.y82{bottom:670.133333pt;}
.y16{bottom:679.733333pt;}
.y54{bottom:684.373333pt;}
.y9c{bottom:689.253333pt;}
.y81{bottom:691.493333pt;}
.y33{bottom:693.573333pt;}
.y15{bottom:707.333333pt;}
.y53{bottom:711.973333pt;}
.y32{bottom:721.173333pt;}
.y9a{bottom:722.293333pt;}
.y7e{bottom:724.613333pt;}
.y14{bottom:734.933333pt;}
.y52{bottom:739.573333pt;}
.y31{bottom:748.773333pt;}
.y7d{bottom:749.813333pt;}
.y13{bottom:764.453333pt;}
.y51{bottom:771.253333pt;}
.y30{bottom:776.373333pt;}
.y12{bottom:796.613333pt;}
.y2f{bottom:803.973333pt;}
.y11{bottom:828.853333pt;}
.y2e{bottom:831.573333pt;}
.y2d{bottom:859.173333pt;}
.y10{bottom:861.013333pt;}
.y2c{bottom:886.773333pt;}
.yf{bottom:891.333333pt;}
.y2b{bottom:914.400000pt;}
.ye{bottom:916.720000pt;}
.yb{bottom:929.120000pt;}
.y3{bottom:953.120000pt;}
.y1{bottom:1003.040000pt;}
.h2{height:15.280000pt;}
.h12{height:20.640000pt;}
.h13{height:20.666667pt;}
.h15{height:20.720000pt;}
.h17{height:20.746667pt;}
.h6{height:21.324844pt;}
.h18{height:41.440000pt;}
.hb{height:41.770312pt;}
.h14{height:47.109375pt;}
.h11{height:48.375000pt;}
.h4{height:49.920000pt;}
.h3{height:52.448437pt;}
.he{height:57.375000pt;}
.h7{height:58.245469pt;}
.hf{height:59.017500pt;}
.h8{height:62.812500pt;}
.h10{height:63.386667pt;}
.h16{height:63.440000pt;}
.hc{height:64.500000pt;}
.ha{height:65.770312pt;}
.h5{height:68.893440pt;}
.h9{height:75.142500pt;}
.hd{height:86.107500pt;}
.h1{height:1056.000000pt;}
.h0{height:1056.160000pt;}
.w2b{width:46.480000pt;}
.w28{width:46.560000pt;}
.w29{width:46.586667pt;}
.w2a{width:46.640000pt;}
.w1b{width:63.280000pt;}
.w20{width:65.360000pt;}
.w1a{width:65.386667pt;}
.we{width:65.440000pt;}
.w10{width:65.466667pt;}
.wf{width:65.520000pt;}
.w11{width:65.546667pt;}
.w19{width:65.600000pt;}
.w21{width:75.040000pt;}
.w22{width:75.226667pt;}
.w4{width:76.826667pt;}
.w7{width:80.080000pt;}
.w13{width:84.400000pt;}
.w23{width:87.120000pt;}
.w26{width:93.786667pt;}
.w27{width:93.840000pt;}
.w14{width:93.920000pt;}
.w6{width:105.626667pt;}
.w9{width:112.826667pt;}
.w18{width:129.306667pt;}
.wb{width:131.600000pt;}
.wc{width:131.626667pt;}
.wd{width:131.680000pt;}
.w17{width:131.920000pt;}
.w1e{width:141.040000pt;}
.w1f{width:162.986667pt;}
.w3{width:185.706667pt;}
.w25{width:188.266667pt;}
.w12{width:225.866667pt;}
.w16{width:261.866667pt;}
.w1d{width:304.746667pt;}
.w1c{width:358.293333pt;}
.w5{width:417.626667pt;}
.w15{width:424.293333pt;}
.w24{width:481.173333pt;}
.w2{width:494.453333pt;}
.wa{width:528.533333pt;}
.w1{width:816.000000pt;}
.w8{width:816.159988pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x3b{left:6.880000pt;}
.x64{left:9.760000pt;}
.x2c{left:10.720000pt;}
.x8{left:11.840000pt;}
.x65{left:12.800000pt;}
.x60{left:14.400000pt;}
.x3e{left:16.240000pt;}
.x62{left:17.280000pt;}
.x30{left:18.960000pt;}
.x32{left:20.960000pt;}
.x7{left:22.320000pt;}
.x35{left:23.840000pt;}
.x50{left:25.600000pt;}
.x37{left:26.800000pt;}
.x58{left:28.720000pt;}
.x3c{left:29.760000pt;}
.x57{left:31.520000pt;}
.x44{left:33.360000pt;}
.x5a{left:34.560000pt;}
.x46{left:36.480000pt;}
.x4{left:38.320000pt;}
.xa{left:40.000000pt;}
.x3{left:41.280000pt;}
.x3d{left:43.706667pt;}
.x34{left:52.106667pt;}
.x42{left:58.080000pt;}
.x4c{left:60.960000pt;}
.x49{left:64.720000pt;}
.x5e{left:65.840000pt;}
.x1{left:68.000000pt;}
.x5c{left:73.040000pt;}
.x56{left:74.186667pt;}
.x14{left:75.599988pt;}
.x10{left:82.719988pt;}
.x6a{left:84.879988pt;}
.x2b{left:87.040000pt;}
.x47{left:100.240000pt;}
.x4b{left:102.560000pt;}
.x12{left:117.839988pt;}
.x54{left:124.080000pt;}
.x6{left:132.160000pt;}
.x5{left:144.826667pt;}
.x48{left:146.986655pt;}
.x52{left:153.146667pt;}
.x2a{left:154.186655pt;}
.x51{left:161.866655pt;}
.x5b{left:174.026655pt;}
.xd{left:181.466655pt;}
.x40{left:185.626655pt;}
.x2d{left:200.586667pt;}
.x41{left:205.386667pt;}
.x26{left:208.106655pt;}
.x27{left:209.866655pt;}
.x2e{left:213.066667pt;}
.x5d{left:214.586667pt;}
.x72{left:235.306655pt;}
.x36{left:266.666667pt;}
.x13{left:310.106655pt;}
.x74{left:313.626655pt;}
.x19{left:315.146655pt;}
.x1a{left:316.186655pt;}
.x21{left:322.186655pt;}
.x1b{left:326.186655pt;}
.x1c{left:330.666655pt;}
.x2f{left:332.906667pt;}
.x73{left:334.746655pt;}
.x25{left:335.786655pt;}
.x71{left:348.826655pt;}
.x68{left:351.226655pt;}
.x69{left:352.426655pt;}
.x22{left:353.546655pt;}
.x75{left:364.106655pt;}
.x11{left:372.826655pt;}
.x38{left:399.013333pt;}
.x70{left:401.413321pt;}
.xc{left:404.773321pt;}
.x6b{left:406.053321pt;}
.xf{left:408.133321pt;}
.x28{left:416.133321pt;}
.x29{left:417.173321pt;}
.x6c{left:423.493321pt;}
.x6d{left:424.773321pt;}
.x43{left:431.893333pt;}
.x53{left:435.173333pt;}
.x31{left:465.173333pt;}
.x6e{left:481.013321pt;}
.x6f{left:482.693321pt;}
.x4a{left:489.653333pt;}
.x66{left:492.373321pt;}
.x67{left:494.053321pt;}
.x15{left:501.733321pt;}
.x16{left:503.093321pt;}
.x45{left:516.933333pt;}
.x39{left:531.333333pt;}
.x1d{left:554.613321pt;}
.x4e{left:555.973333pt;}
.x1e{left:559.093321pt;}
.x2{left:562.453333pt;}
.x55{left:576.933333pt;}
.x33{left:597.493333pt;}
.x61{left:602.053333pt;}
.x4d{left:622.213333pt;}
.xe{left:645.519988pt;}
.x5f{left:649.280000pt;}
.x59{left:652.800000pt;}
.x3a{left:663.680000pt;}
.x9{left:668.080000pt;}
.x23{left:685.519988pt;}
.x24{left:686.879988pt;}
.x4f{left:688.240000pt;}
.x63{left:696.640000pt;}
.x17{left:716.479988pt;}
.x18{left:717.839988pt;}
.x3f{left:720.959988pt;}
.x1f{left:722.879988pt;}
.x20{left:727.359988pt;}
.xb{left:740.479988pt;}
}




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