
    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_d2a38437a74d17d93905b46a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72f53c245cc6d997f649121b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_a90889d85a672d7548906b23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_d2a38437a74d17d93905b46a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_72f53c245cc6d997f649121b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_a90889d85a672d7548906b23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_0b7828b191f38a42da266c0d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5c0e9738fa1e5b8163719d2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.848633;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_3110b8c77c0a5b473498bd07.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_0efae188b526241ca3ae120f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_c0258ab03e87ed3b3f4145e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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:ffe;src:url('chunks/assets/font_1bc0d81acd0913d52258ff7b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_72f53c245cc6d997f649121b.woff2')format("woff");}.fff{font-family:fff;line-height:0.930000;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:ff10;src:url('chunks/assets/font_b0949c2aa188c74a33f7a8ed.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.030000;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:ff11;src:url('chunks/assets/font_a90889d85a672d7548906b23.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.941000;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.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.861840px;}
.ls18{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.578880px;}
.ls26{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.287280px;}
.ls22{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.241200px;}
.ls25{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.192960px;}
.ls2a{letter-spacing:-0.144720px;}
.ls6{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.066240px;}
.ls24{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.045360px;}
.ls28{letter-spacing:0.048240px;}
.lsf{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.084240px;}
.ls13{letter-spacing:0.106560px;}
.ls2e{letter-spacing:0.144720px;}
.lse{letter-spacing:0.153360px;}
.lsd{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.241200px;}
.ls16{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.289440px;}
.ls27{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.336960px;}
.ls1d{letter-spacing:0.337680px;}
.ls15{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.460080px;}
.lsc{letter-spacing:0.466560px;}
.ls14{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.613440px;}
.ls11{letter-spacing:0.773280px;}
.ls12{letter-spacing:0.873360px;}
.ls21{letter-spacing:1.024578px;}
.ls1f{letter-spacing:1.656000px;}
.ls23{letter-spacing:1.821472px;}
.ls2f{letter-spacing:1.944000px;}
.ls0{letter-spacing:8.929440px;}
.ls1{letter-spacing:14.256000px;}
.lsb{letter-spacing:54.125760px;}
.ls1c{letter-spacing:110.035440px;}
.ls1e{letter-spacing:117.946800px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-72.000000px;}
.ws1c{word-spacing:-59.760000px;}
.ws1a{word-spacing:-59.148000px;}
.ws2{word-spacing:-28.944000px;}
.ws1f{word-spacing:-21.708000px;}
.ws9{word-spacing:-19.056240px;}
.wsb{word-spacing:-18.481680px;}
.ws0{word-spacing:-17.100720px;}
.ws1b{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.192000px;}
.ws18{word-spacing:-15.120000px;}
.ws17{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.042880px;}
.ws1d{word-spacing:-12.105360px;}
.ws19{word-spacing:-12.060000px;}
.ws25{word-spacing:-11.178000px;}
.ws2a{word-spacing:-10.564560px;}
.ws27{word-spacing:-10.468080px;}
.ws2b{word-spacing:-10.371600px;}
.ws2c{word-spacing:-10.082160px;}
.ws29{word-spacing:-10.033920px;}
.ws28{word-spacing:-9.985680px;}
.ws21{word-spacing:-9.828000px;}
.ws22{word-spacing:-9.720000px;}
.ws26{word-spacing:-9.648000px;}
.ws24{word-spacing:-9.612000px;}
.ws23{word-spacing:-9.558000px;}
.ws20{word-spacing:-9.504000px;}
.ws31{word-spacing:-2.504524px;}
.ws3e{word-spacing:-1.944000px;}
.ws2e{word-spacing:-1.707630px;}
.ws38{word-spacing:-0.482400px;}
.ws36{word-spacing:-0.432000px;}
.ws3c{word-spacing:-0.385920px;}
.ws3a{word-spacing:-0.289440px;}
.ws37{word-spacing:-0.192960px;}
.ws34{word-spacing:-0.144720px;}
.ws6{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.084240px;}
.ws7{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws3b{word-spacing:0.048240px;}
.ws3d{word-spacing:0.072000px;}
.ws39{word-spacing:0.096480px;}
.ws4{word-spacing:0.252720px;}
.ws2f{word-spacing:0.270000px;}
.ws35{word-spacing:0.324000px;}
.ws2d{word-spacing:0.378000px;}
.ws11{word-spacing:0.397440px;}
.ws30{word-spacing:0.594000px;}
.ws13{word-spacing:1.854720px;}
.ws32{word-spacing:3.132000px;}
.ws33{word-spacing:3.186000px;}
.wsf{word-spacing:4.040640px;}
.ws10{word-spacing:4.769280px;}
.ws12{word-spacing:5.497920px;}
.ws14{word-spacing:8.346240px;}
.ws15{word-spacing:9.074880px;}
.wse{word-spacing:26.363520px;}
.ws16{word-spacing:28.483200px;}
.wsd{word-spacing:47.957760px;}
.wsc{word-spacing:83.926080px;}
._3{margin-left:-14.130720px;}
._4{margin-left:-9.959760px;}
._6{margin-left:-8.061120px;}
._7{margin-left:-7.029360px;}
._5{margin-left:-5.503680px;}
._0{margin-left:-1.432080px;}
._1{width:1.440000px;}
._9{width:2.885996px;}
._8{width:4.496759px;}
._2{width:2667.485760px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:18.000000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.920998px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y21{bottom:-9.900000px;}
.y0{bottom:0.000000px;}
.yba{bottom:4.500000px;}
.y16{bottom:57.236580px;}
.y2{bottom:57.787200px;}
.y60{bottom:60.300000px;}
.y6c{bottom:66.960000px;}
.y69{bottom:84.960000px;}
.y5d{bottom:150.120000px;}
.ybc{bottom:159.840000px;}
.y64{bottom:175.680000px;}
.yb9{bottom:176.040000px;}
.y55{bottom:178.230000px;}
.ybb{bottom:180.540000px;}
.y1d{bottom:181.080000px;}
.yb8{bottom:199.697940px;}
.y1b{bottom:202.500000px;}
.yb7{bottom:213.373980px;}
.y1a{bottom:223.920000px;}
.ya2{bottom:226.440000px;}
.yb6{bottom:227.050020px;}
.yb5{bottom:240.906960px;}
.ya1{bottom:251.460000px;}
.yb3{bottom:255.487500px;}
.y43{bottom:257.790000px;}
.y54{bottom:260.490000px;}
.yb2{bottom:268.982640px;}
.y8b{bottom:279.360000px;}
.y79{bottom:279.540000px;}
.yb1{bottom:282.658680px;}
.yb0{bottom:296.153820px;}
.yaf{bottom:309.829860px;}
.y4e{bottom:315.930000px;}
.yae{bottom:323.325000px;}
.yad{bottom:336.820140px;}
.y27{bottom:346.320000px;}
.yac{bottom:350.496180px;}
.yab{bottom:363.991320px;}
.y5c{bottom:365.610000px;}
.y52{bottom:368.310000px;}
.yaa{bottom:377.667360px;}
.y42{bottom:383.970000px;}
.ya9{bottom:391.162500px;}
.y2a{bottom:397.620000px;}
.y57{bottom:398.190000px;}
.ya8{bottom:404.657640px;}
.y26{bottom:410.580000px;}
.ya7{bottom:418.333680px;}
.ya6{bottom:431.828820px;}
.ya5{bottom:445.504860px;}
.ya4{bottom:459.000000px;}
.ya3{bottom:470.520000px;}
.ya0{bottom:477.900000px;}
.yb4{bottom:479.586420px;}
.y78{bottom:489.960000px;}
.y9f{bottom:498.960000px;}
.y41{bottom:510.015000px;}
.y9e{bottom:518.089860px;}
.y5e{bottom:521.175000px;}
.y9d{bottom:531.585000px;}
.y8a{bottom:539.820000px;}
.y9c{bottom:545.261040px;}
.y14{bottom:549.551520px;}
.y9b{bottom:558.756180px;}
.y89{bottom:558.958680px;}
.y9a{bottom:572.251320px;}
.y88{bottom:572.453820px;}
.y56{bottom:580.395000px;}
.y99{bottom:585.927360px;}
.y87{bottom:586.129860px;}
.y13{bottom:587.705760px;}
.y98{bottom:599.422500px;}
.y86{bottom:599.625000px;}
.y4d{bottom:600.555000px;}
.y4f{bottom:604.155000px;}
.y97{bottom:613.098540px;}
.y85{bottom:613.120140px;}
.y12{bottom:625.860000px;}
.y96{bottom:626.593680px;}
.y84{bottom:626.796180px;}
.y3c{bottom:632.235000px;}
.y4c{bottom:634.215000px;}
.y95{bottom:640.088820px;}
.y83{bottom:640.291320px;}
.y11{bottom:648.351000px;}
.y94{bottom:653.764860px;}
.y82{bottom:653.967360px;}
.y46{bottom:658.725000px;}
.y3b{bottom:663.225000px;}
.y93{bottom:667.282500px;}
.y81{bottom:667.462500px;}
.y4b{bottom:668.085000px;}
.y5b{bottom:676.725000px;}
.y10{bottom:679.320000px;}
.y80{bottom:680.957640px;}
.y92{bottom:680.958540px;}
.y40{bottom:682.845000px;}
.y3a{bottom:683.205000px;}
.y91{bottom:694.453680px;}
.y7f{bottom:694.633680px;}
.y4a{bottom:701.565000px;}
.y39{bottom:703.005000px;}
.y90{bottom:707.948820px;}
.y7e{bottom:708.128820px;}
.yf{bottom:712.440000px;}
.y29{bottom:712.620000px;}
.y8f{bottom:721.624860px;}
.y7d{bottom:721.804860px;}
.y38{bottom:733.245000px;}
.y49{bottom:734.865000px;}
.y8e{bottom:735.120000px;}
.y7c{bottom:735.300000px;}
.y28{bottom:735.480000px;}
.y8d{bottom:746.820000px;}
.y7b{bottom:747.000000px;}
.ye{bottom:753.840000px;}
.y8c{bottom:754.200000px;}
.y7a{bottom:754.380000px;}
.y58{bottom:757.185000px;}
.y37{bottom:764.205000px;}
.y25{bottom:778.515840px;}
.y77{bottom:783.008820px;}
.y36{bottom:784.005000px;}
.y3f{bottom:785.625000px;}
.yd{bottom:795.060000px;}
.y76{bottom:796.684860px;}
.y24{bottom:799.927920px;}
.y35{bottom:803.805000px;}
.y75{bottom:810.180000px;}
.y23{bottom:821.340000px;}
.y34{bottom:823.785000px;}
.y74{bottom:824.220000px;}
.y73{bottom:839.533680px;}
.y50{bottom:842.145000px;}
.y33{bottom:843.585000px;}
.yc{bottom:851.043960px;}
.y5a{bottom:851.685000px;}
.y22{bottom:852.660000px;}
.y72{bottom:853.028820px;}
.y32{bottom:863.385000px;}
.y48{bottom:864.645000px;}
.y71{bottom:866.704860px;}
.y20{bottom:874.080000px;}
.y19{bottom:880.020000px;}
.y70{bottom:880.200000px;}
.y63{bottom:890.640000px;}
.y31{bottom:893.625000px;}
.yb{bottom:893.880000px;}
.y6f{bottom:894.055500px;}
.y6e{bottom:918.180000px;}
.y30{bottom:924.630000px;}
.ya{bottom:935.280000px;}
.y6d{bottom:942.480000px;}
.y2f{bottom:944.430000px;}
.y53{bottom:955.590000px;}
.y9{bottom:956.521080px;}
.y59{bottom:956.670000px;}
.y6b{bottom:957.604500px;}
.y3e{bottom:963.510000px;}
.y2e{bottom:964.410000px;}
.y6a{bottom:975.600000px;}
.y68{bottom:975.609000px;}
.y8{bottom:980.634780px;}
.y67{bottom:994.144500px;}
.y2d{bottom:994.650000px;}
.y7{bottom:1004.580000px;}
.y1f{bottom:1018.087920px;}
.y66{bottom:1021.144500px;}
.y51{bottom:1022.190000px;}
.y2c{bottom:1027.050000px;}
.y65{bottom:1039.144500px;}
.y1e{bottom:1039.500000px;}
.y6{bottom:1045.800000px;}
.y2b{bottom:1059.450000px;}
.y1c{bottom:1061.100000px;}
.y45{bottom:1061.430000px;}
.y62{bottom:1066.320000px;}
.y5{bottom:1085.384880px;}
.y61{bottom:1100.340000px;}
.y18{bottom:1103.940000px;}
.y4{bottom:1128.052440px;}
.y17{bottom:1135.080000px;}
.y3d{bottom:1135.230000px;}
.y47{bottom:1137.930000px;}
.y44{bottom:1140.840000px;}
.y3{bottom:1170.720000px;}
.y1{bottom:1194.300000px;}
.y15{bottom:1195.560000px;}
.y5f{bottom:1204.380000px;}
.hc{height:5.940000px;}
.h1e{height:12.978000px;}
.h1b{height:34.781040px;}
.h1c{height:38.934000px;}
.h8{height:39.830273px;}
.h19{height:41.040039px;}
.he{height:43.086960px;}
.h2{height:44.149219px;}
.h17{height:44.334000px;}
.h1a{height:44.352000px;}
.hf{height:45.184219px;}
.ha{height:47.759040px;}
.h16{height:47.988281px;}
.h4{height:51.912000px;}
.h10{height:58.651172px;}
.h3{height:60.737040px;}
.h9{height:69.042960px;}
.h14{height:70.664062px;}
.h13{height:74.004654px;}
.h20{height:75.420000px;}
.h6{height:77.868000px;}
.h12{height:84.898125px;}
.h11{height:99.687656px;}
.h5{height:103.824000px;}
.h7{height:103.860000px;}
.h18{height:187.740000px;}
.hb{height:238.320000px;}
.h1f{height:238.498500px;}
.h1d{height:289.980000px;}
.hd{height:425.161500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h15{height:1263.060000px;}
.w4{width:345.418500px;}
.w5{width:345.420000px;}
.w2{width:520.918500px;}
.w3{width:690.840000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.200000px;}
.x8{left:115.416000px;}
.x11{left:117.000000px;}
.xa{left:119.556000px;}
.x9{left:124.236000px;}
.x10{left:127.620000px;}
.x1{left:129.240000px;}
.xe{left:133.236000px;}
.xb{left:135.036000px;}
.xc{left:146.196000px;}
.xd{left:147.636000px;}
.x2{left:182.160000px;}
.x18{left:189.540000px;}
.x14{left:197.100000px;}
.xf{left:231.330000px;}
.x4{left:255.240000px;}
.x6{left:306.540000px;}
.x5{left:387.360000px;}
.x12{left:392.400000px;}
.x17{left:462.420000px;}
.x16{left:563.940000px;}
.x13{left:664.200000px;}
.x15{left:776.700000px;}
.x7{left:786.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.766080pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.514560pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.255360pt;}
.ls22{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.214400pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.171520pt;}
.ls2a{letter-spacing:-0.128640pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.058880pt;}
.ls24{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.040320pt;}
.ls28{letter-spacing:0.042880pt;}
.lsf{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.074880pt;}
.ls13{letter-spacing:0.094720pt;}
.ls2e{letter-spacing:0.128640pt;}
.lse{letter-spacing:0.136320pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.214400pt;}
.ls16{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.257280pt;}
.ls27{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.299520pt;}
.ls1d{letter-spacing:0.300160pt;}
.ls15{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.408960pt;}
.lsc{letter-spacing:0.414720pt;}
.ls14{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.545280pt;}
.ls11{letter-spacing:0.687360pt;}
.ls12{letter-spacing:0.776320pt;}
.ls21{letter-spacing:0.910736pt;}
.ls1f{letter-spacing:1.472000pt;}
.ls23{letter-spacing:1.619086pt;}
.ls2f{letter-spacing:1.728000pt;}
.ls0{letter-spacing:7.937280pt;}
.ls1{letter-spacing:12.672000pt;}
.lsb{letter-spacing:48.111787pt;}
.ls1c{letter-spacing:97.809280pt;}
.ls1e{letter-spacing:104.841600pt;}
.ws1e{word-spacing:-64.000000pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-52.576000pt;}
.ws2{word-spacing:-25.728000pt;}
.ws1f{word-spacing:-19.296000pt;}
.ws9{word-spacing:-16.938880pt;}
.wsb{word-spacing:-16.428160pt;}
.ws0{word-spacing:-15.200640pt;}
.ws1b{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.504000pt;}
.ws18{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.482560pt;}
.ws1d{word-spacing:-10.760320pt;}
.ws19{word-spacing:-10.720000pt;}
.ws25{word-spacing:-9.936000pt;}
.ws2a{word-spacing:-9.390720pt;}
.ws27{word-spacing:-9.304960pt;}
.ws2b{word-spacing:-9.219200pt;}
.ws2c{word-spacing:-8.961920pt;}
.ws29{word-spacing:-8.919040pt;}
.ws28{word-spacing:-8.876160pt;}
.ws21{word-spacing:-8.736000pt;}
.ws22{word-spacing:-8.640000pt;}
.ws26{word-spacing:-8.576000pt;}
.ws24{word-spacing:-8.544000pt;}
.ws23{word-spacing:-8.496000pt;}
.ws20{word-spacing:-8.448000pt;}
.ws31{word-spacing:-2.226243pt;}
.ws3e{word-spacing:-1.728000pt;}
.ws2e{word-spacing:-1.517893pt;}
.ws38{word-spacing:-0.428800pt;}
.ws36{word-spacing:-0.384000pt;}
.ws3c{word-spacing:-0.343040pt;}
.ws3a{word-spacing:-0.257280pt;}
.ws37{word-spacing:-0.171520pt;}
.ws34{word-spacing:-0.128640pt;}
.ws6{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.074880pt;}
.ws7{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.042880pt;}
.ws3d{word-spacing:0.064000pt;}
.ws39{word-spacing:0.085760pt;}
.ws4{word-spacing:0.224640pt;}
.ws2f{word-spacing:0.240000pt;}
.ws35{word-spacing:0.288000pt;}
.ws2d{word-spacing:0.336000pt;}
.ws11{word-spacing:0.353280pt;}
.ws30{word-spacing:0.528000pt;}
.ws13{word-spacing:1.648640pt;}
.ws32{word-spacing:2.784000pt;}
.ws33{word-spacing:2.832000pt;}
.wsf{word-spacing:3.591680pt;}
.ws10{word-spacing:4.239360pt;}
.ws12{word-spacing:4.887040pt;}
.ws14{word-spacing:7.418880pt;}
.ws15{word-spacing:8.066560pt;}
.wse{word-spacing:23.434240pt;}
.ws16{word-spacing:25.318400pt;}
.wsd{word-spacing:42.629120pt;}
.wsc{word-spacing:74.600960pt;}
._3{margin-left:-12.560640pt;}
._4{margin-left:-8.853120pt;}
._6{margin-left:-7.165440pt;}
._7{margin-left:-6.248320pt;}
._5{margin-left:-4.892160pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.280000pt;}
._9{width:2.565330pt;}
._8{width:3.997119pt;}
._2{width:2371.098453pt;}
.fsa{font-size:16.000000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.596443pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y21{bottom:-8.800000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:4.000000pt;}
.y16{bottom:50.876960pt;}
.y2{bottom:51.366400pt;}
.y60{bottom:53.600000pt;}
.y6c{bottom:59.520000pt;}
.y69{bottom:75.520000pt;}
.y5d{bottom:133.440000pt;}
.ybc{bottom:142.080000pt;}
.y64{bottom:156.160000pt;}
.yb9{bottom:156.480000pt;}
.y55{bottom:158.426667pt;}
.ybb{bottom:160.480000pt;}
.y1d{bottom:160.960000pt;}
.yb8{bottom:177.509280pt;}
.y1b{bottom:180.000000pt;}
.yb7{bottom:189.665760pt;}
.y1a{bottom:199.040000pt;}
.ya2{bottom:201.280000pt;}
.yb6{bottom:201.822240pt;}
.yb5{bottom:214.139520pt;}
.ya1{bottom:223.520000pt;}
.yb3{bottom:227.100000pt;}
.y43{bottom:229.146667pt;}
.y54{bottom:231.546667pt;}
.yb2{bottom:239.095680pt;}
.y8b{bottom:248.320000pt;}
.y79{bottom:248.480000pt;}
.yb1{bottom:251.252160pt;}
.yb0{bottom:263.247840pt;}
.yaf{bottom:275.404320pt;}
.y4e{bottom:280.826667pt;}
.yae{bottom:287.400000pt;}
.yad{bottom:299.395680pt;}
.y27{bottom:307.840000pt;}
.yac{bottom:311.552160pt;}
.yab{bottom:323.547840pt;}
.y5c{bottom:324.986667pt;}
.y52{bottom:327.386667pt;}
.yaa{bottom:335.704320pt;}
.y42{bottom:341.306667pt;}
.ya9{bottom:347.700000pt;}
.y2a{bottom:353.440000pt;}
.y57{bottom:353.946667pt;}
.ya8{bottom:359.695680pt;}
.y26{bottom:364.960000pt;}
.ya7{bottom:371.852160pt;}
.ya6{bottom:383.847840pt;}
.ya5{bottom:396.004320pt;}
.ya4{bottom:408.000000pt;}
.ya3{bottom:418.240000pt;}
.ya0{bottom:424.800000pt;}
.yb4{bottom:426.299040pt;}
.y78{bottom:435.520000pt;}
.y9f{bottom:443.520000pt;}
.y41{bottom:453.346667pt;}
.y9e{bottom:460.524320pt;}
.y5e{bottom:463.266667pt;}
.y9d{bottom:472.520000pt;}
.y8a{bottom:479.840000pt;}
.y9c{bottom:484.676480pt;}
.y14{bottom:488.490240pt;}
.y9b{bottom:496.672160pt;}
.y89{bottom:496.852160pt;}
.y9a{bottom:508.667840pt;}
.y88{bottom:508.847840pt;}
.y56{bottom:515.906667pt;}
.y99{bottom:520.824320pt;}
.y87{bottom:521.004320pt;}
.y13{bottom:522.405120pt;}
.y98{bottom:532.820000pt;}
.y86{bottom:533.000000pt;}
.y4d{bottom:533.826667pt;}
.y4f{bottom:537.026667pt;}
.y97{bottom:544.976480pt;}
.y85{bottom:544.995680pt;}
.y12{bottom:556.320000pt;}
.y96{bottom:556.972160pt;}
.y84{bottom:557.152160pt;}
.y3c{bottom:561.986667pt;}
.y4c{bottom:563.746667pt;}
.y95{bottom:568.967840pt;}
.y83{bottom:569.147840pt;}
.y11{bottom:576.312000pt;}
.y94{bottom:581.124320pt;}
.y82{bottom:581.304320pt;}
.y46{bottom:585.533333pt;}
.y3b{bottom:589.533333pt;}
.y93{bottom:593.140000pt;}
.y81{bottom:593.300000pt;}
.y4b{bottom:593.853333pt;}
.y5b{bottom:601.533333pt;}
.y10{bottom:603.840000pt;}
.y80{bottom:605.295680pt;}
.y92{bottom:605.296480pt;}
.y40{bottom:606.973333pt;}
.y3a{bottom:607.293333pt;}
.y91{bottom:617.292160pt;}
.y7f{bottom:617.452160pt;}
.y4a{bottom:623.613333pt;}
.y39{bottom:624.893333pt;}
.y90{bottom:629.287840pt;}
.y7e{bottom:629.447840pt;}
.yf{bottom:633.280000pt;}
.y29{bottom:633.440000pt;}
.y8f{bottom:641.444320pt;}
.y7d{bottom:641.604320pt;}
.y38{bottom:651.773333pt;}
.y49{bottom:653.213333pt;}
.y8e{bottom:653.440000pt;}
.y7c{bottom:653.600000pt;}
.y28{bottom:653.760000pt;}
.y8d{bottom:663.840000pt;}
.y7b{bottom:664.000000pt;}
.ye{bottom:670.080000pt;}
.y8c{bottom:670.400000pt;}
.y7a{bottom:670.560000pt;}
.y58{bottom:673.053333pt;}
.y37{bottom:679.293333pt;}
.y25{bottom:692.014080pt;}
.y77{bottom:696.007840pt;}
.y36{bottom:696.893333pt;}
.y3f{bottom:698.333333pt;}
.yd{bottom:706.720000pt;}
.y76{bottom:708.164320pt;}
.y24{bottom:711.047040pt;}
.y35{bottom:714.493333pt;}
.y75{bottom:720.160000pt;}
.y23{bottom:730.080000pt;}
.y34{bottom:732.253333pt;}
.y74{bottom:732.640000pt;}
.y73{bottom:746.252160pt;}
.y50{bottom:748.573333pt;}
.y33{bottom:749.853333pt;}
.yc{bottom:756.483520pt;}
.y5a{bottom:757.053333pt;}
.y22{bottom:757.920000pt;}
.y72{bottom:758.247840pt;}
.y32{bottom:767.453333pt;}
.y48{bottom:768.573333pt;}
.y71{bottom:770.404320pt;}
.y20{bottom:776.960000pt;}
.y19{bottom:782.240000pt;}
.y70{bottom:782.400000pt;}
.y63{bottom:791.680000pt;}
.y31{bottom:794.333333pt;}
.yb{bottom:794.560000pt;}
.y6f{bottom:794.716000pt;}
.y6e{bottom:816.160000pt;}
.y30{bottom:821.893333pt;}
.ya{bottom:831.360000pt;}
.y6d{bottom:837.760000pt;}
.y2f{bottom:839.493333pt;}
.y53{bottom:849.413333pt;}
.y9{bottom:850.240960pt;}
.y59{bottom:850.373333pt;}
.y6b{bottom:851.204000pt;}
.y3e{bottom:856.453333pt;}
.y2e{bottom:857.253333pt;}
.y6a{bottom:867.200000pt;}
.y68{bottom:867.208000pt;}
.y8{bottom:871.675360pt;}
.y67{bottom:883.684000pt;}
.y2d{bottom:884.133333pt;}
.y7{bottom:892.960000pt;}
.y1f{bottom:904.967040pt;}
.y66{bottom:907.684000pt;}
.y51{bottom:908.613333pt;}
.y2c{bottom:912.933333pt;}
.y65{bottom:923.684000pt;}
.y1e{bottom:924.000000pt;}
.y6{bottom:929.600000pt;}
.y2b{bottom:941.733333pt;}
.y1c{bottom:943.200000pt;}
.y45{bottom:943.493333pt;}
.y62{bottom:947.840000pt;}
.y5{bottom:964.786560pt;}
.y61{bottom:978.080000pt;}
.y18{bottom:981.280000pt;}
.y4{bottom:1002.713280pt;}
.y17{bottom:1008.960000pt;}
.y3d{bottom:1009.093333pt;}
.y47{bottom:1011.493333pt;}
.y44{bottom:1014.080000pt;}
.y3{bottom:1040.640000pt;}
.y1{bottom:1061.600000pt;}
.y15{bottom:1062.720000pt;}
.y5f{bottom:1070.560000pt;}
.hc{height:5.280000pt;}
.h1e{height:11.536000pt;}
.h1b{height:30.916480pt;}
.h1c{height:34.608000pt;}
.h8{height:35.404688pt;}
.h19{height:36.480035pt;}
.he{height:38.299520pt;}
.h2{height:39.243750pt;}
.h17{height:39.408000pt;}
.h1a{height:39.424000pt;}
.hf{height:40.163750pt;}
.ha{height:42.452480pt;}
.h16{height:42.656250pt;}
.h4{height:46.144000pt;}
.h10{height:52.134375pt;}
.h3{height:53.988480pt;}
.h9{height:61.371520pt;}
.h14{height:62.812500pt;}
.h13{height:65.781915pt;}
.h20{height:67.040000pt;}
.h6{height:69.216000pt;}
.h12{height:75.465000pt;}
.h11{height:88.611250pt;}
.h5{height:92.288000pt;}
.h7{height:92.320000pt;}
.h18{height:166.880000pt;}
.hb{height:211.840000pt;}
.h1f{height:211.998667pt;}
.h1d{height:257.760000pt;}
.hd{height:377.921333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h15{height:1122.720000pt;}
.w4{width:307.038667pt;}
.w5{width:307.040000pt;}
.w2{width:463.038667pt;}
.w3{width:614.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.400000pt;}
.x8{left:102.592000pt;}
.x11{left:104.000000pt;}
.xa{left:106.272000pt;}
.x9{left:110.432000pt;}
.x10{left:113.440000pt;}
.x1{left:114.880000pt;}
.xe{left:118.432000pt;}
.xb{left:120.032000pt;}
.xc{left:129.952000pt;}
.xd{left:131.232000pt;}
.x2{left:161.920000pt;}
.x18{left:168.480000pt;}
.x14{left:175.200000pt;}
.xf{left:205.626667pt;}
.x4{left:226.880000pt;}
.x6{left:272.480000pt;}
.x5{left:344.320000pt;}
.x12{left:348.800000pt;}
.x17{left:411.040000pt;}
.x16{left:501.280000pt;}
.x13{left:590.400000pt;}
.x15{left:690.400000pt;}
.x7{left:698.693333pt;}
}




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