
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_e5866ba5bf974ff3877e3cc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.949219;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_f046cf3ae6703c8bc9a98f12.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928711;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_5f69d7d9b9f72e35648845d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983887;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_d633359715968e29baa4d62e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992188;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_e64a9dfd7f6cb476da8ad82a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_d89d7ee37ddcdc929e21d6fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_b9695864f3cc8a88bbecd249.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e94a8444273b1a56f9e5b49c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.860352;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_60605b7dc3cd1b3b1d739c19.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e764b82628fb32a8233e8c85.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7017385fca604a1271e507fd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6992e33f2a3b648f7dd5a125.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.939453;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:ffe;src:url('chunks/assets/font_036cd7398e7e61f13ec35763.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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:fff;src:url('chunks/assets/font_f93b98008b49902bdc6ad113.woff2')format("woff");}.fff{font-family:fff;line-height:0.986328;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:ff10;src:url('chunks/assets/font_15269c0771f3891f8a7d0455.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.929199;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:ff11;src:url('chunks/assets/font_05aa5ad52ce5f2970541da25.woff2')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e06c0583f36be9531804a55e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.746094;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;}
.m1{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,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);}
.m2{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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1{letter-spacing:-1.541894px;}
.lse{letter-spacing:-0.320544px;}
.ls11{letter-spacing:-0.172224px;}
.ls18{letter-spacing:-0.158976px;}
.ls16{letter-spacing:-0.152352px;}
.ls12{letter-spacing:-0.139104px;}
.ls15{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.125856px;}
.ls13{letter-spacing:-0.119232px;}
.ls1a{letter-spacing:-0.112608px;}
.ls19{letter-spacing:-0.086112px;}
.ls1b{letter-spacing:-0.079488px;}
.ls14{letter-spacing:-0.059616px;}
.lsd{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000576px;}
.ls8{letter-spacing:0.001440px;}
.ls6{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.116928px;}
.ls9{letter-spacing:0.240048px;}
.ls5{letter-spacing:0.240480px;}
.ls7{letter-spacing:0.274032px;}
.lsa{letter-spacing:0.274176px;}
.ls4{letter-spacing:0.275040px;}
.lsc{letter-spacing:0.275616px;}
.ls3{letter-spacing:0.359136px;}
.ls2{letter-spacing:0.367488px;}
.lsf{letter-spacing:16.093872px;}
.ls1c{letter-spacing:843.984000px;}
.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;}
}
.ws4{word-spacing:-23.335488px;}
.ws8{word-spacing:-20.030400px;}
.ws7{word-spacing:-20.016000px;}
.ws9{word-spacing:-20.001600px;}
.wse{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.335232px;}
.wsa{word-spacing:-18.149760px;}
.wsb{word-spacing:-18.090144px;}
.wsf{word-spacing:-18.063648px;}
.ws10{word-spacing:-18.030528px;}
.wsc{word-spacing:-18.017280px;}
.wsd{word-spacing:-17.997408px;}
.ws5{word-spacing:-13.486176px;}
.ws6{word-spacing:-13.210560px;}
.ws12{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:1.912038px;}
.ws2{word-spacing:18.464754px;}
.ws3{word-spacing:71.097660px;}
._21{margin-left:-12.139200px;}
._0{margin-left:-7.879829px;}
._3{margin-left:-6.489185px;}
._8{margin-left:-5.374090px;}
._2{margin-left:-3.798710px;}
._1{margin-left:-2.781289px;}
._4{margin-left:-1.761254px;}
._5{width:1.085760px;}
._7{width:2.851200px;}
._c{width:4.190400px;}
._10{width:5.479920px;}
._1d{width:6.558480px;}
._a{width:7.754400px;}
._22{width:8.771760px;}
._12{width:9.777600px;}
._9{width:11.743200px;}
._23{width:13.438080px;}
._17{width:14.542560px;}
._d{width:15.586704px;}
._15{width:17.373600px;}
._16{width:18.547200px;}
._b{width:21.052800px;}
._6{width:23.053536px;}
._24{width:24.069600px;}
._11{width:25.085664px;}
._13{width:26.360928px;}
._1c{width:27.387072px;}
._1e{width:28.569600px;}
._1a{width:29.750400px;}
._20{width:31.212000px;}
._18{width:32.659200px;}
._19{width:34.389504px;}
._1b{width:36.540000px;}
._14{width:38.196000px;}
._1f{width:47.764800px;}
._f{width:69.552576px;}
._e{width:844.079040px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(237,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(70,157,215);}
.fc4{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:37.730666px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:48.510856px;}
.fs1{font-size:51.124236px;}
.fs8{font-size:57.600000px;}
.fs9{font-size:60.480000px;}
.fs0{font-size:66.000000px;}
.fsa{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yde{bottom:0.540000px;}
.yd4{bottom:0.960000px;}
.ye1{bottom:3.840000px;}
.yd6{bottom:4.260000px;}
.ydc{bottom:5.580000px;}
.yd1{bottom:5.760000px;}
.y16{bottom:6.060000px;}
.y13{bottom:6.540000px;}
.ydb{bottom:27.540000px;}
.yd0{bottom:27.720000px;}
.ydf{bottom:29.700000px;}
.y17{bottom:56.880000px;}
.y15{bottom:73.500000px;}
.y4{bottom:81.067157px;}
.y6{bottom:97.564115px;}
.y42{bottom:111.960000px;}
.y5{bottom:112.060204px;}
.yb2{bottom:119.160000px;}
.yc7{bottom:120.240000px;}
.y71{bottom:122.760000px;}
.yfa{bottom:123.840000px;}
.y41{bottom:138.600000px;}
.yb1{bottom:140.040000px;}
.yc6{bottom:140.760000px;}
.ye4{bottom:142.920000px;}
.y70{bottom:143.640000px;}
.yf9{bottom:144.720000px;}
.y40{bottom:153.360000px;}
.y114{bottom:156.240000px;}
.yb0{bottom:160.560000px;}
.yc5{bottom:161.640000px;}
.ye3{bottom:163.800000px;}
.y6f{bottom:164.160000px;}
.yf8{bottom:165.240000px;}
.y113{bottom:176.760000px;}
.yaf{bottom:181.440000px;}
.yc4{bottom:182.160000px;}
.ye2{bottom:184.320000px;}
.y6e{bottom:185.040000px;}
.y3f{bottom:185.400000px;}
.yf7{bottom:186.120000px;}
.yd3{bottom:188.880000px;}
.y112{bottom:197.640000px;}
.yae{bottom:201.960000px;}
.yc3{bottom:203.040000px;}
.y6d{bottom:205.560000px;}
.y3e{bottom:205.920000px;}
.yf6{bottom:206.640000px;}
.y111{bottom:218.160000px;}
.ye0{bottom:219.000000px;}
.yad{bottom:222.840000px;}
.yc2{bottom:223.560000px;}
.y6c{bottom:226.440000px;}
.y3d{bottom:226.800000px;}
.yf5{bottom:227.520000px;}
.ydd{bottom:238.500000px;}
.y110{bottom:239.040000px;}
.y11{bottom:241.500000px;}
.yc1{bottom:244.440000px;}
.y86{bottom:246.960000px;}
.y3c{bottom:247.320000px;}
.yf4{bottom:248.040000px;}
.yac{bottom:252.360000px;}
.y10f{bottom:259.560000px;}
.y10{bottom:262.500000px;}
.y6b{bottom:264.960000px;}
.y85{bottom:267.840000px;}
.y3b{bottom:268.200000px;}
.yf3{bottom:268.560000px;}
.y10e{bottom:280.440000px;}
.yab{bottom:282.240000px;}
.yf{bottom:283.500000px;}
.y6a{bottom:285.840000px;}
.y84{bottom:288.360000px;}
.y3a{bottom:288.720000px;}
.yf2{bottom:289.440000px;}
.y10d{bottom:300.960000px;}
.yaa{bottom:302.760000px;}
.ye{bottom:304.500000px;}
.y69{bottom:306.360000px;}
.y83{bottom:309.240000px;}
.y39{bottom:309.600000px;}
.yf1{bottom:309.960000px;}
.y10c{bottom:321.840000px;}
.ya9{bottom:323.640000px;}
.y68{bottom:327.240000px;}
.y82{bottom:329.760000px;}
.y38{bottom:330.120000px;}
.yc0{bottom:336.240000px;}
.yf0{bottom:339.840000px;}
.y10b{bottom:342.360000px;}
.ya8{bottom:344.160000px;}
.y67{bottom:347.760000px;}
.y37{bottom:351.000000px;}
.y81{bottom:359.640000px;}
.y10a{bottom:363.240000px;}
.ya7{bottom:365.040000px;}
.ybf{bottom:365.760000px;}
.y66{bottom:368.640000px;}
.y36{bottom:371.520000px;}
.yef{bottom:378.360000px;}
.y109{bottom:383.760000px;}
.ya6{bottom:385.560000px;}
.ybe{bottom:386.640000px;}
.y65{bottom:389.160000px;}
.y35{bottom:392.400000px;}
.yee{bottom:399.240000px;}
.y108{bottom:404.640000px;}
.ya5{bottom:406.440000px;}
.ybd{bottom:407.160000px;}
.y64{bottom:410.040000px;}
.y34{bottom:412.920000px;}
.yed{bottom:419.760000px;}
.y107{bottom:425.160000px;}
.ya4{bottom:426.960000px;}
.ybc{bottom:428.040000px;}
.y63{bottom:430.560000px;}
.y33{bottom:433.800000px;}
.yec{bottom:440.640000px;}
.y106{bottom:446.040000px;}
.ya3{bottom:447.840000px;}
.ybb{bottom:448.560000px;}
.y62{bottom:451.440000px;}
.y32{bottom:454.320000px;}
.yeb{bottom:462.600000px;}
.y105{bottom:466.560000px;}
.ya2{bottom:468.360000px;}
.yba{bottom:469.440000px;}
.y61{bottom:471.960000px;}
.y31{bottom:475.200000px;}
.yea{bottom:484.560000px;}
.y104{bottom:487.440000px;}
.yb9{bottom:489.960000px;}
.yda{bottom:490.500000px;}
.y60{bottom:492.840000px;}
.y30{bottom:495.720000px;}
.ya1{bottom:498.240000px;}
.ye9{bottom:505.440000px;}
.y103{bottom:507.960000px;}
.yb8{bottom:510.840000px;}
.y5f{bottom:513.360000px;}
.y2f{bottom:516.600000px;}
.ye8{bottom:525.960000px;}
.ya0{bottom:527.760000px;}
.y102{bottom:528.840000px;}
.yb7{bottom:531.360000px;}
.y80{bottom:534.240000px;}
.y2e{bottom:537.120000px;}
.yd9{bottom:540.000000px;}
.y5e{bottom:543.240000px;}
.ye7{bottom:547.920000px;}
.y9f{bottom:548.640000px;}
.y101{bottom:549.360000px;}
.yb6{bottom:552.240000px;}
.y7f{bottom:554.760000px;}
.yd8{bottom:560.520000px;}
.y2d{bottom:567.000000px;}
.y9e{bottom:569.160000px;}
.ye6{bottom:570.240000px;}
.y5d{bottom:572.760000px;}
.y7e{bottom:575.640000px;}
.yd7{bottom:579.600000px;}
.y9d{bottom:590.040000px;}
.ye5{bottom:590.760000px;}
.yb5{bottom:593.640000px;}
.yd5{bottom:595.500000px;}
.y7d{bottom:596.160000px;}
.y9c{bottom:610.560000px;}
.y5c{bottom:611.640000px;}
.yb4{bottom:614.160000px;}
.yd2{bottom:615.000000px;}
.y2c{bottom:623.520000px;}
.y9b{bottom:631.440000px;}
.y5b{bottom:632.160000px;}
.y7c{bottom:635.040000px;}
.y2b{bottom:644.400000px;}
.y9a{bottom:651.960000px;}
.y5a{bottom:653.040000px;}
.y7b{bottom:655.560000px;}
.y2a{bottom:664.920000px;}
.y99{bottom:672.840000px;}
.y59{bottom:673.560000px;}
.y7a{bottom:676.440000px;}
.y29{bottom:686.160000px;}
.y98{bottom:693.360000px;}
.y58{bottom:694.440000px;}
.y79{bottom:696.960000px;}
.y97{bottom:714.240000px;}
.y57{bottom:714.960000px;}
.yd{bottom:717.000000px;}
.y78{bottom:717.840000px;}
.y96{bottom:734.760000px;}
.y56{bottom:735.840000px;}
.yc{bottom:738.000000px;}
.y77{bottom:738.360000px;}
.y28{bottom:742.320000px;}
.y100{bottom:744.840000px;}
.y95{bottom:755.640000px;}
.y55{bottom:756.360000px;}
.yb{bottom:759.000000px;}
.y76{bottom:759.240000px;}
.y27{bottom:763.200000px;}
.yff{bottom:765.360000px;}
.y54{bottom:777.240000px;}
.y75{bottom:779.760000px;}
.ya{bottom:780.000000px;}
.y94{bottom:785.160000px;}
.yfe{bottom:786.240000px;}
.y26{bottom:789.840000px;}
.y53{bottom:797.760000px;}
.y74{bottom:800.640000px;}
.y9{bottom:801.000000px;}
.yfd{bottom:806.760000px;}
.y25{bottom:810.720000px;}
.y93{bottom:815.040000px;}
.y52{bottom:818.640000px;}
.ycf{bottom:819.000000px;}
.y73{bottom:821.160000px;}
.yfc{bottom:827.640000px;}
.yb3{bottom:830.160000px;}
.y24{bottom:831.240000px;}
.y92{bottom:835.560000px;}
.y51{bottom:839.160000px;}
.yfb{bottom:848.160000px;}
.y72{bottom:851.040000px;}
.y23{bottom:852.120000px;}
.y91{bottom:856.440000px;}
.y50{bottom:860.040000px;}
.y8{bottom:867.000000px;}
.yce{bottom:869.040000px;}
.y22{bottom:872.640000px;}
.y90{bottom:876.960000px;}
.y4f{bottom:880.560000px;}
.y21{bottom:887.400000px;}
.ycd{bottom:889.560000px;}
.y4e{bottom:901.440000px;}
.y8f{bottom:906.840000px;}
.y20{bottom:907.920000px;}
.ycc{bottom:910.440000px;}
.y4d{bottom:921.960000px;}
.y1f{bottom:928.800000px;}
.ycb{bottom:930.960000px;}
.y8e{bottom:936.360000px;}
.y4c{bottom:942.840000px;}
.yca{bottom:951.840000px;}
.y7{bottom:953.670000px;}
.y4b{bottom:963.360000px;}
.y1e{bottom:967.320000px;}
.yc9{bottom:972.360000px;}
.y2{bottom:973.770000px;}
.y8d{bottom:975.240000px;}
.y4a{bottom:984.240000px;}
.y1{bottom:989.220000px;}
.y3{bottom:989.481516px;}
.yc8{bottom:993.240000px;}
.y49{bottom:1004.760000px;}
.y1d{bottom:1006.560000px;}
.y8c{bottom:1013.760000px;}
.y48{bottom:1025.640000px;}
.y1c{bottom:1030.680000px;}
.y8b{bottom:1034.640000px;}
.y47{bottom:1046.160000px;}
.y1b{bottom:1054.440000px;}
.y8a{bottom:1055.160000px;}
.y46{bottom:1067.040000px;}
.y1a{bottom:1074.960000px;}
.y89{bottom:1076.040000px;}
.y45{bottom:1087.560000px;}
.y19{bottom:1095.840000px;}
.y88{bottom:1096.560000px;}
.y44{bottom:1108.440000px;}
.y87{bottom:1117.440000px;}
.y18{bottom:1135.080000px;}
.y43{bottom:1137.960000px;}
.y14{bottom:1170.360000px;}
.y12{bottom:1186.500000px;}
.h1a{height:19.500000px;}
.h17{height:21.000000px;}
.hc{height:24.000000px;}
.h6{height:27.487380px;}
.h10{height:34.155000px;}
.h5{height:35.340917px;}
.h4{height:38.443029px;}
.h13{height:46.500000px;}
.h16{height:47.610000px;}
.h18{height:48.224531px;}
.h14{height:49.744688px;}
.ha{height:51.594727px;}
.h11{height:52.417969px;}
.hd{height:52.453125px;}
.h1b{height:52.593750px;}
.h12{height:54.000000px;}
.h2{height:55.784180px;}
.h9{height:56.285156px;}
.hf{height:58.635000px;}
.he{height:60.804844px;}
.h8{height:74.250000px;}
.h15{height:205.500000px;}
.h3{height:220.177301px;}
.h19{height:253.500000px;}
.h7{height:1262.834700px;}
.h0{height:1262.850000px;}
.hb{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:163.305341px;}
.w7{width:226.500000px;}
.w8{width:339.000000px;}
.w9{width:357.000000px;}
.w6{width:892.500000px;}
.w5{width:892.800000px;}
.w4{width:892.913400px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.950212px;}
.x1d{left:10.483524px;}
.x15{left:12.618720px;}
.x16{left:45.208080px;}
.x1f{left:47.153520px;}
.x3{left:51.226101px;}
.x1e{left:61.639164px;}
.x14{left:63.247932px;}
.x2{left:107.999987px;}
.x7{left:113.227200px;}
.x23{left:118.761120px;}
.x22{left:120.513060px;}
.x1b{left:125.026272px;}
.x5{left:129.000000px;}
.x1c{left:132.026400px;}
.xb{left:148.942404px;}
.xf{left:159.470964px;}
.x24{left:162.000000px;}
.x17{left:169.515036px;}
.x19{left:178.807320px;}
.x11{left:181.984140px;}
.x10{left:211.467024px;}
.xc{left:218.976552px;}
.x9{left:226.800000px;}
.x1{left:272.294987px;}
.xd{left:294.885864px;}
.x18{left:297.675000px;}
.x1a{left:304.267320px;}
.x12{left:324.000000px;}
.x20{left:325.469880px;}
.x21{left:329.790240px;}
.x6{left:333.000000px;}
.xe{left:342.804924px;}
.x4{left:374.115300px;}
.xa{left:446.474880px;}
.x8{left:558.000000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1{letter-spacing:-1.370572pt;}
.lse{letter-spacing:-0.284928pt;}
.ls11{letter-spacing:-0.153088pt;}
.ls18{letter-spacing:-0.141312pt;}
.ls16{letter-spacing:-0.135424pt;}
.ls12{letter-spacing:-0.123648pt;}
.ls15{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.111872pt;}
.ls13{letter-spacing:-0.105984pt;}
.ls1a{letter-spacing:-0.100096pt;}
.ls19{letter-spacing:-0.076544pt;}
.ls1b{letter-spacing:-0.070656pt;}
.ls14{letter-spacing:-0.052992pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000512pt;}
.ls8{letter-spacing:0.001280pt;}
.ls6{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.103936pt;}
.ls9{letter-spacing:0.213376pt;}
.ls5{letter-spacing:0.213760pt;}
.ls7{letter-spacing:0.243584pt;}
.lsa{letter-spacing:0.243712pt;}
.ls4{letter-spacing:0.244480pt;}
.lsc{letter-spacing:0.244992pt;}
.ls3{letter-spacing:0.319232pt;}
.ls2{letter-spacing:0.326656pt;}
.lsf{letter-spacing:14.305664pt;}
.ls1c{letter-spacing:750.208000pt;}
.ws4{word-spacing:-20.742656pt;}
.ws8{word-spacing:-17.804800pt;}
.ws7{word-spacing:-17.792000pt;}
.ws9{word-spacing:-17.779200pt;}
.wse{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.297984pt;}
.wsa{word-spacing:-16.133120pt;}
.wsb{word-spacing:-16.080128pt;}
.wsf{word-spacing:-16.056576pt;}
.ws10{word-spacing:-16.027136pt;}
.wsc{word-spacing:-16.015360pt;}
.wsd{word-spacing:-15.997696pt;}
.ws5{word-spacing:-11.987712pt;}
.ws6{word-spacing:-11.742720pt;}
.ws12{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:1.699589pt;}
.ws2{word-spacing:16.413115pt;}
.ws3{word-spacing:63.197920pt;}
._21{margin-left:-10.790400pt;}
._0{margin-left:-7.004293pt;}
._3{margin-left:-5.768164pt;}
._8{margin-left:-4.776969pt;}
._2{margin-left:-3.376631pt;}
._1{margin-left:-2.472257pt;}
._4{margin-left:-1.565559pt;}
._5{width:0.965120pt;}
._7{width:2.534400pt;}
._c{width:3.724800pt;}
._10{width:4.871040pt;}
._1d{width:5.829760pt;}
._a{width:6.892800pt;}
._22{width:7.797120pt;}
._12{width:8.691200pt;}
._9{width:10.438400pt;}
._23{width:11.944960pt;}
._17{width:12.926720pt;}
._d{width:13.854848pt;}
._15{width:15.443200pt;}
._16{width:16.486400pt;}
._b{width:18.713600pt;}
._6{width:20.492032pt;}
._24{width:21.395200pt;}
._11{width:22.298368pt;}
._13{width:23.431936pt;}
._1c{width:24.344064pt;}
._1e{width:25.395200pt;}
._1a{width:26.444800pt;}
._20{width:27.744000pt;}
._18{width:29.030400pt;}
._19{width:30.568448pt;}
._1b{width:32.480000pt;}
._14{width:33.952000pt;}
._1f{width:42.457600pt;}
._f{width:61.824512pt;}
._e{width:750.292480pt;}
.fs3{font-size:33.538370pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:43.120761pt;}
.fs1{font-size:45.443765pt;}
.fs8{font-size:51.200000pt;}
.fs9{font-size:53.760000pt;}
.fs0{font-size:58.666667pt;}
.fsa{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:0.480000pt;}
.yd4{bottom:0.853333pt;}
.ye1{bottom:3.413333pt;}
.yd6{bottom:3.786667pt;}
.ydc{bottom:4.960000pt;}
.yd1{bottom:5.120000pt;}
.y16{bottom:5.386667pt;}
.y13{bottom:5.813333pt;}
.ydb{bottom:24.480000pt;}
.yd0{bottom:24.640000pt;}
.ydf{bottom:26.400000pt;}
.y17{bottom:50.560000pt;}
.y15{bottom:65.333333pt;}
.y4{bottom:72.059695pt;}
.y6{bottom:86.723658pt;}
.y42{bottom:99.520000pt;}
.y5{bottom:99.609070pt;}
.yb2{bottom:105.920000pt;}
.yc7{bottom:106.880000pt;}
.y71{bottom:109.120000pt;}
.yfa{bottom:110.080000pt;}
.y41{bottom:123.200000pt;}
.yb1{bottom:124.480000pt;}
.yc6{bottom:125.120000pt;}
.ye4{bottom:127.040000pt;}
.y70{bottom:127.680000pt;}
.yf9{bottom:128.640000pt;}
.y40{bottom:136.320000pt;}
.y114{bottom:138.880000pt;}
.yb0{bottom:142.720000pt;}
.yc5{bottom:143.680000pt;}
.ye3{bottom:145.600000pt;}
.y6f{bottom:145.920000pt;}
.yf8{bottom:146.880000pt;}
.y113{bottom:157.120000pt;}
.yaf{bottom:161.280000pt;}
.yc4{bottom:161.920000pt;}
.ye2{bottom:163.840000pt;}
.y6e{bottom:164.480000pt;}
.y3f{bottom:164.800000pt;}
.yf7{bottom:165.440000pt;}
.yd3{bottom:167.893333pt;}
.y112{bottom:175.680000pt;}
.yae{bottom:179.520000pt;}
.yc3{bottom:180.480000pt;}
.y6d{bottom:182.720000pt;}
.y3e{bottom:183.040000pt;}
.yf6{bottom:183.680000pt;}
.y111{bottom:193.920000pt;}
.ye0{bottom:194.666667pt;}
.yad{bottom:198.080000pt;}
.yc2{bottom:198.720000pt;}
.y6c{bottom:201.280000pt;}
.y3d{bottom:201.600000pt;}
.yf5{bottom:202.240000pt;}
.ydd{bottom:212.000000pt;}
.y110{bottom:212.480000pt;}
.y11{bottom:214.666667pt;}
.yc1{bottom:217.280000pt;}
.y86{bottom:219.520000pt;}
.y3c{bottom:219.840000pt;}
.yf4{bottom:220.480000pt;}
.yac{bottom:224.320000pt;}
.y10f{bottom:230.720000pt;}
.y10{bottom:233.333333pt;}
.y6b{bottom:235.520000pt;}
.y85{bottom:238.080000pt;}
.y3b{bottom:238.400000pt;}
.yf3{bottom:238.720000pt;}
.y10e{bottom:249.280000pt;}
.yab{bottom:250.880000pt;}
.yf{bottom:252.000000pt;}
.y6a{bottom:254.080000pt;}
.y84{bottom:256.320000pt;}
.y3a{bottom:256.640000pt;}
.yf2{bottom:257.280000pt;}
.y10d{bottom:267.520000pt;}
.yaa{bottom:269.120000pt;}
.ye{bottom:270.666667pt;}
.y69{bottom:272.320000pt;}
.y83{bottom:274.880000pt;}
.y39{bottom:275.200000pt;}
.yf1{bottom:275.520000pt;}
.y10c{bottom:286.080000pt;}
.ya9{bottom:287.680000pt;}
.y68{bottom:290.880000pt;}
.y82{bottom:293.120000pt;}
.y38{bottom:293.440000pt;}
.yc0{bottom:298.880000pt;}
.yf0{bottom:302.080000pt;}
.y10b{bottom:304.320000pt;}
.ya8{bottom:305.920000pt;}
.y67{bottom:309.120000pt;}
.y37{bottom:312.000000pt;}
.y81{bottom:319.680000pt;}
.y10a{bottom:322.880000pt;}
.ya7{bottom:324.480000pt;}
.ybf{bottom:325.120000pt;}
.y66{bottom:327.680000pt;}
.y36{bottom:330.240000pt;}
.yef{bottom:336.320000pt;}
.y109{bottom:341.120000pt;}
.ya6{bottom:342.720000pt;}
.ybe{bottom:343.680000pt;}
.y65{bottom:345.920000pt;}
.y35{bottom:348.800000pt;}
.yee{bottom:354.880000pt;}
.y108{bottom:359.680000pt;}
.ya5{bottom:361.280000pt;}
.ybd{bottom:361.920000pt;}
.y64{bottom:364.480000pt;}
.y34{bottom:367.040000pt;}
.yed{bottom:373.120000pt;}
.y107{bottom:377.920000pt;}
.ya4{bottom:379.520000pt;}
.ybc{bottom:380.480000pt;}
.y63{bottom:382.720000pt;}
.y33{bottom:385.600000pt;}
.yec{bottom:391.680000pt;}
.y106{bottom:396.480000pt;}
.ya3{bottom:398.080000pt;}
.ybb{bottom:398.720000pt;}
.y62{bottom:401.280000pt;}
.y32{bottom:403.840000pt;}
.yeb{bottom:411.200000pt;}
.y105{bottom:414.720000pt;}
.ya2{bottom:416.320000pt;}
.yba{bottom:417.280000pt;}
.y61{bottom:419.520000pt;}
.y31{bottom:422.400000pt;}
.yea{bottom:430.720000pt;}
.y104{bottom:433.280000pt;}
.yb9{bottom:435.520000pt;}
.yda{bottom:436.000000pt;}
.y60{bottom:438.080000pt;}
.y30{bottom:440.640000pt;}
.ya1{bottom:442.880000pt;}
.ye9{bottom:449.280000pt;}
.y103{bottom:451.520000pt;}
.yb8{bottom:454.080000pt;}
.y5f{bottom:456.320000pt;}
.y2f{bottom:459.200000pt;}
.ye8{bottom:467.520000pt;}
.ya0{bottom:469.120000pt;}
.y102{bottom:470.080000pt;}
.yb7{bottom:472.320000pt;}
.y80{bottom:474.880000pt;}
.y2e{bottom:477.440000pt;}
.yd9{bottom:480.000000pt;}
.y5e{bottom:482.880000pt;}
.ye7{bottom:487.040000pt;}
.y9f{bottom:487.680000pt;}
.y101{bottom:488.320000pt;}
.yb6{bottom:490.880000pt;}
.y7f{bottom:493.120000pt;}
.yd8{bottom:498.240000pt;}
.y2d{bottom:504.000000pt;}
.y9e{bottom:505.920000pt;}
.ye6{bottom:506.880000pt;}
.y5d{bottom:509.120000pt;}
.y7e{bottom:511.680000pt;}
.yd7{bottom:515.200000pt;}
.y9d{bottom:524.480000pt;}
.ye5{bottom:525.120000pt;}
.yb5{bottom:527.680000pt;}
.yd5{bottom:529.333333pt;}
.y7d{bottom:529.920000pt;}
.y9c{bottom:542.720000pt;}
.y5c{bottom:543.680000pt;}
.yb4{bottom:545.920000pt;}
.yd2{bottom:546.666667pt;}
.y2c{bottom:554.240000pt;}
.y9b{bottom:561.280000pt;}
.y5b{bottom:561.920000pt;}
.y7c{bottom:564.480000pt;}
.y2b{bottom:572.800000pt;}
.y9a{bottom:579.520000pt;}
.y5a{bottom:580.480000pt;}
.y7b{bottom:582.720000pt;}
.y2a{bottom:591.040000pt;}
.y99{bottom:598.080000pt;}
.y59{bottom:598.720000pt;}
.y7a{bottom:601.280000pt;}
.y29{bottom:609.920000pt;}
.y98{bottom:616.320000pt;}
.y58{bottom:617.280000pt;}
.y79{bottom:619.520000pt;}
.y97{bottom:634.880000pt;}
.y57{bottom:635.520000pt;}
.yd{bottom:637.333333pt;}
.y78{bottom:638.080000pt;}
.y96{bottom:653.120000pt;}
.y56{bottom:654.080000pt;}
.yc{bottom:656.000000pt;}
.y77{bottom:656.320000pt;}
.y28{bottom:659.840000pt;}
.y100{bottom:662.080000pt;}
.y95{bottom:671.680000pt;}
.y55{bottom:672.320000pt;}
.yb{bottom:674.666667pt;}
.y76{bottom:674.880000pt;}
.y27{bottom:678.400000pt;}
.yff{bottom:680.320000pt;}
.y54{bottom:690.880000pt;}
.y75{bottom:693.120000pt;}
.ya{bottom:693.333333pt;}
.y94{bottom:697.920000pt;}
.yfe{bottom:698.880000pt;}
.y26{bottom:702.080000pt;}
.y53{bottom:709.120000pt;}
.y74{bottom:711.680000pt;}
.y9{bottom:712.000000pt;}
.yfd{bottom:717.120000pt;}
.y25{bottom:720.640000pt;}
.y93{bottom:724.480000pt;}
.y52{bottom:727.680000pt;}
.ycf{bottom:728.000000pt;}
.y73{bottom:729.920000pt;}
.yfc{bottom:735.680000pt;}
.yb3{bottom:737.920000pt;}
.y24{bottom:738.880000pt;}
.y92{bottom:742.720000pt;}
.y51{bottom:745.920000pt;}
.yfb{bottom:753.920000pt;}
.y72{bottom:756.480000pt;}
.y23{bottom:757.440000pt;}
.y91{bottom:761.280000pt;}
.y50{bottom:764.480000pt;}
.y8{bottom:770.666667pt;}
.yce{bottom:772.480000pt;}
.y22{bottom:775.680000pt;}
.y90{bottom:779.520000pt;}
.y4f{bottom:782.720000pt;}
.y21{bottom:788.800000pt;}
.ycd{bottom:790.720000pt;}
.y4e{bottom:801.280000pt;}
.y8f{bottom:806.080000pt;}
.y20{bottom:807.040000pt;}
.ycc{bottom:809.280000pt;}
.y4d{bottom:819.520000pt;}
.y1f{bottom:825.600000pt;}
.ycb{bottom:827.520000pt;}
.y8e{bottom:832.320000pt;}
.y4c{bottom:838.080000pt;}
.yca{bottom:846.080000pt;}
.y7{bottom:847.706667pt;}
.y4b{bottom:856.320000pt;}
.y1e{bottom:859.840000pt;}
.yc9{bottom:864.320000pt;}
.y2{bottom:865.573333pt;}
.y8d{bottom:866.880000pt;}
.y4a{bottom:874.880000pt;}
.y1{bottom:879.306667pt;}
.y3{bottom:879.539126pt;}
.yc8{bottom:882.880000pt;}
.y49{bottom:893.120000pt;}
.y1d{bottom:894.720000pt;}
.y8c{bottom:901.120000pt;}
.y48{bottom:911.680000pt;}
.y1c{bottom:916.160000pt;}
.y8b{bottom:919.680000pt;}
.y47{bottom:929.920000pt;}
.y1b{bottom:937.280000pt;}
.y8a{bottom:937.920000pt;}
.y46{bottom:948.480000pt;}
.y1a{bottom:955.520000pt;}
.y89{bottom:956.480000pt;}
.y45{bottom:966.720000pt;}
.y19{bottom:974.080000pt;}
.y88{bottom:974.720000pt;}
.y44{bottom:985.280000pt;}
.y87{bottom:993.280000pt;}
.y18{bottom:1008.960000pt;}
.y43{bottom:1011.520000pt;}
.y14{bottom:1040.320000pt;}
.y12{bottom:1054.666667pt;}
.h1a{height:17.333333pt;}
.h17{height:18.666667pt;}
.hc{height:21.333333pt;}
.h6{height:24.433226pt;}
.h10{height:30.360000pt;}
.h5{height:31.414148pt;}
.h4{height:34.171581pt;}
.h13{height:41.333333pt;}
.h16{height:42.320000pt;}
.h18{height:42.866250pt;}
.h14{height:44.217500pt;}
.ha{height:45.861979pt;}
.h11{height:46.593750pt;}
.hd{height:46.625000pt;}
.h1b{height:46.750000pt;}
.h12{height:48.000000pt;}
.h2{height:49.585938pt;}
.h9{height:50.031250pt;}
.hf{height:52.120000pt;}
.he{height:54.048750pt;}
.h8{height:66.000000pt;}
.h15{height:182.666667pt;}
.h3{height:195.713157pt;}
.h19{height:225.333333pt;}
.h7{height:1122.519733pt;}
.h0{height:1122.533333pt;}
.hb{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:145.160303pt;}
.w7{width:201.333333pt;}
.w8{width:301.333333pt;}
.w9{width:317.333333pt;}
.w6{width:793.333333pt;}
.w5{width:793.600000pt;}
.w4{width:793.700800pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.955744pt;}
.x1d{left:9.318688pt;}
.x15{left:11.216640pt;}
.x16{left:40.184960pt;}
.x1f{left:41.914240pt;}
.x3{left:45.534312pt;}
.x1e{left:54.790368pt;}
.x14{left:56.220384pt;}
.x2{left:95.999988pt;}
.x7{left:100.646400pt;}
.x23{left:105.565440pt;}
.x22{left:107.122720pt;}
.x1b{left:111.134464pt;}
.x5{left:114.666667pt;}
.x1c{left:117.356800pt;}
.xb{left:132.393248pt;}
.xf{left:141.751968pt;}
.x24{left:144.000000pt;}
.x17{left:150.680032pt;}
.x19{left:158.939840pt;}
.x11{left:161.763680pt;}
.x10{left:187.970688pt;}
.xc{left:194.645824pt;}
.x9{left:201.600000pt;}
.x1{left:242.039988pt;}
.xd{left:262.120768pt;}
.x18{left:264.600000pt;}
.x1a{left:270.459840pt;}
.x12{left:288.000000pt;}
.x20{left:289.306560pt;}
.x21{left:293.146880pt;}
.x6{left:296.000000pt;}
.xe{left:304.715488pt;}
.x4{left:332.546933pt;}
.xa{left:396.866560pt;}
.x8{left:496.000000pt;}
}




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