
    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_afcb31c9f7fdc08693e95975.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c467ce16ffae9255d66b7d3d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_6a7a12863baa000af7f245b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_f39ce743f355929631b5083f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_6089106a035eb09a432ebd02.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsf{letter-spacing:-0.852000px;}
.ls10{letter-spacing:-0.168000px;}
.lsd{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.084000px;}
.ls11{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls3{letter-spacing:1.200000px;}
.ls4{letter-spacing:4.260000px;}
.ls12{letter-spacing:8.400000px;}
.ls9{letter-spacing:13.800000px;}
.ls8{letter-spacing:15.600000px;}
.lse{letter-spacing:56.220000px;}
.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;}
}
.ws7{word-spacing:-66.000000px;}
.ws4{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.976000px;}
.ws6{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._2{width:1.014000px;}
._1{width:2.658000px;}
._a{width:4.446000px;}
._7{width:5.760000px;}
._8{width:7.272000px;}
._12{width:8.280000px;}
._5{width:9.288000px;}
._6{width:10.512000px;}
._19{width:11.526000px;}
._13{width:12.654000px;}
._e{width:13.752000px;}
._9{width:15.192000px;}
._d{width:16.560000px;}
._11{width:19.656000px;}
._f{width:21.384000px;}
._10{width:22.752000px;}
._b{width:24.552000px;}
._c{width:26.136000px;}
._1a{width:27.792000px;}
._4{width:28.872000px;}
._3{width:30.168000px;}
._1c{width:32.064000px;}
._14{width:33.618000px;}
._17{width:34.704000px;}
._18{width:36.282000px;}
._22{width:37.302000px;}
._15{width:39.384000px;}
._16{width:40.524000px;}
._23{width:41.772000px;}
._20{width:44.136000px;}
._1b{width:45.210000px;}
._2b{width:47.592000px;}
._21{width:48.744000px;}
._1d{width:50.952000px;}
._1e{width:55.968000px;}
._24{width:72.858000px;}
._25{width:73.938000px;}
._26{width:88.272000px;}
._27{width:89.418000px;}
._1f{width:106.722000px;}
._28{width:146.214000px;}
._29{width:147.294000px;}
._2a{width:608.832000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.300000px;}
.ybe{bottom:3.600000px;}
.yb8{bottom:3.615000px;}
.yc1{bottom:3.750000px;}
.yc9{bottom:3.765000px;}
.yae{bottom:3.885000px;}
.ya1{bottom:3.900000px;}
.yba{bottom:13.050000px;}
.y9f{bottom:14.250000px;}
.yb6{bottom:22.515000px;}
.ybc{bottom:22.650000px;}
.yc3{bottom:22.665000px;}
.ya0{bottom:24.600000px;}
.yb9{bottom:32.100000px;}
.y38{bottom:40.950000px;}
.y6{bottom:41.400000px;}
.ybd{bottom:41.550000px;}
.yb7{bottom:41.565000px;}
.yc4{bottom:41.595000px;}
.yc0{bottom:41.700000px;}
.yc7{bottom:41.715000px;}
.y37{bottom:56.550000px;}
.y5{bottom:58.200000px;}
.yc8{bottom:60.600000px;}
.ybf{bottom:87.450000px;}
.y5b{bottom:95.250000px;}
.y9c{bottom:97.050000px;}
.ydf{bottom:102.450000px;}
.yeb{bottom:106.200000px;}
.yf7{bottom:107.250000px;}
.yd6{bottom:108.000000px;}
.y7c{bottom:112.050000px;}
.y35{bottom:113.550000px;}
.y104{bottom:115.950000px;}
.y87{bottom:117.450000px;}
.y5a{bottom:126.300000px;}
.y9b{bottom:128.100000px;}
.yde{bottom:133.500000px;}
.y34{bottom:134.250000px;}
.y103{bottom:136.650000px;}
.yea{bottom:137.250000px;}
.yf6{bottom:138.300000px;}
.yd5{bottom:139.050000px;}
.y7b{bottom:143.100000px;}
.ybb{bottom:144.450000px;}
.y86{bottom:148.500000px;}
.y33{bottom:154.950000px;}
.y59{bottom:157.350000px;}
.y9a{bottom:159.150000px;}
.ydd{bottom:164.550000px;}
.ye9{bottom:168.300000px;}
.yf5{bottom:169.350000px;}
.yd4{bottom:170.100000px;}
.y7a{bottom:174.150000px;}
.y32{bottom:175.650000px;}
.y102{bottom:178.050000px;}
.y85{bottom:179.550000px;}
.y58{bottom:188.430000px;}
.y99{bottom:190.245000px;}
.ydc{bottom:195.630000px;}
.y31{bottom:196.395000px;}
.y101{bottom:198.780000px;}
.ye8{bottom:199.395000px;}
.yf4{bottom:200.445000px;}
.yd3{bottom:201.195000px;}
.yb5{bottom:202.530000px;}
.y79{bottom:205.245000px;}
.y84{bottom:210.630000px;}
.y30{bottom:217.095000px;}
.y57{bottom:219.330000px;}
.y100{bottom:219.480000px;}
.y98{bottom:221.295000px;}
.ydb{bottom:226.695000px;}
.ye7{bottom:230.445000px;}
.yf3{bottom:231.495000px;}
.yd2{bottom:232.245000px;}
.y78{bottom:236.280000px;}
.y2f{bottom:237.795000px;}
.yff{bottom:240.045000px;}
.y83{bottom:241.695000px;}
.y56{bottom:250.395000px;}
.y97{bottom:252.330000px;}
.yda{bottom:257.745000px;}
.y2e{bottom:258.495000px;}
.yfe{bottom:260.745000px;}
.ye6{bottom:261.495000px;}
.yf2{bottom:262.530000px;}
.yd1{bottom:263.280000px;}
.yb4{bottom:265.545000px;}
.y77{bottom:267.345000px;}
.y82{bottom:272.745000px;}
.yd9{bottom:277.845000px;}
.y2d{bottom:279.195000px;}
.y55{bottom:281.445000px;}
.y96{bottom:283.380000px;}
.yb3{bottom:286.245000px;}
.ye5{bottom:292.545000px;}
.y81{bottom:292.830000px;}
.yf1{bottom:293.580000px;}
.yd8{bottom:295.095000px;}
.y76{bottom:298.380000px;}
.y2c{bottom:299.880000px;}
.yd0{bottom:300.645000px;}
.yfd{bottom:302.130000px;}
.y80{bottom:310.080000px;}
.y54{bottom:312.495000px;}
.y95{bottom:314.445000px;}
.yb2{bottom:317.280000px;}
.yd7{bottom:319.380000px;}
.y2b{bottom:320.580000px;}
.yfc{bottom:322.830000px;}
.ye4{bottom:323.580000px;}
.y7f{bottom:324.030000px;}
.yf0{bottom:324.645000px;}
.ycf{bottom:324.945000px;}
.y75{bottom:329.445000px;}
.y2a{bottom:341.295000px;}
.y53{bottom:343.530000px;}
.y94{bottom:345.495000px;}
.yb1{bottom:348.345000px;}
.ye3{bottom:354.630000px;}
.yef{bottom:355.695000px;}
.y74{bottom:360.495000px;}
.y29{bottom:361.995000px;}
.yfb{bottom:364.245000px;}
.y52{bottom:374.580000px;}
.y93{bottom:376.530000px;}
.yb0{bottom:379.380000px;}
.y28{bottom:382.695000px;}
.yfa{bottom:384.945000px;}
.ye2{bottom:385.695000px;}
.yee{bottom:386.745000px;}
.y73{bottom:391.530000px;}
.y27{bottom:403.380000px;}
.y51{bottom:405.630000px;}
.ye1{bottom:405.795000px;}
.yed{bottom:406.830000px;}
.y92{bottom:407.580000px;}
.yaf{bottom:410.445000px;}
.y72{bottom:422.595000px;}
.y26{bottom:424.095000px;}
.yf9{bottom:426.330000px;}
.yad{bottom:429.495000px;}
.ye0{bottom:430.080000px;}
.y50{bottom:436.695000px;}
.yec{bottom:437.880000px;}
.y91{bottom:438.630000px;}
.y25{bottom:444.780000px;}
.yf8{bottom:447.045000px;}
.y69{bottom:448.845000px;}
.yac{bottom:450.195000px;}
.y71{bottom:453.645000px;}
.y24{bottom:465.495000px;}
.y4f{bottom:467.745000px;}
.y90{bottom:469.695000px;}
.yab{bottom:470.880000px;}
.y68{bottom:479.880000px;}
.y70{bottom:484.725000px;}
.y23{bottom:486.225000px;}
.y114{bottom:488.475000px;}
.yaa{bottom:491.625000px;}
.y4e{bottom:498.825000px;}
.y8f{bottom:500.775000px;}
.y22{bottom:506.925000px;}
.y113{bottom:509.175000px;}
.y67{bottom:510.975000px;}
.ya9{bottom:512.325000px;}
.y6f{bottom:515.775000px;}
.y21{bottom:527.625000px;}
.y4d{bottom:529.875000px;}
.y8e{bottom:531.825000px;}
.ya8{bottom:533.025000px;}
.y66{bottom:542.025000px;}
.y6e{bottom:546.825000px;}
.y20{bottom:548.325000px;}
.y112{bottom:550.575000px;}
.ya7{bottom:553.725000px;}
.y4c{bottom:560.925000px;}
.y8d{bottom:562.875000px;}
.y6d{bottom:566.925000px;}
.y1f{bottom:569.025000px;}
.y111{bottom:571.275000px;}
.y65{bottom:573.075000px;}
.ya6{bottom:574.425000px;}
.y6c{bottom:584.175000px;}
.y1e{bottom:589.725000px;}
.y4b{bottom:591.975000px;}
.y8c{bottom:593.925000px;}
.ya5{bottom:595.125000px;}
.y6b{bottom:601.425000px;}
.y64{bottom:604.125000px;}
.y1d{bottom:610.425000px;}
.y110{bottom:612.675000px;}
.ya4{bottom:615.825000px;}
.y4a{bottom:623.025000px;}
.y8b{bottom:624.975000px;}
.y6a{bottom:625.725000px;}
.y1c{bottom:631.125000px;}
.y10f{bottom:633.375000px;}
.y63{bottom:635.175000px;}
.ya3{bottom:636.525000px;}
.y8a{bottom:645.075000px;}
.y1b{bottom:651.825000px;}
.y49{bottom:654.075000px;}
.ya2{bottom:657.225000px;}
.y89{bottom:662.325000px;}
.y62{bottom:666.225000px;}
.y1a{bottom:672.525000px;}
.y10e{bottom:674.775000px;}
.y9e{bottom:678.975000px;}
.y48{bottom:685.125000px;}
.y88{bottom:686.625000px;}
.y19{bottom:693.225000px;}
.y10d{bottom:695.475000px;}
.y61{bottom:697.275000px;}
.y18{bottom:713.925000px;}
.y7d{bottom:715.725000px;}
.y47{bottom:716.175000px;}
.y9d{bottom:726.525000px;}
.y60{bottom:728.325000px;}
.y17{bottom:734.475000px;}
.y10c{bottom:736.875000px;}
.y46{bottom:747.225000px;}
.y16{bottom:755.175000px;}
.y10b{bottom:757.575000px;}
.y5f{bottom:759.375000px;}
.yce{bottom:770.325000px;}
.y15{bottom:775.875000px;}
.y45{bottom:778.320000px;}
.y5e{bottom:779.820000px;}
.y14{bottom:796.620000px;}
.y10a{bottom:799.005000px;}
.ycd{bottom:801.420000px;}
.y44{bottom:809.355000px;}
.y13{bottom:817.320000px;}
.y109{bottom:819.705000px;}
.ycc{bottom:832.455000px;}
.y12{bottom:838.005000px;}
.y43{bottom:840.420000px;}
.y11{bottom:858.705000px;}
.y108{bottom:861.120000px;}
.ycb{bottom:863.505000px;}
.y42{bottom:871.455000px;}
.y107{bottom:881.820000px;}
.y10{bottom:885.420000px;}
.yca{bottom:894.570000px;}
.y41{bottom:902.505000px;}
.yf{bottom:906.120000px;}
.yc6{bottom:913.605000px;}
.y106{bottom:923.205000px;}
.ye{bottom:926.820000px;}
.y40{bottom:933.570000px;}
.yd{bottom:941.505000px;}
.y105{bottom:943.920000px;}
.yc{bottom:962.205000px;}
.y3f{bottom:964.620000px;}
.yb{bottom:982.920000px;}
.y3e{bottom:985.320000px;}
.yc5{bottom:989.505000px;}
.y5d{bottom:995.670000px;}
.ya{bottom:1003.620000px;}
.y3d{bottom:1006.005000px;}
.y9{bottom:1024.320000px;}
.y3c{bottom:1026.705000px;}
.y8{bottom:1045.005000px;}
.yc2{bottom:1046.505000px;}
.y3b{bottom:1047.420000px;}
.y5c{bottom:1057.755000px;}
.y7{bottom:1065.705000px;}
.y3a{bottom:1068.120000px;}
.y4{bottom:1086.000000px;}
.y39{bottom:1088.850000px;}
.y3{bottom:1104.000000px;}
.y2{bottom:1121.250000px;}
.y1{bottom:1138.500000px;}
.y36{bottom:1139.850000px;}
.h9{height:17.250000px;}
.hb{height:20.700000px;}
.hc{height:20.737500px;}
.ha{height:41.400000px;}
.h7{height:43.031250px;}
.h3{height:48.410156px;}
.h1{height:53.789062px;}
.h2{height:56.478516px;}
.hd{height:56.850000px;}
.hf{height:56.887500px;}
.h11{height:57.000000px;}
.he{height:58.620117px;}
.h10{height:59.167969px;}
.h5{height:59.343750px;}
.h8{height:63.949219px;}
.h4{height:64.546875px;}
.h6{height:67.031250px;}
.h12{height:75.900000px;}
.h0{height:1212.000000px;}
.w9{width:36.787500px;}
.wb{width:64.500000px;}
.we{width:65.587500px;}
.w6{width:90.900000px;}
.wd{width:103.200000px;}
.w7{width:104.437500px;}
.wc{width:114.037500px;}
.wa{width:127.687500px;}
.w8{width:182.100000px;}
.wf{width:221.595000px;}
.w3{width:276.480000px;}
.w5{width:282.375000px;}
.w4{width:339.795000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x27{left:9.330000px;}
.x1f{left:11.550000px;}
.x36{left:13.650000px;}
.x32{left:15.300000px;}
.x21{left:17.100000px;}
.x39{left:18.637500px;}
.x2f{left:20.385000px;}
.x1d{left:21.900000px;}
.x2a{left:23.737500px;}
.x2e{left:24.750000px;}
.x22{left:27.600000px;}
.x38{left:33.000000px;}
.x25{left:34.650000px;}
.x28{left:36.150000px;}
.x3a{left:37.237500px;}
.x30{left:39.630000px;}
.x35{left:42.337500px;}
.x2b{left:44.137500px;}
.x26{left:48.600000px;}
.x37{left:52.980000px;}
.x29{left:64.680000px;}
.x15{left:71.700000px;}
.x24{left:72.930000px;}
.x1b{left:98.250000px;}
.x4{left:106.387487px;}
.x3b{left:115.237487px;}
.x42{left:127.837487px;}
.xc{left:130.687487px;}
.x9{left:132.337487px;}
.x12{left:133.387487px;}
.x1a{left:138.337487px;}
.x7{left:141.787487px;}
.xe{left:159.479987px;}
.x18{left:160.679987px;}
.x10{left:170.129987px;}
.x17{left:220.244987px;}
.x19{left:221.894987px;}
.x2c{left:225.945000px;}
.x43{left:227.444987px;}
.x6{left:248.279987px;}
.x3e{left:250.244987px;}
.x2d{left:290.445000px;}
.x41{left:296.144987px;}
.x8{left:347.624987px;}
.x3c{left:373.424987px;}
.xd{left:376.424987px;}
.x1c{left:380.625000px;}
.xa{left:392.024987px;}
.x31{left:404.475000px;}
.x14{left:406.725000px;}
.x11{left:423.074987px;}
.x1{left:444.374987px;}
.xb{left:446.624987px;}
.x1e{left:471.525000px;}
.x33{left:507.675000px;}
.x34{left:573.270000px;}
.x20{left:575.970000px;}
.x3{left:594.869987px;}
.x2{left:685.604987px;}
.x3d{left:724.004987px;}
.x23{left:758.070000px;}
.x3f{left:773.399987px;}
.x5{left:780.149987px;}
.xf{left:785.099987px;}
.x16{left:786.449987px;}
.x40{left:796.949987px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsf{letter-spacing:-0.757333pt;}
.ls10{letter-spacing:-0.149333pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.074667pt;}
.ls11{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls3{letter-spacing:1.066667pt;}
.ls4{letter-spacing:3.786667pt;}
.ls12{letter-spacing:7.466667pt;}
.ls9{letter-spacing:12.266667pt;}
.ls8{letter-spacing:13.866667pt;}
.lse{letter-spacing:49.973333pt;}
.ws7{word-spacing:-58.666667pt;}
.ws4{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.978667pt;}
.ws6{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._2{width:0.901333pt;}
._1{width:2.362667pt;}
._a{width:3.952000pt;}
._7{width:5.120000pt;}
._8{width:6.464000pt;}
._12{width:7.360000pt;}
._5{width:8.256000pt;}
._6{width:9.344000pt;}
._19{width:10.245333pt;}
._13{width:11.248000pt;}
._e{width:12.224000pt;}
._9{width:13.504000pt;}
._d{width:14.720000pt;}
._11{width:17.472000pt;}
._f{width:19.008000pt;}
._10{width:20.224000pt;}
._b{width:21.824000pt;}
._c{width:23.232000pt;}
._1a{width:24.704000pt;}
._4{width:25.664000pt;}
._3{width:26.816000pt;}
._1c{width:28.501333pt;}
._14{width:29.882667pt;}
._17{width:30.848000pt;}
._18{width:32.250667pt;}
._22{width:33.157333pt;}
._15{width:35.008000pt;}
._16{width:36.021333pt;}
._23{width:37.130667pt;}
._20{width:39.232000pt;}
._1b{width:40.186667pt;}
._2b{width:42.304000pt;}
._21{width:43.328000pt;}
._1d{width:45.290667pt;}
._1e{width:49.749333pt;}
._24{width:64.762667pt;}
._25{width:65.722667pt;}
._26{width:78.464000pt;}
._27{width:79.482667pt;}
._1f{width:94.864000pt;}
._28{width:129.968000pt;}
._29{width:130.928000pt;}
._2a{width:541.184000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.933333pt;}
.ybe{bottom:3.200000pt;}
.yb8{bottom:3.213333pt;}
.yc1{bottom:3.333333pt;}
.yc9{bottom:3.346667pt;}
.yae{bottom:3.453333pt;}
.ya1{bottom:3.466667pt;}
.yba{bottom:11.600000pt;}
.y9f{bottom:12.666667pt;}
.yb6{bottom:20.013333pt;}
.ybc{bottom:20.133333pt;}
.yc3{bottom:20.146667pt;}
.ya0{bottom:21.866667pt;}
.yb9{bottom:28.533333pt;}
.y38{bottom:36.400000pt;}
.y6{bottom:36.800000pt;}
.ybd{bottom:36.933333pt;}
.yb7{bottom:36.946667pt;}
.yc4{bottom:36.973333pt;}
.yc0{bottom:37.066667pt;}
.yc7{bottom:37.080000pt;}
.y37{bottom:50.266667pt;}
.y5{bottom:51.733333pt;}
.yc8{bottom:53.866667pt;}
.ybf{bottom:77.733333pt;}
.y5b{bottom:84.666667pt;}
.y9c{bottom:86.266667pt;}
.ydf{bottom:91.066667pt;}
.yeb{bottom:94.400000pt;}
.yf7{bottom:95.333333pt;}
.yd6{bottom:96.000000pt;}
.y7c{bottom:99.600000pt;}
.y35{bottom:100.933333pt;}
.y104{bottom:103.066667pt;}
.y87{bottom:104.400000pt;}
.y5a{bottom:112.266667pt;}
.y9b{bottom:113.866667pt;}
.yde{bottom:118.666667pt;}
.y34{bottom:119.333333pt;}
.y103{bottom:121.466667pt;}
.yea{bottom:122.000000pt;}
.yf6{bottom:122.933333pt;}
.yd5{bottom:123.600000pt;}
.y7b{bottom:127.200000pt;}
.ybb{bottom:128.400000pt;}
.y86{bottom:132.000000pt;}
.y33{bottom:137.733333pt;}
.y59{bottom:139.866667pt;}
.y9a{bottom:141.466667pt;}
.ydd{bottom:146.266667pt;}
.ye9{bottom:149.600000pt;}
.yf5{bottom:150.533333pt;}
.yd4{bottom:151.200000pt;}
.y7a{bottom:154.800000pt;}
.y32{bottom:156.133333pt;}
.y102{bottom:158.266667pt;}
.y85{bottom:159.600000pt;}
.y58{bottom:167.493333pt;}
.y99{bottom:169.106667pt;}
.ydc{bottom:173.893333pt;}
.y31{bottom:174.573333pt;}
.y101{bottom:176.693333pt;}
.ye8{bottom:177.240000pt;}
.yf4{bottom:178.173333pt;}
.yd3{bottom:178.840000pt;}
.yb5{bottom:180.026667pt;}
.y79{bottom:182.440000pt;}
.y84{bottom:187.226667pt;}
.y30{bottom:192.973333pt;}
.y57{bottom:194.960000pt;}
.y100{bottom:195.093333pt;}
.y98{bottom:196.706667pt;}
.ydb{bottom:201.506667pt;}
.ye7{bottom:204.840000pt;}
.yf3{bottom:205.773333pt;}
.yd2{bottom:206.440000pt;}
.y78{bottom:210.026667pt;}
.y2f{bottom:211.373333pt;}
.yff{bottom:213.373333pt;}
.y83{bottom:214.840000pt;}
.y56{bottom:222.573333pt;}
.y97{bottom:224.293333pt;}
.yda{bottom:229.106667pt;}
.y2e{bottom:229.773333pt;}
.yfe{bottom:231.773333pt;}
.ye6{bottom:232.440000pt;}
.yf2{bottom:233.360000pt;}
.yd1{bottom:234.026667pt;}
.yb4{bottom:236.040000pt;}
.y77{bottom:237.640000pt;}
.y82{bottom:242.440000pt;}
.yd9{bottom:246.973333pt;}
.y2d{bottom:248.173333pt;}
.y55{bottom:250.173333pt;}
.y96{bottom:251.893333pt;}
.yb3{bottom:254.440000pt;}
.ye5{bottom:260.040000pt;}
.y81{bottom:260.293333pt;}
.yf1{bottom:260.960000pt;}
.yd8{bottom:262.306667pt;}
.y76{bottom:265.226667pt;}
.y2c{bottom:266.560000pt;}
.yd0{bottom:267.240000pt;}
.yfd{bottom:268.560000pt;}
.y80{bottom:275.626667pt;}
.y54{bottom:277.773333pt;}
.y95{bottom:279.506667pt;}
.yb2{bottom:282.026667pt;}
.yd7{bottom:283.893333pt;}
.y2b{bottom:284.960000pt;}
.yfc{bottom:286.960000pt;}
.ye4{bottom:287.626667pt;}
.y7f{bottom:288.026667pt;}
.yf0{bottom:288.573333pt;}
.ycf{bottom:288.840000pt;}
.y75{bottom:292.840000pt;}
.y2a{bottom:303.373333pt;}
.y53{bottom:305.360000pt;}
.y94{bottom:307.106667pt;}
.yb1{bottom:309.640000pt;}
.ye3{bottom:315.226667pt;}
.yef{bottom:316.173333pt;}
.y74{bottom:320.440000pt;}
.y29{bottom:321.773333pt;}
.yfb{bottom:323.773333pt;}
.y52{bottom:332.960000pt;}
.y93{bottom:334.693333pt;}
.yb0{bottom:337.226667pt;}
.y28{bottom:340.173333pt;}
.yfa{bottom:342.173333pt;}
.ye2{bottom:342.840000pt;}
.yee{bottom:343.773333pt;}
.y73{bottom:348.026667pt;}
.y27{bottom:358.560000pt;}
.y51{bottom:360.560000pt;}
.ye1{bottom:360.706667pt;}
.yed{bottom:361.626667pt;}
.y92{bottom:362.293333pt;}
.yaf{bottom:364.840000pt;}
.y72{bottom:375.640000pt;}
.y26{bottom:376.973333pt;}
.yf9{bottom:378.960000pt;}
.yad{bottom:381.773333pt;}
.ye0{bottom:382.293333pt;}
.y50{bottom:388.173333pt;}
.yec{bottom:389.226667pt;}
.y91{bottom:389.893333pt;}
.y25{bottom:395.360000pt;}
.yf8{bottom:397.373333pt;}
.y69{bottom:398.973333pt;}
.yac{bottom:400.173333pt;}
.y71{bottom:403.240000pt;}
.y24{bottom:413.773333pt;}
.y4f{bottom:415.773333pt;}
.y90{bottom:417.506667pt;}
.yab{bottom:418.560000pt;}
.y68{bottom:426.560000pt;}
.y70{bottom:430.866667pt;}
.y23{bottom:432.200000pt;}
.y114{bottom:434.200000pt;}
.yaa{bottom:437.000000pt;}
.y4e{bottom:443.400000pt;}
.y8f{bottom:445.133333pt;}
.y22{bottom:450.600000pt;}
.y113{bottom:452.600000pt;}
.y67{bottom:454.200000pt;}
.ya9{bottom:455.400000pt;}
.y6f{bottom:458.466667pt;}
.y21{bottom:469.000000pt;}
.y4d{bottom:471.000000pt;}
.y8e{bottom:472.733333pt;}
.ya8{bottom:473.800000pt;}
.y66{bottom:481.800000pt;}
.y6e{bottom:486.066667pt;}
.y20{bottom:487.400000pt;}
.y112{bottom:489.400000pt;}
.ya7{bottom:492.200000pt;}
.y4c{bottom:498.600000pt;}
.y8d{bottom:500.333333pt;}
.y6d{bottom:503.933333pt;}
.y1f{bottom:505.800000pt;}
.y111{bottom:507.800000pt;}
.y65{bottom:509.400000pt;}
.ya6{bottom:510.600000pt;}
.y6c{bottom:519.266667pt;}
.y1e{bottom:524.200000pt;}
.y4b{bottom:526.200000pt;}
.y8c{bottom:527.933333pt;}
.ya5{bottom:529.000000pt;}
.y6b{bottom:534.600000pt;}
.y64{bottom:537.000000pt;}
.y1d{bottom:542.600000pt;}
.y110{bottom:544.600000pt;}
.ya4{bottom:547.400000pt;}
.y4a{bottom:553.800000pt;}
.y8b{bottom:555.533333pt;}
.y6a{bottom:556.200000pt;}
.y1c{bottom:561.000000pt;}
.y10f{bottom:563.000000pt;}
.y63{bottom:564.600000pt;}
.ya3{bottom:565.800000pt;}
.y8a{bottom:573.400000pt;}
.y1b{bottom:579.400000pt;}
.y49{bottom:581.400000pt;}
.ya2{bottom:584.200000pt;}
.y89{bottom:588.733333pt;}
.y62{bottom:592.200000pt;}
.y1a{bottom:597.800000pt;}
.y10e{bottom:599.800000pt;}
.y9e{bottom:603.533333pt;}
.y48{bottom:609.000000pt;}
.y88{bottom:610.333333pt;}
.y19{bottom:616.200000pt;}
.y10d{bottom:618.200000pt;}
.y61{bottom:619.800000pt;}
.y18{bottom:634.600000pt;}
.y7d{bottom:636.200000pt;}
.y47{bottom:636.600000pt;}
.y9d{bottom:645.800000pt;}
.y60{bottom:647.400000pt;}
.y17{bottom:652.866667pt;}
.y10c{bottom:655.000000pt;}
.y46{bottom:664.200000pt;}
.y16{bottom:671.266667pt;}
.y10b{bottom:673.400000pt;}
.y5f{bottom:675.000000pt;}
.yce{bottom:684.733333pt;}
.y15{bottom:689.666667pt;}
.y45{bottom:691.840000pt;}
.y5e{bottom:693.173333pt;}
.y14{bottom:708.106667pt;}
.y10a{bottom:710.226667pt;}
.ycd{bottom:712.373333pt;}
.y44{bottom:719.426667pt;}
.y13{bottom:726.506667pt;}
.y109{bottom:728.626667pt;}
.ycc{bottom:739.960000pt;}
.y12{bottom:744.893333pt;}
.y43{bottom:747.040000pt;}
.y11{bottom:763.293333pt;}
.y108{bottom:765.440000pt;}
.ycb{bottom:767.560000pt;}
.y42{bottom:774.626667pt;}
.y107{bottom:783.840000pt;}
.y10{bottom:787.040000pt;}
.yca{bottom:795.173333pt;}
.y41{bottom:802.226667pt;}
.yf{bottom:805.440000pt;}
.yc6{bottom:812.093333pt;}
.y106{bottom:820.626667pt;}
.ye{bottom:823.840000pt;}
.y40{bottom:829.840000pt;}
.yd{bottom:836.893333pt;}
.y105{bottom:839.040000pt;}
.yc{bottom:855.293333pt;}
.y3f{bottom:857.440000pt;}
.yb{bottom:873.706667pt;}
.y3e{bottom:875.840000pt;}
.yc5{bottom:879.560000pt;}
.y5d{bottom:885.040000pt;}
.ya{bottom:892.106667pt;}
.y3d{bottom:894.226667pt;}
.y9{bottom:910.506667pt;}
.y3c{bottom:912.626667pt;}
.y8{bottom:928.893333pt;}
.yc2{bottom:930.226667pt;}
.y3b{bottom:931.040000pt;}
.y5c{bottom:940.226667pt;}
.y7{bottom:947.293333pt;}
.y3a{bottom:949.440000pt;}
.y4{bottom:965.333333pt;}
.y39{bottom:967.866667pt;}
.y3{bottom:981.333333pt;}
.y2{bottom:996.666667pt;}
.y1{bottom:1012.000000pt;}
.y36{bottom:1013.200000pt;}
.h9{height:15.333333pt;}
.hb{height:18.400000pt;}
.hc{height:18.433333pt;}
.ha{height:36.800000pt;}
.h7{height:38.250000pt;}
.h3{height:43.031250pt;}
.h1{height:47.812500pt;}
.h2{height:50.203125pt;}
.hd{height:50.533333pt;}
.hf{height:50.566667pt;}
.h11{height:50.666667pt;}
.he{height:52.106771pt;}
.h10{height:52.593750pt;}
.h5{height:52.750000pt;}
.h8{height:56.843750pt;}
.h4{height:57.375000pt;}
.h6{height:59.583333pt;}
.h12{height:67.466667pt;}
.h0{height:1077.333333pt;}
.w9{width:32.700000pt;}
.wb{width:57.333333pt;}
.we{width:58.300000pt;}
.w6{width:80.800000pt;}
.wd{width:91.733333pt;}
.w7{width:92.833333pt;}
.wc{width:101.366667pt;}
.wa{width:113.500000pt;}
.w8{width:161.866667pt;}
.wf{width:196.973333pt;}
.w3{width:245.760000pt;}
.w5{width:251.000000pt;}
.w4{width:302.040000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x27{left:8.293333pt;}
.x1f{left:10.266667pt;}
.x36{left:12.133333pt;}
.x32{left:13.600000pt;}
.x21{left:15.200000pt;}
.x39{left:16.566667pt;}
.x2f{left:18.120000pt;}
.x1d{left:19.466667pt;}
.x2a{left:21.100000pt;}
.x2e{left:22.000000pt;}
.x22{left:24.533333pt;}
.x38{left:29.333333pt;}
.x25{left:30.800000pt;}
.x28{left:32.133333pt;}
.x3a{left:33.100000pt;}
.x30{left:35.226667pt;}
.x35{left:37.633333pt;}
.x2b{left:39.233333pt;}
.x26{left:43.200000pt;}
.x37{left:47.093333pt;}
.x29{left:57.493333pt;}
.x15{left:63.733333pt;}
.x24{left:64.826667pt;}
.x1b{left:87.333333pt;}
.x4{left:94.566655pt;}
.x3b{left:102.433322pt;}
.x42{left:113.633322pt;}
.xc{left:116.166655pt;}
.x9{left:117.633322pt;}
.x12{left:118.566655pt;}
.x1a{left:122.966655pt;}
.x7{left:126.033322pt;}
.xe{left:141.759988pt;}
.x18{left:142.826655pt;}
.x10{left:151.226655pt;}
.x17{left:195.773322pt;}
.x19{left:197.239988pt;}
.x2c{left:200.840000pt;}
.x43{left:202.173322pt;}
.x6{left:220.693322pt;}
.x3e{left:222.439988pt;}
.x2d{left:258.173333pt;}
.x41{left:263.239988pt;}
.x8{left:308.999988pt;}
.x3c{left:331.933322pt;}
.xd{left:334.599988pt;}
.x1c{left:338.333333pt;}
.xa{left:348.466655pt;}
.x31{left:359.533333pt;}
.x14{left:361.533333pt;}
.x11{left:376.066655pt;}
.x1{left:394.999988pt;}
.xb{left:396.999988pt;}
.x1e{left:419.133333pt;}
.x33{left:451.266667pt;}
.x34{left:509.573333pt;}
.x20{left:511.973333pt;}
.x3{left:528.773322pt;}
.x2{left:609.426655pt;}
.x3d{left:643.559988pt;}
.x23{left:673.840000pt;}
.x3f{left:687.466655pt;}
.x5{left:693.466655pt;}
.xf{left:697.866655pt;}
.x16{left:699.066655pt;}
.x40{left:708.399988pt;}
}




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