
    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_42b5faca70a7fb5f3977e91b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_91365d256655614379e2ce71.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_ea16299e8b049c6a3137fbdc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.853000;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_3c8f1ac5260a246f4f2be152.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_df5cfb3be4b4359f4e41686f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_896be99db1cbe6ac17771637.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688000;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);}
.v3{vertical-align:-22.854000px;}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.lsb{letter-spacing:0.000000px;}
.lse{letter-spacing:0.004200px;}
.ls0{letter-spacing:1.442887px;}
.ls6{letter-spacing:1.448887px;}
.ls7{letter-spacing:2.988600px;}
.ls4{letter-spacing:5.123296px;}
.ls5{letter-spacing:5.161631px;}
.ls2{letter-spacing:5.161969px;}
.ls3{letter-spacing:5.162887px;}
.ls1{letter-spacing:5.164620px;}
.ls13{letter-spacing:13.282200px;}
.ls11{letter-spacing:13.288200px;}
.ls9{letter-spacing:14.942100px;}
.ls8{letter-spacing:14.948100px;}
.lsa{letter-spacing:16.435200px;}
.lsd{letter-spacing:17.764200px;}
.ls10{letter-spacing:19.794305px;}
.ls12{letter-spacing:19.800305px;}
.lsf{letter-spacing:20.992200px;}
.lsc{letter-spacing:24.282305px;}
.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;}
}
.ws6{word-spacing:-25.781746px;}
.ws2{word-spacing:-20.658450px;}
.ws41{word-spacing:-17.932800px;}
.ws1d{word-spacing:-14.943900px;}
.ws9{word-spacing:-10.460700px;}
.ws1{word-spacing:-5.164620px;}
.ws2c{word-spacing:-2.391024px;}
.ws11{word-spacing:-2.151922px;}
.ws2f{word-spacing:-1.613941px;}
.ws25{word-spacing:-1.554166px;}
.wsa{word-spacing:-1.496692px;}
.wsb{word-spacing:-1.494692px;}
.wse{word-spacing:-1.434614px;}
.ws3a{word-spacing:-1.195512px;}
.ws2e{word-spacing:-1.016185px;}
.ws31{word-spacing:-0.956410px;}
.ws39{word-spacing:-0.777083px;}
.ws24{word-spacing:-0.597756px;}
.ws21{word-spacing:-0.418429px;}
.ws14{word-spacing:-0.358654px;}
.ws3b{word-spacing:-0.298878px;}
.ws27{word-spacing:-0.179327px;}
.ws1b{word-spacing:-0.059776px;}
.ws10{word-spacing:-0.053798px;}
.ws8{word-spacing:0.000000px;}
.ws3c{word-spacing:0.298878px;}
.ws19{word-spacing:0.358654px;}
.ws2a{word-spacing:0.597756px;}
.ws3e{word-spacing:0.777083px;}
.wsf{word-spacing:0.836858px;}
.ws43{word-spacing:0.956410px;}
.ws2b{word-spacing:1.255288px;}
.ws32{word-spacing:1.315063px;}
.ws22{word-spacing:1.972595px;}
.ws1e{word-spacing:2.092146px;}
.ws35{word-spacing:2.211697px;}
.ws29{word-spacing:2.331248px;}
.ws38{word-spacing:2.630126px;}
.ws12{word-spacing:2.809453px;}
.ws17{word-spacing:2.988780px;}
.ws37{word-spacing:3.108331px;}
.ws16{word-spacing:3.227882px;}
.ws1f{word-spacing:3.407209px;}
.ws36{word-spacing:3.646312px;}
.wsd{word-spacing:3.825638px;}
.ws30{word-spacing:3.885414px;}
.ws40{word-spacing:3.945190px;}
.ws23{word-spacing:4.184292px;}
.ws1c{word-spacing:4.423394px;}
.ws20{word-spacing:4.542946px;}
.ws28{word-spacing:4.841824px;}
.ws5{word-spacing:5.164620px;}
.ws15{word-spacing:5.618906px;}
.ws44{word-spacing:5.798233px;}
.ws1a{word-spacing:6.037336px;}
.ws2d{word-spacing:6.097111px;}
.ws34{word-spacing:6.216662px;}
.ws13{word-spacing:7.890379px;}
.ws18{word-spacing:7.950155px;}
.ws33{word-spacing:8.069706px;}
.ws26{word-spacing:8.189257px;}
.ws3f{word-spacing:8.906564px;}
.ws4{word-spacing:10.248304px;}
.ws7{word-spacing:10.283179px;}
.ws0{word-spacing:10.283467px;}
.ws3{word-spacing:11.362164px;}
.ws42{word-spacing:14.465695px;}
.ws3d{word-spacing:14.943900px;}
.ws46{word-spacing:16.976270px;}
.ws45{word-spacing:17.036046px;}
.wsc{word-spacing:53.798400px;}
._15{margin-left:-8.308808px;}
._12{margin-left:-5.977560px;}
._0{margin-left:-4.049056px;}
._1{margin-left:-2.644282px;}
._4{margin-left:-1.494390px;}
._3{width:2.986234px;}
._7{width:4.115440px;}
._2{width:5.123296px;}
._6{width:6.690866px;}
._d{width:11.775793px;}
._5{width:14.713254px;}
._c{width:16.669843px;}
._8{width:17.932680px;}
._9{width:19.501001px;}
._b{width:21.413820px;}
._1d{width:22.480214px;}
._19{width:23.748127px;}
._10{width:25.030292px;}
._16{width:26.420815px;}
._e{width:28.258174px;}
._a{width:29.990137px;}
._14{width:31.382190px;}
._1b{width:33.414560px;}
._18{width:34.567511px;}
._11{width:35.984911px;}
._f{width:42.440676px;}
._1a{width:44.668058px;}
._1c{width:47.402051px;}
._1e{width:52.841630px;}
._17{width:59.775600px;}
._13{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:82.633800px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y45{bottom:63.168000px;}
.y44{bottom:108.000000px;}
.y1b{bottom:113.713500px;}
.ydc{bottom:124.363500px;}
.y1a{bottom:129.990000px;}
.y6c{bottom:136.785000px;}
.yaf{bottom:137.280000px;}
.y43{bottom:137.311500px;}
.y8e{bottom:138.634500px;}
.ydb{bottom:140.727000px;}
.y6b{bottom:153.148500px;}
.y8d{bottom:154.998000px;}
.yfd{bottom:164.004000px;}
.yda{bottom:170.062500px;}
.y8c{bottom:171.361500px;}
.yae{bottom:175.284000px;}
.y42{bottom:175.396500px;}
.y19{bottom:178.183500px;}
.yd9{bottom:186.426000px;}
.y6a{bottom:189.916500px;}
.y41{bottom:191.760000px;}
.yfc{bottom:196.761000px;}
.yd8{bottom:202.789500px;}
.yad{bottom:204.564000px;}
.y69{bottom:206.280000px;}
.y18{bottom:211.849500px;}
.y8b{bottom:212.754000px;}
.yfb{bottom:213.124500px;}
.yac{bottom:220.927500px;}
.y40{bottom:221.071500px;}
.y68{bottom:222.643500px;}
.yfa{bottom:229.489500px;}
.y3f{bottom:237.435000px;}
.yd7{bottom:240.934500px;}
.y8a{bottom:243.388500px;}
.yf9{bottom:245.853000px;}
.y67{bottom:251.428500px;}
.yd6{bottom:257.298000px;}
.yab{bottom:258.933000px;}
.y89{bottom:259.752000px;}
.y17{bottom:260.824500px;}
.yf8{bottom:262.216500px;}
.y66{bottom:267.792000px;}
.y3e{bottom:275.520000px;}
.y88{bottom:276.115500px;}
.yd5{bottom:282.727500px;}
.y65{bottom:284.155500px;}
.yf7{bottom:286.798500px;}
.yaa{bottom:288.211500px;}
.y3d{bottom:291.883500px;}
.y16{bottom:294.492000px;}
.y64{bottom:300.519000px;}
.yf6{bottom:303.162000px;}
.ya9{bottom:304.575000px;}
.yd4{bottom:308.155500px;}
.y87{bottom:317.508000px;}
.yf5{bottom:319.525500px;}
.y3c{bottom:321.195000px;}
.yd3{bottom:324.520500px;}
.yf4{bottom:335.890500px;}
.y63{bottom:336.448500px;}
.ya8{bottom:341.247000px;}
.yd2{bottom:343.150500px;}
.y15{bottom:343.465500px;}
.y86{bottom:348.142500px;}
.y3b{bottom:359.280000px;}
.yd1{bottom:359.514000px;}
.yf3{bottom:360.472500px;}
.y85{bottom:364.506000px;}
.y14{bottom:377.133000px;}
.yd0{bottom:378.144000px;}
.y84{bottom:380.869500px;}
.y62{bottom:381.136500px;}
.yf2{bottom:385.056000px;}
.ya7{bottom:387.172500px;}
.y3a{bottom:388.591500px;}
.y13{bottom:393.496500px;}
.ycf{bottom:394.507500px;}
.y39{bottom:404.955000px;}
.y61{bottom:409.921500px;}
.yce{bottom:410.871000px;}
.yf1{bottom:415.440000px;}
.ya6{bottom:416.451000px;}
.y38{bottom:421.318500px;}
.y83{bottom:422.262000px;}
.y11c{bottom:424.558500px;}
.y60{bottom:426.285000px;}
.ycd{bottom:427.234500px;}
.ya5{bottom:432.814500px;}
.y11b{bottom:440.922000px;}
.y12{bottom:442.470000px;}
.y5f{bottom:442.648500px;}
.ycc{bottom:443.598000px;}
.ya4{bottom:449.178000px;}
.yf0{bottom:450.741000px;}
.y82{bottom:452.896500px;}
.y11{bottom:458.833500px;}
.y5e{bottom:459.012000px;}
.y37{bottom:459.403500px;}
.ycb{bottom:462.228000px;}
.y11a{bottom:463.263000px;}
.ya3{bottom:465.541500px;}
.y81{bottom:469.260000px;}
.y10{bottom:475.197000px;}
.y36{bottom:475.767000px;}
.yca{bottom:478.591500px;}
.y119{bottom:479.626500px;}
.ya2{bottom:481.905000px;}
.y80{bottom:485.623500px;}
.yf{bottom:491.562000px;}
.yef{bottom:494.385000px;}
.y5d{bottom:495.780000px;}
.yc9{bottom:497.221500px;}
.y118{bottom:501.967500px;}
.y35{bottom:505.078500px;}
.y5c{bottom:512.143500px;}
.yc8{bottom:513.585000px;}
.y117{bottom:518.331000px;}
.ya1{bottom:519.910500px;}
.yee{bottom:522.751500px;}
.ye{bottom:525.228000px;}
.y7f{bottom:527.016000px;}
.yc7{bottom:529.948500px;}
.ya0{bottom:536.274000px;}
.yed{bottom:539.115000px;}
.y116{bottom:540.673500px;}
.y5b{bottom:540.928500px;}
.y34{bottom:543.163500px;}
.y7e{bottom:543.379500px;}
.yc6{bottom:546.313500px;}
.y115{bottom:557.037000px;}
.y5a{bottom:557.292000px;}
.y9f{bottom:565.554000px;}
.yc5{bottom:567.210000px;}
.y33{bottom:572.475000px;}
.y7d{bottom:574.014000px;}
.yd{bottom:574.203000px;}
.yec{bottom:574.837500px;}
.y114{bottom:579.378000px;}
.yc4{bottom:583.573500px;}
.y7c{bottom:590.377500px;}
.y59{bottom:594.060000px;}
.y113{bottom:595.741500px;}
.yeb{bottom:603.204000px;}
.y9e{bottom:603.558000px;}
.yc3{bottom:604.470000px;}
.y32{bottom:610.560000px;}
.yc{bottom:617.455500px;}
.yea{bottom:619.567500px;}
.yc2{bottom:620.833500px;}
.y112{bottom:622.192500px;}
.y58{bottom:622.845000px;}
.y31{bottom:626.923500px;}
.y7b{bottom:631.770000px;}
.y9d{bottom:632.838000px;}
.ye9{bottom:635.931000px;}
.yc1{bottom:637.197000px;}
.y57{bottom:639.208500px;}
.y30{bottom:643.287000px;}
.y9c{bottom:649.201500px;}
.yc0{bottom:653.560500px;}
.y2f{bottom:659.650500px;}
.y7a{bottom:662.404500px;}
.y111{bottom:664.782000px;}
.ye8{bottom:671.655000px;}
.ybf{bottom:674.457000px;}
.y56{bottom:675.976500px;}
.y2e{bottom:676.014000px;}
.y110{bottom:681.145500px;}
.y9b{bottom:687.207000px;}
.ye7{bottom:688.018500px;}
.ybe{bottom:690.820500px;}
.y2d{bottom:692.377500px;}
.y10f{bottom:703.486500px;}
.y79{bottom:703.797000px;}
.y55{bottom:704.761500px;}
.ybd{bottom:707.184000px;}
.ye6{bottom:716.385000px;}
.y9a{bottom:716.485500px;}
.y2c{bottom:721.689000px;}
.yb{bottom:722.691000px;}
.y10e{bottom:725.829000px;}
.ybc{bottom:732.613500px;}
.ye5{bottom:732.748500px;}
.y78{bottom:734.430000px;}
.y2b{bottom:738.052500px;}
.y54{bottom:741.529500px;}
.y10d{bottom:742.192500px;}
.y77{bottom:750.793500px;}
.y99{bottom:753.157500px;}
.y2a{bottom:754.416000px;}
.y10c{bottom:760.050000px;}
.ybb{bottom:766.984500px;}
.y76{bottom:767.158500px;}
.ye4{bottom:768.471000px;}
.y53{bottom:770.314500px;}
.y29{bottom:770.779500px;}
.y10b{bottom:776.413500px;}
.yba{bottom:783.348000px;}
.y52{bottom:786.678000px;}
.y28{bottom:787.143000px;}
.y10a{bottom:794.271000px;}
.ya{bottom:795.150000px;}
.ye3{bottom:796.837500px;}
.y98{bottom:799.083000px;}
.yb9{bottom:799.711500px;}
.y9{bottom:806.089500px;}
.y75{bottom:808.551000px;}
.y109{bottom:810.634500px;}
.y8{bottom:811.513500px;}
.yb8{bottom:816.075000px;}
.y51{bottom:823.446000px;}
.y74{bottom:824.914500px;}
.y27{bottom:825.228000px;}
.y108{bottom:826.999500px;}
.y7{bottom:827.877000px;}
.y97{bottom:828.361500px;}
.yb7{bottom:832.438500px;}
.ye2{bottom:832.561500px;}
.y50{bottom:839.809500px;}
.y107{bottom:843.363000px;}
.y6{bottom:844.240500px;}
.y96{bottom:844.725000px;}
.y26{bottom:854.539500px;}
.y73{bottom:855.547500px;}
.yb6{bottom:857.022000px;}
.y106{bottom:859.726500px;}
.y5{bottom:860.604000px;}
.ye1{bottom:860.928000px;}
.y4f{bottom:868.594500px;}
.y72{bottom:871.912500px;}
.yb5{bottom:873.385500px;}
.y105{bottom:877.584000px;}
.y95{bottom:882.730500px;}
.y4e{bottom:884.958000px;}
.y4{bottom:886.488000px;}
.y71{bottom:888.276000px;}
.yb4{bottom:889.749000px;}
.y25{bottom:892.624500px;}
.y104{bottom:893.947500px;}
.ye0{bottom:896.650500px;}
.y4d{bottom:901.321500px;}
.y3{bottom:902.851500px;}
.yb3{bottom:906.112500px;}
.y103{bottom:911.806500px;}
.y94{bottom:912.009000px;}
.y24{bottom:917.208000px;}
.ydf{bottom:925.017000px;}
.y102{bottom:928.170000px;}
.y93{bottom:928.374000px;}
.y70{bottom:929.668500px;}
.yb2{bottom:930.694500px;}
.y23{bottom:933.571500px;}
.y4c{bottom:938.089500px;}
.y101{bottom:944.533500px;}
.y22{bottom:949.935000px;}
.yb1{bottom:955.278000px;}
.y6f{bottom:960.301500px;}
.yde{bottom:960.319500px;}
.y100{bottom:960.897000px;}
.y21{bottom:966.298500px;}
.y92{bottom:966.378000px;}
.y4b{bottom:966.874500px;}
.y6e{bottom:976.665000px;}
.yff{bottom:980.248500px;}
.y91{bottom:982.741500px;}
.y4a{bottom:983.238000px;}
.yb0{bottom:986.631000px;}
.y2{bottom:991.944000px;}
.y20{bottom:995.610000px;}
.yfe{bottom:996.612000px;}
.y49{bottom:999.601500px;}
.ydd{bottom:1003.962000px;}
.y1f{bottom:1011.973500px;}
.y90{bottom:1012.021500px;}
.y48{bottom:1015.965000px;}
.y6d{bottom:1018.057500px;}
.y1{bottom:1021.831500px;}
.y1e{bottom:1028.337000px;}
.y8f{bottom:1028.385000px;}
.y47{bottom:1032.328500px;}
.y46{bottom:1048.692000px;}
.y1d{bottom:1065.055500px;}
.y1c{bottom:1122.739500px;}
.h8{height:24.675533px;}
.h5{height:28.787846px;}
.h6{height:41.125613px;}
.ha{height:41.725613px;}
.h3{height:42.620003px;}
.h9{height:44.831700px;}
.h4{height:50.483846px;}
.h7{height:51.144346px;}
.h2{height:51.529916px;}
.h1{height:71.065171px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.xe{left:132.210000px;}
.x11{left:143.118000px;}
.x3{left:145.269000px;}
.x12{left:169.689000px;}
.x1{left:179.520000px;}
.x17{left:190.431000px;}
.x13{left:191.686500px;}
.x16{left:194.586000px;}
.x18{left:196.393500px;}
.x14{left:198.739500px;}
.x15{left:214.102500px;}
.x19{left:260.680500px;}
.xf{left:267.219000px;}
.xb{left:277.126500px;}
.x8{left:298.144500px;}
.x5{left:299.265000px;}
.x2{left:332.623500px;}
.x9{left:336.132000px;}
.x6{left:353.997000px;}
.x1a{left:384.288000px;}
.x7{left:403.378500px;}
.xc{left:421.020000px;}
.x10{left:455.263500px;}
.xa{left:574.396500px;}
.x4{left:739.047000px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.lsb{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003733pt;}
.ls0{letter-spacing:1.282566pt;}
.ls6{letter-spacing:1.287900pt;}
.ls7{letter-spacing:2.656533pt;}
.ls4{letter-spacing:4.554041pt;}
.ls5{letter-spacing:4.588116pt;}
.ls2{letter-spacing:4.588417pt;}
.ls3{letter-spacing:4.589233pt;}
.ls1{letter-spacing:4.590773pt;}
.ls13{letter-spacing:11.806400pt;}
.ls11{letter-spacing:11.811733pt;}
.ls9{letter-spacing:13.281867pt;}
.ls8{letter-spacing:13.287200pt;}
.lsa{letter-spacing:14.609067pt;}
.lsd{letter-spacing:15.790400pt;}
.ls10{letter-spacing:17.594938pt;}
.ls12{letter-spacing:17.600271pt;}
.lsf{letter-spacing:18.659733pt;}
.lsc{letter-spacing:21.584271pt;}
.ws6{word-spacing:-22.917107pt;}
.ws2{word-spacing:-18.363067pt;}
.ws41{word-spacing:-15.940267pt;}
.ws1d{word-spacing:-13.283467pt;}
.ws9{word-spacing:-9.298400pt;}
.ws1{word-spacing:-4.590773pt;}
.ws2c{word-spacing:-2.125355pt;}
.ws11{word-spacing:-1.912819pt;}
.ws2f{word-spacing:-1.434614pt;}
.ws25{word-spacing:-1.381481pt;}
.wsa{word-spacing:-1.330393pt;}
.wsb{word-spacing:-1.328615pt;}
.wse{word-spacing:-1.275213pt;}
.ws3a{word-spacing:-1.062677pt;}
.ws2e{word-spacing:-0.903276pt;}
.ws31{word-spacing:-0.850142pt;}
.ws39{word-spacing:-0.690740pt;}
.ws24{word-spacing:-0.531339pt;}
.ws21{word-spacing:-0.371937pt;}
.ws14{word-spacing:-0.318803pt;}
.ws3b{word-spacing:-0.265669pt;}
.ws27{word-spacing:-0.159402pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws10{word-spacing:-0.047821pt;}
.ws8{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.265669pt;}
.ws19{word-spacing:0.318803pt;}
.ws2a{word-spacing:0.531339pt;}
.ws3e{word-spacing:0.690740pt;}
.wsf{word-spacing:0.743874pt;}
.ws43{word-spacing:0.850142pt;}
.ws2b{word-spacing:1.115811pt;}
.ws32{word-spacing:1.168945pt;}
.ws22{word-spacing:1.753418pt;}
.ws1e{word-spacing:1.859685pt;}
.ws35{word-spacing:1.965953pt;}
.ws29{word-spacing:2.072221pt;}
.ws38{word-spacing:2.337890pt;}
.ws12{word-spacing:2.497292pt;}
.ws17{word-spacing:2.656693pt;}
.ws37{word-spacing:2.762961pt;}
.ws16{word-spacing:2.869229pt;}
.ws1f{word-spacing:3.028630pt;}
.ws36{word-spacing:3.241166pt;}
.wsd{word-spacing:3.400567pt;}
.ws30{word-spacing:3.453701pt;}
.ws40{word-spacing:3.506835pt;}
.ws23{word-spacing:3.719371pt;}
.ws1c{word-spacing:3.931906pt;}
.ws20{word-spacing:4.038174pt;}
.ws28{word-spacing:4.303843pt;}
.ws5{word-spacing:4.590773pt;}
.ws15{word-spacing:4.994583pt;}
.ws44{word-spacing:5.153985pt;}
.ws1a{word-spacing:5.366521pt;}
.ws2d{word-spacing:5.419654pt;}
.ws34{word-spacing:5.525922pt;}
.ws13{word-spacing:7.013670pt;}
.ws18{word-spacing:7.066804pt;}
.ws33{word-spacing:7.173072pt;}
.ws26{word-spacing:7.279340pt;}
.ws3f{word-spacing:7.916946pt;}
.ws4{word-spacing:9.109604pt;}
.ws7{word-spacing:9.140603pt;}
.ws0{word-spacing:9.140859pt;}
.ws3{word-spacing:10.099701pt;}
.ws42{word-spacing:12.858396pt;}
.ws3d{word-spacing:13.283467pt;}
.ws46{word-spacing:15.090018pt;}
.ws45{word-spacing:15.143152pt;}
.wsc{word-spacing:47.820800pt;}
._15{margin-left:-7.385607pt;}
._12{margin-left:-5.313387pt;}
._0{margin-left:-3.599161pt;}
._1{margin-left:-2.350473pt;}
._4{margin-left:-1.328347pt;}
._3{width:2.654430pt;}
._7{width:3.658169pt;}
._2{width:4.554041pt;}
._6{width:5.947437pt;}
._d{width:10.467372pt;}
._5{width:13.078448pt;}
._c{width:14.817638pt;}
._8{width:15.940160pt;}
._9{width:17.334223pt;}
._b{width:19.034507pt;}
._1d{width:19.982412pt;}
._19{width:21.109446pt;}
._10{width:22.249148pt;}
._16{width:23.485169pt;}
._e{width:25.118377pt;}
._a{width:26.657900pt;}
._14{width:27.895280pt;}
._1b{width:29.701831pt;}
._18{width:30.726676pt;}
._11{width:31.986588pt;}
._f{width:37.725045pt;}
._1a{width:39.704940pt;}
._1c{width:42.135156pt;}
._1e{width:46.970338pt;}
._17{width:53.133867pt;}
._13{width:63.761067pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:73.452267pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:56.149333pt;}
.y44{bottom:96.000000pt;}
.y1b{bottom:101.078667pt;}
.ydc{bottom:110.545333pt;}
.y1a{bottom:115.546667pt;}
.y6c{bottom:121.586667pt;}
.yaf{bottom:122.026667pt;}
.y43{bottom:122.054667pt;}
.y8e{bottom:123.230667pt;}
.ydb{bottom:125.090667pt;}
.y6b{bottom:136.132000pt;}
.y8d{bottom:137.776000pt;}
.yfd{bottom:145.781333pt;}
.yda{bottom:151.166667pt;}
.y8c{bottom:152.321333pt;}
.yae{bottom:155.808000pt;}
.y42{bottom:155.908000pt;}
.y19{bottom:158.385333pt;}
.yd9{bottom:165.712000pt;}
.y6a{bottom:168.814667pt;}
.y41{bottom:170.453333pt;}
.yfc{bottom:174.898667pt;}
.yd8{bottom:180.257333pt;}
.yad{bottom:181.834667pt;}
.y69{bottom:183.360000pt;}
.y18{bottom:188.310667pt;}
.y8b{bottom:189.114667pt;}
.yfb{bottom:189.444000pt;}
.yac{bottom:196.380000pt;}
.y40{bottom:196.508000pt;}
.y68{bottom:197.905333pt;}
.yfa{bottom:203.990667pt;}
.y3f{bottom:211.053333pt;}
.yd7{bottom:214.164000pt;}
.y8a{bottom:216.345333pt;}
.yf9{bottom:218.536000pt;}
.y67{bottom:223.492000pt;}
.yd6{bottom:228.709333pt;}
.yab{bottom:230.162667pt;}
.y89{bottom:230.890667pt;}
.y17{bottom:231.844000pt;}
.yf8{bottom:233.081333pt;}
.y66{bottom:238.037333pt;}
.y3e{bottom:244.906667pt;}
.y88{bottom:245.436000pt;}
.yd5{bottom:251.313333pt;}
.y65{bottom:252.582667pt;}
.yf7{bottom:254.932000pt;}
.yaa{bottom:256.188000pt;}
.y3d{bottom:259.452000pt;}
.y16{bottom:261.770667pt;}
.y64{bottom:267.128000pt;}
.yf6{bottom:269.477333pt;}
.ya9{bottom:270.733333pt;}
.yd4{bottom:273.916000pt;}
.y87{bottom:282.229333pt;}
.yf5{bottom:284.022667pt;}
.y3c{bottom:285.506667pt;}
.yd3{bottom:288.462667pt;}
.yf4{bottom:298.569333pt;}
.y63{bottom:299.065333pt;}
.ya8{bottom:303.330667pt;}
.yd2{bottom:305.022667pt;}
.y15{bottom:305.302667pt;}
.y86{bottom:309.460000pt;}
.y3b{bottom:319.360000pt;}
.yd1{bottom:319.568000pt;}
.yf3{bottom:320.420000pt;}
.y85{bottom:324.005333pt;}
.y14{bottom:335.229333pt;}
.yd0{bottom:336.128000pt;}
.y84{bottom:338.550667pt;}
.y62{bottom:338.788000pt;}
.yf2{bottom:342.272000pt;}
.ya7{bottom:344.153333pt;}
.y3a{bottom:345.414667pt;}
.y13{bottom:349.774667pt;}
.ycf{bottom:350.673333pt;}
.y39{bottom:359.960000pt;}
.y61{bottom:364.374667pt;}
.yce{bottom:365.218667pt;}
.yf1{bottom:369.280000pt;}
.ya6{bottom:370.178667pt;}
.y38{bottom:374.505333pt;}
.y83{bottom:375.344000pt;}
.y11c{bottom:377.385333pt;}
.y60{bottom:378.920000pt;}
.ycd{bottom:379.764000pt;}
.ya5{bottom:384.724000pt;}
.y11b{bottom:391.930667pt;}
.y12{bottom:393.306667pt;}
.y5f{bottom:393.465333pt;}
.ycc{bottom:394.309333pt;}
.ya4{bottom:399.269333pt;}
.yf0{bottom:400.658667pt;}
.y82{bottom:402.574667pt;}
.y11{bottom:407.852000pt;}
.y5e{bottom:408.010667pt;}
.y37{bottom:408.358667pt;}
.ycb{bottom:410.869333pt;}
.y11a{bottom:411.789333pt;}
.ya3{bottom:413.814667pt;}
.y81{bottom:417.120000pt;}
.y10{bottom:422.397333pt;}
.y36{bottom:422.904000pt;}
.yca{bottom:425.414667pt;}
.y119{bottom:426.334667pt;}
.ya2{bottom:428.360000pt;}
.y80{bottom:431.665333pt;}
.yf{bottom:436.944000pt;}
.yef{bottom:439.453333pt;}
.y5d{bottom:440.693333pt;}
.yc9{bottom:441.974667pt;}
.y118{bottom:446.193333pt;}
.y35{bottom:448.958667pt;}
.y5c{bottom:455.238667pt;}
.yc8{bottom:456.520000pt;}
.y117{bottom:460.738667pt;}
.ya1{bottom:462.142667pt;}
.yee{bottom:464.668000pt;}
.ye{bottom:466.869333pt;}
.y7f{bottom:468.458667pt;}
.yc7{bottom:471.065333pt;}
.ya0{bottom:476.688000pt;}
.yed{bottom:479.213333pt;}
.y116{bottom:480.598667pt;}
.y5b{bottom:480.825333pt;}
.y34{bottom:482.812000pt;}
.y7e{bottom:483.004000pt;}
.yc6{bottom:485.612000pt;}
.y115{bottom:495.144000pt;}
.y5a{bottom:495.370667pt;}
.y9f{bottom:502.714667pt;}
.yc5{bottom:504.186667pt;}
.y33{bottom:508.866667pt;}
.y7d{bottom:510.234667pt;}
.yd{bottom:510.402667pt;}
.yec{bottom:510.966667pt;}
.y114{bottom:515.002667pt;}
.yc4{bottom:518.732000pt;}
.y7c{bottom:524.780000pt;}
.y59{bottom:528.053333pt;}
.y113{bottom:529.548000pt;}
.yeb{bottom:536.181333pt;}
.y9e{bottom:536.496000pt;}
.yc3{bottom:537.306667pt;}
.y32{bottom:542.720000pt;}
.yc{bottom:548.849333pt;}
.yea{bottom:550.726667pt;}
.yc2{bottom:551.852000pt;}
.y112{bottom:553.060000pt;}
.y58{bottom:553.640000pt;}
.y31{bottom:557.265333pt;}
.y7b{bottom:561.573333pt;}
.y9d{bottom:562.522667pt;}
.ye9{bottom:565.272000pt;}
.yc1{bottom:566.397333pt;}
.y57{bottom:568.185333pt;}
.y30{bottom:571.810667pt;}
.y9c{bottom:577.068000pt;}
.yc0{bottom:580.942667pt;}
.y2f{bottom:586.356000pt;}
.y7a{bottom:588.804000pt;}
.y111{bottom:590.917333pt;}
.ye8{bottom:597.026667pt;}
.ybf{bottom:599.517333pt;}
.y56{bottom:600.868000pt;}
.y2e{bottom:600.901333pt;}
.y110{bottom:605.462667pt;}
.y9b{bottom:610.850667pt;}
.ye7{bottom:611.572000pt;}
.ybe{bottom:614.062667pt;}
.y2d{bottom:615.446667pt;}
.y10f{bottom:625.321333pt;}
.y79{bottom:625.597333pt;}
.y55{bottom:626.454667pt;}
.ybd{bottom:628.608000pt;}
.ye6{bottom:636.786667pt;}
.y9a{bottom:636.876000pt;}
.y2c{bottom:641.501333pt;}
.yb{bottom:642.392000pt;}
.y10e{bottom:645.181333pt;}
.ybc{bottom:651.212000pt;}
.ye5{bottom:651.332000pt;}
.y78{bottom:652.826667pt;}
.y2b{bottom:656.046667pt;}
.y54{bottom:659.137333pt;}
.y10d{bottom:659.726667pt;}
.y77{bottom:667.372000pt;}
.y99{bottom:669.473333pt;}
.y2a{bottom:670.592000pt;}
.y10c{bottom:675.600000pt;}
.ybb{bottom:681.764000pt;}
.y76{bottom:681.918667pt;}
.ye4{bottom:683.085333pt;}
.y53{bottom:684.724000pt;}
.y29{bottom:685.137333pt;}
.y10b{bottom:690.145333pt;}
.yba{bottom:696.309333pt;}
.y52{bottom:699.269333pt;}
.y28{bottom:699.682667pt;}
.y10a{bottom:706.018667pt;}
.ya{bottom:706.800000pt;}
.ye3{bottom:708.300000pt;}
.y98{bottom:710.296000pt;}
.yb9{bottom:710.854667pt;}
.y9{bottom:716.524000pt;}
.y75{bottom:718.712000pt;}
.y109{bottom:720.564000pt;}
.y8{bottom:721.345333pt;}
.yb8{bottom:725.400000pt;}
.y51{bottom:731.952000pt;}
.y74{bottom:733.257333pt;}
.y27{bottom:733.536000pt;}
.y108{bottom:735.110667pt;}
.y7{bottom:735.890667pt;}
.y97{bottom:736.321333pt;}
.yb7{bottom:739.945333pt;}
.ye2{bottom:740.054667pt;}
.y50{bottom:746.497333pt;}
.y107{bottom:749.656000pt;}
.y6{bottom:750.436000pt;}
.y96{bottom:750.866667pt;}
.y26{bottom:759.590667pt;}
.y73{bottom:760.486667pt;}
.yb6{bottom:761.797333pt;}
.y106{bottom:764.201333pt;}
.y5{bottom:764.981333pt;}
.ye1{bottom:765.269333pt;}
.y4f{bottom:772.084000pt;}
.y72{bottom:775.033333pt;}
.yb5{bottom:776.342667pt;}
.y105{bottom:780.074667pt;}
.y95{bottom:784.649333pt;}
.y4e{bottom:786.629333pt;}
.y4{bottom:787.989333pt;}
.y71{bottom:789.578667pt;}
.yb4{bottom:790.888000pt;}
.y25{bottom:793.444000pt;}
.y104{bottom:794.620000pt;}
.ye0{bottom:797.022667pt;}
.y4d{bottom:801.174667pt;}
.y3{bottom:802.534667pt;}
.yb3{bottom:805.433333pt;}
.y103{bottom:810.494667pt;}
.y94{bottom:810.674667pt;}
.y24{bottom:815.296000pt;}
.ydf{bottom:822.237333pt;}
.y102{bottom:825.040000pt;}
.y93{bottom:825.221333pt;}
.y70{bottom:826.372000pt;}
.yb2{bottom:827.284000pt;}
.y23{bottom:829.841333pt;}
.y4c{bottom:833.857333pt;}
.y101{bottom:839.585333pt;}
.y22{bottom:844.386667pt;}
.yb1{bottom:849.136000pt;}
.y6f{bottom:853.601333pt;}
.yde{bottom:853.617333pt;}
.y100{bottom:854.130667pt;}
.y21{bottom:858.932000pt;}
.y92{bottom:859.002667pt;}
.y4b{bottom:859.444000pt;}
.y6e{bottom:868.146667pt;}
.yff{bottom:871.332000pt;}
.y91{bottom:873.548000pt;}
.y4a{bottom:873.989333pt;}
.yb0{bottom:877.005333pt;}
.y2{bottom:881.728000pt;}
.y20{bottom:884.986667pt;}
.yfe{bottom:885.877333pt;}
.y49{bottom:888.534667pt;}
.ydd{bottom:892.410667pt;}
.y1f{bottom:899.532000pt;}
.y90{bottom:899.574667pt;}
.y48{bottom:903.080000pt;}
.y6d{bottom:904.940000pt;}
.y1{bottom:908.294667pt;}
.y1e{bottom:914.077333pt;}
.y8f{bottom:914.120000pt;}
.y47{bottom:917.625333pt;}
.y46{bottom:932.170667pt;}
.y1d{bottom:946.716000pt;}
.y1c{bottom:997.990667pt;}
.h8{height:21.933807pt;}
.h5{height:25.589197pt;}
.h6{height:36.556100pt;}
.ha{height:37.089434pt;}
.h3{height:37.884447pt;}
.h9{height:39.850400pt;}
.h4{height:44.874530pt;}
.h7{height:45.461641pt;}
.h2{height:45.804370pt;}
.h1{height:63.169041pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.xe{left:117.520000pt;}
.x11{left:127.216000pt;}
.x3{left:129.128000pt;}
.x12{left:150.834667pt;}
.x1{left:159.573333pt;}
.x17{left:169.272000pt;}
.x13{left:170.388000pt;}
.x16{left:172.965333pt;}
.x18{left:174.572000pt;}
.x14{left:176.657333pt;}
.x15{left:190.313333pt;}
.x19{left:231.716000pt;}
.xf{left:237.528000pt;}
.xb{left:246.334667pt;}
.x8{left:265.017333pt;}
.x5{left:266.013333pt;}
.x2{left:295.665333pt;}
.x9{left:298.784000pt;}
.x6{left:314.664000pt;}
.x1a{left:341.589333pt;}
.x7{left:358.558667pt;}
.xc{left:374.240000pt;}
.x10{left:404.678667pt;}
.xa{left:510.574667pt;}
.x4{left:656.930667pt;}
}




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