
    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_880d3d590b4242d690f04418.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d5ecc094640d1633495adea6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_65885b6d50e83ff1ab16c059.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b8afee5f7d86503b3828ca78.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.960000px;}
.ls15{letter-spacing:-0.579600px;}
.ls3{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.414000px;}
.ls4{letter-spacing:-0.310800px;}
.ls16{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.228000px;}
.ls2{letter-spacing:-0.132600px;}
.ls1d{letter-spacing:-0.069600px;}
.lse{letter-spacing:-0.067200px;}
.lsb{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.058320px;}
.ls11{letter-spacing:-0.032400px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.010560px;}
.ls1{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.066000px;}
.ls1f{letter-spacing:0.140400px;}
.ls9{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.175200px;}
.ls24{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.190200px;}
.ls17{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.393600px;}
.ls1b{letter-spacing:0.468000px;}
.ls10{letter-spacing:0.479400px;}
.ls13{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.690000px;}
.ls1e{letter-spacing:0.744000px;}
.ls19{letter-spacing:0.816480px;}
.ls14{letter-spacing:1.026000px;}
.ls23{letter-spacing:12.186720px;}
.ls22{letter-spacing:42.426720px;}
.lsa{letter-spacing:91.530720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws11{word-spacing:-13.811760px;}
.ws10{word-spacing:-13.692360px;}
.wsd{word-spacing:-13.680960px;}
.ws7{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.473360px;}
.ws8{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.436160px;}
.ws13{word-spacing:-13.277760px;}
.wsf{word-spacing:-13.265160px;}
.wse{word-spacing:-12.926160px;}
.wsb{word-spacing:-12.545760px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._20{margin-left:-532.558560px;}
._22{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._14{margin-left:-292.890240px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._1a{margin-left:-244.537200px;}
._d{margin-left:-240.510240px;}
._19{margin-left:-220.314240px;}
._24{margin-left:-214.208640px;}
._11{margin-left:-202.146240px;}
._1b{margin-left:-199.946880px;}
._23{margin-left:-188.893440px;}
._10{margin-left:-171.054720px;}
._29{margin-left:-168.582240px;}
._f{margin-left:-165.490560px;}
._12{margin-left:-159.587040px;}
._26{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._28{margin-left:-142.858800px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-115.522560px;}
._27{margin-left:-110.054880px;}
._1f{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._1e{margin-left:-86.399760px;}
._1d{margin-left:-83.520000px;}
._15{margin-left:-81.979200px;}
._17{margin-left:-66.703680px;}
._25{margin-left:-53.422560px;}
._16{margin-left:-49.735920px;}
._18{margin-left:-48.703680px;}
._1c{margin-left:-30.741360px;}
._3f{margin-left:-7.778160px;}
._31{margin-left:-6.140400px;}
._2a{margin-left:-4.812480px;}
._2e{margin-left:-3.519360px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._21{width:1.082160px;}
._2b{width:2.369760px;}
._30{width:3.424800px;}
._2f{width:5.078640px;}
._2c{width:6.685680px;}
._2d{width:8.258880px;}
._32{width:9.363840px;}
._36{width:10.838880px;}
._33{width:12.052800px;}
._38{width:14.985600px;}
._37{width:16.224000px;}
._41{width:17.330400px;}
._40{width:18.368640px;}
._34{width:20.381760px;}
._35{width:21.543120px;}
._3b{width:22.576320px;}
._3c{width:23.811120px;}
._3e{width:31.497120px;}
._3d{width:32.569200px;}
._39{width:67.934160px;}
._3a{width:69.315840px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:6.660000px;}
.y87{bottom:27.720000px;}
.y95{bottom:27.750000px;}
.yce{bottom:49.500000px;}
.ybc{bottom:50.430000px;}
.y6{bottom:59.040000px;}
.y82{bottom:92.160000px;}
.y65{bottom:95.220000px;}
.yaa{bottom:96.660000px;}
.ybf{bottom:99.000000px;}
.y75{bottom:104.220000px;}
.yf0{bottom:106.380000px;}
.y31{bottom:113.220000px;}
.yd1{bottom:114.300000px;}
.y64{bottom:116.280000px;}
.yf1{bottom:116.460000px;}
.ya9{bottom:117.720000px;}
.ybb{bottom:120.780000px;}
.y74{bottom:125.280000px;}
.yef{bottom:127.440000px;}
.y30{bottom:134.280000px;}
.y63{bottom:137.340000px;}
.ya8{bottom:138.780000px;}
.ybe{bottom:142.740000px;}
.y73{bottom:146.340000px;}
.yee{bottom:148.500000px;}
.y2f{bottom:155.370000px;}
.y62{bottom:158.430000px;}
.ya7{bottom:159.870000px;}
.ybd{bottom:164.550000px;}
.y72{bottom:167.430000px;}
.yed{bottom:169.590000px;}
.y2e{bottom:176.430000px;}
.y61{bottom:179.490000px;}
.ya6{bottom:180.930000px;}
.yba{bottom:186.330000px;}
.y71{bottom:188.490000px;}
.yec{bottom:190.650000px;}
.y2d{bottom:197.490000px;}
.y60{bottom:200.550000px;}
.ya5{bottom:201.990000px;}
.y70{bottom:209.550000px;}
.yeb{bottom:211.710000px;}
.yb9{bottom:214.770000px;}
.y2c{bottom:218.550000px;}
.y5f{bottom:221.610000px;}
.ya4{bottom:223.050000px;}
.y6f{bottom:230.610000px;}
.yea{bottom:232.770000px;}
.yb8{bottom:235.830000px;}
.y2b{bottom:239.610000px;}
.y5e{bottom:242.670000px;}
.ya3{bottom:244.110000px;}
.y6e{bottom:251.670000px;}
.ye9{bottom:253.830000px;}
.yb7{bottom:256.890000px;}
.y2a{bottom:260.670000px;}
.y5d{bottom:263.730000px;}
.ya2{bottom:265.170000px;}
.y6d{bottom:272.730000px;}
.ye8{bottom:274.890000px;}
.yb6{bottom:277.950000px;}
.y29{bottom:281.730000px;}
.y5c{bottom:284.790000px;}
.ya1{bottom:286.230000px;}
.y6c{bottom:293.790000px;}
.ye7{bottom:295.950000px;}
.yb5{bottom:299.010000px;}
.y28{bottom:302.790000px;}
.ya0{bottom:307.290000px;}
.y5b{bottom:314.850000px;}
.ye6{bottom:317.010000px;}
.yb4{bottom:320.070000px;}
.y27{bottom:323.850000px;}
.y9f{bottom:328.350000px;}
.y5a{bottom:335.910000px;}
.ye5{bottom:338.070000px;}
.yb3{bottom:341.130000px;}
.y26{bottom:344.910000px;}
.y9e{bottom:349.410000px;}
.y59{bottom:356.970000px;}
.ye4{bottom:359.130000px;}
.yb2{bottom:362.190000px;}
.y25{bottom:365.970000px;}
.y9d{bottom:370.470000px;}
.y58{bottom:378.030000px;}
.ye3{bottom:380.190000px;}
.yb1{bottom:383.250000px;}
.y24{bottom:387.030000px;}
.y9c{bottom:391.530000px;}
.y57{bottom:399.090000px;}
.ye2{bottom:401.295000px;}
.yb0{bottom:404.355000px;}
.y23{bottom:408.135000px;}
.y9b{bottom:412.635000px;}
.y56{bottom:420.195000px;}
.ye1{bottom:422.355000px;}
.yaf{bottom:425.415000px;}
.y22{bottom:429.195000px;}
.y9a{bottom:433.695000px;}
.y55{bottom:441.255000px;}
.ye0{bottom:443.415000px;}
.yae{bottom:446.475000px;}
.y99{bottom:448.815000px;}
.y21{bottom:450.255000px;}
.yad{bottom:461.595000px;}
.y54{bottom:462.315000px;}
.ydf{bottom:464.475000px;}
.y20{bottom:471.315000px;}
.y53{bottom:483.375000px;}
.yde{bottom:485.535000px;}
.y98{bottom:491.655000px;}
.y1f{bottom:492.375000px;}
.y52{bottom:504.435000px;}
.ydd{bottom:506.595000px;}
.y81{bottom:513.435000px;}
.y1e{bottom:515.775000px;}
.y51{bottom:525.495000px;}
.yac{bottom:526.215000px;}
.ydc{bottom:527.655000px;}
.y80{bottom:534.495000px;}
.y1d{bottom:545.655000px;}
.y50{bottom:546.555000px;}
.yab{bottom:547.995000px;}
.ydb{bottom:548.715000px;}
.y7f{bottom:555.555000px;}
.y1c{bottom:566.715000px;}
.y4f{bottom:567.615000px;}
.yda{bottom:569.775000px;}
.y7e{bottom:576.615000px;}
.y97{bottom:577.515000px;}
.y1b{bottom:587.775000px;}
.y4e{bottom:588.675000px;}
.yd9{bottom:590.835000px;}
.y7d{bottom:597.675000px;}
.y96{bottom:599.295000px;}
.y1a{bottom:608.835000px;}
.y4d{bottom:609.735000px;}
.yd8{bottom:611.895000px;}
.y7c{bottom:618.735000px;}
.y19{bottom:629.895000px;}
.y4c{bottom:630.795000px;}
.yd7{bottom:632.955000px;}
.y7b{bottom:639.795000px;}
.y94{bottom:642.135000px;}
.y18{bottom:650.985000px;}
.y4b{bottom:651.705000px;}
.yd6{bottom:654.045000px;}
.y7a{bottom:660.705000px;}
.y17{bottom:672.045000px;}
.y4a{bottom:672.765000px;}
.yd5{bottom:675.105000px;}
.y79{bottom:681.765000px;}
.y93{bottom:685.005000px;}
.yd0{bottom:690.225000px;}
.y16{bottom:693.105000px;}
.y49{bottom:693.825000px;}
.y78{bottom:702.825000px;}
.y15{bottom:714.165000px;}
.y48{bottom:714.885000px;}
.y77{bottom:723.885000px;}
.y92{bottom:727.845000px;}
.yd4{bottom:733.065000px;}
.y14{bottom:735.225000px;}
.y47{bottom:735.945000px;}
.y76{bottom:744.945000px;}
.y91{bottom:749.625000px;}
.yd3{bottom:754.845000px;}
.y13{bottom:756.285000px;}
.y6b{bottom:757.005000px;}
.y46{bottom:766.005000px;}
.y90{bottom:771.405000px;}
.y12{bottom:777.345000px;}
.y6a{bottom:778.065000px;}
.y45{bottom:787.065000px;}
.y8f{bottom:793.365000px;}
.yd2{bottom:797.865000px;}
.y11{bottom:798.405000px;}
.y69{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.y10{bottom:819.465000px;}
.ycd{bottom:819.645000px;}
.y68{bottom:820.185000px;}
.y43{bottom:829.185000px;}
.y8e{bottom:836.205000px;}
.yf{bottom:840.525000px;}
.y67{bottom:841.245000px;}
.ycf{bottom:841.425000px;}
.y42{bottom:850.245000px;}
.ye{bottom:861.585000px;}
.y66{bottom:862.305000px;}
.y41{bottom:871.305000px;}
.y8d{bottom:879.045000px;}
.yd{bottom:882.645000px;}
.ycc{bottom:890.925000px;}
.y40{bottom:892.365000px;}
.y8c{bottom:900.870000px;}
.yc{bottom:905.910000px;}
.ycb{bottom:912.030000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:932.190000px;}
.yca{bottom:933.090000px;}
.y3e{bottom:934.530000px;}
.y8b{bottom:943.710000px;}
.ya{bottom:953.250000px;}
.yc9{bottom:954.150000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:969.990000px;}
.yc8{bottom:975.210000px;}
.y3c{bottom:976.650000px;}
.y8a{bottom:986.550000px;}
.y8{bottom:992.310000px;}
.yc7{bottom:996.270000px;}
.y3b{bottom:997.710000px;}
.y89{bottom:1008.330000px;}
.yc6{bottom:1017.330000px;}
.y7{bottom:1017.510000px;}
.y3a{bottom:1018.770000px;}
.y88{bottom:1030.290000px;}
.yc5{bottom:1038.390000px;}
.y39{bottom:1039.830000px;}
.y86{bottom:1052.070000px;}
.y5{bottom:1056.210000px;}
.yc4{bottom:1059.450000px;}
.y38{bottom:1060.890000px;}
.yc3{bottom:1080.510000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1086.990000px;}
.y85{bottom:1094.910000px;}
.yc2{bottom:1101.570000px;}
.y36{bottom:1103.010000px;}
.y83{bottom:1116.690000px;}
.y3{bottom:1117.770000px;}
.yc1{bottom:1122.630000px;}
.y35{bottom:1124.070000px;}
.yc0{bottom:1137.750000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1148.400000px;}
.y33{bottom:1166.220000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.h9{height:21.060000px;}
.hb{height:21.096000px;}
.h7{height:38.671172px;}
.ha{height:42.120000px;}
.hc{height:42.156000px;}
.h8{height:59.439023px;}
.hd{height:59.551172px;}
.h5{height:61.189805px;}
.hf{height:63.900000px;}
.he{height:64.836000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h10{height:128.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:23.040000px;}
.w19{width:42.156000px;}
.w13{width:42.696000px;}
.w18{width:52.920000px;}
.w1a{width:66.636000px;}
.wf{width:70.236000px;}
.w5{width:78.840000px;}
.w4{width:85.356000px;}
.w12{width:86.436000px;}
.w9{width:87.840000px;}
.w1b{width:93.600000px;}
.w8{width:103.536000px;}
.w11{width:104.760000px;}
.w6{width:117.396000px;}
.wa{width:123.876000px;}
.w17{width:144.756000px;}
.w14{width:148.680000px;}
.w10{width:153.210000px;}
.w16{width:161.130000px;}
.we{width:173.370000px;}
.wd{width:192.090000px;}
.wb{width:205.410000px;}
.wc{width:259.995000px;}
.w1d{width:355.935000px;}
.w15{width:379.875000px;}
.w3{width:499.785000px;}
.w7{width:783.720000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x6{left:53.999987px;}
.xa{left:66.959987px;}
.x8{left:70.379987px;}
.x7{left:73.799987px;}
.x1d{left:78.660000px;}
.x1e{left:80.999987px;}
.x17{left:98.136000px;}
.x9{left:108.035987px;}
.xf{left:158.970000px;}
.x5{left:164.369987px;}
.x10{left:247.530000px;}
.x3{left:286.274987px;}
.x2{left:350.534987px;}
.x11{left:372.315000px;}
.x4{left:418.214987px;}
.x13{left:421.635000px;}
.x18{left:435.315000px;}
.x1{left:478.544987px;}
.x14{left:492.585000px;}
.x1c{left:502.845000px;}
.xc{left:555.405000px;}
.x12{left:578.445000px;}
.x19{left:597.165000px;}
.xd{left:641.490000px;}
.x15{left:646.530000px;}
.xe{left:721.050000px;}
.x1a{left:742.650000px;}
.x16{left:752.010000px;}
.x1b{left:796.290000px;}
.x1f{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls15{letter-spacing:-0.515200pt;}
.ls3{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.368000pt;}
.ls4{letter-spacing:-0.276267pt;}
.ls16{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.202667pt;}
.ls2{letter-spacing:-0.117867pt;}
.ls1d{letter-spacing:-0.061867pt;}
.lse{letter-spacing:-0.059733pt;}
.lsb{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls11{letter-spacing:-0.028800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.009387pt;}
.ls1{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.058667pt;}
.ls1f{letter-spacing:0.124800pt;}
.ls9{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.155733pt;}
.ls24{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.169067pt;}
.ls17{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.349867pt;}
.ls1b{letter-spacing:0.416000pt;}
.ls10{letter-spacing:0.426133pt;}
.ls13{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.613333pt;}
.ls1e{letter-spacing:0.661333pt;}
.ls19{letter-spacing:0.725760pt;}
.ls14{letter-spacing:0.912000pt;}
.ls23{letter-spacing:10.832640pt;}
.ls22{letter-spacing:37.712640pt;}
.lsa{letter-spacing:81.360640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.277120pt;}
.ws10{word-spacing:-12.170987pt;}
.wsd{word-spacing:-12.160853pt;}
.ws7{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.976320pt;}
.ws8{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.943253pt;}
.ws13{word-spacing:-11.802453pt;}
.wsf{word-spacing:-11.791253pt;}
.wse{word-spacing:-11.489920pt;}
.wsb{word-spacing:-11.151787pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._20{margin-left:-473.385387pt;}
._22{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._14{margin-left:-260.346880pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._1a{margin-left:-217.366400pt;}
._d{margin-left:-213.786880pt;}
._19{margin-left:-195.834880pt;}
._24{margin-left:-190.407680pt;}
._11{margin-left:-179.685547pt;}
._1b{margin-left:-177.730560pt;}
._23{margin-left:-167.905280pt;}
._10{margin-left:-152.048640pt;}
._29{margin-left:-149.850880pt;}
._f{margin-left:-147.102720pt;}
._12{margin-left:-141.855147pt;}
._26{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._28{margin-left:-126.985600pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-102.686720pt;}
._27{margin-left:-97.826560pt;}
._1f{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._1e{margin-left:-76.799787pt;}
._1d{margin-left:-74.240000pt;}
._15{margin-left:-72.870400pt;}
._17{margin-left:-59.292160pt;}
._25{margin-left:-47.486720pt;}
._16{margin-left:-44.209707pt;}
._18{margin-left:-43.292160pt;}
._1c{margin-left:-27.325653pt;}
._3f{margin-left:-6.913920pt;}
._31{margin-left:-5.458133pt;}
._2a{margin-left:-4.277760pt;}
._2e{margin-left:-3.128320pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._21{width:0.961920pt;}
._2b{width:2.106453pt;}
._30{width:3.044267pt;}
._2f{width:4.514347pt;}
._2c{width:5.942827pt;}
._2d{width:7.341227pt;}
._32{width:8.323413pt;}
._36{width:9.634560pt;}
._33{width:10.713600pt;}
._38{width:13.320533pt;}
._37{width:14.421333pt;}
._41{width:15.404800pt;}
._40{width:16.327680pt;}
._34{width:18.117120pt;}
._35{width:19.149440pt;}
._3b{width:20.067840pt;}
._3c{width:21.165440pt;}
._3e{width:27.997440pt;}
._3d{width:28.950400pt;}
._39{width:60.385920pt;}
._3a{width:61.614080pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:5.920000pt;}
.y87{bottom:24.640000pt;}
.y95{bottom:24.666667pt;}
.yce{bottom:44.000000pt;}
.ybc{bottom:44.826667pt;}
.y6{bottom:52.480000pt;}
.y82{bottom:81.920000pt;}
.y65{bottom:84.640000pt;}
.yaa{bottom:85.920000pt;}
.ybf{bottom:88.000000pt;}
.y75{bottom:92.640000pt;}
.yf0{bottom:94.560000pt;}
.y31{bottom:100.640000pt;}
.yd1{bottom:101.600000pt;}
.y64{bottom:103.360000pt;}
.yf1{bottom:103.520000pt;}
.ya9{bottom:104.640000pt;}
.ybb{bottom:107.360000pt;}
.y74{bottom:111.360000pt;}
.yef{bottom:113.280000pt;}
.y30{bottom:119.360000pt;}
.y63{bottom:122.080000pt;}
.ya8{bottom:123.360000pt;}
.ybe{bottom:126.880000pt;}
.y73{bottom:130.080000pt;}
.yee{bottom:132.000000pt;}
.y2f{bottom:138.106667pt;}
.y62{bottom:140.826667pt;}
.ya7{bottom:142.106667pt;}
.ybd{bottom:146.266667pt;}
.y72{bottom:148.826667pt;}
.yed{bottom:150.746667pt;}
.y2e{bottom:156.826667pt;}
.y61{bottom:159.546667pt;}
.ya6{bottom:160.826667pt;}
.yba{bottom:165.626667pt;}
.y71{bottom:167.546667pt;}
.yec{bottom:169.466667pt;}
.y2d{bottom:175.546667pt;}
.y60{bottom:178.266667pt;}
.ya5{bottom:179.546667pt;}
.y70{bottom:186.266667pt;}
.yeb{bottom:188.186667pt;}
.yb9{bottom:190.906667pt;}
.y2c{bottom:194.266667pt;}
.y5f{bottom:196.986667pt;}
.ya4{bottom:198.266667pt;}
.y6f{bottom:204.986667pt;}
.yea{bottom:206.906667pt;}
.yb8{bottom:209.626667pt;}
.y2b{bottom:212.986667pt;}
.y5e{bottom:215.706667pt;}
.ya3{bottom:216.986667pt;}
.y6e{bottom:223.706667pt;}
.ye9{bottom:225.626667pt;}
.yb7{bottom:228.346667pt;}
.y2a{bottom:231.706667pt;}
.y5d{bottom:234.426667pt;}
.ya2{bottom:235.706667pt;}
.y6d{bottom:242.426667pt;}
.ye8{bottom:244.346667pt;}
.yb6{bottom:247.066667pt;}
.y29{bottom:250.426667pt;}
.y5c{bottom:253.146667pt;}
.ya1{bottom:254.426667pt;}
.y6c{bottom:261.146667pt;}
.ye7{bottom:263.066667pt;}
.yb5{bottom:265.786667pt;}
.y28{bottom:269.146667pt;}
.ya0{bottom:273.146667pt;}
.y5b{bottom:279.866667pt;}
.ye6{bottom:281.786667pt;}
.yb4{bottom:284.506667pt;}
.y27{bottom:287.866667pt;}
.y9f{bottom:291.866667pt;}
.y5a{bottom:298.586667pt;}
.ye5{bottom:300.506667pt;}
.yb3{bottom:303.226667pt;}
.y26{bottom:306.586667pt;}
.y9e{bottom:310.586667pt;}
.y59{bottom:317.306667pt;}
.ye4{bottom:319.226667pt;}
.yb2{bottom:321.946667pt;}
.y25{bottom:325.306667pt;}
.y9d{bottom:329.306667pt;}
.y58{bottom:336.026667pt;}
.ye3{bottom:337.946667pt;}
.yb1{bottom:340.666667pt;}
.y24{bottom:344.026667pt;}
.y9c{bottom:348.026667pt;}
.y57{bottom:354.746667pt;}
.ye2{bottom:356.706667pt;}
.yb0{bottom:359.426667pt;}
.y23{bottom:362.786667pt;}
.y9b{bottom:366.786667pt;}
.y56{bottom:373.506667pt;}
.ye1{bottom:375.426667pt;}
.yaf{bottom:378.146667pt;}
.y22{bottom:381.506667pt;}
.y9a{bottom:385.506667pt;}
.y55{bottom:392.226667pt;}
.ye0{bottom:394.146667pt;}
.yae{bottom:396.866667pt;}
.y99{bottom:398.946667pt;}
.y21{bottom:400.226667pt;}
.yad{bottom:410.306667pt;}
.y54{bottom:410.946667pt;}
.ydf{bottom:412.866667pt;}
.y20{bottom:418.946667pt;}
.y53{bottom:429.666667pt;}
.yde{bottom:431.586667pt;}
.y98{bottom:437.026667pt;}
.y1f{bottom:437.666667pt;}
.y52{bottom:448.386667pt;}
.ydd{bottom:450.306667pt;}
.y81{bottom:456.386667pt;}
.y1e{bottom:458.466667pt;}
.y51{bottom:467.106667pt;}
.yac{bottom:467.746667pt;}
.ydc{bottom:469.026667pt;}
.y80{bottom:475.106667pt;}
.y1d{bottom:485.026667pt;}
.y50{bottom:485.826667pt;}
.yab{bottom:487.106667pt;}
.ydb{bottom:487.746667pt;}
.y7f{bottom:493.826667pt;}
.y1c{bottom:503.746667pt;}
.y4f{bottom:504.546667pt;}
.yda{bottom:506.466667pt;}
.y7e{bottom:512.546667pt;}
.y97{bottom:513.346667pt;}
.y1b{bottom:522.466667pt;}
.y4e{bottom:523.266667pt;}
.yd9{bottom:525.186667pt;}
.y7d{bottom:531.266667pt;}
.y96{bottom:532.706667pt;}
.y1a{bottom:541.186667pt;}
.y4d{bottom:541.986667pt;}
.yd8{bottom:543.906667pt;}
.y7c{bottom:549.986667pt;}
.y19{bottom:559.906667pt;}
.y4c{bottom:560.706667pt;}
.yd7{bottom:562.626667pt;}
.y7b{bottom:568.706667pt;}
.y94{bottom:570.786667pt;}
.y18{bottom:578.653333pt;}
.y4b{bottom:579.293333pt;}
.yd6{bottom:581.373333pt;}
.y7a{bottom:587.293333pt;}
.y17{bottom:597.373333pt;}
.y4a{bottom:598.013333pt;}
.yd5{bottom:600.093333pt;}
.y79{bottom:606.013333pt;}
.y93{bottom:608.893333pt;}
.yd0{bottom:613.533333pt;}
.y16{bottom:616.093333pt;}
.y49{bottom:616.733333pt;}
.y78{bottom:624.733333pt;}
.y15{bottom:634.813333pt;}
.y48{bottom:635.453333pt;}
.y77{bottom:643.453333pt;}
.y92{bottom:646.973333pt;}
.yd4{bottom:651.613333pt;}
.y14{bottom:653.533333pt;}
.y47{bottom:654.173333pt;}
.y76{bottom:662.173333pt;}
.y91{bottom:666.333333pt;}
.yd3{bottom:670.973333pt;}
.y13{bottom:672.253333pt;}
.y6b{bottom:672.893333pt;}
.y46{bottom:680.893333pt;}
.y90{bottom:685.693333pt;}
.y12{bottom:690.973333pt;}
.y6a{bottom:691.613333pt;}
.y45{bottom:699.613333pt;}
.y8f{bottom:705.213333pt;}
.yd2{bottom:709.213333pt;}
.y11{bottom:709.693333pt;}
.y69{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:728.413333pt;}
.ycd{bottom:728.573333pt;}
.y68{bottom:729.053333pt;}
.y43{bottom:737.053333pt;}
.y8e{bottom:743.293333pt;}
.yf{bottom:747.133333pt;}
.y67{bottom:747.773333pt;}
.ycf{bottom:747.933333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:765.853333pt;}
.y66{bottom:766.493333pt;}
.y41{bottom:774.493333pt;}
.y8d{bottom:781.373333pt;}
.yd{bottom:784.573333pt;}
.ycc{bottom:791.933333pt;}
.y40{bottom:793.213333pt;}
.y8c{bottom:800.773333pt;}
.yc{bottom:805.253333pt;}
.ycb{bottom:810.693333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:828.613333pt;}
.yca{bottom:829.413333pt;}
.y3e{bottom:830.693333pt;}
.y8b{bottom:838.853333pt;}
.ya{bottom:847.333333pt;}
.yc9{bottom:848.133333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:862.213333pt;}
.yc8{bottom:866.853333pt;}
.y3c{bottom:868.133333pt;}
.y8a{bottom:876.933333pt;}
.y8{bottom:882.053333pt;}
.yc7{bottom:885.573333pt;}
.y3b{bottom:886.853333pt;}
.y89{bottom:896.293333pt;}
.yc6{bottom:904.293333pt;}
.y7{bottom:904.453333pt;}
.y3a{bottom:905.573333pt;}
.y88{bottom:915.813333pt;}
.yc5{bottom:923.013333pt;}
.y39{bottom:924.293333pt;}
.y86{bottom:935.173333pt;}
.y5{bottom:938.853333pt;}
.yc4{bottom:941.733333pt;}
.y38{bottom:943.013333pt;}
.yc3{bottom:960.453333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:966.213333pt;}
.y85{bottom:973.253333pt;}
.yc2{bottom:979.173333pt;}
.y36{bottom:980.453333pt;}
.y83{bottom:992.613333pt;}
.y3{bottom:993.573333pt;}
.yc1{bottom:997.893333pt;}
.y35{bottom:999.173333pt;}
.yc0{bottom:1011.333333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1020.800000pt;}
.y33{bottom:1036.640000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.h9{height:18.720000pt;}
.hb{height:18.752000pt;}
.h7{height:34.374375pt;}
.ha{height:37.440000pt;}
.hc{height:37.472000pt;}
.h8{height:52.834688pt;}
.hd{height:52.934375pt;}
.h5{height:54.390938pt;}
.hf{height:56.800000pt;}
.he{height:57.632000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h10{height:114.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:20.480000pt;}
.w19{width:37.472000pt;}
.w13{width:37.952000pt;}
.w18{width:47.040000pt;}
.w1a{width:59.232000pt;}
.wf{width:62.432000pt;}
.w5{width:70.080000pt;}
.w4{width:75.872000pt;}
.w12{width:76.832000pt;}
.w9{width:78.080000pt;}
.w1b{width:83.200000pt;}
.w8{width:92.032000pt;}
.w11{width:93.120000pt;}
.w6{width:104.352000pt;}
.wa{width:110.112000pt;}
.w17{width:128.672000pt;}
.w14{width:132.160000pt;}
.w10{width:136.186667pt;}
.w16{width:143.226667pt;}
.we{width:154.106667pt;}
.wd{width:170.746667pt;}
.wb{width:182.586667pt;}
.wc{width:231.106667pt;}
.w1d{width:316.386667pt;}
.w15{width:337.666667pt;}
.w3{width:444.253333pt;}
.w7{width:696.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x6{left:47.999988pt;}
.xa{left:59.519988pt;}
.x8{left:62.559988pt;}
.x7{left:65.599988pt;}
.x1d{left:69.920000pt;}
.x1e{left:71.999988pt;}
.x17{left:87.232000pt;}
.x9{left:96.031988pt;}
.xf{left:141.306667pt;}
.x5{left:146.106655pt;}
.x10{left:220.026667pt;}
.x3{left:254.466655pt;}
.x2{left:311.586655pt;}
.x11{left:330.946667pt;}
.x4{left:371.746655pt;}
.x13{left:374.786667pt;}
.x18{left:386.946667pt;}
.x1{left:425.373322pt;}
.x14{left:437.853333pt;}
.x1c{left:446.973333pt;}
.xc{left:493.693333pt;}
.x12{left:514.173333pt;}
.x19{left:530.813333pt;}
.xd{left:570.213333pt;}
.x15{left:574.693333pt;}
.xe{left:640.933333pt;}
.x1a{left:660.133333pt;}
.x16{left:668.453333pt;}
.x1b{left:707.813333pt;}
.x1f{left:746.079988pt;}
}




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