
    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_864d0fbf2fedb4d65aa8bce4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_4b34d6ab1fb69d7e64d97ab8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_d54b7ca90b5ce802a5b069d8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_ca91f87458d84acd1a38a95d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.451000;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_716f28dd71beba488a8a8094.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_5466959fd2323b9258f7f861.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4388c26dca184ca55bcdcf7e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_2c5f28d3e950a1777a6c0c75.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_c9312090ced7e983da7e8155.woff')format("woff");}.ff9{font-family:ff9;line-height:0.890000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-21.696000px;}
.v5{vertical-align:-10.599103px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v4{vertical-align:31.797308px;}
.ls16{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003031px;}
.ls4{letter-spacing:0.003269px;}
.ls17{letter-spacing:0.834017px;}
.lsb{letter-spacing:1.655249px;}
.ls18{letter-spacing:2.964877px;}
.ls19{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.990234px;}
.ls0{letter-spacing:2.991113px;}
.ls10{letter-spacing:6.764108px;}
.ls8{letter-spacing:16.478100px;}
.ls9{letter-spacing:16.479269px;}
.lsa{letter-spacing:16.484245px;}
.lsf{letter-spacing:17.367269px;}
.ls11{letter-spacing:17.373269px;}
.lsc{letter-spacing:18.483269px;}
.lsd{letter-spacing:18.488245px;}
.lse{letter-spacing:18.489031px;}
.ls12{letter-spacing:19.551269px;}
.ls14{letter-spacing:19.557223px;}
.ls13{letter-spacing:19.557269px;}
.ls15{letter-spacing:19.557411px;}
.ls6{letter-spacing:23.618245px;}
.ls5{letter-spacing:23.619269px;}
.ls2{letter-spacing:23.912915px;}
.ls1{letter-spacing:23.913113px;}
.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:-50.809387px;}
.ws42{word-spacing:-38.937826px;}
.ws67{word-spacing:-14.920027px;}
.ws73{word-spacing:-11.955150px;}
.ws66{word-spacing:-1.135736px;}
.ws5{word-spacing:-0.896634px;}
.ws59{word-spacing:-0.478205px;}
.wsb{word-spacing:-0.358654px;}
.ws44{word-spacing:-0.059776px;}
.ws50{word-spacing:0.000000px;}
.ws20{word-spacing:0.239102px;}
.ws1d{word-spacing:0.478205px;}
.ws6d{word-spacing:0.478206px;}
.ws72{word-spacing:0.573847px;}
.wse{word-spacing:0.597756px;}
.ws6c{word-spacing:0.669488px;}
.ws5d{word-spacing:0.777083px;}
.ws6f{word-spacing:1.195515px;}
.ws17{word-spacing:1.374839px;}
.ws43{word-spacing:1.529083px;}
.ws45{word-spacing:1.554166px;}
.ws69{word-spacing:1.853044px;}
.ws32{word-spacing:1.972595px;}
.ws5a{word-spacing:2.092146px;}
.wsf{word-spacing:2.391024px;}
.ws7c{word-spacing:2.391030px;}
.ws46{word-spacing:2.405309px;}
.ws47{word-spacing:2.450800px;}
.ws64{word-spacing:2.570351px;}
.ws4{word-spacing:2.749678px;}
.ws82{word-spacing:2.869236px;}
.ws68{word-spacing:3.048556px;}
.ws75{word-spacing:3.108339px;}
.ws53{word-spacing:3.203980px;}
.ws2e{word-spacing:3.227882px;}
.ws18{word-spacing:3.287658px;}
.ws3d{word-spacing:3.347434px;}
.ws77{word-spacing:3.347442px;}
.ws3a{word-spacing:3.526760px;}
.ws7b{word-spacing:3.921289px;}
.ws4f{word-spacing:4.244068px;}
.ws31{word-spacing:4.483170px;}
.ws49{word-spacing:4.602721px;}
.ws4a{word-spacing:4.610134px;}
.ws48{word-spacing:4.616134px;}
.ws71{word-spacing:4.779659px;}
.ws6e{word-spacing:4.782060px;}
.ws70{word-spacing:5.068984px;}
.ws4e{word-spacing:5.080926px;}
.ws62{word-spacing:5.260253px;}
.ws15{word-spacing:5.379804px;}
.ws3c{word-spacing:5.439580px;}
.ws1e{word-spacing:5.499355px;}
.ws2c{word-spacing:5.559131px;}
.ws6{word-spacing:5.618906px;}
.ws3{word-spacing:5.977560px;}
.ws6b{word-spacing:6.276438px;}
.ws85{word-spacing:6.503602px;}
.ws1{word-spacing:6.575340px;}
.ws27{word-spacing:6.933970px;}
.ws30{word-spacing:7.053521px;}
.ws61{word-spacing:7.113296px;}
.ws7d{word-spacing:7.268731px;}
.ws16{word-spacing:7.412174px;}
.ws6a{word-spacing:7.711052px;}
.ws10{word-spacing:8.667462px;}
.ws7{word-spacing:8.727238px;}
.wsa{word-spacing:8.906564px;}
.ws79{word-spacing:9.038093px;}
.ws2b{word-spacing:9.085891px;}
.ws3f{word-spacing:9.205442px;}
.ws38{word-spacing:9.324994px;}
.ws7a{word-spacing:9.564120px;}
.ws2a{word-spacing:9.683647px;}
.ws26{word-spacing:9.862974px;}
.ws78{word-spacing:9.898864px;}
.ws25{word-spacing:9.922750px;}
.ws76{word-spacing:10.185788px;}
.ws19{word-spacing:10.460730px;}
.ws3b{word-spacing:10.759608px;}
.ws86{word-spacing:10.975708px;}
.ws87{word-spacing:10.998738px;}
.wsc{word-spacing:11.237813px;}
.ws56{word-spacing:11.476915px;}
.ws14{word-spacing:11.536691px;}
.ws3e{word-spacing:11.835569px;}
.ws81{word-spacing:11.859509px;}
.ws21{word-spacing:11.895344px;}
.ws58{word-spacing:12.134447px;}
.ws11{word-spacing:12.253998px;}
.ws80{word-spacing:12.385535px;}
.ws60{word-spacing:12.433325px;}
.ws4d{word-spacing:12.612652px;}
.ws22{word-spacing:12.971305px;}
.ws5e{word-spacing:13.031081px;}
.ws1b{word-spacing:13.210408px;}
.ws8{word-spacing:13.808164px;}
.ws39{word-spacing:13.867939px;}
.ws1f{word-spacing:14.166817px;}
.ws0{word-spacing:14.346180px;}
.ws65{word-spacing:14.585246px;}
.ws23{word-spacing:14.824349px;}
.ws12{word-spacing:15.003676px;}
.ws55{word-spacing:15.063451px;}
.ws13{word-spacing:15.183002px;}
.ws4b{word-spacing:15.362329px;}
.ws7e{word-spacing:16.163363px;}
.ws7f{word-spacing:16.593748px;}
.ws1a{word-spacing:16.617617px;}
.ws9{word-spacing:16.677392px;}
.ws63{word-spacing:16.976270px;}
.ws1c{word-spacing:17.155597px;}
.ws54{word-spacing:17.394700px;}
.ws33{word-spacing:17.574026px;}
.ws2d{word-spacing:17.753353px;}
.ws84{word-spacing:17.932725px;}
.ws2f{word-spacing:18.052231px;}
.ws4c{word-spacing:18.231558px;}
.wsd{word-spacing:19.367294px;}
.ws5c{word-spacing:19.666172px;}
.ws57{word-spacing:19.845499px;}
.ws74{word-spacing:19.893370px;}
.ws5b{word-spacing:19.905275px;}
.ws34{word-spacing:20.084602px;}
.ws41{word-spacing:20.263928px;}
.ws36{word-spacing:20.383480px;}
.ws35{word-spacing:20.801909px;}
.ws28{word-spacing:21.160562px;}
.ws24{word-spacing:21.339889px;}
.ws40{word-spacing:21.578992px;}
.ws5f{word-spacing:21.818094px;}
.ws37{word-spacing:23.491811px;}
.ws29{word-spacing:25.882835px;}
.ws83{word-spacing:31.131211px;}
.ws52{word-spacing:40.622000px;}
.ws51{word-spacing:101.726527px;}
._0{margin-left:-5.738472px;}
._5{margin-left:-4.244064px;}
._2{margin-left:-2.869236px;}
._1{margin-left:-1.434618px;}
._3{width:1.975523px;}
._4{width:3.011151px;}
._a{width:7.027146px;}
._b{width:8.843243px;}
._7{width:13.569065px;}
._6{width:22.834283px;}
._9{width:30.270440px;}
._8{width:33.115697px;}
._c{width:59.537574px;}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.797308px;}
.fs7{font-size:38.863376px;}
.fs4{font-size:41.842800px;}
.fs5{font-size:42.396411px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y42{bottom:14.132136px;}
.y41{bottom:27.381014px;}
.y63{bottom:37.980117px;}
.y40{bottom:39.746634px;}
.y61{bottom:48.579220px;}
.y62{bottom:51.228995px;}
.y5f{bottom:57.411805px;}
.y5e{bottom:70.660683px;}
.y51{bottom:74.193718px;}
.y60{bottom:83.026303px;}
.y50{bottom:86.559337px;}
.y5b{bottom:111.290577px;}
.y31{bottom:113.332500px;}
.ya0{bottom:121.407000px;}
.y5a{bottom:124.539455px;}
.y30{bottom:131.265000px;}
.y9f{bottom:134.856000px;}
.y59{bottom:136.905075px;}
.y9e{bottom:148.306500px;}
.y3a{bottom:149.197500px;}
.y2f{bottom:149.199000px;}
.y9d{bottom:161.755500px;}
.y39{bottom:167.130000px;}
.y2e{bottom:167.131500px;}
.y5d{bottom:174.885193px;}
.y9c{bottom:175.206000px;}
.y4f{bottom:179.301485px;}
.y64{bottom:184.352662px;}
.y2d{bottom:185.064000px;}
.y9b{bottom:188.655000px;}
.y4e{bottom:191.667105px;}
.y9a{bottom:202.104000px;}
.y2c{bottom:202.996500px;}
.y7e{bottom:209.220000px;}
.y99{bottom:215.554500px;}
.y2b{bottom:220.929000px;}
.y5c{bottom:223.464413px;}
.y98{bottom:229.003500px;}
.y7d{bottom:233.010000px;}
.y66{bottom:237.596550px;}
.y2a{bottom:238.861500px;}
.y4d{bottom:242.012843px;}
.y97{bottom:242.452500px;}
.y58{bottom:247.312394px;}
.y7c{bottom:250.942500px;}
.y4a{bottom:253.495204px;}
.y4c{bottom:255.261721px;}
.y96{bottom:255.903000px;}
.y38{bottom:256.794000px;}
.y29{bottom:256.795500px;}
.y57{bottom:260.561272px;}
.y49{bottom:265.860824px;}
.y4b{bottom:267.627341px;}
.y7b{bottom:268.875000px;}
.y95{bottom:269.352000px;}
.y56{bottom:272.926892px;}
.y28{bottom:274.728000px;}
.y94{bottom:282.802500px;}
.y7a{bottom:286.807500px;}
.y65{bottom:289.056270px;}
.y3d{bottom:291.475322px;}
.y27{bottom:292.660500px;}
.y93{bottom:296.251500px;}
.y3c{bottom:303.840941px;}
.y79{bottom:304.741500px;}
.y92{bottom:309.700500px;}
.y26{bottom:310.593000px;}
.y52{bottom:313.556785px;}
.y78{bottom:322.674000px;}
.y91{bottom:323.151000px;}
.y25{bottom:328.525500px;}
.y90{bottom:336.600000px;}
.y46{bottom:338.288025px;}
.y77{bottom:340.606500px;}
.y48{bottom:344.470835px;}
.y24{bottom:346.458000px;}
.y8f{bottom:350.049000px;}
.y68{bottom:353.303420px;}
.y47{bottom:356.836455px;}
.y76{bottom:358.539000px;}
.y8e{bottom:363.499500px;}
.y37{bottom:364.390500px;}
.y23{bottom:364.392000px;}
.y75{bottom:376.471500px;}
.y8d{bottom:376.948500px;}
.y22{bottom:382.324500px;}
.y45{bottom:386.867245px;}
.y8c{bottom:390.397500px;}
.y55{bottom:392.166797px;}
.y74{bottom:394.404000px;}
.y44{bottom:400.116124px;}
.y21{bottom:400.257000px;}
.y8b{bottom:403.848000px;}
.y54{bottom:405.415675px;}
.y43{bottom:412.481743px;}
.y73{bottom:412.590000px;}
.y8a{bottom:417.297000px;}
.y53{bottom:417.781295px;}
.y20{bottom:418.189500px;}
.y72{bottom:430.522500px;}
.y89{bottom:430.747500px;}
.y1f{bottom:436.122000px;}
.y3f{bottom:441.629276px;}
.y67{bottom:443.395793px;}
.y88{bottom:444.196500px;}
.y71{bottom:448.455000px;}
.y3e{bottom:453.994895px;}
.y1e{bottom:454.054500px;}
.y87{bottom:457.645500px;}
.y70{bottom:466.389000px;}
.y86{bottom:471.096000px;}
.y36{bottom:471.987000px;}
.y1d{bottom:471.988500px;}
.y6f{bottom:484.321500px;}
.y85{bottom:484.545000px;}
.y1c{bottom:489.921000px;}
.y84{bottom:497.994000px;}
.y6e{bottom:502.254000px;}
.y1b{bottom:507.853500px;}
.y83{bottom:511.444500px;}
.y6d{bottom:520.186500px;}
.y82{bottom:524.893500px;}
.y1a{bottom:525.786000px;}
.y6c{bottom:538.119000px;}
.y81{bottom:538.344000px;}
.y19{bottom:543.718500px;}
.y80{bottom:551.793000px;}
.y6b{bottom:556.051500px;}
.y35{bottom:561.651000px;}
.y18{bottom:561.652500px;}
.y7f{bottom:573.984000px;}
.y6a{bottom:573.985500px;}
.y34{bottom:579.583500px;}
.y17{bottom:579.585000px;}
.y16{bottom:597.517500px;}
.y69{bottom:609.546000px;}
.y15{bottom:615.450000px;}
.y14{bottom:633.382500px;}
.y3b{bottom:638.760795px;}
.y13{bottom:651.315000px;}
.y33{bottom:669.247500px;}
.y12{bottom:669.249000px;}
.y11{bottom:687.181500px;}
.y10{bottom:705.114000px;}
.yf{bottom:723.046500px;}
.ye{bottom:740.979000px;}
.yd{bottom:758.911500px;}
.y32{bottom:776.844000px;}
.yc{bottom:776.845500px;}
.yb{bottom:794.778000px;}
.ya{bottom:812.710500px;}
.y9{bottom:830.643000px;}
.y8{bottom:880.881000px;}
.y7{bottom:899.374500px;}
.y6{bottom:917.868000px;}
.y5{bottom:931.159500px;}
.y4{bottom:950.392500px;}
.y3{bottom:997.465500px;}
.y2{bottom:1039.309500px;}
.y1{bottom:1081.152000px;}
.h9{height:23.149310px;}
.hb{height:25.902592px;}
.ha{height:28.293601px;}
.h7{height:30.865746px;}
.hc{height:32.900573px;}
.hd{height:33.140573px;}
.h3{height:33.665702px;}
.h4{height:41.125613px;}
.h5{height:44.831700px;}
.h2{height:57.419702px;}
.h8{height:62.663054px;}
.h1{height:98.701718px;}
.h6{height:473.426584px;}
.h0{height:1188.000000px;}
.w1{width:771.084680px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:21.488024px;}
.x11{left:27.960654px;}
.x10{left:31.783507px;}
.xa{left:73.446000px;}
.xd{left:81.245986px;}
.x9{left:88.390500px;}
.x3{left:91.704000px;}
.x2{left:108.525000px;}
.x29{left:130.832673px;}
.x28{left:136.435845px;}
.x27{left:139.085620px;}
.x4{left:156.418500px;}
.x3a{left:196.570500px;}
.x1b{left:207.538158px;}
.x20{left:211.678433px;}
.x22{left:214.466217px;}
.x21{left:216.977984px;}
.x38{left:218.606492px;}
.x1c{left:222.263739px;}
.x7{left:229.479000px;}
.x1{left:236.976000px;}
.x1e{left:244.786832px;}
.x1f{left:248.319866px;}
.x39{left:258.794756px;}
.x5{left:262.261500px;}
.x1d{left:263.335261px;}
.x8{left:293.295000px;}
.x37{left:305.607459px;}
.x36{left:314.440045px;}
.x2a{left:365.655244px;}
.x2b{left:367.725382px;}
.x6{left:379.642500px;}
.x32{left:390.979919px;}
.x31{left:395.092591px;}
.xf{left:438.965704px;}
.xe{left:444.568876px;}
.xc{left:467.967000px;}
.x3c{left:473.944500px;}
.xb{left:482.910000px;}
.x26{left:485.612797px;}
.x24{left:493.272300px;}
.x3d{left:495.355500px;}
.x25{left:497.108954px;}
.x2e{left:534.205814px;}
.x30{left:536.413960px;}
.x3e{left:539.011500px;}
.x19{left:540.830253px;}
.x2f{left:545.701980px;}
.x13{left:549.649042px;}
.x1a{left:551.719179px;}
.x14{left:573.497023px;}
.x17{left:600.740029px;}
.x16{left:603.679619px;}
.x3b{left:614.418000px;}
.x15{left:615.755424px;}
.x18{left:679.501845px;}
.x33{left:685.850246px;}
.x2d{left:690.998012px;}
.x2c{left:693.633982px;}
.x35{left:699.830598px;}
.x23{left:701.293495px;}
.x34{left:734.411825px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v5{vertical-align:-9.421425pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v4{vertical-align:28.264274pt;}
.ls16{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.002694pt;}
.ls4{letter-spacing:0.002906pt;}
.ls17{letter-spacing:0.741348pt;}
.lsb{letter-spacing:1.471333pt;}
.ls18{letter-spacing:2.635446pt;}
.ls19{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.657986pt;}
.ls0{letter-spacing:2.658767pt;}
.ls10{letter-spacing:6.012540pt;}
.ls8{letter-spacing:14.647200pt;}
.ls9{letter-spacing:14.648239pt;}
.lsa{letter-spacing:14.652662pt;}
.lsf{letter-spacing:15.437573pt;}
.ls11{letter-spacing:15.442906pt;}
.lsc{letter-spacing:16.429573pt;}
.lsd{letter-spacing:16.433995pt;}
.lse{letter-spacing:16.434694pt;}
.ls12{letter-spacing:17.378906pt;}
.ls14{letter-spacing:17.384199pt;}
.ls13{letter-spacing:17.384239pt;}
.ls15{letter-spacing:17.384365pt;}
.ls6{letter-spacing:20.993995pt;}
.ls5{letter-spacing:20.994906pt;}
.ls2{letter-spacing:21.255925pt;}
.ls1{letter-spacing:21.256100pt;}
.ws2{word-spacing:-45.163900pt;}
.ws42{word-spacing:-34.611401pt;}
.ws67{word-spacing:-13.262246pt;}
.ws73{word-spacing:-10.626800pt;}
.ws66{word-spacing:-1.009543pt;}
.ws5{word-spacing:-0.797008pt;}
.ws59{word-spacing:-0.425071pt;}
.wsb{word-spacing:-0.318803pt;}
.ws44{word-spacing:-0.053134pt;}
.ws50{word-spacing:0.000000pt;}
.ws20{word-spacing:0.212535pt;}
.ws1d{word-spacing:0.425071pt;}
.ws6d{word-spacing:0.425072pt;}
.ws72{word-spacing:0.510086pt;}
.wse{word-spacing:0.531339pt;}
.ws6c{word-spacing:0.595101pt;}
.ws5d{word-spacing:0.690740pt;}
.ws6f{word-spacing:1.062680pt;}
.ws17{word-spacing:1.222079pt;}
.ws43{word-spacing:1.359185pt;}
.ws45{word-spacing:1.381481pt;}
.ws69{word-spacing:1.647150pt;}
.ws32{word-spacing:1.753418pt;}
.ws5a{word-spacing:1.859685pt;}
.wsf{word-spacing:2.125355pt;}
.ws7c{word-spacing:2.125360pt;}
.ws46{word-spacing:2.138052pt;}
.ws47{word-spacing:2.178489pt;}
.ws64{word-spacing:2.284756pt;}
.ws4{word-spacing:2.444158pt;}
.ws82{word-spacing:2.550432pt;}
.ws68{word-spacing:2.709827pt;}
.ws75{word-spacing:2.762968pt;}
.ws53{word-spacing:2.847982pt;}
.ws2e{word-spacing:2.869229pt;}
.ws18{word-spacing:2.922363pt;}
.ws3d{word-spacing:2.975497pt;}
.ws77{word-spacing:2.975504pt;}
.ws3a{word-spacing:3.134898pt;}
.ws7b{word-spacing:3.485590pt;}
.ws4f{word-spacing:3.772505pt;}
.ws31{word-spacing:3.985040pt;}
.ws49{word-spacing:4.091308pt;}
.ws4a{word-spacing:4.097897pt;}
.ws48{word-spacing:4.103230pt;}
.ws71{word-spacing:4.248586pt;}
.ws6e{word-spacing:4.250720pt;}
.ws70{word-spacing:4.505763pt;}
.ws4e{word-spacing:4.516379pt;}
.ws62{word-spacing:4.675780pt;}
.ws15{word-spacing:4.782048pt;}
.ws3c{word-spacing:4.835182pt;}
.ws1e{word-spacing:4.888316pt;}
.ws2c{word-spacing:4.941450pt;}
.ws6{word-spacing:4.994583pt;}
.ws3{word-spacing:5.313387pt;}
.ws6b{word-spacing:5.579056pt;}
.ws85{word-spacing:5.780979pt;}
.ws1{word-spacing:5.844747pt;}
.ws27{word-spacing:6.163529pt;}
.ws30{word-spacing:6.269796pt;}
.ws61{word-spacing:6.322930pt;}
.ws7d{word-spacing:6.461094pt;}
.ws16{word-spacing:6.588599pt;}
.ws6a{word-spacing:6.854269pt;}
.ws10{word-spacing:7.704411pt;}
.ws7{word-spacing:7.757545pt;}
.wsa{word-spacing:7.916946pt;}
.ws79{word-spacing:8.033861pt;}
.ws2b{word-spacing:8.076348pt;}
.ws3f{word-spacing:8.182615pt;}
.ws38{word-spacing:8.288883pt;}
.ws7a{word-spacing:8.501440pt;}
.ws2a{word-spacing:8.607686pt;}
.ws26{word-spacing:8.767088pt;}
.ws78{word-spacing:8.798990pt;}
.ws25{word-spacing:8.820222pt;}
.ws76{word-spacing:9.054034pt;}
.ws19{word-spacing:9.298427pt;}
.ws3b{word-spacing:9.564096pt;}
.ws86{word-spacing:9.756185pt;}
.ws87{word-spacing:9.776656pt;}
.wsc{word-spacing:9.989167pt;}
.ws56{word-spacing:10.201702pt;}
.ws14{word-spacing:10.254836pt;}
.ws3e{word-spacing:10.520506pt;}
.ws81{word-spacing:10.541786pt;}
.ws21{word-spacing:10.573639pt;}
.ws58{word-spacing:10.786175pt;}
.ws11{word-spacing:10.892443pt;}
.ws80{word-spacing:11.009365pt;}
.ws60{word-spacing:11.051844pt;}
.ws4d{word-spacing:11.211246pt;}
.ws22{word-spacing:11.530049pt;}
.ws5e{word-spacing:11.583183pt;}
.ws1b{word-spacing:11.742585pt;}
.ws8{word-spacing:12.273923pt;}
.ws39{word-spacing:12.327057pt;}
.ws1f{word-spacing:12.592726pt;}
.ws0{word-spacing:12.752160pt;}
.ws65{word-spacing:12.964663pt;}
.ws23{word-spacing:13.177199pt;}
.ws12{word-spacing:13.336601pt;}
.ws55{word-spacing:13.389734pt;}
.ws13{word-spacing:13.496002pt;}
.ws4b{word-spacing:13.655404pt;}
.ws7e{word-spacing:14.367434pt;}
.ws7f{word-spacing:14.749998pt;}
.ws1a{word-spacing:14.771215pt;}
.ws9{word-spacing:14.824349pt;}
.ws63{word-spacing:15.090018pt;}
.ws1c{word-spacing:15.249420pt;}
.ws54{word-spacing:15.461955pt;}
.ws33{word-spacing:15.621357pt;}
.ws2d{word-spacing:15.780758pt;}
.ws84{word-spacing:15.940200pt;}
.ws2f{word-spacing:16.046428pt;}
.ws4c{word-spacing:16.205829pt;}
.wsd{word-spacing:17.215373pt;}
.ws5c{word-spacing:17.481042pt;}
.ws57{word-spacing:17.640444pt;}
.ws74{word-spacing:17.682995pt;}
.ws5b{word-spacing:17.693578pt;}
.ws34{word-spacing:17.852979pt;}
.ws41{word-spacing:18.012381pt;}
.ws36{word-spacing:18.118649pt;}
.ws35{word-spacing:18.490586pt;}
.ws28{word-spacing:18.809389pt;}
.ws24{word-spacing:18.968790pt;}
.ws40{word-spacing:19.181326pt;}
.ws5f{word-spacing:19.393861pt;}
.ws37{word-spacing:20.881610pt;}
.ws29{word-spacing:23.006964pt;}
.ws83{word-spacing:27.672187pt;}
.ws52{word-spacing:36.108444pt;}
.ws51{word-spacing:90.423580pt;}
._0{margin-left:-5.100864pt;}
._5{margin-left:-3.772501pt;}
._2{margin-left:-2.550432pt;}
._1{margin-left:-1.275216pt;}
._3{width:1.756020pt;}
._4{width:2.676578pt;}
._a{width:6.246352pt;}
._b{width:7.860660pt;}
._7{width:12.061391pt;}
._6{width:20.297140pt;}
._9{width:26.907058pt;}
._8{width:29.436175pt;}
._c{width:52.922288pt;}
.fs6{font-size:28.264274pt;}
.fs7{font-size:34.545223pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:37.685698pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:12.561899pt;}
.y41{bottom:24.338679pt;}
.y63{bottom:33.760104pt;}
.y40{bottom:35.330341pt;}
.y61{bottom:43.181529pt;}
.y62{bottom:45.536885pt;}
.y5f{bottom:51.032716pt;}
.y5e{bottom:62.809496pt;}
.y51{bottom:65.949971pt;}
.y60{bottom:73.801158pt;}
.y50{bottom:76.941633pt;}
.y5b{bottom:98.924957pt;}
.y31{bottom:100.740000pt;}
.ya0{bottom:107.917333pt;}
.y5a{bottom:110.701738pt;}
.y30{bottom:116.680000pt;}
.y9f{bottom:119.872000pt;}
.y59{bottom:121.693400pt;}
.y9e{bottom:131.828000pt;}
.y3a{bottom:132.620000pt;}
.y2f{bottom:132.621333pt;}
.y9d{bottom:143.782667pt;}
.y39{bottom:148.560000pt;}
.y2e{bottom:148.561333pt;}
.y5d{bottom:155.453505pt;}
.y9c{bottom:155.738667pt;}
.y4f{bottom:159.379098pt;}
.y64{bottom:163.869033pt;}
.y2d{bottom:164.501333pt;}
.y9b{bottom:167.693333pt;}
.y4e{bottom:170.370760pt;}
.y9a{bottom:179.648000pt;}
.y2c{bottom:180.441333pt;}
.y7e{bottom:185.973333pt;}
.y99{bottom:191.604000pt;}
.y2b{bottom:196.381333pt;}
.y5c{bottom:198.635034pt;}
.y98{bottom:203.558667pt;}
.y7d{bottom:207.120000pt;}
.y66{bottom:211.196933pt;}
.y2a{bottom:212.321333pt;}
.y4d{bottom:215.122527pt;}
.y97{bottom:215.513333pt;}
.y58{bottom:219.833239pt;}
.y7c{bottom:223.060000pt;}
.y4a{bottom:225.329070pt;}
.y4c{bottom:226.899308pt;}
.y96{bottom:227.469333pt;}
.y38{bottom:228.261333pt;}
.y29{bottom:228.262667pt;}
.y57{bottom:231.610020pt;}
.y49{bottom:236.320732pt;}
.y4b{bottom:237.890970pt;}
.y7b{bottom:239.000000pt;}
.y95{bottom:239.424000pt;}
.y56{bottom:242.601682pt;}
.y28{bottom:244.202667pt;}
.y94{bottom:251.380000pt;}
.y7a{bottom:254.940000pt;}
.y65{bottom:256.938907pt;}
.y3d{bottom:259.089175pt;}
.y27{bottom:260.142667pt;}
.y93{bottom:263.334667pt;}
.y3c{bottom:270.080837pt;}
.y79{bottom:270.881333pt;}
.y92{bottom:275.289333pt;}
.y26{bottom:276.082667pt;}
.y52{bottom:278.717143pt;}
.y78{bottom:286.821333pt;}
.y91{bottom:287.245333pt;}
.y25{bottom:292.022667pt;}
.y90{bottom:299.200000pt;}
.y46{bottom:300.700467pt;}
.y77{bottom:302.761333pt;}
.y48{bottom:306.196298pt;}
.y24{bottom:307.962667pt;}
.y8f{bottom:311.154667pt;}
.y68{bottom:314.047485pt;}
.y47{bottom:317.187960pt;}
.y76{bottom:318.701333pt;}
.y8e{bottom:323.110667pt;}
.y37{bottom:323.902667pt;}
.y23{bottom:323.904000pt;}
.y75{bottom:334.641333pt;}
.y8d{bottom:335.065333pt;}
.y22{bottom:339.844000pt;}
.y45{bottom:343.881996pt;}
.y8c{bottom:347.020000pt;}
.y55{bottom:348.592708pt;}
.y74{bottom:350.581333pt;}
.y44{bottom:355.658777pt;}
.y21{bottom:355.784000pt;}
.y8b{bottom:358.976000pt;}
.y54{bottom:360.369489pt;}
.y43{bottom:366.650439pt;}
.y73{bottom:366.746667pt;}
.y8a{bottom:370.930667pt;}
.y53{bottom:371.361151pt;}
.y20{bottom:371.724000pt;}
.y72{bottom:382.686667pt;}
.y89{bottom:382.886667pt;}
.y1f{bottom:387.664000pt;}
.y3f{bottom:392.559356pt;}
.y67{bottom:394.129594pt;}
.y88{bottom:394.841333pt;}
.y71{bottom:398.626667pt;}
.y3e{bottom:403.551018pt;}
.y1e{bottom:403.604000pt;}
.y87{bottom:406.796000pt;}
.y70{bottom:414.568000pt;}
.y86{bottom:418.752000pt;}
.y36{bottom:419.544000pt;}
.y1d{bottom:419.545333pt;}
.y6f{bottom:430.508000pt;}
.y85{bottom:430.706667pt;}
.y1c{bottom:435.485333pt;}
.y84{bottom:442.661333pt;}
.y6e{bottom:446.448000pt;}
.y1b{bottom:451.425333pt;}
.y83{bottom:454.617333pt;}
.y6d{bottom:462.388000pt;}
.y82{bottom:466.572000pt;}
.y1a{bottom:467.365333pt;}
.y6c{bottom:478.328000pt;}
.y81{bottom:478.528000pt;}
.y19{bottom:483.305333pt;}
.y80{bottom:490.482667pt;}
.y6b{bottom:494.268000pt;}
.y35{bottom:499.245333pt;}
.y18{bottom:499.246667pt;}
.y7f{bottom:510.208000pt;}
.y6a{bottom:510.209333pt;}
.y34{bottom:515.185333pt;}
.y17{bottom:515.186667pt;}
.y16{bottom:531.126667pt;}
.y69{bottom:541.818667pt;}
.y15{bottom:547.066667pt;}
.y14{bottom:563.006667pt;}
.y3b{bottom:567.787374pt;}
.y13{bottom:578.946667pt;}
.y33{bottom:594.886667pt;}
.y12{bottom:594.888000pt;}
.y11{bottom:610.828000pt;}
.y10{bottom:626.768000pt;}
.yf{bottom:642.708000pt;}
.ye{bottom:658.648000pt;}
.yd{bottom:674.588000pt;}
.y32{bottom:690.528000pt;}
.yc{bottom:690.529333pt;}
.yb{bottom:706.469333pt;}
.ya{bottom:722.409333pt;}
.y9{bottom:738.349333pt;}
.y8{bottom:783.005333pt;}
.y7{bottom:799.444000pt;}
.y6{bottom:815.882667pt;}
.y5{bottom:827.697333pt;}
.y4{bottom:844.793333pt;}
.y3{bottom:886.636000pt;}
.y2{bottom:923.830667pt;}
.y1{bottom:961.024000pt;}
.h9{height:20.577164pt;}
.hb{height:23.024526pt;}
.ha{height:25.149867pt;}
.h7{height:27.436219pt;}
.hc{height:29.244954pt;}
.hd{height:29.458287pt;}
.h3{height:29.925069pt;}
.h4{height:36.556100pt;}
.h5{height:39.850400pt;}
.h2{height:51.039735pt;}
.h8{height:55.700492pt;}
.h1{height:87.734861pt;}
.h6{height:420.823630pt;}
.h0{height:1056.000000pt;}
.w1{width:685.408604pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:19.100466pt;}
.x11{left:24.853914pt;}
.x10{left:28.252006pt;}
.xa{left:65.285333pt;}
.xd{left:72.218654pt;}
.x9{left:78.569333pt;}
.x3{left:81.514667pt;}
.x2{left:96.466667pt;}
.x29{left:116.295709pt;}
.x28{left:121.276306pt;}
.x27{left:123.631662pt;}
.x4{left:139.038667pt;}
.x3a{left:174.729333pt;}
.x1b{left:184.478363pt;}
.x20{left:188.158607pt;}
.x22{left:190.636638pt;}
.x21{left:192.869319pt;}
.x38{left:194.316882pt;}
.x1c{left:197.567768pt;}
.x7{left:203.981333pt;}
.x1{left:210.645333pt;}
.x1e{left:217.588295pt;}
.x1f{left:220.728770pt;}
.x39{left:230.039783pt;}
.x5{left:233.121333pt;}
.x1d{left:234.075788pt;}
.x8{left:260.706667pt;}
.x37{left:271.651075pt;}
.x36{left:279.502262pt;}
.x2a{left:325.026884pt;}
.x2b{left:326.867006pt;}
.x6{left:337.460000pt;}
.x32{left:347.537706pt;}
.x31{left:351.193415pt;}
.xf{left:390.191737pt;}
.xe{left:395.172334pt;}
.xc{left:415.970667pt;}
.x3c{left:421.284000pt;}
.xb{left:429.253333pt;}
.x26{left:431.655819pt;}
.x24{left:438.464267pt;}
.x3d{left:440.316000pt;}
.x25{left:441.874626pt;}
.x2e{left:474.849612pt;}
.x30{left:476.812409pt;}
.x3e{left:479.121333pt;}
.x19{left:480.738002pt;}
.x2f{left:485.068427pt;}
.x13{left:488.576926pt;}
.x1a{left:490.417048pt;}
.x14{left:509.775131pt;}
.x17{left:533.991137pt;}
.x16{left:536.604106pt;}
.x3b{left:546.149333pt;}
.x15{left:547.338155pt;}
.x18{left:604.001640pt;}
.x33{left:609.644663pt;}
.x2d{left:614.220455pt;}
.x2c{left:616.563540pt;}
.x35{left:622.071642pt;}
.x23{left:623.371995pt;}
.x34{left:652.810511pt;}
}




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