
    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_70f7ac1d560db702df61a9bb.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_e142ec99bfbd1c95100829f1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_570413f35df6bcb2ed8b9bda.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d3c8f47f85a9051ac51969b.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_8a3434071ddcb0c2c9fc8cc4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5a91044667ff874cd922feeb.woff2')format("woff");}.ff6{font-family:ff6;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);}
.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:-68.400000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.v7{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls11{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.594000px;}
.ls1e{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.220800px;}
.ls17{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.027360px;}
.lsb{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.234000px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls6{letter-spacing:2.340000px;}
.ls7{letter-spacing:3.060000px;}
.ls5{letter-spacing:21.060000px;}
.ls1c{letter-spacing:22.572000px;}
.ls1b{letter-spacing:49.932000px;}
.ls8{letter-spacing:52.560000px;}
.lsa{letter-spacing:55.620000px;}
.ls2{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls12{letter-spacing:473.340000px;}
.ls19{letter-spacing:589.260000px;}
.ls14{letter-spacing:1233.840000px;}
.ls9{letter-spacing:1367.040000px;}
.ls1a{letter-spacing:1411.080000px;}
.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:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.734000px;}
.wse{word-spacing:-13.716000px;}
.ws10{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.248000px;}
.ws8{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.906000px;}
.ws6{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.584240px;}
._11{width:2.586000px;}
._5{width:3.593760px;}
._9{width:4.752000px;}
._8{width:5.940000px;}
._d{width:7.128000px;}
._10{width:8.164560px;}
._a{width:9.288000px;}
._b{width:10.445280px;}
._c{width:11.718000px;}
._e{width:14.706000px;}
._f{width:16.014000px;}
._6{width:20.628000px;}
._7{width:22.158000px;}
._13{width:622.578000px;}
._12{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y82{bottom:2.880000px;}
.y84{bottom:3.240000px;}
.y87{bottom:3.420000px;}
.ye3{bottom:6.045000px;}
.ye1{bottom:6.090000px;}
.y81{bottom:18.360000px;}
.y2{bottom:57.996000px;}
.y1{bottom:76.896000px;}
.ydf{bottom:100.836000px;}
.yc2{bottom:102.636000px;}
.ya1{bottom:105.876000px;}
.y7d{bottom:109.116000px;}
.y3a{bottom:109.836000px;}
.yde{bottom:116.316000px;}
.ya0{bottom:118.296000px;}
.yc1{bottom:118.656000px;}
.y7c{bottom:124.596000px;}
.y39{bottom:125.316000px;}
.yc0{bottom:131.076000px;}
.ydd{bottom:131.796000px;}
.y7b{bottom:140.256000px;}
.y38{bottom:140.976000px;}
.ydc{bottom:147.456000px;}
.y7a{bottom:153.030000px;}
.y37{bottom:156.450000px;}
.ydb{bottom:162.750000px;}
.y36{bottom:171.930000px;}
.yda{bottom:178.230000px;}
.y35{bottom:187.410000px;}
.yd9{bottom:193.890000px;}
.y34{bottom:203.070000px;}
.yd8{bottom:209.910000px;}
.y33{bottom:218.550000px;}
.yd7{bottom:222.150000px;}
.y79{bottom:226.110000px;}
.y32{bottom:234.210000px;}
.y78{bottom:241.590000px;}
.y10f{bottom:246.810000px;}
.y31{bottom:249.690000px;}
.y77{bottom:257.070000px;}
.y10e{bottom:262.290000px;}
.y30{bottom:265.170000px;}
.y76{bottom:272.550000px;}
.y10d{bottom:277.770000px;}
.y2f{bottom:280.650000px;}
.y75{bottom:288.255000px;}
.y10c{bottom:293.475000px;}
.y2e{bottom:296.355000px;}
.y74{bottom:303.735000px;}
.y10b{bottom:308.955000px;}
.y2d{bottom:311.835000px;}
.y73{bottom:319.035000px;}
.y9f{bottom:319.575000px;}
.y10a{bottom:324.435000px;}
.y2c{bottom:327.315000px;}
.y72{bottom:334.515000px;}
.y9e{bottom:335.055000px;}
.y109{bottom:339.915000px;}
.y2b{bottom:342.795000px;}
.y71{bottom:350.175000px;}
.y9d{bottom:350.535000px;}
.y108{bottom:355.575000px;}
.y2a{bottom:358.455000px;}
.y70{bottom:366.015000px;}
.y9c{bottom:366.195000px;}
.y107{bottom:371.055000px;}
.y29{bottom:373.935000px;}
.y6f{bottom:381.675000px;}
.y106{bottom:386.535000px;}
.y28{bottom:389.415000px;}
.y6e{bottom:397.155000px;}
.y9b{bottom:397.335000px;}
.y105{bottom:402.015000px;}
.y27{bottom:405.075000px;}
.y9a{bottom:409.755000px;}
.y6d{bottom:412.455000px;}
.y104{bottom:417.675000px;}
.y26{bottom:420.555000px;}
.y6c{bottom:428.115000px;}
.y103{bottom:433.155000px;}
.y25{bottom:436.035000px;}
.y6b{bottom:443.955000px;}
.y102{bottom:448.635000px;}
.yd6{bottom:454.755000px;}
.y6a{bottom:459.255000px;}
.y101{bottom:464.115000px;}
.ybf{bottom:465.555000px;}
.y24{bottom:466.995000px;}
.yd5{bottom:470.595000px;}
.y69{bottom:475.275000px;}
.y100{bottom:479.775000px;}
.ybe{bottom:481.035000px;}
.yd4{bottom:486.075000px;}
.y68{bottom:490.755000px;}
.yff{bottom:494.895000px;}
.ybd{bottom:496.695000px;}
.y23{bottom:497.955000px;}
.yd3{bottom:501.555000px;}
.y67{bottom:506.235000px;}
.yfe{bottom:510.555000px;}
.ybc{bottom:512.175000px;}
.y22{bottom:516.135000px;}
.yd2{bottom:517.215000px;}
.y66{bottom:521.895000px;}
.yfd{bottom:526.215000px;}
.ybb{bottom:527.835000px;}
.yd1{bottom:532.875000px;}
.y65{bottom:537.375000px;}
.yfc{bottom:542.055000px;}
.yba{bottom:543.315000px;}
.y21{bottom:545.115000px;}
.yd0{bottom:547.995000px;}
.y64{bottom:552.855000px;}
.yfb{bottom:557.535000px;}
.yb9{bottom:558.795000px;}
.y20{bottom:563.295000px;}
.ycf{bottom:563.655000px;}
.y63{bottom:568.545000px;}
.yfa{bottom:572.865000px;}
.yb8{bottom:574.305000px;}
.y1f{bottom:578.985000px;}
.y99{bottom:579.705000px;}
.y62{bottom:584.025000px;}
.yb7{bottom:589.965000px;}
.yce{bottom:591.945000px;}
.y1e{bottom:594.465000px;}
.y98{bottom:595.185000px;}
.y61{bottom:599.505000px;}
.yf9{bottom:604.365000px;}
.yb6{bottom:605.445000px;}
.y1d{bottom:609.945000px;}
.y97{bottom:610.665000px;}
.y60{bottom:615.165000px;}
.yf8{bottom:619.845000px;}
.yb5{bottom:620.925000px;}
.y1c{bottom:625.425000px;}
.y96{bottom:626.325000px;}
.y5f{bottom:630.645000px;}
.yf7{bottom:635.325000px;}
.yb4{bottom:636.405000px;}
.y1b{bottom:641.085000px;}
.y95{bottom:641.625000px;}
.y5e{bottom:646.305000px;}
.yf6{bottom:650.985000px;}
.yb3{bottom:652.065000px;}
.y1a{bottom:656.565000px;}
.y94{bottom:657.105000px;}
.y5d{bottom:661.785000px;}
.yf5{bottom:666.465000px;}
.yb2{bottom:667.545000px;}
.y19{bottom:672.045000px;}
.y93{bottom:673.125000px;}
.y5c{bottom:677.265000px;}
.yf4{bottom:681.945000px;}
.yb1{bottom:683.025000px;}
.y18{bottom:687.705000px;}
.y92{bottom:688.605000px;}
.y5b{bottom:692.925000px;}
.yf3{bottom:697.425000px;}
.yb0{bottom:698.505000px;}
.y91{bottom:704.085000px;}
.ye2{bottom:707.400000px;}
.y5a{bottom:708.405000px;}
.y17{bottom:709.845000px;}
.yf2{bottom:713.085000px;}
.yaf{bottom:714.165000px;}
.y90{bottom:719.745000px;}
.y59{bottom:723.885000px;}
.yf1{bottom:728.385000px;}
.yae{bottom:729.465000px;}
.y8f{bottom:735.225000px;}
.y16{bottom:736.485000px;}
.y58{bottom:739.365000px;}
.yad{bottom:744.945000px;}
.y8e{bottom:750.885000px;}
.y15{bottom:752.145000px;}
.y57{bottom:755.025000px;}
.ycd{bottom:758.085000px;}
.yf0{bottom:759.885000px;}
.yac{bottom:760.605000px;}
.y8d{bottom:766.185000px;}
.y14{bottom:767.625000px;}
.y56{bottom:770.505000px;}
.yef{bottom:775.365000px;}
.y8c{bottom:781.665000px;}
.y55{bottom:786.165000px;}
.yee{bottom:791.025000px;}
.yab{bottom:792.105000px;}
.y8b{bottom:797.685000px;}
.y54{bottom:801.645000px;}
.yed{bottom:806.685000px;}
.yaa{bottom:807.585000px;}
.y13{bottom:808.305000px;}
.y8a{bottom:809.925000px;}
.y53{bottom:817.125000px;}
.yec{bottom:819.645000px;}
.ya9{bottom:823.245000px;}
.y52{bottom:832.605000px;}
.ya8{bottom:838.545000px;}
.y12{bottom:839.265000px;}
.y51{bottom:848.130000px;}
.ya7{bottom:854.070000px;}
.yeb{bottom:859.110000px;}
.y11{bottom:860.730000px;}
.y50{bottom:863.790000px;}
.y10{bottom:867.930000px;}
.ya6{bottom:869.730000px;}
.yea{bottom:878.910000px;}
.y4f{bottom:879.270000px;}
.ya5{bottom:885.750000px;}
.yf{bottom:893.310000px;}
.y4e{bottom:894.930000px;}
.ya4{bottom:898.170000px;}
.ye9{bottom:898.530000px;}
.ye0{bottom:898.560000px;}
.y4d{bottom:910.410000px;}
.ye8{bottom:918.330000px;}
.y4c{bottom:925.890000px;}
.ye{bottom:932.370000px;}
.y4b{bottom:941.370000px;}
.yd{bottom:956.670000px;}
.ye7{bottom:956.850000px;}
.y4a{bottom:957.030000px;}
.ycc{bottom:972.330000px;}
.y49{bottom:972.510000px;}
.ycb{bottom:987.810000px;}
.ye6{bottom:987.990000px;}
.y48{bottom:988.170000px;}
.yca{bottom:1003.290000px;}
.ye5{bottom:1003.470000px;}
.y47{bottom:1003.650000px;}
.y89{bottom:1007.790000px;}
.yc{bottom:1016.070000px;}
.yc9{bottom:1018.770000px;}
.ye4{bottom:1018.950000px;}
.y46{bottom:1019.130000px;}
.y88{bottom:1023.270000px;}
.y9{bottom:1034.070000px;}
.yc8{bottom:1034.430000px;}
.y45{bottom:1034.610000px;}
.y86{bottom:1036.230000px;}
.yb{bottom:1039.290000px;}
.yc7{bottom:1049.910000px;}
.y44{bottom:1050.090000px;}
.y85{bottom:1055.130000px;}
.y8{bottom:1057.290000px;}
.yc6{bottom:1065.390000px;}
.ya3{bottom:1065.570000px;}
.y43{bottom:1065.750000px;}
.ya{bottom:1071.330000px;}
.y83{bottom:1073.850000px;}
.yc5{bottom:1081.050000px;}
.y42{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y80{bottom:1092.570000px;}
.yc4{bottom:1096.530000px;}
.y41{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y40{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.yc3{bottom:1127.310000px;}
.ya2{bottom:1127.670000px;}
.y3f{bottom:1127.850000px;}
.y4{bottom:1140.300000px;}
.y7f{bottom:1143.000000px;}
.y3e{bottom:1143.360000px;}
.y3{bottom:1158.300000px;}
.y7e{bottom:1158.660000px;}
.y3d{bottom:1158.840000px;}
.y3c{bottom:1175.220000px;}
.y3b{bottom:1193.760000px;}
.hc{height:12.335625px;}
.h15{height:17.985000px;}
.h18{height:18.885000px;}
.h1b{height:18.900000px;}
.h19{height:19.065000px;}
.h1a{height:19.102500px;}
.h17{height:21.420000px;}
.h14{height:30.945000px;}
.hd{height:35.314453px;}
.h11{height:38.158594px;}
.h12{height:47.344922px;}
.h7{height:48.616875px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.hf{height:54.421875px;}
.h1c{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h16{height:59.092031px;}
.h4{height:60.226875px;}
.h10{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.hb{height:72.326250px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:42.480000px;}
.w7{width:42.660000px;}
.w4{width:111.765000px;}
.w5{width:111.981000px;}
.w6{width:111.990000px;}
.w3{width:111.996000px;}
.w2{width:143.841000px;}
.wc{width:145.290000px;}
.wa{width:145.476000px;}
.w9{width:146.001000px;}
.wb{width:146.361000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x31{left:7.725000px;}
.x2e{left:10.830000px;}
.x1c{left:18.705000px;}
.x14{left:22.680000px;}
.x1d{left:25.905000px;}
.x1e{left:27.705000px;}
.x2{left:30.060000px;}
.x19{left:32.400000px;}
.x12{left:35.805000px;}
.x11{left:38.505000px;}
.x15{left:39.600000px;}
.x17{left:40.710000px;}
.x1f{left:45.900000px;}
.x8{left:47.700000px;}
.xd{left:50.400000px;}
.x1b{left:52.740000px;}
.x1a{left:54.525000px;}
.x36{left:101.376000px;}
.x2c{left:108.576000px;}
.x28{left:124.416000px;}
.x10{left:156.645000px;}
.x30{left:160.965000px;}
.x2f{left:186.660000px;}
.x2d{left:195.300000px;}
.x26{left:224.130000px;}
.x21{left:226.290000px;}
.x5{left:244.155000px;}
.x3{left:270.255000px;}
.x24{left:276.195000px;}
.xa{left:284.475000px;}
.x4{left:290.595000px;}
.x13{left:300.855000px;}
.x9{left:306.435000px;}
.xe{left:355.755000px;}
.xc{left:412.485000px;}
.x35{left:430.845000px;}
.x1{left:440.745000px;}
.xb{left:449.205000px;}
.x32{left:453.180000px;}
.x34{left:476.205000px;}
.x6{left:478.905000px;}
.x7{left:506.445000px;}
.x16{left:525.360000px;}
.x20{left:542.445000px;}
.x33{left:599.910000px;}
.xf{left:625.830000px;}
.x18{left:637.710000px;}
.x25{left:684.330000px;}
.x22{left:685.950000px;}
.x27{left:698.370000px;}
.x23{left:721.440000px;}
.x2a{left:724.860000px;}
.x29{left:726.120000px;}
.x2b{left:730.440000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.v7{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.528000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls17{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.024320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.208000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls6{letter-spacing:2.080000pt;}
.ls7{letter-spacing:2.720000pt;}
.ls5{letter-spacing:18.720000pt;}
.ls1c{letter-spacing:20.064000pt;}
.ls1b{letter-spacing:44.384000pt;}
.ls8{letter-spacing:46.720000pt;}
.lsa{letter-spacing:49.440000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls12{letter-spacing:420.746667pt;}
.ls19{letter-spacing:523.786667pt;}
.ls14{letter-spacing:1096.746667pt;}
.ls9{letter-spacing:1215.146667pt;}
.ls1a{letter-spacing:1254.293333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.208000pt;}
.wse{word-spacing:-12.192000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.776000pt;}
.ws8{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.472000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.408213pt;}
._11{width:2.298667pt;}
._5{width:3.194453pt;}
._9{width:4.224000pt;}
._8{width:5.280000pt;}
._d{width:6.336000pt;}
._10{width:7.257387pt;}
._a{width:8.256000pt;}
._b{width:9.284693pt;}
._c{width:10.416000pt;}
._e{width:13.072000pt;}
._f{width:14.234667pt;}
._6{width:18.336000pt;}
._7{width:19.696000pt;}
._13{width:553.402667pt;}
._12{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:2.560000pt;}
.y84{bottom:2.880000pt;}
.y87{bottom:3.040000pt;}
.ye3{bottom:5.373333pt;}
.ye1{bottom:5.413333pt;}
.y81{bottom:16.320000pt;}
.y2{bottom:51.552000pt;}
.y1{bottom:68.352000pt;}
.ydf{bottom:89.632000pt;}
.yc2{bottom:91.232000pt;}
.ya1{bottom:94.112000pt;}
.y7d{bottom:96.992000pt;}
.y3a{bottom:97.632000pt;}
.yde{bottom:103.392000pt;}
.ya0{bottom:105.152000pt;}
.yc1{bottom:105.472000pt;}
.y7c{bottom:110.752000pt;}
.y39{bottom:111.392000pt;}
.yc0{bottom:116.512000pt;}
.ydd{bottom:117.152000pt;}
.y7b{bottom:124.672000pt;}
.y38{bottom:125.312000pt;}
.ydc{bottom:131.072000pt;}
.y7a{bottom:136.026667pt;}
.y37{bottom:139.066667pt;}
.ydb{bottom:144.666667pt;}
.y36{bottom:152.826667pt;}
.yda{bottom:158.426667pt;}
.y35{bottom:166.586667pt;}
.yd9{bottom:172.346667pt;}
.y34{bottom:180.506667pt;}
.yd8{bottom:186.586667pt;}
.y33{bottom:194.266667pt;}
.yd7{bottom:197.466667pt;}
.y79{bottom:200.986667pt;}
.y32{bottom:208.186667pt;}
.y78{bottom:214.746667pt;}
.y10f{bottom:219.386667pt;}
.y31{bottom:221.946667pt;}
.y77{bottom:228.506667pt;}
.y10e{bottom:233.146667pt;}
.y30{bottom:235.706667pt;}
.y76{bottom:242.266667pt;}
.y10d{bottom:246.906667pt;}
.y2f{bottom:249.466667pt;}
.y75{bottom:256.226667pt;}
.y10c{bottom:260.866667pt;}
.y2e{bottom:263.426667pt;}
.y74{bottom:269.986667pt;}
.y10b{bottom:274.626667pt;}
.y2d{bottom:277.186667pt;}
.y73{bottom:283.586667pt;}
.y9f{bottom:284.066667pt;}
.y10a{bottom:288.386667pt;}
.y2c{bottom:290.946667pt;}
.y72{bottom:297.346667pt;}
.y9e{bottom:297.826667pt;}
.y109{bottom:302.146667pt;}
.y2b{bottom:304.706667pt;}
.y71{bottom:311.266667pt;}
.y9d{bottom:311.586667pt;}
.y108{bottom:316.066667pt;}
.y2a{bottom:318.626667pt;}
.y70{bottom:325.346667pt;}
.y9c{bottom:325.506667pt;}
.y107{bottom:329.826667pt;}
.y29{bottom:332.386667pt;}
.y6f{bottom:339.266667pt;}
.y106{bottom:343.586667pt;}
.y28{bottom:346.146667pt;}
.y6e{bottom:353.026667pt;}
.y9b{bottom:353.186667pt;}
.y105{bottom:357.346667pt;}
.y27{bottom:360.066667pt;}
.y9a{bottom:364.226667pt;}
.y6d{bottom:366.626667pt;}
.y104{bottom:371.266667pt;}
.y26{bottom:373.826667pt;}
.y6c{bottom:380.546667pt;}
.y103{bottom:385.026667pt;}
.y25{bottom:387.586667pt;}
.y6b{bottom:394.626667pt;}
.y102{bottom:398.786667pt;}
.yd6{bottom:404.226667pt;}
.y6a{bottom:408.226667pt;}
.y101{bottom:412.546667pt;}
.ybf{bottom:413.826667pt;}
.y24{bottom:415.106667pt;}
.yd5{bottom:418.306667pt;}
.y69{bottom:422.466667pt;}
.y100{bottom:426.466667pt;}
.ybe{bottom:427.586667pt;}
.yd4{bottom:432.066667pt;}
.y68{bottom:436.226667pt;}
.yff{bottom:439.906667pt;}
.ybd{bottom:441.506667pt;}
.y23{bottom:442.626667pt;}
.yd3{bottom:445.826667pt;}
.y67{bottom:449.986667pt;}
.yfe{bottom:453.826667pt;}
.ybc{bottom:455.266667pt;}
.y22{bottom:458.786667pt;}
.yd2{bottom:459.746667pt;}
.y66{bottom:463.906667pt;}
.yfd{bottom:467.746667pt;}
.ybb{bottom:469.186667pt;}
.yd1{bottom:473.666667pt;}
.y65{bottom:477.666667pt;}
.yfc{bottom:481.826667pt;}
.yba{bottom:482.946667pt;}
.y21{bottom:484.546667pt;}
.yd0{bottom:487.106667pt;}
.y64{bottom:491.426667pt;}
.yfb{bottom:495.586667pt;}
.yb9{bottom:496.706667pt;}
.y20{bottom:500.706667pt;}
.ycf{bottom:501.026667pt;}
.y63{bottom:505.373333pt;}
.yfa{bottom:509.213333pt;}
.yb8{bottom:510.493333pt;}
.y1f{bottom:514.653333pt;}
.y99{bottom:515.293333pt;}
.y62{bottom:519.133333pt;}
.yb7{bottom:524.413333pt;}
.yce{bottom:526.173333pt;}
.y1e{bottom:528.413333pt;}
.y98{bottom:529.053333pt;}
.y61{bottom:532.893333pt;}
.yf9{bottom:537.213333pt;}
.yb6{bottom:538.173333pt;}
.y1d{bottom:542.173333pt;}
.y97{bottom:542.813333pt;}
.y60{bottom:546.813333pt;}
.yf8{bottom:550.973333pt;}
.yb5{bottom:551.933333pt;}
.y1c{bottom:555.933333pt;}
.y96{bottom:556.733333pt;}
.y5f{bottom:560.573333pt;}
.yf7{bottom:564.733333pt;}
.yb4{bottom:565.693333pt;}
.y1b{bottom:569.853333pt;}
.y95{bottom:570.333333pt;}
.y5e{bottom:574.493333pt;}
.yf6{bottom:578.653333pt;}
.yb3{bottom:579.613333pt;}
.y1a{bottom:583.613333pt;}
.y94{bottom:584.093333pt;}
.y5d{bottom:588.253333pt;}
.yf5{bottom:592.413333pt;}
.yb2{bottom:593.373333pt;}
.y19{bottom:597.373333pt;}
.y93{bottom:598.333333pt;}
.y5c{bottom:602.013333pt;}
.yf4{bottom:606.173333pt;}
.yb1{bottom:607.133333pt;}
.y18{bottom:611.293333pt;}
.y92{bottom:612.093333pt;}
.y5b{bottom:615.933333pt;}
.yf3{bottom:619.933333pt;}
.yb0{bottom:620.893333pt;}
.y91{bottom:625.853333pt;}
.ye2{bottom:628.800000pt;}
.y5a{bottom:629.693333pt;}
.y17{bottom:630.973333pt;}
.yf2{bottom:633.853333pt;}
.yaf{bottom:634.813333pt;}
.y90{bottom:639.773333pt;}
.y59{bottom:643.453333pt;}
.yf1{bottom:647.453333pt;}
.yae{bottom:648.413333pt;}
.y8f{bottom:653.533333pt;}
.y16{bottom:654.653333pt;}
.y58{bottom:657.213333pt;}
.yad{bottom:662.173333pt;}
.y8e{bottom:667.453333pt;}
.y15{bottom:668.573333pt;}
.y57{bottom:671.133333pt;}
.ycd{bottom:673.853333pt;}
.yf0{bottom:675.453333pt;}
.yac{bottom:676.093333pt;}
.y8d{bottom:681.053333pt;}
.y14{bottom:682.333333pt;}
.y56{bottom:684.893333pt;}
.yef{bottom:689.213333pt;}
.y8c{bottom:694.813333pt;}
.y55{bottom:698.813333pt;}
.yee{bottom:703.133333pt;}
.yab{bottom:704.093333pt;}
.y8b{bottom:709.053333pt;}
.y54{bottom:712.573333pt;}
.yed{bottom:717.053333pt;}
.yaa{bottom:717.853333pt;}
.y13{bottom:718.493333pt;}
.y8a{bottom:719.933333pt;}
.y53{bottom:726.333333pt;}
.yec{bottom:728.573333pt;}
.ya9{bottom:731.773333pt;}
.y52{bottom:740.093333pt;}
.ya8{bottom:745.373333pt;}
.y12{bottom:746.013333pt;}
.y51{bottom:753.893333pt;}
.ya7{bottom:759.173333pt;}
.yeb{bottom:763.653333pt;}
.y11{bottom:765.093333pt;}
.y50{bottom:767.813333pt;}
.y10{bottom:771.493333pt;}
.ya6{bottom:773.093333pt;}
.yea{bottom:781.253333pt;}
.y4f{bottom:781.573333pt;}
.ya5{bottom:787.333333pt;}
.yf{bottom:794.053333pt;}
.y4e{bottom:795.493333pt;}
.ya4{bottom:798.373333pt;}
.ye9{bottom:798.693333pt;}
.ye0{bottom:798.720000pt;}
.y4d{bottom:809.253333pt;}
.ye8{bottom:816.293333pt;}
.y4c{bottom:823.013333pt;}
.ye{bottom:828.773333pt;}
.y4b{bottom:836.773333pt;}
.yd{bottom:850.373333pt;}
.ye7{bottom:850.533333pt;}
.y4a{bottom:850.693333pt;}
.ycc{bottom:864.293333pt;}
.y49{bottom:864.453333pt;}
.ycb{bottom:878.053333pt;}
.ye6{bottom:878.213333pt;}
.y48{bottom:878.373333pt;}
.yca{bottom:891.813333pt;}
.ye5{bottom:891.973333pt;}
.y47{bottom:892.133333pt;}
.y89{bottom:895.813333pt;}
.yc{bottom:903.173333pt;}
.yc9{bottom:905.573333pt;}
.ye4{bottom:905.733333pt;}
.y46{bottom:905.893333pt;}
.y88{bottom:909.573333pt;}
.y9{bottom:919.173333pt;}
.yc8{bottom:919.493333pt;}
.y45{bottom:919.653333pt;}
.y86{bottom:921.093333pt;}
.yb{bottom:923.813333pt;}
.yc7{bottom:933.253333pt;}
.y44{bottom:933.413333pt;}
.y85{bottom:937.893333pt;}
.y8{bottom:939.813333pt;}
.yc6{bottom:947.013333pt;}
.ya3{bottom:947.173333pt;}
.y43{bottom:947.333333pt;}
.ya{bottom:952.293333pt;}
.y83{bottom:954.533333pt;}
.yc5{bottom:960.933333pt;}
.y42{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y80{bottom:971.173333pt;}
.yc4{bottom:974.693333pt;}
.y41{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y40{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.yc3{bottom:1002.053333pt;}
.ya2{bottom:1002.373333pt;}
.y3f{bottom:1002.533333pt;}
.y4{bottom:1013.600000pt;}
.y7f{bottom:1016.000000pt;}
.y3e{bottom:1016.320000pt;}
.y3{bottom:1029.600000pt;}
.y7e{bottom:1029.920000pt;}
.y3d{bottom:1030.080000pt;}
.y3c{bottom:1044.640000pt;}
.y3b{bottom:1061.120000pt;}
.hc{height:10.965000pt;}
.h15{height:15.986667pt;}
.h18{height:16.786667pt;}
.h1b{height:16.800000pt;}
.h19{height:16.946667pt;}
.h1a{height:16.980000pt;}
.h17{height:19.040000pt;}
.h14{height:27.506667pt;}
.hd{height:31.390625pt;}
.h11{height:33.918750pt;}
.h12{height:42.084375pt;}
.h7{height:43.215000pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.hf{height:48.375000pt;}
.h1c{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h16{height:52.526250pt;}
.h4{height:53.535000pt;}
.h10{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.hb{height:64.290000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:37.760000pt;}
.w7{width:37.920000pt;}
.w4{width:99.346667pt;}
.w5{width:99.538667pt;}
.w6{width:99.546667pt;}
.w3{width:99.552000pt;}
.w2{width:127.858667pt;}
.wc{width:129.146667pt;}
.wa{width:129.312000pt;}
.w9{width:129.778667pt;}
.wb{width:130.098667pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x31{left:6.866667pt;}
.x2e{left:9.626667pt;}
.x1c{left:16.626667pt;}
.x14{left:20.160000pt;}
.x1d{left:23.026667pt;}
.x1e{left:24.626667pt;}
.x2{left:26.720000pt;}
.x19{left:28.800000pt;}
.x12{left:31.826667pt;}
.x11{left:34.226667pt;}
.x15{left:35.200000pt;}
.x17{left:36.186667pt;}
.x1f{left:40.800000pt;}
.x8{left:42.400000pt;}
.xd{left:44.800000pt;}
.x1b{left:46.880000pt;}
.x1a{left:48.466667pt;}
.x36{left:90.112000pt;}
.x2c{left:96.512000pt;}
.x28{left:110.592000pt;}
.x10{left:139.240000pt;}
.x30{left:143.080000pt;}
.x2f{left:165.920000pt;}
.x2d{left:173.600000pt;}
.x26{left:199.226667pt;}
.x21{left:201.146667pt;}
.x5{left:217.026667pt;}
.x3{left:240.226667pt;}
.x24{left:245.506667pt;}
.xa{left:252.866667pt;}
.x4{left:258.306667pt;}
.x13{left:267.426667pt;}
.x9{left:272.386667pt;}
.xe{left:316.226667pt;}
.xc{left:366.653333pt;}
.x35{left:382.973333pt;}
.x1{left:391.773333pt;}
.xb{left:399.293333pt;}
.x32{left:402.826667pt;}
.x34{left:423.293333pt;}
.x6{left:425.693333pt;}
.x7{left:450.173333pt;}
.x16{left:466.986667pt;}
.x20{left:482.173333pt;}
.x33{left:533.253333pt;}
.xf{left:556.293333pt;}
.x18{left:566.853333pt;}
.x25{left:608.293333pt;}
.x22{left:609.733333pt;}
.x27{left:620.773333pt;}
.x23{left:641.280000pt;}
.x2a{left:644.320000pt;}
.x29{left:645.440000pt;}
.x2b{left:649.280000pt;}
}




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