
    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_c1d05e1cc1d7442aa8ef9ceb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0f5c10a9164bb7fbe1fff657.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2bc8c4b10f20ee7c63cfcbd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_97f1e6942087892c05e01b0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_06d6d0d59efa1bc105e87e90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.687500;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_4226fb282bf197830f8921ae.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4668b74f171aba5de5852a41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_042eac2b9081e19892a29e60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_fbafd177de5cf7aa38b5527b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.687500;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_93ff353efe3430c8eb3a918d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef4372c5e8fc8aab374ce6dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.687500;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_5fdf84c3bbceb8e2a8e050d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.687500;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);}
.v5{vertical-align:-64.440000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.560000px;}
.v4{vertical-align:-24.120000px;}
.v7{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.v2{vertical-align:29.880000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.324000px;}
.ls1c{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.234000px;}
.lsb{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.090600px;}
.ls7{letter-spacing:-0.027360px;}
.ls16{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.012000px;}
.lsc{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.022200px;}
.ls15{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.090000px;}
.ls19{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.139200px;}
.ls14{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.342000px;}
.ls1a{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls2{letter-spacing:52.650000px;}
.ls4{letter-spacing:55.620000px;}
.ls12{letter-spacing:83.160000px;}
.ls1{letter-spacing:155.070000px;}
.ls3{letter-spacing:1367.070000px;}
.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;}
}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.wse{word-spacing:-16.492200px;}
.wsd{word-spacing:-16.470000px;}
.ws6{word-spacing:-14.359200px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192640px;}
.ws10{word-spacing:-14.040000px;}
.ws12{word-spacing:-13.644000px;}
.ws18{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.392000px;}
.ws13{word-spacing:-13.356000px;}
.wsf{word-spacing:-13.266000px;}
.ws1b{word-spacing:-13.248000px;}
.wsb{word-spacing:-13.140000px;}
.ws7{word-spacing:-10.530000px;}
.ws19{word-spacing:-9.072000px;}
.ws14{word-spacing:-9.036000px;}
.ws8{word-spacing:-9.000000px;}
.ws15{word-spacing:-8.892000px;}
.ws1a{word-spacing:-8.676000px;}
.wsc{word-spacing:0.000000px;}
.ws16{word-spacing:0.360000px;}
.ws1d{word-spacing:58.446000px;}
.ws1c{word-spacing:85.464000px;}
._1{margin-left:-3.141000px;}
._0{margin-left:-1.032000px;}
._2{width:1.080720px;}
._9{width:2.118000px;}
._5{width:3.120000px;}
._4{width:4.230000px;}
._6{width:5.394000px;}
._7{width:7.020000px;}
._8{width:8.244000px;}
._a{width:9.576000px;}
._b{width:11.118000px;}
._c{width:12.420000px;}
._d{width:14.580000px;}
._e{width:18.468000px;}
._3{width:29.916000px;}
._f{width:1303.982160px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:11.880000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:60.120000px;}
.fsb{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.000000px;}
.fs6{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:2.970000px;}
.y92{bottom:3.060000px;}
.y9a{bottom:3.240000px;}
.ydc{bottom:3.328500px;}
.y96{bottom:3.330000px;}
.yaf{bottom:8.910000px;}
.y9e{bottom:8.940000px;}
.y97{bottom:9.000000px;}
.ybf{bottom:18.540000px;}
.y9c{bottom:28.170000px;}
.ybe{bottom:34.020000px;}
.ya1{bottom:39.060000px;}
.y94{bottom:46.800000px;}
.y2{bottom:57.630000px;}
.ya8{bottom:64.350000px;}
.ya6{bottom:72.090000px;}
.y1{bottom:76.620000px;}
.ya7{bottom:79.830000px;}
.y8f{bottom:95.520000px;}
.y3a{bottom:97.050000px;}
.y6e{bottom:100.380000px;}
.yf3{bottom:107.670000px;}
.y8e{bottom:111.000000px;}
.y39{bottom:112.530000px;}
.y6d{bottom:115.950000px;}
.yf2{bottom:123.150000px;}
.y38{bottom:128.100000px;}
.y6c{bottom:131.430000px;}
.ydb{bottom:132.871500px;}
.yf1{bottom:138.720000px;}
.y37{bottom:143.580000px;}
.y6b{bottom:147.000000px;}
.yf0{bottom:154.200000px;}
.y127{bottom:154.740000px;}
.y36{bottom:159.150000px;}
.y6a{bottom:162.480000px;}
.yda{bottom:169.500000px;}
.yef{bottom:169.680000px;}
.y126{bottom:170.400000px;}
.y35{bottom:174.630000px;}
.y125{bottom:185.970000px;}
.y34{bottom:190.200000px;}
.y69{bottom:193.710000px;}
.yee{bottom:200.910000px;}
.y124{bottom:201.540000px;}
.y33{bottom:205.770000px;}
.yd9{bottom:206.130000px;}
.y68{bottom:209.190000px;}
.yed{bottom:216.480000px;}
.y123{bottom:217.110000px;}
.y32{bottom:221.430000px;}
.yec{bottom:231.960000px;}
.y122{bottom:232.770000px;}
.y31{bottom:236.910000px;}
.y67{bottom:240.420000px;}
.yd7{bottom:242.670000px;}
.yeb{bottom:247.440000px;}
.y121{bottom:248.340000px;}
.y30{bottom:252.390000px;}
.y66{bottom:255.900000px;}
.y120{bottom:263.910000px;}
.y2f{bottom:267.960000px;}
.yd8{bottom:279.300000px;}
.y11f{bottom:279.570000px;}
.y2e{bottom:283.440000px;}
.y65{bottom:287.130000px;}
.y11e{bottom:295.140000px;}
.y2d{bottom:299.010000px;}
.y64{bottom:302.700000px;}
.y2c{bottom:314.490000px;}
.y63{bottom:318.180000px;}
.y11d{bottom:326.100000px;}
.y2b{bottom:330.060000px;}
.y2a{bottom:345.540000px;}
.y62{bottom:349.410000px;}
.yd6{bottom:355.800000px;}
.y11c{bottom:357.600000px;}
.y29{bottom:361.110000px;}
.y61{bottom:364.890000px;}
.y11b{bottom:373.080000px;}
.yc2{bottom:376.410000px;}
.y60{bottom:380.460000px;}
.yd5{bottom:387.030000px;}
.y28{bottom:391.980000px;}
.yc1{bottom:392.700000px;}
.yd4{bottom:402.510000px;}
.y11a{bottom:403.950000px;}
.yc0{bottom:408.990000px;}
.y5f{bottom:411.600000px;}
.yd3{bottom:417.990000px;}
.y27{bottom:423.030000px;}
.ybc{bottom:425.280000px;}
.y5e{bottom:427.170000px;}
.y26{bottom:441.120000px;}
.yd2{bottom:446.700000px;}
.y119{bottom:451.110000px;}
.y5d{bottom:458.400000px;}
.y118{bottom:466.590000px;}
.y25{bottom:469.920000px;}
.y5c{bottom:473.880000px;}
.ybb{bottom:475.890000px;}
.y117{bottom:482.190000px;}
.y24{bottom:488.400000px;}
.y5b{bottom:489.390000px;}
.yd1{bottom:492.720000px;}
.y116{bottom:497.670000px;}
.y23{bottom:503.970000px;}
.yba{bottom:507.120000px;}
.y8d{bottom:515.850000px;}
.y22{bottom:519.450000px;}
.y5a{bottom:520.620000px;}
.yb9{bottom:522.600000px;}
.y115{bottom:528.630000px;}
.y8c{bottom:531.420000px;}
.y21{bottom:535.020000px;}
.yb8{bottom:538.170000px;}
.yd0{bottom:538.710000px;}
.y8b{bottom:546.900000px;}
.y20{bottom:550.500000px;}
.y59{bottom:551.850000px;}
.yb7{bottom:553.650000px;}
.y114{bottom:560.040000px;}
.y8a{bottom:562.470000px;}
.y1f{bottom:566.070000px;}
.y58{bottom:567.330000px;}
.yb6{bottom:569.220000px;}
.y113{bottom:575.610000px;}
.y89{bottom:577.950000px;}
.y1e{bottom:581.550000px;}
.yb5{bottom:584.700000px;}
.ycf{bottom:587.670000px;}
.y112{bottom:591.090000px;}
.y88{bottom:593.520000px;}
.y1d{bottom:597.120000px;}
.y57{bottom:598.560000px;}
.yb4{bottom:600.270000px;}
.y111{bottom:606.660000px;}
.y87{bottom:609.000000px;}
.y1c{bottom:612.600000px;}
.yb3{bottom:615.750000px;}
.y110{bottom:622.140000px;}
.y86{bottom:624.570000px;}
.y1b{bottom:628.170000px;}
.y56{bottom:629.430000px;}
.yce{bottom:633.930000px;}
.y10f{bottom:637.710000px;}
.y85{bottom:640.050000px;}
.yb2{bottom:646.980000px;}
.y1a{bottom:650.400000px;}
.y10e{bottom:653.190000px;}
.y84{bottom:655.530000px;}
.y55{bottom:660.930000px;}
.yb1{bottom:662.460000px;}
.ycd{bottom:665.160000px;}
.y10d{bottom:668.760000px;}
.y54{bottom:676.500000px;}
.y19{bottom:677.130000px;}
.ycc{bottom:680.640000px;}
.y10c{bottom:684.240000px;}
.y83{bottom:686.760000px;}
.y53{bottom:691.980000px;}
.y18{bottom:692.610000px;}
.yb0{bottom:693.420000px;}
.ycb{bottom:696.120000px;}
.y10b{bottom:699.810000px;}
.y82{bottom:702.240000px;}
.y52{bottom:707.550000px;}
.y17{bottom:708.180000px;}
.yca{bottom:711.690000px;}
.y10a{bottom:715.290000px;}
.ya5{bottom:722.310000px;}
.y51{bottom:723.030000px;}
.y109{bottom:730.860000px;}
.y81{bottom:733.470000px;}
.yea{bottom:735.630000px;}
.y16{bottom:742.830000px;}
.yc9{bottom:742.920000px;}
.yae{bottom:744.360000px;}
.y108{bottom:746.340000px;}
.ye9{bottom:751.110000px;}
.y50{bottom:753.990000px;}
.yc8{bottom:758.400000px;}
.y107{bottom:761.910000px;}
.y15{bottom:764.430000px;}
.yad{bottom:766.320000px;}
.ye8{bottom:766.680000px;}
.yc7{bottom:773.970000px;}
.y106{bottom:777.390000px;}
.ye7{bottom:782.160000px;}
.y4f{bottom:785.400000px;}
.yac{bottom:788.280000px;}
.yc6{bottom:789.450000px;}
.y105{bottom:792.960000px;}
.y14{bottom:795.300000px;}
.y80{bottom:795.930000px;}
.ye6{bottom:797.730000px;}
.y4e{bottom:800.970000px;}
.yc5{bottom:805.020000px;}
.y104{bottom:808.440000px;}
.yab{bottom:810.240000px;}
.y13{bottom:810.870000px;}
.y7f{bottom:811.410000px;}
.ye5{bottom:813.210000px;}
.y4d{bottom:816.450000px;}
.yc4{bottom:820.500000px;}
.y103{bottom:823.920000px;}
.y7e{bottom:826.890000px;}
.y12{bottom:828.690000px;}
.ye4{bottom:828.780000px;}
.yaa{bottom:832.200000px;}
.yc3{bottom:835.980000px;}
.y11{bottom:841.650000px;}
.ye3{bottom:844.260000px;}
.y4c{bottom:847.680000px;}
.ya9{bottom:854.160000px;}
.y102{bottom:855.150000px;}
.y7d{bottom:858.120000px;}
.y4b{bottom:863.160000px;}
.y10{bottom:867.120000px;}
.y101{bottom:870.720000px;}
.y7c{bottom:873.690000px;}
.ye2{bottom:875.220000px;}
.ya0{bottom:876.210000px;}
.y4a{bottom:878.730000px;}
.y100{bottom:886.200000px;}
.y7b{bottom:889.170000px;}
.y49{bottom:894.210000px;}
.ya4{bottom:898.170000px;}
.yff{bottom:901.770000px;}
.ye1{bottom:904.110000px;}
.yf{bottom:906.180000px;}
.y48{bottom:909.780000px;}
.yfe{bottom:917.250000px;}
.ya3{bottom:920.130000px;}
.y7a{bottom:920.310000px;}
.y47{bottom:925.260000px;}
.ye{bottom:930.300000px;}
.yfd{bottom:932.820000px;}
.ye0{bottom:935.610000px;}
.y79{bottom:936.870000px;}
.ya2{bottom:942.090000px;}
.yfc{bottom:948.300000px;}
.y78{bottom:953.520000px;}
.y46{bottom:956.490000px;}
.yfb{bottom:963.870000px;}
.y9b{bottom:964.050000px;}
.ydf{bottom:967.650000px;}
.y77{bottom:970.080000px;}
.y45{bottom:972.060000px;}
.yd{bottom:973.590000px;}
.yfa{bottom:979.350000px;}
.y9f{bottom:986.010000px;}
.y76{bottom:986.640000px;}
.y44{bottom:987.540000px;}
.yf9{bottom:994.830000px;}
.yde{bottom:1000.410000px;}
.y43{bottom:1003.020000px;}
.y75{bottom:1003.200000px;}
.y9d{bottom:1008.060000px;}
.yc{bottom:1015.830000px;}
.yf8{bottom:1025.820000px;}
.y93{bottom:1030.050000px;}
.ydd{bottom:1031.490000px;}
.y42{bottom:1034.010000px;}
.y9{bottom:1034.100000px;}
.y74{bottom:1034.460000px;}
.yb{bottom:1039.140000px;}
.y73{bottom:1049.940000px;}
.y99{bottom:1052.010000px;}
.yf7{bottom:1054.800000px;}
.y8{bottom:1057.320000px;}
.y41{bottom:1065.240000px;}
.y72{bottom:1065.510000px;}
.ya{bottom:1071.180000px;}
.yf6{bottom:1071.810000px;}
.y98{bottom:1073.970000px;}
.y71{bottom:1080.990000px;}
.y7{bottom:1086.480000px;}
.yf5{bottom:1088.820000px;}
.y95{bottom:1095.930000px;}
.y70{bottom:1096.560000px;}
.y40{bottom:1096.650000px;}
.y6{bottom:1105.650000px;}
.yf4{bottom:1105.830000px;}
.y6f{bottom:1112.040000px;}
.y3f{bottom:1112.220000px;}
.y91{bottom:1117.890000px;}
.y5{bottom:1122.840000px;}
.y3e{bottom:1127.700000px;}
.y4{bottom:1140.120000px;}
.y90{bottom:1143.180000px;}
.y3d{bottom:1143.270000px;}
.y3{bottom:1157.940000px;}
.y3c{bottom:1158.750000px;}
.y3b{bottom:1193.670000px;}
.hc{height:11.972812px;}
.h1e{height:15.570000px;}
.h2b{height:16.290000px;}
.h1b{height:21.150000px;}
.h1a{height:21.172500px;}
.h16{height:21.240000px;}
.h26{height:29.970000px;}
.h27{height:30.352500px;}
.h2a{height:30.690000px;}
.h29{height:31.320000px;}
.h28{height:31.950000px;}
.hf{height:35.314453px;}
.h24{height:35.820000px;}
.h25{height:35.908500px;}
.h23{height:35.910000px;}
.h12{height:38.158594px;}
.h1f{height:45.180000px;}
.h20{height:45.300000px;}
.h1d{height:46.530000px;}
.h13{height:46.991602px;}
.h7{height:48.254063px;}
.he{height:52.971680px;}
.h14{height:52.998047px;}
.h10{height:54.421875px;}
.h8{height:55.796836px;}
.h9{height:58.975137px;}
.hd{height:59.434453px;}
.h15{height:59.452031px;}
.h17{height:60.401250px;}
.h4{height:60.589687px;}
.h11{height:61.800293px;}
.h2{height:64.657617px;}
.h19{height:65.182500px;}
.h5{height:66.394687px;}
.hb{height:72.329062px;}
.h22{height:72.450000px;}
.h3{height:72.562500px;}
.h6{height:81.632812px;}
.ha{height:84.535312px;}
.h18{height:87.120000px;}
.h21{height:109.080000px;}
.h1c{height:153.090000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w10{width:71.550000px;}
.w17{width:93.180000px;}
.w18{width:93.420000px;}
.w1a{width:93.450000px;}
.w19{width:93.510000px;}
.w2{width:98.460000px;}
.w15{width:105.570000px;}
.w1c{width:105.960000px;}
.w1d{width:106.020000px;}
.w1b{width:107.010000px;}
.w11{width:112.080000px;}
.wf{width:119.250000px;}
.wc{width:119.640000px;}
.w4{width:123.120000px;}
.w13{width:123.660000px;}
.w16{width:124.020000px;}
.w6{width:134.580000px;}
.w3{width:134.940000px;}
.w1e{width:137.820000px;}
.we{width:138.630000px;}
.w14{width:138.900000px;}
.w8{width:158.394000px;}
.wb{width:158.760000px;}
.w9{width:158.790000px;}
.wa{width:158.880000px;}
.wd{width:162.810000px;}
.w7{width:203.700000px;}
.w5{width:204.060000px;}
.w12{width:368.850000px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x2b{left:8.280000px;}
.x46{left:10.080000px;}
.x3f{left:12.870000px;}
.x42{left:14.490000px;}
.x40{left:15.840000px;}
.x1a{left:16.920000px;}
.x18{left:18.450000px;}
.x23{left:21.690000px;}
.x2c{left:23.310000px;}
.x25{left:26.910000px;}
.x2{left:29.970000px;}
.x17{left:33.750000px;}
.x3c{left:35.100000px;}
.x3b{left:36.540000px;}
.x1d{left:37.800000px;}
.x20{left:39.780000px;}
.x24{left:41.490000px;}
.x1e{left:43.200000px;}
.xd{left:46.620000px;}
.x22{left:48.240000px;}
.xf{left:50.220000px;}
.x13{left:51.930000px;}
.x33{left:53.460000px;}
.x31{left:55.710000px;}
.x9{left:58.320000px;}
.x2e{left:63.090000px;}
.x29{left:65.730000px;}
.x32{left:70.590000px;}
.x30{left:72.810000px;}
.x11{left:74.250000px;}
.x2f{left:76.140000px;}
.xc{left:83.970000px;}
.x21{left:89.040000px;}
.x1f{left:90.300000px;}
.x14{left:105.390000px;}
.x4b{left:132.600000px;}
.x27{left:135.120000px;}
.x16{left:172.200000px;}
.x3e{left:176.250000px;}
.x3a{left:182.280000px;}
.x36{left:207.390000px;}
.xb{left:209.370000px;}
.x4d{left:224.130000px;}
.x3d{left:231.870000px;}
.x5{left:244.020000px;}
.x41{left:248.160000px;}
.x26{left:252.120000px;}
.x48{left:265.710000px;}
.x3{left:270.210000px;}
.x1c{left:271.380000px;}
.x4{left:290.460000px;}
.x28{left:293.880000px;}
.x4c{left:298.200000px;}
.x37{left:301.890000px;}
.x15{left:314.040000px;}
.x4e{left:331.500000px;}
.x47{left:343.290000px;}
.x35{left:344.820000px;}
.x10{left:355.620000px;}
.x49{left:359.250000px;}
.x43{left:360.960000px;}
.x53{left:373.200000px;}
.xa{left:384.000000px;}
.x52{left:403.260000px;}
.x19{left:406.320000px;}
.x51{left:407.760000px;}
.xe{left:412.170000px;}
.x12{left:418.200000px;}
.x38{left:421.980000px;}
.x34{left:431.970000px;}
.x4f{left:437.820000px;}
.x1{left:440.610000px;}
.x8{left:448.980000px;}
.x2a{left:453.030000px;}
.x6{left:478.950000px;}
.x44{left:484.980000px;}
.x7{left:506.490000px;}
.x1b{left:529.800000px;}
.x50{left:544.200000px;}
.x4a{left:546.900000px;}
.x39{left:585.150000px;}
.x2d{left:612.270000px;}
.x45{left:624.240000px;}
@media print{
.v5{vertical-align:-57.280000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.720000pt;}
.v4{vertical-align:-21.440000pt;}
.v7{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.v2{vertical-align:26.560000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls1c{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.208000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.080533pt;}
.ls7{letter-spacing:-0.024320pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010667pt;}
.lsc{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.019733pt;}
.ls15{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.080000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.123733pt;}
.ls14{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.304000pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls2{letter-spacing:46.800000pt;}
.ls4{letter-spacing:49.440000pt;}
.ls12{letter-spacing:73.920000pt;}
.ls1{letter-spacing:137.840000pt;}
.ls3{letter-spacing:1215.173333pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.wse{word-spacing:-14.659733pt;}
.wsd{word-spacing:-14.640000pt;}
.ws6{word-spacing:-12.763733pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615680pt;}
.ws10{word-spacing:-12.480000pt;}
.ws12{word-spacing:-12.128000pt;}
.ws18{word-spacing:-12.112000pt;}
.ws11{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws13{word-spacing:-11.872000pt;}
.wsf{word-spacing:-11.792000pt;}
.ws1b{word-spacing:-11.776000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws7{word-spacing:-9.360000pt;}
.ws19{word-spacing:-8.064000pt;}
.ws14{word-spacing:-8.032000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws15{word-spacing:-7.904000pt;}
.ws1a{word-spacing:-7.712000pt;}
.wsc{word-spacing:0.000000pt;}
.ws16{word-spacing:0.320000pt;}
.ws1d{word-spacing:51.952000pt;}
.ws1c{word-spacing:75.968000pt;}
._1{margin-left:-2.792000pt;}
._0{margin-left:-0.917333pt;}
._2{width:0.960640pt;}
._9{width:1.882667pt;}
._5{width:2.773333pt;}
._4{width:3.760000pt;}
._6{width:4.794667pt;}
._7{width:6.240000pt;}
._8{width:7.328000pt;}
._a{width:8.512000pt;}
._b{width:9.882667pt;}
._c{width:11.040000pt;}
._d{width:12.960000pt;}
._e{width:16.416000pt;}
._3{width:26.592000pt;}
._f{width:1159.095253pt;}
.fs8{font-size:10.560000pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.440000pt;}
.fsb{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.000000pt;}
.fs6{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:2.640000pt;}
.y92{bottom:2.720000pt;}
.y9a{bottom:2.880000pt;}
.ydc{bottom:2.958667pt;}
.y96{bottom:2.960000pt;}
.yaf{bottom:7.920000pt;}
.y9e{bottom:7.946667pt;}
.y97{bottom:8.000000pt;}
.ybf{bottom:16.480000pt;}
.y9c{bottom:25.040000pt;}
.ybe{bottom:30.240000pt;}
.ya1{bottom:34.720000pt;}
.y94{bottom:41.600000pt;}
.y2{bottom:51.226667pt;}
.ya8{bottom:57.200000pt;}
.ya6{bottom:64.080000pt;}
.y1{bottom:68.106667pt;}
.ya7{bottom:70.960000pt;}
.y8f{bottom:84.906667pt;}
.y3a{bottom:86.266667pt;}
.y6e{bottom:89.226667pt;}
.yf3{bottom:95.706667pt;}
.y8e{bottom:98.666667pt;}
.y39{bottom:100.026667pt;}
.y6d{bottom:103.066667pt;}
.yf2{bottom:109.466667pt;}
.y38{bottom:113.866667pt;}
.y6c{bottom:116.826667pt;}
.ydb{bottom:118.108000pt;}
.yf1{bottom:123.306667pt;}
.y37{bottom:127.626667pt;}
.y6b{bottom:130.666667pt;}
.yf0{bottom:137.066667pt;}
.y127{bottom:137.546667pt;}
.y36{bottom:141.466667pt;}
.y6a{bottom:144.426667pt;}
.yda{bottom:150.666667pt;}
.yef{bottom:150.826667pt;}
.y126{bottom:151.466667pt;}
.y35{bottom:155.226667pt;}
.y125{bottom:165.306667pt;}
.y34{bottom:169.066667pt;}
.y69{bottom:172.186667pt;}
.yee{bottom:178.586667pt;}
.y124{bottom:179.146667pt;}
.y33{bottom:182.906667pt;}
.yd9{bottom:183.226667pt;}
.y68{bottom:185.946667pt;}
.yed{bottom:192.426667pt;}
.y123{bottom:192.986667pt;}
.y32{bottom:196.826667pt;}
.yec{bottom:206.186667pt;}
.y122{bottom:206.906667pt;}
.y31{bottom:210.586667pt;}
.y67{bottom:213.706667pt;}
.yd7{bottom:215.706667pt;}
.yeb{bottom:219.946667pt;}
.y121{bottom:220.746667pt;}
.y30{bottom:224.346667pt;}
.y66{bottom:227.466667pt;}
.y120{bottom:234.586667pt;}
.y2f{bottom:238.186667pt;}
.yd8{bottom:248.266667pt;}
.y11f{bottom:248.506667pt;}
.y2e{bottom:251.946667pt;}
.y65{bottom:255.226667pt;}
.y11e{bottom:262.346667pt;}
.y2d{bottom:265.786667pt;}
.y64{bottom:269.066667pt;}
.y2c{bottom:279.546667pt;}
.y63{bottom:282.826667pt;}
.y11d{bottom:289.866667pt;}
.y2b{bottom:293.386667pt;}
.y2a{bottom:307.146667pt;}
.y62{bottom:310.586667pt;}
.yd6{bottom:316.266667pt;}
.y11c{bottom:317.866667pt;}
.y29{bottom:320.986667pt;}
.y61{bottom:324.346667pt;}
.y11b{bottom:331.626667pt;}
.yc2{bottom:334.586667pt;}
.y60{bottom:338.186667pt;}
.yd5{bottom:344.026667pt;}
.y28{bottom:348.426667pt;}
.yc1{bottom:349.066667pt;}
.yd4{bottom:357.786667pt;}
.y11a{bottom:359.066667pt;}
.yc0{bottom:363.546667pt;}
.y5f{bottom:365.866667pt;}
.yd3{bottom:371.546667pt;}
.y27{bottom:376.026667pt;}
.ybc{bottom:378.026667pt;}
.y5e{bottom:379.706667pt;}
.y26{bottom:392.106667pt;}
.yd2{bottom:397.066667pt;}
.y119{bottom:400.986667pt;}
.y5d{bottom:407.466667pt;}
.y118{bottom:414.746667pt;}
.y25{bottom:417.706667pt;}
.y5c{bottom:421.226667pt;}
.ybb{bottom:423.013333pt;}
.y117{bottom:428.613333pt;}
.y24{bottom:434.133333pt;}
.y5b{bottom:435.013333pt;}
.yd1{bottom:437.973333pt;}
.y116{bottom:442.373333pt;}
.y23{bottom:447.973333pt;}
.yba{bottom:450.773333pt;}
.y8d{bottom:458.533333pt;}
.y22{bottom:461.733333pt;}
.y5a{bottom:462.773333pt;}
.yb9{bottom:464.533333pt;}
.y115{bottom:469.893333pt;}
.y8c{bottom:472.373333pt;}
.y21{bottom:475.573333pt;}
.yb8{bottom:478.373333pt;}
.yd0{bottom:478.853333pt;}
.y8b{bottom:486.133333pt;}
.y20{bottom:489.333333pt;}
.y59{bottom:490.533333pt;}
.yb7{bottom:492.133333pt;}
.y114{bottom:497.813333pt;}
.y8a{bottom:499.973333pt;}
.y1f{bottom:503.173333pt;}
.y58{bottom:504.293333pt;}
.yb6{bottom:505.973333pt;}
.y113{bottom:511.653333pt;}
.y89{bottom:513.733333pt;}
.y1e{bottom:516.933333pt;}
.yb5{bottom:519.733333pt;}
.ycf{bottom:522.373333pt;}
.y112{bottom:525.413333pt;}
.y88{bottom:527.573333pt;}
.y1d{bottom:530.773333pt;}
.y57{bottom:532.053333pt;}
.yb4{bottom:533.573333pt;}
.y111{bottom:539.253333pt;}
.y87{bottom:541.333333pt;}
.y1c{bottom:544.533333pt;}
.yb3{bottom:547.333333pt;}
.y110{bottom:553.013333pt;}
.y86{bottom:555.173333pt;}
.y1b{bottom:558.373333pt;}
.y56{bottom:559.493333pt;}
.yce{bottom:563.493333pt;}
.y10f{bottom:566.853333pt;}
.y85{bottom:568.933333pt;}
.yb2{bottom:575.093333pt;}
.y1a{bottom:578.133333pt;}
.y10e{bottom:580.613333pt;}
.y84{bottom:582.693333pt;}
.y55{bottom:587.493333pt;}
.yb1{bottom:588.853333pt;}
.ycd{bottom:591.253333pt;}
.y10d{bottom:594.453333pt;}
.y54{bottom:601.333333pt;}
.y19{bottom:601.893333pt;}
.ycc{bottom:605.013333pt;}
.y10c{bottom:608.213333pt;}
.y83{bottom:610.453333pt;}
.y53{bottom:615.093333pt;}
.y18{bottom:615.653333pt;}
.yb0{bottom:616.373333pt;}
.ycb{bottom:618.773333pt;}
.y10b{bottom:622.053333pt;}
.y82{bottom:624.213333pt;}
.y52{bottom:628.933333pt;}
.y17{bottom:629.493333pt;}
.yca{bottom:632.613333pt;}
.y10a{bottom:635.813333pt;}
.ya5{bottom:642.053333pt;}
.y51{bottom:642.693333pt;}
.y109{bottom:649.653333pt;}
.y81{bottom:651.973333pt;}
.yea{bottom:653.893333pt;}
.y16{bottom:660.293333pt;}
.yc9{bottom:660.373333pt;}
.yae{bottom:661.653333pt;}
.y108{bottom:663.413333pt;}
.ye9{bottom:667.653333pt;}
.y50{bottom:670.213333pt;}
.yc8{bottom:674.133333pt;}
.y107{bottom:677.253333pt;}
.y15{bottom:679.493333pt;}
.yad{bottom:681.173333pt;}
.ye8{bottom:681.493333pt;}
.yc7{bottom:687.973333pt;}
.y106{bottom:691.013333pt;}
.ye7{bottom:695.253333pt;}
.y4f{bottom:698.133333pt;}
.yac{bottom:700.693333pt;}
.yc6{bottom:701.733333pt;}
.y105{bottom:704.853333pt;}
.y14{bottom:706.933333pt;}
.y80{bottom:707.493333pt;}
.ye6{bottom:709.093333pt;}
.y4e{bottom:711.973333pt;}
.yc5{bottom:715.573333pt;}
.y104{bottom:718.613333pt;}
.yab{bottom:720.213333pt;}
.y13{bottom:720.773333pt;}
.y7f{bottom:721.253333pt;}
.ye5{bottom:722.853333pt;}
.y4d{bottom:725.733333pt;}
.yc4{bottom:729.333333pt;}
.y103{bottom:732.373333pt;}
.y7e{bottom:735.013333pt;}
.y12{bottom:736.613333pt;}
.ye4{bottom:736.693333pt;}
.yaa{bottom:739.733333pt;}
.yc3{bottom:743.093333pt;}
.y11{bottom:748.133333pt;}
.ye3{bottom:750.453333pt;}
.y4c{bottom:753.493333pt;}
.ya9{bottom:759.253333pt;}
.y102{bottom:760.133333pt;}
.y7d{bottom:762.773333pt;}
.y4b{bottom:767.253333pt;}
.y10{bottom:770.773333pt;}
.y101{bottom:773.973333pt;}
.y7c{bottom:776.613333pt;}
.ye2{bottom:777.973333pt;}
.ya0{bottom:778.853333pt;}
.y4a{bottom:781.093333pt;}
.y100{bottom:787.733333pt;}
.y7b{bottom:790.373333pt;}
.y49{bottom:794.853333pt;}
.ya4{bottom:798.373333pt;}
.yff{bottom:801.573333pt;}
.ye1{bottom:803.653333pt;}
.yf{bottom:805.493333pt;}
.y48{bottom:808.693333pt;}
.yfe{bottom:815.333333pt;}
.ya3{bottom:817.893333pt;}
.y7a{bottom:818.053333pt;}
.y47{bottom:822.453333pt;}
.ye{bottom:826.933333pt;}
.yfd{bottom:829.173333pt;}
.ye0{bottom:831.653333pt;}
.y79{bottom:832.773333pt;}
.ya2{bottom:837.413333pt;}
.yfc{bottom:842.933333pt;}
.y78{bottom:847.573333pt;}
.y46{bottom:850.213333pt;}
.yfb{bottom:856.773333pt;}
.y9b{bottom:856.933333pt;}
.ydf{bottom:860.133333pt;}
.y77{bottom:862.293333pt;}
.y45{bottom:864.053333pt;}
.yd{bottom:865.413333pt;}
.yfa{bottom:870.533333pt;}
.y9f{bottom:876.453333pt;}
.y76{bottom:877.013333pt;}
.y44{bottom:877.813333pt;}
.yf9{bottom:884.293333pt;}
.yde{bottom:889.253333pt;}
.y43{bottom:891.573333pt;}
.y75{bottom:891.733333pt;}
.y9d{bottom:896.053333pt;}
.yc{bottom:902.960000pt;}
.yf8{bottom:911.840000pt;}
.y93{bottom:915.600000pt;}
.ydd{bottom:916.880000pt;}
.y42{bottom:919.120000pt;}
.y9{bottom:919.200000pt;}
.y74{bottom:919.520000pt;}
.yb{bottom:923.680000pt;}
.y73{bottom:933.280000pt;}
.y99{bottom:935.120000pt;}
.yf7{bottom:937.600000pt;}
.y8{bottom:939.840000pt;}
.y41{bottom:946.880000pt;}
.y72{bottom:947.120000pt;}
.ya{bottom:952.160000pt;}
.yf6{bottom:952.720000pt;}
.y98{bottom:954.640000pt;}
.y71{bottom:960.880000pt;}
.y7{bottom:965.760000pt;}
.yf5{bottom:967.840000pt;}
.y95{bottom:974.160000pt;}
.y70{bottom:974.720000pt;}
.y40{bottom:974.800000pt;}
.y6{bottom:982.800000pt;}
.yf4{bottom:982.960000pt;}
.y6f{bottom:988.480000pt;}
.y3f{bottom:988.640000pt;}
.y91{bottom:993.680000pt;}
.y5{bottom:998.080000pt;}
.y3e{bottom:1002.400000pt;}
.y4{bottom:1013.440000pt;}
.y90{bottom:1016.160000pt;}
.y3d{bottom:1016.240000pt;}
.y3{bottom:1029.280000pt;}
.y3c{bottom:1030.000000pt;}
.y3b{bottom:1061.040000pt;}
.hc{height:10.642500pt;}
.h1e{height:13.840000pt;}
.h2b{height:14.480000pt;}
.h1b{height:18.800000pt;}
.h1a{height:18.820000pt;}
.h16{height:18.880000pt;}
.h26{height:26.640000pt;}
.h27{height:26.980000pt;}
.h2a{height:27.280000pt;}
.h29{height:27.840000pt;}
.h28{height:28.400000pt;}
.hf{height:31.390625pt;}
.h24{height:31.840000pt;}
.h25{height:31.918667pt;}
.h23{height:31.920000pt;}
.h12{height:33.918750pt;}
.h1f{height:40.160000pt;}
.h20{height:40.266667pt;}
.h1d{height:41.360000pt;}
.h13{height:41.770312pt;}
.h7{height:42.892500pt;}
.he{height:47.085938pt;}
.h14{height:47.109375pt;}
.h10{height:48.375000pt;}
.h8{height:49.597187pt;}
.h9{height:52.422344pt;}
.hd{height:52.830625pt;}
.h15{height:52.846250pt;}
.h17{height:53.690000pt;}
.h4{height:53.857500pt;}
.h11{height:54.933594pt;}
.h2{height:57.473437pt;}
.h19{height:57.940000pt;}
.h5{height:59.017500pt;}
.hb{height:64.292500pt;}
.h22{height:64.400000pt;}
.h3{height:64.500000pt;}
.h6{height:72.562500pt;}
.ha{height:75.142500pt;}
.h18{height:77.440000pt;}
.h21{height:96.960000pt;}
.h1c{height:136.080000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w10{width:63.600000pt;}
.w17{width:82.826667pt;}
.w18{width:83.040000pt;}
.w1a{width:83.066667pt;}
.w19{width:83.120000pt;}
.w2{width:87.520000pt;}
.w15{width:93.840000pt;}
.w1c{width:94.186667pt;}
.w1d{width:94.240000pt;}
.w1b{width:95.120000pt;}
.w11{width:99.626667pt;}
.wf{width:106.000000pt;}
.wc{width:106.346667pt;}
.w4{width:109.440000pt;}
.w13{width:109.920000pt;}
.w16{width:110.240000pt;}
.w6{width:119.626667pt;}
.w3{width:119.946667pt;}
.w1e{width:122.506667pt;}
.we{width:123.226667pt;}
.w14{width:123.466667pt;}
.w8{width:140.794667pt;}
.wb{width:141.120000pt;}
.w9{width:141.146667pt;}
.wa{width:141.226667pt;}
.wd{width:144.720000pt;}
.w7{width:181.066667pt;}
.w5{width:181.386667pt;}
.w12{width:327.866667pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2b{left:7.360000pt;}
.x46{left:8.960000pt;}
.x3f{left:11.440000pt;}
.x42{left:12.880000pt;}
.x40{left:14.080000pt;}
.x1a{left:15.040000pt;}
.x18{left:16.400000pt;}
.x23{left:19.280000pt;}
.x2c{left:20.720000pt;}
.x25{left:23.920000pt;}
.x2{left:26.640000pt;}
.x17{left:30.000000pt;}
.x3c{left:31.200000pt;}
.x3b{left:32.480000pt;}
.x1d{left:33.600000pt;}
.x20{left:35.360000pt;}
.x24{left:36.880000pt;}
.x1e{left:38.400000pt;}
.xd{left:41.440000pt;}
.x22{left:42.880000pt;}
.xf{left:44.640000pt;}
.x13{left:46.160000pt;}
.x33{left:47.520000pt;}
.x31{left:49.520000pt;}
.x9{left:51.840000pt;}
.x2e{left:56.080000pt;}
.x29{left:58.426667pt;}
.x32{left:62.746667pt;}
.x30{left:64.720000pt;}
.x11{left:66.000000pt;}
.x2f{left:67.680000pt;}
.xc{left:74.640000pt;}
.x21{left:79.146667pt;}
.x1f{left:80.266667pt;}
.x14{left:93.680000pt;}
.x4b{left:117.866667pt;}
.x27{left:120.106667pt;}
.x16{left:153.066667pt;}
.x3e{left:156.666667pt;}
.x3a{left:162.026667pt;}
.x36{left:184.346667pt;}
.xb{left:186.106667pt;}
.x4d{left:199.226667pt;}
.x3d{left:206.106667pt;}
.x5{left:216.906667pt;}
.x41{left:220.586667pt;}
.x26{left:224.106667pt;}
.x48{left:236.186667pt;}
.x3{left:240.186667pt;}
.x1c{left:241.226667pt;}
.x4{left:258.186667pt;}
.x28{left:261.226667pt;}
.x4c{left:265.066667pt;}
.x37{left:268.346667pt;}
.x15{left:279.146667pt;}
.x4e{left:294.666667pt;}
.x47{left:305.146667pt;}
.x35{left:306.506667pt;}
.x10{left:316.106667pt;}
.x49{left:319.333333pt;}
.x43{left:320.853333pt;}
.x53{left:331.733333pt;}
.xa{left:341.333333pt;}
.x52{left:358.453333pt;}
.x19{left:361.173333pt;}
.x51{left:362.453333pt;}
.xe{left:366.373333pt;}
.x12{left:371.733333pt;}
.x38{left:375.093333pt;}
.x34{left:383.973333pt;}
.x4f{left:389.173333pt;}
.x1{left:391.653333pt;}
.x8{left:399.093333pt;}
.x2a{left:402.693333pt;}
.x6{left:425.733333pt;}
.x44{left:431.093333pt;}
.x7{left:450.213333pt;}
.x1b{left:470.933333pt;}
.x50{left:483.733333pt;}
.x4a{left:486.133333pt;}
.x39{left:520.133333pt;}
.x2d{left:544.240000pt;}
.x45{left:554.880000pt;}
}




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