
    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_bdc3dfdce1dc64a55c841144.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_4528d39aef3ae5250e8ba39c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_691f40112dc055d474c5ddb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_819b4fb93036d0784fad9a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_ddcbfdecb3a8083c6944581b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_0633a4ee83028eaf4b68594b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.702160px;}
.lsd{letter-spacing:-0.480960px;}
.ls10{letter-spacing:-0.420840px;}
.ls6{letter-spacing:-0.300600px;}
.lsc{letter-spacing:-0.240480px;}
.ls9{letter-spacing:-0.180360px;}
.ls4{letter-spacing:-0.120240px;}
.ls8{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.060120px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.012024px;}
.ls12{letter-spacing:0.018036px;}
.ls1c{letter-spacing:0.024048px;}
.ls1d{letter-spacing:0.042084px;}
.ls5{letter-spacing:0.060120px;}
.ls15{letter-spacing:0.065880px;}
.ls1b{letter-spacing:0.078156px;}
.ls19{letter-spacing:0.084168px;}
.ls17{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.096192px;}
.ls2{letter-spacing:0.108216px;}
.ls11{letter-spacing:0.114228px;}
.ls0{letter-spacing:0.120240px;}
.lsf{letter-spacing:0.132264px;}
.ls13{letter-spacing:0.138276px;}
.lsa{letter-spacing:0.150300px;}
.ls1{letter-spacing:0.180240px;}
.lse{letter-spacing:0.180360px;}
.ls14{letter-spacing:0.231120px;}
.ls1a{letter-spacing:7.755480px;}
.ls16{letter-spacing:41.242320px;}
.ls3d{letter-spacing:212.584320px;}
.ls2f{letter-spacing:214.748640px;}
.ls22{letter-spacing:246.071160px;}
.ls40{letter-spacing:262.664280px;}
.ls42{letter-spacing:279.558000px;}
.ls30{letter-spacing:296.151120px;}
.ls2e{letter-spacing:304.387560px;}
.ls20{letter-spacing:313.044840px;}
.ls24{letter-spacing:329.577840px;}
.ls28{letter-spacing:346.170960px;}
.ls3e{letter-spacing:354.828240px;}
.ls3c{letter-spacing:358.074720px;}
.ls36{letter-spacing:362.703960px;}
.ls4a{letter-spacing:377.854200px;}
.ls2b{letter-spacing:394.387200px;}
.ls43{letter-spacing:548.114040px;}
.ls41{letter-spacing:561.460680px;}
.ls47{letter-spacing:619.777080px;}
.ls27{letter-spacing:786.429720px;}
.ls3f{letter-spacing:821.359440px;}
.ls3b{letter-spacing:853.403400px;}
.ls31{letter-spacing:1043.502840px;}
.ls2c{letter-spacing:1106.869320px;}
.ls29{letter-spacing:1150.396200px;}
.ls34{letter-spacing:1203.301800px;}
.ls21{letter-spacing:1215.205560px;}
.ls49{letter-spacing:1220.255640px;}
.ls23{letter-spacing:1223.862840px;}
.ls25{letter-spacing:1230.716520px;}
.ls3a{letter-spacing:1233.542160px;}
.ls44{letter-spacing:1236.788640px;}
.ls2a{letter-spacing:1246.888800px;}
.ls26{letter-spacing:1296.908640px;}
.ls32{letter-spacing:1303.401600px;}
.ls48{letter-spacing:1317.108960px;}
.ls46{letter-spacing:1330.034760px;}
.ls4b{letter-spacing:1357.028640px;}
.ls45{letter-spacing:1370.375280px;}
.ls33{letter-spacing:1380.114720px;}
.ls39{letter-spacing:1383.301080px;}
.ls1f{letter-spacing:1430.134560px;}
.ls38{letter-spacing:1450.274760px;}
.ls37{letter-spacing:1473.661440px;}
.ls2d{letter-spacing:1501.737480px;}
.ls35{letter-spacing:1530.234360px;}
.ls1e{letter-spacing:1630.274040px;}
.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;}
}
.ws17{word-spacing:-16.893720px;}
.ws11{word-spacing:-16.833600px;}
.ws2{word-spacing:-16.773480px;}
.ws1{word-spacing:-16.713360px;}
.wsb{word-spacing:-16.653240px;}
.ws4{word-spacing:-16.593360px;}
.ws0{word-spacing:-16.593120px;}
.wsc{word-spacing:-16.533000px;}
.ws10{word-spacing:-16.472880px;}
.wsf{word-spacing:-16.412760px;}
.ws16{word-spacing:-16.292520px;}
.ws12{word-spacing:-16.232400px;}
.ws3{word-spacing:-10.808640px;}
.wse{word-spacing:-0.541080px;}
.ws15{word-spacing:-0.420840px;}
.ws18{word-spacing:-0.300600px;}
.ws1c{word-spacing:-0.240480px;}
.ws6{word-spacing:-0.180360px;}
.ws8{word-spacing:-0.120240px;}
.ws1b{word-spacing:-0.065880px;}
.ws9{word-spacing:-0.060120px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.060120px;}
.wsa{word-spacing:0.120240px;}
.ws13{word-spacing:0.180360px;}
.ws7{word-spacing:0.300600px;}
.ws1a{word-spacing:0.360720px;}
.ws19{word-spacing:0.420840px;}
.ws14{word-spacing:0.480960px;}
._0{margin-left:-1.082160px;}
._1{width:1.072692px;}
._3{width:536.270400px;}
._6{width:1139.935320px;}
._5{width:1240.335720px;}
._2{width:1363.160880px;}
._4{width:1420.094520px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y18{bottom:75.599010px;}
.y1{bottom:113.760000px;}
.y34{bottom:139.446630px;}
.y128{bottom:139.462470px;}
.y13f{bottom:144.940770px;}
.y4d{bottom:146.768040px;}
.yc1{bottom:157.233060px;}
.y7e{bottom:157.428000px;}
.yb1{bottom:157.468410px;}
.y9b{bottom:158.933250px;}
.yfa{bottom:159.016500px;}
.y63{bottom:164.851920px;}
.yd7{bottom:166.471560px;}
.y15c{bottom:167.040000px;}
.y33{bottom:173.910420px;}
.y127{bottom:173.926260px;}
.y13e{bottom:179.855460px;}
.y15{bottom:187.296030px;}
.y4c{bottom:190.324980px;}
.y7d{bottom:191.891790px;}
.yb0{bottom:191.932200px;}
.y9a{bottom:193.397040px;}
.yf9{bottom:193.480290px;}
.y62{bottom:199.405890px;}
.yc0{bottom:200.935170px;}
.yd6{bottom:200.935350px;}
.y15b{bottom:202.680000px;}
.y32{bottom:208.464390px;}
.y134{bottom:208.480230px;}
.y13d{bottom:214.679970px;}
.y126{bottom:217.483200px;}
.y7c{bottom:226.445760px;}
.yaf{bottom:226.486170px;}
.y14{bottom:227.070000px;}
.y99{bottom:227.860830px;}
.yf8{bottom:227.944080px;}
.y4b{bottom:233.881920px;}
.ybf{bottom:235.489140px;}
.yd5{bottom:235.489320px;}
.y15a{bottom:238.320000px;}
.y61{bottom:242.782470px;}
.y11d{bottom:242.853930px;}
.y31{bottom:242.928180px;}
.y133{bottom:242.944020px;}
.y13c{bottom:249.594660px;}
.y125{bottom:251.946990px;}
.yae{bottom:260.949960px;}
.y98{bottom:262.414800px;}
.yf7{bottom:262.498050px;}
.y4a{bottom:268.345710px;}
.y7b{bottom:269.912520px;}
.ybe{bottom:269.952930px;}
.yd4{bottom:269.953110px;}
.y13{bottom:270.540000px;}
.y159{bottom:273.960000px;}
.y11c{bottom:277.317720px;}
.y30{bottom:277.391970px;}
.y132{bottom:277.407810px;}
.y105{bottom:278.865720px;}
.y13b{bottom:284.419170px;}
.y60{bottom:286.339410px;}
.y124{bottom:286.410780px;}
.yad{bottom:295.413750px;}
.y97{bottom:296.878590px;}
.yf6{bottom:296.961840px;}
.y7a{bottom:304.376310px;}
.ybd{bottom:304.416720px;}
.yd3{bottom:304.416900px;}
.y158{bottom:309.510000px;}
.y11b{bottom:311.871690px;}
.y49{bottom:311.902650px;}
.y2f{bottom:311.945940px;}
.y104{bottom:313.419690px;}
.y12{bottom:314.010000px;}
.y13a{bottom:319.333860px;}
.y5f{bottom:320.893380px;}
.y131{bottom:320.964750px;}
.y123{bottom:329.967720px;}
.y96{bottom:331.342380px;}
.yf5{bottom:331.425630px;}
.yec{bottom:338.880510px;}
.y79{bottom:338.930280px;}
.yac{bottom:338.970690px;}
.y157{bottom:345.150000px;}
.y2e{bottom:346.409730px;}
.y103{bottom:347.973660px;}
.yd2{bottom:347.973840px;}
.y139{bottom:354.158370px;}
.y11a{bottom:355.338450px;}
.y5e{bottom:355.357170px;}
.y48{bottom:355.369410px;}
.y130{bottom:355.428540px;}
.y11{bottom:357.480000px;}
.y122{bottom:364.431510px;}
.y95{bottom:365.896350px;}
.y78{bottom:373.303890px;}
.yab{bottom:373.434480px;}
.yf4{bottom:374.982570px;}
.y156{bottom:380.790000px;}
.y2d{bottom:380.873520px;}
.yeb{bottom:382.437450px;}
.yd1{bottom:382.437630px;}
.y138{bottom:389.073060px;}
.y119{bottom:389.802240px;}
.y47{bottom:389.833200px;}
.y12f{bottom:389.892330px;}
.y5d{bottom:398.823930px;}
.y121{bottom:398.895300px;}
.y94{bottom:400.360140px;}
.y10{bottom:401.040000px;}
.yaa{bottom:407.898270px;}
.yf3{bottom:409.446360px;}
.y2c{bottom:415.337310px;}
.y155{bottom:416.430000px;}
.y77{bottom:416.860830px;}
.ybc{bottom:416.901240px;}
.yd0{bottom:416.901420px;}
.y118{bottom:424.266030px;}
.y46{bottom:424.296990px;}
.yea{bottom:425.904210px;}
.y137{bottom:432.630000px;}
.y5c{bottom:433.287720px;}
.y120{bottom:433.359090px;}
.y93{bottom:434.823930px;}
.ya9{bottom:442.362060px;}
.yf2{bottom:443.910150px;}
.yf{bottom:444.516900px;}
.y170{bottom:449.018550px;}
.y2b{bottom:449.891280px;}
.ybb{bottom:451.365030px;}
.ycf{bottom:451.365210px;}
.y154{bottom:452.070000px;}
.y117{bottom:458.820000px;}
.y76{bottom:460.327590px;}
.ye9{bottom:460.368000px;}
.y136{bottom:467.460000px;}
.y5b{bottom:467.841690px;}
.y45{bottom:467.853930px;}
.y12e{bottom:467.913060px;}
.y92{bottom:469.287720px;}
.ya8{bottom:476.916030px;}
.yf1{bottom:478.373940px;}
.y2a{bottom:484.355070px;}
.yba{bottom:485.919000px;}
.yce{bottom:485.919180px;}
.y153{bottom:487.620000px;}
.y16f{bottom:492.575490px;}
.y75{bottom:494.881560px;}
.ye8{bottom:494.921970px;}
.y116{bottom:502.290000px;}
.y5a{bottom:502.305480px;}
.y44{bottom:502.317720px;}
.y12d{bottom:502.376850px;}
.ya7{bottom:511.379820px;}
.y91{bottom:512.844660px;}
.yf0{bottom:512.927910px;}
.y29{bottom:518.818860px;}
.yb9{bottom:520.382790px;}
.ycd{bottom:520.382970px;}
.y152{bottom:523.260000px;}
.ye{bottom:526.326210px;}
.y16e{bottom:527.400000px;}
.y74{bottom:529.345350px;}
.ye7{bottom:529.385760px;}
.y115{bottom:536.760000px;}
.y59{bottom:536.769270px;}
.y43{bottom:536.781510px;}
.y12c{bottom:536.840640px;}
.ya6{bottom:545.843610px;}
.y90{bottom:547.308450px;}
.yef{bottom:547.391700px;}
.y102{bottom:554.846580px;}
.ycc{bottom:554.846760px;}
.y151{bottom:558.900000px;}
.yd{bottom:560.796210px;}
.y28{bottom:562.285620px;}
.y16d{bottom:563.040000px;}
.y73{bottom:563.809140px;}
.yb8{bottom:563.849550px;}
.y114{bottom:571.320000px;}
.y58{bottom:571.323240px;}
.y42{bottom:571.335480px;}
.ya5{bottom:580.397580px;}
.y8f{bottom:581.772240px;}
.yee{bottom:581.855490px;}
.y101{bottom:589.400550px;}
.y150{bottom:594.540000px;}
.yc{bottom:595.266030px;}
.y72{bottom:598.363110px;}
.yb7{bottom:598.403520px;}
.ycb{bottom:598.403700px;}
.y16c{bottom:598.680000px;}
.y27{bottom:605.752380px;}
.y113{bottom:605.790000px;}
.y41{bottom:605.799270px;}
.ya4{bottom:614.861370px;}
.y57{bottom:614.861550px;}
.y8e{bottom:616.326210px;}
.yed{bottom:616.409460px;}
.y100{bottom:623.864340px;}
.yb{bottom:629.864460px;}
.y14f{bottom:630.180000px;}
.y71{bottom:632.826900px;}
.yb6{bottom:632.867310px;}
.yca{bottom:632.867490px;}
.y16b{bottom:634.320000px;}
.y112{bottom:640.260000px;}
.y40{bottom:640.263060px;}
.ye6{bottom:641.870280px;}
.ye1{bottom:649.234980px;}
.y26{bottom:649.309320px;}
.y135{bottom:649.325160px;}
.y56{bottom:649.325340px;}
.y8d{bottom:650.873250px;}
.ya3{bottom:658.237950px;}
.yff{bottom:658.328130px;}
.y14e{bottom:665.820000px;}
.y70{bottom:667.290690px;}
.yb5{bottom:667.331100px;}
.yc9{bottom:667.331280px;}
.y16a{bottom:669.870000px;}
.ya{bottom:673.241100px;}
.ye5{bottom:676.334070px;}
.y111{bottom:683.844660px;}
.y25{bottom:683.863290px;}
.y3f{bottom:683.879310px;}
.y8c{bottom:685.337040px;}
.ye0{bottom:692.882100px;}
.y14d{bottom:701.370000px;}
.y6f{bottom:701.844660px;}
.ya2{bottom:701.885070px;}
.yc8{bottom:701.885250px;}
.y169{bottom:705.510000px;}
.ye4{bottom:710.888040px;}
.y110{bottom:718.308450px;}
.y24{bottom:718.327080px;}
.y3e{bottom:718.343100px;}
.y8b{bottom:719.891010px;}
.yfe{bottom:727.345890px;}
.y55{bottom:727.346070px;}
.y6e{bottom:736.308450px;}
.ydf{bottom:736.348860px;}
.yc7{bottom:736.349040px;}
.y14c{bottom:737.010000px;}
.y168{bottom:741.150000px;}
.yb4{bottom:745.261650px;}
.ya1{bottom:745.351830px;}
.y10f{bottom:752.772240px;}
.y23{bottom:752.790870px;}
.y3d{bottom:752.806890px;}
.y8a{bottom:754.354800px;}
.y9{bottom:760.264740px;}
.yfd{bottom:761.809680px;}
.y54{bottom:761.809860px;}
.y6d{bottom:770.772240px;}
.yde{bottom:770.812650px;}
.yc6{bottom:770.812830px;}
.y14b{bottom:772.650000px;}
.y167{bottom:776.790000px;}
.ya0{bottom:779.815620px;}
.y10e{bottom:787.236030px;}
.y22{bottom:787.254660px;}
.y89{bottom:788.818590px;}
.y3c{bottom:796.273650px;}
.y8{bottom:803.731500px;}
.yfc{bottom:805.186260px;}
.y6c{bottom:805.236030px;}
.ydd{bottom:805.276440px;}
.yc5{bottom:805.276620px;}
.y14a{bottom:808.290000px;}
.y166{bottom:812.430000px;}
.y9f{bottom:814.279410px;}
.y10d{bottom:821.790000px;}
.y21{bottom:821.808630px;}
.y88{bottom:823.282380px;}
.y3b{bottom:830.827620px;}
.yb3{bottom:832.285350px;}
.y6b{bottom:839.790000px;}
.ydc{bottom:839.830410px;}
.yc4{bottom:839.830590px;}
.y149{bottom:843.930000px;}
.y165{bottom:847.979850px;}
.yfb{bottom:848.743200px;}
.y11f{bottom:848.833380px;}
.y20{bottom:856.272420px;}
.y87{bottom:857.836350px;}
.y10c{bottom:865.260000px;}
.y3a{bottom:865.291410px;}
.yb2{bottom:866.839320px;}
.ydb{bottom:874.294200px;}
.y53{bottom:874.294380px;}
.y148{bottom:879.480000px;}
.y6a{bottom:883.260000px;}
.y11e{bottom:883.297170px;}
.y164{bottom:883.620000px;}
.y1f{bottom:890.646030px;}
.y7{bottom:890.755200px;}
.y9e{bottom:892.300140px;}
.y10b{bottom:899.730000px;}
.y39{bottom:899.755200px;}
.y86{bottom:901.303110px;}
.yc3{bottom:908.667990px;}
.yda{bottom:908.757990px;}
.y147{bottom:915.120000px;}
.y69{bottom:917.730000px;}
.y12b{bottom:917.760960px;}
.y52{bottom:917.761140px;}
.y163{bottom:919.260000px;}
.y1e{bottom:925.200000px;}
.y6{bottom:925.309170px;}
.y9d{bottom:926.763930px;}
.y85{bottom:935.766900px;}
.y10a{bottom:943.290000px;}
.y38{bottom:943.312140px;}
.y145{bottom:950.676840px;}
.yd9{bottom:952.224750px;}
.y68{bottom:952.290000px;}
.y12a{bottom:952.314930px;}
.yc2{bottom:952.315110px;}
.y162{bottom:954.900000px;}
.y9c{bottom:961.317900px;}
.y51{bottom:961.318080px;}
.y5{bottom:968.685750px;}
.y1d{bottom:968.763240px;}
.y84{bottom:970.320870px;}
.y146{bottom:976.513410px;}
.y144{bottom:976.603590px;}
.y109{bottom:977.760000px;}
.y129{bottom:986.778720px;}
.y37{bottom:986.778900px;}
.y161{bottom:990.540000px;}
.y67{bottom:995.760000px;}
.yd8{bottom:995.781690px;}
.y50{bottom:995.781870px;}
.y83{bottom:1004.784660px;}
.y143{bottom:1012.149540px;}
.y1c{bottom:1012.239720px;}
.y108{bottom:1021.230000px;}
.y160{bottom:1026.090000px;}
.y66{bottom:1030.230000px;}
.ye3{bottom:1030.245480px;}
.y36{bottom:1030.245660px;}
.y82{bottom:1039.248450px;}
.y142{bottom:1047.154410px;}
.y107{bottom:1055.790000px;}
.y1b{bottom:1055.796660px;}
.y4{bottom:1055.799630px;}
.y15f{bottom:1061.730000px;}
.y65{bottom:1064.790000px;}
.ye2{bottom:1064.799450px;}
.y35{bottom:1064.799630px;}
.y141{bottom:1072.990980px;}
.y4f{bottom:1073.712420px;}
.y81{bottom:1073.802420px;}
.y106{bottom:1090.260000px;}
.y3{bottom:1090.263420px;}
.y15e{bottom:1097.370000px;}
.y64{bottom:1099.260000px;}
.y1a{bottom:1099.263420px;}
.y140{bottom:1107.815490px;}
.y4e{bottom:1108.176210px;}
.y80{bottom:1108.266210px;}
.y15d{bottom:1133.010000px;}
.y2{bottom:1133.640000px;}
.y19{bottom:1142.640000px;}
.y7f{bottom:1142.730000px;}
.y17{bottom:1194.945000px;}
.y16{bottom:1212.981000px;}
.h4{height:41.795681px;}
.h5{height:41.823281px;}
.h6{height:43.769004px;}
.h7{height:43.770804px;}
.h2{height:43.909277px;}
.h3{height:62.703281px;}
.h8{height:64.657617px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x3{left:140.803500px;}
.x5{left:154.620000px;}
.x6{left:557.087220px;}
.x7{left:677.687940px;}
.x8{left:695.333160px;}
.x4{left:748.710000px;}
.x1{left:757.080000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.401920pt;}
.lsd{letter-spacing:-0.427520pt;}
.ls10{letter-spacing:-0.374080pt;}
.ls6{letter-spacing:-0.267200pt;}
.lsc{letter-spacing:-0.213760pt;}
.ls9{letter-spacing:-0.160320pt;}
.ls4{letter-spacing:-0.106880pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.053440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010688pt;}
.ls12{letter-spacing:0.016032pt;}
.ls1c{letter-spacing:0.021376pt;}
.ls1d{letter-spacing:0.037408pt;}
.ls5{letter-spacing:0.053440pt;}
.ls15{letter-spacing:0.058560pt;}
.ls1b{letter-spacing:0.069472pt;}
.ls19{letter-spacing:0.074816pt;}
.ls17{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.085504pt;}
.ls2{letter-spacing:0.096192pt;}
.ls11{letter-spacing:0.101536pt;}
.ls0{letter-spacing:0.106880pt;}
.lsf{letter-spacing:0.117568pt;}
.ls13{letter-spacing:0.122912pt;}
.lsa{letter-spacing:0.133600pt;}
.ls1{letter-spacing:0.160213pt;}
.lse{letter-spacing:0.160320pt;}
.ls14{letter-spacing:0.205440pt;}
.ls1a{letter-spacing:6.893760pt;}
.ls16{letter-spacing:36.659840pt;}
.ls3d{letter-spacing:188.963840pt;}
.ls2f{letter-spacing:190.887680pt;}
.ls22{letter-spacing:218.729920pt;}
.ls40{letter-spacing:233.479360pt;}
.ls42{letter-spacing:248.496000pt;}
.ls30{letter-spacing:263.245440pt;}
.ls2e{letter-spacing:270.566720pt;}
.ls20{letter-spacing:278.262080pt;}
.ls24{letter-spacing:292.958080pt;}
.ls28{letter-spacing:307.707520pt;}
.ls3e{letter-spacing:315.402880pt;}
.ls3c{letter-spacing:318.288640pt;}
.ls36{letter-spacing:322.403520pt;}
.ls4a{letter-spacing:335.870400pt;}
.ls2b{letter-spacing:350.566400pt;}
.ls43{letter-spacing:487.212480pt;}
.ls41{letter-spacing:499.076160pt;}
.ls47{letter-spacing:550.912960pt;}
.ls27{letter-spacing:699.048640pt;}
.ls3f{letter-spacing:730.097280pt;}
.ls3b{letter-spacing:758.580800pt;}
.ls31{letter-spacing:927.558080pt;}
.ls2c{letter-spacing:983.883840pt;}
.ls29{letter-spacing:1022.574400pt;}
.ls34{letter-spacing:1069.601600pt;}
.ls21{letter-spacing:1080.182720pt;}
.ls49{letter-spacing:1084.671680pt;}
.ls23{letter-spacing:1087.878080pt;}
.ls25{letter-spacing:1093.970240pt;}
.ls3a{letter-spacing:1096.481920pt;}
.ls44{letter-spacing:1099.367680pt;}
.ls2a{letter-spacing:1108.345600pt;}
.ls26{letter-spacing:1152.807680pt;}
.ls32{letter-spacing:1158.579200pt;}
.ls48{letter-spacing:1170.763520pt;}
.ls46{letter-spacing:1182.253120pt;}
.ls4b{letter-spacing:1206.247680pt;}
.ls45{letter-spacing:1218.111360pt;}
.ls33{letter-spacing:1226.768640pt;}
.ls39{letter-spacing:1229.600960pt;}
.ls1f{letter-spacing:1271.230720pt;}
.ls38{letter-spacing:1289.133120pt;}
.ls37{letter-spacing:1309.921280pt;}
.ls2d{letter-spacing:1334.877760pt;}
.ls35{letter-spacing:1360.208320pt;}
.ls1e{letter-spacing:1449.132480pt;}
.ws17{word-spacing:-15.016640pt;}
.ws11{word-spacing:-14.963200pt;}
.ws2{word-spacing:-14.909760pt;}
.ws1{word-spacing:-14.856320pt;}
.wsb{word-spacing:-14.802880pt;}
.ws4{word-spacing:-14.749653pt;}
.ws0{word-spacing:-14.749440pt;}
.wsc{word-spacing:-14.696000pt;}
.ws10{word-spacing:-14.642560pt;}
.wsf{word-spacing:-14.589120pt;}
.ws16{word-spacing:-14.482240pt;}
.ws12{word-spacing:-14.428800pt;}
.ws3{word-spacing:-9.607680pt;}
.wse{word-spacing:-0.480960pt;}
.ws15{word-spacing:-0.374080pt;}
.ws18{word-spacing:-0.267200pt;}
.ws1c{word-spacing:-0.213760pt;}
.ws6{word-spacing:-0.160320pt;}
.ws8{word-spacing:-0.106880pt;}
.ws1b{word-spacing:-0.058560pt;}
.ws9{word-spacing:-0.053440pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.053440pt;}
.wsa{word-spacing:0.106880pt;}
.ws13{word-spacing:0.160320pt;}
.ws7{word-spacing:0.267200pt;}
.ws1a{word-spacing:0.320640pt;}
.ws19{word-spacing:0.374080pt;}
.ws14{word-spacing:0.427520pt;}
._0{margin-left:-0.961920pt;}
._1{width:0.953504pt;}
._3{width:476.684800pt;}
._6{width:1013.275840pt;}
._5{width:1102.520640pt;}
._2{width:1211.698560pt;}
._4{width:1262.306240pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:67.199120pt;}
.y1{bottom:101.120000pt;}
.y34{bottom:123.952560pt;}
.y128{bottom:123.966640pt;}
.y13f{bottom:128.836240pt;}
.y4d{bottom:130.460480pt;}
.yc1{bottom:139.762720pt;}
.y7e{bottom:139.936000pt;}
.yb1{bottom:139.971920pt;}
.y9b{bottom:141.274000pt;}
.yfa{bottom:141.348000pt;}
.y63{bottom:146.535040pt;}
.yd7{bottom:147.974720pt;}
.y15c{bottom:148.480000pt;}
.y33{bottom:154.587040pt;}
.y127{bottom:154.601120pt;}
.y13e{bottom:159.871520pt;}
.y15{bottom:166.485360pt;}
.y4c{bottom:169.177760pt;}
.y7d{bottom:170.570480pt;}
.yb0{bottom:170.606400pt;}
.y9a{bottom:171.908480pt;}
.yf9{bottom:171.982480pt;}
.y62{bottom:177.249680pt;}
.yc0{bottom:178.609040pt;}
.yd6{bottom:178.609200pt;}
.y15b{bottom:180.160000pt;}
.y32{bottom:185.301680pt;}
.y134{bottom:185.315760pt;}
.y13d{bottom:190.826640pt;}
.y126{bottom:193.318400pt;}
.y7c{bottom:201.285120pt;}
.yaf{bottom:201.321040pt;}
.y14{bottom:201.840000pt;}
.y99{bottom:202.542960pt;}
.yf8{bottom:202.616960pt;}
.y4b{bottom:207.895040pt;}
.ybf{bottom:209.323680pt;}
.yd5{bottom:209.323840pt;}
.y15a{bottom:211.840000pt;}
.y61{bottom:215.806640pt;}
.y11d{bottom:215.870160pt;}
.y31{bottom:215.936160pt;}
.y133{bottom:215.950240pt;}
.y13c{bottom:221.861920pt;}
.y125{bottom:223.952880pt;}
.yae{bottom:231.955520pt;}
.y98{bottom:233.257600pt;}
.yf7{bottom:233.331600pt;}
.y4a{bottom:238.529520pt;}
.y7b{bottom:239.922240pt;}
.ybe{bottom:239.958160pt;}
.yd4{bottom:239.958320pt;}
.y13{bottom:240.480000pt;}
.y159{bottom:243.520000pt;}
.y11c{bottom:246.504640pt;}
.y30{bottom:246.570640pt;}
.y132{bottom:246.584720pt;}
.y105{bottom:247.880640pt;}
.y13b{bottom:252.817040pt;}
.y60{bottom:254.523920pt;}
.y124{bottom:254.587360pt;}
.yad{bottom:262.590000pt;}
.y97{bottom:263.892080pt;}
.yf6{bottom:263.966080pt;}
.y7a{bottom:270.556720pt;}
.ybd{bottom:270.592640pt;}
.yd3{bottom:270.592800pt;}
.y158{bottom:275.120000pt;}
.y11b{bottom:277.219280pt;}
.y49{bottom:277.246800pt;}
.y2f{bottom:277.285280pt;}
.y104{bottom:278.595280pt;}
.y12{bottom:279.120000pt;}
.y13a{bottom:283.852320pt;}
.y5f{bottom:285.238560pt;}
.y131{bottom:285.302000pt;}
.y123{bottom:293.304640pt;}
.y96{bottom:294.526560pt;}
.yf5{bottom:294.600560pt;}
.yec{bottom:301.227120pt;}
.y79{bottom:301.271360pt;}
.yac{bottom:301.307280pt;}
.y157{bottom:306.800000pt;}
.y2e{bottom:307.919760pt;}
.y103{bottom:309.309920pt;}
.yd2{bottom:309.310080pt;}
.y139{bottom:314.807440pt;}
.y11a{bottom:315.856400pt;}
.y5e{bottom:315.873040pt;}
.y48{bottom:315.883920pt;}
.y130{bottom:315.936480pt;}
.y11{bottom:317.760000pt;}
.y122{bottom:323.939120pt;}
.y95{bottom:325.241200pt;}
.y78{bottom:331.825680pt;}
.yab{bottom:331.941760pt;}
.yf4{bottom:333.317840pt;}
.y156{bottom:338.480000pt;}
.y2d{bottom:338.554240pt;}
.yeb{bottom:339.944400pt;}
.yd1{bottom:339.944560pt;}
.y138{bottom:345.842720pt;}
.y119{bottom:346.490880pt;}
.y47{bottom:346.518400pt;}
.y12f{bottom:346.570960pt;}
.y5d{bottom:354.510160pt;}
.y121{bottom:354.573600pt;}
.y94{bottom:355.875680pt;}
.y10{bottom:356.480000pt;}
.yaa{bottom:362.576240pt;}
.yf3{bottom:363.952320pt;}
.y2c{bottom:369.188720pt;}
.y155{bottom:370.160000pt;}
.y77{bottom:370.542960pt;}
.ybc{bottom:370.578880pt;}
.yd0{bottom:370.579040pt;}
.y118{bottom:377.125360pt;}
.y46{bottom:377.152880pt;}
.yea{bottom:378.581520pt;}
.y137{bottom:384.560000pt;}
.y5c{bottom:385.144640pt;}
.y120{bottom:385.208080pt;}
.y93{bottom:386.510160pt;}
.ya9{bottom:393.210720pt;}
.yf2{bottom:394.586800pt;}
.yf{bottom:395.126133pt;}
.y170{bottom:399.127600pt;}
.y2b{bottom:399.903360pt;}
.ybb{bottom:401.213360pt;}
.ycf{bottom:401.213520pt;}
.y154{bottom:401.840000pt;}
.y117{bottom:407.840000pt;}
.y76{bottom:409.180080pt;}
.ye9{bottom:409.216000pt;}
.y136{bottom:415.520000pt;}
.y5b{bottom:415.859280pt;}
.y45{bottom:415.870160pt;}
.y12e{bottom:415.922720pt;}
.y92{bottom:417.144640pt;}
.ya8{bottom:423.925360pt;}
.yf1{bottom:425.221280pt;}
.y2a{bottom:430.537840pt;}
.yba{bottom:431.928000pt;}
.yce{bottom:431.928160pt;}
.y153{bottom:433.440000pt;}
.y16f{bottom:437.844880pt;}
.y75{bottom:439.894720pt;}
.ye8{bottom:439.930640pt;}
.y116{bottom:446.480000pt;}
.y5a{bottom:446.493760pt;}
.y44{bottom:446.504640pt;}
.y12d{bottom:446.557200pt;}
.ya7{bottom:454.559840pt;}
.y91{bottom:455.861920pt;}
.yf0{bottom:455.935920pt;}
.y29{bottom:461.172320pt;}
.yb9{bottom:462.562480pt;}
.ycd{bottom:462.562640pt;}
.y152{bottom:465.120000pt;}
.ye{bottom:467.845520pt;}
.y16e{bottom:468.800000pt;}
.y74{bottom:470.529200pt;}
.ye7{bottom:470.565120pt;}
.y115{bottom:477.120000pt;}
.y59{bottom:477.128240pt;}
.y43{bottom:477.139120pt;}
.y12c{bottom:477.191680pt;}
.ya6{bottom:485.194320pt;}
.y90{bottom:486.496400pt;}
.yef{bottom:486.570400pt;}
.y102{bottom:493.196960pt;}
.ycc{bottom:493.197120pt;}
.y151{bottom:496.800000pt;}
.yd{bottom:498.485520pt;}
.y28{bottom:499.809440pt;}
.y16d{bottom:500.480000pt;}
.y73{bottom:501.163680pt;}
.yb8{bottom:501.199600pt;}
.y114{bottom:507.840000pt;}
.y58{bottom:507.842880pt;}
.y42{bottom:507.853760pt;}
.ya5{bottom:515.908960pt;}
.y8f{bottom:517.130880pt;}
.yee{bottom:517.204880pt;}
.y101{bottom:523.911600pt;}
.y150{bottom:528.480000pt;}
.yc{bottom:529.125360pt;}
.y72{bottom:531.878320pt;}
.yb7{bottom:531.914240pt;}
.ycb{bottom:531.914400pt;}
.y16c{bottom:532.160000pt;}
.y27{bottom:538.446560pt;}
.y113{bottom:538.480000pt;}
.y41{bottom:538.488240pt;}
.ya4{bottom:546.543440pt;}
.y57{bottom:546.543600pt;}
.y8e{bottom:547.845520pt;}
.yed{bottom:547.919520pt;}
.y100{bottom:554.546080pt;}
.yb{bottom:559.879520pt;}
.y14f{bottom:560.160000pt;}
.y71{bottom:562.512800pt;}
.yb6{bottom:562.548720pt;}
.yca{bottom:562.548880pt;}
.y16b{bottom:563.840000pt;}
.y112{bottom:569.120000pt;}
.y40{bottom:569.122720pt;}
.ye6{bottom:570.551360pt;}
.ye1{bottom:577.097760pt;}
.y26{bottom:577.163840pt;}
.y135{bottom:577.177920pt;}
.y56{bottom:577.178080pt;}
.y8d{bottom:578.554000pt;}
.ya3{bottom:585.100400pt;}
.yff{bottom:585.180560pt;}
.y14e{bottom:591.840000pt;}
.y70{bottom:593.147280pt;}
.yb5{bottom:593.183200pt;}
.yc9{bottom:593.183360pt;}
.y16a{bottom:595.440000pt;}
.ya{bottom:598.436533pt;}
.ye5{bottom:601.185840pt;}
.y111{bottom:607.861920pt;}
.y25{bottom:607.878480pt;}
.y3f{bottom:607.892720pt;}
.y8c{bottom:609.188480pt;}
.ye0{bottom:615.895200pt;}
.y14d{bottom:623.440000pt;}
.y6f{bottom:623.861920pt;}
.ya2{bottom:623.897840pt;}
.yc8{bottom:623.898000pt;}
.y169{bottom:627.120000pt;}
.ye4{bottom:631.900480pt;}
.y110{bottom:638.496400pt;}
.y24{bottom:638.512960pt;}
.y3e{bottom:638.527200pt;}
.y8b{bottom:639.903120pt;}
.yfe{bottom:646.529680pt;}
.y55{bottom:646.529840pt;}
.y6e{bottom:654.496400pt;}
.ydf{bottom:654.532320pt;}
.yc7{bottom:654.532480pt;}
.y14c{bottom:655.120000pt;}
.y168{bottom:658.800000pt;}
.yb4{bottom:662.454800pt;}
.ya1{bottom:662.534960pt;}
.y10f{bottom:669.130880pt;}
.y23{bottom:669.147440pt;}
.y3d{bottom:669.161680pt;}
.y8a{bottom:670.537600pt;}
.y9{bottom:675.790880pt;}
.yfd{bottom:677.164160pt;}
.y54{bottom:677.164320pt;}
.y6d{bottom:685.130880pt;}
.yde{bottom:685.166800pt;}
.yc6{bottom:685.166960pt;}
.y14b{bottom:686.800000pt;}
.y167{bottom:690.480000pt;}
.ya0{bottom:693.169440pt;}
.y10e{bottom:699.765360pt;}
.y22{bottom:699.781920pt;}
.y89{bottom:701.172080pt;}
.y3c{bottom:707.798800pt;}
.y8{bottom:714.428000pt;}
.yfc{bottom:715.721120pt;}
.y6c{bottom:715.765360pt;}
.ydd{bottom:715.801280pt;}
.yc5{bottom:715.801440pt;}
.y14a{bottom:718.480000pt;}
.y166{bottom:722.160000pt;}
.y9f{bottom:723.803920pt;}
.y10d{bottom:730.480000pt;}
.y21{bottom:730.496560pt;}
.y88{bottom:731.806560pt;}
.y3b{bottom:738.513440pt;}
.yb3{bottom:739.809200pt;}
.y6b{bottom:746.480000pt;}
.ydc{bottom:746.515920pt;}
.yc4{bottom:746.516080pt;}
.y149{bottom:750.160000pt;}
.y165{bottom:753.759867pt;}
.yfb{bottom:754.438400pt;}
.y11f{bottom:754.518560pt;}
.y20{bottom:761.131040pt;}
.y87{bottom:762.521200pt;}
.y10c{bottom:769.120000pt;}
.y3a{bottom:769.147920pt;}
.yb2{bottom:770.523840pt;}
.ydb{bottom:777.150400pt;}
.y53{bottom:777.150560pt;}
.y148{bottom:781.760000pt;}
.y6a{bottom:785.120000pt;}
.y11e{bottom:785.153040pt;}
.y164{bottom:785.440000pt;}
.y1f{bottom:791.685360pt;}
.y7{bottom:791.782400pt;}
.y9e{bottom:793.155680pt;}
.y10b{bottom:799.760000pt;}
.y39{bottom:799.782400pt;}
.y86{bottom:801.158320pt;}
.yc3{bottom:807.704880pt;}
.yda{bottom:807.784880pt;}
.y147{bottom:813.440000pt;}
.y69{bottom:815.760000pt;}
.y12b{bottom:815.787520pt;}
.y52{bottom:815.787680pt;}
.y163{bottom:817.120000pt;}
.y1e{bottom:822.400000pt;}
.y6{bottom:822.497040pt;}
.y9d{bottom:823.790160pt;}
.y85{bottom:831.792800pt;}
.y10a{bottom:838.480000pt;}
.y38{bottom:838.499680pt;}
.y145{bottom:845.046080pt;}
.yd9{bottom:846.422000pt;}
.y68{bottom:846.480000pt;}
.y12a{bottom:846.502160pt;}
.yc2{bottom:846.502320pt;}
.y162{bottom:848.800000pt;}
.y9c{bottom:854.504800pt;}
.y51{bottom:854.504960pt;}
.y5{bottom:861.054000pt;}
.y1d{bottom:861.122880pt;}
.y84{bottom:862.507440pt;}
.y146{bottom:868.011920pt;}
.y144{bottom:868.092080pt;}
.y109{bottom:869.120000pt;}
.y129{bottom:877.136640pt;}
.y37{bottom:877.136800pt;}
.y161{bottom:880.480000pt;}
.y67{bottom:885.120000pt;}
.yd8{bottom:885.139280pt;}
.y50{bottom:885.139440pt;}
.y83{bottom:893.141920pt;}
.y143{bottom:899.688480pt;}
.y1c{bottom:899.768640pt;}
.y108{bottom:907.760000pt;}
.y160{bottom:912.080000pt;}
.y66{bottom:915.760000pt;}
.ye3{bottom:915.773760pt;}
.y36{bottom:915.773920pt;}
.y82{bottom:923.776400pt;}
.y142{bottom:930.803920pt;}
.y107{bottom:938.480000pt;}
.y1b{bottom:938.485920pt;}
.y4{bottom:938.488560pt;}
.y15f{bottom:943.760000pt;}
.y65{bottom:946.480000pt;}
.ye2{bottom:946.488400pt;}
.y35{bottom:946.488560pt;}
.y141{bottom:953.769760pt;}
.y4f{bottom:954.411040pt;}
.y81{bottom:954.491040pt;}
.y106{bottom:969.120000pt;}
.y3{bottom:969.123040pt;}
.y15e{bottom:975.440000pt;}
.y64{bottom:977.120000pt;}
.y1a{bottom:977.123040pt;}
.y140{bottom:984.724880pt;}
.y4e{bottom:985.045520pt;}
.y80{bottom:985.125520pt;}
.y15d{bottom:1007.120000pt;}
.y2{bottom:1007.680000pt;}
.y19{bottom:1015.680000pt;}
.y7f{bottom:1015.760000pt;}
.y17{bottom:1062.173333pt;}
.y16{bottom:1078.205333pt;}
.h4{height:37.151717pt;}
.h5{height:37.176250pt;}
.h6{height:38.905781pt;}
.h7{height:38.907381pt;}
.h2{height:39.030469pt;}
.h3{height:55.736250pt;}
.h8{height:57.473437pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x3{left:125.158667pt;}
.x5{left:137.440000pt;}
.x6{left:495.188640pt;}
.x7{left:602.389280pt;}
.x8{left:618.073920pt;}
.x4{left:665.520000pt;}
.x1{left:672.960000pt;}
}




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