
    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_7a21865493d67a2a7f6daa3e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_082fd73dfefa2fca08abb0cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.016000;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_33207bde88e6528bc037f81e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.057129;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_e0b1a29075c632642256e9c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_081ca389bf2fdbe42bc75350.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.865000;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_8b063d776e9eb98540add116.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.755000;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_e947410b18926bc4459bebdc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.668000;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_9821c205077141e7e2c278be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.954000;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_c7bf9c1af153b1e1d8bb71d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892000;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_4ebaf04e4bdf33a2c34477bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_64eac67b581dac333a33ffac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.706055;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_fe03aa0b5e7adcbbc66ae390.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683594;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);}
.v2{vertical-align:-93.424320px;}
.v1{vertical-align:-69.357600px;}
.v10{vertical-align:-67.500000px;}
.v6{vertical-align:-65.835360px;}
.ve{vertical-align:-61.500000px;}
.v5{vertical-align:-48.000000px;}
.v3{vertical-align:-39.256878px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.132040px;}
.v4{vertical-align:39.256878px;}
.vf{vertical-align:61.500000px;}
.v7{vertical-align:65.835360px;}
.vc{vertical-align:67.592520px;}
.vb{vertical-align:79.920000px;}
.v11{vertical-align:107.622600px;}
.v9{vertical-align:110.952168px;}
.vd{vertical-align:147.512520px;}
.v8{vertical-align:185.657160px;}
.ls1{letter-spacing:-12.936000px;}
.ls18{letter-spacing:-10.854000px;}
.ls2{letter-spacing:-10.800000px;}
.ls1c{letter-spacing:-10.798920px;}
.ls16{letter-spacing:-10.584000px;}
.ls19{letter-spacing:-6.232800px;}
.ls5{letter-spacing:-0.033600px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000003px;}
.ls4{letter-spacing:0.000009px;}
.ls6{letter-spacing:0.016800px;}
.ls17{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.038400px;}
.ls12{letter-spacing:3.437880px;}
.ls10{letter-spacing:12.666660px;}
.ls14{letter-spacing:13.666680px;}
.ls7{letter-spacing:16.622520px;}
.ls13{letter-spacing:19.610040px;}
.lsd{letter-spacing:58.520688px;}
.lsb{letter-spacing:58.520748px;}
.lsa{letter-spacing:58.520755px;}
.lsf{letter-spacing:71.928000px;}
.lsc{letter-spacing:73.150805px;}
.ls11{letter-spacing:75.924000px;}
.ls1b{letter-spacing:77.063995px;}
.ls1a{letter-spacing:77.064004px;}
.ls9{letter-spacing:99.485540px;}
.lse{letter-spacing:103.356000px;}
.ls8{letter-spacing:164.794579px;}
.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;}
}
.ws8{word-spacing:-150.120000px;}
.ws18{word-spacing:-69.000000px;}
.ws1d{word-spacing:-63.000000px;}
.ws17{word-spacing:-62.100000px;}
.ws16{word-spacing:-48.038400px;}
.ws0{word-spacing:-48.000000px;}
.ws5{word-spacing:-42.000000px;}
.ws7{word-spacing:-41.966400px;}
.ws2{word-spacing:-36.000000px;}
.ws4{word-spacing:-0.277430px;}
.ws19{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.263343px;}
.ws6{word-spacing:-0.252000px;}
.ws14{word-spacing:-0.246000px;}
.ws13{word-spacing:-0.228000px;}
.ws11{word-spacing:-0.216000px;}
.ws3{word-spacing:-0.196976px;}
.ws9{word-spacing:-0.192000px;}
.ws1a{word-spacing:-0.191700px;}
.ws15{word-spacing:-0.174660px;}
.ws12{word-spacing:-0.153360px;}
.wsa{word-spacing:-0.136320px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:58.257057px;}
.wsd{word-spacing:72.887596px;}
.wsc{word-spacing:72.963937px;}
.wse{word-spacing:72.963967px;}
.wsf{word-spacing:72.963987px;}
.ws1c{word-spacing:92.106685px;}
.ws1b{word-spacing:7995.180120px;}
._1f{margin-left:-29.700000px;}
._5{margin-left:-24.825600px;}
._14{margin-left:-23.083200px;}
._6{margin-left:-21.890400px;}
._21{margin-left:-20.065200px;}
._3{margin-left:-17.798400px;}
._d{margin-left:-15.290400px;}
._2{margin-left:-14.112000px;}
._1{margin-left:-12.722400px;}
._b{margin-left:-11.715000px;}
._7{margin-left:-10.598400px;}
._c{margin-left:-9.248400px;}
._1e{margin-left:-8.038080px;}
._0{margin-left:-6.468000px;}
._9{margin-left:-5.133600px;}
._4{margin-left:-4.072800px;}
._17{margin-left:-2.263200px;}
._8{margin-left:-1.005600px;}
._a{width:1.001400px;}
._16{width:2.726400px;}
._13{width:3.742581px;}
._15{width:10.666680px;}
._1c{width:12.666660px;}
._11{width:15.412815px;}
._12{width:16.950552px;}
._18{width:73.142877px;}
._1a{width:108.189000px;}
._19{width:133.062000px;}
._1d{width:175.810800px;}
._e{width:319.605480px;}
._f{width:561.860400px;}
._10{width:974.389800px;}
._22{width:1348.750920px;}
._20{width:4563.462000px;}
._1b{width:6711.015000px;}
.fc12{color:rgb(74,134,232);}
.fc10{color:rgb(255,0,0);}
.fce{color:rgb(158,38,20);}
.fc11{color:rgb(56,118,29);}
.fcd{color:rgb(0,150,255);}
.fc0{color:rgb(92,134,185);}
.fc2{color:rgb(12,39,201);}
.fc9{color:rgb(1,25,147);}
.fca{color:rgb(4,51,255);}
.fcf{color:rgb(66,66,66);}
.fc1{color:rgb(53,71,97);}
.fc3{color:transparent;}
.fc4{color:rgb(49,72,100);}
.fcb{color:rgb(255,38,0);}
.fc5{color:rgb(0,0,0);}
.fc7{color:rgb(169,169,169);}
.fcc{color:rgb(65,65,65);}
.fc6{color:rgb(0,147,132);}
.fc8{color:rgb(0,144,81);}
.fsb{font-size:136.320000px;}
.fs0{font-size:144.000000px;}
.fse{font-size:153.360000px;}
.fs6{font-size:168.000000px;}
.fs13{font-size:174.660000px;}
.fs14{font-size:180.000000px;}
.fsd{font-size:186.973740px;}
.fs19{font-size:191.700000px;}
.fs3{font-size:192.000000px;}
.fsa{font-size:196.975620px;}
.fs7{font-size:216.000000px;}
.fs16{font-size:226.800000px;}
.fs2{font-size:228.000000px;}
.fsf{font-size:240.000000px;}
.fs12{font-size:246.000000px;}
.fs15{font-size:248.400000px;}
.fs8{font-size:252.000000px;}
.fsc{font-size:263.343300px;}
.fs18{font-size:270.000000px;}
.fs5{font-size:276.000000px;}
.fs9{font-size:277.430460px;}
.fs17{font-size:288.000000px;}
.fs11{font-size:303.852420px;}
.fs10{font-size:529.200000px;}
.fs1a{font-size:534.600000px;}
.fs4{font-size:540.000000px;}
.fs1{font-size:646.800000px;}
.y36{bottom:-0.000105px;}
.y2e{bottom:-0.000075px;}
.y0{bottom:0.000000px;}
.y30{bottom:0.000015px;}
.y35{bottom:0.762795px;}
.y4c{bottom:0.835590px;}
.y7d{bottom:10.819785px;}
.y39{bottom:11.105763px;}
.yf{bottom:14.484375px;}
.ye{bottom:15.234375px;}
.y32{bottom:16.973175px;}
.y22{bottom:17.831895px;}
.y1e{bottom:18.028845px;}
.y57{bottom:19.343805px;}
.y2a{bottom:20.151675px;}
.y54{bottom:20.843805px;}
.y1c{bottom:21.229695px;}
.y20{bottom:23.848500px;}
.y72{bottom:26.719755px;}
.yd{bottom:38.843805px;}
.y2d{bottom:49.376760px;}
.y2f{bottom:49.376850px;}
.y51{bottom:72.160680px;}
.y87{bottom:79.722570px;}
.y6c{bottom:87.840630px;}
.y37{bottom:99.858945px;}
.yb{bottom:107.015715px;}
.y1{bottom:109.382820px;}
.y6{bottom:112.607025px;}
.y43{bottom:119.244135px;}
.y59{bottom:129.679680px;}
.y7c{bottom:132.432465px;}
.y68{bottom:142.697115px;}
.y7b{bottom:143.252265px;}
.y60{bottom:159.408000px;}
.y86{bottom:192.681750px;}
.y82{bottom:195.845850px;}
.y50{bottom:197.448585px;}
.y45{bottom:203.107455px;}
.y44{bottom:217.327485px;}
.y8{bottom:228.679950px;}
.y34{bottom:247.446000px;}
.y33{bottom:248.208900px;}
.y70{bottom:248.848050px;}
.y49{bottom:253.013250px;}
.yc{bottom:256.079400px;}
.y5e{bottom:262.111650px;}
.y7a{bottom:277.127250px;}
.y67{bottom:279.244050px;}
.y13{bottom:279.840000px;}
.y74{bottom:280.568100px;}
.y24{bottom:297.937350px;}
.y7{bottom:312.679950px;}
.y71{bottom:319.591500px;}
.y17{bottom:338.269050px;}
.y5d{bottom:349.575600px;}
.y88{bottom:350.821350px;}
.y66{bottom:370.744050px;}
.y12{bottom:379.453800px;}
.y23{bottom:381.937350px;}
.y16{bottom:393.769050px;}
.y31{bottom:400.379850px;}
.y5c{bottom:400.575600px;}
.y85{bottom:440.547000px;}
.y5{bottom:441.797400px;}
.y56{bottom:444.389850px;}
.y65{bottom:462.244050px;}
.y6a{bottom:504.047850px;}
.y6e{bottom:525.360600px;}
.y4{bottom:528.293550px;}
.y5b{bottom:537.201450px;}
.y64{bottom:553.744050px;}
.y81{bottom:558.238800px;}
.y2c{bottom:561.663900px;}
.y4b{bottom:572.016750px;}
.y4a{bottom:572.852250px;}
.y52{bottom:574.530600px;}
.y80{bottom:582.152400px;}
.y2b{bottom:611.040750px;}
.y6d{bottom:616.860600px;}
.y11{bottom:621.159300px;}
.y1f{bottom:624.222450px;}
.y1b{bottom:626.598600px;}
.y1d{bottom:629.799450px;}
.y21{bottom:629.996400px;}
.y69{bottom:642.196500px;}
.y53{bottom:645.274050px;}
.y41{bottom:646.821150px;}
.y1a{bottom:647.828250px;}
.y79{bottom:649.881900px;}
.y3{bottom:653.206200px;}
.y83{bottom:714.395550px;}
.y19{bottom:731.828250px;}
.y78{bottom:741.381900px;}
.y29{bottom:766.282950px;}
.y62{bottom:768.651750px;}
.y28{bottom:786.434700px;}
.y48{bottom:796.927800px;}
.y77{bottom:832.881900px;}
.y84{bottom:834.530700px;}
.y10{bottom:843.273000px;}
.y5a{bottom:849.284700px;}
.y61{bottom:849.651750px;}
.y2{bottom:857.206200px;}
.y47{bottom:888.427800px;}
.y18{bottom:889.162500px;}
.y55{bottom:903.721200px;}
.y40{bottom:907.606050px;}
.y6b{bottom:925.201350px;}
.y27{bottom:934.886700px;}
.y76{bottom:976.248150px;}
.y75{bottom:977.083650px;}
.y7f{bottom:979.136700px;}
.y15{bottom:979.886700px;}
.y6f{bottom:1021.066950px;}
.y26{bottom:1026.386700px;}
.ya{bottom:1065.386700px;}
.y5f{bottom:1069.886700px;}
.y7e{bottom:1070.636700px;}
.y14{bottom:1071.386700px;}
.y3a{bottom:1084.136700px;}
.y58{bottom:1101.386700px;}
.y3e{bottom:1143.027390px;}
.y3d{bottom:1159.925520px;}
.y42{bottom:1161.001920px;}
.y3f{bottom:1168.390950px;}
.y4f{bottom:1175.027415px;}
.y25{bottom:1222.801905px;}
.y63{bottom:1324.441350px;}
.y73{bottom:1325.566950px;}
.y9{bottom:1333.604700px;}
.y46{bottom:1334.232600px;}
.y4e{bottom:1362.306150px;}
.y3c{bottom:1374.880950px;}
.y4d{bottom:1446.306150px;}
.y3b{bottom:1464.716850px;}
.y38{bottom:1520.217000px;}
.h1d{height:30.586710px;}
.h1b{height:47.787390px;}
.he{height:48.418545px;}
.h27{height:53.022240px;}
.h32{height:58.537830px;}
.h1a{height:61.478160px;}
.hc{height:63.943560px;}
.h15{height:64.656705px;}
.h13{height:65.446740px;}
.ha{height:67.144410px;}
.hd{height:70.734360px;}
.h1{height:112.289062px;}
.h7{height:116.648438px;}
.h16{height:123.968865px;}
.h2a{height:130.166016px;}
.h11{height:132.096000px;}
.h9{height:133.312500px;}
.h18{height:140.296155px;}
.h4{height:149.718750px;}
.h23{height:149.976562px;}
.h1f{height:151.148040px;}
.h22{height:156.864000px;}
.h25{height:164.880000px;}
.h24{height:165.120000px;}
.h2b{height:168.433594px;}
.h29{height:169.248000px;}
.h12{height:174.972656px;}
.h3{height:177.791016px;}
.hf{height:181.162090px;}
.h14{height:181.180190px;}
.h20{height:185.431680px;}
.h30{height:185.760000px;}
.h1c{height:190.594726px;}
.hb{height:190.872156px;}
.h2c{height:193.698633px;}
.h2f{height:194.688000px;}
.h8{height:196.505859px;}
.h10{height:197.820000px;}
.h28{height:208.746613px;}
.h6{height:215.220703px;}
.h1e{height:227.600605px;}
.h2e{height:235.277134px;}
.h21{height:253.024200px;}
.h17{height:366.574007px;}
.h19{height:366.837350px;}
.h26{height:386.316000px;}
.h5{height:394.200000px;}
.h31{height:416.873145px;}
.h2d{height:421.083984px;}
.h2{height:472.164000px;}
.h0{height:1620.000000px;}
.wc{width:25.454250px;}
.wb{width:32.390010px;}
.wd{width:39.728700px;}
.w5{width:43.414035px;}
.w2{width:76.606875px;}
.w1{width:80.144115px;}
.w3{width:138.153435px;}
.w4{width:242.730450px;}
.w8{width:264.211050px;}
.w9{width:305.151750px;}
.we{width:307.431450px;}
.w7{width:315.234150px;}
.w6{width:324.780300px;}
.wa{width:611.164800px;}
.w0{width:2880.000000px;}
.x17{left:-3.329250px;}
.x13{left:-1.179150px;}
.x0{left:0.000000px;}
.x23{left:1.316700px;}
.xc{left:8.511070px;}
.x57{left:21.126825px;}
.x3c{left:33.953010px;}
.x2{left:40.718655px;}
.x52{left:43.315650px;}
.x34{left:56.343675px;}
.x45{left:77.103495px;}
.x8{left:85.500000px;}
.x1{left:87.811065px;}
.x35{left:106.910865px;}
.x22{left:160.335750px;}
.x24{left:161.652450px;}
.x1e{left:163.429950px;}
.x1b{left:164.615100px;}
.x3f{left:174.593250px;}
.x10{left:186.258000px;}
.x12{left:187.437150px;}
.x1f{left:188.499900px;}
.x21{left:212.849850px;}
.x4e{left:245.033550px;}
.x3d{left:248.638200px;}
.x28{left:250.794750px;}
.x11{left:270.043380px;}
.x14{left:302.375700px;}
.x47{left:325.957500px;}
.x15{left:414.123900px;}
.x1d{left:427.641000px;}
.x58{left:484.116300px;}
.x59{left:488.979600px;}
.x1a{left:491.732550px;}
.x20{left:551.881050px;}
.x6{left:574.839900px;}
.x25{left:579.361950px;}
.x16{left:588.239100px;}
.x1c{left:617.157600px;}
.x51{left:672.787050px;}
.x54{left:703.832700px;}
.x36{left:721.048950px;}
.x18{left:862.087950px;}
.x3{left:929.308650px;}
.x7{left:1025.648400px;}
.x4f{left:1060.632600px;}
.x50{left:1066.158300px;}
.x4{left:1226.226600px;}
.xb{left:1279.107450px;}
.x5a{left:1311.903150px;}
.x26{left:1363.257600px;}
.x4b{left:1413.242400px;}
.x30{left:1485.304650px;}
.x29{left:1494.699900px;}
.x4c{left:1501.308000px;}
.x38{left:1510.873500px;}
.x37{left:1521.573000px;}
.x4d{left:1548.904500px;}
.x3e{left:1558.692000px;}
.x9{left:1581.466500px;}
.x40{left:1710.240000px;}
.x19{left:1769.952000px;}
.x55{left:1876.113000px;}
.x27{left:1886.530500px;}
.x2d{left:1889.181000px;}
.x42{left:1898.934000px;}
.x3b{left:1941.877500px;}
.x41{left:1952.742000px;}
.xd{left:1957.677000px;}
.x48{left:1967.386500px;}
.xf{left:2061.078000px;}
.x31{left:2140.416000px;}
.x33{left:2142.630000px;}
.x32{left:2154.854154px;}
.x49{left:2160.555000px;}
.x5{left:2162.268000px;}
.x3a{left:2178.838500px;}
.x39{left:2196.672000px;}
.x2e{left:2215.644000px;}
.x56{left:2234.370000px;}
.x46{left:2304.975000px;}
.x43{left:2306.538000px;}
.x4a{left:2308.842000px;}
.x2f{left:2312.487000px;}
.x53{left:2377.672500px;}
.xe{left:2396.938500px;}
.x2a{left:2557.809000px;}
.x2b{left:2608.785000px;}
.x2c{left:2635.785000px;}
.x44{left:2824.458000px;}
.xa{left:2834.958000px;}
@media print{
.v2{vertical-align:-83.043840pt;}
.v1{vertical-align:-61.651200pt;}
.v10{vertical-align:-60.000000pt;}
.v6{vertical-align:-58.520320pt;}
.ve{vertical-align:-54.666667pt;}
.v5{vertical-align:-42.666667pt;}
.v3{vertical-align:-34.895003pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:4.561813pt;}
.v4{vertical-align:34.895003pt;}
.vf{vertical-align:54.666667pt;}
.v7{vertical-align:58.520320pt;}
.vc{vertical-align:60.082240pt;}
.vb{vertical-align:71.040000pt;}
.v11{vertical-align:95.664533pt;}
.v9{vertical-align:98.624149pt;}
.vd{vertical-align:131.122240pt;}
.v8{vertical-align:165.028587pt;}
.ls1{letter-spacing:-11.498667pt;}
.ls18{letter-spacing:-9.648000pt;}
.ls2{letter-spacing:-9.600000pt;}
.ls1c{letter-spacing:-9.599040pt;}
.ls16{letter-spacing:-9.408000pt;}
.ls19{letter-spacing:-5.540267pt;}
.ls5{letter-spacing:-0.029867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000003pt;}
.ls4{letter-spacing:0.000008pt;}
.ls6{letter-spacing:0.014933pt;}
.ls17{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.034133pt;}
.ls12{letter-spacing:3.055893pt;}
.ls10{letter-spacing:11.259253pt;}
.ls14{letter-spacing:12.148160pt;}
.ls7{letter-spacing:14.775573pt;}
.ls13{letter-spacing:17.431147pt;}
.lsd{letter-spacing:52.018389pt;}
.lsb{letter-spacing:52.018443pt;}
.lsa{letter-spacing:52.018449pt;}
.lsf{letter-spacing:63.936000pt;}
.lsc{letter-spacing:65.022938pt;}
.ls11{letter-spacing:67.488000pt;}
.ls1b{letter-spacing:68.501329pt;}
.ls1a{letter-spacing:68.501337pt;}
.ls9{letter-spacing:88.431591pt;}
.lse{letter-spacing:91.872000pt;}
.ls8{letter-spacing:146.484071pt;}
.ws8{word-spacing:-133.440000pt;}
.ws18{word-spacing:-61.333333pt;}
.ws1d{word-spacing:-56.000000pt;}
.ws17{word-spacing:-55.200000pt;}
.ws16{word-spacing:-42.700800pt;}
.ws0{word-spacing:-42.666667pt;}
.ws5{word-spacing:-37.333333pt;}
.ws7{word-spacing:-37.303467pt;}
.ws2{word-spacing:-32.000000pt;}
.ws4{word-spacing:-0.246605pt;}
.ws19{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.234083pt;}
.ws6{word-spacing:-0.224000pt;}
.ws14{word-spacing:-0.218667pt;}
.ws13{word-spacing:-0.202667pt;}
.ws11{word-spacing:-0.192000pt;}
.ws3{word-spacing:-0.175089pt;}
.ws9{word-spacing:-0.170667pt;}
.ws1a{word-spacing:-0.170400pt;}
.ws15{word-spacing:-0.155253pt;}
.ws12{word-spacing:-0.136320pt;}
.wsa{word-spacing:-0.121173pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:51.784050pt;}
.wsd{word-spacing:64.788974pt;}
.wsc{word-spacing:64.856832pt;}
.wse{word-spacing:64.856859pt;}
.wsf{word-spacing:64.856877pt;}
.ws1c{word-spacing:81.872608pt;}
.ws1b{word-spacing:7106.826773pt;}
._1f{margin-left:-26.400000pt;}
._5{margin-left:-22.067200pt;}
._14{margin-left:-20.518400pt;}
._6{margin-left:-19.458133pt;}
._21{margin-left:-17.835733pt;}
._3{margin-left:-15.820800pt;}
._d{margin-left:-13.591467pt;}
._2{margin-left:-12.544000pt;}
._1{margin-left:-11.308800pt;}
._b{margin-left:-10.413333pt;}
._7{margin-left:-9.420800pt;}
._c{margin-left:-8.220800pt;}
._1e{margin-left:-7.144960pt;}
._0{margin-left:-5.749333pt;}
._9{margin-left:-4.563200pt;}
._4{margin-left:-3.620267pt;}
._17{margin-left:-2.011733pt;}
._8{margin-left:-0.893867pt;}
._a{width:0.890133pt;}
._16{width:2.423467pt;}
._13{width:3.326739pt;}
._15{width:9.481493pt;}
._1c{width:11.259253pt;}
._11{width:13.700280pt;}
._12{width:15.067157pt;}
._18{width:65.015891pt;}
._1a{width:96.168000pt;}
._19{width:118.277333pt;}
._1d{width:156.276267pt;}
._e{width:284.093760pt;}
._f{width:499.431467pt;}
._10{width:866.124267pt;}
._22{width:1198.889707pt;}
._20{width:4056.410667pt;}
._1b{width:5965.346667pt;}
.fsb{font-size:121.173333pt;}
.fs0{font-size:128.000000pt;}
.fse{font-size:136.320000pt;}
.fs6{font-size:149.333333pt;}
.fs13{font-size:155.253333pt;}
.fs14{font-size:160.000000pt;}
.fsd{font-size:166.198880pt;}
.fs19{font-size:170.400000pt;}
.fs3{font-size:170.666667pt;}
.fsa{font-size:175.089440pt;}
.fs7{font-size:192.000000pt;}
.fs16{font-size:201.600000pt;}
.fs2{font-size:202.666667pt;}
.fsf{font-size:213.333333pt;}
.fs12{font-size:218.666667pt;}
.fs15{font-size:220.800000pt;}
.fs8{font-size:224.000000pt;}
.fsc{font-size:234.082933pt;}
.fs18{font-size:240.000000pt;}
.fs5{font-size:245.333333pt;}
.fs9{font-size:246.604853pt;}
.fs17{font-size:256.000000pt;}
.fs11{font-size:270.091040pt;}
.fs10{font-size:470.400000pt;}
.fs1a{font-size:475.200000pt;}
.fs4{font-size:480.000000pt;}
.fs1{font-size:574.933333pt;}
.y36{bottom:-0.000093pt;}
.y2e{bottom:-0.000067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:0.000013pt;}
.y35{bottom:0.678040pt;}
.y4c{bottom:0.742747pt;}
.y7d{bottom:9.617587pt;}
.y39{bottom:9.871789pt;}
.yf{bottom:12.875000pt;}
.ye{bottom:13.541667pt;}
.y32{bottom:15.087267pt;}
.y22{bottom:15.850573pt;}
.y1e{bottom:16.025640pt;}
.y57{bottom:17.194493pt;}
.y2a{bottom:17.912600pt;}
.y54{bottom:18.527827pt;}
.y1c{bottom:18.870840pt;}
.y20{bottom:21.198667pt;}
.y72{bottom:23.750893pt;}
.yd{bottom:34.527827pt;}
.y2d{bottom:43.890453pt;}
.y2f{bottom:43.890533pt;}
.y51{bottom:64.142827pt;}
.y87{bottom:70.864507pt;}
.y6c{bottom:78.080560pt;}
.y37{bottom:88.763507pt;}
.yb{bottom:95.125080pt;}
.y1{bottom:97.229173pt;}
.y6{bottom:100.095133pt;}
.y43{bottom:105.994787pt;}
.y59{bottom:115.270827pt;}
.y7c{bottom:117.717747pt;}
.y68{bottom:126.841880pt;}
.y7b{bottom:127.335347pt;}
.y60{bottom:141.696000pt;}
.y86{bottom:171.272667pt;}
.y82{bottom:174.085200pt;}
.y50{bottom:175.509853pt;}
.y45{bottom:180.539960pt;}
.y44{bottom:193.179987pt;}
.y8{bottom:203.271067pt;}
.y34{bottom:219.952000pt;}
.y33{bottom:220.630133pt;}
.y70{bottom:221.198267pt;}
.y49{bottom:224.900667pt;}
.yc{bottom:227.626133pt;}
.y5e{bottom:232.988133pt;}
.y7a{bottom:246.335333pt;}
.y67{bottom:248.216933pt;}
.y13{bottom:248.746667pt;}
.y74{bottom:249.393867pt;}
.y24{bottom:264.833200pt;}
.y7{bottom:277.937733pt;}
.y71{bottom:284.081333pt;}
.y17{bottom:300.683600pt;}
.y5d{bottom:310.733867pt;}
.y88{bottom:311.841200pt;}
.y66{bottom:329.550267pt;}
.y12{bottom:337.292267pt;}
.y23{bottom:339.499867pt;}
.y16{bottom:350.016933pt;}
.y31{bottom:355.893200pt;}
.y5c{bottom:356.067200pt;}
.y85{bottom:391.597333pt;}
.y5{bottom:392.708800pt;}
.y56{bottom:395.013200pt;}
.y65{bottom:410.883600pt;}
.y6a{bottom:448.042533pt;}
.y6e{bottom:466.987200pt;}
.y4{bottom:469.594267pt;}
.y5b{bottom:477.512400pt;}
.y64{bottom:492.216933pt;}
.y81{bottom:496.212267pt;}
.y2c{bottom:499.256800pt;}
.y4b{bottom:508.459333pt;}
.y4a{bottom:509.202000pt;}
.y52{bottom:510.693867pt;}
.y80{bottom:517.468800pt;}
.y2b{bottom:543.147333pt;}
.y6d{bottom:548.320533pt;}
.y11{bottom:552.141600pt;}
.y1f{bottom:554.864400pt;}
.y1b{bottom:556.976533pt;}
.y1d{bottom:559.821733pt;}
.y21{bottom:559.996800pt;}
.y69{bottom:570.841333pt;}
.y53{bottom:573.576933pt;}
.y41{bottom:574.952133pt;}
.y1a{bottom:575.847333pt;}
.y79{bottom:577.672800pt;}
.y3{bottom:580.627733pt;}
.y83{bottom:635.018267pt;}
.y19{bottom:650.514000pt;}
.y78{bottom:659.006133pt;}
.y29{bottom:681.140400pt;}
.y62{bottom:683.246000pt;}
.y28{bottom:699.053067pt;}
.y48{bottom:708.380267pt;}
.y77{bottom:740.339467pt;}
.y84{bottom:741.805067pt;}
.y10{bottom:749.576000pt;}
.y5a{bottom:754.919733pt;}
.y61{bottom:755.246000pt;}
.y2{bottom:761.961067pt;}
.y47{bottom:789.713600pt;}
.y18{bottom:790.366667pt;}
.y55{bottom:803.307733pt;}
.y40{bottom:806.760933pt;}
.y6b{bottom:822.401200pt;}
.y27{bottom:831.010400pt;}
.y76{bottom:867.776133pt;}
.y75{bottom:868.518800pt;}
.y7f{bottom:870.343733pt;}
.y15{bottom:871.010400pt;}
.y6f{bottom:907.615067pt;}
.y26{bottom:912.343733pt;}
.ya{bottom:947.010400pt;}
.y5f{bottom:951.010400pt;}
.y7e{bottom:951.677067pt;}
.y14{bottom:952.343733pt;}
.y3a{bottom:963.677067pt;}
.y58{bottom:979.010400pt;}
.y3e{bottom:1016.024347pt;}
.y3d{bottom:1031.044907pt;}
.y42{bottom:1032.001707pt;}
.y3f{bottom:1038.569733pt;}
.y4f{bottom:1044.468813pt;}
.y25{bottom:1086.935027pt;}
.y63{bottom:1177.281200pt;}
.y73{bottom:1178.281733pt;}
.y9{bottom:1185.426400pt;}
.y46{bottom:1185.984533pt;}
.y4e{bottom:1210.938800pt;}
.y3c{bottom:1222.116400pt;}
.y4d{bottom:1285.605467pt;}
.y3b{bottom:1301.970533pt;}
.y38{bottom:1351.304000pt;}
.h1d{height:27.188187pt;}
.h1b{height:42.477680pt;}
.he{height:43.038707pt;}
.h27{height:47.130880pt;}
.h32{height:52.033627pt;}
.h1a{height:54.647253pt;}
.hc{height:56.838720pt;}
.h15{height:57.472627pt;}
.h13{height:58.174880pt;}
.ha{height:59.683920pt;}
.hd{height:62.874987pt;}
.h1{height:99.812500pt;}
.h7{height:103.687500pt;}
.h16{height:110.194547pt;}
.h2a{height:115.703125pt;}
.h11{height:117.418667pt;}
.h9{height:118.500000pt;}
.h18{height:124.707693pt;}
.h4{height:133.083333pt;}
.h23{height:133.312500pt;}
.h1f{height:134.353813pt;}
.h22{height:139.434667pt;}
.h25{height:146.560000pt;}
.h24{height:146.773333pt;}
.h2b{height:149.718750pt;}
.h29{height:150.442667pt;}
.h12{height:155.531250pt;}
.h3{height:158.036458pt;}
.hf{height:161.032969pt;}
.h14{height:161.049058pt;}
.h20{height:164.828160pt;}
.h30{height:165.120000pt;}
.h1c{height:169.417534pt;}
.hb{height:169.664139pt;}
.h2c{height:172.176562pt;}
.h2f{height:173.056000pt;}
.h8{height:174.671875pt;}
.h10{height:175.840000pt;}
.h28{height:185.552544pt;}
.h6{height:191.307292pt;}
.h1e{height:202.311649pt;}
.h2e{height:209.135230pt;}
.h21{height:224.910400pt;}
.h17{height:325.843562pt;}
.h19{height:326.077645pt;}
.h26{height:343.392000pt;}
.h5{height:350.400000pt;}
.h31{height:370.553906pt;}
.h2d{height:374.296875pt;}
.h2{height:419.701333pt;}
.h0{height:1440.000000pt;}
.wc{width:22.626000pt;}
.wb{width:28.791120pt;}
.wd{width:35.314400pt;}
.w5{width:38.590253pt;}
.w2{width:68.095000pt;}
.w1{width:71.239213pt;}
.w3{width:122.803053pt;}
.w4{width:215.760400pt;}
.w8{width:234.854267pt;}
.w9{width:271.246000pt;}
.we{width:273.272400pt;}
.w7{width:280.208133pt;}
.w6{width:288.693600pt;}
.wa{width:543.257600pt;}
.w0{width:2560.000000pt;}
.x17{left:-2.959333pt;}
.x13{left:-1.048133pt;}
.x0{left:0.000000pt;}
.x23{left:1.170400pt;}
.xc{left:7.565396pt;}
.x57{left:18.779400pt;}
.x3c{left:30.180453pt;}
.x2{left:36.194360pt;}
.x52{left:38.502800pt;}
.x34{left:50.083267pt;}
.x45{left:68.536440pt;}
.x8{left:76.000000pt;}
.x1{left:78.054280pt;}
.x35{left:95.031880pt;}
.x22{left:142.520667pt;}
.x24{left:143.691067pt;}
.x1e{left:145.271067pt;}
.x1b{left:146.324533pt;}
.x3f{left:155.194000pt;}
.x10{left:165.562667pt;}
.x12{left:166.610800pt;}
.x1f{left:167.555467pt;}
.x21{left:189.199867pt;}
.x4e{left:217.807600pt;}
.x3d{left:221.011733pt;}
.x28{left:222.928667pt;}
.x11{left:240.038560pt;}
.x14{left:268.778400pt;}
.x47{left:289.740000pt;}
.x15{left:368.110133pt;}
.x1d{left:380.125333pt;}
.x58{left:430.325600pt;}
.x59{left:434.648533pt;}
.x1a{left:437.095600pt;}
.x20{left:490.560933pt;}
.x6{left:510.968800pt;}
.x25{left:514.988400pt;}
.x16{left:522.879200pt;}
.x1c{left:548.584533pt;}
.x51{left:598.032933pt;}
.x54{left:625.629067pt;}
.x36{left:640.932400pt;}
.x18{left:766.300400pt;}
.x3{left:826.052133pt;}
.x7{left:911.687467pt;}
.x4f{left:942.784533pt;}
.x50{left:947.696267pt;}
.x4{left:1089.979200pt;}
.xb{left:1136.984400pt;}
.x5a{left:1166.136133pt;}
.x26{left:1211.784533pt;}
.x4b{left:1256.215467pt;}
.x30{left:1320.270800pt;}
.x29{left:1328.622133pt;}
.x4c{left:1334.496000pt;}
.x38{left:1342.998667pt;}
.x37{left:1352.509333pt;}
.x4d{left:1376.804000pt;}
.x3e{left:1385.504000pt;}
.x9{left:1405.748000pt;}
.x40{left:1520.213333pt;}
.x19{left:1573.290667pt;}
.x55{left:1667.656000pt;}
.x27{left:1676.916000pt;}
.x2d{left:1679.272000pt;}
.x42{left:1687.941333pt;}
.x3b{left:1726.113333pt;}
.x41{left:1735.770667pt;}
.xd{left:1740.157333pt;}
.x48{left:1748.788000pt;}
.xf{left:1832.069333pt;}
.x31{left:1902.592000pt;}
.x33{left:1904.560000pt;}
.x32{left:1915.425915pt;}
.x49{left:1920.493333pt;}
.x5{left:1922.016000pt;}
.x3a{left:1936.745333pt;}
.x39{left:1952.597333pt;}
.x2e{left:1969.461333pt;}
.x56{left:1986.106667pt;}
.x46{left:2048.866667pt;}
.x43{left:2050.256000pt;}
.x4a{left:2052.304000pt;}
.x2f{left:2055.544000pt;}
.x53{left:2113.486667pt;}
.xe{left:2130.612000pt;}
.x2a{left:2273.608000pt;}
.x2b{left:2318.920000pt;}
.x2c{left:2342.920000pt;}
.x44{left:2510.629333pt;}
.xa{left:2519.962667pt;}
}




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