
    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_cc1e29b372f64ad33d200d7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131836;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_fae6d91cd13d2d43f09f4517.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_986a09330723b21b1823eb74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_b4f7f2edb326d446ed4c6cdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_6eea46a500fe9780cd35b312.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005859;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_c9490abbe7c55058ba68c2b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_76ec1cfacfacc54cb9a4996d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005859;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921875;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:ffb;src:url('chunks/assets/font_6a8c35fd8136730224408fdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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:ffc;src:url('chunks/assets/font_23d94c53ad7f41ec36d27fca.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.v1{vertical-align:15.120000px;}
.ls2f{letter-spacing:-0.399600px;}
.ls10{letter-spacing:-0.338400px;}
.ls1b{letter-spacing:-0.316800px;}
.ls11{letter-spacing:-0.280200px;}
.ls2e{letter-spacing:-0.259800px;}
.ls1c{letter-spacing:-0.229200px;}
.ls17{letter-spacing:-0.226200px;}
.ls2c{letter-spacing:-0.186000px;}
.ls33{letter-spacing:-0.172200px;}
.ls2b{letter-spacing:-0.157800px;}
.ls20{letter-spacing:-0.108000px;}
.ls3a{letter-spacing:-0.097800px;}
.ls15{letter-spacing:-0.089400px;}
.ls34{letter-spacing:-0.075000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.026640px;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.075600px;}
.ls2a{letter-spacing:0.105600px;}
.ls26{letter-spacing:0.105840px;}
.lsa{letter-spacing:0.113841px;}
.ls1e{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.164400px;}
.lsb{letter-spacing:0.170761px;}
.ls29{letter-spacing:0.192000px;}
.ls39{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.227682px;}
.ls1d{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lse{letter-spacing:0.262200px;}
.ls28{letter-spacing:0.274800px;}
.ls2{letter-spacing:0.320400px;}
.ls5{letter-spacing:0.331800px;}
.ls4{letter-spacing:0.338400px;}
.lsf{letter-spacing:0.341400px;}
.ls21{letter-spacing:0.355680px;}
.ls0{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.376800px;}
.ls22{letter-spacing:0.439920px;}
.ls36{letter-spacing:0.460200px;}
.ls1a{letter-spacing:0.490800px;}
.ls18{letter-spacing:0.493800px;}
.ls12{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.666720px;}
.ls38{letter-spacing:0.693360px;}
.ls35{letter-spacing:0.696000px;}
.ls16{letter-spacing:0.720000px;}
.ls32{letter-spacing:0.798000px;}
.ls2d{letter-spacing:0.924000px;}
.ls24{letter-spacing:0.979920px;}
.ls3b{letter-spacing:3.546000px;}
.ls27{letter-spacing:6.426720px;}
.ls23{letter-spacing:7.146720px;}
.ls3{letter-spacing:9.306720px;}
.ls7{letter-spacing:25.146720px;}
.ls6{letter-spacing:33.066720px;}
.ls37{letter-spacing:36.666720px;}
.ls30{letter-spacing:74.826720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.080320px;}
.ws1f{word-spacing:-17.537280px;}
.ws23{word-spacing:-17.411280px;}
.ws26{word-spacing:-17.309280px;}
.wse{word-spacing:-17.104080px;}
.ws27{word-spacing:-17.073480px;}
.ws22{word-spacing:-16.990080px;}
.wsc{word-spacing:-16.951680px;}
.wsf{word-spacing:-16.945080px;}
.wsb{word-spacing:-16.933680px;}
.ws1a{word-spacing:-16.888080px;}
.ws1{word-spacing:-16.822200px;}
.ws28{word-spacing:-16.819680px;}
.ws1b{word-spacing:-16.805280px;}
.ws6{word-spacing:-16.777680px;}
.ws12{word-spacing:-16.757280px;}
.ws1c{word-spacing:-16.688880px;}
.ws5{word-spacing:-16.613280px;}
.wsd{word-spacing:-16.586640px;}
.ws0{word-spacing:-16.560000px;}
.ws25{word-spacing:-16.538280px;}
.ws29{word-spacing:-16.515480px;}
.ws1d{word-spacing:-16.455480px;}
.ws24{word-spacing:-16.441080px;}
.ws1e{word-spacing:-16.427280px;}
.ws11{word-spacing:-16.384080px;}
.ws20{word-spacing:-16.353480px;}
.ws4{word-spacing:-16.333080px;}
.ws10{word-spacing:-16.296480px;}
.ws21{word-spacing:-16.213680px;}
.ws17{word-spacing:-16.051561px;}
.ws16{word-spacing:-15.823879px;}
.ws2{word-spacing:-15.300000px;}
.ws15{word-spacing:-13.392000px;}
.ws7{word-spacing:-11.160000px;}
.wsa{word-spacing:-10.933800px;}
.ws19{word-spacing:-10.808640px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.213800px;}
.ws14{word-spacing:-9.437760px;}
.ws13{word-spacing:-8.928000px;}
.ws18{word-spacing:0.000000px;}
._11{margin-left:-8.884560px;}
._9{margin-left:-7.408800px;}
._12{margin-left:-5.353200px;}
._2{margin-left:-4.106640px;}
._10{margin-left:-3.006115px;}
._0{margin-left:-1.093680px;}
._1{width:1.133520px;}
._8{width:2.934720px;}
._4{width:3.941760px;}
._3{width:5.107680px;}
._14{width:6.119040px;}
._f{width:7.119600px;}
._7{width:8.214240px;}
._6{width:9.442560px;}
._d{width:11.479440px;}
._e{width:13.087440px;}
._5{width:15.191280px;}
._a{width:18.078720px;}
._13{width:19.655280px;}
._c{width:24.335280px;}
._b{width:25.752720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsa{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.780000px;}
.y50{bottom:5.010000px;}
.y4e{bottom:6.300000px;}
.y37{bottom:7.200000px;}
.y2{bottom:9.930000px;}
.y41{bottom:17.460000px;}
.y4{bottom:22.710000px;}
.y40{bottom:25.380000px;}
.y4d{bottom:29.880000px;}
.y36{bottom:33.345000px;}
.y3{bottom:47.910000px;}
.y4c{bottom:50.940000px;}
.y3f{bottom:56.154000px;}
.y7{bottom:57.060000px;}
.y35{bottom:59.445000px;}
.y4b{bottom:60.834000px;}
.y3e{bottom:68.934000px;}
.y4a{bottom:79.734000px;}
.y3d{bottom:80.634000px;}
.y34{bottom:82.665000px;}
.y3c{bottom:93.774000px;}
.y38{bottom:94.356000px;}
.y7e{bottom:101.376000px;}
.y33{bottom:102.825000px;}
.y49{bottom:103.314000px;}
.y3b{bottom:115.734000px;}
.y48{bottom:120.954000px;}
.y32{bottom:122.805000px;}
.yab{bottom:123.696000px;}
.y47{bottom:127.434000px;}
.y7d{bottom:127.476000px;}
.y46{bottom:142.914000px;}
.yaa{bottom:143.676000px;}
.y31{bottom:145.845000px;}
.y7c{bottom:150.690000px;}
.y45{bottom:158.394000px;}
.ya9{bottom:163.830000px;}
.y30{bottom:169.065000px;}
.y7b{bottom:170.850000px;}
.y44{bottom:174.054000px;}
.y3a{bottom:177.654000px;}
.ya8{bottom:183.990000px;}
.y39{bottom:188.274000px;}
.y43{bottom:189.534000px;}
.y7a{bottom:191.010000px;}
.y2f{bottom:192.105000px;}
.ya7{bottom:203.970000px;}
.y42{bottom:205.014000px;}
.y79{bottom:210.990000px;}
.y2e{bottom:215.325000px;}
.ya6{bottom:224.130000px;}
.y78{bottom:230.970000px;}
.y2d{bottom:235.305000px;}
.ya5{bottom:244.290000px;}
.y77{bottom:254.190000px;}
.y2c{bottom:258.345000px;}
.ya4{bottom:264.270000px;}
.y76{bottom:274.350000px;}
.y2b{bottom:281.565000px;}
.ya3{bottom:284.250000px;}
.y75{bottom:294.510000px;}
.y1d{bottom:299.595000px;}
.y2a{bottom:301.575000px;}
.ya2{bottom:307.470000px;}
.yf{bottom:312.690000px;}
.y74{bottom:314.490000px;}
.y1c{bottom:323.715000px;}
.y29{bottom:324.795000px;}
.ya1{bottom:327.630000px;}
.y73{bottom:337.710000px;}
.y1b{bottom:347.835000px;}
.y72{bottom:357.735000px;}
.ya0{bottom:367.815000px;}
.y28{bottom:371.055000px;}
.y1a{bottom:371.955000px;}
.y71{bottom:377.895000px;}
.y9f{bottom:390.855000px;}
.y27{bottom:394.275000px;}
.y19{bottom:396.255000px;}
.y70{bottom:397.875000px;}
.y9e{bottom:414.075000px;}
.y26{bottom:414.255000px;}
.y18{bottom:420.375000px;}
.y6f{bottom:421.095000px;}
.y25{bottom:434.415000px;}
.y9d{bottom:437.295000px;}
.y6e{bottom:441.255000px;}
.y17{bottom:444.495000px;}
.y9c{bottom:457.275000px;}
.y24{bottom:457.455000px;}
.y6d{bottom:464.295000px;}
.y16{bottom:468.615000px;}
.y9b{bottom:480.315000px;}
.y23{bottom:480.675000px;}
.y6c{bottom:490.395000px;}
.y15{bottom:492.735000px;}
.y22{bottom:500.655000px;}
.y9a{bottom:503.535000px;}
.y6b{bottom:513.615000px;}
.y14{bottom:516.855000px;}
.y21{bottom:520.815000px;}
.yc2{bottom:526.575000px;}
.y99{bottom:526.755000px;}
.y6a{bottom:533.595000px;}
.y13{bottom:540.975000px;}
.y98{bottom:546.735000px;}
.yc1{bottom:547.635000px;}
.y69{bottom:553.755000px;}
.y20{bottom:564.060000px;}
.y12{bottom:565.320000px;}
.y97{bottom:566.715000px;}
.yc0{bottom:573.735000px;}
.y68{bottom:576.795000px;}
.y1f{bottom:587.280000px;}
.y11{bottom:589.440000px;}
.y96{bottom:589.935000px;}
.ybf{bottom:596.955000px;}
.y67{bottom:600.015000px;}
.y1e{bottom:607.260000px;}
.y95{bottom:610.125000px;}
.y10{bottom:613.560000px;}
.ybe{bottom:620.025000px;}
.y66{bottom:620.205000px;}
.y94{bottom:630.285000px;}
.y65{bottom:640.185000px;}
.ybd{bottom:643.065000px;}
.y93{bottom:650.265000px;}
.y64{bottom:660.345000px;}
.ybc{bottom:669.345000px;}
.y92{bottom:670.245000px;}
.y63{bottom:680.505000px;}
.ybb{bottom:692.565000px;}
.y91{bottom:693.465000px;}
.y62{bottom:700.485000px;}
.yba{bottom:712.545000px;}
.y90{bottom:713.625000px;}
.y61{bottom:720.645000px;}
.y8f{bottom:733.785000px;}
.yb9{bottom:735.585000px;}
.y60{bottom:743.685000px;}
.y8e{bottom:753.765000px;}
.yb8{bottom:758.625000px;}
.y5f{bottom:766.905000px;}
.y8d{bottom:773.745000px;}
.yb7{bottom:781.845000px;}
.y5e{bottom:786.885000px;}
.y8c{bottom:796.965000px;}
.yb6{bottom:804.885000px;}
.y5d{bottom:809.925000px;}
.y8b{bottom:817.125000px;}
.yb5{bottom:828.105000px;}
.y5c{bottom:833.145000px;}
.y8a{bottom:837.285000px;}
.yb4{bottom:848.265000px;}
.y5b{bottom:856.185000px;}
.y89{bottom:857.265000px;}
.yb3{bottom:871.350000px;}
.y88{bottom:877.290000px;}
.y5a{bottom:879.270000px;}
.yb2{bottom:897.450000px;}
.y87{bottom:900.510000px;}
.y59{bottom:902.490000px;}
.y86{bottom:920.670000px;}
.y58{bottom:925.530000px;}
.ye{bottom:938.490000px;}
.y85{bottom:940.830000px;}
.yd{bottom:944.070000px;}
.y57{bottom:948.750000px;}
.y84{bottom:960.810000px;}
.yc{bottom:964.230000px;}
.y56{bottom:968.910000px;}
.y83{bottom:980.790000px;}
.yb1{bottom:983.850000px;}
.yb{bottom:987.090000px;}
.y55{bottom:989.070000px;}
.y82{bottom:1004.010000px;}
.yb0{bottom:1007.070000px;}
.y54{bottom:1009.050000px;}
.ya{bottom:1010.310000px;}
.y81{bottom:1024.170000px;}
.yaf{bottom:1027.230000px;}
.y53{bottom:1032.090000px;}
.y9{bottom:1036.230000px;}
.y80{bottom:1044.330000px;}
.yae{bottom:1047.210000px;}
.y52{bottom:1058.190000px;}
.y7f{bottom:1064.310000px;}
.yad{bottom:1067.370000px;}
.y8{bottom:1071.870000px;}
.y4f{bottom:1075.140000px;}
.y51{bottom:1084.290000px;}
.yac{bottom:1087.530000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.064063px;}
.h14{height:4.210313px;}
.h10{height:21.114844px;}
.h16{height:22.104141px;}
.h19{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h13{height:38.100586px;}
.h11{height:38.997070px;}
.h12{height:39.471680px;}
.h7{height:40.132617px;}
.hf{height:41.535703px;}
.h6{height:41.726953px;}
.h18{height:45.302880px;}
.h5{height:46.251562px;}
.h1b{height:47.562891px;}
.h17{height:57.243164px;}
.h15{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.he{height:217.620000px;}
.hb{height:623.265000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.660000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1c{left:18.180000px;}
.x17{left:19.980000px;}
.x16{left:25.560000px;}
.x1e{left:29.160000px;}
.x10{left:43.740000px;}
.x1d{left:47.700000px;}
.x11{left:50.760000px;}
.xf{left:54.900000px;}
.x1f{left:57.060000px;}
.x1a{left:62.145000px;}
.x15{left:67.134000px;}
.x13{left:69.654000px;}
.x14{left:73.254000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x20{left:102.774000px;}
.x1b{left:106.734000px;}
.x27{left:113.435987px;}
.x12{left:124.554000px;}
.x21{left:126.045000px;}
.x5{left:141.345000px;}
.x22{left:168.165000px;}
.x3{left:182.370000px;}
.x18{left:219.090000px;}
.x23{left:286.455000px;}
.x24{left:294.015000px;}
.xb{left:339.014987px;}
.x25{left:378.975000px;}
.xc{left:533.984987px;}
.xd{left:609.629987px;}
.xa{left:671.369987px;}
.x8{left:766.049987px;}
.x7{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls2f{letter-spacing:-0.355200pt;}
.ls10{letter-spacing:-0.300800pt;}
.ls1b{letter-spacing:-0.281600pt;}
.ls11{letter-spacing:-0.249067pt;}
.ls2e{letter-spacing:-0.230933pt;}
.ls1c{letter-spacing:-0.203733pt;}
.ls17{letter-spacing:-0.201067pt;}
.ls2c{letter-spacing:-0.165333pt;}
.ls33{letter-spacing:-0.153067pt;}
.ls2b{letter-spacing:-0.140267pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls3a{letter-spacing:-0.086933pt;}
.ls15{letter-spacing:-0.079467pt;}
.ls34{letter-spacing:-0.066667pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.023680pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.067200pt;}
.ls2a{letter-spacing:0.093867pt;}
.ls26{letter-spacing:0.094080pt;}
.lsa{letter-spacing:0.101192pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.146133pt;}
.lsb{letter-spacing:0.151788pt;}
.ls29{letter-spacing:0.170667pt;}
.ls39{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.202384pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.233067pt;}
.ls28{letter-spacing:0.244267pt;}
.ls2{letter-spacing:0.284800pt;}
.ls5{letter-spacing:0.294933pt;}
.ls4{letter-spacing:0.300800pt;}
.lsf{letter-spacing:0.303467pt;}
.ls21{letter-spacing:0.316160pt;}
.ls0{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.334933pt;}
.ls22{letter-spacing:0.391040pt;}
.ls36{letter-spacing:0.409067pt;}
.ls1a{letter-spacing:0.436267pt;}
.ls18{letter-spacing:0.438933pt;}
.ls12{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.592640pt;}
.ls38{letter-spacing:0.616320pt;}
.ls35{letter-spacing:0.618667pt;}
.ls16{letter-spacing:0.640000pt;}
.ls32{letter-spacing:0.709333pt;}
.ls2d{letter-spacing:0.821333pt;}
.ls24{letter-spacing:0.871040pt;}
.ls3b{letter-spacing:3.152000pt;}
.ls27{letter-spacing:5.712640pt;}
.ls23{letter-spacing:6.352640pt;}
.ls3{letter-spacing:8.272640pt;}
.ls7{letter-spacing:22.352640pt;}
.ls6{letter-spacing:29.392640pt;}
.ls37{letter-spacing:32.592640pt;}
.ls30{letter-spacing:66.512640pt;}
.ws3{word-spacing:-20.515840pt;}
.ws1f{word-spacing:-15.588693pt;}
.ws23{word-spacing:-15.476693pt;}
.ws26{word-spacing:-15.386027pt;}
.wse{word-spacing:-15.203627pt;}
.ws27{word-spacing:-15.176427pt;}
.ws22{word-spacing:-15.102293pt;}
.wsc{word-spacing:-15.068160pt;}
.wsf{word-spacing:-15.062293pt;}
.wsb{word-spacing:-15.052160pt;}
.ws1a{word-spacing:-15.011627pt;}
.ws1{word-spacing:-14.953067pt;}
.ws28{word-spacing:-14.950827pt;}
.ws1b{word-spacing:-14.938027pt;}
.ws6{word-spacing:-14.913493pt;}
.ws12{word-spacing:-14.895360pt;}
.ws1c{word-spacing:-14.834560pt;}
.ws5{word-spacing:-14.767360pt;}
.wsd{word-spacing:-14.743680pt;}
.ws0{word-spacing:-14.720000pt;}
.ws25{word-spacing:-14.700693pt;}
.ws29{word-spacing:-14.680427pt;}
.ws1d{word-spacing:-14.627093pt;}
.ws24{word-spacing:-14.614293pt;}
.ws1e{word-spacing:-14.602027pt;}
.ws11{word-spacing:-14.563627pt;}
.ws20{word-spacing:-14.536427pt;}
.ws4{word-spacing:-14.518293pt;}
.ws10{word-spacing:-14.485760pt;}
.ws21{word-spacing:-14.412160pt;}
.ws17{word-spacing:-14.268054pt;}
.ws16{word-spacing:-14.065670pt;}
.ws2{word-spacing:-13.600000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws7{word-spacing:-9.920000pt;}
.wsa{word-spacing:-9.718933pt;}
.ws19{word-spacing:-9.607680pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.078933pt;}
.ws14{word-spacing:-8.389120pt;}
.ws13{word-spacing:-7.936000pt;}
.ws18{word-spacing:0.000000pt;}
._11{margin-left:-7.897387pt;}
._9{margin-left:-6.585600pt;}
._12{margin-left:-4.758400pt;}
._2{margin-left:-3.650347pt;}
._10{margin-left:-2.672102pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.007573pt;}
._8{width:2.608640pt;}
._4{width:3.503787pt;}
._3{width:4.540160pt;}
._14{width:5.439147pt;}
._f{width:6.328533pt;}
._7{width:7.301547pt;}
._6{width:8.393387pt;}
._d{width:10.203947pt;}
._e{width:11.633280pt;}
._5{width:13.503360pt;}
._a{width:16.069973pt;}
._13{width:17.471360pt;}
._c{width:21.631360pt;}
._b{width:22.891307pt;}
.fs5{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsa{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.360000pt;}
.y50{bottom:4.453333pt;}
.y4e{bottom:5.600000pt;}
.y37{bottom:6.400000pt;}
.y2{bottom:8.826667pt;}
.y41{bottom:15.520000pt;}
.y4{bottom:20.186667pt;}
.y40{bottom:22.560000pt;}
.y4d{bottom:26.560000pt;}
.y36{bottom:29.640000pt;}
.y3{bottom:42.586667pt;}
.y4c{bottom:45.280000pt;}
.y3f{bottom:49.914667pt;}
.y7{bottom:50.720000pt;}
.y35{bottom:52.840000pt;}
.y4b{bottom:54.074667pt;}
.y3e{bottom:61.274667pt;}
.y4a{bottom:70.874667pt;}
.y3d{bottom:71.674667pt;}
.y34{bottom:73.480000pt;}
.y3c{bottom:83.354667pt;}
.y38{bottom:83.872000pt;}
.y7e{bottom:90.112000pt;}
.y33{bottom:91.400000pt;}
.y49{bottom:91.834667pt;}
.y3b{bottom:102.874667pt;}
.y48{bottom:107.514667pt;}
.y32{bottom:109.160000pt;}
.yab{bottom:109.952000pt;}
.y47{bottom:113.274667pt;}
.y7d{bottom:113.312000pt;}
.y46{bottom:127.034667pt;}
.yaa{bottom:127.712000pt;}
.y31{bottom:129.640000pt;}
.y7c{bottom:133.946667pt;}
.y45{bottom:140.794667pt;}
.ya9{bottom:145.626667pt;}
.y30{bottom:150.280000pt;}
.y7b{bottom:151.866667pt;}
.y44{bottom:154.714667pt;}
.y3a{bottom:157.914667pt;}
.ya8{bottom:163.546667pt;}
.y39{bottom:167.354667pt;}
.y43{bottom:168.474667pt;}
.y7a{bottom:169.786667pt;}
.y2f{bottom:170.760000pt;}
.ya7{bottom:181.306667pt;}
.y42{bottom:182.234667pt;}
.y79{bottom:187.546667pt;}
.y2e{bottom:191.400000pt;}
.ya6{bottom:199.226667pt;}
.y78{bottom:205.306667pt;}
.y2d{bottom:209.160000pt;}
.ya5{bottom:217.146667pt;}
.y77{bottom:225.946667pt;}
.y2c{bottom:229.640000pt;}
.ya4{bottom:234.906667pt;}
.y76{bottom:243.866667pt;}
.y2b{bottom:250.280000pt;}
.ya3{bottom:252.666667pt;}
.y75{bottom:261.786667pt;}
.y1d{bottom:266.306667pt;}
.y2a{bottom:268.066667pt;}
.ya2{bottom:273.306667pt;}
.yf{bottom:277.946667pt;}
.y74{bottom:279.546667pt;}
.y1c{bottom:287.746667pt;}
.y29{bottom:288.706667pt;}
.ya1{bottom:291.226667pt;}
.y73{bottom:300.186667pt;}
.y1b{bottom:309.186667pt;}
.y72{bottom:317.986667pt;}
.ya0{bottom:326.946667pt;}
.y28{bottom:329.826667pt;}
.y1a{bottom:330.626667pt;}
.y71{bottom:335.906667pt;}
.y9f{bottom:347.426667pt;}
.y27{bottom:350.466667pt;}
.y19{bottom:352.226667pt;}
.y70{bottom:353.666667pt;}
.y9e{bottom:368.066667pt;}
.y26{bottom:368.226667pt;}
.y18{bottom:373.666667pt;}
.y6f{bottom:374.306667pt;}
.y25{bottom:386.146667pt;}
.y9d{bottom:388.706667pt;}
.y6e{bottom:392.226667pt;}
.y17{bottom:395.106667pt;}
.y9c{bottom:406.466667pt;}
.y24{bottom:406.626667pt;}
.y6d{bottom:412.706667pt;}
.y16{bottom:416.546667pt;}
.y9b{bottom:426.946667pt;}
.y23{bottom:427.266667pt;}
.y6c{bottom:435.906667pt;}
.y15{bottom:437.986667pt;}
.y22{bottom:445.026667pt;}
.y9a{bottom:447.586667pt;}
.y6b{bottom:456.546667pt;}
.y14{bottom:459.426667pt;}
.y21{bottom:462.946667pt;}
.yc2{bottom:468.066667pt;}
.y99{bottom:468.226667pt;}
.y6a{bottom:474.306667pt;}
.y13{bottom:480.866667pt;}
.y98{bottom:485.986667pt;}
.yc1{bottom:486.786667pt;}
.y69{bottom:492.226667pt;}
.y20{bottom:501.386667pt;}
.y12{bottom:502.506667pt;}
.y97{bottom:503.746667pt;}
.yc0{bottom:509.986667pt;}
.y68{bottom:512.706667pt;}
.y1f{bottom:522.026667pt;}
.y11{bottom:523.946667pt;}
.y96{bottom:524.386667pt;}
.ybf{bottom:530.626667pt;}
.y67{bottom:533.346667pt;}
.y1e{bottom:539.786667pt;}
.y95{bottom:542.333333pt;}
.y10{bottom:545.386667pt;}
.ybe{bottom:551.133333pt;}
.y66{bottom:551.293333pt;}
.y94{bottom:560.253333pt;}
.y65{bottom:569.053333pt;}
.ybd{bottom:571.613333pt;}
.y93{bottom:578.013333pt;}
.y64{bottom:586.973333pt;}
.ybc{bottom:594.973333pt;}
.y92{bottom:595.773333pt;}
.y63{bottom:604.893333pt;}
.ybb{bottom:615.613333pt;}
.y91{bottom:616.413333pt;}
.y62{bottom:622.653333pt;}
.yba{bottom:633.373333pt;}
.y90{bottom:634.333333pt;}
.y61{bottom:640.573333pt;}
.y8f{bottom:652.253333pt;}
.yb9{bottom:653.853333pt;}
.y60{bottom:661.053333pt;}
.y8e{bottom:670.013333pt;}
.yb8{bottom:674.333333pt;}
.y5f{bottom:681.693333pt;}
.y8d{bottom:687.773333pt;}
.yb7{bottom:694.973333pt;}
.y5e{bottom:699.453333pt;}
.y8c{bottom:708.413333pt;}
.yb6{bottom:715.453333pt;}
.y5d{bottom:719.933333pt;}
.y8b{bottom:726.333333pt;}
.yb5{bottom:736.093333pt;}
.y5c{bottom:740.573333pt;}
.y8a{bottom:744.253333pt;}
.yb4{bottom:754.013333pt;}
.y5b{bottom:761.053333pt;}
.y89{bottom:762.013333pt;}
.yb3{bottom:774.533333pt;}
.y88{bottom:779.813333pt;}
.y5a{bottom:781.573333pt;}
.yb2{bottom:797.733333pt;}
.y87{bottom:800.453333pt;}
.y59{bottom:802.213333pt;}
.y86{bottom:818.373333pt;}
.y58{bottom:822.693333pt;}
.ye{bottom:834.213333pt;}
.y85{bottom:836.293333pt;}
.yd{bottom:839.173333pt;}
.y57{bottom:843.333333pt;}
.y84{bottom:854.053333pt;}
.yc{bottom:857.093333pt;}
.y56{bottom:861.253333pt;}
.y83{bottom:871.813333pt;}
.yb1{bottom:874.533333pt;}
.yb{bottom:877.413333pt;}
.y55{bottom:879.173333pt;}
.y82{bottom:892.453333pt;}
.yb0{bottom:895.173333pt;}
.y54{bottom:896.933333pt;}
.ya{bottom:898.053333pt;}
.y81{bottom:910.373333pt;}
.yaf{bottom:913.093333pt;}
.y53{bottom:917.413333pt;}
.y9{bottom:921.093333pt;}
.y80{bottom:928.293333pt;}
.yae{bottom:930.853333pt;}
.y52{bottom:940.613333pt;}
.y7f{bottom:946.053333pt;}
.yad{bottom:948.773333pt;}
.y8{bottom:952.773333pt;}
.y4f{bottom:955.680000pt;}
.y51{bottom:963.813333pt;}
.yac{bottom:966.693333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.612500pt;}
.h14{height:3.742500pt;}
.h10{height:18.768750pt;}
.h16{height:19.648125pt;}
.h19{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h13{height:33.867188pt;}
.h11{height:34.664062pt;}
.h12{height:35.085938pt;}
.h7{height:35.673437pt;}
.hf{height:36.920625pt;}
.h6{height:37.090625pt;}
.h18{height:40.269227pt;}
.h5{height:41.112500pt;}
.h1b{height:42.278125pt;}
.h17{height:50.882812pt;}
.h15{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.he{height:193.440000pt;}
.hb{height:554.013333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.920000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1c{left:16.160000pt;}
.x17{left:17.760000pt;}
.x16{left:22.720000pt;}
.x1e{left:25.920000pt;}
.x10{left:38.880000pt;}
.x1d{left:42.400000pt;}
.x11{left:45.120000pt;}
.xf{left:48.800000pt;}
.x1f{left:50.720000pt;}
.x1a{left:55.240000pt;}
.x15{left:59.674667pt;}
.x13{left:61.914667pt;}
.x14{left:65.114667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x20{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x27{left:100.831988pt;}
.x12{left:110.714667pt;}
.x21{left:112.040000pt;}
.x5{left:125.640000pt;}
.x22{left:149.480000pt;}
.x3{left:162.106667pt;}
.x18{left:194.746667pt;}
.x23{left:254.626667pt;}
.x24{left:261.346667pt;}
.xb{left:301.346655pt;}
.x25{left:336.866667pt;}
.xc{left:474.653322pt;}
.xd{left:541.893322pt;}
.xa{left:596.773322pt;}
.x8{left:680.933322pt;}
.x7{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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