
    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_acd877f1724d212b4a7d8a16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094727;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_cfccf97ba3b8f3f18e98d7d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920410;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_45fab5fec4b44537f8cdfa86.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100586;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_50fda21dad62dd32b6866e08.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fa2323eb87453b266fc206ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_1dfd03d6d022b53f6b54d654.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:47.864880px;}
.ls2a{letter-spacing:-0.329400px;}
.ls45{letter-spacing:-0.197640px;}
.ls19{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.131760px;}
.ls14{letter-spacing:-0.119880px;}
.ls1a{letter-spacing:-0.108000px;}
.ls44{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.065880px;}
.ls1b{letter-spacing:-0.054000px;}
.ls13{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.019764px;}
.ls5d{letter-spacing:0.032940px;}
.ls27{letter-spacing:0.059292px;}
.ls4{letter-spacing:0.065880px;}
.ls2{letter-spacing:0.072000px;}
.ls59{letter-spacing:0.092232px;}
.ls5f{letter-spacing:0.138348px;}
.ls0{letter-spacing:0.141480px;}
.ls1c{letter-spacing:0.162000px;}
.ls5c{letter-spacing:0.184464px;}
.ls17{letter-spacing:0.197640px;}
.ls11{letter-spacing:0.253800px;}
.ls18{letter-spacing:0.263520px;}
.ls30{letter-spacing:0.296460px;}
.ls12{letter-spacing:0.324000px;}
.ls3d{letter-spacing:0.329400px;}
.ls39{letter-spacing:0.362340px;}
.ls63{letter-spacing:0.395280px;}
.ls41{letter-spacing:0.401868px;}
.ls57{letter-spacing:0.447984px;}
.ls26{letter-spacing:0.461160px;}
.ls1e{letter-spacing:0.474336px;}
.ls51{letter-spacing:0.671976px;}
.ls22{letter-spacing:0.790560px;}
.ls28{letter-spacing:1.185840px;}
.ls9{letter-spacing:1.231956px;}
.lsa{letter-spacing:1.515240px;}
.lsb{letter-spacing:1.528416px;}
.ls46{letter-spacing:1.910520px;}
.ls48{letter-spacing:2.239920px;}
.ls55{letter-spacing:2.753784px;}
.ls20{letter-spacing:2.964600px;}
.ls1{letter-spacing:2.964960px;}
.ls10{letter-spacing:3.402000px;}
.ls47{letter-spacing:3.689280px;}
.ls2e{letter-spacing:4.018680px;}
.ls34{letter-spacing:4.743360px;}
.ls3f{letter-spacing:5.164992px;}
.ls43{letter-spacing:5.454864px;}
.ls40{letter-spacing:5.468040px;}
.ls4c{letter-spacing:5.606388px;}
.ls5e{letter-spacing:5.863320px;}
.ls5a{letter-spacing:6.917400px;}
.ls49{letter-spacing:7.701372px;}
.ls50{letter-spacing:8.729100px;}
.ls1f{letter-spacing:9.091440px;}
.ls21{letter-spacing:9.816120px;}
.lsc{letter-spacing:10.112580px;}
.ls4d{letter-spacing:10.870200px;}
.lse{letter-spacing:11.718000px;}
.ls58{letter-spacing:12.319560px;}
.ls31{letter-spacing:12.714840px;}
.ls3e{letter-spacing:13.044240px;}
.ls3b{letter-spacing:13.439520px;}
.ls6{letter-spacing:13.768920px;}
.ls5{letter-spacing:13.821624px;}
.ls4b{letter-spacing:15.218280px;}
.ls33{letter-spacing:15.547680px;}
.lsd{letter-spacing:15.942960px;}
.ls8{letter-spacing:17.392320px;}
.ls42{letter-spacing:18.051120px;}
.ls60{letter-spacing:18.117000px;}
.ls37{letter-spacing:18.163116px;}
.ls23{letter-spacing:18.841680px;}
.ls4f{letter-spacing:18.920736px;}
.ls2c{letter-spacing:19.500480px;}
.ls3a{letter-spacing:20.225160px;}
.ls35{letter-spacing:20.949840px;}
.ls5b{letter-spacing:22.794480px;}
.ls32{letter-spacing:24.177960px;}
.ls36{letter-spacing:24.573240px;}
.ls24{letter-spacing:24.902640px;}
.ls38{letter-spacing:25.297920px;}
.ls4e{letter-spacing:25.627320px;}
.ls2f{letter-spacing:26.022600px;}
.ls3{letter-spacing:26.035776px;}
.ls25{letter-spacing:26.747280px;}
.ls56{letter-spacing:29.975400px;}
.ls52{letter-spacing:33.928200px;}
.ls54{letter-spacing:38.302632px;}
.ls53{letter-spacing:38.605680px;}
.ls3c{letter-spacing:39.330360px;}
.ls4a{letter-spacing:40.779720px;}
.lsf{letter-spacing:42.282000px;}
.ls7{letter-spacing:49.739400px;}
.ls2b{letter-spacing:54.482760px;}
.ls62{letter-spacing:71.018640px;}
.ls2d{letter-spacing:195.927120px;}
.ls1d{letter-spacing:588.762000px;}
.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:-29.850120px;}
.ws0{word-spacing:-20.970000px;}
.ws14{word-spacing:-18.072000px;}
.ws1c{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.856000px;}
.ws1f{word-spacing:-16.865280px;}
.ws18{word-spacing:-16.733520px;}
.ws5{word-spacing:-16.667640px;}
.ws3{word-spacing:-16.535880px;}
.ws1{word-spacing:-16.470000px;}
.ws6{word-spacing:-16.404120px;}
.ws4{word-spacing:-16.338240px;}
.ws19{word-spacing:-16.272360px;}
.ws8{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.338000px;}
.wse{word-spacing:-0.263520px;}
.ws12{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.131760px;}
.ws1a{word-spacing:-0.072000px;}
.wsc{word-spacing:-0.065880px;}
.ws9{word-spacing:0.000000px;}
.ws11{word-spacing:0.054000px;}
.wsb{word-spacing:0.065880px;}
.ws1b{word-spacing:0.072000px;}
.ws10{word-spacing:0.108000px;}
.wsa{word-spacing:0.131760px;}
.wsf{word-spacing:0.162000px;}
.ws20{word-spacing:0.197640px;}
.ws17{word-spacing:0.329400px;}
.ws1d{word-spacing:3.623400px;}
.wsd{word-spacing:17.524080px;}
.ws16{word-spacing:21.888000px;}
.ws15{word-spacing:22.104000px;}
._16{margin-left:-15.887160px;}
._1c{margin-left:-6.653880px;}
._10{margin-left:-1.070748px;}
._0{width:1.064160px;}
._12{width:2.510028px;}
._11{width:3.731904px;}
._d{width:4.884804px;}
._17{width:6.392736px;}
._f{width:7.668432px;}
._9{width:8.758548px;}
._c{width:10.603188px;}
._b{width:11.660760px;}
._23{width:12.734604px;}
._a{width:14.230080px;}
._1f{width:15.267492px;}
._13{width:17.669016px;}
._20{width:18.709920px;}
._1a{width:19.732860px;}
._19{width:21.006000px;}
._1b{width:22.658040px;}
._1e{width:23.776884px;}
._1{width:25.257996px;}
._3{width:26.928252px;}
._2{width:28.651212px;}
._14{width:30.061044px;}
._2a{width:31.085280px;}
._15{width:32.119596px;}
._1d{width:33.295752px;}
._5{width:35.186508px;}
._4{width:36.662220px;}
._29{width:37.748448px;}
._22{width:39.392352px;}
._2c{width:40.503024px;}
._27{width:41.866344px;}
._18{width:43.194600px;}
._2b{width:44.331228px;}
._24{width:45.671112px;}
._28{width:49.393728px;}
._e{width:50.621796px;}
._7{width:52.433892px;}
._8{width:53.711964px;}
._26{width:54.867960px;}
._2d{width:56.452572px;}
._2e{width:57.605472px;}
._6{width:60.546816px;}
._21{width:195.927120px;}
._2f{width:222.058224px;}
._25{width:1491.048000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.fs2{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y28{bottom:233.253000px;}
.y70{bottom:246.189690px;}
.y27{bottom:248.373000px;}
.y8a{bottom:250.663410px;}
.y53{bottom:250.673850px;}
.y9e{bottom:252.309510px;}
.y26{bottom:263.587500px;}
.y6f{bottom:264.734910px;}
.ya7{bottom:267.930000px;}
.y89{bottom:269.208630px;}
.y52{bottom:269.219070px;}
.y9d{bottom:270.937080px;}
.y25{bottom:278.802000px;}
.y6e{bottom:283.280130px;}
.y88{bottom:287.753850px;}
.y51{bottom:287.764290px;}
.y9c{bottom:289.482300px;}
.y24{bottom:294.016500px;}
.y6d{bottom:301.907700px;}
.ya6{bottom:306.180000px;}
.y87{bottom:306.299070px;}
.y50{bottom:306.309510px;}
.y9b{bottom:308.027520px;}
.y23{bottom:309.136500px;}
.y6c{bottom:320.452920px;}
.y22{bottom:324.351000px;}
.y86{bottom:324.926640px;}
.y4f{bottom:324.937080px;}
.y9a{bottom:326.572740px;}
.ycd{bottom:335.766150px;}
.ya5{bottom:335.970000px;}
.y6b{bottom:338.998140px;}
.y21{bottom:339.565500px;}
.y85{bottom:343.471860px;}
.y4e{bottom:343.482300px;}
.y99{bottom:345.200310px;}
.ycc{bottom:354.311370px;}
.y20{bottom:354.780000px;}
.y6a{bottom:357.543360px;}
.y84{bottom:362.017080px;}
.y4d{bottom:362.027520px;}
.y98{bottom:363.745530px;}
.ya4{bottom:367.020000px;}
.ycb{bottom:372.856590px;}
.y1f{bottom:372.870000px;}
.y69{bottom:376.170930px;}
.y83{bottom:380.562300px;}
.y4c{bottom:380.572740px;}
.y97{bottom:382.290750px;}
.y29{bottom:386.010000px;}
.yca{bottom:391.484160px;}
.y68{bottom:394.716150px;}
.ya3{bottom:398.070000px;}
.y82{bottom:399.189870px;}
.y4b{bottom:399.200310px;}
.y96{bottom:400.835970px;}
.yc9{bottom:410.029380px;}
.y67{bottom:413.261370px;}
.y81{bottom:417.735090px;}
.y4a{bottom:417.745530px;}
.y95{bottom:419.463540px;}
.y1e{bottom:422.195400px;}
.yc8{bottom:428.574600px;}
.ya2{bottom:429.120000px;}
.y66{bottom:431.806590px;}
.y80{bottom:436.280310px;}
.y49{bottom:436.290750px;}
.y94{bottom:438.008760px;}
.y1d{bottom:440.740620px;}
.yc7{bottom:447.119820px;}
.y65{bottom:450.434160px;}
.y7f{bottom:454.825530px;}
.y48{bottom:454.835970px;}
.y93{bottom:456.553980px;}
.y1c{bottom:459.285840px;}
.ya1{bottom:460.170000px;}
.yc6{bottom:465.747390px;}
.y64{bottom:468.979380px;}
.y7e{bottom:473.453100px;}
.y47{bottom:473.463540px;}
.y92{bottom:475.099200px;}
.y1b{bottom:477.913410px;}
.yc5{bottom:484.292610px;}
.y63{bottom:487.524600px;}
.ya0{bottom:491.400000px;}
.y7d{bottom:491.998320px;}
.y46{bottom:492.008760px;}
.y91{bottom:493.726770px;}
.y1a{bottom:496.458630px;}
.yc4{bottom:502.837830px;}
.y62{bottom:506.069820px;}
.y7c{bottom:510.543540px;}
.y45{bottom:510.553980px;}
.y90{bottom:512.271990px;}
.y19{bottom:515.003850px;}
.yc3{bottom:521.383050px;}
.y9f{bottom:522.450000px;}
.y61{bottom:524.697390px;}
.y7b{bottom:529.088760px;}
.y44{bottom:529.099200px;}
.y8f{bottom:530.817210px;}
.y18{bottom:533.549070px;}
.yc2{bottom:540.010620px;}
.y60{bottom:543.242610px;}
.y7a{bottom:547.716330px;}
.y43{bottom:547.726770px;}
.y8e{bottom:549.362430px;}
.y17{bottom:552.176640px;}
.yc1{bottom:558.555840px;}
.y5f{bottom:561.787830px;}
.y79{bottom:566.261550px;}
.y42{bottom:566.271990px;}
.y8d{bottom:567.990000px;}
.y16{bottom:570.721860px;}
.yc0{bottom:577.101060px;}
.y5e{bottom:580.333050px;}
.y78{bottom:584.806770px;}
.y41{bottom:584.817210px;}
.y15{bottom:589.267080px;}
.ybf{bottom:595.646280px;}
.y5d{bottom:598.960620px;}
.y77{bottom:603.351990px;}
.y40{bottom:603.362430px;}
.y8c{bottom:604.980000px;}
.y14{bottom:607.812300px;}
.ybe{bottom:614.273850px;}
.y5c{bottom:617.505840px;}
.y76{bottom:621.979560px;}
.y3f{bottom:621.990000px;}
.y13{bottom:626.439870px;}
.ybd{bottom:632.819070px;}
.y5b{bottom:636.051060px;}
.y75{bottom:640.524780px;}
.y12{bottom:644.985090px;}
.ybc{bottom:651.364290px;}
.y5a{bottom:654.596280px;}
.y3e{bottom:658.980000px;}
.y74{bottom:659.070000px;}
.y11{bottom:663.530310px;}
.ybb{bottom:669.909510px;}
.y8b{bottom:670.950000px;}
.y59{bottom:673.223850px;}
.y3d{bottom:679.230000px;}
.y10{bottom:682.075530px;}
.yba{bottom:688.537080px;}
.y58{bottom:691.769070px;}
.y73{bottom:696.060000px;}
.yf{bottom:700.703100px;}
.yb9{bottom:707.082300px;}
.y57{bottom:710.314290px;}
.y72{bottom:716.310000px;}
.ye{bottom:719.248320px;}
.yb8{bottom:725.627520px;}
.y56{bottom:728.859510px;}
.yd{bottom:737.793540px;}
.yb7{bottom:744.172740px;}
.y3c{bottom:745.200000px;}
.y55{bottom:747.487080px;}
.yc{bottom:756.338760px;}
.yb6{bottom:762.800310px;}
.y3b{bottom:766.032300px;}
.yb{bottom:774.966330px;}
.yb5{bottom:781.345530px;}
.y71{bottom:782.280000px;}
.y3a{bottom:784.577520px;}
.ya{bottom:793.511550px;}
.yb4{bottom:799.890750px;}
.y39{bottom:803.122740px;}
.y9{bottom:812.056770px;}
.yb3{bottom:818.435970px;}
.y38{bottom:821.750310px;}
.y8{bottom:830.601990px;}
.yb2{bottom:837.063540px;}
.y37{bottom:840.295530px;}
.y7{bottom:849.229560px;}
.yb1{bottom:855.608760px;}
.y36{bottom:858.840750px;}
.y6{bottom:867.774780px;}
.yb0{bottom:874.153980px;}
.y35{bottom:877.385970px;}
.y5{bottom:886.320000px;}
.yaf{bottom:892.699200px;}
.y34{bottom:896.013540px;}
.yae{bottom:911.326770px;}
.y33{bottom:914.558760px;}
.y4{bottom:915.030000px;}
.yad{bottom:929.871990px;}
.y32{bottom:933.103980px;}
.y3{bottom:939.513780px;}
.yac{bottom:948.417210px;}
.y31{bottom:951.649200px;}
.yab{bottom:966.962430px;}
.y30{bottom:970.276770px;}
.y2{bottom:973.260000px;}
.yaa{bottom:985.590000px;}
.y2f{bottom:988.821990px;}
.ya9{bottom:1003.950000px;}
.y2e{bottom:1007.367210px;}
.y2d{bottom:1025.912430px;}
.y1{bottom:1031.670000px;}
.ya8{bottom:1043.280000px;}
.y2c{bottom:1044.540000px;}
.y54{bottom:1072.440000px;}
.y2b{bottom:1072.800000px;}
.y2a{bottom:1093.860000px;}
.h7{height:33.339727px;}
.h9{height:43.909277px;}
.h8{height:45.219727px;}
.hb{height:47.988281px;}
.ha{height:55.135898px;}
.h6{height:55.168066px;}
.h2{height:70.200352px;}
.h5{height:70.664062px;}
.hc{height:72.562500px;}
.h3{height:79.900488px;}
.h4{height:108.122693px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:178.560000px;}
.x6{left:191.344500px;}
.x7{left:195.573510px;}
.x2{left:218.610000px;}
.x5{left:231.692220px;}
.x3{left:391.147290px;}
.x1{left:393.120000px;}
@media print{
.v2{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:42.546560pt;}
.ls2a{letter-spacing:-0.292800pt;}
.ls45{letter-spacing:-0.175680pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.117120pt;}
.ls14{letter-spacing:-0.106560pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls44{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.058560pt;}
.ls1b{letter-spacing:-0.048000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.017568pt;}
.ls5d{letter-spacing:0.029280pt;}
.ls27{letter-spacing:0.052704pt;}
.ls4{letter-spacing:0.058560pt;}
.ls2{letter-spacing:0.064000pt;}
.ls59{letter-spacing:0.081984pt;}
.ls5f{letter-spacing:0.122976pt;}
.ls0{letter-spacing:0.125760pt;}
.ls1c{letter-spacing:0.144000pt;}
.ls5c{letter-spacing:0.163968pt;}
.ls17{letter-spacing:0.175680pt;}
.ls11{letter-spacing:0.225600pt;}
.ls18{letter-spacing:0.234240pt;}
.ls30{letter-spacing:0.263520pt;}
.ls12{letter-spacing:0.288000pt;}
.ls3d{letter-spacing:0.292800pt;}
.ls39{letter-spacing:0.322080pt;}
.ls63{letter-spacing:0.351360pt;}
.ls41{letter-spacing:0.357216pt;}
.ls57{letter-spacing:0.398208pt;}
.ls26{letter-spacing:0.409920pt;}
.ls1e{letter-spacing:0.421632pt;}
.ls51{letter-spacing:0.597312pt;}
.ls22{letter-spacing:0.702720pt;}
.ls28{letter-spacing:1.054080pt;}
.ls9{letter-spacing:1.095072pt;}
.lsa{letter-spacing:1.346880pt;}
.lsb{letter-spacing:1.358592pt;}
.ls46{letter-spacing:1.698240pt;}
.ls48{letter-spacing:1.991040pt;}
.ls55{letter-spacing:2.447808pt;}
.ls20{letter-spacing:2.635200pt;}
.ls1{letter-spacing:2.635520pt;}
.ls10{letter-spacing:3.024000pt;}
.ls47{letter-spacing:3.279360pt;}
.ls2e{letter-spacing:3.572160pt;}
.ls34{letter-spacing:4.216320pt;}
.ls3f{letter-spacing:4.591104pt;}
.ls43{letter-spacing:4.848768pt;}
.ls40{letter-spacing:4.860480pt;}
.ls4c{letter-spacing:4.983456pt;}
.ls5e{letter-spacing:5.211840pt;}
.ls5a{letter-spacing:6.148800pt;}
.ls49{letter-spacing:6.845664pt;}
.ls50{letter-spacing:7.759200pt;}
.ls1f{letter-spacing:8.081280pt;}
.ls21{letter-spacing:8.725440pt;}
.lsc{letter-spacing:8.988960pt;}
.ls4d{letter-spacing:9.662400pt;}
.lse{letter-spacing:10.416000pt;}
.ls58{letter-spacing:10.950720pt;}
.ls31{letter-spacing:11.302080pt;}
.ls3e{letter-spacing:11.594880pt;}
.ls3b{letter-spacing:11.946240pt;}
.ls6{letter-spacing:12.239040pt;}
.ls5{letter-spacing:12.285888pt;}
.ls4b{letter-spacing:13.527360pt;}
.ls33{letter-spacing:13.820160pt;}
.lsd{letter-spacing:14.171520pt;}
.ls8{letter-spacing:15.459840pt;}
.ls42{letter-spacing:16.045440pt;}
.ls60{letter-spacing:16.104000pt;}
.ls37{letter-spacing:16.144992pt;}
.ls23{letter-spacing:16.748160pt;}
.ls4f{letter-spacing:16.818432pt;}
.ls2c{letter-spacing:17.333760pt;}
.ls3a{letter-spacing:17.977920pt;}
.ls35{letter-spacing:18.622080pt;}
.ls5b{letter-spacing:20.261760pt;}
.ls32{letter-spacing:21.491520pt;}
.ls36{letter-spacing:21.842880pt;}
.ls24{letter-spacing:22.135680pt;}
.ls38{letter-spacing:22.487040pt;}
.ls4e{letter-spacing:22.779840pt;}
.ls2f{letter-spacing:23.131200pt;}
.ls3{letter-spacing:23.142912pt;}
.ls25{letter-spacing:23.775360pt;}
.ls56{letter-spacing:26.644800pt;}
.ls52{letter-spacing:30.158400pt;}
.ls54{letter-spacing:34.046784pt;}
.ls53{letter-spacing:34.316160pt;}
.ls3c{letter-spacing:34.960320pt;}
.ls4a{letter-spacing:36.248640pt;}
.lsf{letter-spacing:37.584000pt;}
.ls7{letter-spacing:44.212800pt;}
.ls2b{letter-spacing:48.429120pt;}
.ls62{letter-spacing:63.127680pt;}
.ls2d{letter-spacing:174.157440pt;}
.ls1d{letter-spacing:523.344000pt;}
.ws2{word-spacing:-26.533440pt;}
.ws0{word-spacing:-18.640000pt;}
.ws14{word-spacing:-16.064000pt;}
.ws1c{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-14.991360pt;}
.ws18{word-spacing:-14.874240pt;}
.ws5{word-spacing:-14.815680pt;}
.ws3{word-spacing:-14.698560pt;}
.ws1{word-spacing:-14.640000pt;}
.ws6{word-spacing:-14.581440pt;}
.ws4{word-spacing:-14.522880pt;}
.ws19{word-spacing:-14.464320pt;}
.ws8{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.856000pt;}
.wse{word-spacing:-0.234240pt;}
.ws12{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.117120pt;}
.ws1a{word-spacing:-0.064000pt;}
.wsc{word-spacing:-0.058560pt;}
.ws9{word-spacing:0.000000pt;}
.ws11{word-spacing:0.048000pt;}
.wsb{word-spacing:0.058560pt;}
.ws1b{word-spacing:0.064000pt;}
.ws10{word-spacing:0.096000pt;}
.wsa{word-spacing:0.117120pt;}
.wsf{word-spacing:0.144000pt;}
.ws20{word-spacing:0.175680pt;}
.ws17{word-spacing:0.292800pt;}
.ws1d{word-spacing:3.220800pt;}
.wsd{word-spacing:15.576960pt;}
.ws16{word-spacing:19.456000pt;}
.ws15{word-spacing:19.648000pt;}
._16{margin-left:-14.121920pt;}
._1c{margin-left:-5.914560pt;}
._10{margin-left:-0.951776pt;}
._0{width:0.945920pt;}
._12{width:2.231136pt;}
._11{width:3.317248pt;}
._d{width:4.342048pt;}
._17{width:5.682432pt;}
._f{width:6.816384pt;}
._9{width:7.785376pt;}
._c{width:9.425056pt;}
._b{width:10.365120pt;}
._23{width:11.319648pt;}
._a{width:12.648960pt;}
._1f{width:13.571104pt;}
._13{width:15.705792pt;}
._20{width:16.631040pt;}
._1a{width:17.540320pt;}
._19{width:18.672000pt;}
._1b{width:20.140480pt;}
._1e{width:21.135008pt;}
._1{width:22.451552pt;}
._3{width:23.936224pt;}
._2{width:25.467744pt;}
._14{width:26.720928pt;}
._2a{width:27.631360pt;}
._15{width:28.550752pt;}
._1d{width:29.596224pt;}
._5{width:31.276896pt;}
._4{width:32.588640pt;}
._29{width:33.554176pt;}
._22{width:35.015424pt;}
._2c{width:36.002688pt;}
._27{width:37.214528pt;}
._18{width:38.395200pt;}
._2b{width:39.405536pt;}
._24{width:40.596544pt;}
._28{width:43.905536pt;}
._e{width:44.997152pt;}
._7{width:46.607904pt;}
._8{width:47.743968pt;}
._26{width:48.771520pt;}
._2d{width:50.180064pt;}
._2e{width:51.204864pt;}
._6{width:53.819392pt;}
._21{width:174.157440pt;}
._2f{width:197.385088pt;}
._25{width:1325.376000pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.fs2{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:207.336000pt;}
.y70{bottom:218.835280pt;}
.y27{bottom:220.776000pt;}
.y8a{bottom:222.811920pt;}
.y53{bottom:222.821200pt;}
.y9e{bottom:224.275120pt;}
.y26{bottom:234.300000pt;}
.y6f{bottom:235.319920pt;}
.ya7{bottom:238.160000pt;}
.y89{bottom:239.296560pt;}
.y52{bottom:239.305840pt;}
.y9d{bottom:240.832960pt;}
.y25{bottom:247.824000pt;}
.y6e{bottom:251.804560pt;}
.y88{bottom:255.781200pt;}
.y51{bottom:255.790480pt;}
.y9c{bottom:257.317600pt;}
.y24{bottom:261.348000pt;}
.y6d{bottom:268.362400pt;}
.ya6{bottom:272.160000pt;}
.y87{bottom:272.265840pt;}
.y50{bottom:272.275120pt;}
.y9b{bottom:273.802240pt;}
.y23{bottom:274.788000pt;}
.y6c{bottom:284.847040pt;}
.y22{bottom:288.312000pt;}
.y86{bottom:288.823680pt;}
.y4f{bottom:288.832960pt;}
.y9a{bottom:290.286880pt;}
.ycd{bottom:298.458800pt;}
.ya5{bottom:298.640000pt;}
.y6b{bottom:301.331680pt;}
.y21{bottom:301.836000pt;}
.y85{bottom:305.308320pt;}
.y4e{bottom:305.317600pt;}
.y99{bottom:306.844720pt;}
.ycc{bottom:314.943440pt;}
.y20{bottom:315.360000pt;}
.y6a{bottom:317.816320pt;}
.y84{bottom:321.792960pt;}
.y4d{bottom:321.802240pt;}
.y98{bottom:323.329360pt;}
.ya4{bottom:326.240000pt;}
.ycb{bottom:331.428080pt;}
.y1f{bottom:331.440000pt;}
.y69{bottom:334.374160pt;}
.y83{bottom:338.277600pt;}
.y4c{bottom:338.286880pt;}
.y97{bottom:339.814000pt;}
.y29{bottom:343.120000pt;}
.yca{bottom:347.985920pt;}
.y68{bottom:350.858800pt;}
.ya3{bottom:353.840000pt;}
.y82{bottom:354.835440pt;}
.y4b{bottom:354.844720pt;}
.y96{bottom:356.298640pt;}
.yc9{bottom:364.470560pt;}
.y67{bottom:367.343440pt;}
.y81{bottom:371.320080pt;}
.y4a{bottom:371.329360pt;}
.y95{bottom:372.856480pt;}
.y1e{bottom:375.284800pt;}
.yc8{bottom:380.955200pt;}
.ya2{bottom:381.440000pt;}
.y66{bottom:383.828080pt;}
.y80{bottom:387.804720pt;}
.y49{bottom:387.814000pt;}
.y94{bottom:389.341120pt;}
.y1d{bottom:391.769440pt;}
.yc7{bottom:397.439840pt;}
.y65{bottom:400.385920pt;}
.y7f{bottom:404.289360pt;}
.y48{bottom:404.298640pt;}
.y93{bottom:405.825760pt;}
.y1c{bottom:408.254080pt;}
.ya1{bottom:409.040000pt;}
.yc6{bottom:413.997680pt;}
.y64{bottom:416.870560pt;}
.y7e{bottom:420.847200pt;}
.y47{bottom:420.856480pt;}
.y92{bottom:422.310400pt;}
.y1b{bottom:424.811920pt;}
.yc5{bottom:430.482320pt;}
.y63{bottom:433.355200pt;}
.ya0{bottom:436.800000pt;}
.y7d{bottom:437.331840pt;}
.y46{bottom:437.341120pt;}
.y91{bottom:438.868240pt;}
.y1a{bottom:441.296560pt;}
.yc4{bottom:446.966960pt;}
.y62{bottom:449.839840pt;}
.y7c{bottom:453.816480pt;}
.y45{bottom:453.825760pt;}
.y90{bottom:455.352880pt;}
.y19{bottom:457.781200pt;}
.yc3{bottom:463.451600pt;}
.y9f{bottom:464.400000pt;}
.y61{bottom:466.397680pt;}
.y7b{bottom:470.301120pt;}
.y44{bottom:470.310400pt;}
.y8f{bottom:471.837520pt;}
.y18{bottom:474.265840pt;}
.yc2{bottom:480.009440pt;}
.y60{bottom:482.882320pt;}
.y7a{bottom:486.858960pt;}
.y43{bottom:486.868240pt;}
.y8e{bottom:488.322160pt;}
.y17{bottom:490.823680pt;}
.yc1{bottom:496.494080pt;}
.y5f{bottom:499.366960pt;}
.y79{bottom:503.343600pt;}
.y42{bottom:503.352880pt;}
.y8d{bottom:504.880000pt;}
.y16{bottom:507.308320pt;}
.yc0{bottom:512.978720pt;}
.y5e{bottom:515.851600pt;}
.y78{bottom:519.828240pt;}
.y41{bottom:519.837520pt;}
.y15{bottom:523.792960pt;}
.ybf{bottom:529.463360pt;}
.y5d{bottom:532.409440pt;}
.y77{bottom:536.312880pt;}
.y40{bottom:536.322160pt;}
.y8c{bottom:537.760000pt;}
.y14{bottom:540.277600pt;}
.ybe{bottom:546.021200pt;}
.y5c{bottom:548.894080pt;}
.y76{bottom:552.870720pt;}
.y3f{bottom:552.880000pt;}
.y13{bottom:556.835440pt;}
.ybd{bottom:562.505840pt;}
.y5b{bottom:565.378720pt;}
.y75{bottom:569.355360pt;}
.y12{bottom:573.320080pt;}
.ybc{bottom:578.990480pt;}
.y5a{bottom:581.863360pt;}
.y3e{bottom:585.760000pt;}
.y74{bottom:585.840000pt;}
.y11{bottom:589.804720pt;}
.ybb{bottom:595.475120pt;}
.y8b{bottom:596.400000pt;}
.y59{bottom:598.421200pt;}
.y3d{bottom:603.760000pt;}
.y10{bottom:606.289360pt;}
.yba{bottom:612.032960pt;}
.y58{bottom:614.905840pt;}
.y73{bottom:618.720000pt;}
.yf{bottom:622.847200pt;}
.yb9{bottom:628.517600pt;}
.y57{bottom:631.390480pt;}
.y72{bottom:636.720000pt;}
.ye{bottom:639.331840pt;}
.yb8{bottom:645.002240pt;}
.y56{bottom:647.875120pt;}
.yd{bottom:655.816480pt;}
.yb7{bottom:661.486880pt;}
.y3c{bottom:662.400000pt;}
.y55{bottom:664.432960pt;}
.yc{bottom:672.301120pt;}
.yb6{bottom:678.044720pt;}
.y3b{bottom:680.917600pt;}
.yb{bottom:688.858960pt;}
.yb5{bottom:694.529360pt;}
.y71{bottom:695.360000pt;}
.y3a{bottom:697.402240pt;}
.ya{bottom:705.343600pt;}
.yb4{bottom:711.014000pt;}
.y39{bottom:713.886880pt;}
.y9{bottom:721.828240pt;}
.yb3{bottom:727.498640pt;}
.y38{bottom:730.444720pt;}
.y8{bottom:738.312880pt;}
.yb2{bottom:744.056480pt;}
.y37{bottom:746.929360pt;}
.y7{bottom:754.870720pt;}
.yb1{bottom:760.541120pt;}
.y36{bottom:763.414000pt;}
.y6{bottom:771.355360pt;}
.yb0{bottom:777.025760pt;}
.y35{bottom:779.898640pt;}
.y5{bottom:787.840000pt;}
.yaf{bottom:793.510400pt;}
.y34{bottom:796.456480pt;}
.yae{bottom:810.068240pt;}
.y33{bottom:812.941120pt;}
.y4{bottom:813.360000pt;}
.yad{bottom:826.552880pt;}
.y32{bottom:829.425760pt;}
.y3{bottom:835.123360pt;}
.yac{bottom:843.037520pt;}
.y31{bottom:845.910400pt;}
.yab{bottom:859.522160pt;}
.y30{bottom:862.468240pt;}
.y2{bottom:865.120000pt;}
.yaa{bottom:876.080000pt;}
.y2f{bottom:878.952880pt;}
.ya9{bottom:892.400000pt;}
.y2e{bottom:895.437520pt;}
.y2d{bottom:911.922160pt;}
.y1{bottom:917.040000pt;}
.ya8{bottom:927.360000pt;}
.y2c{bottom:928.480000pt;}
.y54{bottom:953.280000pt;}
.y2b{bottom:953.600000pt;}
.y2a{bottom:972.320000pt;}
.h7{height:29.635312pt;}
.h9{height:39.030469pt;}
.h8{height:40.195312pt;}
.hb{height:42.656250pt;}
.ha{height:49.009687pt;}
.h6{height:49.038281pt;}
.h2{height:62.400312pt;}
.h5{height:62.812500pt;}
.hc{height:64.500000pt;}
.h3{height:71.022656pt;}
.h4{height:96.109060pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:158.720000pt;}
.x6{left:170.084000pt;}
.x7{left:173.843120pt;}
.x2{left:194.320000pt;}
.x5{left:205.948640pt;}
.x3{left:347.686480pt;}
.x1{left:349.440000pt;}
}




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