
    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_ee2aaf6be60d845d74356591.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_f80d0c12c195752558b752ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_2000b03675300435616340f4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_c52d76609c6c527b59fbabdc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_e1a08517ea14e09a424b25b9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_cfc22d1a2e2897f4106e51be.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_a19e4a5ebe998db59405a2f8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e754fb4ddcbc03cf7d76ad18.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_82d7e52dbd58e46fdd6909b3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_351eb5cfdd1438793ba1a045.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v3{vertical-align:-165.600000px;}
.v2{vertical-align:-82.080000px;}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.457800px;}
.ls2b{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.ls16{letter-spacing:-0.288000px;}
.ls1c{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.158400px;}
.ls2d{letter-spacing:-0.147000px;}
.ls13{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.025920px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.109200px;}
.lse{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.152640px;}
.ls15{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.745920px;}
.lsa{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.600000px;}
.ls2a{letter-spacing:5.760000px;}
.ls29{letter-spacing:6.480000px;}
.ls21{letter-spacing:7.200000px;}
.lsb{letter-spacing:8.640000px;}
.ls22{letter-spacing:10.080000px;}
.ls18{letter-spacing:13.680000px;}
.ls17{letter-spacing:18.720000px;}
.ls1d{letter-spacing:19.440000px;}
.ls26{letter-spacing:31.680000px;}
.ls8{letter-spacing:38.160000px;}
.ls1b{letter-spacing:42.624000px;}
.ls25{letter-spacing:62.040000px;}
.ls28{letter-spacing:67.961280px;}
.ls19{letter-spacing:76.440000px;}
.ls3{letter-spacing:152.064000px;}
.ls1e{letter-spacing:237.576000px;}
.ls1f{letter-spacing:359.256000px;}
.ls1a{letter-spacing:724.476000px;}
.ls27{letter-spacing:859.836000px;}
.ls23{letter-spacing:1003.980000px;}
.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;}
}
.ws5{word-spacing:-84.060000px;}
.ws1{word-spacing:-20.718600px;}
.ws0{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.414080px;}
.ws6{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-2.021760px;}
._6{margin-left:-1.008000px;}
._0{width:1.244160px;}
._5{width:2.665920px;}
._b{width:3.795840px;}
._10{width:4.835520px;}
._d{width:5.895360px;}
._9{width:7.816320px;}
._a{width:8.862240px;}
._c{width:9.949440px;}
._8{width:11.327040px;}
._13{width:12.960000px;}
._15{width:14.437440px;}
._17{width:15.439680px;}
._14{width:16.781760px;}
._e{width:17.853120px;}
._1a{width:19.163520px;}
._1c{width:20.401920px;}
._16{width:21.528000px;}
._11{width:23.904000px;}
._12{width:24.984000px;}
._18{width:29.409600px;}
._19{width:30.459840px;}
._1b{width:33.696000px;}
._f{width:40.848960px;}
._1{width:519.215520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._1d{width:846.300000px;}
._2{width:854.940000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs6{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.y91{bottom:4.305000px;}
.y8c{bottom:4.485000px;}
.y89{bottom:4.500000px;}
.y93{bottom:5.025000px;}
.y65{bottom:5.760000px;}
.yb4{bottom:14.760000px;}
.yb9{bottom:14.940000px;}
.yc{bottom:21.240000px;}
.yb3{bottom:25.200000px;}
.y90{bottom:26.265000px;}
.y8e{bottom:26.445000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.y8f{bottom:48.405000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y32{bottom:139.536000px;}
.yd6{bottom:139.716000px;}
.yc6{bottom:144.936000px;}
.y9a{bottom:153.210000px;}
.y31{bottom:158.430000px;}
.yd5{bottom:160.410000px;}
.y63{bottom:165.270000px;}
.yc5{bottom:165.630000px;}
.y99{bottom:173.910000px;}
.yd4{bottom:181.110000px;}
.y62{bottom:185.970000px;}
.yc4{bottom:186.330000px;}
.y98{bottom:194.610000px;}
.y30{bottom:196.410000px;}
.yd3{bottom:197.310000px;}
.y61{bottom:206.670000px;}
.yc3{bottom:207.030000px;}
.y97{bottom:215.310000px;}
.y2f{bottom:217.470000px;}
.y60{bottom:227.370000px;}
.yc2{bottom:227.730000px;}
.y96{bottom:236.010000px;}
.y2e{bottom:239.430000px;}
.y5f{bottom:248.070000px;}
.yc1{bottom:248.430000px;}
.y95{bottom:256.710000px;}
.y2d{bottom:262.290000px;}
.yc0{bottom:265.365000px;}
.y5e{bottom:268.770000px;}
.y94{bottom:273.645000px;}
.y2c{bottom:284.790000px;}
.ybf{bottom:286.965000px;}
.y5d{bottom:289.110000px;}
.y8d{bottom:295.065000px;}
.y2b{bottom:306.570000px;}
.ybe{bottom:308.385000px;}
.y5c{bottom:310.170000px;}
.y92{bottom:317.565000px;}
.y2a{bottom:329.610000px;}
.y5b{bottom:330.870000px;}
.y29{bottom:351.390000px;}
.y5a{bottom:351.570000px;}
.ybd{bottom:354.990000px;}
.y8b{bottom:360.585000px;}
.y59{bottom:372.270000px;}
.y28{bottom:374.430000px;}
.ybc{bottom:375.690000px;}
.y8a{bottom:382.035000px;}
.yf0{bottom:389.235000px;}
.y58{bottom:393.015000px;}
.ybb{bottom:396.435000px;}
.y27{bottom:396.975000px;}
.y88{bottom:403.455000px;}
.yef{bottom:409.935000px;}
.yba{bottom:413.355000px;}
.y57{bottom:413.715000px;}
.y26{bottom:418.755000px;}
.yee{bottom:426.135000px;}
.y56{bottom:434.415000px;}
.y25{bottom:441.795000px;}
.yed{bottom:446.835000px;}
.y87{bottom:450.075000px;}
.y55{bottom:455.115000px;}
.yb8{bottom:455.475000px;}
.y24{bottom:464.115000px;}
.y86{bottom:470.775000px;}
.yec{bottom:471.675000px;}
.y54{bottom:475.815000px;}
.y23{bottom:486.075000px;}
.yeb{bottom:490.575000px;}
.y85{bottom:491.475000px;}
.y53{bottom:496.515000px;}
.yb7{bottom:497.595000px;}
.y22{bottom:508.935000px;}
.yea{bottom:509.475000px;}
.y84{bottom:512.175000px;}
.y52{bottom:517.215000px;}
.yb6{bottom:519.015000px;}
.ye9{bottom:528.555000px;}
.y21{bottom:531.435000px;}
.y83{bottom:532.875000px;}
.y51{bottom:537.735000px;}
.yb5{bottom:540.615000px;}
.ye8{bottom:547.455000px;}
.y20{bottom:553.395000px;}
.y82{bottom:553.575000px;}
.y50{bottom:559.875000px;}
.yd2{bottom:560.055000px;}
.yb2{bottom:562.035000px;}
.ye7{bottom:566.535000px;}
.y81{bottom:574.275000px;}
.y1f{bottom:576.255000px;}
.y4f{bottom:580.575000px;}
.yd1{bottom:580.755000px;}
.ye6{bottom:585.435000px;}
.y80{bottom:594.975000px;}
.y1e{bottom:598.215000px;}
.y4e{bottom:601.275000px;}
.yd0{bottom:601.455000px;}
.yb1{bottom:604.155000px;}
.ye5{bottom:604.335000px;}
.y7f{bottom:615.675000px;}
.y1d{bottom:621.075000px;}
.y4d{bottom:621.975000px;}
.ycf{bottom:622.155000px;}
.ye4{bottom:623.415000px;}
.yb0{bottom:625.575000px;}
.y7e{bottom:636.225000px;}
.y64{bottom:638.205000px;}
.ye3{bottom:642.345000px;}
.y4c{bottom:642.705000px;}
.yce{bottom:642.885000px;}
.y1c{bottom:643.605000px;}
.y7d{bottom:658.185000px;}
.ye2{bottom:661.425000px;}
.y4b{bottom:663.405000px;}
.ycd{bottom:663.585000px;}
.y1b{bottom:665.385000px;}
.yaf{bottom:672.225000px;}
.y7c{bottom:680.145000px;}
.ye1{bottom:680.325000px;}
.ycc{bottom:684.285000px;}
.y1a{bottom:688.065000px;}
.yae{bottom:692.925000px;}
.ye0{bottom:699.225000px;}
.y7b{bottom:702.285000px;}
.ycb{bottom:704.985000px;}
.y4a{bottom:705.705000px;}
.y19{bottom:709.125000px;}
.yad{bottom:713.625000px;}
.ydf{bottom:718.305000px;}
.y7a{bottom:724.245000px;}
.y49{bottom:724.785000px;}
.yca{bottom:725.685000px;}
.yac{bottom:730.545000px;}
.y18{bottom:733.245000px;}
.yde{bottom:737.205000px;}
.y48{bottom:743.685000px;}
.y79{bottom:746.385000px;}
.yab{bottom:751.965000px;}
.ydd{bottom:756.285000px;}
.y17{bottom:757.365000px;}
.y47{bottom:762.585000px;}
.y78{bottom:767.085000px;}
.yaa{bottom:773.565000px;}
.ydc{bottom:775.185000px;}
.y16{bottom:781.485000px;}
.y46{bottom:781.665000px;}
.y77{bottom:787.785000px;}
.ydb{bottom:794.265000px;}
.ya9{bottom:794.985000px;}
.y45{bottom:800.565000px;}
.y15{bottom:805.605000px;}
.y76{bottom:808.485000px;}
.yda{bottom:813.165000px;}
.ya8{bottom:816.405000px;}
.y44{bottom:819.645000px;}
.y75{bottom:829.185000px;}
.y14{bottom:829.725000px;}
.yd9{bottom:832.065000px;}
.ya7{bottom:837.825000px;}
.y43{bottom:838.185000px;}
.y74{bottom:849.525000px;}
.yc9{bottom:849.885000px;}
.yd8{bottom:851.145000px;}
.y13{bottom:853.845000px;}
.y42{bottom:857.625000px;}
.ya6{bottom:859.245000px;}
.y73{bottom:870.585000px;}
.y41{bottom:876.525000px;}
.y12{bottom:878.145000px;}
.y72{bottom:891.330000px;}
.y40{bottom:895.470000px;}
.y11{bottom:902.310000px;}
.ya5{bottom:905.910000px;}
.y71{bottom:912.030000px;}
.y3f{bottom:914.550000px;}
.y10{bottom:926.430000px;}
.ya4{bottom:926.610000px;}
.yc8{bottom:932.370000px;}
.y70{bottom:932.730000px;}
.y3e{bottom:933.450000px;}
.ya3{bottom:947.310000px;}
.yf{bottom:949.110000px;}
.y3d{bottom:952.530000px;}
.y6f{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.ya2{bottom:968.010000px;}
.y3c{bottom:971.430000px;}
.y6e{bottom:974.130000px;}
.ya1{bottom:985.110000px;}
.y3b{bottom:990.330000px;}
.y6d{bottom:994.830000px;}
.ya0{bottom:1006.530000px;}
.y3a{bottom:1009.410000px;}
.y6c{bottom:1015.530000px;}
.y9f{bottom:1027.950000px;}
.y39{bottom:1028.130000px;}
.y6b{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y38{bottom:1047.030000px;}
.y9e{bottom:1049.370000px;}
.y6a{bottom:1056.930000px;}
.y37{bottom:1065.750000px;}
.y9d{bottom:1070.790000px;}
.y69{bottom:1077.630000px;}
.y36{bottom:1084.650000px;}
.y7{bottom:1087.350000px;}
.y9c{bottom:1092.210000px;}
.y68{bottom:1097.970000px;}
.yc7{bottom:1098.330000px;}
.y35{bottom:1103.550000px;}
.y9b{bottom:1113.630000px;}
.y67{bottom:1119.030000px;}
.y34{bottom:1122.270000px;}
.yd7{bottom:1139.400000px;}
.y6{bottom:1139.580000px;}
.y66{bottom:1139.760000px;}
.y33{bottom:1141.200000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h14{height:20.685000px;}
.h19{height:20.700000px;}
.h15{height:20.721000px;}
.h1a{height:20.730000px;}
.h18{height:21.765000px;}
.h1b{height:41.385000px;}
.h17{height:42.105000px;}
.h3{height:45.184219px;}
.h9{height:52.998047px;}
.hd{height:56.278125px;}
.h1d{height:61.171875px;}
.hf{height:63.457031px;}
.h11{height:63.540000px;}
.h16{height:64.605000px;}
.he{height:64.978594px;}
.h4{height:65.010937px;}
.h1e{height:68.084282px;}
.h1c{height:70.628906px;}
.h6{height:70.664062px;}
.h10{height:72.562500px;}
.ha{height:72.846211px;}
.h13{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:78.825000px;}
.hb{height:84.898125px;}
.h7{height:132.789375px;}
.h12{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:32.569500px;}
.we{width:32.745000px;}
.w5{width:56.194500px;}
.w10{width:77.205000px;}
.wa{width:77.421000px;}
.w4{width:82.470000px;}
.w16{width:102.225000px;}
.w8{width:105.645000px;}
.wb{width:144.165000px;}
.w11{width:144.201000px;}
.w17{width:162.015000px;}
.w3{width:180.735000px;}
.wd{width:222.315000px;}
.w14{width:265.740000px;}
.wf{width:286.800000px;}
.w12{width:320.280000px;}
.w18{width:337.753500px;}
.w15{width:356.824500px;}
.w19{width:401.325000px;}
.w9{width:427.744500px;}
.wc{width:461.044500px;}
.w13{width:471.883500px;}
.w2{width:475.843500px;}
.w7{width:528.030000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x28{left:11.689500px;}
.x3f{left:12.945000px;}
.x3c{left:16.185000px;}
.x40{left:18.885000px;}
.x3a{left:20.145000px;}
.x45{left:21.600000px;}
.x30{left:23.745000px;}
.x3d{left:25.905000px;}
.x3e{left:39.765000px;}
.x29{left:48.240000px;}
.x31{left:56.340000px;}
.x32{left:60.840000px;}
.x3{left:77.041500px;}
.x2d{left:78.103500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.xd{left:92.196000px;}
.x10{left:96.336000px;}
.x2b{left:104.446500px;}
.x24{left:112.726500px;}
.x11{left:113.796000px;}
.x42{left:115.956000px;}
.x39{left:117.030000px;}
.x2a{left:121.716000px;}
.x22{left:127.476000px;}
.xb{left:135.036000px;}
.x2c{left:137.746500px;}
.x23{left:141.156000px;}
.xa{left:144.936000px;}
.x25{left:146.026500px;}
.xc{left:160.770000px;}
.x6{left:172.650000px;}
.x33{left:174.825000px;}
.x37{left:198.613500px;}
.x34{left:208.305000px;}
.x26{left:219.808500px;}
.x2{left:250.050000px;}
.x46{left:252.795000px;}
.x15{left:255.450000px;}
.x1e{left:264.630000px;}
.x12{left:397.335000px;}
.x43{left:405.435000px;}
.x44{left:414.795000px;}
.xe{left:423.075000px;}
.x18{left:439.995000px;}
.xf{left:446.505000px;}
.x13{left:452.265000px;}
.x1f{left:459.645000px;}
.x16{left:465.945000px;}
.x1b{left:468.285000px;}
.x3b{left:492.780000px;}
.x35{left:495.840000px;}
.x21{left:515.445000px;}
.x17{left:521.745000px;}
.x1a{left:537.765000px;}
.x1c{left:548.025000px;}
.x38{left:550.020000px;}
.x5{left:552.900000px;}
.x1d{left:560.445000px;}
.x2e{left:566.220000px;}
.x14{left:569.265000px;}
.x36{left:573.960000px;}
.x19{left:596.085000px;}
.x2f{left:644.370000px;}
.x41{left:672.630000px;}
.x27{left:674.790000px;}
.x20{left:680.190000px;}
.x7{left:733.650000px;}
.x9{left:808.020000px;}
@media print{
.v3{vertical-align:-147.200000pt;}
.v2{vertical-align:-72.960000pt;}
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.406933pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.140800pt;}
.ls2d{letter-spacing:-0.130667pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.135680pt;}
.ls15{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.663040pt;}
.lsa{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.560000pt;}
.lsc{letter-spacing:3.200000pt;}
.ls2a{letter-spacing:5.120000pt;}
.ls29{letter-spacing:5.760000pt;}
.ls21{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.680000pt;}
.ls22{letter-spacing:8.960000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls17{letter-spacing:16.640000pt;}
.ls1d{letter-spacing:17.280000pt;}
.ls26{letter-spacing:28.160000pt;}
.ls8{letter-spacing:33.920000pt;}
.ls1b{letter-spacing:37.888000pt;}
.ls25{letter-spacing:55.146667pt;}
.ls28{letter-spacing:60.410027pt;}
.ls19{letter-spacing:67.946667pt;}
.ls3{letter-spacing:135.168000pt;}
.ls1e{letter-spacing:211.178667pt;}
.ls1f{letter-spacing:319.338667pt;}
.ls1a{letter-spacing:643.978667pt;}
.ls27{letter-spacing:764.298667pt;}
.ls23{letter-spacing:892.426667pt;}
.ws5{word-spacing:-74.720000pt;}
.ws1{word-spacing:-18.416533pt;}
.ws0{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.256960pt;}
.ws6{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-1.797120pt;}
._6{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._5{width:2.369707pt;}
._b{width:3.374080pt;}
._10{width:4.298240pt;}
._d{width:5.240320pt;}
._9{width:6.947840pt;}
._a{width:7.877547pt;}
._c{width:8.843947pt;}
._8{width:10.068480pt;}
._13{width:11.520000pt;}
._15{width:12.833280pt;}
._17{width:13.724160pt;}
._14{width:14.917120pt;}
._e{width:15.869440pt;}
._1a{width:17.034240pt;}
._1c{width:18.135040pt;}
._16{width:19.136000pt;}
._11{width:21.248000pt;}
._12{width:22.208000pt;}
._18{width:26.141867pt;}
._19{width:27.075413pt;}
._1b{width:29.952000pt;}
._f{width:36.310187pt;}
._1{width:461.524907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._1d{width:752.266667pt;}
._2{width:759.946667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs6{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.y91{bottom:3.826667pt;}
.y8c{bottom:3.986667pt;}
.y89{bottom:4.000000pt;}
.y93{bottom:4.466667pt;}
.y65{bottom:5.120000pt;}
.yb4{bottom:13.120000pt;}
.yb9{bottom:13.280000pt;}
.yc{bottom:18.880000pt;}
.yb3{bottom:22.400000pt;}
.y90{bottom:23.346667pt;}
.y8e{bottom:23.506667pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.y8f{bottom:43.026667pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y32{bottom:124.032000pt;}
.yd6{bottom:124.192000pt;}
.yc6{bottom:128.832000pt;}
.y9a{bottom:136.186667pt;}
.y31{bottom:140.826667pt;}
.yd5{bottom:142.586667pt;}
.y63{bottom:146.906667pt;}
.yc5{bottom:147.226667pt;}
.y99{bottom:154.586667pt;}
.yd4{bottom:160.986667pt;}
.y62{bottom:165.306667pt;}
.yc4{bottom:165.626667pt;}
.y98{bottom:172.986667pt;}
.y30{bottom:174.586667pt;}
.yd3{bottom:175.386667pt;}
.y61{bottom:183.706667pt;}
.yc3{bottom:184.026667pt;}
.y97{bottom:191.386667pt;}
.y2f{bottom:193.306667pt;}
.y60{bottom:202.106667pt;}
.yc2{bottom:202.426667pt;}
.y96{bottom:209.786667pt;}
.y2e{bottom:212.826667pt;}
.y5f{bottom:220.506667pt;}
.yc1{bottom:220.826667pt;}
.y95{bottom:228.186667pt;}
.y2d{bottom:233.146667pt;}
.yc0{bottom:235.880000pt;}
.y5e{bottom:238.906667pt;}
.y94{bottom:243.240000pt;}
.y2c{bottom:253.146667pt;}
.ybf{bottom:255.080000pt;}
.y5d{bottom:256.986667pt;}
.y8d{bottom:262.280000pt;}
.y2b{bottom:272.506667pt;}
.ybe{bottom:274.120000pt;}
.y5c{bottom:275.706667pt;}
.y92{bottom:282.280000pt;}
.y2a{bottom:292.986667pt;}
.y5b{bottom:294.106667pt;}
.y29{bottom:312.346667pt;}
.y5a{bottom:312.506667pt;}
.ybd{bottom:315.546667pt;}
.y8b{bottom:320.520000pt;}
.y59{bottom:330.906667pt;}
.y28{bottom:332.826667pt;}
.ybc{bottom:333.946667pt;}
.y8a{bottom:339.586667pt;}
.yf0{bottom:345.986667pt;}
.y58{bottom:349.346667pt;}
.ybb{bottom:352.386667pt;}
.y27{bottom:352.866667pt;}
.y88{bottom:358.626667pt;}
.yef{bottom:364.386667pt;}
.yba{bottom:367.426667pt;}
.y57{bottom:367.746667pt;}
.y26{bottom:372.226667pt;}
.yee{bottom:378.786667pt;}
.y56{bottom:386.146667pt;}
.y25{bottom:392.706667pt;}
.yed{bottom:397.186667pt;}
.y87{bottom:400.066667pt;}
.y55{bottom:404.546667pt;}
.yb8{bottom:404.866667pt;}
.y24{bottom:412.546667pt;}
.y86{bottom:418.466667pt;}
.yec{bottom:419.266667pt;}
.y54{bottom:422.946667pt;}
.y23{bottom:432.066667pt;}
.yeb{bottom:436.066667pt;}
.y85{bottom:436.866667pt;}
.y53{bottom:441.346667pt;}
.yb7{bottom:442.306667pt;}
.y22{bottom:452.386667pt;}
.yea{bottom:452.866667pt;}
.y84{bottom:455.266667pt;}
.y52{bottom:459.746667pt;}
.yb6{bottom:461.346667pt;}
.ye9{bottom:469.826667pt;}
.y21{bottom:472.386667pt;}
.y83{bottom:473.666667pt;}
.y51{bottom:477.986667pt;}
.yb5{bottom:480.546667pt;}
.ye8{bottom:486.626667pt;}
.y20{bottom:491.906667pt;}
.y82{bottom:492.066667pt;}
.y50{bottom:497.666667pt;}
.yd2{bottom:497.826667pt;}
.yb2{bottom:499.586667pt;}
.ye7{bottom:503.586667pt;}
.y81{bottom:510.466667pt;}
.y1f{bottom:512.226667pt;}
.y4f{bottom:516.066667pt;}
.yd1{bottom:516.226667pt;}
.ye6{bottom:520.386667pt;}
.y80{bottom:528.866667pt;}
.y1e{bottom:531.746667pt;}
.y4e{bottom:534.466667pt;}
.yd0{bottom:534.626667pt;}
.yb1{bottom:537.026667pt;}
.ye5{bottom:537.186667pt;}
.y7f{bottom:547.266667pt;}
.y1d{bottom:552.066667pt;}
.y4d{bottom:552.866667pt;}
.ycf{bottom:553.026667pt;}
.ye4{bottom:554.146667pt;}
.yb0{bottom:556.066667pt;}
.y7e{bottom:565.533333pt;}
.y64{bottom:567.293333pt;}
.ye3{bottom:570.973333pt;}
.y4c{bottom:571.293333pt;}
.yce{bottom:571.453333pt;}
.y1c{bottom:572.093333pt;}
.y7d{bottom:585.053333pt;}
.ye2{bottom:587.933333pt;}
.y4b{bottom:589.693333pt;}
.ycd{bottom:589.853333pt;}
.y1b{bottom:591.453333pt;}
.yaf{bottom:597.533333pt;}
.y7c{bottom:604.573333pt;}
.ye1{bottom:604.733333pt;}
.ycc{bottom:608.253333pt;}
.y1a{bottom:611.613333pt;}
.yae{bottom:615.933333pt;}
.ye0{bottom:621.533333pt;}
.y7b{bottom:624.253333pt;}
.ycb{bottom:626.653333pt;}
.y4a{bottom:627.293333pt;}
.y19{bottom:630.333333pt;}
.yad{bottom:634.333333pt;}
.ydf{bottom:638.493333pt;}
.y7a{bottom:643.773333pt;}
.y49{bottom:644.253333pt;}
.yca{bottom:645.053333pt;}
.yac{bottom:649.373333pt;}
.y18{bottom:651.773333pt;}
.yde{bottom:655.293333pt;}
.y48{bottom:661.053333pt;}
.y79{bottom:663.453333pt;}
.yab{bottom:668.413333pt;}
.ydd{bottom:672.253333pt;}
.y17{bottom:673.213333pt;}
.y47{bottom:677.853333pt;}
.y78{bottom:681.853333pt;}
.yaa{bottom:687.613333pt;}
.ydc{bottom:689.053333pt;}
.y16{bottom:694.653333pt;}
.y46{bottom:694.813333pt;}
.y77{bottom:700.253333pt;}
.ydb{bottom:706.013333pt;}
.ya9{bottom:706.653333pt;}
.y45{bottom:711.613333pt;}
.y15{bottom:716.093333pt;}
.y76{bottom:718.653333pt;}
.yda{bottom:722.813333pt;}
.ya8{bottom:725.693333pt;}
.y44{bottom:728.573333pt;}
.y75{bottom:737.053333pt;}
.y14{bottom:737.533333pt;}
.yd9{bottom:739.613333pt;}
.ya7{bottom:744.733333pt;}
.y43{bottom:745.053333pt;}
.y74{bottom:755.133333pt;}
.yc9{bottom:755.453333pt;}
.yd8{bottom:756.573333pt;}
.y13{bottom:758.973333pt;}
.y42{bottom:762.333333pt;}
.ya6{bottom:763.773333pt;}
.y73{bottom:773.853333pt;}
.y41{bottom:779.133333pt;}
.y12{bottom:780.573333pt;}
.y72{bottom:792.293333pt;}
.y40{bottom:795.973333pt;}
.y11{bottom:802.053333pt;}
.ya5{bottom:805.253333pt;}
.y71{bottom:810.693333pt;}
.y3f{bottom:812.933333pt;}
.y10{bottom:823.493333pt;}
.ya4{bottom:823.653333pt;}
.yc8{bottom:828.773333pt;}
.y70{bottom:829.093333pt;}
.y3e{bottom:829.733333pt;}
.ya3{bottom:842.053333pt;}
.yf{bottom:843.653333pt;}
.y3d{bottom:846.693333pt;}
.y6f{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.ya2{bottom:860.453333pt;}
.y3c{bottom:863.493333pt;}
.y6e{bottom:865.893333pt;}
.ya1{bottom:875.653333pt;}
.y3b{bottom:880.293333pt;}
.y6d{bottom:884.293333pt;}
.ya0{bottom:894.693333pt;}
.y3a{bottom:897.253333pt;}
.y6c{bottom:902.693333pt;}
.y9f{bottom:913.733333pt;}
.y39{bottom:913.893333pt;}
.y6b{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y38{bottom:930.693333pt;}
.y9e{bottom:932.773333pt;}
.y6a{bottom:939.493333pt;}
.y37{bottom:947.333333pt;}
.y9d{bottom:951.813333pt;}
.y69{bottom:957.893333pt;}
.y36{bottom:964.133333pt;}
.y7{bottom:966.533333pt;}
.y9c{bottom:970.853333pt;}
.y68{bottom:975.973333pt;}
.yc7{bottom:976.293333pt;}
.y35{bottom:980.933333pt;}
.y9b{bottom:989.893333pt;}
.y67{bottom:994.693333pt;}
.y34{bottom:997.573333pt;}
.yd7{bottom:1012.800000pt;}
.y6{bottom:1012.960000pt;}
.y66{bottom:1013.120000pt;}
.y33{bottom:1014.400000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h14{height:18.386667pt;}
.h19{height:18.400000pt;}
.h15{height:18.418667pt;}
.h1a{height:18.426667pt;}
.h18{height:19.346667pt;}
.h1b{height:36.786667pt;}
.h17{height:37.426667pt;}
.h3{height:40.163750pt;}
.h9{height:47.109375pt;}
.hd{height:50.025000pt;}
.h1d{height:54.375000pt;}
.hf{height:56.406250pt;}
.h11{height:56.480000pt;}
.h16{height:57.426667pt;}
.he{height:57.758750pt;}
.h4{height:57.787500pt;}
.h1e{height:60.519362pt;}
.h1c{height:62.781250pt;}
.h6{height:62.812500pt;}
.h10{height:64.500000pt;}
.ha{height:64.752187pt;}
.h13{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:70.066667pt;}
.hb{height:75.465000pt;}
.h7{height:118.035000pt;}
.h12{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:28.950667pt;}
.we{width:29.106667pt;}
.w5{width:49.950667pt;}
.w10{width:68.626667pt;}
.wa{width:68.818667pt;}
.w4{width:73.306667pt;}
.w16{width:90.866667pt;}
.w8{width:93.906667pt;}
.wb{width:128.146667pt;}
.w11{width:128.178667pt;}
.w17{width:144.013333pt;}
.w3{width:160.653333pt;}
.wd{width:197.613333pt;}
.w14{width:236.213333pt;}
.wf{width:254.933333pt;}
.w12{width:284.693333pt;}
.w18{width:300.225333pt;}
.w15{width:317.177333pt;}
.w19{width:356.733333pt;}
.w9{width:380.217333pt;}
.wc{width:409.817333pt;}
.w13{width:419.452000pt;}
.w2{width:422.972000pt;}
.w7{width:469.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x28{left:10.390667pt;}
.x3f{left:11.506667pt;}
.x3c{left:14.386667pt;}
.x40{left:16.786667pt;}
.x3a{left:17.906667pt;}
.x45{left:19.200000pt;}
.x30{left:21.106667pt;}
.x3d{left:23.026667pt;}
.x3e{left:35.346667pt;}
.x29{left:42.880000pt;}
.x31{left:50.080000pt;}
.x32{left:54.080000pt;}
.x3{left:68.481333pt;}
.x2d{left:69.425333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.xd{left:81.952000pt;}
.x10{left:85.632000pt;}
.x2b{left:92.841333pt;}
.x24{left:100.201333pt;}
.x11{left:101.152000pt;}
.x42{left:103.072000pt;}
.x39{left:104.026667pt;}
.x2a{left:108.192000pt;}
.x22{left:113.312000pt;}
.xb{left:120.032000pt;}
.x2c{left:122.441333pt;}
.x23{left:125.472000pt;}
.xa{left:128.832000pt;}
.x25{left:129.801333pt;}
.xc{left:142.906667pt;}
.x6{left:153.466667pt;}
.x33{left:155.400000pt;}
.x37{left:176.545333pt;}
.x34{left:185.160000pt;}
.x26{left:195.385333pt;}
.x2{left:222.266667pt;}
.x46{left:224.706667pt;}
.x15{left:227.066667pt;}
.x1e{left:235.226667pt;}
.x12{left:353.186667pt;}
.x43{left:360.386667pt;}
.x44{left:368.706667pt;}
.xe{left:376.066667pt;}
.x18{left:391.106667pt;}
.xf{left:396.893333pt;}
.x13{left:402.013333pt;}
.x1f{left:408.573333pt;}
.x16{left:414.173333pt;}
.x1b{left:416.253333pt;}
.x3b{left:438.026667pt;}
.x35{left:440.746667pt;}
.x21{left:458.173333pt;}
.x17{left:463.773333pt;}
.x1a{left:478.013333pt;}
.x1c{left:487.133333pt;}
.x38{left:488.906667pt;}
.x5{left:491.466667pt;}
.x1d{left:498.173333pt;}
.x2e{left:503.306667pt;}
.x14{left:506.013333pt;}
.x36{left:510.186667pt;}
.x19{left:529.853333pt;}
.x2f{left:572.773333pt;}
.x41{left:597.893333pt;}
.x27{left:599.813333pt;}
.x20{left:604.613333pt;}
.x7{left:652.133333pt;}
.x9{left:718.240000pt;}
}




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