
    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_8dc27c84709be48627ac1c8f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b05440b22849e316c050974.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6790d5c70a5ee6d9888ddc33.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a62f17b8bcb6038eba515bec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_f27f674243efbb2ffab7ed1d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_a249e3e7d456082e3efdd8ff.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_492825b0c72b0dd42edb6cc5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f74111fb4014075f00749268.woff')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_a9e10b49e883b6163b4764f9.woff')format("woff");}.ff9{font-family:ff9;line-height:0.857910;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_8e8c73b7a1c5b058bb813175.woff')format("woff");}.ffa{font-family:ffa;line-height:1.180664;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);}
.v3{vertical-align:-32.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.728000px;}
.v5{vertical-align:9.268200px;}
.v4{vertical-align:32.760000px;}
.v2{vertical-align:39.652560px;}
.lsa{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.276480px;}
.lse{letter-spacing:-0.192240px;}
.ls11{letter-spacing:-0.191880px;}
.ls1d{letter-spacing:-0.168120px;}
.ls8{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.138240px;}
.lsf{letter-spacing:-0.132120px;}
.ls6{letter-spacing:-0.119880px;}
.ls4{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.101880px;}
.ls7{letter-spacing:-0.083880px;}
.ls21{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.016812px;}
.ls18{letter-spacing:0.067248px;}
.ls26{letter-spacing:0.069120px;}
.ls12{letter-spacing:0.100872px;}
.ls25{letter-spacing:0.101880px;}
.ls1{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.120960px;}
.ls20{letter-spacing:0.121560px;}
.lsd{letter-spacing:0.132120px;}
.ls29{letter-spacing:0.138240px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.168120px;}
.ls10{letter-spacing:0.273600px;}
.ls23{letter-spacing:0.305640px;}
.ls1f{letter-spacing:0.475200px;}
.ls22{letter-spacing:0.509400px;}
.ls3{letter-spacing:0.839160px;}
.ls1e{letter-spacing:1.152000px;}
.ls2{letter-spacing:52.387560px;}
.lsc{letter-spacing:57.096720px;}
.ls13{letter-spacing:82.997784px;}
.lsb{letter-spacing:127.440000px;}
.ls16{letter-spacing:132.120000px;}
.ls14{letter-spacing:230.020920px;}
.ls17{letter-spacing:571.467960px;}
.ls1c{letter-spacing:746.496000px;}
.ls1a{letter-spacing:751.140000px;}
.ls1b{letter-spacing:875.739600px;}
.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;}
}
.ws4a{word-spacing:-46.905480px;}
.ws2a{word-spacing:-40.176000px;}
.ws29{word-spacing:-40.032000px;}
.ws15{word-spacing:-39.888000px;}
.ws26{word-spacing:-36.861480px;}
.ws1b{word-spacing:-36.729360px;}
.ws0{word-spacing:-33.206760px;}
.ws31{word-spacing:-30.132000px;}
.ws42{word-spacing:-28.424520px;}
.ws41{word-spacing:-28.322640px;}
.ws40{word-spacing:-28.220760px;}
.ws1a{word-spacing:-26.529120px;}
.ws2b{word-spacing:-24.419520px;}
.ws10{word-spacing:-20.160000px;}
.ws11{word-spacing:-20.016000px;}
.ws39{word-spacing:-19.944000px;}
.ws12{word-spacing:-19.584000px;}
.ws4f{word-spacing:-19.353600px;}
.ws4b{word-spacing:-19.284480px;}
.ws4e{word-spacing:-19.215360px;}
.ws4c{word-spacing:-19.077120px;}
.wsa{word-spacing:-18.956880px;}
.ws4d{word-spacing:-18.938880px;}
.ws3f{word-spacing:-8.352000px;}
.ws3b{word-spacing:-1.189080px;}
.ws28{word-spacing:-1.176840px;}
.ws35{word-spacing:-1.056960px;}
.ws21{word-spacing:-0.959400px;}
.ws55{word-spacing:-0.898560px;}
.ws27{word-spacing:-0.840600px;}
.ws30{word-spacing:-0.839160px;}
.ws5d{word-spacing:-0.829440px;}
.ws38{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.660600px;}
.ws1d{word-spacing:-0.576720px;}
.ws50{word-spacing:-0.552960px;}
.ws6{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.528480px;}
.ws1{word-spacing:-0.504360px;}
.ws19{word-spacing:-0.479520px;}
.ws3e{word-spacing:-0.432000px;}
.ws5{word-spacing:-0.396360px;}
.ws5c{word-spacing:-0.345600px;}
.ws22{word-spacing:-0.288000px;}
.ws23{word-spacing:-0.264240px;}
.ws4{word-spacing:-0.216000px;}
.ws52{word-spacing:-0.207360px;}
.ws2d{word-spacing:-0.192240px;}
.ws36{word-spacing:-0.168120px;}
.ws5b{word-spacing:-0.138240px;}
.ws33{word-spacing:-0.132120px;}
.ws8{word-spacing:-0.119880px;}
.ws16{word-spacing:-0.108000px;}
.ws51{word-spacing:-0.069120px;}
.ws2{word-spacing:0.000000px;}
.ws3d{word-spacing:0.096120px;}
.ws48{word-spacing:0.101880px;}
.ws3{word-spacing:0.108000px;}
.ws3a{word-spacing:0.132120px;}
.ws57{word-spacing:0.138240px;}
.ws18{word-spacing:0.144000px;}
.wsb{word-spacing:0.167760px;}
.ws37{word-spacing:0.168120px;}
.ws45{word-spacing:0.203760px;}
.ws56{word-spacing:0.207360px;}
.ws54{word-spacing:0.276480px;}
.ws13{word-spacing:0.288000px;}
.wsc{word-spacing:0.336240px;}
.ws5a{word-spacing:0.345600px;}
.ws9{word-spacing:0.359640px;}
.ws20{word-spacing:0.396360px;}
.ws17{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480600px;}
.ws59{word-spacing:0.552960px;}
.ws7{word-spacing:0.599400px;}
.ws2e{word-spacing:0.720000px;}
.ws58{word-spacing:0.760320px;}
.ws32{word-spacing:0.792720px;}
.wsd{word-spacing:0.864000px;}
.ws53{word-spacing:0.898560px;}
.ws44{word-spacing:0.916920px;}
.ws2c{word-spacing:1.008000px;}
.ws43{word-spacing:1.080000px;}
.wsf{word-spacing:1.152000px;}
.ws3c{word-spacing:1.249560px;}
.ws49{word-spacing:1.324440px;}
.ws14{word-spacing:1.440000px;}
.ws34{word-spacing:1.453320px;}
.wse{word-spacing:1.584000px;}
.ws1c{word-spacing:1.730772px;}
.ws47{word-spacing:1.731960px;}
.ws46{word-spacing:2.037600px;}
.ws25{word-spacing:270.846000px;}
.ws24{word-spacing:1100.136816px;}
._c{margin-left:-15.840000px;}
._6{margin-left:-13.530492px;}
._e{margin-left:-11.016000px;}
._3{margin-left:-9.662796px;}
._8{margin-left:-8.485632px;}
._2{margin-left:-6.825600px;}
._7{margin-left:-5.754240px;}
._d{margin-left:-4.273596px;}
._5{margin-left:-2.433096px;}
._0{margin-left:-1.126404px;}
._1{width:1.126404px;}
._13{width:2.552976px;}
._4{width:5.634360px;}
._16{width:7.807500px;}
._15{width:9.072000px;}
._17{width:18.745416px;}
._18{width:19.863072px;}
._14{width:91.427040px;}
._10{width:120.493440px;}
._11{width:128.197308px;}
._f{width:132.522228px;}
._a{width:205.683192px;}
._b{width:347.760000px;}
._12{width:1666.553004px;}
._9{width:1709.080164px;}
.fcd{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(51,51,204);}
.fcb{color:rgb(166,166,166);}
.fc3{color:rgb(153,51,0);}
.fc7{color:rgb(0,128,0);}
.fc4{color:rgb(199,199,241);}
.fc5{color:rgb(95,95,95);}
.fc8{color:transparent;}
.fc9{color:rgb(0,153,215);}
.fca{color:rgb(0,156,213);}
.fc6{color:rgb(0,100,0);}
.fcc{color:rgb(205,205,243);}
.fsc{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs9{font-size:87.840000px;}
.fs7{font-size:96.120000px;}
.fsb{font-size:101.880000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:119.880000px;}
.fs2{font-size:132.120000px;}
.fs5{font-size:144.000000px;}
.fs0{font-size:168.120000px;}
.fs8{font-size:191.880000px;}
.fsa{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:19.494300px;}
.yb{bottom:74.814690px;}
.y9d{bottom:92.101440px;}
.y5d{bottom:97.420650px;}
.y53{bottom:103.724850px;}
.y3d{bottom:104.410800px;}
.ya{bottom:110.808660px;}
.y1e{bottom:115.267950px;}
.y45{bottom:116.724750px;}
.y4e{bottom:117.245640px;}
.y5c{bottom:119.020650px;}
.y9c{bottom:119.369280px;}
.y13{bottom:123.876000px;}
.y7b{bottom:130.180800px;}
.y40{bottom:141.303150px;}
.y84{bottom:141.547860px;}
.y9b{bottom:142.144320px;}
.y3e{bottom:142.941900px;}
.y9{bottom:146.802630px;}
.y72{bottom:149.134950px;}
.y50{bottom:163.781520px;}
.y44{bottom:164.783400px;}
.y69{bottom:165.626220px;}
.y9a{bottom:169.412160px;}
.y4d{bottom:169.796370px;}
.y7a{bottom:173.747370px;}
.y83{bottom:175.219200px;}
.y8{bottom:191.787600px;}
.y99{bottom:192.187200px;}
.y68{bottom:194.414160px;}
.y5a{bottom:200.523930px;}
.y71{bottom:205.654950px;}
.y30{bottom:206.267160px;}
.y62{bottom:207.603180px;}
.y82{bottom:208.890540px;}
.y43{bottom:212.842050px;}
.y4f{bottom:216.332250px;}
.y98{bottom:219.455040px;}
.y4c{bottom:222.347100px;}
.y67{bottom:223.202100px;}
.y1b{bottom:223.924950px;}
.y3f{bottom:225.317100px;}
.y79{bottom:226.298100px;}
.y97{bottom:242.230080px;}
.y81{bottom:242.561880px;}
.y2f{bottom:249.833730px;}
.y61{bottom:251.169750px;}
.y10{bottom:255.349200px;}
.y59{bottom:255.961500px;}
.y42{bottom:260.900700px;}
.y70{bottom:262.174950px;}
.y96{bottom:269.497920px;}
.y1a{bottom:271.444950px;}
.y80{bottom:276.233220px;}
.y95{bottom:292.272960px;}
.y2e{bottom:293.400300px;}
.y3c{bottom:293.895300px;}
.y60{bottom:294.729750px;}
.y6f{bottom:309.694950px;}
.y24{bottom:309.887130px;}
.y7f{bottom:309.904560px;}
.y28{bottom:314.559900px;}
.y19{bottom:318.964950px;}
.y94{bottom:319.540800px;}
.y12{bottom:324.944850px;}
.y5f{bottom:338.281830px;}
.y3b{bottom:338.445300px;}
.y7e{bottom:343.575900px;}
.y93{bottom:346.808640px;}
.y2d{bottom:346.950150px;}
.y4a{bottom:351.776100px;}
.y27{bottom:362.079900px;}
.y18{bottom:366.484950px;}
.y23{bottom:371.455050px;}
.y11{bottom:372.464850px;}
.y6e{bottom:372.478950px;}
.y92{bottom:374.076480px;}
.y78{bottom:380.564700px;}
.y7d{bottom:386.775900px;}
.y91{bottom:396.851520px;}
.y5e{bottom:399.849750px;}
.y7{bottom:402.343950px;}
.y38{bottom:403.317510px;}
.y58{bottom:413.770950px;}
.y22{bottom:424.008480px;}
.y90{bottom:424.119360px;}
.y17{bottom:432.004950px;}
.y77{bottom:437.084700px;}
.y6{bottom:444.013950px;}
.y37{bottom:446.884080px;}
.y8f{bottom:446.894400px;}
.y26{bottom:449.559900px;}
.y63{bottom:450.961350px;}
.y49{bottom:452.375610px;}
.y3a{bottom:457.513800px;}
.y6c{bottom:460.786950px;}
.y21{bottom:467.575050px;}
.y57{bottom:467.770950px;}
.y8e{bottom:474.162240px;}
.y76{bottom:484.604700px;}
.y36{bottom:490.437510px;}
.y8d{bottom:496.937280px;}
.y48{bottom:500.434260px;}
.y6b{bottom:508.306950px;}
.y66{bottom:517.451550px;}
.y20{bottom:520.135050px;}
.y8c{bottom:524.205120px;}
.y5b{bottom:529.422300px;}
.y4{bottom:530.743590px;}
.y35{bottom:534.004080px;}
.yf{bottom:538.191900px;}
.y75{bottom:541.124700px;}
.y25{bottom:546.939900px;}
.y8b{bottom:546.980160px;}
.y47{bottom:548.492910px;}
.y56{bottom:548.770950px;}
.y29{bottom:564.205200px;}
.y6a{bottom:564.826950px;}
.y65{bottom:565.511550px;}
.y8a{bottom:574.248000px;}
.y34{bottom:577.570650px;}
.y3{bottom:581.137560px;}
.y14{bottom:587.039550px;}
.y74{bottom:588.644700px;}
.y46{bottom:596.551560px;}
.y89{bottom:597.023040px;}
.y16{bottom:598.900950px;}
.y39{bottom:602.096700px;}
.y55{bottom:602.770950px;}
.y64{bottom:613.571550px;}
.y33{bottom:622.120650px;}
.y88{bottom:624.290880px;}
.y6d{bottom:627.610950px;}
.y2{bottom:631.531530px;}
.y52{bottom:636.967500px;}
.y1f{bottom:639.086250px;}
.y7c{bottom:639.985800px;}
.y2a{bottom:640.735710px;}
.y2b{bottom:640.867830px;}
.y2c{bottom:640.886250px;}
.y15{bottom:646.420950px;}
.y87{bottom:647.065920px;}
.y41{bottom:655.870950px;}
.y54{bottom:656.770950px;}
.y4b{bottom:663.896100px;}
.y86{bottom:674.333760px;}
.y32{bottom:678.640650px;}
.y1{bottom:681.925500px;}
.y73{bottom:689.098050px;}
.ye{bottom:691.033530px;}
.y85{bottom:697.108800px;}
.y51{bottom:698.620350px;}
.y1d{bottom:705.442650px;}
.yd{bottom:741.427500px;}
.y1c{bottom:741.633750px;}
.y31{bottom:744.654750px;}
.y5{bottom:755.589600px;}
.h15{height:50.355000px;}
.h9{height:52.453125px;}
.h6{height:60.903105px;}
.hb{height:70.024922px;}
.h14{height:74.221172px;}
.h4{height:78.626953px;}
.h2{height:78.679688px;}
.h5{height:87.334453px;}
.he{height:88.058496px;}
.hf{height:89.800313px;}
.hc{height:96.186973px;}
.h3{height:96.251484px;}
.h13{height:103.592812px;}
.h12{height:103.624493px;}
.h10{height:103.645372px;}
.ha{height:104.835938px;}
.h8{height:104.906250px;}
.h7{height:106.634250px;}
.h1{height:122.395957px;}
.hd{height:139.693887px;}
.h11{height:246.375000px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4{left:73.089150px;}
.x2{left:74.187000px;}
.x1{left:75.862500px;}
.x2d{left:77.874750px;}
.x26{left:89.357850px;}
.x2c{left:92.740500px;}
.x7{left:104.189700px;}
.x38{left:110.300250px;}
.x6{left:112.400850px;}
.x39{left:116.492250px;}
.x21{left:118.072500px;}
.x25{left:120.080850px;}
.x2a{left:124.164000px;}
.xa{left:127.037700px;}
.x20{left:134.848800px;}
.xf{left:137.213400px;}
.x29{left:142.330500px;}
.x3b{left:143.963100px;}
.x3c{left:145.896450px;}
.x1f{left:147.771150px;}
.x1a{left:157.333650px;}
.x3{left:169.477800px;}
.x10{left:177.713400px;}
.x11{left:190.661160px;}
.x1b{left:199.543650px;}
.xd{left:206.715900px;}
.x2e{left:216.283500px;}
.x3a{left:224.600250px;}
.x14{left:244.263750px;}
.x23{left:246.742800px;}
.x30{left:248.375700px;}
.x19{left:250.132950px;}
.x31{left:272.045700px;}
.x15{left:319.323750px;}
.x27{left:335.165400px;}
.x28{left:361.679400px;}
.x2f{left:369.539100px;}
.x12{left:385.293750px;}
.x13{left:405.723750px;}
.xe{left:409.348800px;}
.x2b{left:427.180500px;}
.x24{left:440.171250px;}
.x16{left:456.613350px;}
.x1d{left:492.663300px;}
.x18{left:532.020840px;}
.x1e{left:534.873300px;}
.xc{left:600.337350px;}
.x5{left:611.076030px;}
.x32{left:773.324400px;}
.x33{left:815.173410px;}
.x8{left:841.094250px;}
.x37{left:893.120850px;}
.xb{left:934.917150px;}
.x1c{left:943.422000px;}
.x22{left:951.926850px;}
.x34{left:996.888300px;}
.x35{left:1007.233650px;}
.x9{left:1027.254750px;}
.x36{left:1031.527980px;}
.x17{left:1075.661610px;}
@media print{
.v3{vertical-align:-29.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.536000pt;}
.v5{vertical-align:8.238400pt;}
.v4{vertical-align:29.120000pt;}
.v2{vertical-align:35.246720pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.245760pt;}
.lse{letter-spacing:-0.170880pt;}
.ls11{letter-spacing:-0.170560pt;}
.ls1d{letter-spacing:-0.149440pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.122880pt;}
.lsf{letter-spacing:-0.117440pt;}
.ls6{letter-spacing:-0.106560pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.090560pt;}
.ls7{letter-spacing:-0.074560pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.014944pt;}
.ls18{letter-spacing:0.059776pt;}
.ls26{letter-spacing:0.061440pt;}
.ls12{letter-spacing:0.089664pt;}
.ls25{letter-spacing:0.090560pt;}
.ls1{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.107520pt;}
.ls20{letter-spacing:0.108053pt;}
.lsd{letter-spacing:0.117440pt;}
.ls29{letter-spacing:0.122880pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.149440pt;}
.ls10{letter-spacing:0.243200pt;}
.ls23{letter-spacing:0.271680pt;}
.ls1f{letter-spacing:0.422400pt;}
.ls22{letter-spacing:0.452800pt;}
.ls3{letter-spacing:0.745920pt;}
.ls1e{letter-spacing:1.024000pt;}
.ls2{letter-spacing:46.566720pt;}
.lsc{letter-spacing:50.752640pt;}
.ls13{letter-spacing:73.775808pt;}
.lsb{letter-spacing:113.280000pt;}
.ls16{letter-spacing:117.440000pt;}
.ls14{letter-spacing:204.463040pt;}
.ls17{letter-spacing:507.971520pt;}
.ls1c{letter-spacing:663.552000pt;}
.ls1a{letter-spacing:667.680000pt;}
.ls1b{letter-spacing:778.435200pt;}
.ws4a{word-spacing:-41.693760pt;}
.ws2a{word-spacing:-35.712000pt;}
.ws29{word-spacing:-35.584000pt;}
.ws15{word-spacing:-35.456000pt;}
.ws26{word-spacing:-32.765760pt;}
.ws1b{word-spacing:-32.648320pt;}
.ws0{word-spacing:-29.517120pt;}
.ws31{word-spacing:-26.784000pt;}
.ws42{word-spacing:-25.266240pt;}
.ws41{word-spacing:-25.175680pt;}
.ws40{word-spacing:-25.085120pt;}
.ws1a{word-spacing:-23.581440pt;}
.ws2b{word-spacing:-21.706240pt;}
.ws10{word-spacing:-17.920000pt;}
.ws11{word-spacing:-17.792000pt;}
.ws39{word-spacing:-17.728000pt;}
.ws12{word-spacing:-17.408000pt;}
.ws4f{word-spacing:-17.203200pt;}
.ws4b{word-spacing:-17.141760pt;}
.ws4e{word-spacing:-17.080320pt;}
.ws4c{word-spacing:-16.957440pt;}
.wsa{word-spacing:-16.850560pt;}
.ws4d{word-spacing:-16.834560pt;}
.ws3f{word-spacing:-7.424000pt;}
.ws3b{word-spacing:-1.056960pt;}
.ws28{word-spacing:-1.046080pt;}
.ws35{word-spacing:-0.939520pt;}
.ws21{word-spacing:-0.852800pt;}
.ws55{word-spacing:-0.798720pt;}
.ws27{word-spacing:-0.747200pt;}
.ws30{word-spacing:-0.745920pt;}
.ws5d{word-spacing:-0.737280pt;}
.ws38{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.587200pt;}
.ws1d{word-spacing:-0.512640pt;}
.ws50{word-spacing:-0.491520pt;}
.ws6{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.469760pt;}
.ws1{word-spacing:-0.448320pt;}
.ws19{word-spacing:-0.426240pt;}
.ws3e{word-spacing:-0.384000pt;}
.ws5{word-spacing:-0.352320pt;}
.ws5c{word-spacing:-0.307200pt;}
.ws22{word-spacing:-0.256000pt;}
.ws23{word-spacing:-0.234880pt;}
.ws4{word-spacing:-0.192000pt;}
.ws52{word-spacing:-0.184320pt;}
.ws2d{word-spacing:-0.170880pt;}
.ws36{word-spacing:-0.149440pt;}
.ws5b{word-spacing:-0.122880pt;}
.ws33{word-spacing:-0.117440pt;}
.ws8{word-spacing:-0.106560pt;}
.ws16{word-spacing:-0.096000pt;}
.ws51{word-spacing:-0.061440pt;}
.ws2{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.085440pt;}
.ws48{word-spacing:0.090560pt;}
.ws3{word-spacing:0.096000pt;}
.ws3a{word-spacing:0.117440pt;}
.ws57{word-spacing:0.122880pt;}
.ws18{word-spacing:0.128000pt;}
.wsb{word-spacing:0.149120pt;}
.ws37{word-spacing:0.149440pt;}
.ws45{word-spacing:0.181120pt;}
.ws56{word-spacing:0.184320pt;}
.ws54{word-spacing:0.245760pt;}
.ws13{word-spacing:0.256000pt;}
.wsc{word-spacing:0.298880pt;}
.ws5a{word-spacing:0.307200pt;}
.ws9{word-spacing:0.319680pt;}
.ws20{word-spacing:0.352320pt;}
.ws17{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.427200pt;}
.ws59{word-spacing:0.491520pt;}
.ws7{word-spacing:0.532800pt;}
.ws2e{word-spacing:0.640000pt;}
.ws58{word-spacing:0.675840pt;}
.ws32{word-spacing:0.704640pt;}
.wsd{word-spacing:0.768000pt;}
.ws53{word-spacing:0.798720pt;}
.ws44{word-spacing:0.815040pt;}
.ws2c{word-spacing:0.896000pt;}
.ws43{word-spacing:0.960000pt;}
.wsf{word-spacing:1.024000pt;}
.ws3c{word-spacing:1.110720pt;}
.ws49{word-spacing:1.177280pt;}
.ws14{word-spacing:1.280000pt;}
.ws34{word-spacing:1.291840pt;}
.wse{word-spacing:1.408000pt;}
.ws1c{word-spacing:1.538464pt;}
.ws47{word-spacing:1.539520pt;}
.ws46{word-spacing:1.811200pt;}
.ws25{word-spacing:240.752000pt;}
.ws24{word-spacing:977.899392pt;}
._c{margin-left:-14.080000pt;}
._6{margin-left:-12.027104pt;}
._e{margin-left:-9.792000pt;}
._3{margin-left:-8.589152pt;}
._8{margin-left:-7.542784pt;}
._2{margin-left:-6.067200pt;}
._7{margin-left:-5.114880pt;}
._d{margin-left:-3.798752pt;}
._5{margin-left:-2.162752pt;}
._0{margin-left:-1.001248pt;}
._1{width:1.001248pt;}
._13{width:2.269312pt;}
._4{width:5.008320pt;}
._16{width:6.940000pt;}
._15{width:8.064000pt;}
._17{width:16.662592pt;}
._18{width:17.656064pt;}
._14{width:81.268480pt;}
._10{width:107.105280pt;}
._11{width:113.953163pt;}
._f{width:117.797536pt;}
._a{width:182.829504pt;}
._b{width:309.120000pt;}
._12{width:1481.380448pt;}
._9{width:1519.182368pt;}
.fsc{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs9{font-size:78.080000pt;}
.fs7{font-size:85.440000pt;}
.fsb{font-size:90.560000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.560000pt;}
.fs2{font-size:117.440000pt;}
.fs5{font-size:128.000000pt;}
.fs0{font-size:149.440000pt;}
.fs8{font-size:170.560000pt;}
.fsa{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:17.328267pt;}
.yb{bottom:66.501947pt;}
.y9d{bottom:81.867947pt;}
.y5d{bottom:86.596133pt;}
.y53{bottom:92.199867pt;}
.y3d{bottom:92.809600pt;}
.ya{bottom:98.496587pt;}
.y1e{bottom:102.460400pt;}
.y45{bottom:103.755333pt;}
.y4e{bottom:104.218347pt;}
.y5c{bottom:105.796133pt;}
.y9c{bottom:106.106027pt;}
.y13{bottom:110.112000pt;}
.y7b{bottom:115.716267pt;}
.y40{bottom:125.602800pt;}
.y84{bottom:125.820320pt;}
.y9b{bottom:126.350507pt;}
.y3e{bottom:127.059467pt;}
.y9{bottom:130.491227pt;}
.y72{bottom:132.564400pt;}
.y50{bottom:145.583573pt;}
.y44{bottom:146.474133pt;}
.y69{bottom:147.223307pt;}
.y9a{bottom:150.588587pt;}
.y4d{bottom:150.930107pt;}
.y7a{bottom:154.442107pt;}
.y83{bottom:155.750400pt;}
.y8{bottom:170.477867pt;}
.y99{bottom:170.833067pt;}
.y68{bottom:172.812587pt;}
.y5a{bottom:178.243493pt;}
.y71{bottom:182.804400pt;}
.y30{bottom:183.348587pt;}
.y62{bottom:184.536160pt;}
.y82{bottom:185.680480pt;}
.y43{bottom:189.192933pt;}
.y4f{bottom:192.295333pt;}
.y98{bottom:195.071147pt;}
.y4c{bottom:197.641867pt;}
.y67{bottom:198.401867pt;}
.y1b{bottom:199.044400pt;}
.y3f{bottom:200.281867pt;}
.y79{bottom:201.153867pt;}
.y97{bottom:215.315627pt;}
.y81{bottom:215.610560pt;}
.y2f{bottom:222.074427pt;}
.y61{bottom:223.262000pt;}
.y10{bottom:226.977067pt;}
.y59{bottom:227.521333pt;}
.y42{bottom:231.911733pt;}
.y70{bottom:233.044400pt;}
.y96{bottom:239.553707pt;}
.y1a{bottom:241.284400pt;}
.y80{bottom:245.540640pt;}
.y95{bottom:259.798187pt;}
.y2e{bottom:260.800267pt;}
.y3c{bottom:261.240267pt;}
.y60{bottom:261.982000pt;}
.y6f{bottom:275.284400pt;}
.y24{bottom:275.455227pt;}
.y7f{bottom:275.470720pt;}
.y28{bottom:279.608800pt;}
.y19{bottom:283.524400pt;}
.y94{bottom:284.036267pt;}
.y12{bottom:288.839867pt;}
.y5f{bottom:300.694960pt;}
.y3b{bottom:300.840267pt;}
.y7e{bottom:305.400800pt;}
.y93{bottom:308.274347pt;}
.y2d{bottom:308.400133pt;}
.y4a{bottom:312.689867pt;}
.y27{bottom:321.848800pt;}
.y18{bottom:325.764400pt;}
.y23{bottom:330.182267pt;}
.y11{bottom:331.079867pt;}
.y6e{bottom:331.092400pt;}
.y92{bottom:332.512427pt;}
.y78{bottom:338.279733pt;}
.y7d{bottom:343.800800pt;}
.y91{bottom:352.756907pt;}
.y5e{bottom:355.422000pt;}
.y7{bottom:357.639067pt;}
.y38{bottom:358.504453pt;}
.y58{bottom:367.796400pt;}
.y22{bottom:376.896427pt;}
.y90{bottom:376.994987pt;}
.y17{bottom:384.004400pt;}
.y77{bottom:388.519733pt;}
.y6{bottom:394.679067pt;}
.y37{bottom:397.230293pt;}
.y8f{bottom:397.239467pt;}
.y26{bottom:399.608800pt;}
.y63{bottom:400.854533pt;}
.y49{bottom:402.111653pt;}
.y3a{bottom:406.678933pt;}
.y6c{bottom:409.588400pt;}
.y21{bottom:415.622267pt;}
.y57{bottom:415.796400pt;}
.y8e{bottom:421.477547pt;}
.y76{bottom:430.759733pt;}
.y36{bottom:435.944453pt;}
.y8d{bottom:441.722027pt;}
.y48{bottom:444.830453pt;}
.y6b{bottom:451.828400pt;}
.y66{bottom:459.956933pt;}
.y20{bottom:462.342267pt;}
.y8c{bottom:465.960107pt;}
.y5b{bottom:470.597600pt;}
.y4{bottom:471.772080pt;}
.y35{bottom:474.670293pt;}
.yf{bottom:478.392800pt;}
.y75{bottom:480.999733pt;}
.y25{bottom:486.168800pt;}
.y8b{bottom:486.204587pt;}
.y47{bottom:487.549253pt;}
.y56{bottom:487.796400pt;}
.y29{bottom:501.515733pt;}
.y6a{bottom:502.068400pt;}
.y65{bottom:502.676933pt;}
.y8a{bottom:510.442667pt;}
.y34{bottom:513.396133pt;}
.y3{bottom:516.566720pt;}
.y14{bottom:521.812933pt;}
.y74{bottom:523.239733pt;}
.y46{bottom:530.268053pt;}
.y89{bottom:530.687147pt;}
.y16{bottom:532.356400pt;}
.y39{bottom:535.197067pt;}
.y55{bottom:535.796400pt;}
.y64{bottom:545.396933pt;}
.y33{bottom:552.996133pt;}
.y88{bottom:554.925227pt;}
.y6d{bottom:557.876400pt;}
.y2{bottom:561.361360pt;}
.y52{bottom:566.193333pt;}
.y1f{bottom:568.076667pt;}
.y7c{bottom:568.876267pt;}
.y2a{bottom:569.542853pt;}
.y2b{bottom:569.660293pt;}
.y2c{bottom:569.676667pt;}
.y15{bottom:574.596400pt;}
.y87{bottom:575.169707pt;}
.y41{bottom:582.996400pt;}
.y54{bottom:583.796400pt;}
.y4b{bottom:590.129867pt;}
.y86{bottom:599.407787pt;}
.y32{bottom:603.236133pt;}
.y1{bottom:606.156000pt;}
.y73{bottom:612.531600pt;}
.ye{bottom:614.252027pt;}
.y85{bottom:619.652267pt;}
.y51{bottom:620.995867pt;}
.y1d{bottom:627.060133pt;}
.yd{bottom:659.046667pt;}
.y1c{bottom:659.230000pt;}
.y31{bottom:661.915333pt;}
.y5{bottom:671.635200pt;}
.h15{height:44.760000pt;}
.h9{height:46.625000pt;}
.h6{height:54.136094pt;}
.hb{height:62.244375pt;}
.h14{height:65.974375pt;}
.h4{height:69.890625pt;}
.h2{height:69.937500pt;}
.h5{height:77.630625pt;}
.he{height:78.274219pt;}
.hf{height:79.822500pt;}
.hc{height:85.499531pt;}
.h3{height:85.556875pt;}
.h13{height:92.082500pt;}
.h12{height:92.110660pt;}
.h10{height:92.129220pt;}
.ha{height:93.187500pt;}
.h8{height:93.250000pt;}
.h7{height:94.786000pt;}
.h1{height:108.796406pt;}
.hd{height:124.172344pt;}
.h11{height:219.000000pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4{left:64.968133pt;}
.x2{left:65.944000pt;}
.x1{left:67.433333pt;}
.x2d{left:69.222000pt;}
.x26{left:79.429200pt;}
.x2c{left:82.436000pt;}
.x7{left:92.613067pt;}
.x38{left:98.044667pt;}
.x6{left:99.911867pt;}
.x39{left:103.548667pt;}
.x21{left:104.953333pt;}
.x25{left:106.738533pt;}
.x2a{left:110.368000pt;}
.xa{left:112.922400pt;}
.x20{left:119.865600pt;}
.xf{left:121.967467pt;}
.x29{left:126.516000pt;}
.x3b{left:127.967200pt;}
.x3c{left:129.685733pt;}
.x1f{left:131.352133pt;}
.x1a{left:139.852133pt;}
.x3{left:150.646933pt;}
.x10{left:157.967467pt;}
.x11{left:169.476587pt;}
.x1b{left:177.372133pt;}
.xd{left:183.747467pt;}
.x2e{left:192.252000pt;}
.x3a{left:199.644667pt;}
.x14{left:217.123333pt;}
.x23{left:219.326933pt;}
.x30{left:220.778400pt;}
.x19{left:222.340400pt;}
.x31{left:241.818400pt;}
.x15{left:283.843333pt;}
.x27{left:297.924800pt;}
.x28{left:321.492800pt;}
.x2f{left:328.479200pt;}
.x12{left:342.483333pt;}
.x13{left:360.643333pt;}
.xe{left:363.865600pt;}
.x2b{left:379.716000pt;}
.x24{left:391.263333pt;}
.x16{left:405.878533pt;}
.x1d{left:437.922933pt;}
.x18{left:472.907413pt;}
.x1e{left:475.442933pt;}
.xc{left:533.633200pt;}
.x5{left:543.178693pt;}
.x32{left:687.399467pt;}
.x33{left:724.598587pt;}
.x8{left:747.639333pt;}
.x37{left:793.885200pt;}
.xb{left:831.037467pt;}
.x1c{left:838.597333pt;}
.x22{left:846.157200pt;}
.x34{left:886.122933pt;}
.x35{left:895.318800pt;}
.x9{left:913.115333pt;}
.x36{left:916.913760pt;}
.x17{left:956.143653pt;}
}




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