
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_aee3831a6f7720d48729092f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_80083df8ca24e71396c00e02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_0cd9bb3aed57d46c7e3efdf7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_f77c2b333d07d648fed8106d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.046000;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_32dc6bd27aa35a9ac6970364.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.046000;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_04973eb30a5b7db096ff1b14.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_a385028bf96047459eaac949.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.057000;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_da9cba55a972f0de4cdf97bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.057000;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_4262ae14e25fa7e3b3c2908e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.178000;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_51029f7d30afdd02f562b0e4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.178000;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_04da7bbc3ca3a71e16f54f09.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.907000;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_304834fac1626828708b4c6d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.009000;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_d3edf26d607896e8bb22a850.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.907000;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_8003a5836555fa4841387e93.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m6{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.385800px;}
.lsb{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.136800px;}
.ls1b{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.067200px;}
.ls13{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.013680px;}
.ls8{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.256320px;}
.ls11{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378720px;}
.ls1c{letter-spacing:0.406800px;}
.ls1a{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.648000px;}
.ls15{letter-spacing:4.536000px;}
.ls2{letter-spacing:9.447840px;}
.ls1{letter-spacing:13.896000px;}
.lsd{letter-spacing:16.776000px;}
.ls10{letter-spacing:44.136000px;}
.lse{letter-spacing:48.456000px;}
.ls5{letter-spacing:49.936320px;}
.ls7{letter-spacing:75.816000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.790080px;}
.wsf{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.504734px;}
.ws7{word-spacing:-19.051200px;}
.ws10{word-spacing:-19.008000px;}
.ws9{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.432000px;}
.ws5{word-spacing:-17.023680px;}
.wsb{word-spacing:-13.878000px;}
.wsd{word-spacing:-13.842000px;}
.wsc{word-spacing:-13.716000px;}
.wse{word-spacing:-13.590000px;}
.ws4{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.142560px;}
.ws8{word-spacing:0.000000px;}
._14{margin-left:-4.320000px;}
._30{margin-left:-2.448000px;}
._1{margin-left:-1.157760px;}
._2{width:1.127520px;}
._a{width:2.813760px;}
._6{width:4.337280px;}
._7{width:5.784000px;}
._32{width:7.322400px;}
._20{width:9.161760px;}
._1f{width:10.224000px;}
._3{width:12.066240px;}
._4{width:13.258560px;}
._31{width:14.293440px;}
._5{width:15.299040px;}
._25{width:17.136000px;}
._9{width:18.976320px;}
._2d{width:20.952000px;}
._2c{width:21.960000px;}
._b{width:23.912640px;}
._12{width:25.344000px;}
._1e{width:26.424000px;}
._2f{width:27.504000px;}
._28{width:29.592000px;}
._2e{width:30.840480px;}
._38{width:33.168000px;}
._11{width:34.493760px;}
._10{width:35.856000px;}
._39{width:36.864000px;}
._19{width:38.016000px;}
._23{width:39.888000px;}
._24{width:41.148480px;}
._d{width:42.421440px;}
._c{width:43.816320px;}
._e{width:45.072000px;}
._f{width:46.080000px;}
._2a{width:48.240000px;}
._8{width:49.768320px;}
._35{width:63.293760px;}
._34{width:64.296000px;}
._17{width:65.592000px;}
._22{width:67.469760px;}
._21{width:68.688000px;}
._1c{width:72.144000px;}
._1d{width:73.248480px;}
._1b{width:75.149760px;}
._16{width:76.176000px;}
._15{width:77.616000px;}
._33{width:83.165760px;}
._13{width:85.176000px;}
._3a{width:95.688000px;}
._1a{width:100.632000px;}
._26{width:106.104000px;}
._27{width:107.232000px;}
._2b{width:108.528000px;}
._36{width:119.736000px;}
._37{width:120.960000px;}
._18{width:136.416000px;}
._3b{width:154.200000px;}
._29{width:198.000000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fsb{font-size:75.893905px;}
.fsa{font-size:77.760000px;}
.fsd{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y80{bottom:-5.220000px;}
.y0{bottom:0.000000px;}
.y87{bottom:3.420000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y41{bottom:6.660000px;}
.y8b{bottom:9.000000px;}
.y81{bottom:9.540000px;}
.y85{bottom:11.700000px;}
.y78{bottom:12.240000px;}
.yb{bottom:16.740000px;}
.y89{bottom:17.280000px;}
.y83{bottom:19.800000px;}
.y7f{bottom:21.600000px;}
.ya{bottom:24.156000px;}
.y8d{bottom:25.410000px;}
.y8a{bottom:25.560000px;}
.y7{bottom:26.820000px;}
.y84{bottom:28.080000px;}
.y77{bottom:28.620000px;}
.y7b{bottom:29.880000px;}
.y40{bottom:30.450000px;}
.y86{bottom:36.360000px;}
.y7e{bottom:37.980000px;}
.y76{bottom:45.000000px;}
.y7a{bottom:46.260000px;}
.y9{bottom:47.520000px;}
.y3f{bottom:54.210000px;}
.y7d{bottom:54.540000px;}
.y4{bottom:58.320000px;}
.y6{bottom:59.070000px;}
.y79{bottom:62.640000px;}
.y73{bottom:63.000000px;}
.y7c{bottom:70.920000px;}
.y3{bottom:78.156000px;}
.y74{bottom:80.100000px;}
.y2{bottom:98.676000px;}
.ya2{bottom:125.676000px;}
.y71{bottom:128.916000px;}
.y5{bottom:131.220000px;}
.y3d{bottom:145.116000px;}
.ya1{bottom:147.636000px;}
.y70{bottom:150.870000px;}
.y3c{bottom:167.070000px;}
.ya0{bottom:169.590000px;}
.y6f{bottom:172.830000px;}
.y3b{bottom:189.030000px;}
.y9f{bottom:191.550000px;}
.y6e{bottom:194.790000px;}
.y3a{bottom:210.990000px;}
.y9e{bottom:213.330000px;}
.y6d{bottom:216.750000px;}
.y39{bottom:232.950000px;}
.y9d{bottom:235.290000px;}
.y6c{bottom:238.710000px;}
.y38{bottom:254.910000px;}
.y9c{bottom:257.250000px;}
.y6b{bottom:260.670000px;}
.y37{bottom:276.870000px;}
.y9b{bottom:279.210000px;}
.y6a{bottom:282.630000px;}
.y36{bottom:298.830000px;}
.y9a{bottom:301.170000px;}
.y69{bottom:304.590000px;}
.y35{bottom:320.790000px;}
.y99{bottom:323.130000px;}
.y68{bottom:326.370000px;}
.y34{bottom:342.795000px;}
.y98{bottom:345.135000px;}
.y67{bottom:348.375000px;}
.y33{bottom:364.575000px;}
.y97{bottom:367.095000px;}
.y66{bottom:370.335000px;}
.yb2{bottom:380.775000px;}
.y32{bottom:386.535000px;}
.y96{bottom:389.055000px;}
.y65{bottom:392.295000px;}
.yb1{bottom:402.555000px;}
.y31{bottom:408.495000px;}
.y95{bottom:411.015000px;}
.y64{bottom:414.255000px;}
.yb0{bottom:424.515000px;}
.y30{bottom:430.455000px;}
.y94{bottom:432.795000px;}
.y63{bottom:436.215000px;}
.yaf{bottom:446.475000px;}
.y2f{bottom:452.415000px;}
.y93{bottom:454.755000px;}
.y62{bottom:458.175000px;}
.yae{bottom:468.435000px;}
.y2e{bottom:474.375000px;}
.y92{bottom:476.715000px;}
.y61{bottom:480.135000px;}
.yad{bottom:493.275000px;}
.y2d{bottom:496.335000px;}
.y91{bottom:498.675000px;}
.y60{bottom:502.095000px;}
.yac{bottom:515.235000px;}
.y2c{bottom:518.295000px;}
.y90{bottom:520.635000px;}
.y5f{bottom:524.055000px;}
.yab{bottom:537.195000px;}
.y2b{bottom:540.255000px;}
.y8f{bottom:542.595000px;}
.y5e{bottom:545.835000px;}
.yaa{bottom:559.155000px;}
.y2a{bottom:562.215000px;}
.y8e{bottom:564.555000px;}
.y5d{bottom:567.795000px;}
.ya9{bottom:581.115000px;}
.y8c{bottom:582.735000px;}
.y29{bottom:583.995000px;}
.y5c{bottom:589.755000px;}
.y28{bottom:605.985000px;}
.y5b{bottom:611.745000px;}
.y88{bottom:627.405000px;}
.y27{bottom:627.945000px;}
.y5a{bottom:633.705000px;}
.y26{bottom:649.545000px;}
.ya8{bottom:649.905000px;}
.y59{bottom:655.665000px;}
.y25{bottom:671.145000px;}
.ya7{bottom:671.865000px;}
.y82{bottom:672.225000px;}
.y58{bottom:677.625000px;}
.y24{bottom:682.665000px;}
.ya6{bottom:693.645000px;}
.y57{bottom:699.585000px;}
.y23{bottom:702.645000px;}
.ya5{bottom:718.485000px;}
.y56{bottom:721.545000px;}
.y72{bottom:722.265000px;}
.y22{bottom:722.805000px;}
.ya4{bottom:740.445000px;}
.y21{bottom:742.965000px;}
.y55{bottom:743.505000px;}
.ya3{bottom:762.405000px;}
.y20{bottom:762.945000px;}
.y54{bottom:765.285000px;}
.y1f{bottom:783.105000px;}
.y53{bottom:787.245000px;}
.y1e{bottom:803.265000px;}
.y52{bottom:809.205000px;}
.y1d{bottom:823.425000px;}
.y75{bottom:825.045000px;}
.y51{bottom:831.165000px;}
.y1c{bottom:843.405000px;}
.y50{bottom:853.125000px;}
.y1b{bottom:860.685000px;}
.y1a{bottom:869.505000px;}
.y4f{bottom:875.130000px;}
.y19{bottom:888.810000px;}
.y4e{bottom:897.090000px;}
.y18{bottom:901.590000px;}
.y17{bottom:913.470000px;}
.y4d{bottom:919.050000px;}
.y16{bottom:935.430000px;}
.y4c{bottom:941.010000px;}
.y15{bottom:957.390000px;}
.y4b{bottom:962.970000px;}
.y14{bottom:979.350000px;}
.y4a{bottom:984.750000px;}
.y49{bottom:1006.710000px;}
.y13{bottom:1022.370000px;}
.y48{bottom:1028.670000px;}
.y12{bottom:1045.230000px;}
.y47{bottom:1050.630000px;}
.y11{bottom:1068.090000px;}
.y46{bottom:1072.590000px;}
.y45{bottom:1094.550000px;}
.y3e{bottom:1114.710000px;}
.y44{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y43{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y42{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h11{height:15.534000px;}
.h6{height:17.280000px;}
.hf{height:26.097120px;}
.h13{height:29.604960px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h7{height:39.315600px;}
.h9{height:43.657200px;}
.h1d{height:43.920000px;}
.h1e{height:43.956000px;}
.h1c{height:49.320000px;}
.h19{height:52.866000px;}
.h17{height:54.216000px;}
.h3{height:56.436480px;}
.h10{height:62.136000px;}
.h15{height:63.374400px;}
.h12{height:64.848960px;}
.h2{height:65.884219px;}
.h1a{height:66.816000px;}
.hd{height:67.766400px;}
.he{height:70.488000px;}
.h14{height:73.116000px;}
.h16{height:74.300133px;}
.h1f{height:82.470960px;}
.h20{height:86.585445px;}
.h1b{height:102.060000px;}
.h5{height:121.070742px;}
.h18{height:169.590000px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w7{width:49.140000px;}
.w11{width:62.820000px;}
.w10{width:63.180000px;}
.wf{width:73.296000px;}
.wc{width:78.840000px;}
.wd{width:83.736000px;}
.we{width:85.140000px;}
.wb{width:86.760000px;}
.w8{width:113.076000px;}
.wa{width:126.720000px;}
.w4{width:317.415000px;}
.w9{width:410.835000px;}
.w6{width:438.195000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x21{left:8.100000px;}
.x1e{left:9.180000px;}
.x22{left:11.160000px;}
.x1c{left:13.320000px;}
.x1a{left:15.480000px;}
.x2d{left:16.560000px;}
.xe{left:17.640000px;}
.x25{left:19.440000px;}
.x20{left:21.270000px;}
.x1b{left:23.220000px;}
.x23{left:24.330000px;}
.x2a{left:25.380000px;}
.x29{left:27.000000px;}
.xf{left:28.080000px;}
.x13{left:29.514000px;}
.x2c{left:31.500000px;}
.x27{left:36.540000px;}
.x2b{left:41.580000px;}
.x16{left:61.740000px;}
.x6{left:70.740000px;}
.x1{left:80.999987px;}
.x32{left:98.135987px;}
.x5{left:105.165000px;}
.x12{left:123.876000px;}
.x2e{left:127.475987px;}
.xd{left:134.135987px;}
.x2f{left:140.615987px;}
.xa{left:144.215987px;}
.x10{left:146.880000px;}
.x30{left:151.769987px;}
.xb{left:153.389987px;}
.x17{left:156.060000px;}
.x33{left:158.069987px;}
.x31{left:170.849987px;}
.x14{left:173.730000px;}
.x18{left:204.510000px;}
.xc{left:285.914987px;}
.x15{left:287.535000px;}
.x1d{left:375.015000px;}
.x1f{left:454.575000px;}
.x9{left:487.905000px;}
.x24{left:539.205000px;}
.x4{left:554.145000px;}
.x26{left:625.065000px;}
.x19{left:699.090000px;}
.x7{left:720.690000px;}
.x11{left:737.429987px;}
.x28{left:762.990000px;}
.x8{left:786.600000px;}
.x2{left:829.260000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.342933pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.121600pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.059733pt;}
.ls13{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.012160pt;}
.ls8{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.227840pt;}
.ls11{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336640pt;}
.ls1c{letter-spacing:0.361600pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls15{letter-spacing:4.032000pt;}
.ls2{letter-spacing:8.398080pt;}
.ls1{letter-spacing:12.352000pt;}
.lsd{letter-spacing:14.912000pt;}
.ls10{letter-spacing:39.232000pt;}
.lse{letter-spacing:43.072000pt;}
.ls5{letter-spacing:44.387840pt;}
.ls7{letter-spacing:67.392000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1{word-spacing:-19.368960pt;}
.wsf{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.337541pt;}
.ws7{word-spacing:-16.934400pt;}
.ws10{word-spacing:-16.896000pt;}
.ws9{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws5{word-spacing:-15.132160pt;}
.wsb{word-spacing:-12.336000pt;}
.wsd{word-spacing:-12.304000pt;}
.wsc{word-spacing:-12.192000pt;}
.wse{word-spacing:-12.080000pt;}
.ws4{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.126720pt;}
.ws8{word-spacing:0.000000pt;}
._14{margin-left:-3.840000pt;}
._30{margin-left:-2.176000pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.002240pt;}
._a{width:2.501120pt;}
._6{width:3.855360pt;}
._7{width:5.141333pt;}
._32{width:6.508800pt;}
._20{width:8.143787pt;}
._1f{width:9.088000pt;}
._3{width:10.725547pt;}
._4{width:11.785387pt;}
._31{width:12.705280pt;}
._5{width:13.599147pt;}
._25{width:15.232000pt;}
._9{width:16.867840pt;}
._2d{width:18.624000pt;}
._2c{width:19.520000pt;}
._b{width:21.255680pt;}
._12{width:22.528000pt;}
._1e{width:23.488000pt;}
._2f{width:24.448000pt;}
._28{width:26.304000pt;}
._2e{width:27.413760pt;}
._38{width:29.482667pt;}
._11{width:30.661120pt;}
._10{width:31.872000pt;}
._39{width:32.768000pt;}
._19{width:33.792000pt;}
._23{width:35.456000pt;}
._24{width:36.576427pt;}
._d{width:37.707947pt;}
._c{width:38.947840pt;}
._e{width:40.064000pt;}
._f{width:40.960000pt;}
._2a{width:42.880000pt;}
._8{width:44.238507pt;}
._35{width:56.261120pt;}
._34{width:57.152000pt;}
._17{width:58.304000pt;}
._22{width:59.973120pt;}
._21{width:61.056000pt;}
._1c{width:64.128000pt;}
._1d{width:65.109760pt;}
._1b{width:66.799787pt;}
._16{width:67.712000pt;}
._15{width:68.992000pt;}
._33{width:73.925120pt;}
._13{width:75.712000pt;}
._3a{width:85.056000pt;}
._1a{width:89.450667pt;}
._26{width:94.314667pt;}
._27{width:95.317333pt;}
._2b{width:96.469333pt;}
._36{width:106.432000pt;}
._37{width:107.520000pt;}
._18{width:121.258667pt;}
._3b{width:137.066667pt;}
._29{width:176.000000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fsb{font-size:67.461249pt;}
.fsa{font-size:69.120000pt;}
.fsd{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y80{bottom:-4.640000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:3.040000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y41{bottom:5.920000pt;}
.y8b{bottom:8.000000pt;}
.y81{bottom:8.480000pt;}
.y85{bottom:10.400000pt;}
.y78{bottom:10.880000pt;}
.yb{bottom:14.880000pt;}
.y89{bottom:15.360000pt;}
.y83{bottom:17.600000pt;}
.y7f{bottom:19.200000pt;}
.ya{bottom:21.472000pt;}
.y8d{bottom:22.586667pt;}
.y8a{bottom:22.720000pt;}
.y7{bottom:23.840000pt;}
.y84{bottom:24.960000pt;}
.y77{bottom:25.440000pt;}
.y7b{bottom:26.560000pt;}
.y40{bottom:27.066667pt;}
.y86{bottom:32.320000pt;}
.y7e{bottom:33.760000pt;}
.y76{bottom:40.000000pt;}
.y7a{bottom:41.120000pt;}
.y9{bottom:42.240000pt;}
.y3f{bottom:48.186667pt;}
.y7d{bottom:48.480000pt;}
.y4{bottom:51.840000pt;}
.y6{bottom:52.506667pt;}
.y79{bottom:55.680000pt;}
.y73{bottom:56.000000pt;}
.y7c{bottom:63.040000pt;}
.y3{bottom:69.472000pt;}
.y74{bottom:71.200000pt;}
.y2{bottom:87.712000pt;}
.ya2{bottom:111.712000pt;}
.y71{bottom:114.592000pt;}
.y5{bottom:116.640000pt;}
.y3d{bottom:128.992000pt;}
.ya1{bottom:131.232000pt;}
.y70{bottom:134.106667pt;}
.y3c{bottom:148.506667pt;}
.ya0{bottom:150.746667pt;}
.y6f{bottom:153.626667pt;}
.y3b{bottom:168.026667pt;}
.y9f{bottom:170.266667pt;}
.y6e{bottom:173.146667pt;}
.y3a{bottom:187.546667pt;}
.y9e{bottom:189.626667pt;}
.y6d{bottom:192.666667pt;}
.y39{bottom:207.066667pt;}
.y9d{bottom:209.146667pt;}
.y6c{bottom:212.186667pt;}
.y38{bottom:226.586667pt;}
.y9c{bottom:228.666667pt;}
.y6b{bottom:231.706667pt;}
.y37{bottom:246.106667pt;}
.y9b{bottom:248.186667pt;}
.y6a{bottom:251.226667pt;}
.y36{bottom:265.626667pt;}
.y9a{bottom:267.706667pt;}
.y69{bottom:270.746667pt;}
.y35{bottom:285.146667pt;}
.y99{bottom:287.226667pt;}
.y68{bottom:290.106667pt;}
.y34{bottom:304.706667pt;}
.y98{bottom:306.786667pt;}
.y67{bottom:309.666667pt;}
.y33{bottom:324.066667pt;}
.y97{bottom:326.306667pt;}
.y66{bottom:329.186667pt;}
.yb2{bottom:338.466667pt;}
.y32{bottom:343.586667pt;}
.y96{bottom:345.826667pt;}
.y65{bottom:348.706667pt;}
.yb1{bottom:357.826667pt;}
.y31{bottom:363.106667pt;}
.y95{bottom:365.346667pt;}
.y64{bottom:368.226667pt;}
.yb0{bottom:377.346667pt;}
.y30{bottom:382.626667pt;}
.y94{bottom:384.706667pt;}
.y63{bottom:387.746667pt;}
.yaf{bottom:396.866667pt;}
.y2f{bottom:402.146667pt;}
.y93{bottom:404.226667pt;}
.y62{bottom:407.266667pt;}
.yae{bottom:416.386667pt;}
.y2e{bottom:421.666667pt;}
.y92{bottom:423.746667pt;}
.y61{bottom:426.786667pt;}
.yad{bottom:438.466667pt;}
.y2d{bottom:441.186667pt;}
.y91{bottom:443.266667pt;}
.y60{bottom:446.306667pt;}
.yac{bottom:457.986667pt;}
.y2c{bottom:460.706667pt;}
.y90{bottom:462.786667pt;}
.y5f{bottom:465.826667pt;}
.yab{bottom:477.506667pt;}
.y2b{bottom:480.226667pt;}
.y8f{bottom:482.306667pt;}
.y5e{bottom:485.186667pt;}
.yaa{bottom:497.026667pt;}
.y2a{bottom:499.746667pt;}
.y8e{bottom:501.826667pt;}
.y5d{bottom:504.706667pt;}
.ya9{bottom:516.546667pt;}
.y8c{bottom:517.986667pt;}
.y29{bottom:519.106667pt;}
.y5c{bottom:524.226667pt;}
.y28{bottom:538.653333pt;}
.y5b{bottom:543.773333pt;}
.y88{bottom:557.693333pt;}
.y27{bottom:558.173333pt;}
.y5a{bottom:563.293333pt;}
.y26{bottom:577.373333pt;}
.ya8{bottom:577.693333pt;}
.y59{bottom:582.813333pt;}
.y25{bottom:596.573333pt;}
.ya7{bottom:597.213333pt;}
.y82{bottom:597.533333pt;}
.y58{bottom:602.333333pt;}
.y24{bottom:606.813333pt;}
.ya6{bottom:616.573333pt;}
.y57{bottom:621.853333pt;}
.y23{bottom:624.573333pt;}
.ya5{bottom:638.653333pt;}
.y56{bottom:641.373333pt;}
.y72{bottom:642.013333pt;}
.y22{bottom:642.493333pt;}
.ya4{bottom:658.173333pt;}
.y21{bottom:660.413333pt;}
.y55{bottom:660.893333pt;}
.ya3{bottom:677.693333pt;}
.y20{bottom:678.173333pt;}
.y54{bottom:680.253333pt;}
.y1f{bottom:696.093333pt;}
.y53{bottom:699.773333pt;}
.y1e{bottom:714.013333pt;}
.y52{bottom:719.293333pt;}
.y1d{bottom:731.933333pt;}
.y75{bottom:733.373333pt;}
.y51{bottom:738.813333pt;}
.y1c{bottom:749.693333pt;}
.y50{bottom:758.333333pt;}
.y1b{bottom:765.053333pt;}
.y1a{bottom:772.893333pt;}
.y4f{bottom:777.893333pt;}
.y19{bottom:790.053333pt;}
.y4e{bottom:797.413333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:811.973333pt;}
.y4d{bottom:816.933333pt;}
.y16{bottom:831.493333pt;}
.y4c{bottom:836.453333pt;}
.y15{bottom:851.013333pt;}
.y4b{bottom:855.973333pt;}
.y14{bottom:870.533333pt;}
.y4a{bottom:875.333333pt;}
.y49{bottom:894.853333pt;}
.y13{bottom:908.773333pt;}
.y48{bottom:914.373333pt;}
.y12{bottom:929.093333pt;}
.y47{bottom:933.893333pt;}
.y11{bottom:949.413333pt;}
.y46{bottom:953.413333pt;}
.y45{bottom:972.933333pt;}
.y3e{bottom:990.853333pt;}
.y44{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y43{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y42{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h11{height:13.808000pt;}
.h6{height:15.360000pt;}
.hf{height:23.197440pt;}
.h13{height:26.315520pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h7{height:34.947200pt;}
.h9{height:38.806400pt;}
.h1d{height:39.040000pt;}
.h1e{height:39.072000pt;}
.h1c{height:43.840000pt;}
.h19{height:46.992000pt;}
.h17{height:48.192000pt;}
.h3{height:50.165760pt;}
.h10{height:55.232000pt;}
.h15{height:56.332800pt;}
.h12{height:57.643520pt;}
.h2{height:58.563750pt;}
.h1a{height:59.392000pt;}
.hd{height:60.236800pt;}
.he{height:62.656000pt;}
.h14{height:64.992000pt;}
.h16{height:66.044563pt;}
.h1f{height:73.307520pt;}
.h20{height:76.964840pt;}
.h1b{height:90.720000pt;}
.h5{height:107.618438pt;}
.h18{height:150.746667pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w7{width:43.680000pt;}
.w11{width:55.840000pt;}
.w10{width:56.160000pt;}
.wf{width:65.152000pt;}
.wc{width:70.080000pt;}
.wd{width:74.432000pt;}
.we{width:75.680000pt;}
.wb{width:77.120000pt;}
.w8{width:100.512000pt;}
.wa{width:112.640000pt;}
.w4{width:282.146667pt;}
.w9{width:365.186667pt;}
.w6{width:389.506667pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x21{left:7.200000pt;}
.x1e{left:8.160000pt;}
.x22{left:9.920000pt;}
.x1c{left:11.840000pt;}
.x1a{left:13.760000pt;}
.x2d{left:14.720000pt;}
.xe{left:15.680000pt;}
.x25{left:17.280000pt;}
.x20{left:18.906667pt;}
.x1b{left:20.640000pt;}
.x23{left:21.626667pt;}
.x2a{left:22.560000pt;}
.x29{left:24.000000pt;}
.xf{left:24.960000pt;}
.x13{left:26.234667pt;}
.x2c{left:28.000000pt;}
.x27{left:32.480000pt;}
.x2b{left:36.960000pt;}
.x16{left:54.880000pt;}
.x6{left:62.880000pt;}
.x1{left:71.999988pt;}
.x32{left:87.231988pt;}
.x5{left:93.480000pt;}
.x12{left:110.112000pt;}
.x2e{left:113.311988pt;}
.xd{left:119.231988pt;}
.x2f{left:124.991988pt;}
.xa{left:128.191988pt;}
.x10{left:130.560000pt;}
.x30{left:134.906655pt;}
.xb{left:136.346655pt;}
.x17{left:138.720000pt;}
.x33{left:140.506655pt;}
.x31{left:151.866655pt;}
.x14{left:154.426667pt;}
.x18{left:181.786667pt;}
.xc{left:254.146655pt;}
.x15{left:255.586667pt;}
.x1d{left:333.346667pt;}
.x1f{left:404.066667pt;}
.x9{left:433.693333pt;}
.x24{left:479.293333pt;}
.x4{left:492.573333pt;}
.x26{left:555.613333pt;}
.x19{left:621.413333pt;}
.x7{left:640.613333pt;}
.x11{left:655.493322pt;}
.x28{left:678.213333pt;}
.x8{left:699.200000pt;}
.x2{left:737.120000pt;}
}




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