
    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_85a5370e3cb86f57ee3395d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_52873192f1de030b30ac0ac0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_b750cdec834a532f84cac5b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_753a80c0b215cac081b0ebf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_2a4eaa34f8e5e9d7ffe87925.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_4b1606753dafd295aae0991c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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:ff7;src:url('chunks/assets/font_e8e7748fd0018edeecd9cde5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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:ff8;src:url('chunks/assets/font_d83d8846b43e662a3f236144.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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:ff9;src:url('chunks/assets/font_3ed815b4d680149ce8d30ecf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1e{letter-spacing:-0.014400px;}
.lsd{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000240px;}
.ls8{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.123552px;}
.ls2{letter-spacing:0.155376px;}
.ls0{letter-spacing:0.159840px;}
.ls3{letter-spacing:0.160440px;}
.ls4{letter-spacing:0.203184px;}
.ls10{letter-spacing:0.204336px;}
.ls9{letter-spacing:0.223344px;}
.ls6{letter-spacing:0.239400px;}
.ls5{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.242064px;}
.lsb{letter-spacing:0.242352px;}
.ls26{letter-spacing:0.253872px;}
.lsf{letter-spacing:0.318384px;}
.ls2e{letter-spacing:0.318816px;}
.ls2a{letter-spacing:0.319680px;}
.ls21{letter-spacing:0.320280px;}
.ls2b{letter-spacing:0.320880px;}
.ls13{letter-spacing:0.322704px;}
.ls19{letter-spacing:0.324000px;}
.lse{letter-spacing:0.351648px;}
.ls18{letter-spacing:0.356400px;}
.ls11{letter-spacing:0.365904px;}
.ls2d{letter-spacing:0.383760px;}
.ls25{letter-spacing:0.419184px;}
.ls20{letter-spacing:0.478224px;}
.ls31{letter-spacing:0.479400px;}
.ls29{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.480600px;}
.ls1{letter-spacing:0.543168px;}
.ls33{letter-spacing:0.554976px;}
.ls15{letter-spacing:0.578592px;}
.ls17{letter-spacing:0.637632px;}
.ls14{letter-spacing:0.702576px;}
.ls23{letter-spacing:0.738000px;}
.ls24{letter-spacing:0.861984px;}
.ls22{letter-spacing:0.897408px;}
.ls32{letter-spacing:5.118000px;}
.ls28{letter-spacing:5.128200px;}
.ls35{letter-spacing:5.832600px;}
.ls2c{letter-spacing:9.406800px;}
.ls34{letter-spacing:11.258400px;}
.ls30{letter-spacing:13.385400px;}
.ls2f{letter-spacing:16.586880px;}
.lsc{letter-spacing:33.984000px;}
.ls1c{letter-spacing:44.495760px;}
.ls27{letter-spacing:46.586880px;}
.ls1a{letter-spacing:54.867000px;}
.ls1f{letter-spacing:93.925440px;}
.ls1d{letter-spacing:121.944960px;}
.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:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws1{word-spacing:-16.956288px;}
.wsb{word-spacing:-15.498000px;}
.ws9{word-spacing:-15.397632px;}
.wsc{word-spacing:-15.303168px;}
.wsa{word-spacing:-15.238224px;}
.wsd{word-spacing:-15.179184px;}
.wse{word-spacing:-15.143760px;}
.wsf{word-spacing:-15.078816px;}
.ws3{word-spacing:-12.236400px;}
.ws0{word-spacing:-12.122352px;}
.ws2{word-spacing:-0.086400px;}
.ws6{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-4.471200px;}
._a{margin-left:-3.146400px;}
._1{margin-left:-1.188000px;}
._6{width:1.045440px;}
._3{width:2.994792px;}
._0{width:4.134240px;}
._7{width:5.653440px;}
._2{width:6.747840px;}
._9{width:7.784880px;}
._4{width:8.791200px;}
._5{width:10.052904px;}
._b{width:11.516592px;}
._1d{width:12.526656px;}
._c{width:13.528800px;}
._14{width:14.724000px;}
._1a{width:15.854400px;}
._18{width:16.891200px;}
._20{width:18.027360px;}
._e{width:19.447200px;}
._f{width:21.369600px;}
._8{width:23.342400px;}
._1c{width:24.559200px;}
._16{width:25.645200px;}
._1b{width:28.202400px;}
._15{width:29.714400px;}
._17{width:31.629600px;}
._19{width:32.911200px;}
._1e{width:36.604800px;}
._1f{width:37.844640px;}
._21{width:45.224640px;}
._23{width:46.599840px;}
._22{width:47.645280px;}
._10{width:956.208240px;}
._12{width:1335.885000px;}
._13{width:1550.086200px;}
._11{width:1554.890040px;}
.fc3{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs2{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.520000px;}
.yd{bottom:5.760000px;}
.y9d{bottom:6.120000px;}
.yf{bottom:7.560000px;}
.y98{bottom:15.480000px;}
.y9b{bottom:15.840000px;}
.y9{bottom:16.200000px;}
.y1{bottom:17.985900px;}
.y99{bottom:25.560000px;}
.y9c{bottom:25.920000px;}
.y8{bottom:30.240000px;}
.y4{bottom:34.920000px;}
.y34{bottom:38.142885px;}
.yb{bottom:40.302885px;}
.y7{bottom:43.920000px;}
.y33{bottom:51.822885px;}
.y6{bottom:57.600000px;}
.y5{bottom:71.640000px;}
.y3{bottom:73.408785px;}
.ycf{bottom:109.062885px;}
.y58{bottom:109.782885px;}
.y6e{bottom:114.822885px;}
.y80{bottom:116.262885px;}
.yb4{bottom:124.182885px;}
.yce{bottom:128.862885px;}
.y90{bottom:131.742885px;}
.y57{bottom:133.542900px;}
.y7f{bottom:140.022900px;}
.ya7{bottom:141.102900px;}
.yb3{bottom:147.942900px;}
.ycd{bottom:148.662900px;}
.y8f{bottom:155.502900px;}
.y56{bottom:157.302900px;}
.y6d{bottom:159.822900px;}
.y7e{bottom:163.782900px;}
.ya6{bottom:164.862900px;}
.ycc{bottom:168.462900px;}
.y31{bottom:169.542900px;}
.yb2{bottom:171.702900px;}
.y8e{bottom:179.262900px;}
.y55{bottom:181.062900px;}
.y6c{bottom:183.582900px;}
.ya5{bottom:188.622900px;}
.y30{bottom:193.302900px;}
.yb1{bottom:195.462900px;}
.y8d{bottom:203.022900px;}
.y6b{bottom:207.342900px;}
.y7d{bottom:208.422900px;}
.ya4{bottom:212.382900px;}
.y2f{bottom:217.062900px;}
.yb0{bottom:219.222900px;}
.y54{bottom:226.062900px;}
.y8c{bottom:226.782900px;}
.ycb{bottom:228.222900px;}
.y6a{bottom:231.102900px;}
.ya3{bottom:236.502900px;}
.y2e{bottom:240.822900px;}
.yaf{bottom:242.982900px;}
.yca{bottom:248.022900px;}
.y8b{bottom:250.542900px;}
.y53{bottom:251.262900px;}
.y7c{bottom:253.422900px;}
.y2d{bottom:264.942900px;}
.yae{bottom:266.742900px;}
.yc9{bottom:267.822900px;}
.y8a{bottom:274.662900px;}
.y52{bottom:275.022900px;}
.y69{bottom:276.102900px;}
.y7b{bottom:277.182900px;}
.yc8{bottom:287.622900px;}
.y2c{bottom:288.702900px;}
.yad{bottom:290.502900px;}
.ya2{bottom:292.648800px;}
.y89{bottom:298.422900px;}
.y51{bottom:299.862900px;}
.y7a{bottom:300.942900px;}
.yc7{bottom:307.422900px;}
.y2b{bottom:312.462900px;}
.yac{bottom:314.262900px;}
.y88{bottom:322.182900px;}
.y68{bottom:323.622900px;}
.y50{bottom:323.982900px;}
.y79{bottom:324.702900px;}
.yc6{bottom:327.222900px;}
.ya1{bottom:332.968800px;}
.yab{bottom:338.382900px;}
.yc5{bottom:347.022900px;}
.y67{bottom:347.382900px;}
.y78{bottom:348.462900px;}
.y4f{bottom:349.182900px;}
.y2a{bottom:357.102900px;}
.y87{bottom:366.822900px;}
.y66{bottom:371.142900px;}
.y77{bottom:372.222900px;}
.ya0{bottom:373.648800px;}
.yaa{bottom:383.022900px;}
.yc4{bottom:386.982900px;}
.yef{bottom:394.542900px;}
.y4e{bottom:394.902900px;}
.y76{bottom:395.982900px;}
.y29{bottom:402.102900px;}
.yc3{bottom:406.782900px;}
.y86{bottom:411.822900px;}
.y9f{bottom:413.968800px;}
.y4d{bottom:418.662900px;}
.y75{bottom:420.102900px;}
.ya9{bottom:423.702900px;}
.y28{bottom:425.862900px;}
.yc2{bottom:426.582900px;}
.y85{bottom:435.582900px;}
.yee{bottom:439.182900px;}
.y4c{bottom:442.782900px;}
.y74{bottom:443.862900px;}
.yc1{bottom:446.382900px;}
.y27{bottom:449.622900px;}
.y9e{bottom:454.288800px;}
.y84{bottom:459.342900px;}
.y65{bottom:463.662900px;}
.yc0{bottom:466.182900px;}
.y73{bottom:467.622900px;}
.yed{bottom:482.742900px;}
.y83{bottom:483.102900px;}
.ybf{bottom:485.982900px;}
.y4b{bottom:487.422900px;}
.y72{bottom:491.382900px;}
.y26{bottom:494.262900px;}
.y9a{bottom:494.608800px;}
.yec{bottom:502.542900px;}
.ybe{bottom:505.782900px;}
.y64{bottom:508.302900px;}
.y25{bottom:518.382900px;}
.yeb{bottom:522.342900px;}
.ybd{bottom:525.582900px;}
.y82{bottom:528.102900px;}
.y4a{bottom:532.062900px;}
.y97{bottom:535.288800px;}
.y71{bottom:536.022900px;}
.y24{bottom:542.142900px;}
.ybc{bottom:545.382900px;}
.y49{bottom:556.182900px;}
.yea{bottom:561.942900px;}
.ybb{bottom:565.182900px;}
.y23{bottom:565.902900px;}
.y81{bottom:568.782900px;}
.y96{bottom:575.608800px;}
.y48{bottom:579.942900px;}
.y70{bottom:581.022900px;}
.ye9{bottom:581.742900px;}
.yba{bottom:585.342900px;}
.y22{bottom:589.662900px;}
.ye8{bottom:601.542900px;}
.y47{bottom:603.702900px;}
.y95{bottom:606.582900px;}
.y21{bottom:613.422900px;}
.y6f{bottom:621.702900px;}
.y46{bottom:627.462900px;}
.y20{bottom:637.182900px;}
.ye7{bottom:641.502900px;}
.y45{bottom:651.222900px;}
.y1f{bottom:660.942900px;}
.ye6{bottom:661.302900px;}
.yb9{bottom:672.102900px;}
.y44{bottom:674.982900px;}
.ye5{bottom:681.102900px;}
.ya8{bottom:681.822900px;}
.y1e{bottom:684.702900px;}
.yb8{bottom:696.222900px;}
.y94{bottom:698.742900px;}
.ye4{bottom:700.902900px;}
.y1d{bottom:708.462900px;}
.y43{bottom:719.982900px;}
.ye3{bottom:720.702900px;}
.y93{bottom:722.502900px;}
.y1c{bottom:732.582900px;}
.ye2{bottom:740.502900px;}
.y42{bottom:743.742900px;}
.y92{bottom:746.622900px;}
.ye1{bottom:760.302900px;}
.y63{bottom:764.622900px;}
.y41{bottom:767.502900px;}
.y91{bottom:770.382900px;}
.y1b{bottom:772.542900px;}
.ye0{bottom:780.102900px;}
.y1a{bottom:788.382900px;}
.y40{bottom:791.262900px;}
.ydf{bottom:799.902900px;}
.y19{bottom:804.222900px;}
.y62{bottom:812.142900px;}
.y3f{bottom:815.022900px;}
.yde{bottom:820.062900px;}
.y18{bottom:822.582900px;}
.y61{bottom:835.902900px;}
.y3e{bottom:838.782900px;}
.ydd{bottom:839.862900px;}
.y17{bottom:847.782900px;}
.ydc{bottom:859.662900px;}
.y60{bottom:860.022900px;}
.yb7{bottom:862.542900px;}
.y16{bottom:870.102900px;}
.ydb{bottom:879.462900px;}
.y3d{bottom:883.782900px;}
.yb6{bottom:886.302900px;}
.y15{bottom:896.742900px;}
.yda{bottom:899.262900px;}
.y5f{bottom:907.542900px;}
.y14{bottom:909.702900px;}
.yb5{bottom:910.422900px;}
.yd9{bottom:919.062900px;}
.y3c{bottom:928.422900px;}
.y5e{bottom:931.302900px;}
.y13{bottom:936.342900px;}
.yd8{bottom:938.862900px;}
.y3b{bottom:952.182900px;}
.y5d{bottom:955.062900px;}
.yd7{bottom:958.662900px;}
.y12{bottom:971.622900px;}
.y3a{bottom:975.942900px;}
.yd6{bottom:978.462900px;}
.y5c{bottom:978.822900px;}
.yd5{bottom:998.262900px;}
.y39{bottom:1000.062900px;}
.y5b{bottom:1002.582900px;}
.yd4{bottom:1018.422900px;}
.y11{bottom:1020.942900px;}
.y38{bottom:1023.822900px;}
.y5a{bottom:1026.342900px;}
.yd3{bottom:1038.222900px;}
.y37{bottom:1047.582900px;}
.y59{bottom:1050.462900px;}
.yd2{bottom:1058.022900px;}
.y10{bottom:1060.542900px;}
.y36{bottom:1071.342900px;}
.yd1{bottom:1077.822900px;}
.y35{bottom:1095.102900px;}
.yd0{bottom:1097.622900px;}
.y32{bottom:1118.502900px;}
.ye{bottom:1127.488800px;}
.y2{bottom:1136.862900px;}
.yc{bottom:1188.328800px;}
.h7{height:19.800000px;}
.h9{height:24.120000px;}
.hd{height:27.014766px;}
.h6{height:33.018047px;}
.h5{height:34.155000px;}
.h14{height:39.600000px;}
.h15{height:39.960000px;}
.h13{height:40.013438px;}
.he{height:41.022422px;}
.h8{height:42.435000px;}
.h3{height:46.575000px;}
.h11{height:48.796875px;}
.ha{height:50.027344px;}
.h12{height:51.750000px;}
.hf{height:53.402344px;}
.h10{height:58.031719px;}
.hc{height:65.325937px;}
.h4{height:82.800000px;}
.hb{height:83.045391px;}
.h2{height:1226.862900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:24.840000px;}
.wa{width:156.240000px;}
.w3{width:171.360000px;}
.w8{width:209.160000px;}
.w9{width:335.160000px;}
.w7{width:364.320000px;}
.w6{width:425.520000px;}
.w4{width:573.840000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.920000px;}
.x27{left:9.031800px;}
.x23{left:10.064550px;}
.x24{left:11.503800px;}
.x1{left:17.985900px;}
.x29{left:20.659050px;}
.x1c{left:23.542200px;}
.x1f{left:27.551100px;}
.x18{left:33.470880px;}
.x26{left:37.710900px;}
.x20{left:40.456350px;}
.x2a{left:49.402950px;}
.x28{left:54.416400px;}
.x1e{left:58.537350px;}
.x9{left:60.825900px;}
.x1d{left:62.650500px;}
.x7{left:64.440000px;}
.xe{left:69.390075px;}
.x3{left:71.265900px;}
.x22{left:77.002350px;}
.x25{left:78.567900px;}
.x11{left:91.440000px;}
.x17{left:96.825900px;}
.x1a{left:98.544750px;}
.x21{left:108.776700px;}
.xf{left:118.440000px;}
.x10{left:145.440000px;}
.x4{left:160.800300px;}
.xc{left:162.159750px;}
.xd{left:172.440000px;}
.x13{left:196.990800px;}
.xb{left:236.598600px;}
.x5{left:243.345900px;}
.x2c{left:280.728600px;}
.x2e{left:284.226600px;}
.x19{left:306.705900px;}
.x15{left:310.954200px;}
.x16{left:317.305050px;}
.x2{left:434.669700px;}
.xa{left:486.345900px;}
.x1b{left:642.585900px;}
.x2d{left:655.050000px;}
.x12{left:668.550000px;}
.x2b{left:675.750000px;}
.x8{left:788.025900px;}
.x14{left:974.160000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1e{letter-spacing:-0.012800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000213pt;}
.ls8{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.109824pt;}
.ls2{letter-spacing:0.138112pt;}
.ls0{letter-spacing:0.142080pt;}
.ls3{letter-spacing:0.142613pt;}
.ls4{letter-spacing:0.180608pt;}
.ls10{letter-spacing:0.181632pt;}
.ls9{letter-spacing:0.198528pt;}
.ls6{letter-spacing:0.212800pt;}
.ls5{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.215168pt;}
.lsb{letter-spacing:0.215424pt;}
.ls26{letter-spacing:0.225664pt;}
.lsf{letter-spacing:0.283008pt;}
.ls2e{letter-spacing:0.283392pt;}
.ls2a{letter-spacing:0.284160pt;}
.ls21{letter-spacing:0.284693pt;}
.ls2b{letter-spacing:0.285227pt;}
.ls13{letter-spacing:0.286848pt;}
.ls19{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.312576pt;}
.ls18{letter-spacing:0.316800pt;}
.ls11{letter-spacing:0.325248pt;}
.ls2d{letter-spacing:0.341120pt;}
.ls25{letter-spacing:0.372608pt;}
.ls20{letter-spacing:0.425088pt;}
.ls31{letter-spacing:0.426133pt;}
.ls29{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.427200pt;}
.ls1{letter-spacing:0.482816pt;}
.ls33{letter-spacing:0.493312pt;}
.ls15{letter-spacing:0.514304pt;}
.ls17{letter-spacing:0.566784pt;}
.ls14{letter-spacing:0.624512pt;}
.ls23{letter-spacing:0.656000pt;}
.ls24{letter-spacing:0.766208pt;}
.ls22{letter-spacing:0.797696pt;}
.ls32{letter-spacing:4.549333pt;}
.ls28{letter-spacing:4.558400pt;}
.ls35{letter-spacing:5.184533pt;}
.ls2c{letter-spacing:8.361600pt;}
.ls34{letter-spacing:10.007467pt;}
.ls30{letter-spacing:11.898133pt;}
.ls2f{letter-spacing:14.743893pt;}
.lsc{letter-spacing:30.208000pt;}
.ls1c{letter-spacing:39.551787pt;}
.ls27{letter-spacing:41.410560pt;}
.ls1a{letter-spacing:48.770667pt;}
.ls1f{letter-spacing:83.489280pt;}
.ls1d{letter-spacing:108.395520pt;}
.ws7{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws1{word-spacing:-15.072256pt;}
.wsb{word-spacing:-13.776000pt;}
.ws9{word-spacing:-13.686784pt;}
.wsc{word-spacing:-13.602816pt;}
.wsa{word-spacing:-13.545088pt;}
.wsd{word-spacing:-13.492608pt;}
.wse{word-spacing:-13.461120pt;}
.wsf{word-spacing:-13.403392pt;}
.ws3{word-spacing:-10.876800pt;}
.ws0{word-spacing:-10.775424pt;}
.ws2{word-spacing:-0.076800pt;}
.ws6{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-3.974400pt;}
._a{margin-left:-2.796800pt;}
._1{margin-left:-1.056000pt;}
._6{width:0.929280pt;}
._3{width:2.662037pt;}
._0{width:3.674880pt;}
._7{width:5.025280pt;}
._2{width:5.998080pt;}
._9{width:6.919893pt;}
._4{width:7.814400pt;}
._5{width:8.935915pt;}
._b{width:10.236971pt;}
._1d{width:11.134805pt;}
._c{width:12.025600pt;}
._14{width:13.088000pt;}
._1a{width:14.092800pt;}
._18{width:15.014400pt;}
._20{width:16.024320pt;}
._e{width:17.286400pt;}
._f{width:18.995200pt;}
._8{width:20.748800pt;}
._1c{width:21.830400pt;}
._16{width:22.795733pt;}
._1b{width:25.068800pt;}
._15{width:26.412800pt;}
._17{width:28.115200pt;}
._19{width:29.254400pt;}
._1e{width:32.537600pt;}
._1f{width:33.639680pt;}
._21{width:40.199680pt;}
._23{width:41.422080pt;}
._22{width:42.351360pt;}
._10{width:849.962880pt;}
._12{width:1187.453333pt;}
._13{width:1377.854400pt;}
._11{width:1382.124480pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.240000pt;}
.yd{bottom:5.120000pt;}
.y9d{bottom:5.440000pt;}
.yf{bottom:6.720000pt;}
.y98{bottom:13.760000pt;}
.y9b{bottom:14.080000pt;}
.y9{bottom:14.400000pt;}
.y1{bottom:15.987467pt;}
.y99{bottom:22.720000pt;}
.y9c{bottom:23.040000pt;}
.y8{bottom:26.880000pt;}
.y4{bottom:31.040000pt;}
.y34{bottom:33.904787pt;}
.yb{bottom:35.824787pt;}
.y7{bottom:39.040000pt;}
.y33{bottom:46.064787pt;}
.y6{bottom:51.200000pt;}
.y5{bottom:63.680000pt;}
.y3{bottom:65.252253pt;}
.ycf{bottom:96.944787pt;}
.y58{bottom:97.584787pt;}
.y6e{bottom:102.064787pt;}
.y80{bottom:103.344787pt;}
.yb4{bottom:110.384787pt;}
.yce{bottom:114.544787pt;}
.y90{bottom:117.104787pt;}
.y57{bottom:118.704800pt;}
.y7f{bottom:124.464800pt;}
.ya7{bottom:125.424800pt;}
.yb3{bottom:131.504800pt;}
.ycd{bottom:132.144800pt;}
.y8f{bottom:138.224800pt;}
.y56{bottom:139.824800pt;}
.y6d{bottom:142.064800pt;}
.y7e{bottom:145.584800pt;}
.ya6{bottom:146.544800pt;}
.ycc{bottom:149.744800pt;}
.y31{bottom:150.704800pt;}
.yb2{bottom:152.624800pt;}
.y8e{bottom:159.344800pt;}
.y55{bottom:160.944800pt;}
.y6c{bottom:163.184800pt;}
.ya5{bottom:167.664800pt;}
.y30{bottom:171.824800pt;}
.yb1{bottom:173.744800pt;}
.y8d{bottom:180.464800pt;}
.y6b{bottom:184.304800pt;}
.y7d{bottom:185.264800pt;}
.ya4{bottom:188.784800pt;}
.y2f{bottom:192.944800pt;}
.yb0{bottom:194.864800pt;}
.y54{bottom:200.944800pt;}
.y8c{bottom:201.584800pt;}
.ycb{bottom:202.864800pt;}
.y6a{bottom:205.424800pt;}
.ya3{bottom:210.224800pt;}
.y2e{bottom:214.064800pt;}
.yaf{bottom:215.984800pt;}
.yca{bottom:220.464800pt;}
.y8b{bottom:222.704800pt;}
.y53{bottom:223.344800pt;}
.y7c{bottom:225.264800pt;}
.y2d{bottom:235.504800pt;}
.yae{bottom:237.104800pt;}
.yc9{bottom:238.064800pt;}
.y8a{bottom:244.144800pt;}
.y52{bottom:244.464800pt;}
.y69{bottom:245.424800pt;}
.y7b{bottom:246.384800pt;}
.yc8{bottom:255.664800pt;}
.y2c{bottom:256.624800pt;}
.yad{bottom:258.224800pt;}
.ya2{bottom:260.132267pt;}
.y89{bottom:265.264800pt;}
.y51{bottom:266.544800pt;}
.y7a{bottom:267.504800pt;}
.yc7{bottom:273.264800pt;}
.y2b{bottom:277.744800pt;}
.yac{bottom:279.344800pt;}
.y88{bottom:286.384800pt;}
.y68{bottom:287.664800pt;}
.y50{bottom:287.984800pt;}
.y79{bottom:288.624800pt;}
.yc6{bottom:290.864800pt;}
.ya1{bottom:295.972267pt;}
.yab{bottom:300.784800pt;}
.yc5{bottom:308.464800pt;}
.y67{bottom:308.784800pt;}
.y78{bottom:309.744800pt;}
.y4f{bottom:310.384800pt;}
.y2a{bottom:317.424800pt;}
.y87{bottom:326.064800pt;}
.y66{bottom:329.904800pt;}
.y77{bottom:330.864800pt;}
.ya0{bottom:332.132267pt;}
.yaa{bottom:340.464800pt;}
.yc4{bottom:343.984800pt;}
.yef{bottom:350.704800pt;}
.y4e{bottom:351.024800pt;}
.y76{bottom:351.984800pt;}
.y29{bottom:357.424800pt;}
.yc3{bottom:361.584800pt;}
.y86{bottom:366.064800pt;}
.y9f{bottom:367.972267pt;}
.y4d{bottom:372.144800pt;}
.y75{bottom:373.424800pt;}
.ya9{bottom:376.624800pt;}
.y28{bottom:378.544800pt;}
.yc2{bottom:379.184800pt;}
.y85{bottom:387.184800pt;}
.yee{bottom:390.384800pt;}
.y4c{bottom:393.584800pt;}
.y74{bottom:394.544800pt;}
.yc1{bottom:396.784800pt;}
.y27{bottom:399.664800pt;}
.y9e{bottom:403.812267pt;}
.y84{bottom:408.304800pt;}
.y65{bottom:412.144800pt;}
.yc0{bottom:414.384800pt;}
.y73{bottom:415.664800pt;}
.yed{bottom:429.104800pt;}
.y83{bottom:429.424800pt;}
.ybf{bottom:431.984800pt;}
.y4b{bottom:433.264800pt;}
.y72{bottom:436.784800pt;}
.y26{bottom:439.344800pt;}
.y9a{bottom:439.652267pt;}
.yec{bottom:446.704800pt;}
.ybe{bottom:449.584800pt;}
.y64{bottom:451.824800pt;}
.y25{bottom:460.784800pt;}
.yeb{bottom:464.304800pt;}
.ybd{bottom:467.184800pt;}
.y82{bottom:469.424800pt;}
.y4a{bottom:472.944800pt;}
.y97{bottom:475.812267pt;}
.y71{bottom:476.464800pt;}
.y24{bottom:481.904800pt;}
.ybc{bottom:484.784800pt;}
.y49{bottom:494.384800pt;}
.yea{bottom:499.504800pt;}
.ybb{bottom:502.384800pt;}
.y23{bottom:503.024800pt;}
.y81{bottom:505.584800pt;}
.y96{bottom:511.652267pt;}
.y48{bottom:515.504800pt;}
.y70{bottom:516.464800pt;}
.ye9{bottom:517.104800pt;}
.yba{bottom:520.304800pt;}
.y22{bottom:524.144800pt;}
.ye8{bottom:534.704800pt;}
.y47{bottom:536.624800pt;}
.y95{bottom:539.184800pt;}
.y21{bottom:545.264800pt;}
.y6f{bottom:552.624800pt;}
.y46{bottom:557.744800pt;}
.y20{bottom:566.384800pt;}
.ye7{bottom:570.224800pt;}
.y45{bottom:578.864800pt;}
.y1f{bottom:587.504800pt;}
.ye6{bottom:587.824800pt;}
.yb9{bottom:597.424800pt;}
.y44{bottom:599.984800pt;}
.ye5{bottom:605.424800pt;}
.ya8{bottom:606.064800pt;}
.y1e{bottom:608.624800pt;}
.yb8{bottom:618.864800pt;}
.y94{bottom:621.104800pt;}
.ye4{bottom:623.024800pt;}
.y1d{bottom:629.744800pt;}
.y43{bottom:639.984800pt;}
.ye3{bottom:640.624800pt;}
.y93{bottom:642.224800pt;}
.y1c{bottom:651.184800pt;}
.ye2{bottom:658.224800pt;}
.y42{bottom:661.104800pt;}
.y92{bottom:663.664800pt;}
.ye1{bottom:675.824800pt;}
.y63{bottom:679.664800pt;}
.y41{bottom:682.224800pt;}
.y91{bottom:684.784800pt;}
.y1b{bottom:686.704800pt;}
.ye0{bottom:693.424800pt;}
.y1a{bottom:700.784800pt;}
.y40{bottom:703.344800pt;}
.ydf{bottom:711.024800pt;}
.y19{bottom:714.864800pt;}
.y62{bottom:721.904800pt;}
.y3f{bottom:724.464800pt;}
.yde{bottom:728.944800pt;}
.y18{bottom:731.184800pt;}
.y61{bottom:743.024800pt;}
.y3e{bottom:745.584800pt;}
.ydd{bottom:746.544800pt;}
.y17{bottom:753.584800pt;}
.ydc{bottom:764.144800pt;}
.y60{bottom:764.464800pt;}
.yb7{bottom:766.704800pt;}
.y16{bottom:773.424800pt;}
.ydb{bottom:781.744800pt;}
.y3d{bottom:785.584800pt;}
.yb6{bottom:787.824800pt;}
.y15{bottom:797.104800pt;}
.yda{bottom:799.344800pt;}
.y5f{bottom:806.704800pt;}
.y14{bottom:808.624800pt;}
.yb5{bottom:809.264800pt;}
.yd9{bottom:816.944800pt;}
.y3c{bottom:825.264800pt;}
.y5e{bottom:827.824800pt;}
.y13{bottom:832.304800pt;}
.yd8{bottom:834.544800pt;}
.y3b{bottom:846.384800pt;}
.y5d{bottom:848.944800pt;}
.yd7{bottom:852.144800pt;}
.y12{bottom:863.664800pt;}
.y3a{bottom:867.504800pt;}
.yd6{bottom:869.744800pt;}
.y5c{bottom:870.064800pt;}
.yd5{bottom:887.344800pt;}
.y39{bottom:888.944800pt;}
.y5b{bottom:891.184800pt;}
.yd4{bottom:905.264800pt;}
.y11{bottom:907.504800pt;}
.y38{bottom:910.064800pt;}
.y5a{bottom:912.304800pt;}
.yd3{bottom:922.864800pt;}
.y37{bottom:931.184800pt;}
.y59{bottom:933.744800pt;}
.yd2{bottom:940.464800pt;}
.y10{bottom:942.704800pt;}
.y36{bottom:952.304800pt;}
.yd1{bottom:958.064800pt;}
.y35{bottom:973.424800pt;}
.yd0{bottom:975.664800pt;}
.y32{bottom:994.224800pt;}
.ye{bottom:1002.212267pt;}
.y2{bottom:1010.544800pt;}
.yc{bottom:1056.292267pt;}
.h7{height:17.600000pt;}
.h9{height:21.440000pt;}
.hd{height:24.013125pt;}
.h6{height:29.349375pt;}
.h5{height:30.360000pt;}
.h14{height:35.200000pt;}
.h15{height:35.520000pt;}
.h13{height:35.567500pt;}
.he{height:36.464375pt;}
.h8{height:37.720000pt;}
.h3{height:41.400000pt;}
.h11{height:43.375000pt;}
.ha{height:44.468750pt;}
.h12{height:46.000000pt;}
.hf{height:47.468750pt;}
.h10{height:51.583750pt;}
.hc{height:58.067500pt;}
.h4{height:73.600000pt;}
.hb{height:73.818125pt;}
.h2{height:1090.544800pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:22.080000pt;}
.wa{width:138.880000pt;}
.w3{width:152.320000pt;}
.w8{width:185.920000pt;}
.w9{width:297.920000pt;}
.w7{width:323.840000pt;}
.w6{width:378.240000pt;}
.w4{width:510.080000pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.040000pt;}
.x27{left:8.028267pt;}
.x23{left:8.946267pt;}
.x24{left:10.225600pt;}
.x1{left:15.987467pt;}
.x29{left:18.363600pt;}
.x1c{left:20.926400pt;}
.x1f{left:24.489867pt;}
.x18{left:29.751893pt;}
.x26{left:33.520800pt;}
.x20{left:35.961200pt;}
.x2a{left:43.913733pt;}
.x28{left:48.370133pt;}
.x1e{left:52.033200pt;}
.x9{left:54.067467pt;}
.x1d{left:55.689333pt;}
.x7{left:57.280000pt;}
.xe{left:61.680067pt;}
.x3{left:63.347467pt;}
.x22{left:68.446533pt;}
.x25{left:69.838133pt;}
.x11{left:81.280000pt;}
.x17{left:86.067467pt;}
.x1a{left:87.595333pt;}
.x21{left:96.690400pt;}
.xf{left:105.280000pt;}
.x10{left:129.280000pt;}
.x4{left:142.933600pt;}
.xc{left:144.142000pt;}
.xd{left:153.280000pt;}
.x13{left:175.102933pt;}
.xb{left:210.309867pt;}
.x5{left:216.307467pt;}
.x2c{left:249.536533pt;}
.x2e{left:252.645867pt;}
.x19{left:272.627467pt;}
.x15{left:276.403733pt;}
.x16{left:282.048933pt;}
.x2{left:386.373067pt;}
.xa{left:432.307467pt;}
.x1b{left:571.187467pt;}
.x2d{left:582.266667pt;}
.x12{left:594.266667pt;}
.x2b{left:600.666667pt;}
.x8{left:700.467467pt;}
.x14{left:865.920000pt;}
}




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