
    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_b338fc5da21788a9d95cfb57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_5bfd6fea0bca147beaa35d3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.156000;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_f4536e8fa7e5252ac8577c72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59406e243f5a042797609974.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.157000;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_9b437ed12b80581a20706ca7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_6d8f41cc210fc206843587f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fec821b9878f8f3e9f17b4fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480480px;}
.lsb{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.466800px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001860px;}
.lsc{letter-spacing:0.142620px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.144960px;}
.lsd{letter-spacing:0.214746px;}
.lsa{letter-spacing:0.214893px;}
.ls0{letter-spacing:0.287520px;}
.ls2{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.863880px;}
.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;}
}
.ws1{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.016000px;}
.ws0{word-spacing:-19.872000px;}
.ws6{word-spacing:-16.306440px;}
.ws5{word-spacing:-14.653200px;}
.ws3{word-spacing:-13.210560px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-6.744000px;}
._21{margin-left:-5.056405px;}
._9{margin-left:-3.921413px;}
._3{margin-left:-2.486551px;}
._0{margin-left:-1.367138px;}
._1{width:1.546867px;}
._2{width:2.684950px;}
._f{width:3.830055px;}
._c{width:5.683924px;}
._d{width:7.464601px;}
._e{width:8.666502px;}
._6{width:9.835782px;}
._7{width:11.303723px;}
._10{width:12.310893px;}
._11{width:13.423214px;}
._13{width:14.614920px;}
._12{width:15.803828px;}
._a{width:16.848336px;}
._b{width:17.848388px;}
._26{width:18.936792px;}
._1d{width:20.078381px;}
._14{width:21.079258px;}
._1a{width:22.543098px;}
._25{width:23.614883px;}
._8{width:24.773987px;}
._18{width:25.790087px;}
._19{width:26.826940px;}
._1e{width:28.132832px;}
._23{width:29.207327px;}
._22{width:30.448932px;}
._24{width:31.471816px;}
._20{width:32.651560px;}
._1f{width:34.768469px;}
._1c{width:36.281357px;}
._1b{width:38.158412px;}
._5{width:40.013505px;}
._4{width:41.042411px;}
._29{width:51.442361px;}
._17{width:53.025356px;}
._16{width:54.984024px;}
._28{width:57.954174px;}
._27{width:59.326245px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yab{bottom:88.596150px;}
.yf3{bottom:92.916600px;}
.y69{bottom:93.996150px;}
.yda{bottom:93.996300px;}
.y89{bottom:97.235550px;}
.y24{bottom:104.436600px;}
.y68{bottom:105.876150px;}
.y149{bottom:108.395700px;}
.yaa{bottom:111.276000px;}
.yc6{bottom:114.155820px;}
.ya9{bottom:123.156300px;}
.yf2{bottom:123.876300px;}
.yd9{bottom:124.956000px;}
.y88{bottom:128.195850px;}
.y148{bottom:128.915850px;}
.y102{bottom:132.876150px;}
.y67{bottom:134.316450px;}
.y23{bottom:135.756750px;}
.yc5{bottom:145.151970px;}
.y41{bottom:149.472600px;}
.y147{bottom:149.831550px;}
.yf1{bottom:155.235150px;}
.yd8{bottom:155.955000px;}
.y87{bottom:159.194850px;}
.y101{bottom:164.235000px;}
.y66{bottom:165.315450px;}
.y22{bottom:166.755750px;}
.y146{bottom:170.354550px;}
.yc4{bottom:176.115270px;}
.y40{bottom:180.435300px;}
.yf0{bottom:186.195450px;}
.yd7{bottom:186.915300px;}
.y145{bottom:191.234400px;}
.y100{bottom:195.195300px;}
.y11b{bottom:195.195750px;}
.y65{bottom:196.275150px;}
.y21{bottom:197.715450px;}
.yc3{bottom:207.074970px;}
.y3f{bottom:211.395600px;}
.y144{bottom:211.754550px;}
.yef{bottom:217.155150px;}
.y86{bottom:217.515000px;}
.yd6{bottom:218.234850px;}
.yff{bottom:226.155000px;}
.y11a{bottom:226.155450px;}
.y64{bottom:227.234850px;}
.y20{bottom:228.675150px;}
.y143{bottom:232.634400px;}
.yc2{bottom:238.395120px;}
.y3e{bottom:242.715750px;}
.yee{bottom:248.115450px;}
.yd5{bottom:249.195150px;}
.y142{bottom:253.154550px;}
.ya8{bottom:255.675450px;}
.yfe{bottom:257.115300px;}
.y119{bottom:257.115750px;}
.y63{bottom:258.555000px;}
.y1f{bottom:259.995300px;}
.yc1{bottom:269.354820px;}
.y3d{bottom:273.675450px;}
.y141{bottom:274.034400px;}
.y85{bottom:275.474700px;}
.yed{bottom:279.465450px;}
.yd4{bottom:280.184850px;}
.ya7{bottom:286.665750px;}
.yfd{bottom:288.465300px;}
.y118{bottom:288.465750px;}
.y62{bottom:289.545300px;}
.y1e{bottom:290.985000px;}
.y140{bottom:294.584400px;}
.yc0{bottom:300.345120px;}
.y3c{bottom:304.665750px;}
.y84{bottom:306.465000px;}
.yec{bottom:310.425150px;}
.yd3{bottom:311.145150px;}
.y13f{bottom:315.464850px;}
.ya6{bottom:317.625450px;}
.yfc{bottom:319.425000px;}
.y117{bottom:319.425450px;}
.y61{bottom:320.505000px;}
.y1d{bottom:321.944700px;}
.ybf{bottom:331.304820px;}
.y3b{bottom:335.625450px;}
.y13e{bottom:335.984400px;}
.y83{bottom:337.424700px;}
.yeb{bottom:341.384850px;}
.yd2{bottom:342.465300px;}
.ya5{bottom:348.585150px;}
.y116{bottom:350.385150px;}
.y60{bottom:351.465300px;}
.y1c{bottom:352.904400px;}
.y13d{bottom:356.864850px;}
.ybe{bottom:362.624970px;}
.yfb{bottom:366.584700px;}
.y3a{bottom:366.945600px;}
.y82{bottom:368.384400px;}
.yea{bottom:372.345150px;}
.yd1{bottom:373.425000px;}
.y13c{bottom:377.384400px;}
.y115{bottom:381.345450px;}
.y5f{bottom:382.784850px;}
.yfa{bottom:383.865150px;}
.y1b{bottom:384.224550px;}
.ybd{bottom:393.584670px;}
.ya4{bottom:395.745450px;}
.y39{bottom:397.905300px;}
.y13b{bottom:398.264850px;}
.y81{bottom:399.704550px;}
.yf9{bottom:401.145000px;}
.ye9{bottom:403.665300px;}
.yd0{bottom:404.384700px;}
.y114{bottom:412.710150px;}
.ya3{bottom:413.070450px;}
.y5e{bottom:413.790300px;}
.y1a{bottom:415.229400px;}
.yf8{bottom:418.109700px;}
.y38{bottom:418.470600px;}
.y13a{bottom:418.829550px;}
.ybc{bottom:424.590120px;}
.ya2{bottom:430.350300px;}
.y80{bottom:430.709400px;}
.ye8{bottom:434.670150px;}
.ycf{bottom:435.390150px;}
.y37{bottom:438.270600px;}
.y139{bottom:439.709400px;}
.y113{bottom:443.670450px;}
.y5d{bottom:444.750000px;}
.y19{bottom:446.189100px;}
.ya1{bottom:447.630150px;}
.yf7{bottom:453.029850px;}
.ybb{bottom:455.549820px;}
.y36{bottom:455.550450px;}
.y138{bottom:460.229550px;}
.y7f{bottom:461.669700px;}
.ya0{bottom:464.910000px;}
.ye7{bottom:465.629850px;}
.yce{bottom:466.709700px;}
.yf6{bottom:469.950000px;}
.y35{bottom:472.830300px;}
.y112{bottom:474.630150px;}
.y18{bottom:477.148800px;}
.y137{bottom:481.109400px;}
.y9f{bottom:482.190450px;}
.yba{bottom:486.869970px;}
.yf5{bottom:487.229850px;}
.y34{bottom:490.110150px;}
.y7e{bottom:492.629400px;}
.ye6{bottom:496.590150px;}
.ycd{bottom:497.670000px;}
.y9e{bottom:499.470300px;}
.y136{bottom:501.629550px;}
.y5c{bottom:503.070150px;}
.yf4{bottom:504.509700px;}
.y111{bottom:505.590450px;}
.y17{bottom:508.468950px;}
.y33{bottom:508.470450px;}
.y9d{bottom:516.750150px;}
.yb9{bottom:517.829670px;}
.y135{bottom:522.509400px;}
.y7d{bottom:523.949550px;}
.ye5{bottom:527.549850px;}
.ycc{bottom:528.629700px;}
.y32{bottom:528.990600px;}
.y110{bottom:536.550150px;}
.y16{bottom:539.428650px;}
.y134{bottom:543.059400px;}
.yb8{bottom:548.819970px;}
.y31{bottom:549.900300px;}
.y7c{bottom:554.939850px;}
.ye4{bottom:558.899850px;}
.ycb{bottom:559.620000px;}
.y5b{bottom:561.059850px;}
.y133{bottom:563.579550px;}
.y10f{bottom:567.900150px;}
.y15{bottom:570.418950px;}
.y30{bottom:570.420450px;}
.y9c{bottom:571.859850px;}
.yb7{bottom:579.779670px;}
.y5a{bottom:581.580000px;}
.y132{bottom:584.459400px;}
.y7b{bottom:586.979550px;}
.ye3{bottom:589.859550px;}
.yca{bottom:590.579700px;}
.y2f{bottom:590.940600px;}
.y10e{bottom:598.859850px;}
.y14{bottom:601.379250px;}
.y59{bottom:602.459850px;}
.y9b{bottom:602.820150px;}
.y131{bottom:604.979550px;}
.yb6{bottom:610.739970px;}
.y2e{bottom:611.820450px;}
.y7a{bottom:618.299700px;}
.y15f{bottom:621.899550px;}
.yc9{bottom:621.899850px;}
.y58{bottom:623.340300px;}
.y130{bottom:625.859400px;}
.y10d{bottom:629.820150px;}
.y13{bottom:632.339550px;}
.y2d{bottom:632.340600px;}
.y9a{bottom:633.779850px;}
.yb5{bottom:642.059520px;}
.y15e{bottom:642.419700px;}
.y57{bottom:643.140300px;}
.y12f{bottom:646.379550px;}
.ye2{bottom:648.179700px;}
.y79{bottom:650.699700px;}
.yc8{bottom:652.859550px;}
.y2c{bottom:653.220450px;}
.y10c{bottom:660.779850px;}
.y56{bottom:660.780000px;}
.y15d{bottom:663.299550px;}
.y12{bottom:663.659100px;}
.y99{bottom:665.100000px;}
.y12e{bottom:667.259400px;}
.yb4{bottom:673.049820px;}
.y55{bottom:681.690000px;}
.y78{bottom:682.769850px;}
.y15c{bottom:683.849550px;}
.yc7{bottom:683.849850px;}
.y11{bottom:684.209700px;}
.y2b{bottom:684.210750px;}
.y12d{bottom:687.809400px;}
.y10b{bottom:692.129850px;}
.y98{bottom:696.090300px;}
.y54{bottom:702.210000px;}
.yb3{bottom:704.009520px;}
.y15b{bottom:704.729400px;}
.y10{bottom:705.089550px;}
.ye1{bottom:705.809550px;}
.y12c{bottom:708.689850px;}
.y77{bottom:714.809550px;}
.y2a{bottom:715.170450px;}
.y53{bottom:723.090000px;}
.y10a{bottom:723.090150px;}
.y15a{bottom:725.249550px;}
.y97{bottom:727.050000px;}
.y12b{bottom:729.210000px;}
.yb2{bottom:734.969820px;}
.yf{bottom:736.049250px;}
.ye0{bottom:737.129700px;}
.y52{bottom:743.610000px;}
.y159{bottom:746.129400px;}
.y76{bottom:746.129700px;}
.y29{bottom:746.490600px;}
.y12a{bottom:750.089850px;}
.y109{bottom:754.049850px;}
.y96{bottom:758.009700px;}
.y51{bottom:764.490000px;}
.yb1{bottom:766.289970px;}
.y158{bottom:766.649550px;}
.ye{bottom:767.009550px;}
.ydf{bottom:768.090000px;}
.y129{bottom:770.609400px;}
.y75{bottom:777.090000px;}
.y28{bottom:777.450300px;}
.y50{bottom:785.010000px;}
.y108{bottom:785.010150px;}
.y157{bottom:787.529400px;}
.y95{bottom:789.329850px;}
.y128{bottom:791.489850px;}
.yb0{bottom:797.249670px;}
.yd{bottom:797.969850px;}
.yde{bottom:799.049700px;}
.y4f{bottom:805.935000px;}
.y156{bottom:808.094700px;}
.y74{bottom:808.094850px;}
.y27{bottom:808.455150px;}
.y127{bottom:812.054550px;}
.y107{bottom:816.374850px;}
.yaf{bottom:826.094820px;}
.y4e{bottom:826.455000px;}
.y155{bottom:828.974550px;}
.ydd{bottom:830.054550px;}
.yc{bottom:831.854550px;}
.y126{bottom:832.934400px;}
.y94{bottom:836.534700px;}
.y73{bottom:839.054550px;}
.y26{bottom:839.415450px;}
.yae{bottom:839.774700px;}
.y4d{bottom:847.335000px;}
.y106{bottom:847.335150px;}
.y154{bottom:849.494700px;}
.y125{bottom:853.454550px;}
.y93{bottom:853.815150px;}
.ydc{bottom:861.374700px;}
.y4c{bottom:867.855000px;}
.yb{bottom:868.214850px;}
.y153{bottom:870.374550px;}
.y72{bottom:870.374700px;}
.y92{bottom:870.734700px;}
.y25{bottom:870.735000px;}
.y124{bottom:874.335000px;}
.y105{bottom:878.294850px;}
.y91{bottom:888.015150px;}
.y4b{bottom:888.735000px;}
.y152{bottom:890.894700px;}
.ydb{bottom:892.335000px;}
.y123{bottom:894.854550px;}
.y71{bottom:901.335000px;}
.ya{bottom:901.694700px;}
.y90{bottom:905.295000px;}
.y104{bottom:909.254550px;}
.y4a{bottom:909.255000px;}
.y151{bottom:911.774550px;}
.y122{bottom:915.734400px;}
.y8f{bottom:922.574850px;}
.y49{bottom:930.135000px;}
.y70{bottom:932.294700px;}
.y9{bottom:932.654400px;}
.y121{bottom:936.254550px;}
.y8e{bottom:939.885150px;}
.y150{bottom:953.204400px;}
.y120{bottom:957.164850px;}
.y8d{bottom:957.165000px;}
.y6f{bottom:963.284400px;}
.y8{bottom:963.644700px;}
.y103{bottom:967.964850px;}
.y14f{bottom:973.724550px;}
.y8c{bottom:974.444850px;}
.y11f{bottom:977.684400px;}
.y48{bottom:978.044850px;}
.y14e{bottom:994.604400px;}
.y6e{bottom:994.604550px;}
.y7{bottom:994.964850px;}
.y11e{bottom:998.564850px;}
.y14d{bottom:1015.124550px;}
.y11d{bottom:1019.085000px;}
.y6d{bottom:1025.564850px;}
.y47{bottom:1025.924700px;}
.y6{bottom:1025.925150px;}
.y8b{bottom:1029.524700px;}
.y14c{bottom:1036.004400px;}
.y11c{bottom:1039.964850px;}
.y6c{bottom:1056.524550px;}
.y46{bottom:1056.524700px;}
.y5{bottom:1056.885450px;}
.y8a{bottom:1060.484400px;}
.y14b{bottom:1077.449550px;}
.y6b{bottom:1087.529400px;}
.y45{bottom:1087.529550px;}
.y4{bottom:1087.890300px;}
.y14a{bottom:1097.969700px;}
.yad{bottom:1104.449700px;}
.y6a{bottom:1118.849550px;}
.y44{bottom:1119.210000px;}
.y3{bottom:1119.210450px;}
.yac{bottom:1121.729550px;}
.y43{bottom:1147.289850px;}
.y42{bottom:1164.210000px;}
.y2{bottom:1178.970150px;}
.y1{bottom:1196.250000px;}
.h8{height:26.555040px;}
.h2{height:41.307840px;}
.h9{height:52.417969px;}
.h5{height:56.790720px;}
.h3{height:67.392000px;}
.h6{height:67.608000px;}
.h7{height:69.101760px;}
.h4{height:78.174720px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:127.476000px;}
.x6{left:141.912270px;}
.x8{left:180.795420px;}
.x10{left:207.433350px;}
.x11{left:234.463815px;}
.x3{left:276.945150px;}
.x12{left:297.464850px;}
.xb{left:301.065270px;}
.x7{left:311.550270px;}
.x4{left:334.590270px;}
.x9{left:403.380420px;}
.xf{left:430.379580px;}
.xa{left:447.660390px;}
.xc{left:467.820270px;}
.x5{left:494.490270px;}
.xe{left:604.694700px;}
.x14{left:791.610000px;}
.xd{left:799.890000px;}
.x13{left:804.930000px;}
.x1{left:808.170000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760427pt;}
.lsb{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.414933pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001653pt;}
.lsc{letter-spacing:0.126773pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.128853pt;}
.lsd{letter-spacing:0.190885pt;}
.lsa{letter-spacing:0.191016pt;}
.ls0{letter-spacing:0.255573pt;}
.ls2{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.767893pt;}
.ws1{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws0{word-spacing:-17.664000pt;}
.ws6{word-spacing:-14.494613pt;}
.ws5{word-spacing:-13.025067pt;}
.ws3{word-spacing:-11.742720pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-5.994667pt;}
._21{margin-left:-4.494583pt;}
._9{margin-left:-3.485700pt;}
._3{margin-left:-2.210268pt;}
._0{margin-left:-1.215234pt;}
._1{width:1.374993pt;}
._2{width:2.386622pt;}
._f{width:3.404493pt;}
._c{width:5.052377pt;}
._d{width:6.635201pt;}
._e{width:7.703558pt;}
._6{width:8.742917pt;}
._7{width:10.047754pt;}
._10{width:10.943016pt;}
._11{width:11.931746pt;}
._13{width:12.991040pt;}
._12{width:14.047847pt;}
._a{width:14.976299pt;}
._b{width:15.865234pt;}
._26{width:16.832704pt;}
._1d{width:17.847450pt;}
._14{width:18.737118pt;}
._1a{width:20.038309pt;}
._25{width:20.991007pt;}
._8{width:22.021322pt;}
._18{width:22.924522pt;}
._19{width:23.846169pt;}
._1e{width:25.006962pt;}
._23{width:25.962068pt;}
._22{width:27.065717pt;}
._24{width:27.974947pt;}
._20{width:29.023609pt;}
._1f{width:30.905306pt;}
._1c{width:32.250095pt;}
._1b{width:33.918589pt;}
._5{width:35.567560pt;}
._4{width:36.482143pt;}
._29{width:45.726543pt;}
._17{width:47.133650pt;}
._16{width:48.874688pt;}
._28{width:51.514821pt;}
._27{width:52.734440pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:78.752133pt;}
.yf3{bottom:82.592533pt;}
.y69{bottom:83.552133pt;}
.yda{bottom:83.552267pt;}
.y89{bottom:86.431600pt;}
.y24{bottom:92.832533pt;}
.y68{bottom:94.112133pt;}
.y149{bottom:96.351733pt;}
.yaa{bottom:98.912000pt;}
.yc6{bottom:101.471840pt;}
.ya9{bottom:109.472267pt;}
.yf2{bottom:110.112267pt;}
.yd9{bottom:111.072000pt;}
.y88{bottom:113.951867pt;}
.y148{bottom:114.591867pt;}
.y102{bottom:118.112133pt;}
.y67{bottom:119.392400pt;}
.y23{bottom:120.672667pt;}
.yc5{bottom:129.023973pt;}
.y41{bottom:132.864533pt;}
.y147{bottom:133.183600pt;}
.yf1{bottom:137.986800pt;}
.yd8{bottom:138.626667pt;}
.y87{bottom:141.506533pt;}
.y101{bottom:145.986667pt;}
.y66{bottom:146.947067pt;}
.y22{bottom:148.227333pt;}
.y146{bottom:151.426267pt;}
.yc4{bottom:156.546907pt;}
.y40{bottom:160.386933pt;}
.yf0{bottom:165.507067pt;}
.yd7{bottom:166.146933pt;}
.y145{bottom:169.986133pt;}
.y100{bottom:173.506933pt;}
.y11b{bottom:173.507333pt;}
.y65{bottom:174.466800pt;}
.y21{bottom:175.747067pt;}
.yc3{bottom:184.066640pt;}
.y3f{bottom:187.907200pt;}
.y144{bottom:188.226267pt;}
.yef{bottom:193.026800pt;}
.y86{bottom:193.346667pt;}
.yd6{bottom:193.986533pt;}
.yff{bottom:201.026667pt;}
.y11a{bottom:201.027067pt;}
.y64{bottom:201.986533pt;}
.y20{bottom:203.266800pt;}
.y143{bottom:206.786133pt;}
.yc2{bottom:211.906773pt;}
.y3e{bottom:215.747333pt;}
.yee{bottom:220.547067pt;}
.yd5{bottom:221.506800pt;}
.y142{bottom:225.026267pt;}
.ya8{bottom:227.267067pt;}
.yfe{bottom:228.546933pt;}
.y119{bottom:228.547333pt;}
.y63{bottom:229.826667pt;}
.y1f{bottom:231.106933pt;}
.yc1{bottom:239.426507pt;}
.y3d{bottom:243.267067pt;}
.y141{bottom:243.586133pt;}
.y85{bottom:244.866400pt;}
.yed{bottom:248.413733pt;}
.yd4{bottom:249.053200pt;}
.ya7{bottom:254.814000pt;}
.yfd{bottom:256.413600pt;}
.y118{bottom:256.414000pt;}
.y62{bottom:257.373600pt;}
.y1e{bottom:258.653333pt;}
.y140{bottom:261.852800pt;}
.yc0{bottom:266.973440pt;}
.y3c{bottom:270.814000pt;}
.y84{bottom:272.413333pt;}
.yec{bottom:275.933467pt;}
.yd3{bottom:276.573467pt;}
.y13f{bottom:280.413200pt;}
.ya6{bottom:282.333733pt;}
.yfc{bottom:283.933333pt;}
.y117{bottom:283.933733pt;}
.y61{bottom:284.893333pt;}
.y1d{bottom:286.173067pt;}
.ybf{bottom:294.493173pt;}
.y3b{bottom:298.333733pt;}
.y13e{bottom:298.652800pt;}
.y83{bottom:299.933067pt;}
.yeb{bottom:303.453200pt;}
.yd2{bottom:304.413600pt;}
.ya5{bottom:309.853467pt;}
.y116{bottom:311.453467pt;}
.y60{bottom:312.413600pt;}
.y1c{bottom:313.692800pt;}
.y13d{bottom:317.213200pt;}
.ybe{bottom:322.333307pt;}
.yfb{bottom:325.853067pt;}
.y3a{bottom:326.173867pt;}
.y82{bottom:327.452800pt;}
.yea{bottom:330.973467pt;}
.yd1{bottom:331.933333pt;}
.y13c{bottom:335.452800pt;}
.y115{bottom:338.973733pt;}
.y5f{bottom:340.253200pt;}
.yfa{bottom:341.213467pt;}
.y1b{bottom:341.532933pt;}
.ybd{bottom:349.853040pt;}
.ya4{bottom:351.773733pt;}
.y39{bottom:353.693600pt;}
.y13b{bottom:354.013200pt;}
.y81{bottom:355.292933pt;}
.yf9{bottom:356.573333pt;}
.ye9{bottom:358.813600pt;}
.yd0{bottom:359.453067pt;}
.y114{bottom:366.853467pt;}
.ya3{bottom:367.173733pt;}
.y5e{bottom:367.813600pt;}
.y1a{bottom:369.092800pt;}
.yf8{bottom:371.653067pt;}
.y38{bottom:371.973867pt;}
.y13a{bottom:372.292933pt;}
.ybc{bottom:377.413440pt;}
.ya2{bottom:382.533600pt;}
.y80{bottom:382.852800pt;}
.ye8{bottom:386.373467pt;}
.ycf{bottom:387.013467pt;}
.y37{bottom:389.573867pt;}
.y139{bottom:390.852800pt;}
.y113{bottom:394.373733pt;}
.y5d{bottom:395.333333pt;}
.y19{bottom:396.612533pt;}
.ya1{bottom:397.893467pt;}
.yf7{bottom:402.693200pt;}
.ybb{bottom:404.933173pt;}
.y36{bottom:404.933733pt;}
.y138{bottom:409.092933pt;}
.y7f{bottom:410.373067pt;}
.ya0{bottom:413.253333pt;}
.ye7{bottom:413.893200pt;}
.yce{bottom:414.853067pt;}
.yf6{bottom:417.733333pt;}
.y35{bottom:420.293600pt;}
.y112{bottom:421.893467pt;}
.y18{bottom:424.132267pt;}
.y137{bottom:427.652800pt;}
.y9f{bottom:428.613733pt;}
.yba{bottom:432.773307pt;}
.yf5{bottom:433.093200pt;}
.y34{bottom:435.653467pt;}
.y7e{bottom:437.892800pt;}
.ye6{bottom:441.413467pt;}
.ycd{bottom:442.373333pt;}
.y9e{bottom:443.973600pt;}
.y136{bottom:445.892933pt;}
.y5c{bottom:447.173467pt;}
.yf4{bottom:448.453067pt;}
.y111{bottom:449.413733pt;}
.y17{bottom:451.972400pt;}
.y33{bottom:451.973733pt;}
.y9d{bottom:459.333467pt;}
.yb9{bottom:460.293040pt;}
.y135{bottom:464.452800pt;}
.y7d{bottom:465.732933pt;}
.ye5{bottom:468.933200pt;}
.ycc{bottom:469.893067pt;}
.y32{bottom:470.213867pt;}
.y110{bottom:476.933467pt;}
.y16{bottom:479.492133pt;}
.y134{bottom:482.719467pt;}
.yb8{bottom:487.839973pt;}
.y31{bottom:488.800267pt;}
.y7c{bottom:493.279867pt;}
.ye4{bottom:496.799867pt;}
.ycb{bottom:497.440000pt;}
.y5b{bottom:498.719867pt;}
.y133{bottom:500.959600pt;}
.y10f{bottom:504.800133pt;}
.y15{bottom:507.039067pt;}
.y30{bottom:507.040400pt;}
.y9c{bottom:508.319867pt;}
.yb7{bottom:515.359707pt;}
.y5a{bottom:516.960000pt;}
.y132{bottom:519.519467pt;}
.y7b{bottom:521.759600pt;}
.ye3{bottom:524.319600pt;}
.yca{bottom:524.959733pt;}
.y2f{bottom:525.280533pt;}
.y10e{bottom:532.319867pt;}
.y14{bottom:534.559333pt;}
.y59{bottom:535.519867pt;}
.y9b{bottom:535.840133pt;}
.y131{bottom:537.759600pt;}
.yb6{bottom:542.879973pt;}
.y2e{bottom:543.840400pt;}
.y7a{bottom:549.599733pt;}
.y15f{bottom:552.799600pt;}
.yc9{bottom:552.799867pt;}
.y58{bottom:554.080267pt;}
.y130{bottom:556.319467pt;}
.y10d{bottom:559.840133pt;}
.y13{bottom:562.079600pt;}
.y2d{bottom:562.080533pt;}
.y9a{bottom:563.359867pt;}
.yb5{bottom:570.719573pt;}
.y15e{bottom:571.039733pt;}
.y57{bottom:571.680267pt;}
.y12f{bottom:574.559600pt;}
.ye2{bottom:576.159733pt;}
.y79{bottom:578.399733pt;}
.yc8{bottom:580.319600pt;}
.y2c{bottom:580.640400pt;}
.y10c{bottom:587.359867pt;}
.y56{bottom:587.360000pt;}
.y15d{bottom:589.599600pt;}
.y12{bottom:589.919200pt;}
.y99{bottom:591.200000pt;}
.y12e{bottom:593.119467pt;}
.yb4{bottom:598.266507pt;}
.y55{bottom:605.946667pt;}
.y78{bottom:606.906533pt;}
.y15c{bottom:607.866267pt;}
.yc7{bottom:607.866533pt;}
.y11{bottom:608.186400pt;}
.y2b{bottom:608.187333pt;}
.y12d{bottom:611.386133pt;}
.y10b{bottom:615.226533pt;}
.y98{bottom:618.746933pt;}
.y54{bottom:624.186667pt;}
.yb3{bottom:625.786240pt;}
.y15b{bottom:626.426133pt;}
.y10{bottom:626.746267pt;}
.ye1{bottom:627.386267pt;}
.y12c{bottom:629.946533pt;}
.y77{bottom:635.386267pt;}
.y2a{bottom:635.707067pt;}
.y53{bottom:642.746667pt;}
.y10a{bottom:642.746800pt;}
.y15a{bottom:644.666267pt;}
.y97{bottom:646.266667pt;}
.y12b{bottom:648.186667pt;}
.yb2{bottom:653.306507pt;}
.yf{bottom:654.266000pt;}
.ye0{bottom:655.226400pt;}
.y52{bottom:660.986667pt;}
.y159{bottom:663.226133pt;}
.y76{bottom:663.226400pt;}
.y29{bottom:663.547200pt;}
.y12a{bottom:666.746533pt;}
.y109{bottom:670.266533pt;}
.y96{bottom:673.786400pt;}
.y51{bottom:679.546667pt;}
.yb1{bottom:681.146640pt;}
.y158{bottom:681.466267pt;}
.ye{bottom:681.786267pt;}
.ydf{bottom:682.746667pt;}
.y129{bottom:684.986133pt;}
.y75{bottom:690.746667pt;}
.y28{bottom:691.066933pt;}
.y50{bottom:697.786667pt;}
.y108{bottom:697.786800pt;}
.y157{bottom:700.026133pt;}
.y95{bottom:701.626533pt;}
.y128{bottom:703.546533pt;}
.yb0{bottom:708.666373pt;}
.yd{bottom:709.306533pt;}
.yde{bottom:710.266400pt;}
.y4f{bottom:716.386667pt;}
.y156{bottom:718.306400pt;}
.y74{bottom:718.306533pt;}
.y27{bottom:718.626800pt;}
.y127{bottom:721.826267pt;}
.y107{bottom:725.666533pt;}
.yaf{bottom:734.306507pt;}
.y4e{bottom:734.626667pt;}
.y155{bottom:736.866267pt;}
.ydd{bottom:737.826267pt;}
.yc{bottom:739.426267pt;}
.y126{bottom:740.386133pt;}
.y94{bottom:743.586400pt;}
.y73{bottom:745.826267pt;}
.y26{bottom:746.147067pt;}
.yae{bottom:746.466400pt;}
.y4d{bottom:753.186667pt;}
.y106{bottom:753.186800pt;}
.y154{bottom:755.106400pt;}
.y125{bottom:758.626267pt;}
.y93{bottom:758.946800pt;}
.ydc{bottom:765.666400pt;}
.y4c{bottom:771.426667pt;}
.yb{bottom:771.746533pt;}
.y153{bottom:773.666267pt;}
.y72{bottom:773.666400pt;}
.y92{bottom:773.986400pt;}
.y25{bottom:773.986667pt;}
.y124{bottom:777.186667pt;}
.y105{bottom:780.706533pt;}
.y91{bottom:789.346800pt;}
.y4b{bottom:789.986667pt;}
.y152{bottom:791.906400pt;}
.ydb{bottom:793.186667pt;}
.y123{bottom:795.426267pt;}
.y71{bottom:801.186667pt;}
.ya{bottom:801.506400pt;}
.y90{bottom:804.706667pt;}
.y104{bottom:808.226267pt;}
.y4a{bottom:808.226667pt;}
.y151{bottom:810.466267pt;}
.y122{bottom:813.986133pt;}
.y8f{bottom:820.066533pt;}
.y49{bottom:826.786667pt;}
.y70{bottom:828.706400pt;}
.y9{bottom:829.026133pt;}
.y121{bottom:832.226267pt;}
.y8e{bottom:835.453467pt;}
.y150{bottom:847.292800pt;}
.y120{bottom:850.813200pt;}
.y8d{bottom:850.813333pt;}
.y6f{bottom:856.252800pt;}
.y8{bottom:856.573067pt;}
.y103{bottom:860.413200pt;}
.y14f{bottom:865.532933pt;}
.y8c{bottom:866.173200pt;}
.y11f{bottom:869.052800pt;}
.y48{bottom:869.373200pt;}
.y14e{bottom:884.092800pt;}
.y6e{bottom:884.092933pt;}
.y7{bottom:884.413200pt;}
.y11e{bottom:887.613200pt;}
.y14d{bottom:902.332933pt;}
.y11d{bottom:905.853333pt;}
.y6d{bottom:911.613200pt;}
.y47{bottom:911.933067pt;}
.y6{bottom:911.933467pt;}
.y8b{bottom:915.133067pt;}
.y14c{bottom:920.892800pt;}
.y11c{bottom:924.413200pt;}
.y6c{bottom:939.132933pt;}
.y46{bottom:939.133067pt;}
.y5{bottom:939.453733pt;}
.y8a{bottom:942.652800pt;}
.y14b{bottom:957.732933pt;}
.y6b{bottom:966.692800pt;}
.y45{bottom:966.692933pt;}
.y4{bottom:967.013600pt;}
.y14a{bottom:975.973067pt;}
.yad{bottom:981.733067pt;}
.y6a{bottom:994.532933pt;}
.y44{bottom:994.853333pt;}
.y3{bottom:994.853733pt;}
.yac{bottom:997.092933pt;}
.y43{bottom:1019.813200pt;}
.y42{bottom:1034.853333pt;}
.y2{bottom:1047.973467pt;}
.y1{bottom:1063.333333pt;}
.h8{height:23.604480pt;}
.h2{height:36.718080pt;}
.h9{height:46.593750pt;}
.h5{height:50.480640pt;}
.h3{height:59.904000pt;}
.h6{height:60.096000pt;}
.h7{height:61.423787pt;}
.h4{height:69.488640pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:113.312000pt;}
.x6{left:126.144240pt;}
.x8{left:160.707040pt;}
.x10{left:184.385200pt;}
.x11{left:208.412280pt;}
.x3{left:246.173467pt;}
.x12{left:264.413200pt;}
.xb{left:267.613573pt;}
.x7{left:276.933573pt;}
.x4{left:297.413573pt;}
.x9{left:358.560373pt;}
.xf{left:382.559627pt;}
.xa{left:397.920347pt;}
.xc{left:415.840240pt;}
.x5{left:439.546907pt;}
.xe{left:537.506400pt;}
.x14{left:703.653333pt;}
.xd{left:711.013333pt;}
.x13{left:715.493333pt;}
.x1{left:718.373333pt;}
}




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