
    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_86bbe0865f75eb97db48e91c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_ad1f04b6f8754bfe6c9c808f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_203d74033aad8dd15609ec15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_732a08c667790cc413691472.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_eab619cb58dab7081208c67d.woff')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_1f93ed84dc162fe8c38055f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.044872px;}
.ls0{letter-spacing:0.000000px;}
.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:-26.671876px;}
.ws1{word-spacing:-18.336914px;}
.ws3{word-spacing:-11.002149px;}
.ws4{word-spacing:-10.001953px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-8.604199px;}
._c{margin-left:-6.671126px;}
._9{margin-left:-5.374174px;}
._0{margin-left:-4.227805px;}
._5{margin-left:-2.923080px;}
._8{margin-left:-1.008210px;}
._4{width:4.304527px;}
._a{width:5.422720px;}
._2{width:8.674276px;}
._3{width:9.711547px;}
._1{width:13.406203px;}
._7{width:22.627598px;}
._6{width:26.796772px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:39.600001px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs5{font-size:83.999997px;}
.fs4{font-size:96.000003px;}
.fs3{font-size:119.999997px;}
.fs1{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y5f{bottom:0.750000px;}
.ybb{bottom:11.053719px;}
.yc6{bottom:11.370842px;}
.y13d{bottom:11.370848px;}
.y149{bottom:11.370849px;}
.y9f{bottom:11.370851px;}
.yb5{bottom:11.370852px;}
.y147{bottom:11.370855px;}
.ya3{bottom:11.370857px;}
.yd0{bottom:11.370858px;}
.y56{bottom:11.371577px;}
.y91{bottom:11.371578px;}
.y6b{bottom:11.371581px;}
.y6{bottom:11.371583px;}
.y52{bottom:11.371584px;}
.y4a{bottom:11.371586px;}
.y8d{bottom:11.371587px;}
.y79{bottom:11.371589px;}
.yd{bottom:11.371592px;}
.yb2{bottom:11.372312px;}
.ya1{bottom:11.372315px;}
.yaa{bottom:11.372318px;}
.yaf{bottom:11.372319px;}
.y116{bottom:14.217029px;}
.yf0{bottom:14.217035px;}
.yf7{bottom:14.217039px;}
.yfe{bottom:14.217041px;}
.y1f{bottom:14.217590px;}
.y1b{bottom:14.217591px;}
.y132{bottom:14.217764px;}
.y138{bottom:14.217774px;}
.ye0{bottom:14.218503px;}
.ye7{bottom:14.218506px;}
.yba{bottom:28.620117px;}
.y51{bottom:30.344964px;}
.y8c{bottom:30.344967px;}
.y78{bottom:30.344969px;}
.y7f{bottom:30.344970px;}
.yc{bottom:30.344972px;}
.y90{bottom:30.344973px;}
.y6a{bottom:30.344976px;}
.ya9{bottom:30.344978px;}
.y59{bottom:30.344979px;}
.yf6{bottom:36.035889px;}
.y137{bottom:36.036621px;}
.y1e{bottom:36.036980px;}
.y115{bottom:36.037349px;}
.ydf{bottom:36.037353px;}
.yef{bottom:36.037355px;}
.y131{bottom:36.038084px;}
.ye6{bottom:36.038091px;}
.y2{bottom:38.523194px;}
.yb4{bottom:49.317627px;}
.y146{bottom:49.317630px;}
.ycf{bottom:49.317633px;}
.y69{bottom:49.318356px;}
.y50{bottom:49.318359px;}
.y8b{bottom:49.318362px;}
.y77{bottom:49.318364px;}
.y8f{bottom:49.318368px;}
.ybf{bottom:49.318371px;}
.ya8{bottom:49.319093px;}
.yae{bottom:49.319094px;}
.yf5{bottom:57.855459px;}
.y136{bottom:57.855470px;}
.yee{bottom:57.856205px;}
.y102{bottom:57.856209px;}
.y1d{bottom:57.856385px;}
.y130{bottom:57.856919px;}
.y114{bottom:57.856934px;}
.ye5{bottom:57.856941px;}
.y104{bottom:59.967044px;}
.y14{bottom:59.967584px;}
.y44{bottom:59.967779px;}
.y14d{bottom:60.342044px;}
.y60{bottom:60.342779px;}
.y76{bottom:68.291744px;}
.y145{bottom:68.291745px;}
.y87{bottom:68.291747px;}
.y83{bottom:68.291748px;}
.y68{bottom:68.291751px;}
.yad{bottom:68.291754px;}
.y8a{bottom:68.291757px;}
.yf4{bottom:79.674309px;}
.y135{bottom:79.675050px;}
.y101{bottom:79.675059px;}
.y113{bottom:79.675769px;}
.yed{bottom:79.675775px;}
.ye4{bottom:79.676511px;}
.y144{bottom:87.264405px;}
.y67{bottom:87.265131px;}
.y86{bottom:87.265136px;}
.y82{bottom:87.265137px;}
.y75{bottom:87.265139px;}
.y7d{bottom:87.265146px;}
.yac{bottom:87.265869px;}
.y112{bottom:101.494619px;}
.yec{bottom:101.494625px;}
.yf3{bottom:101.494629px;}
.ye3{bottom:101.495361px;}
.y134{bottom:101.495363px;}
.y12f{bottom:101.496089px;}
.y143{bottom:106.238520px;}
.y85{bottom:106.238525px;}
.y66{bottom:106.238526px;}
.y74{bottom:106.238534px;}
.yc0{bottom:117.036248px;}
.y103{bottom:122.027343px;}
.y111{bottom:123.314204px;}
.yeb{bottom:123.314210px;}
.y7c{bottom:123.487057px;}
.y5e{bottom:124.517577px;}
.y142{bottom:125.211180px;}
.y73{bottom:125.211914px;}
.y118{bottom:138.015390px;}
.y12e{bottom:138.314939px;}
.y3d{bottom:141.101630px;}
.y5d{bottom:143.490966px;}
.y141{bottom:144.185303px;}
.y110{bottom:145.134509px;}
.ybe{bottom:152.195062px;}
.y100{bottom:157.876459px;}
.y3c{bottom:160.075019px;}
.y12d{bottom:160.133774px;}
.y140{bottom:163.157960px;}
.y10f{bottom:166.953359px;}
.y5c{bottom:179.339352px;}
.y12c{bottom:181.954094px;}
.y3b{bottom:188.048398px;}
.y10e{bottom:188.772209px;}
.y7b{bottom:199.380612px;}
.y12b{bottom:203.772944px;}
.y3a{bottom:207.021787px;}
.y10d{bottom:210.592523px;}
.y7a{bottom:218.354001px;}
.y12a{bottom:225.593249px;}
.y39{bottom:225.995175px;}
.ybd{bottom:228.088617px;}
.y10c{bottom:232.412103px;}
.y5b{bottom:234.161127px;}
.y38{bottom:244.968564px;}
.ybc{bottom:247.062006px;}
.yff{bottom:247.999506px;}
.y72{bottom:254.202390px;}
.y10b{bottom:254.230950px;}
.y58{bottom:257.937740px;}
.y129{bottom:262.412099px;}
.y37{bottom:263.941953px;}
.y10a{bottom:276.049799px;}
.y5a{bottom:276.911127px;}
.y36{bottom:282.915341px;}
.yb9{bottom:283.813471px;}
.yfd{bottom:283.847898px;}
.y128{bottom:284.230949px;}
.yfc{bottom:286.693356px;}
.y57{bottom:295.884516px;}
.y109{bottom:297.869379px;}
.yb8{bottom:301.062006px;}
.y35{bottom:301.888730px;}
.y127{bottom:306.051254px;}
.yd9{bottom:315.975584px;}
.y108{bottom:319.689692px;}
.y34{bottom:320.862119px;}
.yfb{bottom:322.541751px;}
.y126{bottom:327.870104px;}
.y54{bottom:331.732910px;}
.yd8{bottom:337.795169px;}
.y95{bottom:339.672359px;}
.y107{bottom:341.508539px;}
.y33{bottom:348.835513px;}
.y71{bottom:349.069332px;}
.y125{bottom:349.690424px;}
.y55{bottom:350.706297px;}
.yd6{bottom:354.396972px;}
.yb7{bottom:355.135990px;}
.y94{bottom:356.274166px;}
.y32{bottom:367.808902px;}
.y70{bottom:368.042721px;}
.y53{bottom:369.679686px;}
.yfa{bottom:372.462155px;}
.yd7{bottom:373.369629px;}
.y124{bottom:386.508539px;}
.y31{bottom:386.782290px;}
.yf9{bottom:400.233394px;}
.y4f{bottom:405.528080px;}
.y30{bottom:405.755679px;}
.y123{bottom:408.328109px;}
.yd5{bottom:409.218746px;}
.yb6{bottom:410.990474px;}
.y6f{bottom:415.292721px;}
.y2f{bottom:424.729068px;}
.yb3{bottom:427.592282px;}
.y122{bottom:430.148429px;}
.y6e{bottom:432.167720px;}
.y93{bottom:432.167721px;}
.y4e{bottom:443.474856px;}
.y2e{bottom:443.702456px;}
.yb1{bottom:446.564937px;}
.yd4{bottom:447.165522px;}
.yf8{bottom:450.273194px;}
.y89{bottom:450.774167px;}
.y6d{bottom:451.141107px;}
.y121{bottom:451.967279px;}
.y14c{bottom:462.498779px;}
.y2d{bottom:462.675845px;}
.yb0{bottom:465.539058px;}
.yf2{bottom:466.875740px;}
.y8e{bottom:469.747556px;}
.y6c{bottom:470.114496px;}
.y120{bottom:473.786129px;}
.y14b{bottom:479.100582px;}
.y4d{bottom:479.323236px;}
.y2c{bottom:481.649234px;}
.y92{bottom:488.720945px;}
.y13f{bottom:491.778808px;}
.y11f{bottom:495.606434px;}
.yab{bottom:501.386720px;}
.yd2{bottom:501.987297px;}
.y65{bottom:505.962893px;}
.y2b{bottom:509.622626px;}
.y11e{bottom:517.426019px;}
.yd3{bottom:520.959954px;}
.y88{bottom:526.667721px;}
.y2a{bottom:528.596015px;}
.y14a{bottom:533.922357px;}
.y4c{bottom:537.621830px;}
.y11d{bottom:539.244869px;}
.ya7{bottom:539.333496px;}
.y29{bottom:547.569404px;}
.yf1{bottom:556.998786px;}
.y11c{bottom:561.063719px;}
.y84{bottom:562.516114px;}
.yd1{bottom:575.034670px;}
.ya6{bottom:577.280274px;}
.y4b{bottom:578.816158px;}
.y28{bottom:581.271790px;}
.y81{bottom:581.489502px;}
.y11b{bottom:582.883289px;}
.y148{bottom:588.744140px;}
.yea{bottom:592.847169px;}
.y11a{bottom:604.703609px;}
.y13c{bottom:605.619141px;}
.ya5{bottom:613.129392px;}
.y49{bottom:613.417968px;}
.yce{bottom:625.671386px;}
.y119{bottom:626.522459px;}
.ya4{bottom:632.102049px;}
.y27{bottom:637.126094px;}
.y13e{bottom:643.565917px;}
.y48{bottom:649.266357px;}
.y26{bottom:655.004511px;}
.y64{bottom:657.383057px;}
.ycc{bottom:663.618162px;}
.ya2{bottom:667.951167px;}
.y63{bottom:676.356444px;}
.y80{bottom:676.356446px;}
.y13b{bottom:679.413574px;}
.ycd{bottom:682.590819px;}
.ya0{bottom:686.923824px;}
.y25{bottom:692.129511px;}
.y62{bottom:695.329833px;}
.ye9{bottom:704.790528px;}
.y47{bottom:707.564941px;}
.y13{bottom:709.829774px;}
.y7e{bottom:712.204835px;}
.yca{bottom:718.439937px;}
.y9e{bottom:722.772948px;}
.y24{bottom:727.977906px;}
.y61{bottom:731.178222px;}
.y12{bottom:731.649164px;}
.y13a{bottom:733.488283px;}
.ycb{bottom:737.412594px;}
.ye8{bottom:740.638179px;}
.y117{bottom:753.166266px;}
.y11{bottom:753.468569px;}
.y46{bottom:754.488282px;}
.y23{bottom:765.102906px;}
.y10{bottom:771.346986px;}
.yc8{bottom:773.261712px;}
.ye2{bottom:776.485838px;}
.y9d{bottom:776.846185px;}
.y45{bottom:786.000000px;}
.y106{bottom:789.014655px;}
.yc9{bottom:792.234369px;}
.y22{bottom:802.227906px;}
.yf{bottom:807.195366px;}
.yc5{bottom:828.083502px;}
.y9c{bottom:837.890624px;}
.y21{bottom:838.076288px;}
.y20{bottom:840.922296px;}
.ye{bottom:843.043761px;}
.yc7{bottom:847.056159px;}
.ye1{bottom:866.610348px;}
.y1c{bottom:876.770694px;}
.y9b{bottom:877.561521px;}
.yb{bottom:878.892147px;}
.ya{bottom:897.865536px;}
.yc4{bottom:901.130860px;}
.yde{bottom:902.458016px;}
.y1a{bottom:920.409487px;}
.ydd{bottom:927.123786px;}
.y9{bottom:933.713931px;}
.y9a{bottom:942.043949px;}
.y99{bottom:958.645752px;}
.y19{bottom:959.103876px;}
.yc3{bottom:962.173827px;}
.ydc{bottom:962.972166px;}
.y8{bottom:969.562311px;}
.y98{bottom:977.619141px;}
.y139{bottom:990.607184px;}
.y7{bottom:1005.410705px;}
.y133{bottom:1007.208984px;}
.ydb{bottom:1012.893311px;}
.y18{bottom:1013.177855px;}
.yc2{bottom:1026.656250px;}
.y43{bottom:1035.656250px;}
.y5{bottom:1041.259094px;}
.yc1{bottom:1043.258056px;}
.y97{bottom:1051.414307px;}
.y42{bottom:1054.629638px;}
.yda{bottom:1065.816649px;}
.y17{bottom:1069.032166px;}
.y41{bottom:1073.603027px;}
.y4{bottom:1083.450074px;}
.y16{bottom:1090.851563px;}
.y40{bottom:1092.576416px;}
.y96{bottom:1105.488280px;}
.y3{bottom:1118.418459px;}
.y105{bottom:1119.151611px;}
.y3f{bottom:1120.549805px;}
.y15{bottom:1126.860351px;}
.y3e{bottom:1139.523194px;}
.y1{bottom:1155.000000px;}
.h1b{height:26.226563px;}
.h14{height:34.722657px;}
.h5{height:34.723389px;}
.h15{height:34.724121px;}
.h20{height:37.568847px;}
.hb{height:37.569398px;}
.h1a{height:39.990233px;}
.h4{height:43.989259px;}
.h6{height:48.049806px;}
.h2{height:48.082032px;}
.h19{height:51.971924px;}
.h7{height:53.696778px;}
.h1c{height:59.389160px;}
.he{height:61.195310px;}
.ha{height:69.937502px;}
.h18{height:72.669433px;}
.hf{height:72.670165px;}
.h16{height:72.670899px;}
.hc{height:81.208191px;}
.h9{height:87.421873px;}
.h13{height:91.643554px;}
.h8{height:107.625000px;}
.h1{height:108.000000px;}
.h12{height:110.616943px;}
.h17{height:110.617676px;}
.h3{height:113.648442px;}
.h1f{height:124.846436px;}
.h1d{height:124.847167px;}
.h10{height:129.590332px;}
.h1e{height:146.666016px;}
.h11{height:148.563720px;}
.h23{height:186.509766px;}
.h21{height:364.860345px;}
.h22{height:649.874265px;}
.hd{height:894.000000px;}
.h0{height:1263.000000px;}
.w7{width:41.625000px;}
.wf{width:99.000000px;}
.w14{width:103.500000px;}
.w16{width:111.375000px;}
.w19{width:113.625000px;}
.w12{width:117.000000px;}
.w13{width:127.125000px;}
.w10{width:138.375000px;}
.w20{width:142.875000px;}
.w8{width:146.250000px;}
.wc{width:172.125000px;}
.w1f{width:183.375000px;}
.w1c{width:185.625000px;}
.wb{width:198.000000px;}
.w9{width:227.250000px;}
.w1a{width:246.375000px;}
.w17{width:247.500000px;}
.wa{width:268.875000px;}
.w1e{width:272.250000px;}
.w1b{width:312.750000px;}
.w18{width:315.000000px;}
.w15{width:325.125000px;}
.w2{width:336.375000px;}
.wd{width:342.000000px;}
.we{width:345.375000px;}
.w11{width:441.000000px;}
.w1d{width:487.125000px;}
.w5{width:520.875000px;}
.w6{width:540.000000px;}
.w3{width:673.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:6.750000px;}
.x7{left:9.260496px;}
.xe{left:11.080004px;}
.xd{left:15.665002px;}
.x1{left:108.000000px;}
.x2{left:109.125000px;}
.x8{left:151.875000px;}
.x10{left:209.250000px;}
.x15{left:221.625000px;}
.x17{left:223.875000px;}
.x12{left:227.250000px;}
.x5{left:282.375000px;}
.x19{left:295.875000px;}
.x9{left:299.250000px;}
.x11{left:348.750000px;}
.x13{left:355.500000px;}
.x1a{left:382.500000px;}
.x4{left:446.625000px;}
.xf{left:452.250000px;}
.x14{left:460.125000px;}
.x16{left:470.250000px;}
.x18{left:471.375000px;}
.xa{left:527.625000px;}
.x1b{left:567.000000px;}
.x6{left:631.125000px;}
.x1c{left:711.000000px;}
.xb{left:797.625000px;}
.xc{left:996.750000px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.262108pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-23.708334pt;}
.ws1{word-spacing:-16.299479pt;}
.ws3{word-spacing:-9.779688pt;}
.ws4{word-spacing:-8.890625pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-7.648176pt;}
._c{margin-left:-5.929890pt;}
._9{margin-left:-4.777044pt;}
._0{margin-left:-3.758049pt;}
._5{margin-left:-2.598294pt;}
._8{margin-left:-0.896187pt;}
._4{width:3.826247pt;}
._a{width:4.820196pt;}
._2{width:7.710467pt;}
._3{width:8.632486pt;}
._1{width:11.916625pt;}
._7{width:20.113421pt;}
._6{width:23.819353pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:35.200001pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs5{font-size:74.666664pt;}
.fs4{font-size:85.333336pt;}
.fs3{font-size:106.666664pt;}
.fs1{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:0.666667pt;}
.ybb{bottom:9.825528pt;}
.yc6{bottom:10.107415pt;}
.y13d{bottom:10.107420pt;}
.y149{bottom:10.107421pt;}
.y9f{bottom:10.107423pt;}
.yb5{bottom:10.107424pt;}
.y147{bottom:10.107427pt;}
.ya3{bottom:10.107428pt;}
.yd0{bottom:10.107429pt;}
.y56{bottom:10.108068pt;}
.y91{bottom:10.108069pt;}
.y6b{bottom:10.108072pt;}
.y6{bottom:10.108073pt;}
.y52{bottom:10.108075pt;}
.y4a{bottom:10.108076pt;}
.y8d{bottom:10.108077pt;}
.y79{bottom:10.108079pt;}
.yd{bottom:10.108081pt;}
.yb2{bottom:10.108721pt;}
.ya1{bottom:10.108724pt;}
.yaa{bottom:10.108727pt;}
.yaf{bottom:10.108728pt;}
.y116{bottom:12.637359pt;}
.yf0{bottom:12.637364pt;}
.yf7{bottom:12.637368pt;}
.yfe{bottom:12.637369pt;}
.y1f{bottom:12.637857pt;}
.y1b{bottom:12.637859pt;}
.y132{bottom:12.638012pt;}
.y138{bottom:12.638021pt;}
.ye0{bottom:12.638669pt;}
.ye7{bottom:12.638672pt;}
.yba{bottom:25.440104pt;}
.y51{bottom:26.973301pt;}
.y8c{bottom:26.973304pt;}
.y78{bottom:26.973305pt;}
.y7f{bottom:26.973307pt;}
.yc{bottom:26.973308pt;}
.y90{bottom:26.973309pt;}
.y6a{bottom:26.973312pt;}
.ya9{bottom:26.973313pt;}
.y59{bottom:26.973315pt;}
.yf6{bottom:32.031901pt;}
.y137{bottom:32.032552pt;}
.y1e{bottom:32.032871pt;}
.y115{bottom:32.033199pt;}
.ydf{bottom:32.033203pt;}
.yef{bottom:32.033204pt;}
.y131{bottom:32.033852pt;}
.ye6{bottom:32.033859pt;}
.y2{bottom:34.242839pt;}
.yb4{bottom:43.837891pt;}
.y146{bottom:43.837893pt;}
.ycf{bottom:43.837896pt;}
.y69{bottom:43.838539pt;}
.y50{bottom:43.838541pt;}
.y8b{bottom:43.838544pt;}
.y77{bottom:43.838545pt;}
.y8f{bottom:43.838549pt;}
.ybf{bottom:43.838552pt;}
.ya8{bottom:43.839193pt;}
.yae{bottom:43.839195pt;}
.yf5{bottom:51.427075pt;}
.y136{bottom:51.427084pt;}
.yee{bottom:51.427737pt;}
.y102{bottom:51.427741pt;}
.y1d{bottom:51.427897pt;}
.y130{bottom:51.428372pt;}
.y114{bottom:51.428385pt;}
.ye5{bottom:51.428392pt;}
.y104{bottom:53.304039pt;}
.y14{bottom:53.304519pt;}
.y44{bottom:53.304692pt;}
.y14d{bottom:53.637372pt;}
.y60{bottom:53.638025pt;}
.y76{bottom:60.703772pt;}
.y145{bottom:60.703773pt;}
.y87{bottom:60.703775pt;}
.y83{bottom:60.703776pt;}
.y68{bottom:60.703779pt;}
.yad{bottom:60.703781pt;}
.y8a{bottom:60.703784pt;}
.yf4{bottom:70.821608pt;}
.y135{bottom:70.822267pt;}
.y101{bottom:70.822275pt;}
.y113{bottom:70.822905pt;}
.yed{bottom:70.822911pt;}
.ye4{bottom:70.823565pt;}
.y144{bottom:77.568360pt;}
.y67{bottom:77.569005pt;}
.y86{bottom:77.569009pt;}
.y82{bottom:77.569011pt;}
.y75{bottom:77.569012pt;}
.y7d{bottom:77.569019pt;}
.yac{bottom:77.569661pt;}
.y112{bottom:90.217439pt;}
.yec{bottom:90.217444pt;}
.yf3{bottom:90.217448pt;}
.ye3{bottom:90.218099pt;}
.y134{bottom:90.218100pt;}
.y12f{bottom:90.218745pt;}
.y143{bottom:94.434240pt;}
.y85{bottom:94.434244pt;}
.y66{bottom:94.434245pt;}
.y74{bottom:94.434252pt;}
.yc0{bottom:104.032220pt;}
.y103{bottom:108.468749pt;}
.y111{bottom:109.612625pt;}
.yeb{bottom:109.612631pt;}
.y7c{bottom:109.766273pt;}
.y5e{bottom:110.682291pt;}
.y142{bottom:111.298827pt;}
.y73{bottom:111.299479pt;}
.y118{bottom:122.680347pt;}
.y12e{bottom:122.946612pt;}
.y3d{bottom:125.423671pt;}
.y5d{bottom:127.547525pt;}
.y141{bottom:128.164713pt;}
.y110{bottom:129.008452pt;}
.ybe{bottom:135.284500pt;}
.y100{bottom:140.334631pt;}
.y3c{bottom:142.288905pt;}
.y12d{bottom:142.341132pt;}
.y140{bottom:145.029297pt;}
.y10f{bottom:148.402985pt;}
.y5c{bottom:159.412757pt;}
.y12c{bottom:161.736972pt;}
.y3b{bottom:167.154132pt;}
.y10e{bottom:167.797519pt;}
.y7b{bottom:177.227211pt;}
.y12b{bottom:181.131505pt;}
.y3a{bottom:184.019366pt;}
.y10d{bottom:187.193353pt;}
.y7a{bottom:194.092445pt;}
.y12a{bottom:200.527332pt;}
.y39{bottom:200.884600pt;}
.ybd{bottom:202.745437pt;}
.y10c{bottom:206.588536pt;}
.y5b{bottom:208.143224pt;}
.y38{bottom:217.749835pt;}
.ybc{bottom:219.610672pt;}
.yff{bottom:220.444005pt;}
.y72{bottom:225.957680pt;}
.y10b{bottom:225.983067pt;}
.y58{bottom:229.277991pt;}
.y129{bottom:233.255199pt;}
.y37{bottom:234.615069pt;}
.y10a{bottom:245.377599pt;}
.y5a{bottom:246.143224pt;}
.y36{bottom:251.480303pt;}
.yb9{bottom:252.278641pt;}
.yfd{bottom:252.309243pt;}
.y128{bottom:252.649732pt;}
.yfc{bottom:254.838539pt;}
.y57{bottom:263.008459pt;}
.y109{bottom:264.772781pt;}
.yb8{bottom:267.610672pt;}
.y35{bottom:268.345538pt;}
.y127{bottom:272.045559pt;}
.yd9{bottom:280.867185pt;}
.y108{bottom:284.168615pt;}
.y34{bottom:285.210772pt;}
.yfb{bottom:286.703779pt;}
.y126{bottom:291.440092pt;}
.y54{bottom:294.873697pt;}
.yd8{bottom:300.262372pt;}
.y95{bottom:301.930985pt;}
.y107{bottom:303.563145pt;}
.y33{bottom:310.076012pt;}
.y71{bottom:310.283851pt;}
.y125{bottom:310.835932pt;}
.y55{bottom:311.738931pt;}
.yd6{bottom:315.019531pt;}
.yb7{bottom:315.676435pt;}
.y94{bottom:316.688148pt;}
.y32{bottom:326.941246pt;}
.y70{bottom:327.149085pt;}
.y53{bottom:328.604165pt;}
.yfa{bottom:331.077471pt;}
.yd7{bottom:331.884115pt;}
.y124{bottom:343.563145pt;}
.y31{bottom:343.806480pt;}
.yf9{bottom:355.763017pt;}
.y4f{bottom:360.469404pt;}
.y30{bottom:360.671715pt;}
.y123{bottom:362.958319pt;}
.yd5{bottom:363.749996pt;}
.yb6{bottom:365.324865pt;}
.y6f{bottom:369.149085pt;}
.y2f{bottom:377.536949pt;}
.yb3{bottom:380.082028pt;}
.y122{bottom:382.354159pt;}
.y6e{bottom:384.149084pt;}
.y93{bottom:384.149085pt;}
.y4e{bottom:394.199872pt;}
.y2e{bottom:394.402183pt;}
.yb1{bottom:396.946611pt;}
.yd4{bottom:397.480464pt;}
.yf8{bottom:400.242839pt;}
.y89{bottom:400.688148pt;}
.y6d{bottom:401.014317pt;}
.y121{bottom:401.748692pt;}
.y14c{bottom:411.110025pt;}
.y2d{bottom:411.267418pt;}
.yb0{bottom:413.812496pt;}
.yf2{bottom:415.000657pt;}
.y8e{bottom:417.553383pt;}
.y6c{bottom:417.879552pt;}
.y120{bottom:421.143225pt;}
.y14b{bottom:425.867184pt;}
.y4d{bottom:426.065099pt;}
.y2c{bottom:428.132652pt;}
.y92{bottom:434.418617pt;}
.y13f{bottom:437.136719pt;}
.y11f{bottom:440.539052pt;}
.yab{bottom:445.677084pt;}
.yd2{bottom:446.210931pt;}
.y65{bottom:449.744793pt;}
.y2b{bottom:452.997890pt;}
.y11e{bottom:459.934239pt;}
.yd3{bottom:463.075515pt;}
.y88{bottom:468.149085pt;}
.y2a{bottom:469.863125pt;}
.y14a{bottom:474.597651pt;}
.y4c{bottom:477.886071pt;}
.y11d{bottom:479.328772pt;}
.ya7{bottom:479.407552pt;}
.y29{bottom:486.728359pt;}
.yf1{bottom:495.110032pt;}
.y11c{bottom:498.723305pt;}
.y84{bottom:500.014324pt;}
.yd1{bottom:511.141929pt;}
.ya6{bottom:513.138021pt;}
.y4b{bottom:514.503251pt;}
.y28{bottom:516.686035pt;}
.y81{bottom:516.879557pt;}
.y11b{bottom:518.118479pt;}
.y148{bottom:523.328124pt;}
.yea{bottom:526.975261pt;}
.y11a{bottom:537.514319pt;}
.y13c{bottom:538.328125pt;}
.ya5{bottom:545.003904pt;}
.y49{bottom:545.260416pt;}
.yce{bottom:556.152343pt;}
.y119{bottom:556.908852pt;}
.ya4{bottom:561.868488pt;}
.y27{bottom:566.334305pt;}
.y13e{bottom:572.058593pt;}
.y48{bottom:577.125651pt;}
.y26{bottom:582.226232pt;}
.y64{bottom:584.340495pt;}
.ycc{bottom:589.882811pt;}
.ya2{bottom:593.734371pt;}
.y63{bottom:601.205728pt;}
.y80{bottom:601.205729pt;}
.y13b{bottom:603.923177pt;}
.ycd{bottom:606.747395pt;}
.ya0{bottom:610.598955pt;}
.y25{bottom:615.226232pt;}
.y62{bottom:618.070963pt;}
.ye9{bottom:626.480469pt;}
.y47{bottom:628.946614pt;}
.y13{bottom:630.959799pt;}
.y7e{bottom:633.070964pt;}
.yca{bottom:638.613277pt;}
.y9e{bottom:642.464843pt;}
.y24{bottom:647.091472pt;}
.y61{bottom:649.936197pt;}
.y12{bottom:650.354812pt;}
.y13a{bottom:651.989585pt;}
.ycb{bottom:655.477861pt;}
.ye8{bottom:658.345048pt;}
.y117{bottom:669.481125pt;}
.y11{bottom:669.749839pt;}
.y46{bottom:670.656251pt;}
.y23{bottom:680.091472pt;}
.y10{bottom:685.641765pt;}
.yc8{bottom:687.343744pt;}
.ye2{bottom:690.209633pt;}
.y9d{bottom:690.529942pt;}
.y45{bottom:698.666667pt;}
.y106{bottom:701.346360pt;}
.yc9{bottom:704.208328pt;}
.y22{bottom:713.091472pt;}
.yf{bottom:717.506992pt;}
.yc5{bottom:736.074224pt;}
.y9c{bottom:744.791665pt;}
.y21{bottom:744.956700pt;}
.y20{bottom:747.486485pt;}
.ye{bottom:749.372232pt;}
.yc7{bottom:752.938808pt;}
.ye1{bottom:770.320309pt;}
.y1c{bottom:779.351728pt;}
.y9b{bottom:780.054685pt;}
.yb{bottom:781.237464pt;}
.ya{bottom:798.102699pt;}
.yc4{bottom:801.005209pt;}
.yde{bottom:802.184903pt;}
.y1a{bottom:818.141767pt;}
.ydd{bottom:824.110032pt;}
.y9{bottom:829.967939pt;}
.y9a{bottom:837.372399pt;}
.y99{bottom:852.129557pt;}
.y19{bottom:852.536779pt;}
.yc3{bottom:855.265624pt;}
.ydc{bottom:855.975259pt;}
.y8{bottom:861.833165pt;}
.y98{bottom:868.994792pt;}
.y139{bottom:880.539719pt;}
.y7{bottom:893.698404pt;}
.y133{bottom:895.296875pt;}
.ydb{bottom:900.349610pt;}
.y18{bottom:900.602538pt;}
.yc2{bottom:912.583333pt;}
.y43{bottom:920.583333pt;}
.y5{bottom:925.563639pt;}
.yc1{bottom:927.340495pt;}
.y97{bottom:934.590495pt;}
.y42{bottom:937.448567pt;}
.yda{bottom:947.392577pt;}
.y17{bottom:950.250814pt;}
.y41{bottom:954.313802pt;}
.y4{bottom:963.066732pt;}
.y16{bottom:969.645833pt;}
.y40{bottom:971.179036pt;}
.y96{bottom:982.656249pt;}
.y3{bottom:994.149741pt;}
.y105{bottom:994.801432pt;}
.y3f{bottom:996.044271pt;}
.y15{bottom:1001.653645pt;}
.y3e{bottom:1012.909505pt;}
.y1{bottom:1026.666667pt;}
.h1b{height:23.312500pt;}
.h14{height:30.864584pt;}
.h5{height:30.865235pt;}
.h15{height:30.865885pt;}
.h20{height:33.394531pt;}
.hb{height:33.395020pt;}
.h1a{height:35.546874pt;}
.h4{height:39.101563pt;}
.h6{height:42.710938pt;}
.h2{height:42.739584pt;}
.h19{height:46.197265pt;}
.h7{height:47.730469pt;}
.h1c{height:52.790364pt;}
.he{height:54.395831pt;}
.ha{height:62.166669pt;}
.h18{height:64.595052pt;}
.hf{height:64.595703pt;}
.h16{height:64.596355pt;}
.hc{height:72.185059pt;}
.h9{height:77.708331pt;}
.h13{height:81.460937pt;}
.h8{height:95.666667pt;}
.h1{height:96.000000pt;}
.h12{height:98.326172pt;}
.h17{height:98.326823pt;}
.h3{height:101.020837pt;}
.h1f{height:110.974609pt;}
.h1d{height:110.975260pt;}
.h10{height:115.191407pt;}
.h1e{height:130.369792pt;}
.h11{height:132.056640pt;}
.h23{height:165.786459pt;}
.h21{height:324.320307pt;}
.h22{height:577.666013pt;}
.hd{height:794.666667pt;}
.h0{height:1122.666667pt;}
.w7{width:37.000000pt;}
.wf{width:88.000000pt;}
.w14{width:92.000000pt;}
.w16{width:99.000000pt;}
.w19{width:101.000000pt;}
.w12{width:104.000000pt;}
.w13{width:113.000000pt;}
.w10{width:123.000000pt;}
.w20{width:127.000000pt;}
.w8{width:130.000000pt;}
.wc{width:153.000000pt;}
.w1f{width:163.000000pt;}
.w1c{width:165.000000pt;}
.wb{width:176.000000pt;}
.w9{width:202.000000pt;}
.w1a{width:219.000000pt;}
.w17{width:220.000000pt;}
.wa{width:239.000000pt;}
.w1e{width:242.000000pt;}
.w1b{width:278.000000pt;}
.w18{width:280.000000pt;}
.w15{width:289.000000pt;}
.w2{width:299.000000pt;}
.wd{width:304.000000pt;}
.we{width:307.000000pt;}
.w11{width:392.000000pt;}
.w1d{width:433.000000pt;}
.w5{width:463.000000pt;}
.w6{width:480.000000pt;}
.w3{width:599.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:6.000000pt;}
.x7{left:8.231552pt;}
.xe{left:9.848892pt;}
.xd{left:13.924446pt;}
.x1{left:96.000000pt;}
.x2{left:97.000000pt;}
.x8{left:135.000000pt;}
.x10{left:186.000000pt;}
.x15{left:197.000000pt;}
.x17{left:199.000000pt;}
.x12{left:202.000000pt;}
.x5{left:251.000000pt;}
.x19{left:263.000000pt;}
.x9{left:266.000000pt;}
.x11{left:310.000000pt;}
.x13{left:316.000000pt;}
.x1a{left:340.000000pt;}
.x4{left:397.000000pt;}
.xf{left:402.000000pt;}
.x14{left:409.000000pt;}
.x16{left:418.000000pt;}
.x18{left:419.000000pt;}
.xa{left:469.000000pt;}
.x1b{left:504.000000pt;}
.x6{left:561.000000pt;}
.x1c{left:632.000000pt;}
.xb{left:709.000000pt;}
.xc{left:886.000000pt;}
}




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