
    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_7e7afaa074fb8ab6782dab1f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_650ca7b433dc0cd9f0a42e6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904000;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_97826977b850532c86eebb13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.902000;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_2ec62f67041b9beae9343e53.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_8f72897920863bfec0039266.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_2fd168530aea1a642b3520ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_c634f9277b14432158dd14a7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6d16cb786a260bb2558aa7d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.408000;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_180bd43eeb617bd7fee3daaa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cd5dec1ef35c49add7028567.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.454000;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_7b23df31e44df94be03d4a0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.686000;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_a212973ae718daf2fd20d8a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694000;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_ff9e1d5abfe3dcd42e5e6502.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.703450;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);}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.270000px;}
.v2{vertical-align:22.854000px;}
.v7{vertical-align:25.848000px;}
.v9{vertical-align:30.510000px;}
.v4{vertical-align:34.794000px;}
.v8{vertical-align:36.486000px;}
.v6{vertical-align:42.024000px;}
.v5{vertical-align:45.564000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.003358px;}
.ls26{letter-spacing:0.008876px;}
.lsd{letter-spacing:0.019745px;}
.ls1{letter-spacing:0.376589px;}
.ls22{letter-spacing:1.506355px;}
.ls1c{letter-spacing:1.560154px;}
.ls1a{letter-spacing:1.932783px;}
.lsf{letter-spacing:2.987468px;}
.lse{letter-spacing:2.988532px;}
.ls13{letter-spacing:3.819686px;}
.ls2{letter-spacing:3.873485px;}
.ls1b{letter-spacing:5.810227px;}
.ls24{letter-spacing:5.864026px;}
.ls23{letter-spacing:9.199526px;}
.ls20{letter-spacing:12.266035px;}
.ls27{letter-spacing:12.319834px;}
.ls15{letter-spacing:12.857818px;}
.ls1e{letter-spacing:13.288205px;}
.ls12{letter-spacing:13.449600px;}
.lsa{letter-spacing:13.826189px;}
.ls14{letter-spacing:14.351468px;}
.lsc{letter-spacing:14.417971px;}
.ls5{letter-spacing:14.686963px;}
.ls3{letter-spacing:15.009754px;}
.ls1f{letter-spacing:15.276532px;}
.ls1d{letter-spacing:15.332544px;}
.ls11{letter-spacing:15.386342px;}
.ls16{letter-spacing:15.840532px;}
.ls21{letter-spacing:16.085722px;}
.lsb{letter-spacing:17.027468px;}
.ls8{letter-spacing:17.538278px;}
.ls18{letter-spacing:18.342532px;}
.ls4{letter-spacing:18.506650px;}
.ls10{letter-spacing:21.196570px;}
.ls9{letter-spacing:21.357965px;}
.ls0{letter-spacing:22.093117px;}
.ls7{letter-spacing:26.899200px;}
.ls25{letter-spacing:43.001781px;}
.ls19{letter-spacing:102.817559px;}
.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;}
}
.ws38{word-spacing:-55.293996px;}
.ws31{word-spacing:-36.071827px;}
.ws45{word-spacing:-26.872301px;}
.ws35{word-spacing:-26.307418px;}
.ws3e{word-spacing:-23.805792px;}
.ws40{word-spacing:-23.751994px;}
.ws3d{word-spacing:-22.783622px;}
.ws30{word-spacing:-20.685485px;}
.ws2e{word-spacing:-15.359443px;}
.ws2{word-spacing:-13.449600px;}
.ws43{word-spacing:-6.159917px;}
.ws3f{word-spacing:-3.093408px;}
.ws36{word-spacing:-2.994394px;}
.ws14{word-spacing:-2.151936px;}
.ws33{word-spacing:-2.098138px;}
.ws52{word-spacing:-1.775347px;}
.ws1c{word-spacing:-1.484400px;}
.ws1f{word-spacing:-1.398758px;}
.ws20{word-spacing:-1.344960px;}
.ws21{word-spacing:-0.699379px;}
.ws13{word-spacing:-0.645581px;}
.ws34{word-spacing:-0.591782px;}
.ws28{word-spacing:-0.430387px;}
.ws27{word-spacing:-0.376589px;}
.wsf{word-spacing:-0.268992px;}
.ws3c{word-spacing:-0.026899px;}
.ws0{word-spacing:0.000000px;}
.ws42{word-spacing:0.026899px;}
.ws22{word-spacing:0.053798px;}
.ws9{word-spacing:0.484186px;}
.ws2d{word-spacing:0.591782px;}
.ws23{word-spacing:1.183565px;}
.ws24{word-spacing:1.237363px;}
.ws4{word-spacing:1.398758px;}
.ws1e{word-spacing:1.452557px;}
.ws6{word-spacing:1.560154px;}
.wsa{word-spacing:1.613952px;}
.ws29{word-spacing:1.775347px;}
.ws16{word-spacing:1.829146px;}
.ws50{word-spacing:1.882944px;}
.ws17{word-spacing:1.936742px;}
.ws2c{word-spacing:1.990541px;}
.ws5{word-spacing:2.044339px;}
.ws3b{word-spacing:2.151936px;}
.ws25{word-spacing:2.259533px;}
.ws10{word-spacing:2.420928px;}
.ws11{word-spacing:2.474726px;}
.ws41{word-spacing:2.636122px;}
.ws7{word-spacing:2.905114px;}
.ws26{word-spacing:2.958912px;}
.ws2f{word-spacing:3.120307px;}
.ws1d{word-spacing:3.174106px;}
.ws53{word-spacing:3.227904px;}
.wsc{word-spacing:3.765888px;}
.ws37{word-spacing:3.873485px;}
.ws2b{word-spacing:4.088678px;}
.ws3{word-spacing:4.788058px;}
.ws39{word-spacing:4.841856px;}
.ws12{word-spacing:5.003251px;}
.ws8{word-spacing:5.057050px;}
.ws1b{word-spacing:5.272243px;}
.wsd{word-spacing:6.294413px;}
.wse{word-spacing:6.563405px;}
.ws2a{word-spacing:6.832397px;}
.ws18{word-spacing:6.886195px;}
.ws19{word-spacing:6.939994px;}
.ws15{word-spacing:7.208986px;}
.ws4f{word-spacing:8.392550px;}
.ws4e{word-spacing:8.500147px;}
.ws1a{word-spacing:8.822938px;}
.ws3a{word-spacing:8.984333px;}
.wsb{word-spacing:9.414720px;}
.ws55{word-spacing:9.952704px;}
.ws44{word-spacing:12.166216px;}
.ws47{word-spacing:12.172216px;}
.ws46{word-spacing:12.177817px;}
.ws48{word-spacing:12.183817px;}
.ws4b{word-spacing:13.395802px;}
.ws49{word-spacing:16.354714px;}
.ws4d{word-spacing:16.946496px;}
.ws4a{word-spacing:20.281997px;}
.ws54{word-spacing:20.658586px;}
.ws1{word-spacing:25.719808px;}
.ws51{word-spacing:28.644539px;}
.ws4c{word-spacing:32.225242px;}
.ws32{word-spacing:40.348800px;}
._c{margin-left:-12.857818px;}
._12{margin-left:-7.370394px;}
._1{margin-left:-5.355910px;}
._2{margin-left:-3.981082px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.237376px;}
._11{width:1.173329px;}
._7{width:2.647236px;}
._6{width:4.404346px;}
._f{width:10.318178px;}
._4{width:12.911629px;}
._13{width:14.310374px;}
._14{width:16.496530px;}
._d{width:17.935910px;}
._9{width:19.479427px;}
._b{width:21.196570px;}
._e{width:22.546948px;}
._5{width:24.639286px;}
._a{width:26.899200px;}
._15{width:32.332838px;}
._8{width:53.798400px;}
._10{width:107.662534px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y31{bottom:112.183500px;}
.y30{bottom:130.116000px;}
.y5c{bottom:136.093500px;}
.y2f{bottom:148.048500px;}
.y5b{bottom:160.003500px;}
.y2e{bottom:165.981000px;}
.y2d{bottom:183.913500px;}
.y5a{bottom:210.979500px;}
.y2c{bottom:219.891000px;}
.y59{bottom:234.889500px;}
.y2b{bottom:237.825000px;}
.y2a{bottom:255.757500px;}
.y58{bottom:258.801000px;}
.y29{bottom:273.690000px;}
.y57{bottom:276.733500px;}
.y28{bottom:291.622500px;}
.y56{bottom:299.209500px;}
.y55{bottom:308.332500px;}
.y27{bottom:309.555000px;}
.y26{bottom:327.487500px;}
.y54{bottom:334.758000px;}
.y25{bottom:345.421500px;}
.y53{bottom:352.690500px;}
.y24{bottom:363.354000px;}
.y52{bottom:370.623000px;}
.y51{bottom:388.825500px;}
.y23{bottom:390.364500px;}
.y50{bottom:399.978000px;}
.y4f{bottom:427.728000px;}
.y86{bottom:436.678500px;}
.y4e{bottom:454.794000px;}
.y22{bottom:457.753500px;}
.y85{bottom:463.578000px;}
.y4d{bottom:472.741500px;}
.y21{bottom:475.687500px;}
.y4c{bottom:490.689000px;}
.y20{bottom:493.620000px;}
.y1f{bottom:511.552500px;}
.y78{bottom:517.375500px;}
.y4b{bottom:517.755000px;}
.y1e{bottom:529.485000px;}
.y4a{bottom:535.687500px;}
.y77{bottom:542.781000px;}
.y84{bottom:550.917000px;}
.y49{bottom:553.620000px;}
.y76{bottom:565.197000px;}
.y1d{bottom:569.844000px;}
.y48{bottom:580.534500px;}
.y83{bottom:581.469000px;}
.y75{bottom:583.129500px;}
.y82{bottom:599.401500px;}
.y74{bottom:601.062000px;}
.y13{bottom:613.303500px;}
.y81{bottom:617.998500px;}
.y73{bottom:618.994500px;}
.y12{bottom:631.236000px;}
.y80{bottom:635.931000px;}
.y47{bottom:636.168000px;}
.y72{bottom:636.928500px;}
.y11{bottom:649.168500px;}
.y7f{bottom:653.865000px;}
.y46{bottom:654.100500px;}
.y71{bottom:654.861000px;}
.y7e{bottom:671.797500px;}
.y45{bottom:672.033000px;}
.y1c{bottom:676.068000px;}
.y10{bottom:676.213500px;}
.y70{bottom:680.265000px;}
.y44{bottom:689.980500px;}
.y6f{bottom:698.197500px;}
.y7d{bottom:705.337500px;}
.y43{bottom:716.880000px;}
.y6e{bottom:723.603000px;}
.y7c{bottom:723.934500px;}
.y1b{bottom:729.865500px;}
.y6d{bottom:741.535500px;}
.yf{bottom:747.652500px;}
.y1a{bottom:747.798000px;}
.y7b{bottom:757.476000px;}
.y6c{bottom:759.468000px;}
.y42{bottom:763.092000px;}
.ye{bottom:765.585000px;}
.y19{bottom:765.732000px;}
.y7a{bottom:776.073000px;}
.y6b{bottom:777.400500px;}
.y41{bottom:781.039500px;}
.yd{bottom:783.519000px;}
.y18{bottom:783.664500px;}
.y79{bottom:794.670000px;}
.y6a{bottom:795.334500px;}
.y40{bottom:798.987000px;}
.yc{bottom:801.451500px;}
.y17{bottom:801.597000px;}
.yb{bottom:819.384000px;}
.y16{bottom:819.529500px;}
.y69{bottom:822.232500px;}
.y3f{bottom:826.038000px;}
.ya{bottom:837.316500px;}
.y15{bottom:837.462000px;}
.y3e{bottom:843.985500px;}
.y9{bottom:855.249000px;}
.y14{bottom:855.394500px;}
.y68{bottom:858.099000px;}
.y3d{bottom:870.885000px;}
.y67{bottom:875.658000px;}
.y8{bottom:882.294000px;}
.y66{bottom:884.779500px;}
.y65{bottom:912.529500px;}
.y3c{bottom:917.097000px;}
.y64{bottom:930.462000px;}
.y7{bottom:931.731000px;}
.y3b{bottom:935.029500px;}
.y6{bottom:946.675500px;}
.y3a{bottom:952.962000px;}
.y63{bottom:957.361500px;}
.y5{bottom:961.620000px;}
.y39{bottom:970.894500px;}
.y4{bottom:976.563000px;}
.y62{bottom:981.271500px;}
.y38{bottom:988.842000px;}
.y3{bottom:994.495500px;}
.y61{bottom:1005.181500px;}
.y37{bottom:1006.776000px;}
.y60{bottom:1029.091500px;}
.y36{bottom:1033.674000px;}
.y5f{bottom:1053.001500px;}
.y2{bottom:1054.384500px;}
.y5e{bottom:1076.913000px;}
.y35{bottom:1079.886000px;}
.y1{bottom:1084.272000px;}
.y34{bottom:1097.818500px;}
.y5d{bottom:1100.823000px;}
.y33{bottom:1124.733000px;}
.y32{bottom:1160.598000px;}
.h1a{height:31.944161px;}
.h5{height:32.804932px;}
.h9{height:36.798106px;}
.h8{height:36.905702px;}
.he{height:37.062106px;}
.ha{height:37.068106px;}
.h7{height:38.358259px;}
.h11{height:39.000259px;}
.h10{height:39.006259px;}
.hd{height:40.348800px;}
.h6{height:41.077895px;}
.hb{height:47.916442px;}
.hf{height:49.064141px;}
.h17{height:49.207603px;}
.h18{height:49.692624px;}
.h16{height:49.698624px;}
.hc{height:50.628259px;}
.h4{height:58.876805px;}
.h15{height:66.233280px;}
.h13{height:69.773280px;}
.h3{height:72.201388px;}
.h2{height:73.647481px;}
.h12{height:75.142800px;}
.h14{height:75.196800px;}
.h19{height:76.834800px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.580000px;}
.x39{left:106.042500px;}
.x33{left:108.841500px;}
.x44{left:112.755000px;}
.xc{left:122.478000px;}
.x25{left:128.401500px;}
.x3a{left:131.445000px;}
.x41{left:141.900000px;}
.x15{left:151.665000px;}
.x4e{left:163.552500px;}
.xb{left:166.828500px;}
.x21{left:170.283000px;}
.x12{left:189.726000px;}
.x32{left:195.684000px;}
.x1f{left:200.695500px;}
.x4a{left:210.948000px;}
.x22{left:214.356000px;}
.x1c{left:219.658500px;}
.x34{left:227.151000px;}
.x55{left:231.862500px;}
.x2e{left:237.352500px;}
.x20{left:245.745000px;}
.x57{left:257.638500px;}
.x42{left:275.520000px;}
.x3d{left:289.183500px;}
.x16{left:297.444000px;}
.x56{left:300.022500px;}
.x59{left:303.306000px;}
.x19{left:317.688000px;}
.x2f{left:324.172500px;}
.x23{left:331.672500px;}
.x2b{left:333.649500px;}
.x3f{left:342.321000px;}
.x37{left:347.889000px;}
.x3e{left:351.868500px;}
.x35{left:364.593000px;}
.x4f{left:372.171000px;}
.x13{left:384.604500px;}
.x54{left:394.165500px;}
.x53{left:396.705000px;}
.x43{left:403.720500px;}
.x46{left:405.576000px;}
.x4b{left:406.717500px;}
.x51{left:408.609000px;}
.x1d{left:412.591500px;}
.x58{left:415.950000px;}
.x2c{left:418.072500px;}
.x49{left:427.488000px;}
.x52{left:429.262500px;}
.x40{left:438.385500px;}
.x4c{left:455.316000px;}
.x2{left:464.512500px;}
.x29{left:472.131000px;}
.x24{left:476.568000px;}
.x5a{left:477.775500px;}
.x47{left:481.224000px;}
.xd{left:491.412000px;}
.x5b{left:500.377500px;}
.x27{left:502.248000px;}
.x11{left:504.469500px;}
.x2a{left:522.732000px;}
.x4{left:524.581500px;}
.x9{left:531.517500px;}
.x1a{left:545.956500px;}
.x7{left:558.420000px;}
.x36{left:560.935500px;}
.x30{left:571.519500px;}
.x45{left:574.419000px;}
.x31{left:599.139000px;}
.x17{left:606.604500px;}
.x2d{left:607.632000px;}
.x6{left:624.949500px;}
.x50{left:632.251500px;}
.x14{left:634.909500px;}
.x1b{left:654.829500px;}
.x10{left:664.320000px;}
.x38{left:669.358500px;}
.x5{left:679.875000px;}
.x1e{left:681.360000px;}
.x3b{left:684.558000px;}
.xe{left:685.924500px;}
.x4d{left:694.413000px;}
.x8{left:711.616500px;}
.x3{left:715.969500px;}
.x18{left:719.862000px;}
.x3c{left:735.060000px;}
.xf{left:762.603000px;}
.xa{left:767.496000px;}
.x26{left:779.638500px;}
.x48{left:784.129500px;}
.x28{left:790.855500px;}
@media print{
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.906667pt;}
.v2{vertical-align:20.314667pt;}
.v7{vertical-align:22.976000pt;}
.v9{vertical-align:27.120000pt;}
.v4{vertical-align:30.928000pt;}
.v8{vertical-align:32.432000pt;}
.v6{vertical-align:37.354667pt;}
.v5{vertical-align:40.501333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002985pt;}
.ls26{letter-spacing:0.007890pt;}
.lsd{letter-spacing:0.017551pt;}
.ls1{letter-spacing:0.334746pt;}
.ls22{letter-spacing:1.338982pt;}
.ls1c{letter-spacing:1.386803pt;}
.ls1a{letter-spacing:1.718030pt;}
.lsf{letter-spacing:2.655527pt;}
.lse{letter-spacing:2.656473pt;}
.ls13{letter-spacing:3.395277pt;}
.ls2{letter-spacing:3.443098pt;}
.ls1b{letter-spacing:5.164646pt;}
.ls24{letter-spacing:5.212467pt;}
.ls23{letter-spacing:8.177357pt;}
.ls20{letter-spacing:10.903142pt;}
.ls27{letter-spacing:10.950963pt;}
.ls15{letter-spacing:11.429171pt;}
.ls1e{letter-spacing:11.811738pt;}
.ls12{letter-spacing:11.955200pt;}
.lsa{letter-spacing:12.289946pt;}
.ls14{letter-spacing:12.756861pt;}
.lsc{letter-spacing:12.815974pt;}
.ls5{letter-spacing:13.055078pt;}
.ls3{letter-spacing:13.342003pt;}
.ls1f{letter-spacing:13.579139pt;}
.ls1d{letter-spacing:13.628928pt;}
.ls11{letter-spacing:13.676749pt;}
.ls16{letter-spacing:14.080473pt;}
.ls21{letter-spacing:14.298419pt;}
.lsb{letter-spacing:15.135527pt;}
.ls8{letter-spacing:15.589581pt;}
.ls18{letter-spacing:16.304473pt;}
.ls4{letter-spacing:16.450355pt;}
.ls10{letter-spacing:18.841395pt;}
.ls9{letter-spacing:18.984858pt;}
.ls0{letter-spacing:19.638326pt;}
.ls7{letter-spacing:23.910400pt;}
.ls25{letter-spacing:38.223805pt;}
.ls19{letter-spacing:91.393386pt;}
.ws38{word-spacing:-49.150218pt;}
.ws31{word-spacing:-32.063846pt;}
.ws45{word-spacing:-23.886490pt;}
.ws35{word-spacing:-23.384371pt;}
.ws3e{word-spacing:-21.160704pt;}
.ws40{word-spacing:-21.112883pt;}
.ws3d{word-spacing:-20.252109pt;}
.ws30{word-spacing:-18.387098pt;}
.ws2e{word-spacing:-13.652838pt;}
.ws2{word-spacing:-11.955200pt;}
.ws43{word-spacing:-5.475482pt;}
.ws3f{word-spacing:-2.749696pt;}
.ws36{word-spacing:-2.661683pt;}
.ws14{word-spacing:-1.912832pt;}
.ws33{word-spacing:-1.865011pt;}
.ws52{word-spacing:-1.578086pt;}
.ws1c{word-spacing:-1.319467pt;}
.ws1f{word-spacing:-1.243341pt;}
.ws20{word-spacing:-1.195520pt;}
.ws21{word-spacing:-0.621670pt;}
.ws13{word-spacing:-0.573850pt;}
.ws34{word-spacing:-0.526029pt;}
.ws28{word-spacing:-0.382566pt;}
.ws27{word-spacing:-0.334746pt;}
.wsf{word-spacing:-0.239104pt;}
.ws3c{word-spacing:-0.023910pt;}
.ws0{word-spacing:0.000000pt;}
.ws42{word-spacing:0.023910pt;}
.ws22{word-spacing:0.047821pt;}
.ws9{word-spacing:0.430387pt;}
.ws2d{word-spacing:0.526029pt;}
.ws23{word-spacing:1.052058pt;}
.ws24{word-spacing:1.099878pt;}
.ws4{word-spacing:1.243341pt;}
.ws1e{word-spacing:1.291162pt;}
.ws6{word-spacing:1.386803pt;}
.wsa{word-spacing:1.434624pt;}
.ws29{word-spacing:1.578086pt;}
.ws16{word-spacing:1.625907pt;}
.ws50{word-spacing:1.673728pt;}
.ws17{word-spacing:1.721549pt;}
.ws2c{word-spacing:1.769370pt;}
.ws5{word-spacing:1.817190pt;}
.ws3b{word-spacing:1.912832pt;}
.ws25{word-spacing:2.008474pt;}
.ws10{word-spacing:2.151936pt;}
.ws11{word-spacing:2.199757pt;}
.ws41{word-spacing:2.343219pt;}
.ws7{word-spacing:2.582323pt;}
.ws26{word-spacing:2.630144pt;}
.ws2f{word-spacing:2.773606pt;}
.ws1d{word-spacing:2.821427pt;}
.ws53{word-spacing:2.869248pt;}
.wsc{word-spacing:3.347456pt;}
.ws37{word-spacing:3.443098pt;}
.ws2b{word-spacing:3.634381pt;}
.ws3{word-spacing:4.256051pt;}
.ws39{word-spacing:4.303872pt;}
.ws12{word-spacing:4.447334pt;}
.ws8{word-spacing:4.495155pt;}
.ws1b{word-spacing:4.686438pt;}
.wsd{word-spacing:5.595034pt;}
.wse{word-spacing:5.834138pt;}
.ws2a{word-spacing:6.073242pt;}
.ws18{word-spacing:6.121062pt;}
.ws19{word-spacing:6.168883pt;}
.ws15{word-spacing:6.407987pt;}
.ws4f{word-spacing:7.460045pt;}
.ws4e{word-spacing:7.555686pt;}
.ws1a{word-spacing:7.842611pt;}
.ws3a{word-spacing:7.986074pt;}
.wsb{word-spacing:8.368640pt;}
.ws55{word-spacing:8.846848pt;}
.ws44{word-spacing:10.814415pt;}
.ws47{word-spacing:10.819748pt;}
.ws46{word-spacing:10.824726pt;}
.ws48{word-spacing:10.830060pt;}
.ws4b{word-spacing:11.907379pt;}
.ws49{word-spacing:14.537523pt;}
.ws4d{word-spacing:15.063552pt;}
.ws4a{word-spacing:18.028442pt;}
.ws54{word-spacing:18.363187pt;}
.ws1{word-spacing:22.862051pt;}
.ws51{word-spacing:25.461813pt;}
.ws4c{word-spacing:28.644659pt;}
.ws32{word-spacing:35.865600pt;}
._c{margin-left:-11.429171pt;}
._12{margin-left:-6.551461pt;}
._1{margin-left:-4.760809pt;}
._2{margin-left:-3.538739pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-1.099890pt;}
._11{width:1.042959pt;}
._7{width:2.353099pt;}
._6{width:3.914974pt;}
._f{width:9.171714pt;}
._4{width:11.477004pt;}
._13{width:12.720333pt;}
._14{width:14.663582pt;}
._d{width:15.943031pt;}
._9{width:17.315046pt;}
._b{width:18.841395pt;}
._e{width:20.041731pt;}
._5{width:21.901587pt;}
._a{width:23.910400pt;}
._15{width:28.740301pt;}
._8{width:47.820800pt;}
._10{width:95.700030pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:99.718667pt;}
.y30{bottom:115.658667pt;}
.y5c{bottom:120.972000pt;}
.y2f{bottom:131.598667pt;}
.y5b{bottom:142.225333pt;}
.y2e{bottom:147.538667pt;}
.y2d{bottom:163.478667pt;}
.y5a{bottom:187.537333pt;}
.y2c{bottom:195.458667pt;}
.y59{bottom:208.790667pt;}
.y2b{bottom:211.400000pt;}
.y2a{bottom:227.340000pt;}
.y58{bottom:230.045333pt;}
.y29{bottom:243.280000pt;}
.y57{bottom:245.985333pt;}
.y28{bottom:259.220000pt;}
.y56{bottom:265.964000pt;}
.y55{bottom:274.073333pt;}
.y27{bottom:275.160000pt;}
.y26{bottom:291.100000pt;}
.y54{bottom:297.562667pt;}
.y25{bottom:307.041333pt;}
.y53{bottom:313.502667pt;}
.y24{bottom:322.981333pt;}
.y52{bottom:329.442667pt;}
.y51{bottom:345.622667pt;}
.y23{bottom:346.990667pt;}
.y50{bottom:355.536000pt;}
.y4f{bottom:380.202667pt;}
.y86{bottom:388.158667pt;}
.y4e{bottom:404.261333pt;}
.y22{bottom:406.892000pt;}
.y85{bottom:412.069333pt;}
.y4d{bottom:420.214667pt;}
.y21{bottom:422.833333pt;}
.y4c{bottom:436.168000pt;}
.y20{bottom:438.773333pt;}
.y1f{bottom:454.713333pt;}
.y78{bottom:459.889333pt;}
.y4b{bottom:460.226667pt;}
.y1e{bottom:470.653333pt;}
.y4a{bottom:476.166667pt;}
.y77{bottom:482.472000pt;}
.y84{bottom:489.704000pt;}
.y49{bottom:492.106667pt;}
.y76{bottom:502.397333pt;}
.y1d{bottom:506.528000pt;}
.y48{bottom:516.030667pt;}
.y83{bottom:516.861333pt;}
.y75{bottom:518.337333pt;}
.y82{bottom:532.801333pt;}
.y74{bottom:534.277333pt;}
.y13{bottom:545.158667pt;}
.y81{bottom:549.332000pt;}
.y73{bottom:550.217333pt;}
.y12{bottom:561.098667pt;}
.y80{bottom:565.272000pt;}
.y47{bottom:565.482667pt;}
.y72{bottom:566.158667pt;}
.y11{bottom:577.038667pt;}
.y7f{bottom:581.213333pt;}
.y46{bottom:581.422667pt;}
.y71{bottom:582.098667pt;}
.y7e{bottom:597.153333pt;}
.y45{bottom:597.362667pt;}
.y1c{bottom:600.949333pt;}
.y10{bottom:601.078667pt;}
.y70{bottom:604.680000pt;}
.y44{bottom:613.316000pt;}
.y6f{bottom:620.620000pt;}
.y7d{bottom:626.966667pt;}
.y43{bottom:637.226667pt;}
.y6e{bottom:643.202667pt;}
.y7c{bottom:643.497333pt;}
.y1b{bottom:648.769333pt;}
.y6d{bottom:659.142667pt;}
.yf{bottom:664.580000pt;}
.y1a{bottom:664.709333pt;}
.y7b{bottom:673.312000pt;}
.y6c{bottom:675.082667pt;}
.y42{bottom:678.304000pt;}
.ye{bottom:680.520000pt;}
.y19{bottom:680.650667pt;}
.y7a{bottom:689.842667pt;}
.y6b{bottom:691.022667pt;}
.y41{bottom:694.257333pt;}
.yd{bottom:696.461333pt;}
.y18{bottom:696.590667pt;}
.y79{bottom:706.373333pt;}
.y6a{bottom:706.964000pt;}
.y40{bottom:710.210667pt;}
.yc{bottom:712.401333pt;}
.y17{bottom:712.530667pt;}
.yb{bottom:728.341333pt;}
.y16{bottom:728.470667pt;}
.y69{bottom:730.873333pt;}
.y3f{bottom:734.256000pt;}
.ya{bottom:744.281333pt;}
.y15{bottom:744.410667pt;}
.y3e{bottom:750.209333pt;}
.y9{bottom:760.221333pt;}
.y14{bottom:760.350667pt;}
.y68{bottom:762.754667pt;}
.y3d{bottom:774.120000pt;}
.y67{bottom:778.362667pt;}
.y8{bottom:784.261333pt;}
.y66{bottom:786.470667pt;}
.y65{bottom:811.137333pt;}
.y3c{bottom:815.197333pt;}
.y64{bottom:827.077333pt;}
.y7{bottom:828.205333pt;}
.y3b{bottom:831.137333pt;}
.y6{bottom:841.489333pt;}
.y3a{bottom:847.077333pt;}
.y63{bottom:850.988000pt;}
.y5{bottom:854.773333pt;}
.y39{bottom:863.017333pt;}
.y4{bottom:868.056000pt;}
.y62{bottom:872.241333pt;}
.y38{bottom:878.970667pt;}
.y3{bottom:883.996000pt;}
.y61{bottom:893.494667pt;}
.y37{bottom:894.912000pt;}
.y60{bottom:914.748000pt;}
.y36{bottom:918.821333pt;}
.y5f{bottom:936.001333pt;}
.y2{bottom:937.230667pt;}
.y5e{bottom:957.256000pt;}
.y35{bottom:959.898667pt;}
.y1{bottom:963.797333pt;}
.y34{bottom:975.838667pt;}
.y5d{bottom:978.509333pt;}
.y33{bottom:999.762667pt;}
.y32{bottom:1031.642667pt;}
.h1a{height:28.394810pt;}
.h5{height:29.159939pt;}
.h9{height:32.709427pt;}
.h8{height:32.805069pt;}
.he{height:32.944094pt;}
.ha{height:32.949427pt;}
.h7{height:34.096230pt;}
.h11{height:34.666897pt;}
.h10{height:34.672230pt;}
.hd{height:35.865600pt;}
.h6{height:36.513685pt;}
.hb{height:42.592393pt;}
.hf{height:43.612570pt;}
.h17{height:43.740092pt;}
.h18{height:44.171221pt;}
.h16{height:44.176555pt;}
.hc{height:45.002897pt;}
.h4{height:52.334938pt;}
.h15{height:58.874027pt;}
.h13{height:62.020693pt;}
.h3{height:64.179011pt;}
.h2{height:65.464428pt;}
.h12{height:66.793600pt;}
.h14{height:66.841600pt;}
.h19{height:68.297600pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:84.960000pt;}
.x39{left:94.260000pt;}
.x33{left:96.748000pt;}
.x44{left:100.226667pt;}
.xc{left:108.869333pt;}
.x25{left:114.134667pt;}
.x3a{left:116.840000pt;}
.x41{left:126.133333pt;}
.x15{left:134.813333pt;}
.x4e{left:145.380000pt;}
.xb{left:148.292000pt;}
.x21{left:151.362667pt;}
.x12{left:168.645333pt;}
.x32{left:173.941333pt;}
.x1f{left:178.396000pt;}
.x4a{left:187.509333pt;}
.x22{left:190.538667pt;}
.x1c{left:195.252000pt;}
.x34{left:201.912000pt;}
.x55{left:206.100000pt;}
.x2e{left:210.980000pt;}
.x20{left:218.440000pt;}
.x57{left:229.012000pt;}
.x42{left:244.906667pt;}
.x3d{left:257.052000pt;}
.x16{left:264.394667pt;}
.x56{left:266.686667pt;}
.x59{left:269.605333pt;}
.x19{left:282.389333pt;}
.x2f{left:288.153333pt;}
.x23{left:294.820000pt;}
.x2b{left:296.577333pt;}
.x3f{left:304.285333pt;}
.x37{left:309.234667pt;}
.x3e{left:312.772000pt;}
.x35{left:324.082667pt;}
.x4f{left:330.818667pt;}
.x13{left:341.870667pt;}
.x54{left:350.369333pt;}
.x53{left:352.626667pt;}
.x43{left:358.862667pt;}
.x46{left:360.512000pt;}
.x4b{left:361.526667pt;}
.x51{left:363.208000pt;}
.x1d{left:366.748000pt;}
.x58{left:369.733333pt;}
.x2c{left:371.620000pt;}
.x49{left:379.989333pt;}
.x52{left:381.566667pt;}
.x40{left:389.676000pt;}
.x4c{left:404.725333pt;}
.x2{left:412.900000pt;}
.x29{left:419.672000pt;}
.x24{left:423.616000pt;}
.x5a{left:424.689333pt;}
.x47{left:427.754667pt;}
.xd{left:436.810667pt;}
.x5b{left:444.780000pt;}
.x27{left:446.442667pt;}
.x11{left:448.417333pt;}
.x2a{left:464.650667pt;}
.x4{left:466.294667pt;}
.x9{left:472.460000pt;}
.x1a{left:485.294667pt;}
.x7{left:496.373333pt;}
.x36{left:498.609333pt;}
.x30{left:508.017333pt;}
.x45{left:510.594667pt;}
.x31{left:532.568000pt;}
.x17{left:539.204000pt;}
.x2d{left:540.117333pt;}
.x6{left:555.510667pt;}
.x50{left:562.001333pt;}
.x14{left:564.364000pt;}
.x1b{left:582.070667pt;}
.x10{left:590.506667pt;}
.x38{left:594.985333pt;}
.x5{left:604.333333pt;}
.x1e{left:605.653333pt;}
.x3b{left:608.496000pt;}
.xe{left:609.710667pt;}
.x4d{left:617.256000pt;}
.x8{left:632.548000pt;}
.x3{left:636.417333pt;}
.x18{left:639.877333pt;}
.x3c{left:653.386667pt;}
.xf{left:677.869333pt;}
.xa{left:682.218667pt;}
.x26{left:693.012000pt;}
.x48{left:697.004000pt;}
.x28{left:702.982667pt;}
}




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