
    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_180cc9c69b5bf7b31e238bfa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.774902;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_e41dd0183c1111f05ac19528.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.125000;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_b7eb45c3b323dd598fbdfc2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_ee0ad2fd79c8767489348876.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.118164;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e40fb503dd03a67b1e0d5e63.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_0436e24870e4255fd1b0ccf4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_ccf78d860d0860dd103c8f4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.118164;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_afca18bf48b0d3971fc6497f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125000;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_9524eb39d22ebde794aa4bbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_1eb31fbae2aae8404bb04630.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;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_3768e739ce721892f7033da2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.087000;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:-49.248000px;}
.v2{vertical-align:-39.456000px;}
.v3{vertical-align:-20.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:36.000000px;}
.v5{vertical-align:108.720000px;}
.ls23{letter-spacing:-0.345600px;}
.ls33{letter-spacing:-0.238800px;}
.ls2b{letter-spacing:-0.198600px;}
.ls25{letter-spacing:-0.130800px;}
.ls13{letter-spacing:-0.111600px;}
.ls26{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.072000px;}
.ls2c{letter-spacing:-0.054720px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.034560px;}
.ls36{letter-spacing:0.072600px;}
.ls1c{letter-spacing:0.089280px;}
.ls34{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.118200px;}
.ls35{letter-spacing:0.130200px;}
.ls1d{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.166800px;}
.ls1f{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.234600px;}
.ls32{letter-spacing:0.244800px;}
.lse{letter-spacing:0.360000px;}
.ls6{letter-spacing:2.700000px;}
.ls1a{letter-spacing:26.557920px;}
.ls1{letter-spacing:36.480000px;}
.ls1e{letter-spacing:41.362560px;}
.ls2a{letter-spacing:41.523840px;}
.ls9{letter-spacing:41.747328px;}
.lsd{letter-spacing:43.113600px;}
.lsc{letter-spacing:43.200000px;}
.ls2{letter-spacing:57.549600px;}
.ls3{letter-spacing:57.600000px;}
.ls30{letter-spacing:61.833600px;}
.ls2d{letter-spacing:61.884000px;}
.ls8{letter-spacing:65.865600px;}
.ls7{letter-spacing:65.916000px;}
.ls1b{letter-spacing:68.184000px;}
.lsa{letter-spacing:70.269600px;}
.lsb{letter-spacing:70.320000px;}
.ls19{letter-spacing:72.216000px;}
.ls5{letter-spacing:83.013600px;}
.ls4{letter-spacing:83.064000px;}
.ls28{letter-spacing:93.225600px;}
.ls27{letter-spacing:93.276000px;}
.ls12{letter-spacing:115.884000px;}
.ls10{letter-spacing:119.865600px;}
.lsf{letter-spacing:119.916000px;}
.ls18{letter-spacing:122.184000px;}
.ls17{letter-spacing:122.328000px;}
.ls15{letter-spacing:124.149600px;}
.ls16{letter-spacing:124.200000px;}
.ls14{letter-spacing:124.344000px;}
.ls2e{letter-spacing:128.433600px;}
.ls2f{letter-spacing:128.484000px;}
.ls31{letter-spacing:152.964000px;}
.ls11{letter-spacing:3004.594800px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(166,2,92),0 0.015em rgb(166,2,92),0.015em 0 rgb(166,2,92),0 -0.015em  rgb(166,2,92);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(166,2,92);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws20{word-spacing:-56.040000px;}
.ws25{word-spacing:-43.617600px;}
.ws26{word-spacing:-43.562880px;}
.ws24{word-spacing:-43.419000px;}
.ws8{word-spacing:-37.477440px;}
.ws7{word-spacing:-37.440000px;}
.ws14{word-spacing:-34.257600px;}
.ws0{word-spacing:-33.373728px;}
.ws2a{word-spacing:-31.407840px;}
.ws12{word-spacing:-31.299840px;}
.ws4{word-spacing:-31.262400px;}
.ws6{word-spacing:-30.916080px;}
.ws10{word-spacing:-30.060000px;}
.ws1a{word-spacing:-29.812200px;}
.ws19{word-spacing:-29.232000px;}
.ws1e{word-spacing:-28.224000px;}
.wsc{word-spacing:-28.117440px;}
.ws1c{word-spacing:-28.080000px;}
.ws1f{word-spacing:-27.972000px;}
.ws22{word-spacing:-27.360000px;}
.wsb{word-spacing:-27.036000px;}
.ws9{word-spacing:-27.000000px;}
.ws29{word-spacing:-24.897600px;}
.ws5{word-spacing:-24.574320px;}
.wsa{word-spacing:-23.940000px;}
.ws3{word-spacing:-23.400000px;}
.ws23{word-spacing:-20.779200px;}
.ws11{word-spacing:-18.276480px;}
.wse{word-spacing:-16.560000px;}
.ws21{word-spacing:-10.980000px;}
.ws13{word-spacing:-6.536160px;}
.ws2{word-spacing:-1.627200px;}
.ws1b{word-spacing:-1.152000px;}
.ws17{word-spacing:-0.874440px;}
.ws18{word-spacing:-0.720720px;}
.ws2d{word-spacing:-0.405000px;}
.ws16{word-spacing:-0.144000px;}
.ws1d{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.002880px;}
.ws1{word-spacing:0.000000px;}
.ws27{word-spacing:0.094320px;}
.wsd{word-spacing:0.108000px;}
.ws2c{word-spacing:0.609840px;}
.ws2e{word-spacing:3.603360px;}
.wsf{word-spacing:1615.076592px;}
.ws2b{word-spacing:1888.597920px;}
.ws15{word-spacing:3043.254000px;}
._13{margin-left:-41.991696px;}
._1f{margin-left:-40.734720px;}
._1c{margin-left:-8.416800px;}
._14{margin-left:-6.921216px;}
._c{margin-left:-4.950000px;}
._1d{margin-left:-3.780000px;}
._f{margin-left:-2.765520px;}
._b{margin-left:-1.072800px;}
._11{width:1.296000px;}
._1a{width:3.734640px;}
._1e{width:14.760000px;}
._20{width:21.790320px;}
._e{width:23.038560px;}
._1{width:25.564320px;}
._15{width:26.858592px;}
._8{width:30.211920px;}
._6{width:32.079600px;}
._5{width:34.138800px;}
._7{width:35.686800px;}
._2{width:36.787680px;}
._9{width:37.920240px;}
._3{width:39.593520px;}
._d{width:41.483232px;}
._4{width:43.354656px;}
._0{width:44.893440px;}
._a{width:94.622160px;}
._16{width:123.953664px;}
._18{width:129.124224px;}
._17{width:132.217920px;}
._19{width:133.992240px;}
._12{width:164.313840px;}
._10{width:338.943120px;}
._1b{width:1113.772800px;}
.fc5{color:rgb(166,2,92);}
.fc4{color:rgb(147,37,142);}
.fc3{color:transparent;}
.fc2{color:rgb(202,113,228);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:7.200000px;}
.fs17{font-size:43.920000px;}
.fs1d{font-size:59.760000px;}
.fs11{font-size:66.240000px;}
.fs12{font-size:66.384000px;}
.fs16{font-size:72.000000px;}
.fs18{font-size:79.920000px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:90.144000px;}
.fs2{font-size:95.760000px;}
.fs1b{font-size:95.904000px;}
.fs15{font-size:102.240000px;}
.fsc{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.fs14{font-size:113.760000px;}
.fs6{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fs13{font-size:131.760000px;}
.fs1c{font-size:131.904000px;}
.fsa{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fse{font-size:149.760000px;}
.fsf{font-size:149.904000px;}
.fs19{font-size:167.760000px;}
.fs1a{font-size:167.904000px;}
.fs8{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs7{font-size:264.240000px;}
.fs0{font-size:311.760000px;}
.fs1{font-size:311.904000px;}
.y0{bottom:0.000000px;}
.y8{bottom:29.154000px;}
.y76{bottom:30.708000px;}
.y6{bottom:39.954000px;}
.y7b{bottom:73.692000px;}
.y60{bottom:81.756000px;}
.y38{bottom:84.960000px;}
.y56{bottom:85.824000px;}
.y75{bottom:87.480000px;}
.y44{bottom:91.692000px;}
.y98{bottom:92.520000px;}
.y7a{bottom:93.492000px;}
.y3d{bottom:99.252000px;}
.ya4{bottom:102.996000px;}
.y5{bottom:113.256000px;}
.y2e{bottom:120.312000px;}
.y69{bottom:122.616000px;}
.y7{bottom:124.056000px;}
.y43{bottom:127.728000px;}
.y3c{bottom:128.052000px;}
.yb{bottom:130.644000px;}
.y37{bottom:131.400000px;}
.y97{bottom:131.580000px;}
.y74{bottom:136.116000px;}
.y55{bottom:136.584000px;}
.y5f{bottom:136.836000px;}
.y90{bottom:137.988000px;}
.y68{bottom:160.230000px;}
.ya3{bottom:161.355000px;}
.y42{bottom:163.725000px;}
.y9d{bottom:163.980000px;}
.y36{bottom:177.660000px;}
.y96{bottom:182.010000px;}
.y5e{bottom:184.395000px;}
.y73{bottom:184.710000px;}
.y54{bottom:187.380000px;}
.y8f{bottom:188.385000px;}
.y22{bottom:191.130000px;}
.y89{bottom:195.405000px;}
.y4{bottom:198.390000px;}
.y41{bottom:199.725000px;}
.y3b{bottom:201.960000px;}
.ye{bottom:208.590000px;}
.ya{bottom:213.450000px;}
.y80{bottom:221.865000px;}
.y35{bottom:224.130000px;}
.y23{bottom:230.400000px;}
.y95{bottom:232.410000px;}
.y72{bottom:233.310000px;}
.y2d{bottom:236.625000px;}
.y40{bottom:237.165000px;}
.y53{bottom:237.960000px;}
.y88{bottom:238.650000px;}
.y5d{bottom:239.295000px;}
.y3{bottom:241.635000px;}
.y9{bottom:244.080000px;}
.y1a{bottom:249.090000px;}
.yd{bottom:249.480000px;}
.y67{bottom:251.535000px;}
.y81{bottom:254.265000px;}
.y1c{bottom:256.395000px;}
.y9c{bottom:264.810000px;}
.ya2{bottom:275.475000px;}
.y71{bottom:281.955000px;}
.y18{bottom:282.675000px;}
.y7f{bottom:286.665000px;}
.y5c{bottom:286.815000px;}
.y52{bottom:288.720000px;}
.y87{bottom:289.230000px;}
.y66{bottom:293.835000px;}
.y2c{bottom:294.945000px;}
.y9b{bottom:315.210000px;}
.y47{bottom:317.490000px;}
.y7e{bottom:319.065000px;}
.y21{bottom:319.320000px;}
.ya1{bottom:320.865000px;}
.y70{bottom:330.555000px;}
.y34{bottom:331.950000px;}
.y94{bottom:333.210000px;}
.y12{bottom:334.875000px;}
.y65{bottom:338.835000px;}
.y51{bottom:339.510000px;}
.y8e{bottom:339.630000px;}
.y86{bottom:339.990000px;}
.y5b{bottom:341.925000px;}
.y7d{bottom:351.510000px;}
.y2b{bottom:353.085000px;}
.y46{bottom:353.490000px;}
.y2{bottom:368.490000px;}
.y93{bottom:383.655000px;}
.y7c{bottom:383.910000px;}
.y64{bottom:384.045000px;}
.y33{bottom:385.815000px;}
.y1f{bottom:385.890000px;}
.y5a{bottom:389.445000px;}
.y4a{bottom:389.490000px;}
.y27{bottom:389.955000px;}
.y50{bottom:390.090000px;}
.y85{bottom:390.780000px;}
.y45{bottom:410.580000px;}
.y2a{bottom:411.270000px;}
.y11{bottom:414.075000px;}
.y9a{bottom:416.055000px;}
.y17{bottom:416.265000px;}
.y84{bottom:433.980000px;}
.y26{bottom:434.985000px;}
.ya0{bottom:438.405000px;}
.y32{bottom:439.635000px;}
.y8d{bottom:440.460000px;}
.y4f{bottom:440.850000px;}
.y59{bottom:444.525000px;}
.y1{bottom:462.090000px;}
.y99{bottom:466.455000px;}
.y29{bottom:469.590000px;}
.y6f{bottom:476.385000px;}
.y49{bottom:478.365000px;}
.y9f{bottom:480.390000px;}
.y92{bottom:484.455000px;}
.y83{bottom:484.560000px;}
.y63{bottom:488.805000px;}
.y8c{bottom:490.860000px;}
.y4e{bottom:491.655000px;}
.y10{bottom:493.305000px;}
.y31{bottom:493.635000px;}
.y25{bottom:494.925000px;}
.y58{bottom:499.470000px;}
.y1b{bottom:504.750000px;}
.y48{bottom:514.365000px;}
.y6e{bottom:524.985000px;}
.y9e{bottom:525.750000px;}
.y19{bottom:527.250000px;}
.y62{bottom:530.070000px;}
.y91{bottom:534.885000px;}
.y82{bottom:535.350000px;}
.y4d{bottom:542.235000px;}
.y30{bottom:547.485000px;}
.y16{bottom:550.050000px;}
.y57{bottom:554.550000px;}
.y24{bottom:555.045000px;}
.y3f{bottom:557.430000px;}
.y61{bottom:567.510000px;}
.yf{bottom:572.505000px;}
.y6d{bottom:573.585000px;}
.y20{bottom:579.060000px;}
.y28{bottom:582.480000px;}
.y4c{bottom:592.995000px;}
.y14{bottom:622.155000px;}
.y6c{bottom:622.230000px;}
.y2f{bottom:627.090000px;}
.yc{bottom:629.535000px;}
.y78{bottom:637.380000px;}
.y8a{bottom:637.530000px;}
.y1d{bottom:651.750000px;}
.y3a{bottom:652.530000px;}
.y1e{bottom:657.075000px;}
.y3e{bottom:660.270000px;}
.y15{bottom:665.250000px;}
.y79{bottom:666.210000px;}
.y4b{bottom:666.435000px;}
.y8b{bottom:666.900000px;}
.y6b{bottom:670.830000px;}
.y13{bottom:679.755000px;}
.y77{bottom:695.010000px;}
.y39{bottom:710.175000px;}
.y6a{bottom:719.430000px;}
.h5{height:7.161328px;}
.h6{height:30.780000px;}
.h22{height:38.730234px;}
.h4{height:41.580000px;}
.h17{height:58.412812px;}
.h21{height:71.613281px;}
.h8{height:79.013672px;}
.h7{height:79.140094px;}
.h18{height:84.070547px;}
.h26{height:84.196969px;}
.h3{height:84.444609px;}
.h20{height:89.759531px;}
.h10{height:92.000039px;}
.h1c{height:92.110219px;}
.h16{height:94.816406px;}
.h15{height:94.942828px;}
.hf{height:95.238281px;}
.h11{height:95.365266px;}
.h1f{height:99.873281px;}
.h1e{height:100.814414px;}
.h9{height:105.562266px;}
.h14{height:105.688688px;}
.h1a{height:106.031953px;}
.h1b{height:106.158937px;}
.h23{height:106.164141px;}
.hd{height:110.179688px;}
.hc{height:110.289867px;}
.h1d{height:115.676016px;}
.h27{height:115.802437px;}
.h19{height:126.984375px;}
.h12{height:131.478750px;}
.h13{height:131.605172px;}
.hb{height:145.306406px;}
.he{height:145.415250px;}
.h24{height:147.281484px;}
.h25{height:147.407906px;}
.h28{height:160.292880px;}
.ha{height:199.728281px;}
.h1{height:235.646719px;}
.h2{height:235.755562px;}
.h0{height:810.000000px;}
.w3{width:234.570000px;}
.w2{width:308.010000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x12{left:12.815979px;}
.x34{left:18.755979px;}
.x3b{left:62.819979px;}
.x23{left:98.999979px;}
.x19{left:106.775979px;}
.x13{left:109.799979px;}
.x10{left:115.955979px;}
.x1f{left:117.899979px;}
.x3d{left:122.219979px;}
.x14{left:123.335979px;}
.x37{left:134.531979px;}
.xc{left:141.263979px;}
.x4a{left:143.855979px;}
.x3c{left:147.275979px;}
.x20{left:151.769979px;}
.x30{left:153.029979px;}
.x26{left:160.844979px;}
.x11{left:162.029979px;}
.x2e{left:164.129979px;}
.x3e{left:171.389979px;}
.x21{left:172.949979px;}
.x2d{left:177.329979px;}
.x38{left:188.534979px;}
.x2f{left:204.629979px;}
.x31{left:207.029979px;}
.x39{left:222.374979px;}
.x22{left:226.979979px;}
.x17{left:254.729979px;}
.xb{left:270.569979px;}
.x18{left:286.889979px;}
.x3{left:308.624979px;}
.x8{left:324.329979px;}
.x5{left:327.990000px;}
.x1{left:344.909979px;}
.x7{left:346.469979px;}
.x25{left:355.424979px;}
.x2{left:450.074979px;}
.x4{left:479.849979px;}
.x41{left:483.014979px;}
.x1c{left:491.144979px;}
.x42{left:495.434979px;}
.x3f{left:497.234979px;}
.x27{left:543.929979px;}
.x43{left:551.234979px;}
.x44{left:567.074979px;}
.x2a{left:602.969979px;}
.x40{left:644.834979px;}
.xd{left:666.869979px;}
.x29{left:672.809979px;}
.x28{left:690.809979px;}
.x2b{left:704.669979px;}
.x2c{left:747.929979px;}
.xa{left:800.564979px;}
.x32{left:803.129979px;}
.x9{left:810.284979px;}
.x6{left:840.885000px;}
.x24{left:843.044979px;}
.x15{left:900.209979px;}
.x16{left:947.954979px;}
.xe{left:965.849979px;}
.x45{left:991.259979px;}
.x35{left:992.804979px;}
.x1d{left:995.684979px;}
.x48{left:1011.779979px;}
.x3a{left:1020.779979px;}
.x1e{left:1059.914979px;}
.xf{left:1067.939979px;}
.x1a{left:1071.974979px;}
.x49{left:1079.459979px;}
.x1b{left:1133.969979px;}
.x47{left:1136.909979px;}
.x46{left:1138.889979px;}
.x33{left:1164.749979px;}
.x36{left:1202.834979px;}
@media print{
.v1{vertical-align:-43.776000pt;}
.v2{vertical-align:-35.072000pt;}
.v3{vertical-align:-17.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:32.000000pt;}
.v5{vertical-align:96.640000pt;}
.ls23{letter-spacing:-0.307200pt;}
.ls33{letter-spacing:-0.212267pt;}
.ls2b{letter-spacing:-0.176533pt;}
.ls25{letter-spacing:-0.116267pt;}
.ls13{letter-spacing:-0.099200pt;}
.ls26{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls2c{letter-spacing:-0.048640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.030720pt;}
.ls36{letter-spacing:0.064533pt;}
.ls1c{letter-spacing:0.079360pt;}
.ls34{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.105067pt;}
.ls35{letter-spacing:0.115733pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.148267pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.208533pt;}
.ls32{letter-spacing:0.217600pt;}
.lse{letter-spacing:0.320000pt;}
.ls6{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:23.607040pt;}
.ls1{letter-spacing:32.426667pt;}
.ls1e{letter-spacing:36.766720pt;}
.ls2a{letter-spacing:36.910080pt;}
.ls9{letter-spacing:37.108736pt;}
.lsd{letter-spacing:38.323200pt;}
.lsc{letter-spacing:38.400000pt;}
.ls2{letter-spacing:51.155200pt;}
.ls3{letter-spacing:51.200000pt;}
.ls30{letter-spacing:54.963200pt;}
.ls2d{letter-spacing:55.008000pt;}
.ls8{letter-spacing:58.547200pt;}
.ls7{letter-spacing:58.592000pt;}
.ls1b{letter-spacing:60.608000pt;}
.lsa{letter-spacing:62.461867pt;}
.lsb{letter-spacing:62.506667pt;}
.ls19{letter-spacing:64.192000pt;}
.ls5{letter-spacing:73.789867pt;}
.ls4{letter-spacing:73.834667pt;}
.ls28{letter-spacing:82.867200pt;}
.ls27{letter-spacing:82.912000pt;}
.ls12{letter-spacing:103.008000pt;}
.ls10{letter-spacing:106.547200pt;}
.lsf{letter-spacing:106.592000pt;}
.ls18{letter-spacing:108.608000pt;}
.ls17{letter-spacing:108.736000pt;}
.ls15{letter-spacing:110.355200pt;}
.ls16{letter-spacing:110.400000pt;}
.ls14{letter-spacing:110.528000pt;}
.ls2e{letter-spacing:114.163200pt;}
.ls2f{letter-spacing:114.208000pt;}
.ls31{letter-spacing:135.968000pt;}
.ls11{letter-spacing:2670.750933pt;}
.ws20{word-spacing:-49.813333pt;}
.ws25{word-spacing:-38.771200pt;}
.ws26{word-spacing:-38.722560pt;}
.ws24{word-spacing:-38.594667pt;}
.ws8{word-spacing:-33.313280pt;}
.ws7{word-spacing:-33.280000pt;}
.ws14{word-spacing:-30.451200pt;}
.ws0{word-spacing:-29.665536pt;}
.ws2a{word-spacing:-27.918080pt;}
.ws12{word-spacing:-27.822080pt;}
.ws4{word-spacing:-27.788800pt;}
.ws6{word-spacing:-27.480960pt;}
.ws10{word-spacing:-26.720000pt;}
.ws1a{word-spacing:-26.499733pt;}
.ws19{word-spacing:-25.984000pt;}
.ws1e{word-spacing:-25.088000pt;}
.wsc{word-spacing:-24.993280pt;}
.ws1c{word-spacing:-24.960000pt;}
.ws1f{word-spacing:-24.864000pt;}
.ws22{word-spacing:-24.320000pt;}
.wsb{word-spacing:-24.032000pt;}
.ws9{word-spacing:-24.000000pt;}
.ws29{word-spacing:-22.131200pt;}
.ws5{word-spacing:-21.843840pt;}
.wsa{word-spacing:-21.280000pt;}
.ws3{word-spacing:-20.800000pt;}
.ws23{word-spacing:-18.470400pt;}
.ws11{word-spacing:-16.245760pt;}
.wse{word-spacing:-14.720000pt;}
.ws21{word-spacing:-9.760000pt;}
.ws13{word-spacing:-5.809920pt;}
.ws2{word-spacing:-1.446400pt;}
.ws1b{word-spacing:-1.024000pt;}
.ws17{word-spacing:-0.777280pt;}
.ws18{word-spacing:-0.640640pt;}
.ws2d{word-spacing:-0.360000pt;}
.ws16{word-spacing:-0.128000pt;}
.ws1d{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.002560pt;}
.ws1{word-spacing:0.000000pt;}
.ws27{word-spacing:0.083840pt;}
.wsd{word-spacing:0.096000pt;}
.ws2c{word-spacing:0.542080pt;}
.ws2e{word-spacing:3.202987pt;}
.wsf{word-spacing:1435.623637pt;}
.ws2b{word-spacing:1678.753707pt;}
.ws15{word-spacing:2705.114667pt;}
._13{margin-left:-37.325952pt;}
._1f{margin-left:-36.208640pt;}
._1c{margin-left:-7.481600pt;}
._14{margin-left:-6.152192pt;}
._c{margin-left:-4.400000pt;}
._1d{margin-left:-3.360000pt;}
._f{margin-left:-2.458240pt;}
._b{margin-left:-0.953600pt;}
._11{width:1.152000pt;}
._1a{width:3.319680pt;}
._1e{width:13.120000pt;}
._20{width:19.369173pt;}
._e{width:20.478720pt;}
._1{width:22.723840pt;}
._15{width:23.874304pt;}
._8{width:26.855040pt;}
._6{width:28.515200pt;}
._5{width:30.345600pt;}
._7{width:31.721600pt;}
._2{width:32.700160pt;}
._9{width:33.706880pt;}
._3{width:35.194240pt;}
._d{width:36.873984pt;}
._4{width:38.537472pt;}
._0{width:39.905280pt;}
._a{width:84.108587pt;}
._16{width:110.181035pt;}
._18{width:114.777088pt;}
._17{width:117.527040pt;}
._19{width:119.104213pt;}
._12{width:146.056747pt;}
._10{width:301.282773pt;}
._1b{width:990.020267pt;}
.fs3{font-size:6.400000pt;}
.fs17{font-size:39.040000pt;}
.fs1d{font-size:53.120000pt;}
.fs11{font-size:58.880000pt;}
.fs12{font-size:59.008000pt;}
.fs16{font-size:64.000000pt;}
.fs18{font-size:71.040000pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:80.128000pt;}
.fs2{font-size:85.120000pt;}
.fs1b{font-size:85.248000pt;}
.fs15{font-size:90.880000pt;}
.fsc{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.fs14{font-size:101.120000pt;}
.fs6{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fs13{font-size:117.120000pt;}
.fs1c{font-size:117.248000pt;}
.fsa{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fse{font-size:133.120000pt;}
.fsf{font-size:133.248000pt;}
.fs19{font-size:149.120000pt;}
.fs1a{font-size:149.248000pt;}
.fs8{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs7{font-size:234.880000pt;}
.fs0{font-size:277.120000pt;}
.fs1{font-size:277.248000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:25.914667pt;}
.y76{bottom:27.296000pt;}
.y6{bottom:35.514667pt;}
.y7b{bottom:65.504000pt;}
.y60{bottom:72.672000pt;}
.y38{bottom:75.520000pt;}
.y56{bottom:76.288000pt;}
.y75{bottom:77.760000pt;}
.y44{bottom:81.504000pt;}
.y98{bottom:82.240000pt;}
.y7a{bottom:83.104000pt;}
.y3d{bottom:88.224000pt;}
.ya4{bottom:91.552000pt;}
.y5{bottom:100.672000pt;}
.y2e{bottom:106.944000pt;}
.y69{bottom:108.992000pt;}
.y7{bottom:110.272000pt;}
.y43{bottom:113.536000pt;}
.y3c{bottom:113.824000pt;}
.yb{bottom:116.128000pt;}
.y37{bottom:116.800000pt;}
.y97{bottom:116.960000pt;}
.y74{bottom:120.992000pt;}
.y55{bottom:121.408000pt;}
.y5f{bottom:121.632000pt;}
.y90{bottom:122.656000pt;}
.y68{bottom:142.426667pt;}
.ya3{bottom:143.426667pt;}
.y42{bottom:145.533333pt;}
.y9d{bottom:145.760000pt;}
.y36{bottom:157.920000pt;}
.y96{bottom:161.786667pt;}
.y5e{bottom:163.906667pt;}
.y73{bottom:164.186667pt;}
.y54{bottom:166.560000pt;}
.y8f{bottom:167.453333pt;}
.y22{bottom:169.893333pt;}
.y89{bottom:173.693333pt;}
.y4{bottom:176.346667pt;}
.y41{bottom:177.533333pt;}
.y3b{bottom:179.520000pt;}
.ye{bottom:185.413333pt;}
.ya{bottom:189.733333pt;}
.y80{bottom:197.213333pt;}
.y35{bottom:199.226667pt;}
.y23{bottom:204.800000pt;}
.y95{bottom:206.586667pt;}
.y72{bottom:207.386667pt;}
.y2d{bottom:210.333333pt;}
.y40{bottom:210.813333pt;}
.y53{bottom:211.520000pt;}
.y88{bottom:212.133333pt;}
.y5d{bottom:212.706667pt;}
.y3{bottom:214.786667pt;}
.y9{bottom:216.960000pt;}
.y1a{bottom:221.413333pt;}
.yd{bottom:221.760000pt;}
.y67{bottom:223.586667pt;}
.y81{bottom:226.013333pt;}
.y1c{bottom:227.906667pt;}
.y9c{bottom:235.386667pt;}
.ya2{bottom:244.866667pt;}
.y71{bottom:250.626667pt;}
.y18{bottom:251.266667pt;}
.y7f{bottom:254.813333pt;}
.y5c{bottom:254.946667pt;}
.y52{bottom:256.640000pt;}
.y87{bottom:257.093333pt;}
.y66{bottom:261.186667pt;}
.y2c{bottom:262.173333pt;}
.y9b{bottom:280.186667pt;}
.y47{bottom:282.213333pt;}
.y7e{bottom:283.613333pt;}
.y21{bottom:283.840000pt;}
.ya1{bottom:285.213333pt;}
.y70{bottom:293.826667pt;}
.y34{bottom:295.066667pt;}
.y94{bottom:296.186667pt;}
.y12{bottom:297.666667pt;}
.y65{bottom:301.186667pt;}
.y51{bottom:301.786667pt;}
.y8e{bottom:301.893333pt;}
.y86{bottom:302.213333pt;}
.y5b{bottom:303.933333pt;}
.y7d{bottom:312.453333pt;}
.y2b{bottom:313.853333pt;}
.y46{bottom:314.213333pt;}
.y2{bottom:327.546667pt;}
.y93{bottom:341.026667pt;}
.y7c{bottom:341.253333pt;}
.y64{bottom:341.373333pt;}
.y33{bottom:342.946667pt;}
.y1f{bottom:343.013333pt;}
.y5a{bottom:346.173333pt;}
.y4a{bottom:346.213333pt;}
.y27{bottom:346.626667pt;}
.y50{bottom:346.746667pt;}
.y85{bottom:347.360000pt;}
.y45{bottom:364.960000pt;}
.y2a{bottom:365.573333pt;}
.y11{bottom:368.066667pt;}
.y9a{bottom:369.826667pt;}
.y17{bottom:370.013333pt;}
.y84{bottom:385.760000pt;}
.y26{bottom:386.653333pt;}
.ya0{bottom:389.693333pt;}
.y32{bottom:390.786667pt;}
.y8d{bottom:391.520000pt;}
.y4f{bottom:391.866667pt;}
.y59{bottom:395.133333pt;}
.y1{bottom:410.746667pt;}
.y99{bottom:414.626667pt;}
.y29{bottom:417.413333pt;}
.y6f{bottom:423.453333pt;}
.y49{bottom:425.213333pt;}
.y9f{bottom:427.013333pt;}
.y92{bottom:430.626667pt;}
.y83{bottom:430.720000pt;}
.y63{bottom:434.493333pt;}
.y8c{bottom:436.320000pt;}
.y4e{bottom:437.026667pt;}
.y10{bottom:438.493333pt;}
.y31{bottom:438.786667pt;}
.y25{bottom:439.933333pt;}
.y58{bottom:443.973333pt;}
.y1b{bottom:448.666667pt;}
.y48{bottom:457.213333pt;}
.y6e{bottom:466.653333pt;}
.y9e{bottom:467.333333pt;}
.y19{bottom:468.666667pt;}
.y62{bottom:471.173333pt;}
.y91{bottom:475.453333pt;}
.y82{bottom:475.866667pt;}
.y4d{bottom:481.986667pt;}
.y30{bottom:486.653333pt;}
.y16{bottom:488.933333pt;}
.y57{bottom:492.933333pt;}
.y24{bottom:493.373333pt;}
.y3f{bottom:495.493333pt;}
.y61{bottom:504.453333pt;}
.yf{bottom:508.893333pt;}
.y6d{bottom:509.853333pt;}
.y20{bottom:514.720000pt;}
.y28{bottom:517.760000pt;}
.y4c{bottom:527.106667pt;}
.y14{bottom:553.026667pt;}
.y6c{bottom:553.093333pt;}
.y2f{bottom:557.413333pt;}
.yc{bottom:559.586667pt;}
.y78{bottom:566.560000pt;}
.y8a{bottom:566.693333pt;}
.y1d{bottom:579.333333pt;}
.y3a{bottom:580.026667pt;}
.y1e{bottom:584.066667pt;}
.y3e{bottom:586.906667pt;}
.y15{bottom:591.333333pt;}
.y79{bottom:592.186667pt;}
.y4b{bottom:592.386667pt;}
.y8b{bottom:592.800000pt;}
.y6b{bottom:596.293333pt;}
.y13{bottom:604.226667pt;}
.y77{bottom:617.786667pt;}
.y39{bottom:631.266667pt;}
.y6a{bottom:639.493333pt;}
.h5{height:6.365625pt;}
.h6{height:27.360000pt;}
.h22{height:34.426875pt;}
.h4{height:36.960000pt;}
.h17{height:51.922500pt;}
.h21{height:63.656250pt;}
.h8{height:70.234375pt;}
.h7{height:70.346750pt;}
.h18{height:74.729375pt;}
.h26{height:74.841750pt;}
.h3{height:75.061875pt;}
.h20{height:79.786250pt;}
.h10{height:81.777812pt;}
.h1c{height:81.875750pt;}
.h16{height:84.281250pt;}
.h15{height:84.393625pt;}
.hf{height:84.656250pt;}
.h11{height:84.769125pt;}
.h1f{height:88.776250pt;}
.h1e{height:89.612812pt;}
.h9{height:93.833125pt;}
.h14{height:93.945500pt;}
.h1a{height:94.250625pt;}
.h1b{height:94.363500pt;}
.h23{height:94.368125pt;}
.hd{height:97.937500pt;}
.hc{height:98.035438pt;}
.h1d{height:102.823125pt;}
.h27{height:102.935500pt;}
.h19{height:112.875000pt;}
.h12{height:116.870000pt;}
.h13{height:116.982375pt;}
.hb{height:129.161250pt;}
.he{height:129.258000pt;}
.h24{height:130.916875pt;}
.h25{height:131.029250pt;}
.h28{height:142.482560pt;}
.ha{height:177.536250pt;}
.h1{height:209.463750pt;}
.h2{height:209.560500pt;}
.h0{height:720.000000pt;}
.w3{width:208.506667pt;}
.w2{width:273.786667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x12{left:11.391981pt;}
.x34{left:16.671981pt;}
.x3b{left:55.839981pt;}
.x23{left:87.999981pt;}
.x19{left:94.911981pt;}
.x13{left:97.599981pt;}
.x10{left:103.071981pt;}
.x1f{left:104.799981pt;}
.x3d{left:108.639981pt;}
.x14{left:109.631981pt;}
.x37{left:119.583981pt;}
.xc{left:125.567981pt;}
.x4a{left:127.871981pt;}
.x3c{left:130.911981pt;}
.x20{left:134.906648pt;}
.x30{left:136.026648pt;}
.x26{left:142.973314pt;}
.x11{left:144.026648pt;}
.x2e{left:145.893314pt;}
.x3e{left:152.346648pt;}
.x21{left:153.733314pt;}
.x2d{left:157.626648pt;}
.x38{left:167.586648pt;}
.x2f{left:181.893314pt;}
.x31{left:184.026648pt;}
.x39{left:197.666648pt;}
.x22{left:201.759981pt;}
.x17{left:226.426648pt;}
.xb{left:240.506648pt;}
.x18{left:255.013314pt;}
.x3{left:274.333314pt;}
.x8{left:288.293314pt;}
.x5{left:291.546667pt;}
.x1{left:306.586648pt;}
.x7{left:307.973314pt;}
.x25{left:315.933314pt;}
.x2{left:400.066648pt;}
.x4{left:426.533314pt;}
.x41{left:429.346648pt;}
.x1c{left:436.573314pt;}
.x42{left:440.386648pt;}
.x3f{left:441.986648pt;}
.x27{left:483.493314pt;}
.x43{left:489.986648pt;}
.x44{left:504.066648pt;}
.x2a{left:535.973314pt;}
.x40{left:573.186648pt;}
.xd{left:592.773314pt;}
.x29{left:598.053314pt;}
.x28{left:614.053314pt;}
.x2b{left:626.373314pt;}
.x2c{left:664.826648pt;}
.xa{left:711.613314pt;}
.x32{left:713.893314pt;}
.x9{left:720.253314pt;}
.x6{left:747.453333pt;}
.x24{left:749.373314pt;}
.x15{left:800.186648pt;}
.x16{left:842.626648pt;}
.xe{left:858.533314pt;}
.x45{left:881.119981pt;}
.x35{left:882.493314pt;}
.x1d{left:885.053314pt;}
.x48{left:899.359981pt;}
.x3a{left:907.359981pt;}
.x1e{left:942.146648pt;}
.xf{left:949.279981pt;}
.x1a{left:952.866648pt;}
.x49{left:959.519981pt;}
.x1b{left:1007.973314pt;}
.x47{left:1010.586648pt;}
.x46{left:1012.346648pt;}
.x33{left:1035.333314pt;}
.x36{left:1069.186648pt;}
}




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