
    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_0777dd656c3c2f59b9a582b0.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_fd1dd3456421a60e050b66aa.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_98484e5bc8ddc5e918f30772.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_ec38f552e7af785be6b41e3b.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_c06cf897cedffa8b55a01af7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_547e792abfaa5aa3a62d1d6f.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_9569d767e77c839ed7086842.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_2918965b91e535f7f9166500.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_7dcf14d1937035d1a66afbb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_005c082948f933b2132c4e5a.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_5872844645e01ccde68ee1d1.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_3f7dba9fc57b141c3abf0d41.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_68f0be0ff37e58e620d28fa6.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_ec486fbe8e0096de059bcce2.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lse{letter-spacing:-4.680000px;}
.ls15{letter-spacing:-2.520000px;}
.lsd{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.298200px;}
.lsa{letter-spacing:-0.127200px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.087600px;}
.ls16{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls14{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.786240px;}
.ls11{letter-spacing:10.260000px;}
.ls18{letter-spacing:16.482720px;}
.ls17{letter-spacing:46.002720px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.505760px;}
.wsc{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-10.260000px;}
.wsb{word-spacing:-9.732960px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-8.868960px;}
._18{margin-left:-7.285680px;}
._3{margin-left:-5.557680px;}
._5{margin-left:-4.544640px;}
._2{margin-left:-3.066480px;}
._1{margin-left:-1.314000px;}
._0{width:1.110000px;}
._4{width:2.155440px;}
._d{width:3.726480px;}
._6{width:4.926720px;}
._a{width:6.274800px;}
._9{width:7.589520px;}
._11{width:9.203040px;}
._14{width:11.021040px;}
._7{width:12.566880px;}
._8{width:13.882080px;}
._e{width:16.698480px;}
._10{width:18.133200px;}
._f{width:19.208400px;}
._12{width:20.941440px;}
._15{width:21.957360px;}
._17{width:23.230320px;}
._16{width:24.382080px;}
._19{width:26.231040px;}
._c{width:37.315680px;}
._b{width:39.023280px;}
._13{width:157.768560px;}
.fc8{color:rgb(34,34,61);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{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;}
.y3f{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y44{bottom:3.960000px;}
.y18{bottom:7.425000px;}
.ye{bottom:9.540000px;}
.y42{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y3e{bottom:20.520000px;}
.y43{bottom:22.320000px;}
.y17{bottom:23.805000px;}
.y41{bottom:25.200000px;}
.yb{bottom:30.240000px;}
.y3d{bottom:37.800000px;}
.y16{bottom:40.365000px;}
.ya{bottom:46.440000px;}
.y15{bottom:52.785000px;}
.y3c{bottom:55.080000px;}
.y5{bottom:58.680000px;}
.y14{bottom:67.365000px;}
.y3b{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y1{bottom:81.216000px;}
.y13{bottom:82.665000px;}
.y3a{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y2a{bottom:98.640000px;}
.y12{bottom:101.745000px;}
.y39{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y29{bottom:113.940000px;}
.y38{bottom:124.020000px;}
.y11{bottom:127.485000px;}
.y102{bottom:128.376000px;}
.ycb{bottom:129.816000px;}
.y28{bottom:131.610000px;}
.y55{bottom:132.336000px;}
.y91{bottom:132.876000px;}
.y37{bottom:141.330000px;}
.y101{bottom:145.476000px;}
.yca{bottom:147.096000px;}
.y27{bottom:148.890000px;}
.y54{bottom:149.616000px;}
.y90{bottom:149.976000px;}
.y10{bottom:151.785000px;}
.y36{bottom:158.610000px;}
.y100{bottom:162.750000px;}
.yc9{bottom:164.370000px;}
.y26{bottom:166.170000px;}
.y53{bottom:166.890000px;}
.y8f{bottom:167.250000px;}
.y35{bottom:175.890000px;}
.yff{bottom:180.030000px;}
.yc8{bottom:181.470000px;}
.y25{bottom:183.810000px;}
.y52{bottom:183.990000px;}
.y8e{bottom:184.530000px;}
.y34{bottom:192.990000px;}
.yfe{bottom:197.310000px;}
.yc7{bottom:198.750000px;}
.y24{bottom:201.270000px;}
.y8d{bottom:201.810000px;}
.y33{bottom:210.270000px;}
.yc6{bottom:213.510000px;}
.yfd{bottom:214.590000px;}
.y51{bottom:218.550000px;}
.y23{bottom:218.730000px;}
.y8c{bottom:219.090000px;}
.y32{bottom:227.550000px;}
.yc5{bottom:231.510000px;}
.yfc{bottom:231.870000px;}
.y50{bottom:235.830000px;}
.y22{bottom:236.010000px;}
.y8b{bottom:236.370000px;}
.y31{bottom:244.830000px;}
.yfb{bottom:248.970000px;}
.yc4{bottom:249.510000px;}
.y4f{bottom:253.110000px;}
.y21{bottom:253.470000px;}
.y30{bottom:262.110000px;}
.yfa{bottom:266.250000px;}
.yc3{bottom:267.510000px;}
.y4e{bottom:270.390000px;}
.y8a{bottom:270.750000px;}
.y20{bottom:270.930000px;}
.y2f{bottom:279.210000px;}
.yf9{bottom:283.530000px;}
.y4d{bottom:287.490000px;}
.y89{bottom:288.030000px;}
.y1f{bottom:288.210000px;}
.yc2{bottom:288.750000px;}
.y2e{bottom:296.490000px;}
.yf8{bottom:300.810000px;}
.y4c{bottom:304.770000px;}
.y88{bottom:305.310000px;}
.y1e{bottom:305.850000px;}
.yc1{bottom:306.030000px;}
.y2d{bottom:313.770000px;}
.yf7{bottom:318.090000px;}
.yc0{bottom:320.790000px;}
.y4b{bottom:322.050000px;}
.y87{bottom:322.590000px;}
.y2c{bottom:331.050000px;}
.y1d{bottom:333.210000px;}
.yf6{bottom:335.370000px;}
.ybf{bottom:338.835000px;}
.y4a{bottom:339.375000px;}
.y86{bottom:339.915000px;}
.y2b{bottom:348.330000px;}
.y1c{bottom:351.030000px;}
.yf5{bottom:352.515000px;}
.y49{bottom:356.655000px;}
.ybe{bottom:356.835000px;}
.y85{bottom:357.015000px;}
.yf4{bottom:369.795000px;}
.y48{bottom:373.935000px;}
.y84{bottom:374.295000px;}
.ybd{bottom:374.835000px;}
.yf3{bottom:387.075000px;}
.y47{bottom:391.035000px;}
.y83{bottom:391.575000px;}
.ybc{bottom:392.835000px;}
.yf2{bottom:404.355000px;}
.y46{bottom:408.315000px;}
.y82{bottom:408.855000px;}
.ybb{bottom:410.835000px;}
.yf1{bottom:421.635000px;}
.y45{bottom:425.595000px;}
.y81{bottom:426.135000px;}
.yba{bottom:428.835000px;}
.yf0{bottom:438.915000px;}
.y40{bottom:439.635000px;}
.y80{bottom:443.415000px;}
.yb9{bottom:446.835000px;}
.yef{bottom:456.015000px;}
.y7f{bottom:460.515000px;}
.yb8{bottom:464.835000px;}
.yee{bottom:473.295000px;}
.y1b{bottom:476.175000px;}
.y7e{bottom:477.795000px;}
.yb7{bottom:482.835000px;}
.yed{bottom:490.575000px;}
.y7d{bottom:495.075000px;}
.yb6{bottom:500.835000px;}
.yec{bottom:507.855000px;}
.y7c{bottom:512.355000px;}
.yb5{bottom:518.835000px;}
.yeb{bottom:525.135000px;}
.y7b{bottom:529.635000px;}
.yb4{bottom:540.075000px;}
.yea{bottom:542.235000px;}
.y7a{bottom:546.735000px;}
.yb3{bottom:557.355000px;}
.ye9{bottom:559.515000px;}
.y79{bottom:564.015000px;}
.yb2{bottom:572.115000px;}
.ye8{bottom:576.795000px;}
.y78{bottom:581.295000px;}
.yb1{bottom:590.115000px;}
.ye7{bottom:594.075000px;}
.y77{bottom:598.575000px;}
.yb0{bottom:608.145000px;}
.ye6{bottom:611.385000px;}
.y76{bottom:615.885000px;}
.yaf{bottom:626.145000px;}
.ye5{bottom:628.665000px;}
.y75{bottom:633.165000px;}
.yae{bottom:644.145000px;}
.ye4{bottom:645.765000px;}
.y74{bottom:650.265000px;}
.yad{bottom:662.145000px;}
.ye3{bottom:663.045000px;}
.y73{bottom:667.545000px;}
.yac{bottom:680.145000px;}
.ye2{bottom:680.325000px;}
.y72{bottom:684.825000px;}
.ye1{bottom:697.605000px;}
.yab{bottom:698.145000px;}
.y71{bottom:702.105000px;}
.ye0{bottom:714.885000px;}
.yaa{bottom:716.145000px;}
.y70{bottom:719.385000px;}
.ydf{bottom:732.165000px;}
.y6f{bottom:736.665000px;}
.ya9{bottom:737.385000px;}
.yde{bottom:749.265000px;}
.y6e{bottom:753.765000px;}
.ya8{bottom:754.665000px;}
.ydd{bottom:766.545000px;}
.ya7{bottom:769.425000px;}
.y6d{bottom:771.045000px;}
.ydc{bottom:783.825000px;}
.ya6{bottom:787.425000px;}
.y6c{bottom:788.325000px;}
.ydb{bottom:801.105000px;}
.ya5{bottom:805.425000px;}
.y6b{bottom:805.605000px;}
.yda{bottom:818.385000px;}
.y6a{bottom:822.885000px;}
.ya4{bottom:823.245000px;}
.yd9{bottom:835.485000px;}
.y19{bottom:838.545000px;}
.y69{bottom:839.985000px;}
.ya3{bottom:841.245000px;}
.yd8{bottom:852.765000px;}
.y68{bottom:857.265000px;}
.ya2{bottom:859.245000px;}
.yf{bottom:868.065000px;}
.yd7{bottom:870.045000px;}
.y67{bottom:874.590000px;}
.ya1{bottom:877.290000px;}
.yd6{bottom:887.370000px;}
.y66{bottom:891.870000px;}
.ya0{bottom:895.290000px;}
.yd5{bottom:904.650000px;}
.y65{bottom:909.150000px;}
.y9f{bottom:913.290000px;}
.yd4{bottom:921.930000px;}
.y64{bottom:926.430000px;}
.y9e{bottom:931.290000px;}
.yd3{bottom:939.030000px;}
.y63{bottom:943.530000px;}
.y9d{bottom:952.530000px;}
.yd2{bottom:956.310000px;}
.y62{bottom:960.810000px;}
.y9c{bottom:969.810000px;}
.yd1{bottom:973.590000px;}
.y104{bottom:977.010000px;}
.y61{bottom:978.090000px;}
.y9b{bottom:984.570000px;}
.yd0{bottom:990.870000px;}
.y103{bottom:995.010000px;}
.y60{bottom:995.370000px;}
.y9a{bottom:1002.570000px;}
.ycf{bottom:1008.150000px;}
.y5f{bottom:1012.650000px;}
.y99{bottom:1020.570000px;}
.yce{bottom:1025.430000px;}
.y5e{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y98{bottom:1038.570000px;}
.ycd{bottom:1042.530000px;}
.y5d{bottom:1047.030000px;}
.y97{bottom:1056.570000px;}
.ycc{bottom:1059.810000px;}
.y6{bottom:1060.350000px;}
.y5c{bottom:1064.310000px;}
.y96{bottom:1074.570000px;}
.y5b{bottom:1081.590000px;}
.y95{bottom:1092.570000px;}
.y5a{bottom:1098.870000px;}
.y94{bottom:1110.570000px;}
.y59{bottom:1116.150000px;}
.y93{bottom:1128.570000px;}
.y58{bottom:1133.430000px;}
.y92{bottom:1146.600000px;}
.y57{bottom:1150.560000px;}
.y56{bottom:1167.840000px;}
.h22{height:17.100000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.940000px;}
.h8{height:36.180000px;}
.h1c{height:36.540000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h4{height:43.453125px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1f{height:48.027656px;}
.h1d{height:48.088125px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{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:166.890000px;}
.h14{height:362.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w14{width:75.816000px;}
.w10{width:81.216000px;}
.w12{width:115.380000px;}
.w5{width:151.950000px;}
.w13{width:172.470000px;}
.w16{width:184.350000px;}
.w17{width:185.970000px;}
.w8{width:223.275000px;}
.wb{width:237.090000px;}
.wa{width:237.315000px;}
.wf{width:248.250000px;}
.w18{width:248.295000px;}
.we{width:248.430000px;}
.wd{width:248.475000px;}
.wc{width:270.750000px;}
.w15{width:298.290000px;}
.w11{width:375.375000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.xf{left:40.716000px;}
.xc{left:45.936000px;}
.x10{left:50.436000px;}
.x1{left:72.360000px;}
.xe{left:76.536000px;}
.x4{left:80.999987px;}
.x14{left:91.835987px;}
.x5{left:98.130000px;}
.x15{left:108.035987px;}
.x27{left:124.235987px;}
.x22{left:149.796000px;}
.x28{left:151.229987px;}
.x1e{left:155.190000px;}
.x11{left:215.175000px;}
.x1d{left:216.749987px;}
.x6{left:224.850000px;}
.x1a{left:271.469987px;}
.x17{left:283.394987px;}
.x21{left:285.914987px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x25{left:309.494987px;}
.x18{left:311.295000px;}
.x26{left:319.034987px;}
.x1b{left:322.455000px;}
.xd{left:335.055000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x16{left:446.474987px;}
.x23{left:448.815000px;}
.xa{left:455.700000px;}
.x1f{left:531.285000px;}
.x19{left:549.105000px;}
.x1c{left:571.605000px;}
.x24{left:633.885000px;}
.x20{left:647.385000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lse{letter-spacing:-4.160000pt;}
.ls15{letter-spacing:-2.240000pt;}
.lsd{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.265067pt;}
.lsa{letter-spacing:-0.113067pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.077867pt;}
.ls16{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls14{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls11{letter-spacing:9.120000pt;}
.ls18{letter-spacing:14.651307pt;}
.ls17{letter-spacing:40.891307pt;}
.ls10{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-9.120000pt;}
.wsb{word-spacing:-8.651520pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-7.883520pt;}
._18{margin-left:-6.476160pt;}
._3{margin-left:-4.940160pt;}
._5{margin-left:-4.039680pt;}
._2{margin-left:-2.725760pt;}
._1{margin-left:-1.168000pt;}
._0{width:0.986667pt;}
._4{width:1.915947pt;}
._d{width:3.312427pt;}
._6{width:4.379307pt;}
._a{width:5.577600pt;}
._9{width:6.746240pt;}
._11{width:8.180480pt;}
._14{width:9.796480pt;}
._7{width:11.170560pt;}
._8{width:12.339627pt;}
._e{width:14.843093pt;}
._10{width:16.118400pt;}
._f{width:17.074133pt;}
._12{width:18.614613pt;}
._15{width:19.517653pt;}
._17{width:20.649173pt;}
._16{width:21.672960pt;}
._19{width:23.316480pt;}
._c{width:33.169493pt;}
._b{width:34.687360pt;}
._13{width:140.238720pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{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;}
.y3f{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y44{bottom:3.520000pt;}
.y18{bottom:6.600000pt;}
.ye{bottom:8.480000pt;}
.y42{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y3e{bottom:18.240000pt;}
.y43{bottom:19.840000pt;}
.y17{bottom:21.160000pt;}
.y41{bottom:22.400000pt;}
.yb{bottom:26.880000pt;}
.y3d{bottom:33.600000pt;}
.y16{bottom:35.880000pt;}
.ya{bottom:41.280000pt;}
.y15{bottom:46.920000pt;}
.y3c{bottom:48.960000pt;}
.y5{bottom:52.160000pt;}
.y14{bottom:59.880000pt;}
.y3b{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y1{bottom:72.192000pt;}
.y13{bottom:73.480000pt;}
.y3a{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y2a{bottom:87.680000pt;}
.y12{bottom:90.440000pt;}
.y39{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y29{bottom:101.280000pt;}
.y38{bottom:110.240000pt;}
.y11{bottom:113.320000pt;}
.y102{bottom:114.112000pt;}
.ycb{bottom:115.392000pt;}
.y28{bottom:116.986667pt;}
.y55{bottom:117.632000pt;}
.y91{bottom:118.112000pt;}
.y37{bottom:125.626667pt;}
.y101{bottom:129.312000pt;}
.yca{bottom:130.752000pt;}
.y27{bottom:132.346667pt;}
.y54{bottom:132.992000pt;}
.y90{bottom:133.312000pt;}
.y10{bottom:134.920000pt;}
.y36{bottom:140.986667pt;}
.y100{bottom:144.666667pt;}
.yc9{bottom:146.106667pt;}
.y26{bottom:147.706667pt;}
.y53{bottom:148.346667pt;}
.y8f{bottom:148.666667pt;}
.y35{bottom:156.346667pt;}
.yff{bottom:160.026667pt;}
.yc8{bottom:161.306667pt;}
.y25{bottom:163.386667pt;}
.y52{bottom:163.546667pt;}
.y8e{bottom:164.026667pt;}
.y34{bottom:171.546667pt;}
.yfe{bottom:175.386667pt;}
.yc7{bottom:176.666667pt;}
.y24{bottom:178.906667pt;}
.y8d{bottom:179.386667pt;}
.y33{bottom:186.906667pt;}
.yc6{bottom:189.786667pt;}
.yfd{bottom:190.746667pt;}
.y51{bottom:194.266667pt;}
.y23{bottom:194.426667pt;}
.y8c{bottom:194.746667pt;}
.y32{bottom:202.266667pt;}
.yc5{bottom:205.786667pt;}
.yfc{bottom:206.106667pt;}
.y50{bottom:209.626667pt;}
.y22{bottom:209.786667pt;}
.y8b{bottom:210.106667pt;}
.y31{bottom:217.626667pt;}
.yfb{bottom:221.306667pt;}
.yc4{bottom:221.786667pt;}
.y4f{bottom:224.986667pt;}
.y21{bottom:225.306667pt;}
.y30{bottom:232.986667pt;}
.yfa{bottom:236.666667pt;}
.yc3{bottom:237.786667pt;}
.y4e{bottom:240.346667pt;}
.y8a{bottom:240.666667pt;}
.y20{bottom:240.826667pt;}
.y2f{bottom:248.186667pt;}
.yf9{bottom:252.026667pt;}
.y4d{bottom:255.546667pt;}
.y89{bottom:256.026667pt;}
.y1f{bottom:256.186667pt;}
.yc2{bottom:256.666667pt;}
.y2e{bottom:263.546667pt;}
.yf8{bottom:267.386667pt;}
.y4c{bottom:270.906667pt;}
.y88{bottom:271.386667pt;}
.y1e{bottom:271.866667pt;}
.yc1{bottom:272.026667pt;}
.y2d{bottom:278.906667pt;}
.yf7{bottom:282.746667pt;}
.yc0{bottom:285.146667pt;}
.y4b{bottom:286.266667pt;}
.y87{bottom:286.746667pt;}
.y2c{bottom:294.266667pt;}
.y1d{bottom:296.186667pt;}
.yf6{bottom:298.106667pt;}
.ybf{bottom:301.186667pt;}
.y4a{bottom:301.666667pt;}
.y86{bottom:302.146667pt;}
.y2b{bottom:309.626667pt;}
.y1c{bottom:312.026667pt;}
.yf5{bottom:313.346667pt;}
.y49{bottom:317.026667pt;}
.ybe{bottom:317.186667pt;}
.y85{bottom:317.346667pt;}
.yf4{bottom:328.706667pt;}
.y48{bottom:332.386667pt;}
.y84{bottom:332.706667pt;}
.ybd{bottom:333.186667pt;}
.yf3{bottom:344.066667pt;}
.y47{bottom:347.586667pt;}
.y83{bottom:348.066667pt;}
.ybc{bottom:349.186667pt;}
.yf2{bottom:359.426667pt;}
.y46{bottom:362.946667pt;}
.y82{bottom:363.426667pt;}
.ybb{bottom:365.186667pt;}
.yf1{bottom:374.786667pt;}
.y45{bottom:378.306667pt;}
.y81{bottom:378.786667pt;}
.yba{bottom:381.186667pt;}
.yf0{bottom:390.146667pt;}
.y40{bottom:390.786667pt;}
.y80{bottom:394.146667pt;}
.yb9{bottom:397.186667pt;}
.yef{bottom:405.346667pt;}
.y7f{bottom:409.346667pt;}
.yb8{bottom:413.186667pt;}
.yee{bottom:420.706667pt;}
.y1b{bottom:423.266667pt;}
.y7e{bottom:424.706667pt;}
.yb7{bottom:429.186667pt;}
.yed{bottom:436.066667pt;}
.y7d{bottom:440.066667pt;}
.yb6{bottom:445.186667pt;}
.yec{bottom:451.426667pt;}
.y7c{bottom:455.426667pt;}
.yb5{bottom:461.186667pt;}
.yeb{bottom:466.786667pt;}
.y7b{bottom:470.786667pt;}
.yb4{bottom:480.066667pt;}
.yea{bottom:481.986667pt;}
.y7a{bottom:485.986667pt;}
.yb3{bottom:495.426667pt;}
.ye9{bottom:497.346667pt;}
.y79{bottom:501.346667pt;}
.yb2{bottom:508.546667pt;}
.ye8{bottom:512.706667pt;}
.y78{bottom:516.706667pt;}
.yb1{bottom:524.546667pt;}
.ye7{bottom:528.066667pt;}
.y77{bottom:532.066667pt;}
.yb0{bottom:540.573333pt;}
.ye6{bottom:543.453333pt;}
.y76{bottom:547.453333pt;}
.yaf{bottom:556.573333pt;}
.ye5{bottom:558.813333pt;}
.y75{bottom:562.813333pt;}
.yae{bottom:572.573333pt;}
.ye4{bottom:574.013333pt;}
.y74{bottom:578.013333pt;}
.yad{bottom:588.573333pt;}
.ye3{bottom:589.373333pt;}
.y73{bottom:593.373333pt;}
.yac{bottom:604.573333pt;}
.ye2{bottom:604.733333pt;}
.y72{bottom:608.733333pt;}
.ye1{bottom:620.093333pt;}
.yab{bottom:620.573333pt;}
.y71{bottom:624.093333pt;}
.ye0{bottom:635.453333pt;}
.yaa{bottom:636.573333pt;}
.y70{bottom:639.453333pt;}
.ydf{bottom:650.813333pt;}
.y6f{bottom:654.813333pt;}
.ya9{bottom:655.453333pt;}
.yde{bottom:666.013333pt;}
.y6e{bottom:670.013333pt;}
.ya8{bottom:670.813333pt;}
.ydd{bottom:681.373333pt;}
.ya7{bottom:683.933333pt;}
.y6d{bottom:685.373333pt;}
.ydc{bottom:696.733333pt;}
.ya6{bottom:699.933333pt;}
.y6c{bottom:700.733333pt;}
.ydb{bottom:712.093333pt;}
.ya5{bottom:715.933333pt;}
.y6b{bottom:716.093333pt;}
.yda{bottom:727.453333pt;}
.y6a{bottom:731.453333pt;}
.ya4{bottom:731.773333pt;}
.yd9{bottom:742.653333pt;}
.y19{bottom:745.373333pt;}
.y69{bottom:746.653333pt;}
.ya3{bottom:747.773333pt;}
.yd8{bottom:758.013333pt;}
.y68{bottom:762.013333pt;}
.ya2{bottom:763.773333pt;}
.yf{bottom:771.613333pt;}
.yd7{bottom:773.373333pt;}
.y67{bottom:777.413333pt;}
.ya1{bottom:779.813333pt;}
.yd6{bottom:788.773333pt;}
.y66{bottom:792.773333pt;}
.ya0{bottom:795.813333pt;}
.yd5{bottom:804.133333pt;}
.y65{bottom:808.133333pt;}
.y9f{bottom:811.813333pt;}
.yd4{bottom:819.493333pt;}
.y64{bottom:823.493333pt;}
.y9e{bottom:827.813333pt;}
.yd3{bottom:834.693333pt;}
.y63{bottom:838.693333pt;}
.y9d{bottom:846.693333pt;}
.yd2{bottom:850.053333pt;}
.y62{bottom:854.053333pt;}
.y9c{bottom:862.053333pt;}
.yd1{bottom:865.413333pt;}
.y104{bottom:868.453333pt;}
.y61{bottom:869.413333pt;}
.y9b{bottom:875.173333pt;}
.yd0{bottom:880.773333pt;}
.y103{bottom:884.453333pt;}
.y60{bottom:884.773333pt;}
.y9a{bottom:891.173333pt;}
.ycf{bottom:896.133333pt;}
.y5f{bottom:900.133333pt;}
.y99{bottom:907.173333pt;}
.yce{bottom:911.493333pt;}
.y5e{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y98{bottom:923.173333pt;}
.ycd{bottom:926.693333pt;}
.y5d{bottom:930.693333pt;}
.y97{bottom:939.173333pt;}
.ycc{bottom:942.053333pt;}
.y6{bottom:942.533333pt;}
.y5c{bottom:946.053333pt;}
.y96{bottom:955.173333pt;}
.y5b{bottom:961.413333pt;}
.y95{bottom:971.173333pt;}
.y5a{bottom:976.773333pt;}
.y94{bottom:987.173333pt;}
.y59{bottom:992.133333pt;}
.y93{bottom:1003.173333pt;}
.y58{bottom:1007.493333pt;}
.y92{bottom:1019.200000pt;}
.y57{bottom:1022.720000pt;}
.y56{bottom:1038.080000pt;}
.h22{height:15.200000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.280000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h4{height:38.625000pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1f{height:42.691250pt;}
.h1d{height:42.745000pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{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:148.346667pt;}
.h14{height:322.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w14{width:67.392000pt;}
.w10{width:72.192000pt;}
.w12{width:102.560000pt;}
.w5{width:135.066667pt;}
.w13{width:153.306667pt;}
.w16{width:163.866667pt;}
.w17{width:165.306667pt;}
.w8{width:198.466667pt;}
.wb{width:210.746667pt;}
.wa{width:210.946667pt;}
.wf{width:220.666667pt;}
.w18{width:220.706667pt;}
.we{width:220.826667pt;}
.wd{width:220.866667pt;}
.wc{width:240.666667pt;}
.w15{width:265.146667pt;}
.w11{width:333.666667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.xf{left:36.192000pt;}
.xc{left:40.832000pt;}
.x10{left:44.832000pt;}
.x1{left:64.320000pt;}
.xe{left:68.032000pt;}
.x4{left:71.999988pt;}
.x14{left:81.631988pt;}
.x5{left:87.226667pt;}
.x15{left:96.031988pt;}
.x27{left:110.431988pt;}
.x22{left:133.152000pt;}
.x28{left:134.426655pt;}
.x1e{left:137.946667pt;}
.x11{left:191.266667pt;}
.x1d{left:192.666655pt;}
.x6{left:199.866667pt;}
.x1a{left:241.306655pt;}
.x17{left:251.906655pt;}
.x21{left:254.146655pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x25{left:275.106655pt;}
.x18{left:276.706667pt;}
.x26{left:283.586655pt;}
.x1b{left:286.626667pt;}
.xd{left:297.826667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x16{left:396.866655pt;}
.x23{left:398.946667pt;}
.xa{left:405.066667pt;}
.x1f{left:472.253333pt;}
.x19{left:488.093333pt;}
.x1c{left:508.093333pt;}
.x24{left:563.453333pt;}
.x20{left:575.453333pt;}
.x3{left:663.013333pt;}
}




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