
    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_d401ac32e8cfff6278de5249.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9d4977b01362727624ea03ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975586;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_19bff99b50fb9996ca3da25f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760742;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_c12173e42b77a3fb42dcd12e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_3bd32b8ee220bbb73b3c61b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_44ef7523fa98194ca8f2e3f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f5c634918e121fea7c1c34bf.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-47.700000px;}
.v1{vertical-align:-20.640000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.187800px;}
.ls3{letter-spacing:-0.037680px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.605300px;}
.lsc{letter-spacing:44.947500px;}
.lsb{letter-spacing:45.000000px;}
.lsd{letter-spacing:45.060000px;}
.lsf{letter-spacing:45.127500px;}
.lse{letter-spacing:45.180000px;}
.ls4{letter-spacing:53.887500px;}
.ls7{letter-spacing:53.947500px;}
.ls9{letter-spacing:54.000000px;}
.ls6{letter-spacing:54.067500px;}
.ls5{letter-spacing:54.127500px;}
.ls8{letter-spacing:97.327500px;}
.lsa{letter-spacing:2664.705900px;}
.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:-40.713900px;}
.ws3{word-spacing:-28.049850px;}
.ws5{word-spacing:-28.012500px;}
.ws2{word-spacing:-22.357200px;}
.ws6{word-spacing:-22.320000px;}
.ws4{word-spacing:-22.319520px;}
.ws1{word-spacing:-22.169400px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:124.833450px;}
.ws7{word-spacing:185.356500px;}
._8{margin-left:-4.237050px;}
._4{margin-left:-3.065100px;}
._5{margin-left:-1.171950px;}
._3{width:1.532550px;}
._6{width:2.547600px;}
._7{width:3.712500px;}
._a{width:6.073200px;}
._28{width:14.625900px;}
._25{width:16.320900px;}
._16{width:18.914100px;}
._1d{width:23.338800px;}
._14{width:52.353750px;}
._1a{width:54.507300px;}
._24{width:55.758750px;}
._17{width:81.930900px;}
._26{width:83.670000px;}
._18{width:99.950100px;}
._27{width:102.296400px;}
._d{width:110.713200px;}
._21{width:112.272000px;}
._22{width:114.388200px;}
._1b{width:126.988800px;}
._1f{width:128.938950px;}
._b{width:130.583850px;}
._19{width:166.001400px;}
._13{width:175.510350px;}
._1c{width:205.404000px;}
._10{width:245.670000px;}
._1e{width:275.681400px;}
._9{width:289.470600px;}
._11{width:308.201550px;}
._15{width:319.899150px;}
._20{width:330.043500px;}
._2{width:378.114900px;}
._1{width:406.463100px;}
._12{width:440.624100px;}
._0{width:495.228300px;}
._23{width:577.651500px;}
._f{width:817.050000px;}
._c{width:991.708800px;}
._e{width:1130.460000px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:9.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:90.150000px;}
.fs17{font-size:94.500000px;}
.fs16{font-size:94.650000px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:108.150000px;}
.fs4{font-size:112.500000px;}
.fs5{font-size:112.650000px;}
.fse{font-size:121.500000px;}
.fsb{font-size:121.650000px;}
.fs13{font-size:139.500000px;}
.fs11{font-size:139.650000px;}
.fs19{font-size:144.000000px;}
.fs1a{font-size:144.150000px;}
.fsf{font-size:148.500000px;}
.fsa{font-size:148.650000px;}
.fs1{font-size:153.150000px;}
.fs1c{font-size:157.650000px;}
.fs7{font-size:175.650000px;}
.fs1f{font-size:180.150000px;}
.fs15{font-size:202.650000px;}
.fs1d{font-size:238.800000px;}
.fs12{font-size:256.650000px;}
.fs10{font-size:256.800000px;}
.fs18{font-size:301.650000px;}
.fs6{font-size:301.800000px;}
.fs14{font-size:306.300000px;}
.fsc{font-size:310.650000px;}
.fsd{font-size:310.800000px;}
.fs1b{font-size:391.800000px;}
.fs0{font-size:414.300000px;}
.y0{bottom:0.000000px;}
.y25{bottom:43.012500px;}
.y6d{bottom:55.800000px;}
.yb8{bottom:74.887500px;}
.y66{bottom:88.462500px;}
.y4c{bottom:97.650000px;}
.yb7{bottom:106.425000px;}
.y65{bottom:121.125000px;}
.yb3{bottom:129.712500px;}
.yb6{bottom:137.962500px;}
.y4b{bottom:140.437500px;}
.y31{bottom:140.700000px;}
.y8f{bottom:146.100000px;}
.y5{bottom:152.850000px;}
.y64{bottom:154.905000px;}
.y7d{bottom:155.595000px;}
.yb2{bottom:161.250000px;}
.y4d{bottom:168.300000px;}
.yab{bottom:168.900000px;}
.yb5{bottom:169.500000px;}
.y8e{bottom:179.880000px;}
.y30{bottom:181.245000px;}
.y4a{bottom:182.100000px;}
.y63{bottom:187.545000px;}
.yb1{bottom:192.750000px;}
.y18{bottom:195.570000px;}
.yaa{bottom:200.445000px;}
.yb4{bottom:201.000000px;}
.y7c{bottom:206.295000px;}
.y4{bottom:210.255000px;}
.yc5{bottom:211.650000px;}
.y8d{bottom:212.550000px;}
.y62{bottom:220.200000px;}
.y2c{bottom:220.320000px;}
.y2f{bottom:221.775000px;}
.yb0{bottom:224.295000px;}
.y49{bottom:224.550000px;}
.ya9{bottom:231.975000px;}
.y17{bottom:240.600000px;}
.y54{bottom:249.450000px;}
.y2b{bottom:252.975000px;}
.y61{bottom:253.995000px;}
.yaf{bottom:255.825000px;}
.y2e{bottom:262.320000px;}
.ya8{bottom:263.475000px;}
.y3{bottom:266.550000px;}
.y4e{bottom:275.025000px;}
.y16{bottom:285.630000px;}
.y60{bottom:286.650000px;}
.yae{bottom:287.370000px;}
.y72{bottom:287.595000px;}
.ya7{bottom:295.005000px;}
.y53{bottom:296.730000px;}
.y6c{bottom:298.575000px;}
.y2d{bottom:302.850000px;}
.y47{bottom:305.955000px;}
.yad{bottom:318.870000px;}
.y71{bottom:323.625000px;}
.y2{bottom:324.000000px;}
.ya6{bottom:326.550000px;}
.y56{bottom:328.725000px;}
.y15{bottom:330.705000px;}
.y59{bottom:331.245000px;}
.yc2{bottom:332.100000px;}
.y89{bottom:343.575000px;}
.y52{bottom:345.150000px;}
.y46{bottom:348.795000px;}
.yac{bottom:350.400000px;}
.y79{bottom:351.300000px;}
.ya5{bottom:358.095000px;}
.y70{bottom:359.670000px;}
.y6b{bottom:365.025000px;}
.y48{bottom:376.155000px;}
.y88{bottom:377.370000px;}
.y55{bottom:382.755000px;}
.y58{bottom:384.150000px;}
.ya4{bottom:389.625000px;}
.y45{bottom:390.450000px;}
.y6f{bottom:395.700000px;}
.y6a{bottom:397.695000px;}
.y78{bottom:401.970000px;}
.ya{bottom:402.195000px;}
.y13{bottom:402.375000px;}
.y87{bottom:410.025000px;}
.ya3{bottom:421.125000px;}
.y69{bottom:430.350000px;}
.y44{bottom:432.375000px;}
.y50{bottom:436.425000px;}
.y9{bottom:437.100000px;}
.y12{bottom:437.295000px;}
.y24{bottom:447.630000px;}
.ya2{bottom:452.655000px;}
.y74{bottom:460.650000px;}
.y68{bottom:464.100000px;}
.yc4{bottom:468.075000px;}
.y8{bottom:472.020000px;}
.y11{bottom:472.200000px;}
.ya1{bottom:484.200000px;}
.y4f{bottom:484.830000px;}
.ybd{bottom:485.655000px;}
.y2a{bottom:486.375000px;}
.y23{bottom:488.175000px;}
.y67{bottom:496.755000px;}
.y7{bottom:505.800000px;}
.y10{bottom:505.995000px;}
.y42{bottom:514.320000px;}
.y73{bottom:514.695000px;}
.ya0{bottom:515.745000px;}
.y80{bottom:520.920000px;}
.y29{bottom:526.905000px;}
.y22{bottom:528.705000px;}
.y38{bottom:533.880000px;}
.y5e{bottom:540.375000px;}
.y6{bottom:540.705000px;}
.yf{bottom:540.900000px;}
.y9a{bottom:544.770000px;}
.y99{bottom:545.880000px;}
.y9f{bottom:547.275000px;}
.y1{bottom:550.920000px;}
.y41{bottom:557.100000px;}
.y28{bottom:567.450000px;}
.y21{bottom:569.250000px;}
.yc{bottom:571.695000px;}
.ye{bottom:571.875000px;}
.y57{bottom:573.825000px;}
.y5b{bottom:574.995000px;}
.y8c{bottom:578.070000px;}
.y5a{bottom:578.175000px;}
.y9e{bottom:578.775000px;}
.y7f{bottom:580.575000px;}
.y43{bottom:584.100000px;}
.y7b{bottom:584.400000px;}
.yc3{bottom:589.995000px;}
.y5d{bottom:594.450000px;}
.y40{bottom:598.770000px;}
.y27{bottom:607.980000px;}
.y20{bottom:609.780000px;}
.y9d{bottom:610.320000px;}
.y8b{bottom:611.850000px;}
.yb{bottom:612.225000px;}
.yd{bottom:612.405000px;}
.y37{bottom:623.970000px;}
.y7a{bottom:635.070000px;}
.ybc{bottom:635.445000px;}
.y3f{bottom:640.230000px;}
.ybe{bottom:640.425000px;}
.y8a{bottom:644.505000px;}
.y26{bottom:648.525000px;}
.y1f{bottom:650.325000px;}
.y9c{bottom:671.070000px;}
.y9b{bottom:672.195000px;}
.y1e{bottom:690.855000px;}
.y98{bottom:691.905000px;}
.y97{bottom:693.045000px;}
.y7e{bottom:696.570000px;}
.y51{bottom:705.825000px;}
.yc1{bottom:716.130000px;}
.y3d{bottom:721.545000px;}
.y5c{bottom:764.280000px;}
.y3c{bottom:764.325000px;}
.y3e{bottom:791.850000px;}
.y3b{bottom:805.995000px;}
.y86{bottom:812.925000px;}
.y77{bottom:820.170000px;}
.y85{bottom:846.705000px;}
.y3a{bottom:848.100000px;}
.yc0{bottom:857.820000px;}
.y1d{bottom:859.695000px;}
.y76{bottom:870.870000px;}
.y84{bottom:879.375000px;}
.ybb{bottom:892.995000px;}
.y1c{bottom:900.225000px;}
.yba{bottom:924.150000px;}
.yb9{bottom:925.275000px;}
.y36{bottom:928.725000px;}
.y1b{bottom:940.755000px;}
.y96{bottom:944.955000px;}
.y95{bottom:946.080000px;}
.y94{bottom:955.380000px;}
.y35{bottom:971.505000px;}
.y1a{bottom:981.300000px;}
.y83{bottom:993.075000px;}
.y5f{bottom:996.870000px;}
.y39{bottom:999.675000px;}
.y91{bottom:1001.445000px;}
.y34{bottom:1013.175000px;}
.y82{bottom:1026.870000px;}
.y93{bottom:1038.705000px;}
.y90{bottom:1052.130000px;}
.y19{bottom:1054.425000px;}
.y33{bottom:1055.955000px;}
.y81{bottom:1059.525000px;}
.y14{bottom:1109.325000px;}
.y32{bottom:1109.625000px;}
.y75{bottom:1110.120000px;}
.y6e{bottom:1114.755000px;}
.ybf{bottom:1119.570000px;}
.y92{bottom:1123.170000px;}
.h24{height:9.215332px;}
.h4{height:68.554688px;}
.h3{height:68.668945px;}
.h5{height:84.429932px;}
.h6{height:84.542505px;}
.h25{height:89.516602px;}
.hc{height:89.665796px;}
.h9{height:92.153320px;}
.h8{height:92.306909px;}
.h1d{height:93.992432px;}
.h1c{height:94.141626px;}
.hd{height:110.583984px;}
.hb{height:110.737573px;}
.h12{height:120.847412px;}
.hf{height:120.996606px;}
.ha{height:133.967432px;}
.h17{height:138.750732px;}
.h15{height:138.899927px;}
.h1f{height:147.445312px;}
.h20{height:147.598901px;}
.h13{height:152.052979px;}
.he{height:152.206567px;}
.h1b{height:154.560205px;}
.h2{height:156.814233px;}
.h22{height:161.421899px;}
.h26{height:179.182397px;}
.h23{height:244.513477px;}
.h16{height:262.790552px;}
.h14{height:262.944141px;}
.h1a{height:300.179004px;}
.h18{height:304.654834px;}
.h1e{height:308.867212px;}
.h7{height:309.020801px;}
.h19{height:309.130664px;}
.h10{height:318.082544px;}
.h11{height:318.236133px;}
.h21{height:401.174121px;}
.h1{height:424.212451px;}
.h0{height:1215.000000px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x7{left:31.237468px;}
.xa{left:34.799968px;}
.x13{left:46.912468px;}
.x8{left:56.549968px;}
.x9{left:58.912468px;}
.x6{left:61.724968px;}
.x12{left:66.487468px;}
.x4b{left:83.024968px;}
.x47{left:119.587468px;}
.x3e{left:122.887468px;}
.xb3{left:142.049968px;}
.xa3{left:156.929968px;}
.x45{left:161.249968px;}
.x32{left:164.369968px;}
.x46{left:166.379968px;}
.x40{left:167.699968px;}
.x37{left:172.424968px;}
.xbc{left:173.804968px;}
.x90{left:180.494968px;}
.x86{left:183.074968px;}
.x87{left:189.749968px;}
.x35{left:198.344968px;}
.x30{left:201.899968px;}
.x31{left:206.099968px;}
.x67{left:219.344968px;}
.x41{left:233.069968px;}
.x59{left:235.469968px;}
.x69{left:236.774968px;}
.x66{left:245.399968px;}
.x65{left:248.099968px;}
.x68{left:257.774968px;}
.xac{left:262.049968px;}
.xab{left:267.494968px;}
.x3f{left:299.849968px;}
.x50{left:317.444968px;}
.x36{left:321.674968px;}
.x58{left:322.799968px;}
.x3d{left:327.569968px;}
.x5a{left:356.144968px;}
.xc{left:375.824968px;}
.x34{left:377.624968px;}
.xd{left:385.199968px;}
.x42{left:396.299968px;}
.xf{left:400.124968px;}
.x51{left:403.499968px;}
.xe{left:425.129968px;}
.x11{left:437.444968px;}
.x4f{left:450.779968px;}
.x10{left:452.174968px;}
.xb{left:456.674968px;}
.x91{left:470.519968px;}
.x92{left:489.569968px;}
.x93{left:491.819968px;}
.x89{left:507.824968px;}
.xbd{left:509.654968px;}
.x88{left:522.719968px;}
.xb4{left:524.099968px;}
.x1{left:526.874968px;}
.xb5{left:543.224968px;}
.x94{left:548.174968px;}
.x7b{left:556.124968px;}
.x7c{left:557.174968px;}
.x7e{left:561.224968px;}
.x7d{left:565.244968px;}
.x48{left:569.699968px;}
.x7f{left:577.604968px;}
.x49{left:580.799968px;}
.x80{left:601.349968px;}
.x2f{left:615.524968px;}
.xae{left:634.754968px;}
.x62{left:637.469968px;}
.xad{left:642.119968px;}
.x81{left:660.824968px;}
.xa0{left:674.849968px;}
.x61{left:702.569968px;}
.x33{left:717.974968px;}
.x17{left:730.529968px;}
.x38{left:736.424968px;}
.x4{left:758.099968px;}
.xc1{left:764.219968px;}
.x1a{left:765.419968px;}
.x2{left:781.829968px;}
.x18{left:787.199968px;}
.x19{left:789.524968px;}
.x95{left:792.299968px;}
.x96{left:800.849968px;}
.x15{left:805.574968px;}
.x8b{left:811.424968px;}
.x3{left:815.219968px;}
.x14{left:817.574968px;}
.x16{left:821.969968px;}
.x97{left:827.399968px;}
.xa8{left:851.699968px;}
.xaa{left:859.004968px;}
.x5{left:872.324968px;}
.x8a{left:875.324968px;}
.x5c{left:908.549968px;}
.x6b{left:929.294968px;}
.x6e{left:932.219968px;}
.x6d{left:934.079968px;}
.xa2{left:935.444968px;}
.xa9{left:949.544968px;}
.xb6{left:951.479968px;}
.x52{left:957.704968px;}
.x54{left:960.494968px;}
.x6c{left:971.129968px;}
.x53{left:972.899968px;}
.x6a{left:980.024968px;}
.xbe{left:996.719968px;}
.x5b{left:999.749968px;}
.x6f{left:1002.074968px;}
.x4e{left:1032.029968px;}
.x4d{left:1033.469968px;}
.x4c{left:1039.769968px;}
.x5d{left:1055.654968px;}
.xb0{left:1075.319968px;}
.xaf{left:1079.894968px;}
.x8d{left:1089.899968px;}
.xa1{left:1097.879968px;}
.x9a{left:1101.704968px;}
.x99{left:1108.874968px;}
.x1e{left:1113.704968px;}
.x98{left:1123.694968px;}
.x21{left:1130.699968px;}
.x1f{left:1136.024968px;}
.x9b{left:1139.129968px;}
.x1c{left:1147.199968px;}
.x8c{left:1157.249968px;}
.x20{left:1171.499968px;}
.x1b{left:1182.824968px;}
.x1d{left:1187.249968px;}
.xc2{left:1239.824968px;}
.x4a{left:1246.169968px;}
.x64{left:1265.069968px;}
.x70{left:1273.874968px;}
.x72{left:1282.394968px;}
.x63{left:1292.729968px;}
.x73{left:1298.549968px;}
.x71{left:1325.174968px;}
.x43{left:1354.754968px;}
.xa7{left:1358.624968px;}
.x39{left:1374.044968px;}
.x44{left:1388.549968px;}
.xa4{left:1394.999968px;}
.x3a{left:1396.979968px;}
.xb7{left:1402.049968px;}
.x9e{left:1406.699968px;}
.x9c{left:1410.254968px;}
.xbf{left:1411.349968px;}
.x9f{left:1421.324968px;}
.x9d{left:1449.569968px;}
.x3b{left:1468.124968px;}
.x8e{left:1475.519968px;}
.x3c{left:1491.104968px;}
.x28{left:1496.129968px;}
.xa5{left:1504.724968px;}
.x25{left:1513.274968px;}
.xb2{left:1525.919968px;}
.xb1{left:1528.919968px;}
.x56{left:1535.024968px;}
.x27{left:1542.569968px;}
.x55{left:1548.644968px;}
.x24{left:1552.694968px;}
.x22{left:1556.354968px;}
.x26{left:1562.444968px;}
.xa6{left:1577.504968px;}
.x23{left:1583.354968px;}
.x75{left:1622.999968px;}
.x79{left:1629.944968px;}
.x57{left:1633.199968px;}
.x76{left:1637.354968px;}
.x5f{left:1656.944968px;}
.x78{left:1661.669968px;}
.x77{left:1685.669968px;}
.x74{left:1691.669968px;}
.x7a{left:1695.329968px;}
.x5e{left:1703.729968px;}
.x85{left:1734.899968px;}
.x82{left:1745.249968px;}
.x8f{left:1752.149968px;}
.x84{left:1757.069968px;}
.xc0{left:1759.799968px;}
.x60{left:1765.379968px;}
.xb8{left:1772.249968px;}
.x83{left:1783.124968px;}
.xb9{left:1791.419968px;}
.x2e{left:1861.229968px;}
.x2b{left:1883.294968px;}
.x2d{left:1885.349968px;}
.xbb{left:1888.199968px;}
.xba{left:1892.519968px;}
.x2c{left:1907.774968px;}
.x29{left:1924.124968px;}
.x2a{left:1958.444968px;}
@media print{
.v2{vertical-align:-42.400000pt;}
.v1{vertical-align:-18.346667pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.166933pt;}
.ls3{letter-spacing:-0.033493pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:17.426933pt;}
.lsc{letter-spacing:39.953333pt;}
.lsb{letter-spacing:40.000000pt;}
.lsd{letter-spacing:40.053333pt;}
.lsf{letter-spacing:40.113333pt;}
.lse{letter-spacing:40.160000pt;}
.ls4{letter-spacing:47.900000pt;}
.ls7{letter-spacing:47.953333pt;}
.ls9{letter-spacing:48.000000pt;}
.ls6{letter-spacing:48.060000pt;}
.ls5{letter-spacing:48.113333pt;}
.ls8{letter-spacing:86.513333pt;}
.lsa{letter-spacing:2368.627467pt;}
.ws8{word-spacing:-36.190133pt;}
.ws3{word-spacing:-24.933200pt;}
.ws5{word-spacing:-24.900000pt;}
.ws2{word-spacing:-19.873067pt;}
.ws6{word-spacing:-19.840000pt;}
.ws4{word-spacing:-19.839573pt;}
.ws1{word-spacing:-19.706133pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:110.963067pt;}
.ws7{word-spacing:164.761333pt;}
._8{margin-left:-3.766267pt;}
._4{margin-left:-2.724533pt;}
._5{margin-left:-1.041733pt;}
._3{width:1.362267pt;}
._6{width:2.264533pt;}
._7{width:3.300000pt;}
._a{width:5.398400pt;}
._28{width:13.000800pt;}
._25{width:14.507467pt;}
._16{width:16.812533pt;}
._1d{width:20.745600pt;}
._14{width:46.536667pt;}
._1a{width:48.450933pt;}
._24{width:49.563333pt;}
._17{width:72.827467pt;}
._26{width:74.373333pt;}
._18{width:88.844533pt;}
._27{width:90.930133pt;}
._d{width:98.411733pt;}
._21{width:99.797333pt;}
._22{width:101.678400pt;}
._1b{width:112.878933pt;}
._1f{width:114.612400pt;}
._b{width:116.074533pt;}
._19{width:147.556800pt;}
._13{width:156.009200pt;}
._1c{width:182.581333pt;}
._10{width:218.373333pt;}
._1e{width:245.050133pt;}
._9{width:257.307200pt;}
._11{width:273.956933pt;}
._15{width:284.354800pt;}
._20{width:293.372000pt;}
._2{width:336.102133pt;}
._1{width:361.300533pt;}
._12{width:391.665867pt;}
._0{width:440.202933pt;}
._23{width:513.468000pt;}
._f{width:726.266667pt;}
._c{width:881.518933pt;}
._e{width:1004.853333pt;}
.fs1e{font-size:8.000000pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:80.133333pt;}
.fs17{font-size:84.000000pt;}
.fs16{font-size:84.133333pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:96.133333pt;}
.fs4{font-size:100.000000pt;}
.fs5{font-size:100.133333pt;}
.fse{font-size:108.000000pt;}
.fsb{font-size:108.133333pt;}
.fs13{font-size:124.000000pt;}
.fs11{font-size:124.133333pt;}
.fs19{font-size:128.000000pt;}
.fs1a{font-size:128.133333pt;}
.fsf{font-size:132.000000pt;}
.fsa{font-size:132.133333pt;}
.fs1{font-size:136.133333pt;}
.fs1c{font-size:140.133333pt;}
.fs7{font-size:156.133333pt;}
.fs1f{font-size:160.133333pt;}
.fs15{font-size:180.133333pt;}
.fs1d{font-size:212.266667pt;}
.fs12{font-size:228.133333pt;}
.fs10{font-size:228.266667pt;}
.fs18{font-size:268.133333pt;}
.fs6{font-size:268.266667pt;}
.fs14{font-size:272.266667pt;}
.fsc{font-size:276.133333pt;}
.fsd{font-size:276.266667pt;}
.fs1b{font-size:348.266667pt;}
.fs0{font-size:368.266667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:38.233333pt;}
.y6d{bottom:49.600000pt;}
.yb8{bottom:66.566667pt;}
.y66{bottom:78.633333pt;}
.y4c{bottom:86.800000pt;}
.yb7{bottom:94.600000pt;}
.y65{bottom:107.666667pt;}
.yb3{bottom:115.300000pt;}
.yb6{bottom:122.633333pt;}
.y4b{bottom:124.833333pt;}
.y31{bottom:125.066667pt;}
.y8f{bottom:129.866667pt;}
.y5{bottom:135.866667pt;}
.y64{bottom:137.693333pt;}
.y7d{bottom:138.306667pt;}
.yb2{bottom:143.333333pt;}
.y4d{bottom:149.600000pt;}
.yab{bottom:150.133333pt;}
.yb5{bottom:150.666667pt;}
.y8e{bottom:159.893333pt;}
.y30{bottom:161.106667pt;}
.y4a{bottom:161.866667pt;}
.y63{bottom:166.706667pt;}
.yb1{bottom:171.333333pt;}
.y18{bottom:173.840000pt;}
.yaa{bottom:178.173333pt;}
.yb4{bottom:178.666667pt;}
.y7c{bottom:183.373333pt;}
.y4{bottom:186.893333pt;}
.yc5{bottom:188.133333pt;}
.y8d{bottom:188.933333pt;}
.y62{bottom:195.733333pt;}
.y2c{bottom:195.840000pt;}
.y2f{bottom:197.133333pt;}
.yb0{bottom:199.373333pt;}
.y49{bottom:199.600000pt;}
.ya9{bottom:206.200000pt;}
.y17{bottom:213.866667pt;}
.y54{bottom:221.733333pt;}
.y2b{bottom:224.866667pt;}
.y61{bottom:225.773333pt;}
.yaf{bottom:227.400000pt;}
.y2e{bottom:233.173333pt;}
.ya8{bottom:234.200000pt;}
.y3{bottom:236.933333pt;}
.y4e{bottom:244.466667pt;}
.y16{bottom:253.893333pt;}
.y60{bottom:254.800000pt;}
.yae{bottom:255.440000pt;}
.y72{bottom:255.640000pt;}
.ya7{bottom:262.226667pt;}
.y53{bottom:263.760000pt;}
.y6c{bottom:265.400000pt;}
.y2d{bottom:269.200000pt;}
.y47{bottom:271.960000pt;}
.yad{bottom:283.440000pt;}
.y71{bottom:287.666667pt;}
.y2{bottom:288.000000pt;}
.ya6{bottom:290.266667pt;}
.y56{bottom:292.200000pt;}
.y15{bottom:293.960000pt;}
.y59{bottom:294.440000pt;}
.yc2{bottom:295.200000pt;}
.y89{bottom:305.400000pt;}
.y52{bottom:306.800000pt;}
.y46{bottom:310.040000pt;}
.yac{bottom:311.466667pt;}
.y79{bottom:312.266667pt;}
.ya5{bottom:318.306667pt;}
.y70{bottom:319.706667pt;}
.y6b{bottom:324.466667pt;}
.y48{bottom:334.360000pt;}
.y88{bottom:335.440000pt;}
.y55{bottom:340.226667pt;}
.y58{bottom:341.466667pt;}
.ya4{bottom:346.333333pt;}
.y45{bottom:347.066667pt;}
.y6f{bottom:351.733333pt;}
.y6a{bottom:353.506667pt;}
.y78{bottom:357.306667pt;}
.ya{bottom:357.506667pt;}
.y13{bottom:357.666667pt;}
.y87{bottom:364.466667pt;}
.ya3{bottom:374.333333pt;}
.y69{bottom:382.533333pt;}
.y44{bottom:384.333333pt;}
.y50{bottom:387.933333pt;}
.y9{bottom:388.533333pt;}
.y12{bottom:388.706667pt;}
.y24{bottom:397.893333pt;}
.ya2{bottom:402.360000pt;}
.y74{bottom:409.466667pt;}
.y68{bottom:412.533333pt;}
.yc4{bottom:416.066667pt;}
.y8{bottom:419.573333pt;}
.y11{bottom:419.733333pt;}
.ya1{bottom:430.400000pt;}
.y4f{bottom:430.960000pt;}
.ybd{bottom:431.693333pt;}
.y2a{bottom:432.333333pt;}
.y23{bottom:433.933333pt;}
.y67{bottom:441.560000pt;}
.y7{bottom:449.600000pt;}
.y10{bottom:449.773333pt;}
.y42{bottom:457.173333pt;}
.y73{bottom:457.506667pt;}
.ya0{bottom:458.440000pt;}
.y80{bottom:463.040000pt;}
.y29{bottom:468.360000pt;}
.y22{bottom:469.960000pt;}
.y38{bottom:474.560000pt;}
.y5e{bottom:480.333333pt;}
.y6{bottom:480.626667pt;}
.yf{bottom:480.800000pt;}
.y9a{bottom:484.240000pt;}
.y99{bottom:485.226667pt;}
.y9f{bottom:486.466667pt;}
.y1{bottom:489.706667pt;}
.y41{bottom:495.200000pt;}
.y28{bottom:504.400000pt;}
.y21{bottom:506.000000pt;}
.yc{bottom:508.173333pt;}
.ye{bottom:508.333333pt;}
.y57{bottom:510.066667pt;}
.y5b{bottom:511.106667pt;}
.y8c{bottom:513.840000pt;}
.y5a{bottom:513.933333pt;}
.y9e{bottom:514.466667pt;}
.y7f{bottom:516.066667pt;}
.y43{bottom:519.200000pt;}
.y7b{bottom:519.466667pt;}
.yc3{bottom:524.440000pt;}
.y5d{bottom:528.400000pt;}
.y40{bottom:532.240000pt;}
.y27{bottom:540.426667pt;}
.y20{bottom:542.026667pt;}
.y9d{bottom:542.506667pt;}
.y8b{bottom:543.866667pt;}
.yb{bottom:544.200000pt;}
.yd{bottom:544.360000pt;}
.y37{bottom:554.640000pt;}
.y7a{bottom:564.506667pt;}
.ybc{bottom:564.840000pt;}
.y3f{bottom:569.093333pt;}
.ybe{bottom:569.266667pt;}
.y8a{bottom:572.893333pt;}
.y26{bottom:576.466667pt;}
.y1f{bottom:578.066667pt;}
.y9c{bottom:596.506667pt;}
.y9b{bottom:597.506667pt;}
.y1e{bottom:614.093333pt;}
.y98{bottom:615.026667pt;}
.y97{bottom:616.040000pt;}
.y7e{bottom:619.173333pt;}
.y51{bottom:627.400000pt;}
.yc1{bottom:636.560000pt;}
.y3d{bottom:641.373333pt;}
.y5c{bottom:679.360000pt;}
.y3c{bottom:679.400000pt;}
.y3e{bottom:703.866667pt;}
.y3b{bottom:716.440000pt;}
.y86{bottom:722.600000pt;}
.y77{bottom:729.040000pt;}
.y85{bottom:752.626667pt;}
.y3a{bottom:753.866667pt;}
.yc0{bottom:762.506667pt;}
.y1d{bottom:764.173333pt;}
.y76{bottom:774.106667pt;}
.y84{bottom:781.666667pt;}
.ybb{bottom:793.773333pt;}
.y1c{bottom:800.200000pt;}
.yba{bottom:821.466667pt;}
.yb9{bottom:822.466667pt;}
.y36{bottom:825.533333pt;}
.y1b{bottom:836.226667pt;}
.y96{bottom:839.960000pt;}
.y95{bottom:840.960000pt;}
.y94{bottom:849.226667pt;}
.y35{bottom:863.560000pt;}
.y1a{bottom:872.266667pt;}
.y83{bottom:882.733333pt;}
.y5f{bottom:886.106667pt;}
.y39{bottom:888.600000pt;}
.y91{bottom:890.173333pt;}
.y34{bottom:900.600000pt;}
.y82{bottom:912.773333pt;}
.y93{bottom:923.293333pt;}
.y90{bottom:935.226667pt;}
.y19{bottom:937.266667pt;}
.y33{bottom:938.626667pt;}
.y81{bottom:941.800000pt;}
.y14{bottom:986.066667pt;}
.y32{bottom:986.333333pt;}
.y75{bottom:986.773333pt;}
.y6e{bottom:990.893333pt;}
.ybf{bottom:995.173333pt;}
.y92{bottom:998.373333pt;}
.h24{height:8.191406pt;}
.h4{height:60.937500pt;}
.h3{height:61.039062pt;}
.h5{height:75.048828pt;}
.h6{height:75.148893pt;}
.h25{height:79.570312pt;}
.hc{height:79.702930pt;}
.h9{height:81.914062pt;}
.h8{height:82.050586pt;}
.h1d{height:83.548828pt;}
.h1c{height:83.681445pt;}
.hd{height:98.296875pt;}
.hb{height:98.433398pt;}
.h12{height:107.419922pt;}
.hf{height:107.552539pt;}
.ha{height:119.082161pt;}
.h17{height:123.333984pt;}
.h15{height:123.466602pt;}
.h1f{height:131.062500pt;}
.h20{height:131.199023pt;}
.h13{height:135.158203pt;}
.he{height:135.294727pt;}
.h1b{height:137.386849pt;}
.h2{height:139.390430pt;}
.h22{height:143.486133pt;}
.h26{height:159.273242pt;}
.h23{height:217.345312pt;}
.h16{height:233.591602pt;}
.h14{height:233.728125pt;}
.h1a{height:266.825781pt;}
.h18{height:270.804297pt;}
.h1e{height:274.548633pt;}
.h7{height:274.685156pt;}
.h19{height:274.782812pt;}
.h10{height:282.740039pt;}
.h11{height:282.876562pt;}
.h21{height:356.599219pt;}
.h1{height:377.077734pt;}
.h0{height:1080.000000pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x7{left:27.766638pt;}
.xa{left:30.933305pt;}
.x13{left:41.699971pt;}
.x8{left:50.266638pt;}
.x9{left:52.366638pt;}
.x6{left:54.866638pt;}
.x12{left:59.099971pt;}
.x4b{left:73.799971pt;}
.x47{left:106.299971pt;}
.x3e{left:109.233305pt;}
.xb3{left:126.266638pt;}
.xa3{left:139.493305pt;}
.x45{left:143.333305pt;}
.x32{left:146.106638pt;}
.x46{left:147.893305pt;}
.x40{left:149.066638pt;}
.x37{left:153.266638pt;}
.xbc{left:154.493305pt;}
.x90{left:160.439971pt;}
.x86{left:162.733305pt;}
.x87{left:168.666638pt;}
.x35{left:176.306638pt;}
.x30{left:179.466638pt;}
.x31{left:183.199971pt;}
.x67{left:194.973305pt;}
.x41{left:207.173305pt;}
.x59{left:209.306638pt;}
.x69{left:210.466638pt;}
.x66{left:218.133305pt;}
.x65{left:220.533305pt;}
.x68{left:229.133305pt;}
.xac{left:232.933305pt;}
.xab{left:237.773305pt;}
.x3f{left:266.533305pt;}
.x50{left:282.173305pt;}
.x36{left:285.933305pt;}
.x58{left:286.933305pt;}
.x3d{left:291.173305pt;}
.x5a{left:316.573305pt;}
.xc{left:334.066638pt;}
.x34{left:335.666638pt;}
.xd{left:342.399971pt;}
.x42{left:352.266638pt;}
.xf{left:355.666638pt;}
.x51{left:358.666638pt;}
.xe{left:377.893305pt;}
.x11{left:388.839971pt;}
.x4f{left:400.693305pt;}
.x10{left:401.933305pt;}
.xb{left:405.933305pt;}
.x91{left:418.239971pt;}
.x92{left:435.173305pt;}
.x93{left:437.173305pt;}
.x89{left:451.399971pt;}
.xbd{left:453.026638pt;}
.x88{left:464.639971pt;}
.xb4{left:465.866638pt;}
.x1{left:468.333305pt;}
.xb5{left:482.866638pt;}
.x94{left:487.266638pt;}
.x7b{left:494.333305pt;}
.x7c{left:495.266638pt;}
.x7e{left:498.866638pt;}
.x7d{left:502.439971pt;}
.x48{left:506.399971pt;}
.x7f{left:513.426638pt;}
.x49{left:516.266638pt;}
.x80{left:534.533305pt;}
.x2f{left:547.133305pt;}
.xae{left:564.226638pt;}
.x62{left:566.639971pt;}
.xad{left:570.773305pt;}
.x81{left:587.399971pt;}
.xa0{left:599.866638pt;}
.x61{left:624.506638pt;}
.x33{left:638.199971pt;}
.x17{left:649.359971pt;}
.x38{left:654.599971pt;}
.x4{left:673.866638pt;}
.xc1{left:679.306638pt;}
.x1a{left:680.373305pt;}
.x2{left:694.959971pt;}
.x18{left:699.733305pt;}
.x19{left:701.799971pt;}
.x95{left:704.266638pt;}
.x96{left:711.866638pt;}
.x15{left:716.066638pt;}
.x8b{left:721.266638pt;}
.x3{left:724.639971pt;}
.x14{left:726.733305pt;}
.x16{left:730.639971pt;}
.x97{left:735.466638pt;}
.xa8{left:757.066638pt;}
.xaa{left:763.559971pt;}
.x5{left:775.399971pt;}
.x8a{left:778.066638pt;}
.x5c{left:807.599971pt;}
.x6b{left:826.039971pt;}
.x6e{left:828.639971pt;}
.x6d{left:830.293305pt;}
.xa2{left:831.506638pt;}
.xa9{left:844.039971pt;}
.xb6{left:845.759971pt;}
.x52{left:851.293305pt;}
.x54{left:853.773305pt;}
.x6c{left:863.226638pt;}
.x53{left:864.799971pt;}
.x6a{left:871.133305pt;}
.xbe{left:885.973305pt;}
.x5b{left:888.666638pt;}
.x6f{left:890.733305pt;}
.x4e{left:917.359971pt;}
.x4d{left:918.639971pt;}
.x4c{left:924.239971pt;}
.x5d{left:938.359971pt;}
.xb0{left:955.839971pt;}
.xaf{left:959.906638pt;}
.x8d{left:968.799971pt;}
.xa1{left:975.893305pt;}
.x9a{left:979.293305pt;}
.x99{left:985.666638pt;}
.x1e{left:989.959971pt;}
.x98{left:998.839971pt;}
.x21{left:1005.066638pt;}
.x1f{left:1009.799971pt;}
.x9b{left:1012.559971pt;}
.x1c{left:1019.733305pt;}
.x8c{left:1028.666638pt;}
.x20{left:1041.333305pt;}
.x1b{left:1051.399971pt;}
.x1d{left:1055.333305pt;}
.xc2{left:1102.066638pt;}
.x4a{left:1107.706638pt;}
.x64{left:1124.506638pt;}
.x70{left:1132.333305pt;}
.x72{left:1139.906638pt;}
.x63{left:1149.093305pt;}
.x73{left:1154.266638pt;}
.x71{left:1177.933305pt;}
.x43{left:1204.226638pt;}
.xa7{left:1207.666638pt;}
.x39{left:1221.373305pt;}
.x44{left:1234.266638pt;}
.xa4{left:1239.999971pt;}
.x3a{left:1241.759971pt;}
.xb7{left:1246.266638pt;}
.x9e{left:1250.399971pt;}
.x9c{left:1253.559971pt;}
.xbf{left:1254.533305pt;}
.x9f{left:1263.399971pt;}
.x9d{left:1288.506638pt;}
.x3b{left:1304.999971pt;}
.x8e{left:1311.573305pt;}
.x3c{left:1325.426638pt;}
.x28{left:1329.893305pt;}
.xa5{left:1337.533305pt;}
.x25{left:1345.133305pt;}
.xb2{left:1356.373305pt;}
.xb1{left:1359.039971pt;}
.x56{left:1364.466638pt;}
.x27{left:1371.173305pt;}
.x55{left:1376.573305pt;}
.x24{left:1380.173305pt;}
.x22{left:1383.426638pt;}
.x26{left:1388.839971pt;}
.xa6{left:1402.226638pt;}
.x23{left:1407.426638pt;}
.x75{left:1442.666638pt;}
.x79{left:1448.839971pt;}
.x57{left:1451.733305pt;}
.x76{left:1455.426638pt;}
.x5f{left:1472.839971pt;}
.x78{left:1477.039971pt;}
.x77{left:1498.373305pt;}
.x74{left:1503.706638pt;}
.x7a{left:1506.959971pt;}
.x5e{left:1514.426638pt;}
.x85{left:1542.133305pt;}
.x82{left:1551.333305pt;}
.x8f{left:1557.466638pt;}
.x84{left:1561.839971pt;}
.xc0{left:1564.266638pt;}
.x60{left:1569.226638pt;}
.xb8{left:1575.333305pt;}
.x83{left:1584.999971pt;}
.xb9{left:1592.373305pt;}
.x2e{left:1654.426638pt;}
.x2b{left:1674.039971pt;}
.x2d{left:1675.866638pt;}
.xbb{left:1678.399971pt;}
.xba{left:1682.239971pt;}
.x2c{left:1695.799971pt;}
.x29{left:1710.333305pt;}
.x2a{left:1740.839971pt;}
}




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