
    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_4e87723ee712dd77bc5fef84.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e45bfb6420b63669d1199e77.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093000;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_79e1b633d2f1d41bd81c3074.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_6e05c08656080d830f25f887.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_86bb0829de9ac450ee71fabe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_f9e7c6a35c2dea11d3cdc5d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_c95daaf3c680d74cf8665547.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.094727;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_981f13326e7bb925bce64bd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6de207ea988d9d81e49abefe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_4d4a93051c9d54ec9a961e25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_5c9265c14cc00343d86f4032.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.055664;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_2690eb2879cde9cd97556b67.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.055664;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_b273fdee6e41f1e35d529b3b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:39.600000px;}
.v3{vertical-align:79.200000px;}
.v1{vertical-align:111.600000px;}
.lsd{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.457800px;}
.ls14{letter-spacing:-0.383400px;}
.ls16{letter-spacing:-0.332400px;}
.ls12{letter-spacing:-0.310200px;}
.ls17{letter-spacing:-0.291600px;}
.ls9{letter-spacing:-0.189600px;}
.ls11{letter-spacing:-0.168600px;}
.ls15{letter-spacing:-0.150600px;}
.ls8{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.057600px;}
.lsc{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.233280px;}
.lsa{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.305400px;}
.ls13{letter-spacing:0.336600px;}
.ls18{letter-spacing:0.436200px;}
.ls1{letter-spacing:284.662080px;}
.ls4{letter-spacing:570.350496px;}
.ls2{letter-spacing:570.430560px;}
.ls3{letter-spacing:680.510496px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-58.142736px;}
.ws25{word-spacing:-46.944000px;}
.ws27{word-spacing:-46.889280px;}
.ws24{word-spacing:-46.800000px;}
.ws23{word-spacing:-46.742400px;}
.ws22{word-spacing:-46.656000px;}
.ws29{word-spacing:-46.080000px;}
.ws5{word-spacing:-45.966240px;}
.ws31{word-spacing:-39.859800px;}
.ws1f{word-spacing:-38.016000px;}
.ws20{word-spacing:-37.440000px;}
.ws2b{word-spacing:-36.000000px;}
.ws32{word-spacing:-25.413840px;}
.ws4{word-spacing:-24.440544px;}
.ws2f{word-spacing:-22.010904px;}
.ws2e{word-spacing:-21.674304px;}
.ws2c{word-spacing:-21.641760px;}
.ws2d{word-spacing:-21.473160px;}
.ws30{word-spacing:-21.290904px;}
.ws6{word-spacing:-18.567120px;}
.ws7{word-spacing:-18.414720px;}
.ws1d{word-spacing:-16.272000px;}
.ws21{word-spacing:-1.163040px;}
.ws2a{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.372384px;}
.ws1e{word-spacing:-0.372240px;}
.ws26{word-spacing:-0.309120px;}
.ws28{word-spacing:-0.231360px;}
.ws3{word-spacing:-0.126144px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:15.912000px;}
.ws8{word-spacing:263.897280px;}
.ws13{word-spacing:299.221920px;}
.ws18{word-spacing:316.722720px;}
.ws1b{word-spacing:329.862240px;}
.ws17{word-spacing:335.700576px;}
.wsd{word-spacing:335.941920px;}
.wse{word-spacing:360.303744px;}
.ws9{word-spacing:360.639840px;}
.ws11{word-spacing:372.401280px;}
.wsc{word-spacing:426.473280px;}
.ws16{word-spacing:426.515328px;}
.ws10{word-spacing:499.955040px;}
.ws15{word-spacing:529.492800px;}
.wsb{word-spacing:529.493040px;}
.ws12{word-spacing:529.493280px;}
.wsf{word-spacing:529.535328px;}
.ws14{word-spacing:760.719360px;}
.ws1a{word-spacing:1073.017920px;}
.wsa{word-spacing:1089.522840px;}
.ws19{word-spacing:1263.762840px;}
._15{margin-left:-9.074112px;}
._5{margin-left:-3.890592px;}
._4{margin-left:-2.508048px;}
._0{margin-left:-1.166400px;}
._1{width:1.226160px;}
._2{width:2.318400px;}
._17{width:3.796176px;}
._16{width:10.208208px;}
._3{width:40.630080px;}
._14{width:165.446400px;}
._9{width:177.091248px;}
._8{width:243.653760px;}
._d{width:379.054560px;}
._f{width:384.490080px;}
._13{width:390.405168px;}
._a{width:421.601760px;}
._7{width:575.028480px;}
._6{width:592.539888px;}
._10{width:736.475232px;}
._e{width:819.854112px;}
._12{width:976.477008px;}
._c{width:1047.892800px;}
._b{width:1081.202880px;}
._11{width:1223.890608px;}
.fcb{color:rgb(255,192,0);}
.fca{color:rgb(0,176,240);}
.fc9{color:rgb(230,175,0);}
.fc8{color:rgb(68,114,196);}
.fc7{color:rgb(112,173,71);}
.fcc{color:rgb(255,0,0);}
.fc3{color:rgb(106,168,79);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(204,204,204);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:7.200000px;}
.fs1{font-size:59.760000px;}
.fs1a{font-size:59.904000px;}
.fs16{font-size:63.360000px;}
.fs17{font-size:63.504000px;}
.fs11{font-size:66.240000px;}
.fs12{font-size:66.384000px;}
.fs14{font-size:72.000000px;}
.fs18{font-size:77.760000px;}
.fs19{font-size:77.904000px;}
.fs8{font-size:90.000000px;}
.fs1b{font-size:95.760000px;}
.fs1c{font-size:95.904000px;}
.fse{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fsb{font-size:126.144000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fsc{font-size:149.760000px;}
.fsd{font-size:149.904000px;}
.fs10{font-size:167.760000px;}
.fs13{font-size:167.904000px;}
.fs4{font-size:192.240000px;}
.fs5{font-size:192.384000px;}
.fs7{font-size:216.000000px;}
.fs6{font-size:216.144000px;}
.fsa{font-size:247.680000px;}
.fs15{font-size:372.240000px;}
.fs9{font-size:372.384000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.600000px;}
.y85{bottom:7.992000px;}
.y42{bottom:15.444000px;}
.y2{bottom:16.560000px;}
.y1{bottom:17.640000px;}
.y4{bottom:21.456000px;}
.yb2{bottom:21.600000px;}
.y5d{bottom:23.724000px;}
.y84{bottom:31.392000px;}
.y41{bottom:37.044000px;}
.y6c{bottom:38.592000px;}
.yb1{bottom:39.600000px;}
.y3{bottom:39.636000px;}
.ye{bottom:43.704000px;}
.y5c{bottom:46.404000px;}
.y83{bottom:54.828000px;}
.yb0{bottom:57.600000px;}
.y6b{bottom:61.992000px;}
.y5b{bottom:69.120000px;}
.ybf{bottom:70.956000px;}
.y26{bottom:73.656000px;}
.yaf{bottom:75.600000px;}
.y82{bottom:78.228000px;}
.y2f{bottom:79.920000px;}
.y6a{bottom:85.392000px;}
.y5a{bottom:91.800000px;}
.yae{bottom:93.600000px;}
.y81{bottom:101.628000px;}
.y69{bottom:108.792000px;}
.yad{bottom:111.636000px;}
.y59{bottom:114.480000px;}
.y3d{bottom:116.172000px;}
.yd{bottom:116.244000px;}
.y80{bottom:125.028000px;}
.yac{bottom:129.636000px;}
.ybe{bottom:131.256000px;}
.y68{bottom:132.228000px;}
.y25{bottom:133.776000px;}
.y45{bottom:136.404000px;}
.y58{bottom:137.160000px;}
.yab{bottom:147.636000px;}
.y7f{bottom:148.428000px;}
.y15{bottom:148.536000px;}
.y67{bottom:155.625000px;}
.y57{bottom:159.840000px;}
.y1e{bottom:162.255000px;}
.y3c{bottom:164.160000px;}
.yaa{bottom:165.630000px;}
.yc3{bottom:169.950000px;}
.y7e{bottom:171.825000px;}
.y2e{bottom:174.450000px;}
.y40{bottom:176.970000px;}
.y66{bottom:179.025000px;}
.y56{bottom:182.520000px;}
.ya9{bottom:183.630000px;}
.yc{bottom:188.790000px;}
.ybd{bottom:191.730000px;}
.y24{bottom:193.755000px;}
.y7d{bottom:195.225000px;}
.y3b{bottom:197.565000px;}
.ya8{bottom:201.630000px;}
.y65{bottom:202.425000px;}
.y55{bottom:205.200000px;}
.y2d{bottom:207.210000px;}
.y14{bottom:215.535000px;}
.y7c{bottom:218.670000px;}
.ya7{bottom:219.630000px;}
.y64{bottom:225.825000px;}
.y54{bottom:227.910000px;}
.y3a{bottom:231.330000px;}
.ya6{bottom:237.630000px;}
.y7b{bottom:242.070000px;}
.y63{bottom:249.225000px;}
.y53{bottom:250.590000px;}
.ybc{bottom:252.075000px;}
.y23{bottom:253.695000px;}
.yc2{bottom:255.315000px;}
.ya5{bottom:255.630000px;}
.yb{bottom:261.540000px;}
.y7a{bottom:265.470000px;}
.y39{bottom:272.055000px;}
.y62{bottom:272.670000px;}
.y52{bottom:273.270000px;}
.ya4{bottom:273.675000px;}
.y13{bottom:282.315000px;}
.y79{bottom:288.870000px;}
.ya3{bottom:291.675000px;}
.y51{bottom:295.950000px;}
.y61{bottom:296.070000px;}
.y1d{bottom:298.365000px;}
.y44{bottom:309.060000px;}
.ya2{bottom:309.675000px;}
.y78{bottom:312.270000px;}
.y22{bottom:313.815000px;}
.yb7{bottom:315.435000px;}
.y50{bottom:318.630000px;}
.y60{bottom:319.470000px;}
.y38{bottom:319.755000px;}
.ya1{bottom:327.675000px;}
.ya{bottom:334.080000px;}
.y2c{bottom:334.335000px;}
.y77{bottom:335.670000px;}
.yc1{bottom:340.455000px;}
.y4f{bottom:341.310000px;}
.y5f{bottom:342.870000px;}
.yb6{bottom:344.265000px;}
.ya0{bottom:345.675000px;}
.y12{bottom:349.095000px;}
.y76{bottom:359.100000px;}
.y9f{bottom:363.675000px;}
.y4e{bottom:363.990000px;}
.y37{bottom:367.455000px;}
.ybb{bottom:372.885000px;}
.yb5{bottom:373.065000px;}
.y9e{bottom:381.675000px;}
.y75{bottom:382.500000px;}
.y4d{bottom:386.715000px;}
.y3f{bottom:388.545000px;}
.y9d{bottom:399.675000px;}
.yb4{bottom:401.865000px;}
.y74{bottom:405.900000px;}
.y9{bottom:406.650000px;}
.y36{bottom:408.165000px;}
.y4c{bottom:409.395000px;}
.y11{bottom:416.085000px;}
.y9c{bottom:417.675000px;}
.y5e{bottom:420.405000px;}
.y73{bottom:429.300000px;}
.y4b{bottom:432.075000px;}
.yba{bottom:433.185000px;}
.y1c{bottom:434.490000px;}
.y9b{bottom:435.705000px;}
.y1a{bottom:441.465000px;}
.y35{bottom:441.930000px;}
.y72{bottom:452.700000px;}
.y9a{bottom:453.705000px;}
.y4a{bottom:454.755000px;}
.y2b{bottom:461.595000px;}
.y43{bottom:471.270000px;}
.y99{bottom:471.705000px;}
.y20{bottom:471.960000px;}
.y34{bottom:475.665000px;}
.y71{bottom:476.100000px;}
.y21{bottom:476.895000px;}
.y49{bottom:477.435000px;}
.y10{bottom:482.865000px;}
.y98{bottom:489.705000px;}
.yb9{bottom:493.485000px;}
.yc0{bottom:494.205000px;}
.y70{bottom:499.500000px;}
.y48{bottom:500.115000px;}
.y97{bottom:507.705000px;}
.y33{bottom:507.855000px;}
.y19{bottom:515.985000px;}
.y31{bottom:517.755000px;}
.y47{bottom:522.795000px;}
.y6f{bottom:522.930000px;}
.y96{bottom:525.705000px;}
.y29{bottom:527.250000px;}
.y30{bottom:527.655000px;}
.y95{bottom:543.705000px;}
.y46{bottom:545.505000px;}
.y6e{bottom:546.330000px;}
.y32{bottom:547.455000px;}
.yf{bottom:549.690000px;}
.yb8{bottom:554.010000px;}
.y3e{bottom:554.730000px;}
.y94{bottom:561.705000px;}
.y6d{bottom:569.730000px;}
.y1b{bottom:570.600000px;}
.y93{bottom:579.750000px;}
.y1f{bottom:581.580000px;}
.y2a{bottom:588.885000px;}
.y18{bottom:590.550000px;}
.y92{bottom:597.750000px;}
.y8{bottom:606.525000px;}
.y91{bottom:615.750000px;}
.y90{bottom:633.750000px;}
.y7{bottom:649.725000px;}
.y8f{bottom:651.750000px;}
.y17{bottom:665.070000px;}
.y8e{bottom:669.750000px;}
.yc4{bottom:681.660000px;}
.y28{bottom:687.240000px;}
.y8d{bottom:687.750000px;}
.y6{bottom:692.925000px;}
.y8c{bottom:705.750000px;}
.y27{bottom:719.640000px;}
.y8b{bottom:723.750000px;}
.y5{bottom:736.125000px;}
.y16{bottom:739.620000px;}
.y8a{bottom:741.780000px;}
.y89{bottom:759.780000px;}
.y88{bottom:777.780000px;}
.y87{bottom:795.780000px;}
.y86{bottom:813.780000px;}
.h2{height:7.161328px;}
.h1{height:18.180000px;}
.h23{height:49.372031px;}
.h24{height:49.491000px;}
.h1f{height:52.346250px;}
.h20{height:52.465219px;}
.h3{height:59.439023px;}
.h21{height:64.243125px;}
.h22{height:64.362094px;}
.h19{height:69.086250px;}
.h1a{height:69.236437px;}
.h1d{height:71.613281px;}
.h14{height:78.943359px;}
.h15{height:79.048617px;}
.h29{height:85.860422px;}
.h16{height:93.517102px;}
.hc{height:93.867188px;}
.h25{height:95.245664px;}
.h26{height:95.388891px;}
.hb{height:105.257812px;}
.ha{height:105.363070px;}
.h11{height:107.419922px;}
.h12{height:107.563148px;}
.h17{height:108.686250px;}
.hf{height:109.468125px;}
.h10{height:109.573383px;}
.he{height:110.502144px;}
.h1b{height:122.625352px;}
.h1c{height:122.730609px;}
.h4{height:128.592000px;}
.h5{height:128.720592px;}
.h27{height:133.192266px;}
.h28{height:133.306594px;}
.h6{height:140.519180px;}
.h7{height:140.624437px;}
.h13{height:145.069805px;}
.h18{height:148.286250px;}
.h9{height:192.888000px;}
.h8{height:193.016592px;}
.h1e{height:339.110640px;}
.hd{height:339.241824px;}
.h0{height:810.000000px;}
.w1{width:342.930000px;}
.w2{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1d{left:10.799979px;}
.x23{left:22.823979px;}
.xf{left:30.563979px;}
.x1a{left:39.383979px;}
.x1e{left:45.719979px;}
.x21{left:57.419979px;}
.x4{left:59.111979px;}
.x3{left:60.443979px;}
.x20{left:64.799979px;}
.x14{left:74.015979px;}
.xb{left:75.563979px;}
.x24{left:86.111979px;}
.x25{left:113.111979px;}
.x1f{left:118.799979px;}
.x1{left:152.490000px;}
.x1b{left:168.194979px;}
.xc{left:262.364979px;}
.x12{left:383.144979px;}
.x13{left:440.204979px;}
.x22{left:464.939979px;}
.xd{left:544.349979px;}
.x11{left:581.729979px;}
.x10{left:590.189979px;}
.x2{left:671.294979px;}
.x5{left:722.489979px;}
.x15{left:808.739979px;}
.xe{left:852.269979px;}
.x9{left:872.354979px;}
.x6{left:875.774979px;}
.x7{left:902.234979px;}
.x8{left:920.774979px;}
.x26{left:994.829979px;}
.x16{left:1013.039979px;}
.x18{left:1147.889979px;}
.x19{left:1168.049979px;}
.x17{left:1173.089979px;}
.xa{left:1294.124979px;}
.x1c{left:1344.629979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:35.200000pt;}
.v3{vertical-align:70.400000pt;}
.v1{vertical-align:99.200000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls14{letter-spacing:-0.340800pt;}
.ls16{letter-spacing:-0.295467pt;}
.ls12{letter-spacing:-0.275733pt;}
.ls17{letter-spacing:-0.259200pt;}
.ls9{letter-spacing:-0.168533pt;}
.ls11{letter-spacing:-0.149867pt;}
.ls15{letter-spacing:-0.133867pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.051200pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.207360pt;}
.lsa{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.271467pt;}
.ls13{letter-spacing:0.299200pt;}
.ls18{letter-spacing:0.387733pt;}
.ls1{letter-spacing:253.032960pt;}
.ls4{letter-spacing:506.978219pt;}
.ls2{letter-spacing:507.049387pt;}
.ls3{letter-spacing:604.898219pt;}
.ws1{word-spacing:-51.682432pt;}
.ws25{word-spacing:-41.728000pt;}
.ws27{word-spacing:-41.679360pt;}
.ws24{word-spacing:-41.600000pt;}
.ws23{word-spacing:-41.548800pt;}
.ws22{word-spacing:-41.472000pt;}
.ws29{word-spacing:-40.960000pt;}
.ws5{word-spacing:-40.858880pt;}
.ws31{word-spacing:-35.430933pt;}
.ws1f{word-spacing:-33.792000pt;}
.ws20{word-spacing:-33.280000pt;}
.ws2b{word-spacing:-32.000000pt;}
.ws32{word-spacing:-22.590080pt;}
.ws4{word-spacing:-21.724928pt;}
.ws2f{word-spacing:-19.565248pt;}
.ws2e{word-spacing:-19.266048pt;}
.ws2c{word-spacing:-19.237120pt;}
.ws2d{word-spacing:-19.087253pt;}
.ws30{word-spacing:-18.925248pt;}
.ws6{word-spacing:-16.504107pt;}
.ws7{word-spacing:-16.368640pt;}
.ws1d{word-spacing:-14.464000pt;}
.ws21{word-spacing:-1.033813pt;}
.ws2a{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.331008pt;}
.ws1e{word-spacing:-0.330880pt;}
.ws26{word-spacing:-0.274773pt;}
.ws28{word-spacing:-0.205653pt;}
.ws3{word-spacing:-0.112128pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:14.144000pt;}
.ws8{word-spacing:234.575360pt;}
.ws13{word-spacing:265.975040pt;}
.ws18{word-spacing:281.531307pt;}
.ws1b{word-spacing:293.210880pt;}
.ws17{word-spacing:298.400512pt;}
.wsd{word-spacing:298.615040pt;}
.wse{word-spacing:320.269995pt;}
.ws9{word-spacing:320.568747pt;}
.ws11{word-spacing:331.023360pt;}
.wsc{word-spacing:379.087360pt;}
.ws16{word-spacing:379.124736pt;}
.ws10{word-spacing:444.404480pt;}
.ws15{word-spacing:470.660267pt;}
.wsb{word-spacing:470.660480pt;}
.ws12{word-spacing:470.660693pt;}
.wsf{word-spacing:470.698069pt;}
.ws14{word-spacing:676.194987pt;}
.ws1a{word-spacing:953.793707pt;}
.wsa{word-spacing:968.464747pt;}
.ws19{word-spacing:1123.344747pt;}
._15{margin-left:-8.065877pt;}
._5{margin-left:-3.458304pt;}
._4{margin-left:-2.229376pt;}
._0{margin-left:-1.036800pt;}
._1{width:1.089920pt;}
._2{width:2.060800pt;}
._17{width:3.374379pt;}
._16{width:9.073963pt;}
._3{width:36.115627pt;}
._14{width:147.063467pt;}
._9{width:157.414443pt;}
._8{width:216.581120pt;}
._d{width:336.937387pt;}
._f{width:341.768960pt;}
._13{width:347.026816pt;}
._a{width:374.757120pt;}
._7{width:511.136427pt;}
._6{width:526.702123pt;}
._10{width:654.644651pt;}
._e{width:728.759211pt;}
._12{width:867.979563pt;}
._c{width:931.460267pt;}
._b{width:961.069227pt;}
._11{width:1087.902763pt;}
.fs0{font-size:6.400000pt;}
.fs1{font-size:53.120000pt;}
.fs1a{font-size:53.248000pt;}
.fs16{font-size:56.320000pt;}
.fs17{font-size:56.448000pt;}
.fs11{font-size:58.880000pt;}
.fs12{font-size:59.008000pt;}
.fs14{font-size:64.000000pt;}
.fs18{font-size:69.120000pt;}
.fs19{font-size:69.248000pt;}
.fs8{font-size:80.000000pt;}
.fs1b{font-size:85.120000pt;}
.fs1c{font-size:85.248000pt;}
.fse{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fsb{font-size:112.128000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fsc{font-size:133.120000pt;}
.fsd{font-size:133.248000pt;}
.fs10{font-size:149.120000pt;}
.fs13{font-size:149.248000pt;}
.fs4{font-size:170.880000pt;}
.fs5{font-size:171.008000pt;}
.fs7{font-size:192.000000pt;}
.fs6{font-size:192.128000pt;}
.fsa{font-size:220.160000pt;}
.fs15{font-size:330.880000pt;}
.fs9{font-size:331.008000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:3.200000pt;}
.y85{bottom:7.104000pt;}
.y42{bottom:13.728000pt;}
.y2{bottom:14.720000pt;}
.y1{bottom:15.680000pt;}
.y4{bottom:19.072000pt;}
.yb2{bottom:19.200000pt;}
.y5d{bottom:21.088000pt;}
.y84{bottom:27.904000pt;}
.y41{bottom:32.928000pt;}
.y6c{bottom:34.304000pt;}
.yb1{bottom:35.200000pt;}
.y3{bottom:35.232000pt;}
.ye{bottom:38.848000pt;}
.y5c{bottom:41.248000pt;}
.y83{bottom:48.736000pt;}
.yb0{bottom:51.200000pt;}
.y6b{bottom:55.104000pt;}
.y5b{bottom:61.440000pt;}
.ybf{bottom:63.072000pt;}
.y26{bottom:65.472000pt;}
.yaf{bottom:67.200000pt;}
.y82{bottom:69.536000pt;}
.y2f{bottom:71.040000pt;}
.y6a{bottom:75.904000pt;}
.y5a{bottom:81.600000pt;}
.yae{bottom:83.200000pt;}
.y81{bottom:90.336000pt;}
.y69{bottom:96.704000pt;}
.yad{bottom:99.232000pt;}
.y59{bottom:101.760000pt;}
.y3d{bottom:103.264000pt;}
.yd{bottom:103.328000pt;}
.y80{bottom:111.136000pt;}
.yac{bottom:115.232000pt;}
.ybe{bottom:116.672000pt;}
.y68{bottom:117.536000pt;}
.y25{bottom:118.912000pt;}
.y45{bottom:121.248000pt;}
.y58{bottom:121.920000pt;}
.yab{bottom:131.232000pt;}
.y7f{bottom:131.936000pt;}
.y15{bottom:132.032000pt;}
.y67{bottom:138.333333pt;}
.y57{bottom:142.080000pt;}
.y1e{bottom:144.226667pt;}
.y3c{bottom:145.920000pt;}
.yaa{bottom:147.226667pt;}
.yc3{bottom:151.066667pt;}
.y7e{bottom:152.733333pt;}
.y2e{bottom:155.066667pt;}
.y40{bottom:157.306667pt;}
.y66{bottom:159.133333pt;}
.y56{bottom:162.240000pt;}
.ya9{bottom:163.226667pt;}
.yc{bottom:167.813333pt;}
.ybd{bottom:170.426667pt;}
.y24{bottom:172.226667pt;}
.y7d{bottom:173.533333pt;}
.y3b{bottom:175.613333pt;}
.ya8{bottom:179.226667pt;}
.y65{bottom:179.933333pt;}
.y55{bottom:182.400000pt;}
.y2d{bottom:184.186667pt;}
.y14{bottom:191.586667pt;}
.y7c{bottom:194.373333pt;}
.ya7{bottom:195.226667pt;}
.y64{bottom:200.733333pt;}
.y54{bottom:202.586667pt;}
.y3a{bottom:205.626667pt;}
.ya6{bottom:211.226667pt;}
.y7b{bottom:215.173333pt;}
.y63{bottom:221.533333pt;}
.y53{bottom:222.746667pt;}
.ybc{bottom:224.066667pt;}
.y23{bottom:225.506667pt;}
.yc2{bottom:226.946667pt;}
.ya5{bottom:227.226667pt;}
.yb{bottom:232.480000pt;}
.y7a{bottom:235.973333pt;}
.y39{bottom:241.826667pt;}
.y62{bottom:242.373333pt;}
.y52{bottom:242.906667pt;}
.ya4{bottom:243.266667pt;}
.y13{bottom:250.946667pt;}
.y79{bottom:256.773333pt;}
.ya3{bottom:259.266667pt;}
.y51{bottom:263.066667pt;}
.y61{bottom:263.173333pt;}
.y1d{bottom:265.213333pt;}
.y44{bottom:274.720000pt;}
.ya2{bottom:275.266667pt;}
.y78{bottom:277.573333pt;}
.y22{bottom:278.946667pt;}
.yb7{bottom:280.386667pt;}
.y50{bottom:283.226667pt;}
.y60{bottom:283.973333pt;}
.y38{bottom:284.226667pt;}
.ya1{bottom:291.266667pt;}
.ya{bottom:296.960000pt;}
.y2c{bottom:297.186667pt;}
.y77{bottom:298.373333pt;}
.yc1{bottom:302.626667pt;}
.y4f{bottom:303.386667pt;}
.y5f{bottom:304.773333pt;}
.yb6{bottom:306.013333pt;}
.ya0{bottom:307.266667pt;}
.y12{bottom:310.306667pt;}
.y76{bottom:319.200000pt;}
.y9f{bottom:323.266667pt;}
.y4e{bottom:323.546667pt;}
.y37{bottom:326.626667pt;}
.ybb{bottom:331.453333pt;}
.yb5{bottom:331.613333pt;}
.y9e{bottom:339.266667pt;}
.y75{bottom:340.000000pt;}
.y4d{bottom:343.746667pt;}
.y3f{bottom:345.373333pt;}
.y9d{bottom:355.266667pt;}
.yb4{bottom:357.213333pt;}
.y74{bottom:360.800000pt;}
.y9{bottom:361.466667pt;}
.y36{bottom:362.813333pt;}
.y4c{bottom:363.906667pt;}
.y11{bottom:369.853333pt;}
.y9c{bottom:371.266667pt;}
.y5e{bottom:373.693333pt;}
.y73{bottom:381.600000pt;}
.y4b{bottom:384.066667pt;}
.yba{bottom:385.053333pt;}
.y1c{bottom:386.213333pt;}
.y9b{bottom:387.293333pt;}
.y1a{bottom:392.413333pt;}
.y35{bottom:392.826667pt;}
.y72{bottom:402.400000pt;}
.y9a{bottom:403.293333pt;}
.y4a{bottom:404.226667pt;}
.y2b{bottom:410.306667pt;}
.y43{bottom:418.906667pt;}
.y99{bottom:419.293333pt;}
.y20{bottom:419.520000pt;}
.y34{bottom:422.813333pt;}
.y71{bottom:423.200000pt;}
.y21{bottom:423.906667pt;}
.y49{bottom:424.386667pt;}
.y10{bottom:429.213333pt;}
.y98{bottom:435.293333pt;}
.yb9{bottom:438.653333pt;}
.yc0{bottom:439.293333pt;}
.y70{bottom:444.000000pt;}
.y48{bottom:444.546667pt;}
.y97{bottom:451.293333pt;}
.y33{bottom:451.426667pt;}
.y19{bottom:458.653333pt;}
.y31{bottom:460.226667pt;}
.y47{bottom:464.706667pt;}
.y6f{bottom:464.826667pt;}
.y96{bottom:467.293333pt;}
.y29{bottom:468.666667pt;}
.y30{bottom:469.026667pt;}
.y95{bottom:483.293333pt;}
.y46{bottom:484.893333pt;}
.y6e{bottom:485.626667pt;}
.y32{bottom:486.626667pt;}
.yf{bottom:488.613333pt;}
.yb8{bottom:492.453333pt;}
.y3e{bottom:493.093333pt;}
.y94{bottom:499.293333pt;}
.y6d{bottom:506.426667pt;}
.y1b{bottom:507.200000pt;}
.y93{bottom:515.333333pt;}
.y1f{bottom:516.960000pt;}
.y2a{bottom:523.453333pt;}
.y18{bottom:524.933333pt;}
.y92{bottom:531.333333pt;}
.y8{bottom:539.133333pt;}
.y91{bottom:547.333333pt;}
.y90{bottom:563.333333pt;}
.y7{bottom:577.533333pt;}
.y8f{bottom:579.333333pt;}
.y17{bottom:591.173333pt;}
.y8e{bottom:595.333333pt;}
.yc4{bottom:605.920000pt;}
.y28{bottom:610.880000pt;}
.y8d{bottom:611.333333pt;}
.y6{bottom:615.933333pt;}
.y8c{bottom:627.333333pt;}
.y27{bottom:639.680000pt;}
.y8b{bottom:643.333333pt;}
.y5{bottom:654.333333pt;}
.y16{bottom:657.440000pt;}
.y8a{bottom:659.360000pt;}
.y89{bottom:675.360000pt;}
.y88{bottom:691.360000pt;}
.y87{bottom:707.360000pt;}
.y86{bottom:723.360000pt;}
.h2{height:6.365625pt;}
.h1{height:16.160000pt;}
.h23{height:43.886250pt;}
.h24{height:43.992000pt;}
.h1f{height:46.530000pt;}
.h20{height:46.635750pt;}
.h3{height:52.834688pt;}
.h21{height:57.105000pt;}
.h22{height:57.210750pt;}
.h19{height:61.410000pt;}
.h1a{height:61.543500pt;}
.h1d{height:63.656250pt;}
.h14{height:70.171875pt;}
.h15{height:70.265437pt;}
.h29{height:76.320375pt;}
.h16{height:83.126312pt;}
.hc{height:83.437500pt;}
.h25{height:84.662813pt;}
.h26{height:84.790125pt;}
.hb{height:93.562500pt;}
.ha{height:93.656062pt;}
.h11{height:95.484375pt;}
.h12{height:95.611688pt;}
.h17{height:96.610000pt;}
.hf{height:97.305000pt;}
.h10{height:97.398562pt;}
.he{height:98.224128pt;}
.h1b{height:109.000312pt;}
.h1c{height:109.093875pt;}
.h4{height:114.304000pt;}
.h5{height:114.418304pt;}
.h27{height:118.393125pt;}
.h28{height:118.494750pt;}
.h6{height:124.905938pt;}
.h7{height:124.999500pt;}
.h13{height:128.950937pt;}
.h18{height:131.810000pt;}
.h9{height:171.456000pt;}
.h8{height:171.570304pt;}
.h1e{height:301.431680pt;}
.hd{height:301.548288pt;}
.h0{height:720.000000pt;}
.w1{width:304.826667pt;}
.w2{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:9.599981pt;}
.x23{left:20.287981pt;}
.xf{left:27.167981pt;}
.x1a{left:35.007981pt;}
.x1e{left:40.639981pt;}
.x21{left:51.039981pt;}
.x4{left:52.543981pt;}
.x3{left:53.727981pt;}
.x20{left:57.599981pt;}
.x14{left:65.791981pt;}
.xb{left:67.167981pt;}
.x24{left:76.543981pt;}
.x25{left:100.543981pt;}
.x1f{left:105.599981pt;}
.x1{left:135.546667pt;}
.x1b{left:149.506648pt;}
.xc{left:233.213314pt;}
.x12{left:340.573314pt;}
.x13{left:391.293314pt;}
.x22{left:413.279981pt;}
.xd{left:483.866648pt;}
.x11{left:517.093314pt;}
.x10{left:524.613314pt;}
.x2{left:596.706648pt;}
.x5{left:642.213314pt;}
.x15{left:718.879981pt;}
.xe{left:757.573314pt;}
.x9{left:775.426648pt;}
.x6{left:778.466648pt;}
.x7{left:801.986648pt;}
.x8{left:818.466648pt;}
.x26{left:884.293314pt;}
.x16{left:900.479981pt;}
.x18{left:1020.346648pt;}
.x19{left:1038.266648pt;}
.x17{left:1042.746648pt;}
.xa{left:1150.333314pt;}
.x1c{left:1195.226648pt;}
}




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