
    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_d80797bd3ed8a857ff4bd2c4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.963379;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3;src:url('chunks/assets/font_054ace433c31020046435200.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_0430463e77322ad16b94702f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.781738;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e27e240607ad895115ebca8b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.022461;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_171456504de690952edaa00e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.958008;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6f52dc6cbe248a8d82aa8e44.woff')format("woff");}.ff15{font-family:ff15;line-height:0.730469;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:ff16;src:url('chunks/assets/font_d2b138ce4d92d94999394499.woff')format("woff");}.ff16{font-family:ff16;line-height:0.953125;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.177734px;}
.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;}
}
.ws2{word-spacing:-21.878999px;}
.ws3{word-spacing:-14.567871px;}
.ws5{word-spacing:-14.545897px;}
.wsb{word-spacing:-14.482177px;}
.wsf{word-spacing:-13.447265px;}
.ws0{word-spacing:-13.368163px;}
.ws8{word-spacing:-12.326660px;}
.wse{word-spacing:-6.960937px;}
.wsc{word-spacing:-6.785156px;}
.wsd{word-spacing:-0.058500px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:155.647699px;}
.ws7{word-spacing:161.854095px;}
.ws9{word-spacing:233.854092px;}
.wsa{word-spacing:277.954090px;}
.ws4{word-spacing:305.854089px;}
._3{margin-left:-5.519540px;}
._5{margin-left:-3.879000px;}
._4{margin-left:-2.359701px;}
._0{margin-left:-1.160156px;}
._2{width:1.196993px;}
._1{width:2.917968px;}
._6{width:4.056754px;}
._9{width:5.590635px;}
._11{width:7.016673px;}
._a{width:115.637792px;}
._b{width:139.646724px;}
._d{width:189.899992px;}
._c{width:207.899991px;}
._f{width:261.899989px;}
._e{width:279.899988px;}
._10{width:323.999986px;}
._8{width:333.899986px;}
._7{width:351.899985px;}
.fc8{color:transparent;}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(32,33,36);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(60,64,67);}
.fc2{color:rgb(19,115,51);}
.fc1{color:rgb(25,103,210);}
.fc6{color:rgb(26,115,232);}
.fc0{color:rgb(95,99,104);}
.fs6{font-size:49.499998px;}
.fs0{font-size:53.999998px;}
.fs5{font-size:58.499998px;}
.fs3{font-size:62.999997px;}
.fs7{font-size:80.999997px;}
.fs4{font-size:89.999996px;}
.fs1{font-size:98.999996px;}
.fs2{font-size:99.449996px;}
.fs8{font-size:125.999995px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.629961px;}
.ya{bottom:2.250000px;}
.y5f{bottom:3.375000px;}
.y13{bottom:4.500000px;}
.y10{bottom:5.625000px;}
.y3{bottom:7.875000px;}
.y89{bottom:9.000000px;}
.y2a{bottom:13.499999px;}
.y33{bottom:14.913824px;}
.y9{bottom:15.749999px;}
.y61{bottom:19.124999px;}
.yb{bottom:19.863280px;}
.y68{bottom:22.499999px;}
.y69{bottom:26.999999px;}
.y6{bottom:28.124999px;}
.y2{bottom:35.999998px;}
.y5d{bottom:37.124998px;}
.y19{bottom:43.294920px;}
.y32{bottom:54.128046px;}
.y4f{bottom:64.863279px;}
.y5c{bottom:69.749997px;}
.y5b{bottom:73.124997px;}
.y1f{bottom:74.988278px;}
.y4b{bottom:77.835934px;}
.y40{bottom:85.869137px;}
.y28{bottom:89.999996px;}
.y31{bottom:93.342305px;}
.y4a{bottom:93.919918px;}
.yc{bottom:96.363277px;}
.y18{bottom:102.744136px;}
.y50{bottom:110.988277px;}
.y3f{bottom:117.369136px;}
.y20{bottom:128.988276px;}
.y30{bottom:132.556635px;}
.y49{bottom:140.835932px;}
.y3e{bottom:148.869134px;}
.y17{bottom:154.494134px;}
.y51{bottom:155.988275px;}
.y48{bottom:156.919915px;}
.y26{bottom:166.499993px;}
.y2f{bottom:171.770893px;}
.yd{bottom:173.988274px;}
.y4e{bottom:176.129954px;}
.y3d{bottom:180.369133px;}
.y21{bottom:184.113274px;}
.y52{bottom:202.113273px;}
.y16{bottom:206.244132px;}
.y2e{bottom:210.985224px;}
.y3c{bottom:211.869132px;}
.y22{bottom:238.113271px;}
.y3b{bottom:243.369130px;}
.y53{bottom:247.113271px;}
.y34{bottom:249.345693px;}
.y2d{bottom:250.199446px;}
.ye{bottom:250.488271px;}
.y15{bottom:257.994130px;}
.y3a{bottom:274.869129px;}
.y55{bottom:275.129950px;}
.y2c{bottom:286.874988px;}
.y23{bottom:293.238269px;}
.y57{bottom:312.254948px;}
.y56{bottom:388.754945px;}
.y54{bottom:465.254942px;}
.y4d{bottom:508.004940px;}
.y4c{bottom:521.999978px;}
.y67{bottom:584.504937px;}
.y66{bottom:603.629936px;}
.y47{bottom:644.129934px;}
.y86{bottom:675.629933px;}
.y85{bottom:711.629931px;}
.y84{bottom:747.629930px;}
.y83{bottom:783.629928px;}
.y82{bottom:819.629927px;}
.y81{bottom:855.629925px;}
.y80{bottom:891.629924px;}
.y87{bottom:928.754922px;}
.y45{bottom:976.004920px;}
.y46{bottom:985.004920px;}
.y44{bottom:989.999959px;}
.y65{bottom:1052.504917px;}
.y64{bottom:1071.629916px;}
.y39{bottom:1112.129915px;}
.y43{bottom:1121.129914px;}
.y7e{bottom:1143.629913px;}
.y42{bottom:1158.254913px;}
.y7d{bottom:1179.629912px;}
.y7c{bottom:1215.629910px;}
.y7b{bottom:1251.629909px;}
.y7a{bottom:1287.629907px;}
.y79{bottom:1323.629906px;}
.y78{bottom:1359.629904px;}
.y7f{bottom:1396.754903px;}
.y41{bottom:1430.504902px;}
.y38{bottom:1444.004901px;}
.y36{bottom:1453.004901px;}
.y37{bottom:1457.999939px;}
.y63{bottom:1520.504898px;}
.y62{bottom:1539.629897px;}
.y35{bottom:1550.249935px;}
.y1e{bottom:1580.129895px;}
.y76{bottom:1611.629894px;}
.y75{bottom:1647.629892px;}
.y25{bottom:1679.129891px;}
.y74{bottom:1683.629891px;}
.y29{bottom:1716.254890px;}
.y73{bottom:1719.629889px;}
.y72{bottom:1755.629888px;}
.y71{bottom:1791.629886px;}
.y27{bottom:1792.754886px;}
.y70{bottom:1827.629885px;}
.y77{bottom:1864.754883px;}
.y24{bottom:1869.254883px;}
.y2b{bottom:1904.624921px;}
.y1d{bottom:1912.004881px;}
.y1c{bottom:1921.004881px;}
.y1b{bottom:1925.999920px;}
.y60{bottom:1988.504878px;}
.y5e{bottom:2007.629877px;}
.y14{bottom:2048.129876px;}
.y8{bottom:2056.004875px;}
.y6e{bottom:2151.629871px;}
.y6d{bottom:2187.629870px;}
.y6c{bottom:2223.629868px;}
.y6b{bottom:2259.629867px;}
.y6a{bottom:2295.629865px;}
.y5a{bottom:2326.004864px;}
.y6f{bottom:2332.754864px;}
.y1a{bottom:2366.504863px;}
.y12{bottom:2380.004862px;}
.y7{bottom:2383.874901px;}
.yf{bottom:2389.004862px;}
.y11{bottom:2393.999900px;}
.y8b{bottom:2491.874896px;}
.y8a{bottom:2542.004855px;}
.y88{bottom:2543.129855px;}
.y8e{bottom:2546.999894px;}
.y8d{bottom:2551.499894px;}
.y8c{bottom:2553.749894px;}
.y1{bottom:2606.129853px;}
.y59{bottom:2620.124891px;}
.y5{bottom:2621.249891px;}
.y58{bottom:2625.749891px;}
.h10{height:17.999999px;}
.hd{height:22.499999px;}
.h1b{height:26.999999px;}
.h19{height:28.124999px;}
.h1c{height:29.249999px;}
.h4{height:31.499999px;}
.h11{height:35.674803px;}
.h18{height:35.999998px;}
.h1a{height:38.917967px;}
.h1e{height:39.421141px;}
.h3{height:40.499998px;}
.h13{height:43.874998px;}
.h9{height:45.404295px;}
.hf{height:46.588621px;}
.h2{height:49.499998px;}
.h1d{height:51.299998px;}
.ha{height:59.849998px;}
.h14{height:60.749997px;}
.h7{height:72.001797px;}
.h15{height:76.949997px;}
.hb{height:85.499996px;}
.h5{height:94.049996px;}
.h16{height:112.499995px;}
.h17{height:119.699995px;}
.h12{height:213.749991px;}
.hc{height:269.999989px;}
.he{height:312.749987px;}
.h8{height:2594.249892px;}
.h6{height:2666.249889px;}
.h0{height:2666.879850px;}
.h1{height:2667.000000px;}
.w1d{width:31.499999px;}
.w14{width:37.124998px;}
.w13{width:44.999998px;}
.w23{width:48.374998px;}
.w22{width:49.499998px;}
.w2e{width:51.749998px;}
.w11{width:52.874998px;}
.w4e{width:57.374998px;}
.w20{width:60.749997px;}
.wc{width:61.874997px;}
.w26{width:64.124997px;}
.wa{width:65.249997px;}
.w9{width:67.499997px;}
.w19{width:73.124997px;}
.w1a{width:75.374997px;}
.w5{width:78.749997px;}
.w3f{width:82.124997px;}
.w18{width:87.749996px;}
.w6{width:89.999996px;}
.w3b{width:91.124996px;}
.w2f{width:92.249996px;}
.we{width:93.374996px;}
.w29{width:96.749996px;}
.w4b{width:100.124996px;}
.w25{width:101.249996px;}
.w4d{width:106.875001px;}
.w37{width:109.124995px;}
.w12{width:110.249995px;}
.w35{width:111.374995px;}
.w1e{width:113.624995px;}
.w3d{width:118.124995px;}
.w24{width:121.499995px;}
.w1f{width:127.124995px;}
.w4a{width:129.374995px;}
.w2a{width:132.749994px;}
.w28{width:138.374994px;}
.w4c{width:145.125005px;}
.w3c{width:147.374994px;}
.w42{width:149.624994px;}
.w49{width:158.624993px;}
.w31{width:160.874993px;}
.w48{width:161.999993px;}
.w38{width:165.374993px;}
.w36{width:167.624993px;}
.w47{width:169.874993px;}
.w2{width:170.999993px;}
.w3e{width:174.374993px;}
.w40{width:176.624993px;}
.w33{width:177.749993px;}
.w44{width:179.999992px;}
.w39{width:182.249992px;}
.w2b{width:187.874992px;}
.w17{width:202.499992px;}
.w43{width:205.874991px;}
.w46{width:208.124991px;}
.w32{width:217.124991px;}
.w41{width:232.874990px;}
.w34{width:233.999990px;}
.w45{width:236.249990px;}
.w3a{width:238.499990px;}
.w1b{width:242.999990px;}
.wb{width:245.249990px;}
.w21{width:287.999988px;}
.w2c{width:331.874986px;}
.w27{width:339.749986px;}
.w15{width:359.999985px;}
.wf{width:361.124985px;}
.w2d{width:362.249985px;}
.w7{width:430.874982px;}
.w10{width:431.999982px;}
.w1c{width:467.999981px;}
.wd{width:512.999979px;}
.w16{width:557.999977px;}
.w8{width:647.999973px;}
.w30{width:733.499969px;}
.w4{width:827.999966px;}
.w3{width:2165.624910px;}
.w1{width:2166.000000px;}
.w0{width:2166.119940px;}
.x0{left:0.000000px;}
.x48{left:1.125000px;}
.x27{left:7.875000px;}
.xc7{left:9.984380px;}
.x51{left:13.499999px;}
.x7b{left:16.104693px;}
.x33{left:18.728171px;}
.x89{left:20.232427px;}
.x42{left:23.167968px;}
.x61{left:24.187499px;}
.xc0{left:25.874999px;}
.x8e{left:26.999999px;}
.xb9{left:29.232426px;}
.x21{left:30.374999px;}
.x11{left:31.547821px;}
.x4c{left:33.749999px;}
.x28{left:37.124998px;}
.x52{left:42.749998px;}
.xc8{left:44.999998px;}
.xc6{left:46.124993px;}
.x5b{left:53.999998px;}
.x22{left:59.624998px;}
.x8a{left:60.732425px;}
.x68{left:61.874997px;}
.x2{left:62.999997px;}
.x7c{left:64.633731px;}
.x72{left:66.374997px;}
.x10{left:71.999997px;}
.x35{left:80.490741px;}
.x34{left:82.178241px;}
.x5c{left:83.249997px;}
.x8d{left:85.499996px;}
.x69{left:91.124996px;}
.xb6{left:98.999996px;}
.xa8{left:100.124996px;}
.xbd{left:101.249996px;}
.xbc{left:104.624996px;}
.xbe{left:105.749996px;}
.x24{left:109.124995px;}
.xbf{left:113.624995px;}
.x4a{left:117.281245px;}
.xc5{left:118.406256px;}
.x7e{left:119.407581px;}
.x7d{left:121.657581px;}
.xba{left:123.749995px;}
.x8f{left:124.874995px;}
.x9d{left:127.124995px;}
.x63{left:128.812495px;}
.xa5{left:136.124994px;}
.x47{left:137.999874px;}
.x49{left:140.238275px;}
.xb4{left:141.749994px;}
.x4b{left:143.999994px;}
.xb5{left:146.249994px;}
.x37{left:152.037138px;}
.x36{left:154.287138px;}
.x77{left:157.499993px;}
.xc2{left:161.999993px;}
.xc4{left:164.249982px;}
.x13{left:166.222170px;}
.x12{left:167.909670px;}
.x64{left:170.437493px;}
.x80{left:174.743957px;}
.x2a{left:176.853508px;}
.x7f{left:178.681457px;}
.x56{left:183.374992px;}
.xab{left:194.624992px;}
.x98{left:195.749992px;}
.x1{left:196.874992px;}
.xb0{left:197.999992px;}
.x90{left:199.124992px;}
.xa0{left:200.249992px;}
.x2b{left:203.624992px;}
.x79{left:208.124991px;}
.x57{left:212.624991px;}
.x39{left:222.458535px;}
.x38{left:226.396035px;}
.x82{left:231.653179px;}
.x81{left:234.465679px;}
.x9f{left:238.499990px;}
.x9e{left:247.499990px;}
.x66{left:255.937489px;}
.xac{left:271.124989px;}
.x7a{left:272.249989px;}
.x6d{left:280.124988px;}
.x91{left:281.249988px;}
.x83{left:282.994707px;}
.x3a{left:294.124920px;}
.x2c{left:296.999988px;}
.x45{left:300.374987px;}
.x31{left:301.499987px;}
.x6e{left:309.374987px;}
.x15{left:311.481505px;}
.x14{left:313.731505px;}
.x86{left:317.443346px;}
.x85{left:325.318346px;}
.x67{left:328.499986px;}
.x46{left:329.624986px;}
.x32{left:330.749986px;}
.x84{left:333.193346px;}
.x92{left:355.499985px;}
.x3c{left:357.012417px;}
.x3b{left:360.387417px;}
.x3f{left:408.568339px;}
.x3e{left:416.443339px;}
.x3d{left:424.318338px;}
.x88{left:447.749981px;}
.x2d{left:453.374981px;}
.x17{left:455.615884px;}
.x16{left:459.553384px;}
.x87{left:476.999980px;}
.x2e{left:482.624980px;}
.xb7{left:515.249979px;}
.x4d{left:521.999978px;}
.x19{left:599.392667px;}
.x18{left:602.205167px;}
.x4e{left:611.718725px;}
.x6a{left:626.853495px;}
.x4f{left:638.999973px;}
.x6b{left:653.624973px;}
.x9a{left:669.374972px;}
.x93{left:671.624972px;}
.xb8{left:677.249972px;}
.x99{left:678.374972px;}
.xbb{left:680.624972px;}
.xa2{left:689.624971px;}
.xa1{left:698.624971px;}
.x1b{left:735.192041px;}
.x50{left:736.874969px;}
.x1a{left:738.567041px;}
.x6c{left:740.249969px;}
.x3{left:750.814427px;}
.x4{left:767.126927px;}
.x1d{left:812.249966px;}
.x1c{left:820.124966px;}
.x5{left:867.251923px;}
.x6{left:872.033172px;}
.x7{left:875.689422px;}
.x2f{left:881.999963px;}
.xae{left:939.374961px;}
.xad{left:948.374960px;}
.x1e{left:971.999960px;}
.x53{left:986.853480px;}
.x8{left:995.783167px;}
.x9{left:1000.564417px;}
.xa{left:1003.095667px;}
.x54{left:1013.624958px;}
.x1f{left:1051.031206px;}
.x23{left:1077.749955px;}
.x30{left:1078.874955px;}
.x55{left:1106.999954px;}
.xb{left:1135.001911px;}
.xc{left:1139.783161px;}
.xd{left:1143.439411px;}
.x73{left:1151.999952px;}
.xa4{left:1202.624950px;}
.xa3{left:1211.624950px;}
.xe{left:1254.533156px;}
.x6f{left:1256.853469px;}
.xf{left:1259.314406px;}
.xb1{left:1267.470656px;}
.x70{left:1283.624947px;}
.xb2{left:1292.220655px;}
.xaf{left:1320.749945px;}
.x41{left:1329.749945px;}
.x40{left:1358.999943px;}
.xc3{left:1360.124943px;}
.x5d{left:1421.999941px;}
.x95{left:1429.874940px;}
.x71{left:1433.249940px;}
.x94{left:1438.874940px;}
.x43{left:1511.999937px;}
.x58{left:1526.853458px;}
.x20{left:1529.999936px;}
.x59{left:1553.624935px;}
.xc1{left:1580.624934px;}
.x5a{left:1596.374933px;}
.xa7{left:1598.624933px;}
.x78{left:1601.999933px;}
.xa6{left:1607.624933px;}
.x29{left:1691.999930px;}
.x74{left:1706.853450px;}
.x44{left:1709.999929px;}
.x75{left:1733.624928px;}
.x25{left:1768.288989px;}
.x5f{left:1781.999926px;}
.x60{left:1806.749925px;}
.xc9{left:1811.390550px;}
.x97{left:1862.999922px;}
.xaa{left:1864.124922px;}
.x96{left:1871.999922px;}
.xa9{left:1873.124922px;}
.x76{left:1882.124922px;}
.x5e{left:1886.853443px;}
.xb3{left:1900.124921px;}
.x62{left:1911.374920px;}
.x9c{left:1931.624920px;}
.x9b{left:1940.624919px;}
.x26{left:2002.499917px;}
.x65{left:2009.249916px;}
.x8b{left:2017.335853px;}
.xca{left:2080.124913px;}
.x8c{left:2118.374912px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.046875pt;}
.ws2{word-spacing:-19.447999pt;}
.ws3{word-spacing:-12.949218pt;}
.ws5{word-spacing:-12.929687pt;}
.wsb{word-spacing:-12.873046pt;}
.wsf{word-spacing:-11.953125pt;}
.ws0{word-spacing:-11.882812pt;}
.ws8{word-spacing:-10.957031pt;}
.wse{word-spacing:-6.187500pt;}
.wsc{word-spacing:-6.031250pt;}
.wsd{word-spacing:-0.052000pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:138.353510pt;}
.ws7{word-spacing:143.870307pt;}
.ws9{word-spacing:207.870304pt;}
.wsa{word-spacing:247.070303pt;}
.ws4{word-spacing:271.870301pt;}
._3{margin-left:-4.906258pt;}
._5{margin-left:-3.448000pt;}
._4{margin-left:-2.097512pt;}
._0{margin-left:-1.031250pt;}
._2{width:1.063994pt;}
._1{width:2.593750pt;}
._6{width:3.606004pt;}
._9{width:4.969453pt;}
._11{width:6.237042pt;}
._a{width:102.789149pt;}
._b{width:124.130421pt;}
._d{width:168.799993pt;}
._c{width:184.799992pt;}
._f{width:232.799990pt;}
._e{width:248.799990pt;}
._10{width:287.999988pt;}
._8{width:296.799988pt;}
._7{width:312.799987pt;}
.fs6{font-size:43.999998pt;}
.fs0{font-size:47.999998pt;}
.fs5{font-size:51.999998pt;}
.fs3{font-size:55.999998pt;}
.fs7{font-size:71.999997pt;}
.fs4{font-size:79.999997pt;}
.fs1{font-size:87.999996pt;}
.fs2{font-size:88.399996pt;}
.fs8{font-size:111.999995pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.559965pt;}
.ya{bottom:2.000000pt;}
.y5f{bottom:3.000000pt;}
.y13{bottom:4.000000pt;}
.y10{bottom:5.000000pt;}
.y3{bottom:7.000000pt;}
.y89{bottom:8.000000pt;}
.y2a{bottom:12.000000pt;}
.y33{bottom:13.256732pt;}
.y9{bottom:13.999999pt;}
.y61{bottom:16.999999pt;}
.yb{bottom:17.656249pt;}
.y68{bottom:19.999999pt;}
.y69{bottom:23.999999pt;}
.y6{bottom:24.999999pt;}
.y2{bottom:31.999999pt;}
.y5d{bottom:32.999999pt;}
.y19{bottom:38.484373pt;}
.y32{bottom:48.113819pt;}
.y4f{bottom:57.656248pt;}
.y5c{bottom:61.999997pt;}
.y5b{bottom:64.999997pt;}
.y1f{bottom:66.656247pt;}
.y4b{bottom:69.187497pt;}
.y40{bottom:76.328122pt;}
.y28{bottom:79.999997pt;}
.y31{bottom:82.970938pt;}
.y4a{bottom:83.484372pt;}
.yc{bottom:85.656246pt;}
.y18{bottom:91.328121pt;}
.y50{bottom:98.656246pt;}
.y3f{bottom:104.328121pt;}
.y20{bottom:114.656245pt;}
.y30{bottom:117.828120pt;}
.y49{bottom:125.187495pt;}
.y3e{bottom:132.328119pt;}
.y17{bottom:137.328119pt;}
.y51{bottom:138.656244pt;}
.y48{bottom:139.484369pt;}
.y26{bottom:147.999994pt;}
.y2f{bottom:152.685239pt;}
.yd{bottom:154.656244pt;}
.y4e{bottom:156.559959pt;}
.y3d{bottom:160.328118pt;}
.y21{bottom:163.656243pt;}
.y52{bottom:179.656243pt;}
.y16{bottom:183.328117pt;}
.y2e{bottom:187.542421pt;}
.y3c{bottom:188.328117pt;}
.y22{bottom:211.656241pt;}
.y3b{bottom:216.328116pt;}
.y53{bottom:219.656241pt;}
.y34{bottom:221.640616pt;}
.y2d{bottom:222.399508pt;}
.ye{bottom:222.656241pt;}
.y15{bottom:229.328115pt;}
.y3a{bottom:244.328115pt;}
.y55{bottom:244.559955pt;}
.y2c{bottom:254.999989pt;}
.y23{bottom:260.656239pt;}
.y57{bottom:277.559954pt;}
.y56{bottom:345.559951pt;}
.y54{bottom:413.559948pt;}
.y4d{bottom:451.559947pt;}
.y4c{bottom:463.999981pt;}
.y67{bottom:519.559944pt;}
.y66{bottom:536.559943pt;}
.y47{bottom:572.559942pt;}
.y86{bottom:600.559940pt;}
.y85{bottom:632.559939pt;}
.y84{bottom:664.559938pt;}
.y83{bottom:696.559936pt;}
.y82{bottom:728.559935pt;}
.y81{bottom:760.559934pt;}
.y80{bottom:792.559932pt;}
.y87{bottom:825.559931pt;}
.y45{bottom:867.559929pt;}
.y46{bottom:875.559929pt;}
.y44{bottom:879.999963pt;}
.y65{bottom:935.559926pt;}
.y64{bottom:952.559926pt;}
.y39{bottom:988.559924pt;}
.y43{bottom:996.559924pt;}
.y7e{bottom:1016.559923pt;}
.y42{bottom:1029.559923pt;}
.y7d{bottom:1048.559922pt;}
.y7c{bottom:1080.559920pt;}
.y7b{bottom:1112.559919pt;}
.y7a{bottom:1144.559918pt;}
.y79{bottom:1176.559916pt;}
.y78{bottom:1208.559915pt;}
.y7f{bottom:1241.559914pt;}
.y41{bottom:1271.559912pt;}
.y38{bottom:1283.559912pt;}
.y36{bottom:1291.559912pt;}
.y37{bottom:1295.999946pt;}
.y63{bottom:1351.559909pt;}
.y62{bottom:1368.559908pt;}
.y35{bottom:1377.999943pt;}
.y1e{bottom:1404.559907pt;}
.y76{bottom:1432.559906pt;}
.y75{bottom:1464.559904pt;}
.y25{bottom:1492.559903pt;}
.y74{bottom:1496.559903pt;}
.y29{bottom:1525.559902pt;}
.y73{bottom:1528.559902pt;}
.y72{bottom:1560.559900pt;}
.y71{bottom:1592.559899pt;}
.y27{bottom:1593.559899pt;}
.y70{bottom:1624.559898pt;}
.y77{bottom:1657.559896pt;}
.y24{bottom:1661.559896pt;}
.y2b{bottom:1692.999929pt;}
.y1d{bottom:1699.559895pt;}
.y1c{bottom:1707.559894pt;}
.y1b{bottom:1711.999929pt;}
.y60{bottom:1767.559892pt;}
.y5e{bottom:1784.559891pt;}
.y14{bottom:1820.559890pt;}
.y8{bottom:1827.559889pt;}
.y6e{bottom:1912.559886pt;}
.y6d{bottom:1944.559884pt;}
.y6c{bottom:1976.559883pt;}
.y6b{bottom:2008.559882pt;}
.y6a{bottom:2040.559880pt;}
.y5a{bottom:2067.559879pt;}
.y6f{bottom:2073.559879pt;}
.y1a{bottom:2103.559878pt;}
.y12{bottom:2115.559877pt;}
.y7{bottom:2118.999912pt;}
.yf{bottom:2123.559877pt;}
.y11{bottom:2127.999911pt;}
.y8b{bottom:2214.999908pt;}
.y8a{bottom:2259.559871pt;}
.y88{bottom:2260.559871pt;}
.y8e{bottom:2263.999906pt;}
.y8d{bottom:2267.999906pt;}
.y8c{bottom:2269.999905pt;}
.y1{bottom:2316.559869pt;}
.y59{bottom:2328.999903pt;}
.y5{bottom:2329.999903pt;}
.y58{bottom:2333.999903pt;}
.h10{height:15.999999pt;}
.hd{height:19.999999pt;}
.h1b{height:23.999999pt;}
.h19{height:24.999999pt;}
.h1c{height:25.999999pt;}
.h4{height:27.999999pt;}
.h11{height:31.710936pt;}
.h18{height:31.999999pt;}
.h1a{height:34.593749pt;}
.h1e{height:35.041014pt;}
.h3{height:35.999999pt;}
.h13{height:38.999998pt;}
.h9{height:40.359373pt;}
.hf{height:41.412108pt;}
.h2{height:43.999998pt;}
.h1d{height:45.599998pt;}
.ha{height:53.199998pt;}
.h14{height:53.999998pt;}
.h7{height:64.001597pt;}
.h15{height:68.399997pt;}
.hb{height:75.999997pt;}
.h5{height:83.599997pt;}
.h16{height:99.999996pt;}
.h17{height:106.399996pt;}
.h12{height:189.999992pt;}
.hc{height:239.999990pt;}
.he{height:277.999988pt;}
.h8{height:2305.999904pt;}
.h6{height:2369.999901pt;}
.h0{height:2370.559867pt;}
.h1{height:2370.666667pt;}
.w1d{width:27.999999pt;}
.w14{width:32.999999pt;}
.w13{width:39.999998pt;}
.w23{width:42.999998pt;}
.w22{width:43.999998pt;}
.w2e{width:45.999998pt;}
.w11{width:46.999998pt;}
.w4e{width:50.999998pt;}
.w20{width:53.999998pt;}
.wc{width:54.999998pt;}
.w26{width:56.999998pt;}
.wa{width:57.999998pt;}
.w9{width:59.999997pt;}
.w19{width:64.999997pt;}
.w1a{width:66.999997pt;}
.w5{width:69.999997pt;}
.w3f{width:72.999997pt;}
.w18{width:77.999997pt;}
.w6{width:79.999997pt;}
.w3b{width:80.999997pt;}
.w2f{width:81.999997pt;}
.we{width:82.999997pt;}
.w29{width:85.999996pt;}
.w4b{width:88.999996pt;}
.w25{width:89.999996pt;}
.w4d{width:95.000001pt;}
.w37{width:96.999996pt;}
.w12{width:97.999996pt;}
.w35{width:98.999996pt;}
.w1e{width:100.999996pt;}
.w3d{width:104.999996pt;}
.w24{width:107.999995pt;}
.w1f{width:112.999995pt;}
.w4a{width:114.999995pt;}
.w2a{width:117.999995pt;}
.w28{width:122.999995pt;}
.w4c{width:129.000004pt;}
.w3c{width:130.999995pt;}
.w42{width:132.999994pt;}
.w49{width:140.999994pt;}
.w31{width:142.999994pt;}
.w48{width:143.999994pt;}
.w38{width:146.999994pt;}
.w36{width:148.999994pt;}
.w47{width:150.999994pt;}
.w2{width:151.999994pt;}
.w3e{width:154.999994pt;}
.w40{width:156.999993pt;}
.w33{width:157.999993pt;}
.w44{width:159.999993pt;}
.w39{width:161.999993pt;}
.w2b{width:166.999993pt;}
.w17{width:179.999992pt;}
.w43{width:182.999992pt;}
.w46{width:184.999992pt;}
.w32{width:192.999992pt;}
.w41{width:206.999991pt;}
.w34{width:207.999991pt;}
.w45{width:209.999991pt;}
.w3a{width:211.999991pt;}
.w1b{width:215.999991pt;}
.wb{width:217.999991pt;}
.w21{width:255.999989pt;}
.w2c{width:294.999988pt;}
.w27{width:301.999987pt;}
.w15{width:319.999987pt;}
.wf{width:320.999987pt;}
.w2d{width:321.999987pt;}
.w7{width:382.999984pt;}
.w10{width:383.999984pt;}
.w1c{width:415.999983pt;}
.wd{width:455.999981pt;}
.w16{width:495.999979pt;}
.w8{width:575.999976pt;}
.w30{width:651.999973pt;}
.w4{width:735.999969pt;}
.w3{width:1924.999920pt;}
.w1{width:1925.333333pt;}
.w0{width:1925.439947pt;}
.x0{left:0.000000pt;}
.x48{left:1.000000pt;}
.x27{left:7.000000pt;}
.xc7{left:8.875004pt;}
.x51{left:12.000000pt;}
.x7b{left:14.315283pt;}
.x33{left:16.647263pt;}
.x89{left:17.984379pt;}
.x42{left:20.593749pt;}
.x61{left:21.499999pt;}
.xc0{left:22.999999pt;}
.x8e{left:23.999999pt;}
.xb9{left:25.984379pt;}
.x21{left:26.999999pt;}
.x11{left:28.042508pt;}
.x4c{left:29.999999pt;}
.x28{left:32.999999pt;}
.x52{left:37.999998pt;}
.xc8{left:39.999998pt;}
.xc6{left:40.999993pt;}
.x5b{left:47.999998pt;}
.x22{left:52.999998pt;}
.x8a{left:53.984378pt;}
.x68{left:54.999998pt;}
.x2{left:55.999998pt;}
.x7c{left:57.452206pt;}
.x72{left:58.999998pt;}
.x10{left:63.999997pt;}
.x35{left:71.547325pt;}
.x34{left:73.047325pt;}
.x5c{left:73.999997pt;}
.x8d{left:75.999997pt;}
.x69{left:80.999997pt;}
.xb6{left:87.999996pt;}
.xa8{left:88.999996pt;}
.xbd{left:89.999996pt;}
.xbc{left:92.999996pt;}
.xbe{left:93.999996pt;}
.x24{left:96.999996pt;}
.xbf{left:100.999996pt;}
.x4a{left:104.249996pt;}
.xc5{left:105.250005pt;}
.x7e{left:106.140072pt;}
.x7d{left:108.140072pt;}
.xba{left:109.999995pt;}
.x8f{left:110.999995pt;}
.x9d{left:112.999995pt;}
.x63{left:114.499995pt;}
.xa5{left:120.999995pt;}
.x47{left:122.666555pt;}
.x49{left:124.656245pt;}
.xb4{left:125.999995pt;}
.x4b{left:127.999995pt;}
.xb5{left:129.999995pt;}
.x37{left:135.144122pt;}
.x36{left:137.144122pt;}
.x77{left:139.999994pt;}
.xc2{left:143.999994pt;}
.xc4{left:145.999984pt;}
.x13{left:147.753040pt;}
.x12{left:149.253040pt;}
.x64{left:151.499994pt;}
.x80{left:155.327962pt;}
.x2a{left:157.203118pt;}
.x7f{left:158.827961pt;}
.x56{left:162.999993pt;}
.xab{left:172.999993pt;}
.x98{left:173.999993pt;}
.x1{left:174.999993pt;}
.xb0{left:175.999993pt;}
.x90{left:176.999993pt;}
.xa0{left:177.999993pt;}
.x2b{left:180.999992pt;}
.x79{left:184.999992pt;}
.x57{left:188.999992pt;}
.x39{left:197.740920pt;}
.x38{left:201.240920pt;}
.x82{left:205.913937pt;}
.x81{left:208.413937pt;}
.x9f{left:211.999991pt;}
.x9e{left:219.999991pt;}
.x66{left:227.499991pt;}
.xac{left:240.999990pt;}
.x7a{left:241.999990pt;}
.x6d{left:248.999990pt;}
.x91{left:249.999990pt;}
.x83{left:251.550850pt;}
.x3a{left:261.444373pt;}
.x2c{left:263.999989pt;}
.x45{left:266.999989pt;}
.x31{left:267.999989pt;}
.x6e{left:274.999989pt;}
.x15{left:276.872449pt;}
.x14{left:278.872449pt;}
.x86{left:282.171863pt;}
.x85{left:289.171863pt;}
.x67{left:291.999988pt;}
.x46{left:292.999988pt;}
.x32{left:293.999988pt;}
.x84{left:296.171863pt;}
.x92{left:315.999987pt;}
.x3c{left:317.344371pt;}
.x3b{left:320.344371pt;}
.x3f{left:363.171857pt;}
.x3e{left:370.171857pt;}
.x3d{left:377.171856pt;}
.x88{left:397.999983pt;}
.x2d{left:402.999983pt;}
.x17{left:404.991897pt;}
.x16{left:408.491897pt;}
.x87{left:423.999982pt;}
.x2e{left:428.999982pt;}
.xb7{left:457.999981pt;}
.x4d{left:463.999981pt;}
.x19{left:532.793482pt;}
.x18{left:535.293482pt;}
.x4e{left:543.749977pt;}
.x6a{left:557.203107pt;}
.x4f{left:567.999976pt;}
.x6b{left:580.999976pt;}
.x9a{left:594.999975pt;}
.x93{left:596.999975pt;}
.xb8{left:601.999975pt;}
.x99{left:602.999975pt;}
.xbb{left:604.999975pt;}
.xa2{left:612.999974pt;}
.xa1{left:620.999974pt;}
.x1b{left:653.504037pt;}
.x50{left:654.999973pt;}
.x1a{left:656.504037pt;}
.x6c{left:657.999973pt;}
.x3{left:667.390602pt;}
.x4{left:681.890602pt;}
.x1d{left:721.999970pt;}
.x1c{left:728.999970pt;}
.x5{left:770.890598pt;}
.x6{left:775.140598pt;}
.x7{left:778.390598pt;}
.x2f{left:783.999967pt;}
.xae{left:834.999965pt;}
.xad{left:842.999965pt;}
.x1e{left:863.999964pt;}
.x53{left:877.203093pt;}
.x8{left:885.140593pt;}
.x9{left:889.390593pt;}
.xa{left:891.640593pt;}
.x54{left:900.999962pt;}
.x1f{left:934.249961pt;}
.x23{left:957.999960pt;}
.x30{left:958.999960pt;}
.x55{left:983.999959pt;}
.xb{left:1008.890588pt;}
.xc{left:1013.140588pt;}
.xd{left:1016.390588pt;}
.x73{left:1023.999957pt;}
.xa4{left:1068.999955pt;}
.xa3{left:1076.999955pt;}
.xe{left:1115.140584pt;}
.x6f{left:1117.203083pt;}
.xf{left:1119.390583pt;}
.xb1{left:1126.640583pt;}
.x70{left:1140.999952pt;}
.xb2{left:1148.640582pt;}
.xaf{left:1173.999951pt;}
.x41{left:1181.999951pt;}
.x40{left:1207.999950pt;}
.xc3{left:1208.999950pt;}
.x5d{left:1263.999947pt;}
.x95{left:1270.999947pt;}
.x71{left:1273.999947pt;}
.x94{left:1278.999947pt;}
.x43{left:1343.999944pt;}
.x58{left:1357.203073pt;}
.x20{left:1359.999943pt;}
.x59{left:1380.999942pt;}
.xc1{left:1404.999941pt;}
.x5a{left:1418.999941pt;}
.xa7{left:1420.999941pt;}
.x78{left:1423.999941pt;}
.xa6{left:1428.999940pt;}
.x29{left:1503.999937pt;}
.x74{left:1517.203067pt;}
.x44{left:1519.999937pt;}
.x75{left:1540.999936pt;}
.x25{left:1571.812435pt;}
.x5f{left:1583.999934pt;}
.x60{left:1605.999933pt;}
.xc9{left:1610.124933pt;}
.x97{left:1655.999931pt;}
.xaa{left:1656.999931pt;}
.x96{left:1663.999931pt;}
.xa9{left:1664.999931pt;}
.x76{left:1672.999930pt;}
.x5e{left:1677.203060pt;}
.xb3{left:1688.999930pt;}
.x62{left:1698.999929pt;}
.x9c{left:1716.999928pt;}
.x9b{left:1724.999928pt;}
.x26{left:1779.999926pt;}
.x65{left:1785.999926pt;}
.x8b{left:1793.187425pt;}
.xca{left:1848.999923pt;}
.x8c{left:1882.999922pt;}
}




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