
    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_3b2581f9f1fc8c920cb98667.woff')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_b8c327195112a0643c21cae7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_60e560c4fc6464bebdb1e3ab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_0a2ae684992a7fb8d63122de.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e128f265624c41540507009c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_6d095fce53d9477216173e9d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_2a3b0307d73810d83dceecf8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f994a2972d1fcc5a97b93457.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_a726ea52e458e6f8b6820678.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_26083905f231c8adc98a2a31.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_e6744905ffb1a794e35b36b9.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1792757625044195c5a55fef.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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);}
.m2{transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250618,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v3{vertical-align:25.011829px;}
.ls17{letter-spacing:-7.860000px;}
.ls15{letter-spacing:-0.394924px;}
.ls13{letter-spacing:-0.246600px;}
.lse{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.178800px;}
.ls12{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.084000px;}
.ls1b{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.003000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.199200px;}
.ls14{letter-spacing:0.329103px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:6.026400px;}
.ls11{letter-spacing:11.613600px;}
.ls1a{letter-spacing:14.246640px;}
.ls19{letter-spacing:47.726640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-16.455151px;}
.wsd{word-spacing:-16.060227px;}
.wsc{word-spacing:-15.138739px;}
.ws2{word-spacing:-14.490600px;}
.ws8{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws3{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws9{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.wsa{word-spacing:-12.979800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-4.092600px;}
._1{margin-left:-2.789640px;}
._0{margin-left:-1.110000px;}
._2{width:1.072092px;}
._4{width:2.088600px;}
._3{width:3.202200px;}
._7{width:4.211761px;}
._6{width:5.270520px;}
._9{width:6.499789px;}
._e{width:7.547357px;}
._a{width:8.594280px;}
._b{width:9.802320px;}
._d{width:10.814281px;}
._8{width:11.859840px;}
._10{width:14.877480px;}
._5{width:16.051800px;}
._f{width:17.615160px;}
._14{width:19.392120px;}
._13{width:21.042000px;}
._11{width:22.364640px;}
._12{width:23.513520px;}
._17{width:24.709320px;}
._16{width:30.536520px;}
._15{width:31.563000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fsc{font-size:44.099804px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fsb{font-size:60.554955px;}
.fsa{font-size:65.820603px;}
.fs6{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:5.759303px;}
.ycc{bottom:5.923854px;}
.yba{bottom:6.417509px;}
.ybe{bottom:6.582060px;}
.yc0{bottom:6.746612px;}
.yc5{bottom:15.467842px;}
.yca{bottom:15.632393px;}
.yc6{bottom:15.796945px;}
.yed{bottom:16.455699px;}
.ybc{bottom:17.442460px;}
.yc7{bottom:25.670035px;}
.ycb{bottom:25.834587px;}
.ybd{bottom:28.302859px;}
.ye4{bottom:39.163259px;}
.yeb{bottom:50.023658px;}
.ye3{bottom:60.884058px;}
.yea{bottom:71.744457px;}
.y4{bottom:73.380000px;}
.y2d{bottom:74.190000px;}
.ye2{bottom:82.604857px;}
.ye9{bottom:93.498166px;}
.y3{bottom:101.640000px;}
.ye1{bottom:104.523117px;}
.yaa{bottom:112.980000px;}
.y62{bottom:113.790000px;}
.ye8{bottom:115.389002px;}
.y110{bottom:118.200000px;}
.y187{bottom:125.130000px;}
.ye0{bottom:126.249401px;}
.ya9{bottom:130.530000px;}
.y95{bottom:130.980000px;}
.y61{bottom:131.340000px;}
.yb8{bottom:131.520000px;}
.y18e{bottom:134.580000px;}
.y10f{bottom:135.840000px;}
.ye7{bottom:137.109801px;}
.y186{bottom:142.680000px;}
.y2b{bottom:145.110000px;}
.ydf{bottom:147.970200px;}
.ya8{bottom:148.170000px;}
.y94{bottom:148.530000px;}
.y60{bottom:148.980000px;}
.yb7{bottom:149.160000px;}
.y158{bottom:152.130000px;}
.y10e{bottom:153.390000px;}
.y130{bottom:157.170000px;}
.ye6{bottom:158.830600px;}
.y185{bottom:160.320000px;}
.y2a{bottom:163.020000px;}
.ya7{bottom:165.720000px;}
.y93{bottom:166.170000px;}
.y5f{bottom:166.530000px;}
.yb6{bottom:166.710000px;}
.y157{bottom:169.680000px;}
.yde{bottom:169.690999px;}
.y10d{bottom:170.940000px;}
.y12f{bottom:174.720000px;}
.ye5{bottom:180.551399px;}
.y92{bottom:183.720000px;}
.y5e{bottom:184.170000px;}
.yb5{bottom:184.260000px;}
.y184{bottom:186.870000px;}
.y156{bottom:187.320000px;}
.y10c{bottom:188.580000px;}
.y12e{bottom:192.360000px;}
.y15d{bottom:196.320000px;}
.y29{bottom:200.010000px;}
.y91{bottom:201.270000px;}
.y5d{bottom:201.720000px;}
.yb4{bottom:201.900000px;}
.y183{bottom:204.510000px;}
.y10b{bottom:206.130000px;}
.y155{bottom:213.870000px;}
.y28{bottom:217.650000px;}
.y90{bottom:218.910000px;}
.y5c{bottom:219.270000px;}
.yb3{bottom:219.450000px;}
.y182{bottom:222.060000px;}
.y10a{bottom:223.680000px;}
.yaf{bottom:225.570000px;}
.y154{bottom:231.510000px;}
.y27{bottom:235.200000px;}
.ya6{bottom:236.460000px;}
.y12d{bottom:236.550000px;}
.yb2{bottom:237.090000px;}
.y109{bottom:241.320000px;}
.y181{bottom:248.610000px;}
.y153{bottom:249.060000px;}
.ya5{bottom:254.100000px;}
.y8f{bottom:254.460000px;}
.y5b{bottom:254.910000px;}
.y15c{bottom:258.060000px;}
.y108{bottom:258.870000px;}
.yb1{bottom:264.000000px;}
.y180{bottom:266.250000px;}
.y26{bottom:270.840000px;}
.y12c{bottom:271.650000px;}
.y8e{bottom:272.100000px;}
.y5a{bottom:272.460000px;}
.y152{bottom:275.610000px;}
.y107{bottom:276.510000px;}
.yae{bottom:281.100000px;}
.y25{bottom:288.390000px;}
.y12b{bottom:289.290000px;}
.y8d{bottom:289.650000px;}
.y59{bottom:290.100000px;}
.y17f{bottom:292.800000px;}
.y151{bottom:293.250000px;}
.y24{bottom:305.940000px;}
.y8c{bottom:307.200000px;}
.y58{bottom:307.650000px;}
.yb0{bottom:308.910000px;}
.y17e{bottom:310.440000px;}
.y150{bottom:310.800000px;}
.y106{bottom:312.060000px;}
.yec{bottom:312.639295px;}
.y12a{bottom:315.840000px;}
.y15b{bottom:319.800000px;}
.y23{bottom:323.580000px;}
.y8b{bottom:324.840000px;}
.y57{bottom:325.200000px;}
.y105{bottom:329.610000px;}
.y129{bottom:333.480000px;}
.y17d{bottom:336.990000px;}
.y14f{bottom:337.440000px;}
.y22{bottom:341.130000px;}
.y8a{bottom:342.390000px;}
.y56{bottom:342.840000px;}
.ydd{bottom:343.410976px;}
.y104{bottom:347.250000px;}
.y17c{bottom:354.540000px;}
.y14e{bottom:354.990000px;}
.y21{bottom:358.770000px;}
.y89{bottom:359.940000px;}
.y128{bottom:360.030000px;}
.y55{bottom:360.390000px;}
.y103{bottom:364.800000px;}
.y17b{bottom:372.180000px;}
.y1a0{bottom:372.540000px;}
.y20{bottom:376.320000px;}
.y88{bottom:377.580000px;}
.y14d{bottom:381.540000px;}
.y102{bottom:382.440000px;}
.y1f{bottom:393.870000px;}
.y87{bottom:395.130000px;}
.y54{bottom:395.940000px;}
.y17a{bottom:398.730000px;}
.y14c{bottom:399.180000px;}
.y101{bottom:399.990000px;}
.y127{bottom:404.220000px;}
.y1e{bottom:411.510000px;}
.y53{bottom:413.580000px;}
.y179{bottom:416.370000px;}
.y14b{bottom:416.730000px;}
.y100{bottom:417.540000px;}
.y126{bottom:421.770000px;}
.y86{bottom:430.770000px;}
.y52{bottom:431.130000px;}
.y19f{bottom:434.370000px;}
.yff{bottom:435.180000px;}
.y125{bottom:439.410000px;}
.y178{bottom:442.920000px;}
.y14a{bottom:443.370000px;}
.y1d{bottom:447.060000px;}
.y85{bottom:448.320000px;}
.y51{bottom:448.770000px;}
.yfe{bottom:452.730000px;}
.y124{bottom:456.960000px;}
.y177{bottom:460.470000px;}
.y149{bottom:460.920000px;}
.y1c{bottom:464.700000px;}
.y84{bottom:465.870000px;}
.y50{bottom:466.320000px;}
.yfd{bottom:470.400000px;}
.y176{bottom:478.140000px;}
.y15a{bottom:478.500000px;}
.y1b{bottom:482.280000px;}
.y83{bottom:483.540000px;}
.y4f{bottom:483.900000px;}
.y148{bottom:487.500000px;}
.y19e{bottom:496.140000px;}
.y1a{bottom:499.830000px;}
.y82{bottom:501.090000px;}
.y4e{bottom:501.540000px;}
.y175{bottom:504.690000px;}
.y147{bottom:505.140000px;}
.yfc{bottom:505.950000px;}
.y19{bottom:517.470000px;}
.y81{bottom:518.730000px;}
.y4d{bottom:519.090000px;}
.y174{bottom:522.330000px;}
.y146{bottom:522.690000px;}
.yfb{bottom:523.500000px;}
.y123{bottom:532.140000px;}
.y18{bottom:535.020000px;}
.y80{bottom:536.280000px;}
.y4c{bottom:536.730000px;}
.ydc{bottom:539.265665px;}
.y173{bottom:539.880000px;}
.y159{bottom:540.330000px;}
.yfa{bottom:541.140000px;}
.y145{bottom:549.330000px;}
.y17{bottom:552.660000px;}
.y7f{bottom:553.830000px;}
.ya4{bottom:554.280000px;}
.y19d{bottom:557.880000px;}
.yf9{bottom:558.690000px;}
.y122{bottom:559.050000px;}
.ydb{bottom:561.151015px;}
.y172{bottom:566.430000px;}
.y144{bottom:566.880000px;}
.y16{bottom:570.210000px;}
.y7e{bottom:571.470000px;}
.ya3{bottom:571.830000px;}
.y4b{bottom:572.280000px;}
.y19c{bottom:575.430000px;}
.yf8{bottom:576.330000px;}
.yda{bottom:582.871814px;}
.y171{bottom:584.070000px;}
.y143{bottom:584.430000px;}
.y15{bottom:587.760000px;}
.ya2{bottom:589.470000px;}
.y4a{bottom:589.830000px;}
.y1a1{bottom:593.430000px;}
.yf7{bottom:593.880000px;}
.y121{bottom:596.130000px;}
.y142{bottom:602.070000px;}
.yd9{bottom:604.592613px;}
.y14{bottom:605.400000px;}
.y7d{bottom:607.020000px;}
.y49{bottom:607.470000px;}
.y170{bottom:610.620000px;}
.y18d{bottom:611.070000px;}
.yf6{bottom:611.430000px;}
.y120{bottom:613.680000px;}
.y19b{bottom:619.620000px;}
.y13{bottom:622.950000px;}
.y7c{bottom:624.660000px;}
.y48{bottom:625.020000px;}
.yd8{bottom:626.313412px;}
.y16f{bottom:628.260000px;}
.y141{bottom:628.620000px;}
.y11f{bottom:631.230000px;}
.y19a{bottom:637.260000px;}
.y7b{bottom:642.210000px;}
.y47{bottom:642.660000px;}
.y16e{bottom:645.810000px;}
.y140{bottom:646.260000px;}
.yf5{bottom:647.070000px;}
.yd7{bottom:648.226188px;}
.y11e{bottom:648.870000px;}
.y18c{bottom:655.260000px;}
.y12{bottom:658.590000px;}
.y7a{bottom:659.760000px;}
.y46{bottom:660.210000px;}
.y13f{bottom:663.810000px;}
.yf4{bottom:664.620000px;}
.ya1{bottom:669.120000px;}
.yd6{bottom:669.946987px;}
.y16d{bottom:672.360000px;}
.y18b{bottom:672.810000px;}
.y11d{bottom:675.780000px;}
.y11{bottom:676.140000px;}
.y79{bottom:677.400000px;}
.y45{bottom:677.760000px;}
.y199{bottom:681.360000px;}
.yf3{bottom:682.260000px;}
.y16c{bottom:690.000000px;}
.y13e{bottom:690.360000px;}
.yd5{bottom:691.667786px;}
.y10{bottom:693.690000px;}
.y78{bottom:694.950000px;}
.y44{bottom:695.400000px;}
.y198{bottom:699.000000px;}
.yf2{bottom:699.810000px;}
.y13d{bottom:708.000000px;}
.yf{bottom:711.330000px;}
.y77{bottom:712.590000px;}
.y11c{bottom:712.770000px;}
.yd4{bottom:713.388585px;}
.y16b{bottom:716.550000px;}
.y18a{bottom:717.000000px;}
.ya0{bottom:717.360000px;}
.y13c{bottom:725.550000px;}
.y76{bottom:730.140000px;}
.y43{bottom:730.950000px;}
.y16a{bottom:734.190000px;}
.y189{bottom:734.550000px;}
.y9f{bottom:735.000000px;}
.yd3{bottom:735.273935px;}
.ye{bottom:738.240000px;}
.y11b{bottom:739.680000px;}
.y197{bottom:743.190000px;}
.y42{bottom:748.590000px;}
.y169{bottom:751.740000px;}
.y13b{bottom:752.190000px;}
.y9e{bottom:752.550000px;}
.yd2{bottom:756.994734px;}
.y75{bottom:757.050000px;}
.y196{bottom:760.740000px;}
.y41{bottom:766.140000px;}
.y13a{bottom:769.740000px;}
.y9d{bottom:770.190000px;}
.y11a{bottom:776.670000px;}
.y168{bottom:778.290000px;}
.yd1{bottom:778.715533px;}
.y188{bottom:778.740000px;}
.y40{bottom:783.690000px;}
.yd{bottom:786.480000px;}
.y195{bottom:787.290000px;}
.y9c{bottom:787.740000px;}
.y167{bottom:795.930000px;}
.y139{bottom:796.290000px;}
.yd0{bottom:800.436332px;}
.y3f{bottom:801.330000px;}
.y119{bottom:803.580000px;}
.y194{bottom:804.930000px;}
.y74{bottom:805.290000px;}
.y166{bottom:813.480000px;}
.y138{bottom:813.930000px;}
.y3e{bottom:818.880000px;}
.yc{bottom:822.030000px;}
.ycf{bottom:822.321682px;}
.y193{bottom:822.480000px;}
.y73{bottom:822.930000px;}
.y137{bottom:831.480000px;}
.y3d{bottom:836.520000px;}
.y165{bottom:840.030000px;}
.y72{bottom:840.480000px;}
.y118{bottom:840.930000px;}
.yce{bottom:844.069907px;}
.y192{bottom:849.030000px;}
.y3c{bottom:854.070000px;}
.y164{bottom:857.670000px;}
.yb{bottom:857.850000px;}
.y71{bottom:858.030000px;}
.ycd{bottom:865.790706px;}
.y191{bottom:866.670000px;}
.y3b{bottom:871.620000px;}
.y163{bottom:875.220000px;}
.y70{bottom:875.670000px;}
.y9b{bottom:876.030000px;}
.y190{bottom:884.220000px;}
.y3a{bottom:889.260000px;}
.y6f{bottom:893.220000px;}
.y9a{bottom:893.670000px;}
.ya{bottom:893.850000px;}
.y162{bottom:901.860000px;}
.yc9{bottom:905.612170px;}
.y117{bottom:906.810000px;}
.yf1{bottom:910.860000px;}
.y99{bottom:911.220000px;}
.y161{bottom:919.410000px;}
.y136{bottom:919.860000px;}
.y116{bottom:924.450000px;}
.y39{bottom:924.810000px;}
.yad{bottom:927.960000px;}
.yf0{bottom:928.410000px;}
.y6e{bottom:928.860000px;}
.y9{bottom:929.940000px;}
.y135{bottom:937.410000px;}
.y115{bottom:942.000000px;}
.y38{bottom:942.450000px;}
.yc4{bottom:945.598187px;}
.yef{bottom:945.960000px;}
.y6d{bottom:946.410000px;}
.y8{bottom:949.290000px;}
.y134{bottom:954.960000px;}
.y114{bottom:959.550000px;}
.y37{bottom:960.000000px;}
.yac{bottom:963.600000px;}
.y6c{bottom:963.960000px;}
.y18f{bottom:972.600000px;}
.y113{bottom:977.190000px;}
.y36{bottom:977.550000px;}
.yab{bottom:981.150000px;}
.y6b{bottom:981.600000px;}
.yc3{bottom:985.419651px;}
.y7{bottom:987.630000px;}
.y160{bottom:990.150000px;}
.y112{bottom:994.740000px;}
.y35{bottom:995.190000px;}
.y6a{bottom:999.150000px;}
.yc2{bottom:1007.305002px;}
.y15f{bottom:1007.790000px;}
.y6{bottom:1012.320000px;}
.y34{bottom:1012.770000px;}
.y69{bottom:1016.820000px;}
.yc1{bottom:1029.025801px;}
.y33{bottom:1030.320000px;}
.y68{bottom:1034.370000px;}
.y111{bottom:1039.230000px;}
.y133{bottom:1043.370000px;}
.y32{bottom:1047.960000px;}
.y5{bottom:1050.210000px;}
.ybf{bottom:1050.787737px;}
.y67{bottom:1051.920000px;}
.y98{bottom:1052.370000px;}
.y132{bottom:1060.920000px;}
.y31{bottom:1065.510000px;}
.y66{bottom:1069.560000px;}
.y97{bottom:1069.920000px;}
.y2{bottom:1071.450000px;}
.ybb{bottom:1072.508536px;}
.y1{bottom:1075.770000px;}
.y131{bottom:1078.560000px;}
.y30{bottom:1083.150000px;}
.yee{bottom:1087.110000px;}
.y96{bottom:1087.560000px;}
.y15e{bottom:1096.110000px;}
.y2f{bottom:1100.700000px;}
.y65{bottom:1105.110000px;}
.yb9{bottom:1116.114686px;}
.y64{bottom:1122.750000px;}
.y2e{bottom:1127.610000px;}
.y63{bottom:1140.300000px;}
.y2c{bottom:1194.300000px;}
.hd{height:0.575314px;}
.h2{height:17.815430px;}
.h10{height:21.720799px;}
.h13{height:21.753709px;}
.h15{height:21.885350px;}
.h18{height:21.918261px;}
.h3{height:32.566289px;}
.h16{height:39.821465px;}
.h17{height:39.986016px;}
.hf{height:43.606149px;}
.h4{height:44.538574px;}
.h7{height:50.902383px;}
.h9{height:55.779258px;}
.h12{height:59.431376px;}
.h8{height:59.503535px;}
.h1b{height:60.229708px;}
.ha{height:60.960938px;}
.h1c{height:61.793886px;}
.h11{height:64.599322px;}
.h5{height:65.204473px;}
.he{height:66.334826px;}
.h14{height:68.293375px;}
.hb{height:68.582109px;}
.hc{height:72.562500px;}
.h6{height:83.019902px;}
.h19{height:195.843719px;}
.h1a{height:804.050705px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:76.939304px;}
.w11{width:76.939305px;}
.wf{width:76.939306px;}
.wd{width:76.939307px;}
.wc{width:76.939308px;}
.w9{width:76.939309px;}
.w8{width:76.939311px;}
.w7{width:122.267093px;}
.w5{width:129.690216px;}
.w6{width:131.174841px;}
.w4{width:241.925084px;}
.wa{width:241.925085px;}
.wb{width:241.925086px;}
.we{width:241.925087px;}
.w10{width:241.925088px;}
.w12{width:241.925089px;}
.w14{width:241.925090px;}
.w16{width:333.834363px;}
.w15{width:368.159432px;}
.w3{width:701.993792px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.423113px;}
.xe{left:11.547072px;}
.x10{left:58.593188px;}
.x2{left:68.040000px;}
.x8{left:95.587500px;}
.x11{left:111.239987px;}
.x7{left:122.039987px;}
.x4{left:192.719987px;}
.x3{left:212.070000px;}
.xa{left:337.512583px;}
.xf{left:463.746930px;}
.xb{left:467.211047px;}
.xc{left:598.380388px;}
.xd{left:720.641982px;}
.x5{left:800.339987px;}
.x6{left:810.599987px;}
.x1{left:826.350000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v3{vertical-align:22.232737pt;}
.ls17{letter-spacing:-6.986667pt;}
.ls15{letter-spacing:-0.351043pt;}
.ls13{letter-spacing:-0.219200pt;}
.lse{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.158933pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.074667pt;}
.ls1b{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.002667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.177067pt;}
.ls14{letter-spacing:0.292536pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:5.356800pt;}
.ls11{letter-spacing:10.323200pt;}
.ls1a{letter-spacing:12.663680pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.wsb{word-spacing:-14.626801pt;}
.wsd{word-spacing:-14.275757pt;}
.wsc{word-spacing:-13.456657pt;}
.ws2{word-spacing:-12.880533pt;}
.ws8{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws3{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws9{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.wsa{word-spacing:-11.537600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-3.637867pt;}
._1{margin-left:-2.479680pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.952970pt;}
._4{width:1.856534pt;}
._3{width:2.846400pt;}
._7{width:3.743788pt;}
._6{width:4.684906pt;}
._9{width:5.777590pt;}
._e{width:6.708762pt;}
._a{width:7.639360pt;}
._b{width:8.713173pt;}
._d{width:9.612694pt;}
._8{width:10.542080pt;}
._10{width:13.224427pt;}
._5{width:14.268266pt;}
._f{width:15.657920pt;}
._14{width:17.237440pt;}
._13{width:18.704000pt;}
._11{width:19.879680pt;}
._12{width:20.900907pt;}
._17{width:21.963840pt;}
._16{width:27.143573pt;}
._15{width:28.056000pt;}
.fs0{font-size:16.000000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fsc{font-size:39.199826pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fsb{font-size:53.826626pt;}
.fsa{font-size:58.507203pt;}
.fs6{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:5.119380pt;}
.ycc{bottom:5.265648pt;}
.yba{bottom:5.704452pt;}
.ybe{bottom:5.850720pt;}
.yc0{bottom:5.996988pt;}
.yc5{bottom:13.749193pt;}
.yca{bottom:13.895461pt;}
.yc6{bottom:14.041729pt;}
.yed{bottom:14.627288pt;}
.ybc{bottom:15.504409pt;}
.yc7{bottom:22.817809pt;}
.ycb{bottom:22.964077pt;}
.ybd{bottom:25.158097pt;}
.ye4{bottom:34.811786pt;}
.yeb{bottom:44.465474pt;}
.ye3{bottom:54.119162pt;}
.yea{bottom:63.772851pt;}
.y4{bottom:65.226667pt;}
.y2d{bottom:65.946667pt;}
.ye2{bottom:73.426539pt;}
.ye9{bottom:83.109481pt;}
.y3{bottom:90.346667pt;}
.ye1{bottom:92.909438pt;}
.yaa{bottom:100.426667pt;}
.y62{bottom:101.146667pt;}
.ye8{bottom:102.568002pt;}
.y110{bottom:105.066667pt;}
.y187{bottom:111.226667pt;}
.ye0{bottom:112.221690pt;}
.ya9{bottom:116.026667pt;}
.y95{bottom:116.426667pt;}
.y61{bottom:116.746667pt;}
.yb8{bottom:116.906667pt;}
.y18e{bottom:119.626667pt;}
.y10f{bottom:120.746667pt;}
.ye7{bottom:121.875379pt;}
.y186{bottom:126.826667pt;}
.y2b{bottom:128.986667pt;}
.ydf{bottom:131.529067pt;}
.ya8{bottom:131.706667pt;}
.y94{bottom:132.026667pt;}
.y60{bottom:132.426667pt;}
.yb7{bottom:132.586667pt;}
.y158{bottom:135.226667pt;}
.y10e{bottom:136.346667pt;}
.y130{bottom:139.706667pt;}
.ye6{bottom:141.182755pt;}
.y185{bottom:142.506667pt;}
.y2a{bottom:144.906667pt;}
.ya7{bottom:147.306667pt;}
.y93{bottom:147.706667pt;}
.y5f{bottom:148.026667pt;}
.yb6{bottom:148.186667pt;}
.y157{bottom:150.826667pt;}
.yde{bottom:150.836444pt;}
.y10d{bottom:151.946667pt;}
.y12f{bottom:155.306667pt;}
.ye5{bottom:160.490132pt;}
.y92{bottom:163.306667pt;}
.y5e{bottom:163.706667pt;}
.yb5{bottom:163.786667pt;}
.y184{bottom:166.106667pt;}
.y156{bottom:166.506667pt;}
.y10c{bottom:167.626667pt;}
.y12e{bottom:170.986667pt;}
.y15d{bottom:174.506667pt;}
.y29{bottom:177.786667pt;}
.y91{bottom:178.906667pt;}
.y5d{bottom:179.306667pt;}
.yb4{bottom:179.466667pt;}
.y183{bottom:181.786667pt;}
.y10b{bottom:183.226667pt;}
.y155{bottom:190.106667pt;}
.y28{bottom:193.466667pt;}
.y90{bottom:194.586667pt;}
.y5c{bottom:194.906667pt;}
.yb3{bottom:195.066667pt;}
.y182{bottom:197.386667pt;}
.y10a{bottom:198.826667pt;}
.yaf{bottom:200.506667pt;}
.y154{bottom:205.786667pt;}
.y27{bottom:209.066667pt;}
.ya6{bottom:210.186667pt;}
.y12d{bottom:210.266667pt;}
.yb2{bottom:210.746667pt;}
.y109{bottom:214.506667pt;}
.y181{bottom:220.986667pt;}
.y153{bottom:221.386667pt;}
.ya5{bottom:225.866667pt;}
.y8f{bottom:226.186667pt;}
.y5b{bottom:226.586667pt;}
.y15c{bottom:229.386667pt;}
.y108{bottom:230.106667pt;}
.yb1{bottom:234.666667pt;}
.y180{bottom:236.666667pt;}
.y26{bottom:240.746667pt;}
.y12c{bottom:241.466667pt;}
.y8e{bottom:241.866667pt;}
.y5a{bottom:242.186667pt;}
.y152{bottom:244.986667pt;}
.y107{bottom:245.786667pt;}
.yae{bottom:249.866667pt;}
.y25{bottom:256.346667pt;}
.y12b{bottom:257.146667pt;}
.y8d{bottom:257.466667pt;}
.y59{bottom:257.866667pt;}
.y17f{bottom:260.266667pt;}
.y151{bottom:260.666667pt;}
.y24{bottom:271.946667pt;}
.y8c{bottom:273.066667pt;}
.y58{bottom:273.466667pt;}
.yb0{bottom:274.586667pt;}
.y17e{bottom:275.946667pt;}
.y150{bottom:276.266667pt;}
.y106{bottom:277.386667pt;}
.yec{bottom:277.901596pt;}
.y12a{bottom:280.746667pt;}
.y15b{bottom:284.266667pt;}
.y23{bottom:287.626667pt;}
.y8b{bottom:288.746667pt;}
.y57{bottom:289.066667pt;}
.y105{bottom:292.986667pt;}
.y129{bottom:296.426667pt;}
.y17d{bottom:299.546667pt;}
.y14f{bottom:299.946667pt;}
.y22{bottom:303.226667pt;}
.y8a{bottom:304.346667pt;}
.y56{bottom:304.746667pt;}
.ydd{bottom:305.254201pt;}
.y104{bottom:308.666667pt;}
.y17c{bottom:315.146667pt;}
.y14e{bottom:315.546667pt;}
.y21{bottom:318.906667pt;}
.y89{bottom:319.946667pt;}
.y128{bottom:320.026667pt;}
.y55{bottom:320.346667pt;}
.y103{bottom:324.266667pt;}
.y17b{bottom:330.826667pt;}
.y1a0{bottom:331.146667pt;}
.y20{bottom:334.506667pt;}
.y88{bottom:335.626667pt;}
.y14d{bottom:339.146667pt;}
.y102{bottom:339.946667pt;}
.y1f{bottom:350.106667pt;}
.y87{bottom:351.226667pt;}
.y54{bottom:351.946667pt;}
.y17a{bottom:354.426667pt;}
.y14c{bottom:354.826667pt;}
.y101{bottom:355.546667pt;}
.y127{bottom:359.306667pt;}
.y1e{bottom:365.786667pt;}
.y53{bottom:367.626667pt;}
.y179{bottom:370.106667pt;}
.y14b{bottom:370.426667pt;}
.y100{bottom:371.146667pt;}
.y126{bottom:374.906667pt;}
.y86{bottom:382.906667pt;}
.y52{bottom:383.226667pt;}
.y19f{bottom:386.106667pt;}
.yff{bottom:386.826667pt;}
.y125{bottom:390.586667pt;}
.y178{bottom:393.706667pt;}
.y14a{bottom:394.106667pt;}
.y1d{bottom:397.386667pt;}
.y85{bottom:398.506667pt;}
.y51{bottom:398.906667pt;}
.yfe{bottom:402.426667pt;}
.y124{bottom:406.186667pt;}
.y177{bottom:409.306667pt;}
.y149{bottom:409.706667pt;}
.y1c{bottom:413.066667pt;}
.y84{bottom:414.106667pt;}
.y50{bottom:414.506667pt;}
.yfd{bottom:418.133333pt;}
.y176{bottom:425.013333pt;}
.y15a{bottom:425.333333pt;}
.y1b{bottom:428.693333pt;}
.y83{bottom:429.813333pt;}
.y4f{bottom:430.133333pt;}
.y148{bottom:433.333333pt;}
.y19e{bottom:441.013333pt;}
.y1a{bottom:444.293333pt;}
.y82{bottom:445.413333pt;}
.y4e{bottom:445.813333pt;}
.y175{bottom:448.613333pt;}
.y147{bottom:449.013333pt;}
.yfc{bottom:449.733333pt;}
.y19{bottom:459.973333pt;}
.y81{bottom:461.093333pt;}
.y4d{bottom:461.413333pt;}
.y174{bottom:464.293333pt;}
.y146{bottom:464.613333pt;}
.yfb{bottom:465.333333pt;}
.y123{bottom:473.013333pt;}
.y18{bottom:475.573333pt;}
.y80{bottom:476.693333pt;}
.y4c{bottom:477.093333pt;}
.ydc{bottom:479.347258pt;}
.y173{bottom:479.893333pt;}
.y159{bottom:480.293333pt;}
.yfa{bottom:481.013333pt;}
.y145{bottom:488.293333pt;}
.y17{bottom:491.253333pt;}
.y7f{bottom:492.293333pt;}
.ya4{bottom:492.693333pt;}
.y19d{bottom:495.893333pt;}
.yf9{bottom:496.613333pt;}
.y122{bottom:496.933333pt;}
.ydb{bottom:498.800902pt;}
.y172{bottom:503.493333pt;}
.y144{bottom:503.893333pt;}
.y16{bottom:506.853333pt;}
.y7e{bottom:507.973333pt;}
.ya3{bottom:508.293333pt;}
.y4b{bottom:508.693333pt;}
.y19c{bottom:511.493333pt;}
.yf8{bottom:512.293333pt;}
.yda{bottom:518.108279pt;}
.y171{bottom:519.173333pt;}
.y143{bottom:519.493333pt;}
.y15{bottom:522.453333pt;}
.ya2{bottom:523.973333pt;}
.y4a{bottom:524.293333pt;}
.y1a1{bottom:527.493333pt;}
.yf7{bottom:527.893333pt;}
.y121{bottom:529.893333pt;}
.y142{bottom:535.173333pt;}
.yd9{bottom:537.415656pt;}
.y14{bottom:538.133333pt;}
.y7d{bottom:539.573333pt;}
.y49{bottom:539.973333pt;}
.y170{bottom:542.773333pt;}
.y18d{bottom:543.173333pt;}
.yf6{bottom:543.493333pt;}
.y120{bottom:545.493333pt;}
.y19b{bottom:550.773333pt;}
.y13{bottom:553.733333pt;}
.y7c{bottom:555.253333pt;}
.y48{bottom:555.573333pt;}
.yd8{bottom:556.723033pt;}
.y16f{bottom:558.453333pt;}
.y141{bottom:558.773333pt;}
.y11f{bottom:561.093333pt;}
.y19a{bottom:566.453333pt;}
.y7b{bottom:570.853333pt;}
.y47{bottom:571.253333pt;}
.y16e{bottom:574.053333pt;}
.y140{bottom:574.453333pt;}
.yf5{bottom:575.173333pt;}
.yd7{bottom:576.201056pt;}
.y11e{bottom:576.773333pt;}
.y18c{bottom:582.453333pt;}
.y12{bottom:585.413333pt;}
.y7a{bottom:586.453333pt;}
.y46{bottom:586.853333pt;}
.y13f{bottom:590.053333pt;}
.yf4{bottom:590.773333pt;}
.ya1{bottom:594.773333pt;}
.yd6{bottom:595.508433pt;}
.y16d{bottom:597.653333pt;}
.y18b{bottom:598.053333pt;}
.y11d{bottom:600.693333pt;}
.y11{bottom:601.013333pt;}
.y79{bottom:602.133333pt;}
.y45{bottom:602.453333pt;}
.y199{bottom:605.653333pt;}
.yf3{bottom:606.453333pt;}
.y16c{bottom:613.333333pt;}
.y13e{bottom:613.653333pt;}
.yd5{bottom:614.815809pt;}
.y10{bottom:616.613333pt;}
.y78{bottom:617.733333pt;}
.y44{bottom:618.133333pt;}
.y198{bottom:621.333333pt;}
.yf2{bottom:622.053333pt;}
.y13d{bottom:629.333333pt;}
.yf{bottom:632.293333pt;}
.y77{bottom:633.413333pt;}
.y11c{bottom:633.573333pt;}
.yd4{bottom:634.123186pt;}
.y16b{bottom:636.933333pt;}
.y18a{bottom:637.333333pt;}
.ya0{bottom:637.653333pt;}
.y13c{bottom:644.933333pt;}
.y76{bottom:649.013333pt;}
.y43{bottom:649.733333pt;}
.y16a{bottom:652.613333pt;}
.y189{bottom:652.933333pt;}
.y9f{bottom:653.333333pt;}
.yd3{bottom:653.576831pt;}
.ye{bottom:656.213333pt;}
.y11b{bottom:657.493333pt;}
.y197{bottom:660.613333pt;}
.y42{bottom:665.413333pt;}
.y169{bottom:668.213333pt;}
.y13b{bottom:668.613333pt;}
.y9e{bottom:668.933333pt;}
.yd2{bottom:672.884208pt;}
.y75{bottom:672.933333pt;}
.y196{bottom:676.213333pt;}
.y41{bottom:681.013333pt;}
.y13a{bottom:684.213333pt;}
.y9d{bottom:684.613333pt;}
.y11a{bottom:690.373333pt;}
.y168{bottom:691.813333pt;}
.yd1{bottom:692.191585pt;}
.y188{bottom:692.213333pt;}
.y40{bottom:696.613333pt;}
.yd{bottom:699.093333pt;}
.y195{bottom:699.813333pt;}
.y9c{bottom:700.213333pt;}
.y167{bottom:707.493333pt;}
.y139{bottom:707.813333pt;}
.yd0{bottom:711.498962pt;}
.y3f{bottom:712.293333pt;}
.y119{bottom:714.293333pt;}
.y194{bottom:715.493333pt;}
.y74{bottom:715.813333pt;}
.y166{bottom:723.093333pt;}
.y138{bottom:723.493333pt;}
.y3e{bottom:727.893333pt;}
.yc{bottom:730.693333pt;}
.ycf{bottom:730.952607pt;}
.y193{bottom:731.093333pt;}
.y73{bottom:731.493333pt;}
.y137{bottom:739.093333pt;}
.y3d{bottom:743.573333pt;}
.y165{bottom:746.693333pt;}
.y72{bottom:747.093333pt;}
.y118{bottom:747.493333pt;}
.yce{bottom:750.284361pt;}
.y192{bottom:754.693333pt;}
.y3c{bottom:759.173333pt;}
.y164{bottom:762.373333pt;}
.yb{bottom:762.533333pt;}
.y71{bottom:762.693333pt;}
.ycd{bottom:769.591738pt;}
.y191{bottom:770.373333pt;}
.y3b{bottom:774.773333pt;}
.y163{bottom:777.973333pt;}
.y70{bottom:778.373333pt;}
.y9b{bottom:778.693333pt;}
.y190{bottom:785.973333pt;}
.y3a{bottom:790.453333pt;}
.y6f{bottom:793.973333pt;}
.y9a{bottom:794.373333pt;}
.ya{bottom:794.533333pt;}
.y162{bottom:801.653333pt;}
.yc9{bottom:804.988596pt;}
.y117{bottom:806.053333pt;}
.yf1{bottom:809.653333pt;}
.y99{bottom:809.973333pt;}
.y161{bottom:817.253333pt;}
.y136{bottom:817.653333pt;}
.y116{bottom:821.733333pt;}
.y39{bottom:822.053333pt;}
.yad{bottom:824.853333pt;}
.yf0{bottom:825.253333pt;}
.y6e{bottom:825.653333pt;}
.y9{bottom:826.613333pt;}
.y135{bottom:833.253333pt;}
.y115{bottom:837.333333pt;}
.y38{bottom:837.733333pt;}
.yc4{bottom:840.531721pt;}
.yef{bottom:840.853333pt;}
.y6d{bottom:841.253333pt;}
.y8{bottom:843.813333pt;}
.y134{bottom:848.853333pt;}
.y114{bottom:852.933333pt;}
.y37{bottom:853.333333pt;}
.yac{bottom:856.533333pt;}
.y6c{bottom:856.853333pt;}
.y18f{bottom:864.533333pt;}
.y113{bottom:868.613333pt;}
.y36{bottom:868.933333pt;}
.yab{bottom:872.133333pt;}
.y6b{bottom:872.533333pt;}
.yc3{bottom:875.928579pt;}
.y7{bottom:877.893333pt;}
.y160{bottom:880.133333pt;}
.y112{bottom:884.213333pt;}
.y35{bottom:884.613333pt;}
.y6a{bottom:888.133333pt;}
.yc2{bottom:895.382224pt;}
.y15f{bottom:895.813333pt;}
.y6{bottom:899.840000pt;}
.y34{bottom:900.240000pt;}
.y69{bottom:903.840000pt;}
.yc1{bottom:914.689601pt;}
.y33{bottom:915.840000pt;}
.y68{bottom:919.440000pt;}
.y111{bottom:923.760000pt;}
.y133{bottom:927.440000pt;}
.y32{bottom:931.520000pt;}
.y5{bottom:933.520000pt;}
.ybf{bottom:934.033544pt;}
.y67{bottom:935.040000pt;}
.y98{bottom:935.440000pt;}
.y132{bottom:943.040000pt;}
.y31{bottom:947.120000pt;}
.y66{bottom:950.720000pt;}
.y97{bottom:951.040000pt;}
.y2{bottom:952.400000pt;}
.ybb{bottom:953.340921pt;}
.y1{bottom:956.240000pt;}
.y131{bottom:958.720000pt;}
.y30{bottom:962.800000pt;}
.yee{bottom:966.320000pt;}
.y96{bottom:966.720000pt;}
.y15e{bottom:974.320000pt;}
.y2f{bottom:978.400000pt;}
.y65{bottom:982.320000pt;}
.yb9{bottom:992.101943pt;}
.y64{bottom:998.000000pt;}
.y2e{bottom:1002.320000pt;}
.y63{bottom:1013.600000pt;}
.y2c{bottom:1061.600000pt;}
.hd{height:0.511390pt;}
.h2{height:15.835938pt;}
.h10{height:19.307377pt;}
.h13{height:19.336630pt;}
.h15{height:19.453645pt;}
.h18{height:19.482898pt;}
.h3{height:28.947812pt;}
.h16{height:35.396858pt;}
.h17{height:35.543126pt;}
.hf{height:38.761022pt;}
.h4{height:39.589844pt;}
.h7{height:45.246562pt;}
.h9{height:49.581562pt;}
.h12{height:52.827890pt;}
.h8{height:52.892031pt;}
.h1b{height:53.537518pt;}
.ha{height:54.187500pt;}
.h1c{height:54.927899pt;}
.h11{height:57.421620pt;}
.h5{height:57.959531pt;}
.he{height:58.964290pt;}
.h14{height:60.705222pt;}
.hb{height:60.961875pt;}
.hc{height:64.500000pt;}
.h6{height:73.795469pt;}
.h19{height:174.083306pt;}
.h1a{height:714.711737pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:68.390493pt;}
.w11{width:68.390494pt;}
.wf{width:68.390495pt;}
.wd{width:68.390495pt;}
.wc{width:68.390496pt;}
.w9{width:68.390497pt;}
.w8{width:68.390498pt;}
.w7{width:108.681860pt;}
.w5{width:115.280192pt;}
.w6{width:116.599858pt;}
.w4{width:215.044519pt;}
.wa{width:215.044520pt;}
.wb{width:215.044521pt;}
.we{width:215.044522pt;}
.w10{width:215.044523pt;}
.w12{width:215.044524pt;}
.w14{width:215.044525pt;}
.w16{width:296.741656pt;}
.w15{width:327.252829pt;}
.w3{width:623.994482pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.598323pt;}
.xe{left:10.264064pt;}
.x10{left:52.082834pt;}
.x2{left:60.480000pt;}
.x8{left:84.966667pt;}
.x11{left:98.879988pt;}
.x7{left:108.479988pt;}
.x4{left:171.306655pt;}
.x3{left:188.506667pt;}
.xa{left:300.011185pt;}
.xf{left:412.219493pt;}
.xb{left:415.298708pt;}
.xc{left:531.893678pt;}
.xd{left:640.570650pt;}
.x5{left:711.413322pt;}
.x6{left:720.533322pt;}
.x1{left:734.533333pt;}
}




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