
    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_b98ed42e5e9bf1dd6acacfbc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4e4313a30422590ba253b2e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b735a9fe1a61ec47131aada7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_b158066393e4c4233e1826b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a3bb066800f950f11cd4794c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_319875867c7dc1d2f0eb80fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_575cd93030fa1c7be1caad5e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d58f8b090b658c7b7b251526.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_bed87ab15c1bac08acfeaba7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_3266a9a6c0b11e2e3e408087.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_6b1e95263ceda5d487a7db1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_cb93f1deb00ebf3a549548e9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_c4005b7738c4e0e5c013bf67.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_03b2d9630596296f3e51d463.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-4.680000px;}
.lsd{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.127200px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.786240px;}
.lsc{letter-spacing:0.900000px;}
.ls10{letter-spacing:43.146720px;}
.lsb{letter-spacing:64.026720px;}
.lsf{letter-spacing:72.666720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws7{word-spacing:-10.260000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._19{margin-left:-8.584560px;}
._18{margin-left:-7.495440px;}
._12{margin-left:-6.338400px;}
._4{margin-left:-4.780080px;}
._b{margin-left:-3.688320px;}
._2{margin-left:-2.542320px;}
._0{margin-left:-1.080000px;}
._1{width:1.110000px;}
._3{width:2.515680px;}
._6{width:4.318080px;}
._5{width:5.905440px;}
._d{width:7.410240px;}
._c{width:8.630880px;}
._11{width:9.724320px;}
._a{width:11.264640px;}
._9{width:12.370320px;}
._e{width:13.505760px;}
._13{width:15.947040px;}
._f{width:17.953440px;}
._10{width:19.648320px;}
._14{width:20.952960px;}
._7{width:22.646880px;}
._17{width:24.019680px;}
._8{width:28.411440px;}
._16{width:30.417840px;}
._15{width:126.033840px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y45{bottom:3.960000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y43{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.680000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y3f{bottom:20.520000px;}
.y44{bottom:22.140000px;}
.y42{bottom:25.200000px;}
.y17{bottom:25.605000px;}
.yb{bottom:30.060000px;}
.y3e{bottom:37.800000px;}
.y5{bottom:41.940000px;}
.y16{bottom:42.165000px;}
.ya{bottom:46.440000px;}
.y3d{bottom:55.080000px;}
.y15{bottom:62.325000px;}
.y1{bottom:64.440000px;}
.y3c{bottom:72.180000px;}
.y9{bottom:73.260000px;}
.y14{bottom:75.465000px;}
.y3b{bottom:89.460000px;}
.y8{bottom:92.910000px;}
.y13{bottom:93.825000px;}
.y3a{bottom:106.740000px;}
.yca{bottom:108.756000px;}
.y7{bottom:111.270000px;}
.yfa{bottom:111.456000px;}
.y12{bottom:112.725000px;}
.y55{bottom:117.216000px;}
.yd9{bottom:117.756000px;}
.y39{bottom:124.020000px;}
.y90{bottom:126.576000px;}
.yc9{bottom:126.756000px;}
.yf9{bottom:128.736000px;}
.y54{bottom:134.496000px;}
.yd8{bottom:135.036000px;}
.y11{bottom:138.465000px;}
.y38{bottom:141.300000px;}
.y8f{bottom:143.856000px;}
.yc8{bottom:144.756000px;}
.yf8{bottom:146.016000px;}
.y29{bottom:147.780000px;}
.yd7{bottom:149.076000px;}
.y53{bottom:151.770000px;}
.y37{bottom:158.580000px;}
.y8e{bottom:161.130000px;}
.yc7{bottom:162.750000px;}
.y10{bottom:162.945000px;}
.y28{bottom:163.080000px;}
.yf7{bottom:163.290000px;}
.y52{bottom:169.050000px;}
.y36{bottom:175.680000px;}
.y8d{bottom:178.410000px;}
.yf6{bottom:180.570000px;}
.y27{bottom:180.750000px;}
.yc6{bottom:183.990000px;}
.y51{bottom:186.330000px;}
.y35{bottom:192.990000px;}
.y8c{bottom:195.690000px;}
.yf5{bottom:197.670000px;}
.y26{bottom:198.030000px;}
.yc5{bottom:201.270000px;}
.y50{bottom:203.610000px;}
.y34{bottom:210.270000px;}
.y8b{bottom:212.790000px;}
.yf4{bottom:214.950000px;}
.y25{bottom:215.130000px;}
.yc4{bottom:218.550000px;}
.y4f{bottom:220.710000px;}
.y33{bottom:227.550000px;}
.y8a{bottom:230.070000px;}
.yf3{bottom:232.230000px;}
.y24{bottom:232.950000px;}
.yc3{bottom:235.830000px;}
.y4e{bottom:237.990000px;}
.y32{bottom:244.830000px;}
.y89{bottom:248.430000px;}
.yf2{bottom:249.510000px;}
.y23{bottom:250.410000px;}
.yc2{bottom:252.930000px;}
.y4d{bottom:255.270000px;}
.y31{bottom:261.930000px;}
.y88{bottom:266.790000px;}
.y22{bottom:267.870000px;}
.yc1{bottom:270.210000px;}
.y4c{bottom:272.550000px;}
.y30{bottom:279.210000px;}
.yf1{bottom:284.070000px;}
.y21{bottom:285.150000px;}
.yc0{bottom:287.490000px;}
.y4b{bottom:289.830000px;}
.y2f{bottom:296.490000px;}
.yf0{bottom:301.170000px;}
.y20{bottom:302.610000px;}
.y87{bottom:303.510000px;}
.ybf{bottom:304.770000px;}
.y4a{bottom:307.110000px;}
.y2e{bottom:313.770000px;}
.yef{bottom:318.450000px;}
.y1f{bottom:319.890000px;}
.y86{bottom:321.690000px;}
.ybe{bottom:322.050000px;}
.y49{bottom:324.210000px;}
.y2d{bottom:331.050000px;}
.yee{bottom:335.730000px;}
.ybd{bottom:339.375000px;}
.y85{bottom:340.095000px;}
.y1e{bottom:340.230000px;}
.y48{bottom:341.535000px;}
.y2c{bottom:348.330000px;}
.yed{bottom:353.055000px;}
.ybc{bottom:356.475000px;}
.y84{bottom:357.375000px;}
.y47{bottom:358.815000px;}
.y2b{bottom:365.430000px;}
.y1d{bottom:367.770000px;}
.yec{bottom:370.335000px;}
.ybb{bottom:371.235000px;}
.y83{bottom:374.655000px;}
.y46{bottom:376.095000px;}
.y2a{bottom:382.710000px;}
.y1c{bottom:385.410000px;}
.yeb{bottom:387.615000px;}
.yba{bottom:389.235000px;}
.y41{bottom:390.135000px;}
.y82{bottom:393.015000px;}
.yea{bottom:404.715000px;}
.yb9{bottom:407.235000px;}
.y81{bottom:411.195000px;}
.ye9{bottom:421.995000px;}
.yb8{bottom:425.235000px;}
.y1b{bottom:426.675000px;}
.y80{bottom:429.555000px;}
.ye8{bottom:439.275000px;}
.yb7{bottom:443.235000px;}
.y7f{bottom:446.835000px;}
.ye7{bottom:456.555000px;}
.yb6{bottom:461.235000px;}
.y7e{bottom:465.195000px;}
.ye6{bottom:473.835000px;}
.yb5{bottom:482.475000px;}
.y7d{bottom:483.555000px;}
.ye5{bottom:490.935000px;}
.yb4{bottom:499.755000px;}
.y7c{bottom:501.735000px;}
.ye4{bottom:508.215000px;}
.yb3{bottom:517.035000px;}
.y7b{bottom:520.095000px;}
.ye3{bottom:525.495000px;}
.yb2{bottom:534.315000px;}
.y7a{bottom:537.375000px;}
.ye2{bottom:542.775000px;}
.yd6{bottom:548.355000px;}
.yb1{bottom:551.595000px;}
.y79{bottom:554.655000px;}
.ye1{bottom:560.055000px;}
.yd5{bottom:565.455000px;}
.yb0{bottom:568.875000px;}
.y78{bottom:571.935000px;}
.ye0{bottom:577.335000px;}
.yd4{bottom:582.735000px;}
.yaf{bottom:585.975000px;}
.y77{bottom:589.215000px;}
.ydf{bottom:594.435000px;}
.yd3{bottom:596.775000px;}
.yae{bottom:603.255000px;}
.y76{bottom:606.345000px;}
.yde{bottom:611.745000px;}
.yad{bottom:620.565000px;}
.y75{bottom:624.705000px;}
.ydd{bottom:629.025000px;}
.yac{bottom:637.845000px;}
.y74{bottom:643.065000px;}
.ydc{bottom:646.305000px;}
.yab{bottom:655.125000px;}
.y73{bottom:661.425000px;}
.ydb{bottom:663.585000px;}
.yaa{bottom:672.225000px;}
.y72{bottom:679.785000px;}
.yda{bottom:680.865000px;}
.ya9{bottom:689.505000px;}
.y71{bottom:697.965000px;}
.ya8{bottom:706.785000px;}
.y70{bottom:715.245000px;}
.ya7{bottom:721.545000px;}
.y6f{bottom:732.525000px;}
.y6e{bottom:749.805000px;}
.ya6{bottom:756.825000px;}
.y6d{bottom:767.085000px;}
.ya5{bottom:774.825000px;}
.y6c{bottom:784.365000px;}
.ya4{bottom:792.825000px;}
.y6b{bottom:801.465000px;}
.ya3{bottom:810.825000px;}
.y6a{bottom:818.745000px;}
.y19{bottom:823.425000px;}
.ya2{bottom:828.825000px;}
.y69{bottom:836.025000px;}
.yf{bottom:852.945000px;}
.y68{bottom:853.305000px;}
.ya1{bottom:867.345000px;}
.y67{bottom:870.630000px;}
.yd2{bottom:881.430000px;}
.ya0{bottom:884.670000px;}
.y66{bottom:887.730000px;}
.yd1{bottom:898.530000px;}
.y9f{bottom:901.770000px;}
.y65{bottom:905.010000px;}
.yd0{bottom:915.810000px;}
.y9e{bottom:919.050000px;}
.y64{bottom:922.290000px;}
.ycf{bottom:933.090000px;}
.y9d{bottom:936.330000px;}
.y63{bottom:939.570000px;}
.yce{bottom:951.450000px;}
.y9c{bottom:953.610000px;}
.y62{bottom:956.850000px;}
.ycd{bottom:969.810000px;}
.y9b{bottom:970.890000px;}
.y61{bottom:974.130000px;}
.y9a{bottom:987.990000px;}
.y60{bottom:991.230000px;}
.y99{bottom:1005.270000px;}
.ycc{bottom:1006.350000px;}
.y5f{bottom:1008.510000px;}
.y98{bottom:1022.550000px;}
.ycb{bottom:1024.710000px;}
.y5e{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.y97{bottom:1039.830000px;}
.y5d{bottom:1043.070000px;}
.y6{bottom:1056.390000px;}
.y96{bottom:1057.110000px;}
.y5c{bottom:1060.350000px;}
.y95{bottom:1074.390000px;}
.y5b{bottom:1077.630000px;}
.y94{bottom:1091.490000px;}
.y5a{bottom:1094.730000px;}
.y93{bottom:1108.770000px;}
.y59{bottom:1112.010000px;}
.y92{bottom:1127.130000px;}
.y58{bottom:1129.290000px;}
.y91{bottom:1145.520000px;}
.y57{bottom:1146.600000px;}
.y56{bottom:1163.880000px;}
.h21{height:17.280000px;}
.hb{height:24.840000px;}
.h10{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h20{height:34.560000px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h11{height:43.453125px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1e{height:48.088125px;}
.h18{height:49.255313px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h19{height:59.439023px;}
.hf{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:178.050000px;}
.h14{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:51.660000px;}
.w13{width:67.860000px;}
.w12{width:69.840000px;}
.wc{width:71.640000px;}
.w3{width:73.080000px;}
.w11{width:81.936000px;}
.w17{width:86.580000px;}
.w16{width:125.136000px;}
.wb{width:129.456000px;}
.wd{width:134.496000px;}
.w5{width:151.950000px;}
.w10{width:200.010000px;}
.w8{width:216.075000px;}
.w14{width:247.395000px;}
.w15{width:268.410000px;}
.wf{width:307.155000px;}
.wa{width:339.375000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xe{left:13.716000px;}
.xb{left:25.776000px;}
.xf{left:39.816000px;}
.x10{left:53.136000px;}
.x1{left:81.000000px;}
.x26{left:85.139987px;}
.x28{left:87.839987px;}
.x4{left:98.130000px;}
.x14{left:108.035987px;}
.x29{left:121.535987px;}
.xc{left:180.750000px;}
.x15{left:199.469987px;}
.xd{left:213.375000px;}
.x11{left:215.175000px;}
.x27{left:228.089987px;}
.x5{left:232.950000px;}
.x1e{left:263.549987px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.x23{left:326.234987px;}
.x1f{left:329.835000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x1a{left:389.595000px;}
.x16{left:421.815000px;}
.x9{left:439.500000px;}
.x24{left:446.474987px;}
.x17{left:551.985000px;}
.x1b{left:590.325000px;}
.x20{left:598.965000px;}
.x18{left:624.345000px;}
.x22{left:650.084987px;}
.x1c{left:672.990000px;}
.x25{left:689.909987px;}
.x21{left:724.830000px;}
.x3{left:739.050000px;}
.x1d{left:743.550000px;}
.x19{left:759.750000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-4.160000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsc{letter-spacing:0.800000pt;}
.ls10{letter-spacing:38.352640pt;}
.lsb{letter-spacing:56.912640pt;}
.lsf{letter-spacing:64.592640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws7{word-spacing:-9.120000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._19{margin-left:-7.630720pt;}
._18{margin-left:-6.662613pt;}
._12{margin-left:-5.634133pt;}
._4{margin-left:-4.248960pt;}
._b{margin-left:-3.278507pt;}
._2{margin-left:-2.259840pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.986667pt;}
._3{width:2.236160pt;}
._6{width:3.838293pt;}
._5{width:5.249280pt;}
._d{width:6.586880pt;}
._c{width:7.671893pt;}
._11{width:8.643840pt;}
._a{width:10.013013pt;}
._9{width:10.995840pt;}
._e{width:12.005120pt;}
._13{width:14.175147pt;}
._f{width:15.958613pt;}
._10{width:17.465173pt;}
._14{width:18.624853pt;}
._7{width:20.130560pt;}
._17{width:21.350827pt;}
._8{width:25.254613pt;}
._16{width:27.038080pt;}
._15{width:112.030080pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y45{bottom:3.520000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y43{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.160000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y3f{bottom:18.240000pt;}
.y44{bottom:19.680000pt;}
.y42{bottom:22.400000pt;}
.y17{bottom:22.760000pt;}
.yb{bottom:26.720000pt;}
.y3e{bottom:33.600000pt;}
.y5{bottom:37.280000pt;}
.y16{bottom:37.480000pt;}
.ya{bottom:41.280000pt;}
.y3d{bottom:48.960000pt;}
.y15{bottom:55.400000pt;}
.y1{bottom:57.280000pt;}
.y3c{bottom:64.160000pt;}
.y9{bottom:65.120000pt;}
.y14{bottom:67.080000pt;}
.y3b{bottom:79.520000pt;}
.y8{bottom:82.586667pt;}
.y13{bottom:83.400000pt;}
.y3a{bottom:94.880000pt;}
.yca{bottom:96.672000pt;}
.y7{bottom:98.906667pt;}
.yfa{bottom:99.072000pt;}
.y12{bottom:100.200000pt;}
.y55{bottom:104.192000pt;}
.yd9{bottom:104.672000pt;}
.y39{bottom:110.240000pt;}
.y90{bottom:112.512000pt;}
.yc9{bottom:112.672000pt;}
.yf9{bottom:114.432000pt;}
.y54{bottom:119.552000pt;}
.yd8{bottom:120.032000pt;}
.y11{bottom:123.080000pt;}
.y38{bottom:125.600000pt;}
.y8f{bottom:127.872000pt;}
.yc8{bottom:128.672000pt;}
.yf8{bottom:129.792000pt;}
.y29{bottom:131.360000pt;}
.yd7{bottom:132.512000pt;}
.y53{bottom:134.906667pt;}
.y37{bottom:140.960000pt;}
.y8e{bottom:143.226667pt;}
.yc7{bottom:144.666667pt;}
.y10{bottom:144.840000pt;}
.y28{bottom:144.960000pt;}
.yf7{bottom:145.146667pt;}
.y52{bottom:150.266667pt;}
.y36{bottom:156.160000pt;}
.y8d{bottom:158.586667pt;}
.yf6{bottom:160.506667pt;}
.y27{bottom:160.666667pt;}
.yc6{bottom:163.546667pt;}
.y51{bottom:165.626667pt;}
.y35{bottom:171.546667pt;}
.y8c{bottom:173.946667pt;}
.yf5{bottom:175.706667pt;}
.y26{bottom:176.026667pt;}
.yc5{bottom:178.906667pt;}
.y50{bottom:180.986667pt;}
.y34{bottom:186.906667pt;}
.y8b{bottom:189.146667pt;}
.yf4{bottom:191.066667pt;}
.y25{bottom:191.226667pt;}
.yc4{bottom:194.266667pt;}
.y4f{bottom:196.186667pt;}
.y33{bottom:202.266667pt;}
.y8a{bottom:204.506667pt;}
.yf3{bottom:206.426667pt;}
.y24{bottom:207.066667pt;}
.yc3{bottom:209.626667pt;}
.y4e{bottom:211.546667pt;}
.y32{bottom:217.626667pt;}
.y89{bottom:220.826667pt;}
.yf2{bottom:221.786667pt;}
.y23{bottom:222.586667pt;}
.yc2{bottom:224.826667pt;}
.y4d{bottom:226.906667pt;}
.y31{bottom:232.826667pt;}
.y88{bottom:237.146667pt;}
.y22{bottom:238.106667pt;}
.yc1{bottom:240.186667pt;}
.y4c{bottom:242.266667pt;}
.y30{bottom:248.186667pt;}
.yf1{bottom:252.506667pt;}
.y21{bottom:253.466667pt;}
.yc0{bottom:255.546667pt;}
.y4b{bottom:257.626667pt;}
.y2f{bottom:263.546667pt;}
.yf0{bottom:267.706667pt;}
.y20{bottom:268.986667pt;}
.y87{bottom:269.786667pt;}
.ybf{bottom:270.906667pt;}
.y4a{bottom:272.986667pt;}
.y2e{bottom:278.906667pt;}
.yef{bottom:283.066667pt;}
.y1f{bottom:284.346667pt;}
.y86{bottom:285.946667pt;}
.ybe{bottom:286.266667pt;}
.y49{bottom:288.186667pt;}
.y2d{bottom:294.266667pt;}
.yee{bottom:298.426667pt;}
.ybd{bottom:301.666667pt;}
.y85{bottom:302.306667pt;}
.y1e{bottom:302.426667pt;}
.y48{bottom:303.586667pt;}
.y2c{bottom:309.626667pt;}
.yed{bottom:313.826667pt;}
.ybc{bottom:316.866667pt;}
.y84{bottom:317.666667pt;}
.y47{bottom:318.946667pt;}
.y2b{bottom:324.826667pt;}
.y1d{bottom:326.906667pt;}
.yec{bottom:329.186667pt;}
.ybb{bottom:329.986667pt;}
.y83{bottom:333.026667pt;}
.y46{bottom:334.306667pt;}
.y2a{bottom:340.186667pt;}
.y1c{bottom:342.586667pt;}
.yeb{bottom:344.546667pt;}
.yba{bottom:345.986667pt;}
.y41{bottom:346.786667pt;}
.y82{bottom:349.346667pt;}
.yea{bottom:359.746667pt;}
.yb9{bottom:361.986667pt;}
.y81{bottom:365.506667pt;}
.ye9{bottom:375.106667pt;}
.yb8{bottom:377.986667pt;}
.y1b{bottom:379.266667pt;}
.y80{bottom:381.826667pt;}
.ye8{bottom:390.466667pt;}
.yb7{bottom:393.986667pt;}
.y7f{bottom:397.186667pt;}
.ye7{bottom:405.826667pt;}
.yb6{bottom:409.986667pt;}
.y7e{bottom:413.506667pt;}
.ye6{bottom:421.186667pt;}
.yb5{bottom:428.866667pt;}
.y7d{bottom:429.826667pt;}
.ye5{bottom:436.386667pt;}
.yb4{bottom:444.226667pt;}
.y7c{bottom:445.986667pt;}
.ye4{bottom:451.746667pt;}
.yb3{bottom:459.586667pt;}
.y7b{bottom:462.306667pt;}
.ye3{bottom:467.106667pt;}
.yb2{bottom:474.946667pt;}
.y7a{bottom:477.666667pt;}
.ye2{bottom:482.466667pt;}
.yd6{bottom:487.426667pt;}
.yb1{bottom:490.306667pt;}
.y79{bottom:493.026667pt;}
.ye1{bottom:497.826667pt;}
.yd5{bottom:502.626667pt;}
.yb0{bottom:505.666667pt;}
.y78{bottom:508.386667pt;}
.ye0{bottom:513.186667pt;}
.yd4{bottom:517.986667pt;}
.yaf{bottom:520.866667pt;}
.y77{bottom:523.746667pt;}
.ydf{bottom:528.386667pt;}
.yd3{bottom:530.466667pt;}
.yae{bottom:536.226667pt;}
.y76{bottom:538.973333pt;}
.yde{bottom:543.773333pt;}
.yad{bottom:551.613333pt;}
.y75{bottom:555.293333pt;}
.ydd{bottom:559.133333pt;}
.yac{bottom:566.973333pt;}
.y74{bottom:571.613333pt;}
.ydc{bottom:574.493333pt;}
.yab{bottom:582.333333pt;}
.y73{bottom:587.933333pt;}
.ydb{bottom:589.853333pt;}
.yaa{bottom:597.533333pt;}
.y72{bottom:604.253333pt;}
.yda{bottom:605.213333pt;}
.ya9{bottom:612.893333pt;}
.y71{bottom:620.413333pt;}
.ya8{bottom:628.253333pt;}
.y70{bottom:635.773333pt;}
.ya7{bottom:641.373333pt;}
.y6f{bottom:651.133333pt;}
.y6e{bottom:666.493333pt;}
.ya6{bottom:672.733333pt;}
.y6d{bottom:681.853333pt;}
.ya5{bottom:688.733333pt;}
.y6c{bottom:697.213333pt;}
.ya4{bottom:704.733333pt;}
.y6b{bottom:712.413333pt;}
.ya3{bottom:720.733333pt;}
.y6a{bottom:727.773333pt;}
.y19{bottom:731.933333pt;}
.ya2{bottom:736.733333pt;}
.y69{bottom:743.133333pt;}
.yf{bottom:758.173333pt;}
.y68{bottom:758.493333pt;}
.ya1{bottom:770.973333pt;}
.y67{bottom:773.893333pt;}
.yd2{bottom:783.493333pt;}
.ya0{bottom:786.373333pt;}
.y66{bottom:789.093333pt;}
.yd1{bottom:798.693333pt;}
.y9f{bottom:801.573333pt;}
.y65{bottom:804.453333pt;}
.yd0{bottom:814.053333pt;}
.y9e{bottom:816.933333pt;}
.y64{bottom:819.813333pt;}
.ycf{bottom:829.413333pt;}
.y9d{bottom:832.293333pt;}
.y63{bottom:835.173333pt;}
.yce{bottom:845.733333pt;}
.y9c{bottom:847.653333pt;}
.y62{bottom:850.533333pt;}
.ycd{bottom:862.053333pt;}
.y9b{bottom:863.013333pt;}
.y61{bottom:865.893333pt;}
.y9a{bottom:878.213333pt;}
.y60{bottom:881.093333pt;}
.y99{bottom:893.573333pt;}
.ycc{bottom:894.533333pt;}
.y5f{bottom:896.453333pt;}
.y98{bottom:908.933333pt;}
.ycb{bottom:910.853333pt;}
.y5e{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.y97{bottom:924.293333pt;}
.y5d{bottom:927.173333pt;}
.y6{bottom:939.013333pt;}
.y96{bottom:939.653333pt;}
.y5c{bottom:942.533333pt;}
.y95{bottom:955.013333pt;}
.y5b{bottom:957.893333pt;}
.y94{bottom:970.213333pt;}
.y5a{bottom:973.093333pt;}
.y93{bottom:985.573333pt;}
.y59{bottom:988.453333pt;}
.y92{bottom:1001.893333pt;}
.y58{bottom:1003.813333pt;}
.y91{bottom:1018.240000pt;}
.y57{bottom:1019.200000pt;}
.y56{bottom:1034.560000pt;}
.h21{height:15.360000pt;}
.hb{height:22.080000pt;}
.h10{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h20{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h11{height:38.625000pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h18{height:43.782500pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h19{height:52.834688pt;}
.hf{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:158.266667pt;}
.h14{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:45.920000pt;}
.w13{width:60.320000pt;}
.w12{width:62.080000pt;}
.wc{width:63.680000pt;}
.w3{width:64.960000pt;}
.w11{width:72.832000pt;}
.w17{width:76.960000pt;}
.w16{width:111.232000pt;}
.wb{width:115.072000pt;}
.wd{width:119.552000pt;}
.w5{width:135.066667pt;}
.w10{width:177.786667pt;}
.w8{width:192.066667pt;}
.w14{width:219.906667pt;}
.w15{width:238.586667pt;}
.wf{width:273.026667pt;}
.wa{width:301.666667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xe{left:12.192000pt;}
.xb{left:22.912000pt;}
.xf{left:35.392000pt;}
.x10{left:47.232000pt;}
.x1{left:72.000000pt;}
.x26{left:75.679988pt;}
.x28{left:78.079988pt;}
.x4{left:87.226667pt;}
.x14{left:96.031988pt;}
.x29{left:108.031988pt;}
.xc{left:160.666667pt;}
.x15{left:177.306655pt;}
.xd{left:189.666667pt;}
.x11{left:191.266667pt;}
.x27{left:202.746655pt;}
.x5{left:207.066667pt;}
.x1e{left:234.266655pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.x23{left:289.986655pt;}
.x1f{left:293.186667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x1a{left:346.306667pt;}
.x16{left:374.946667pt;}
.x9{left:390.666667pt;}
.x24{left:396.866655pt;}
.x17{left:490.653333pt;}
.x1b{left:524.733333pt;}
.x20{left:532.413333pt;}
.x18{left:554.973333pt;}
.x22{left:577.853322pt;}
.x1c{left:598.213333pt;}
.x25{left:613.253322pt;}
.x21{left:644.293333pt;}
.x3{left:656.933333pt;}
.x1d{left:660.933333pt;}
.x19{left:675.333333pt;}
}




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