
    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_08536904cb8cf9b67de5bd5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_73a4cd90d49a5a267f4e1424.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915039;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_c70f2693f905c2924181c74f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_2bf7eaa4a64c3f73ab2dda1b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_1624bdd224f438f35f825276.woff2')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_d08cb7b2119476ae766d71d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_340ebf6614d07098e55bc922.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_ca7142e20f9d3cc04f3561ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986816;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_b61dd639445627e9d17d2c30.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.844727;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.858000px;}
.ls19{letter-spacing:-0.852000px;}
.lse{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.714000px;}
.lsd{letter-spacing:-0.590400px;}
.ls1e{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.193200px;}
.ls1f{letter-spacing:-0.164400px;}
.ls17{letter-spacing:-0.132600px;}
.ls15{letter-spacing:-0.115200px;}
.ls1a{letter-spacing:-0.048960px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.008640px;}
.lsc{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.075000px;}
.ls3{letter-spacing:0.089400px;}
.ls1b{letter-spacing:0.100800px;}
.ls18{letter-spacing:0.129600px;}
.ls12{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.259200px;}
.lsb{letter-spacing:0.313800px;}
.ls16{letter-spacing:0.371400px;}
.ls1c{letter-spacing:1.589760px;}
.ls13{letter-spacing:4.469760px;}
.ls1d{letter-spacing:5.189760px;}
.ls10{letter-spacing:6.600000px;}
.ls5{letter-spacing:8.789760px;}
.ls7{letter-spacing:21.749760px;}
.ls9{letter-spacing:26.069760px;}
.ls1{letter-spacing:38.465280px;}
.ls8{letter-spacing:53.429760px;}
.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;}
}
.wsf{word-spacing:-19.038240px;}
.wsb{word-spacing:-15.341640px;}
.ws5{word-spacing:-15.284040px;}
.ws10{word-spacing:-15.229440px;}
.ws1{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.099840px;}
.wsd{word-spacing:-15.071040px;}
.ws2{word-spacing:-15.059640px;}
.ws3{word-spacing:-15.045240px;}
.ws6{word-spacing:-14.990400px;}
.ws8{word-spacing:-14.978880px;}
.ws4{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.855040px;}
.wse{word-spacing:-14.754240px;}
.ws7{word-spacing:-14.256240px;}
.ws9{word-spacing:-14.112240px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-12.954240px;}
._a1{margin-left:-11.569920px;}
._36{margin-left:-8.943360px;}
._76{margin-left:-7.211040px;}
._83{margin-left:-5.955360px;}
._9a{margin-left:-2.915520px;}
._3{margin-left:-1.202400px;}
._1{width:1.082160px;}
._0{width:2.284560px;}
._e{width:3.444480px;}
._5{width:4.636800px;}
._4{width:5.905440px;}
._6{width:7.599360px;}
._2{width:8.904480px;}
._b{width:10.333440px;}
._15{width:11.989440px;}
._f{width:13.777920px;}
._a{width:16.091040px;}
._9{width:17.267520px;}
._12{width:18.909600px;}
._1c{width:19.937280px;}
._13{width:21.064320px;}
._14{width:22.111680px;}
._1e{width:23.151360px;}
._1f{width:24.379920px;}
._d{width:26.411520px;}
._c{width:27.963360px;}
._22{width:29.344320px;}
._8{width:30.602880px;}
._1a{width:32.401440px;}
._1b{width:33.780720px;}
._10{width:36.698880px;}
._11{width:37.897440px;}
._17{width:39.810240px;}
._1d{width:41.049840px;}
._21{width:42.421680px;}
._26{width:43.464720px;}
._19{width:44.572800px;}
._18{width:45.715680px;}
._27{width:47.650080px;}
._28{width:49.811280px;}
._25{width:50.908800px;}
._20{width:53.002560px;}
._a2{width:54.060960px;}
._42{width:56.170560px;}
._53{width:57.653760px;}
._23{width:59.285280px;}
._73{width:60.324480px;}
._24{width:61.574880px;}
._8f{width:65.467200px;}
._69{width:69.208320px;}
._7a{width:70.501440px;}
._85{width:72.910080px;}
._84{width:74.254080px;}
._8c{width:75.645120px;}
._2e{width:77.036160px;}
._94{width:79.353120px;}
._a3{width:82.382400px;}
._3a{width:85.869120px;}
._9f{width:90.360480px;}
._44{width:92.602560px;}
._a6{width:93.685200px;}
._6e{width:96.136320px;}
._a7{width:101.989440px;}
._58{width:105.863520px;}
._2b{width:112.540800px;}
._90{width:113.713920px;}
._65{width:115.899840px;}
._74{width:121.628640px;}
._7e{width:126.432480px;}
._59{width:128.120160px;}
._54{width:131.233440px;}
._4f{width:132.568320px;}
._34{width:138.639360px;}
._72{width:141.169440px;}
._8e{width:143.885280px;}
._37{width:145.255200px;}
._56{width:157.199520px;}
._9b{width:159.159840px;}
._a4{width:162.627840px;}
._98{width:164.817120px;}
._97{width:168.507360px;}
._38{width:170.129280px;}
._91{width:177.214080px;}
._89{width:181.056000px;}
._a5{width:185.973360px;}
._86{width:187.934880px;}
._3d{width:189.988320px;}
._48{width:191.233920px;}
._33{width:192.571680px;}
._a8{width:195.949920px;}
._93{width:197.870880px;}
._5e{width:200.620800px;}
._5a{width:201.693600px;}
._60{width:203.170080px;}
._77{width:208.138080px;}
._57{width:209.493120px;}
._49{width:211.264320px;}
._75{width:212.841120px;}
._95{width:214.787040px;}
._61{width:219.332640px;}
._64{width:220.458720px;}
._5f{width:222.853440px;}
._71{width:226.211520px;}
._35{width:229.798560px;}
._5c{width:232.716000px;}
._50{width:234.737280px;}
._9e{width:236.028000px;}
._92{width:239.406240px;}
._5d{width:243.907680px;}
._80{width:245.762400px;}
._6f{width:246.803040px;}
._55{width:250.843680px;}
._99{width:251.969760px;}
._45{width:253.115040px;}
._88{width:259.719840px;}
._30{width:261.262560px;}
._47{width:262.388640px;}
._68{width:264.243360px;}
._a0{width:266.031840px;}
._29{width:267.211200px;}
._6b{width:268.760640px;}
._82{width:274.568400px;}
._7c{width:275.702880px;}
._9c{width:278.418720px;}
._87{width:281.134560px;}
._8d{width:283.982880px;}
._4d{width:286.036320px;}
._43{width:287.294880px;}
._6c{width:289.329120px;}
._8a{width:293.322720px;}
._3e{width:294.713760px;}
._62{width:296.946720px;}
._7d{width:302.302080px;}
._39{width:304.166880px;}
._3f{width:305.179680px;}
._67{width:306.901920px;}
._40{width:308.956800px;}
._2d{width:310.942560px;}
._4a{width:314.850720px;}
._96{width:316.705440px;}
._32{width:317.765280px;}
._79{width:323.067360px;}
._7f{width:324.303840px;}
._7b{width:325.562400px;}
._66{width:326.575200px;}
._81{width:328.432800px;}
._6d{width:329.754720px;}
._51{width:332.458320px;}
._46{width:333.994080px;}
._5b{width:335.259360px;}
._9d{width:338.071680px;}
._70{width:340.618080px;}
._63{width:342.528960px;}
._3b{width:343.986240px;}
._3c{width:346.030560px;}
._2c{width:348.765600px;}
._52{width:350.269920px;}
._6a{width:353.392320px;}
._78{width:355.657440px;}
._4e{width:360.262080px;}
._2f{width:361.739520px;}
._41{width:367.114080px;}
._4b{width:368.230080px;}
._31{width:370.752480px;}
._8b{width:374.138400px;}
._4c{width:375.592800px;}
._2a{width:376.709760px;}
._7{width:848.615520px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(118,146,60);}
.fc2{color:rgb(79,129,189);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.y73{bottom:113.760000px;}
.y49{bottom:114.120000px;}
.yaa{bottom:125.640000px;}
.yc6{bottom:126.180000px;}
.y8c{bottom:129.060000px;}
.y5b{bottom:129.420000px;}
.y2a{bottom:129.600000px;}
.y72{bottom:144.000000px;}
.y48{bottom:144.360000px;}
.ye0{bottom:148.500000px;}
.y11c{bottom:155.160000px;}
.y8b{bottom:159.300000px;}
.y5a{bottom:159.660000px;}
.y29{bottom:159.840000px;}
.ya9{bottom:163.830000px;}
.yc5{bottom:164.550000px;}
.y71{bottom:174.090000px;}
.y47{bottom:174.630000px;}
.y11b{bottom:178.410000px;}
.ydf{bottom:186.690000px;}
.y8a{bottom:189.570000px;}
.y59{bottom:189.750000px;}
.y28{bottom:190.110000px;}
.y11a{bottom:201.630000px;}
.ya8{bottom:201.990000px;}
.yc4{bottom:202.710000px;}
.y70{bottom:204.330000px;}
.yb{bottom:214.770000px;}
.y46{bottom:219.630000px;}
.y89{bottom:219.810000px;}
.y58{bottom:219.990000px;}
.y119{bottom:224.670000px;}
.yde{bottom:224.850000px;}
.y6f{bottom:234.570000px;}
.y27{bottom:235.110000px;}
.ya{bottom:238.170000px;}
.ya7{bottom:240.150000px;}
.yc3{bottom:240.870000px;}
.y118{bottom:247.890000px;}
.y45{bottom:250.050000px;}
.y57{bottom:250.230000px;}
.y9{bottom:261.390000px;}
.ydd{bottom:263.010000px;}
.y6e{bottom:264.810000px;}
.y26{bottom:265.530000px;}
.yf4{bottom:267.510000px;}
.y117{bottom:271.110000px;}
.ya6{bottom:278.310000px;}
.yc2{bottom:279.030000px;}
.y44{bottom:280.290000px;}
.y56{bottom:280.470000px;}
.y116{bottom:294.150000px;}
.y8{bottom:294.870000px;}
.y6d{bottom:295.050000px;}
.ydc{bottom:301.170000px;}
.yf3{bottom:305.670000px;}
.y88{bottom:310.350000px;}
.y25{bottom:310.530000px;}
.y55{bottom:310.710000px;}
.ya5{bottom:316.470000px;}
.yc1{bottom:317.190000px;}
.y115{bottom:317.370000px;}
.y6c{bottom:325.290000px;}
.ydb{bottom:339.330000px;}
.y43{bottom:340.590000px;}
.y24{bottom:340.950000px;}
.yf2{bottom:343.830000px;}
.ya4{bottom:354.630000px;}
.yc0{bottom:355.350000px;}
.y6b{bottom:355.530000px;}
.y114{bottom:363.630000px;}
.y42{bottom:370.830000px;}
.y54{bottom:371.010000px;}
.yda{bottom:377.490000px;}
.y87{bottom:378.570000px;}
.yf1{bottom:381.990000px;}
.y6a{bottom:385.590000px;}
.y23{bottom:385.950000px;}
.y113{bottom:386.850000px;}
.ya3{bottom:392.790000px;}
.ybf{bottom:393.510000px;}
.y41{bottom:401.070000px;}
.y53{bottom:401.250000px;}
.y112{bottom:410.115000px;}
.yd9{bottom:415.695000px;}
.y69{bottom:415.875000px;}
.y22{bottom:416.415000px;}
.y86{bottom:420.015000px;}
.yf0{bottom:420.195000px;}
.ya2{bottom:430.995000px;}
.y40{bottom:431.355000px;}
.y52{bottom:431.535000px;}
.ybe{bottom:431.715000px;}
.y111{bottom:433.155000px;}
.y85{bottom:440.175000px;}
.y68{bottom:446.115000px;}
.y21{bottom:446.475000px;}
.yd8{bottom:453.855000px;}
.y110{bottom:456.375000px;}
.yef{bottom:458.355000px;}
.y84{bottom:460.335000px;}
.y3f{bottom:461.595000px;}
.ya1{bottom:469.155000px;}
.ybd{bottom:469.875000px;}
.y67{bottom:476.355000px;}
.y51{bottom:476.535000px;}
.y20{bottom:476.715000px;}
.yee{bottom:478.695000px;}
.y10f{bottom:479.595000px;}
.y83{bottom:480.495000px;}
.y3e{bottom:491.835000px;}
.yd7{bottom:492.015000px;}
.yed{bottom:498.855000px;}
.y10e{bottom:502.815000px;}
.y135{bottom:504.615000px;}
.y66{bottom:506.595000px;}
.y1f{bottom:506.955000px;}
.ya0{bottom:507.315000px;}
.ybc{bottom:508.035000px;}
.yec{bottom:518.835000px;}
.y82{bottom:521.535000px;}
.y10d{bottom:525.855000px;}
.yd6{bottom:530.175000px;}
.y3d{bottom:536.835000px;}
.y1e{bottom:537.195000px;}
.y81{bottom:541.695000px;}
.y134{bottom:542.775000px;}
.y9f{bottom:545.475000px;}
.ybb{bottom:546.195000px;}
.y10c{bottom:549.075000px;}
.yeb{bottom:556.815000px;}
.y80{bottom:561.855000px;}
.y133{bottom:566.715000px;}
.y65{bottom:566.895000px;}
.y1d{bottom:567.435000px;}
.yd5{bottom:568.335000px;}
.y10b{bottom:572.295000px;}
.yea{bottom:580.215000px;}
.y3c{bottom:582.015000px;}
.y9e{bottom:583.635000px;}
.yba{bottom:584.355000px;}
.y132{bottom:591.375000px;}
.y10a{bottom:595.335000px;}
.y64{bottom:597.135000px;}
.y1c{bottom:597.675000px;}
.y7f{bottom:602.895000px;}
.y9d{bottom:603.975000px;}
.yd4{bottom:606.495000px;}
.y3b{bottom:612.435000px;}
.y131{bottom:614.595000px;}
.ye9{bottom:618.195000px;}
.y109{bottom:618.555000px;}
.yb9{bottom:622.515000px;}
.y7e{bottom:623.055000px;}
.y9c{bottom:624.135000px;}
.y63{bottom:627.375000px;}
.y1b{bottom:627.915000px;}
.y130{bottom:637.815000px;}
.y108{bottom:641.775000px;}
.y3a{bottom:642.675000px;}
.y9b{bottom:644.295000px;}
.yd3{bottom:644.655000px;}
.ye8{bottom:656.385000px;}
.y62{bottom:657.645000px;}
.y1a{bottom:658.005000px;}
.yb8{bottom:660.705000px;}
.y12f{bottom:660.885000px;}
.y7d{bottom:664.305000px;}
.y107{bottom:664.845000px;}
.y39{bottom:672.945000px;}
.ye7{bottom:676.725000px;}
.y9a{bottom:682.305000px;}
.yd2{bottom:682.845000px;}
.y12e{bottom:684.105000px;}
.y7c{bottom:684.465000px;}
.y61{bottom:687.885000px;}
.y106{bottom:688.065000px;}
.y19{bottom:688.245000px;}
.ye6{bottom:696.885000px;}
.yb7{bottom:698.865000px;}
.y38{bottom:703.005000px;}
.y50{bottom:703.365000px;}
.y7b{bottom:704.625000px;}
.y12d{bottom:707.325000px;}
.y105{bottom:711.285000px;}
.ye5{bottom:717.045000px;}
.y60{bottom:718.125000px;}
.y18{bottom:718.485000px;}
.y148{bottom:719.385000px;}
.y99{bottom:720.465000px;}
.yd1{bottom:721.005000px;}
.y12c{bottom:730.365000px;}
.y37{bottom:733.245000px;}
.y4f{bottom:733.425000px;}
.y104{bottom:734.325000px;}
.yb6{bottom:737.025000px;}
.ye4{bottom:737.205000px;}
.y7a{bottom:745.665000px;}
.y5f{bottom:748.365000px;}
.y17{bottom:748.725000px;}
.y12b{bottom:753.585000px;}
.y147{bottom:757.365000px;}
.y103{bottom:757.545000px;}
.y98{bottom:758.625000px;}
.yd0{bottom:759.165000px;}
.y7{bottom:761.145000px;}
.y36{bottom:763.485000px;}
.y4e{bottom:763.665000px;}
.y79{bottom:765.825000px;}
.yb5{bottom:775.185000px;}
.y12a{bottom:776.805000px;}
.y146{bottom:777.165000px;}
.y5e{bottom:778.425000px;}
.y102{bottom:780.765000px;}
.y78{bottom:785.985000px;}
.y16{bottom:793.725000px;}
.y4d{bottom:793.905000px;}
.ye3{bottom:795.525000px;}
.y145{bottom:796.065000px;}
.y97{bottom:796.785000px;}
.ycf{bottom:797.325000px;}
.y129{bottom:799.845000px;}
.y101{bottom:803.805000px;}
.y5d{bottom:808.665000px;}
.yb4{bottom:813.345000px;}
.ye2{bottom:815.685000px;}
.y144{bottom:816.225000px;}
.y128{bottom:823.065000px;}
.y35{bottom:823.965000px;}
.y4c{bottom:824.145000px;}
.y100{bottom:827.025000px;}
.y77{bottom:827.205000px;}
.y96{bottom:834.945000px;}
.yce{bottom:835.485000px;}
.ye1{bottom:835.665000px;}
.y143{bottom:836.385000px;}
.y15{bottom:838.905000px;}
.y127{bottom:846.285000px;}
.y76{bottom:847.365000px;}
.yff{bottom:850.245000px;}
.yb3{bottom:851.505000px;}
.y4b{bottom:854.385000px;}
.y142{bottom:856.545000px;}
.y75{bottom:867.345000px;}
.y34{bottom:868.965000px;}
.y5c{bottom:869.145000px;}
.y14{bottom:869.325000px;}
.y95{bottom:873.105000px;}
.yfe{bottom:873.285000px;}
.ycd{bottom:873.645000px;}
.y141{bottom:876.705000px;}
.yb2{bottom:889.665000px;}
.y126{bottom:892.545000px;}
.yfd{bottom:896.550000px;}
.y140{bottom:896.910000px;}
.y33{bottom:899.430000px;}
.y13{bottom:899.610000px;}
.y74{bottom:908.610000px;}
.y94{bottom:911.310000px;}
.ycc{bottom:911.850000px;}
.y13f{bottom:917.070000px;}
.y125{bottom:917.610000px;}
.yfc{bottom:919.770000px;}
.yb1{bottom:927.870000px;}
.y32{bottom:929.670000px;}
.y13e{bottom:937.230000px;}
.yfb{bottom:942.810000px;}
.y12{bottom:944.610000px;}
.y124{bottom:947.130000px;}
.y93{bottom:949.470000px;}
.ycb{bottom:950.190000px;}
.y13d{bottom:957.390000px;}
.y31{bottom:959.910000px;}
.yb0{bottom:966.030000px;}
.y11{bottom:975.030000px;}
.y123{bottom:975.210000px;}
.y13c{bottom:977.550000px;}
.y92{bottom:984.570000px;}
.yca{bottom:988.350000px;}
.yfa{bottom:989.250000px;}
.y30{bottom:989.970000px;}
.y6{bottom:994.470000px;}
.y13b{bottom:997.530000px;}
.y122{bottom:1000.410000px;}
.yaf{bottom:1004.190000px;}
.y91{bottom:1004.910000px;}
.y10{bottom:1005.270000px;}
.yf9{bottom:1012.470000px;}
.y13a{bottom:1017.690000px;}
.y2f{bottom:1020.210000px;}
.y121{bottom:1025.250000px;}
.yc9{bottom:1026.510000px;}
.yf{bottom:1035.510000px;}
.yf8{bottom:1036.050000px;}
.y5{bottom:1036.410000px;}
.y139{bottom:1037.850000px;}
.y90{bottom:1039.830000px;}
.yae{bottom:1042.350000px;}
.y120{bottom:1048.470000px;}
.y2e{bottom:1050.450000px;}
.y138{bottom:1058.010000px;}
.y8f{bottom:1060.170000px;}
.yf7{bottom:1062.690000px;}
.yc8{bottom:1064.670000px;}
.ye{bottom:1065.750000px;}
.y11f{bottom:1071.690000px;}
.y137{bottom:1077.630000px;}
.yad{bottom:1080.510000px;}
.y2d{bottom:1080.690000px;}
.yf6{bottom:1092.030000px;}
.y4{bottom:1092.750000px;}
.y11e{bottom:1094.730000px;}
.yd{bottom:1095.810000px;}
.y136{bottom:1096.530000px;}
.yac{bottom:1100.850000px;}
.yc7{bottom:1102.830000px;}
.y8e{bottom:1106.430000px;}
.y4a{bottom:1110.750000px;}
.y2c{bottom:1110.930000px;}
.y11d{bottom:1117.950000px;}
.yab{bottom:1121.010000px;}
.y3{bottom:1128.210000px;}
.yf5{bottom:1136.490000px;}
.y8d{bottom:1139.550000px;}
.yc{bottom:1141.020000px;}
.y2b{bottom:1141.200000px;}
.h2{height:52.526250px;}
.hb{height:52.965000px;}
.h8{height:53.561250px;}
.h5{height:54.371250px;}
.ha{height:57.093750px;}
.h7{height:58.218750px;}
.h4{height:58.861055px;}
.h9{height:68.115938px;}
.h6{height:68.956875px;}
.h3{height:84.015352px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.960000px;}
.x4{left:111.996000px;}
.x7{left:378.435000px;}
.x6{left:476.205000px;}
.x3{left:763.710000px;}
.x5{left:791.250000px;}
.x1{left:799.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.762667pt;}
.ls19{letter-spacing:-0.757333pt;}
.lse{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.634667pt;}
.lsd{letter-spacing:-0.524800pt;}
.ls1e{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.171733pt;}
.ls1f{letter-spacing:-0.146133pt;}
.ls17{letter-spacing:-0.117867pt;}
.ls15{letter-spacing:-0.102400pt;}
.ls1a{letter-spacing:-0.043520pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.007680pt;}
.lsc{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.066667pt;}
.ls3{letter-spacing:0.079467pt;}
.ls1b{letter-spacing:0.089600pt;}
.ls18{letter-spacing:0.115200pt;}
.ls12{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.230400pt;}
.lsb{letter-spacing:0.278933pt;}
.ls16{letter-spacing:0.330133pt;}
.ls1c{letter-spacing:1.413120pt;}
.ls13{letter-spacing:3.973120pt;}
.ls1d{letter-spacing:4.613120pt;}
.ls10{letter-spacing:5.866667pt;}
.ls5{letter-spacing:7.813120pt;}
.ls7{letter-spacing:19.333120pt;}
.ls9{letter-spacing:23.173120pt;}
.ls1{letter-spacing:34.191360pt;}
.ls8{letter-spacing:47.493120pt;}
.wsf{word-spacing:-16.922880pt;}
.wsb{word-spacing:-13.637013pt;}
.ws5{word-spacing:-13.585813pt;}
.ws10{word-spacing:-13.537280pt;}
.ws1{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.422080pt;}
.wsd{word-spacing:-13.396480pt;}
.ws2{word-spacing:-13.386347pt;}
.ws3{word-spacing:-13.373547pt;}
.ws6{word-spacing:-13.324800pt;}
.ws8{word-spacing:-13.314560pt;}
.ws4{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.204480pt;}
.wse{word-spacing:-13.114880pt;}
.ws7{word-spacing:-12.672213pt;}
.ws9{word-spacing:-12.544213pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-11.514880pt;}
._a1{margin-left:-10.284373pt;}
._36{margin-left:-7.949653pt;}
._76{margin-left:-6.409813pt;}
._83{margin-left:-5.293653pt;}
._9a{margin-left:-2.591573pt;}
._3{margin-left:-1.068800pt;}
._1{width:0.961920pt;}
._0{width:2.030720pt;}
._e{width:3.061760pt;}
._5{width:4.121600pt;}
._4{width:5.249280pt;}
._6{width:6.754987pt;}
._2{width:7.915093pt;}
._b{width:9.185280pt;}
._15{width:10.657280pt;}
._f{width:12.247040pt;}
._a{width:14.303147pt;}
._9{width:15.348907pt;}
._12{width:16.808533pt;}
._1c{width:17.722027pt;}
._13{width:18.723840pt;}
._14{width:19.654827pt;}
._1e{width:20.578987pt;}
._1f{width:21.671040pt;}
._d{width:23.476907pt;}
._c{width:24.856320pt;}
._22{width:26.083840pt;}
._8{width:27.202560pt;}
._1a{width:28.801280pt;}
._1b{width:30.027307pt;}
._10{width:32.621227pt;}
._11{width:33.686613pt;}
._17{width:35.386880pt;}
._1d{width:36.488747pt;}
._21{width:37.708160pt;}
._26{width:38.635307pt;}
._19{width:39.620267pt;}
._18{width:40.636160pt;}
._27{width:42.355627pt;}
._28{width:44.276693pt;}
._25{width:45.252267pt;}
._20{width:47.113387pt;}
._a2{width:48.054187pt;}
._42{width:49.929387pt;}
._53{width:51.247787pt;}
._23{width:52.698027pt;}
._73{width:53.621760pt;}
._24{width:54.733227pt;}
._8f{width:58.193067pt;}
._69{width:61.518507pt;}
._7a{width:62.667947pt;}
._85{width:64.808960pt;}
._84{width:66.003627pt;}
._8c{width:67.240107pt;}
._2e{width:68.476587pt;}
._94{width:70.536107pt;}
._a3{width:73.228800pt;}
._3a{width:76.328107pt;}
._9f{width:80.320427pt;}
._44{width:82.313387pt;}
._a6{width:83.275733pt;}
._6e{width:85.454507pt;}
._a7{width:90.657280pt;}
._58{width:94.100907pt;}
._2b{width:100.036267pt;}
._90{width:101.079040pt;}
._65{width:103.022080pt;}
._74{width:108.114347pt;}
._7e{width:112.384427pt;}
._59{width:113.884587pt;}
._54{width:116.651947pt;}
._4f{width:117.838507pt;}
._34{width:123.234987pt;}
._72{width:125.483947pt;}
._8e{width:127.898027pt;}
._37{width:129.115733pt;}
._56{width:139.732907pt;}
._9b{width:141.475413pt;}
._a4{width:144.558080pt;}
._98{width:146.504107pt;}
._97{width:149.784320pt;}
._38{width:151.226027pt;}
._91{width:157.523627pt;}
._89{width:160.938667pt;}
._a5{width:165.309653pt;}
._86{width:167.053227pt;}
._3d{width:168.878507pt;}
._48{width:169.985707pt;}
._33{width:171.174827pt;}
._a8{width:174.177707pt;}
._93{width:175.885227pt;}
._5e{width:178.329600pt;}
._5a{width:179.283200pt;}
._60{width:180.595627pt;}
._77{width:185.011627pt;}
._57{width:186.216107pt;}
._49{width:187.790507pt;}
._75{width:189.192107pt;}
._95{width:190.921813pt;}
._61{width:194.962347pt;}
._64{width:195.963307pt;}
._5f{width:198.091947pt;}
._71{width:201.076907pt;}
._35{width:204.265387pt;}
._5c{width:206.858667pt;}
._50{width:208.655360pt;}
._9e{width:209.802667pt;}
._92{width:212.805547pt;}
._5d{width:216.806827pt;}
._80{width:218.455467pt;}
._6f{width:219.380480pt;}
._55{width:222.972160pt;}
._99{width:223.973120pt;}
._45{width:224.991147pt;}
._88{width:230.862080pt;}
._30{width:232.233387pt;}
._47{width:233.234347pt;}
._68{width:234.882987pt;}
._a0{width:236.472747pt;}
._29{width:237.521067pt;}
._6b{width:238.898347pt;}
._82{width:244.060800pt;}
._7c{width:245.069227pt;}
._9c{width:247.483307pt;}
._87{width:249.897387pt;}
._8d{width:252.429227pt;}
._4d{width:254.254507pt;}
._43{width:255.373227pt;}
._6c{width:257.181440pt;}
._8a{width:260.731307pt;}
._3e{width:261.967787pt;}
._62{width:263.952640pt;}
._7d{width:268.712960pt;}
._39{width:270.370560pt;}
._3f{width:271.270827pt;}
._67{width:272.801707pt;}
._40{width:274.628267pt;}
._2d{width:276.393387pt;}
._4a{width:279.867307pt;}
._96{width:281.515947pt;}
._32{width:282.458027pt;}
._79{width:287.170987pt;}
._7f{width:288.270080pt;}
._7b{width:289.388800pt;}
._66{width:290.289067pt;}
._81{width:291.940267pt;}
._6d{width:293.115307pt;}
._51{width:295.518507pt;}
._46{width:296.883627pt;}
._5b{width:298.008320pt;}
._9d{width:300.508160pt;}
._70{width:302.771627pt;}
._63{width:304.470187pt;}
._3b{width:305.765547pt;}
._3c{width:307.582720pt;}
._2c{width:310.013867pt;}
._52{width:311.351040pt;}
._6a{width:314.126507pt;}
._78{width:316.139947pt;}
._4e{width:320.232960pt;}
._2f{width:321.546240pt;}
._41{width:326.323627pt;}
._4b{width:327.315627pt;}
._31{width:329.557760pt;}
._8b{width:332.567467pt;}
._4c{width:333.860267pt;}
._2a{width:334.853120pt;}
._7{width:754.324907pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.y73{bottom:101.120000pt;}
.y49{bottom:101.440000pt;}
.yaa{bottom:111.680000pt;}
.yc6{bottom:112.160000pt;}
.y8c{bottom:114.720000pt;}
.y5b{bottom:115.040000pt;}
.y2a{bottom:115.200000pt;}
.y72{bottom:128.000000pt;}
.y48{bottom:128.320000pt;}
.ye0{bottom:132.000000pt;}
.y11c{bottom:137.920000pt;}
.y8b{bottom:141.600000pt;}
.y5a{bottom:141.920000pt;}
.y29{bottom:142.080000pt;}
.ya9{bottom:145.626667pt;}
.yc5{bottom:146.266667pt;}
.y71{bottom:154.746667pt;}
.y47{bottom:155.226667pt;}
.y11b{bottom:158.586667pt;}
.ydf{bottom:165.946667pt;}
.y8a{bottom:168.506667pt;}
.y59{bottom:168.666667pt;}
.y28{bottom:168.986667pt;}
.y11a{bottom:179.226667pt;}
.ya8{bottom:179.546667pt;}
.yc4{bottom:180.186667pt;}
.y70{bottom:181.626667pt;}
.yb{bottom:190.906667pt;}
.y46{bottom:195.226667pt;}
.y89{bottom:195.386667pt;}
.y58{bottom:195.546667pt;}
.y119{bottom:199.706667pt;}
.yde{bottom:199.866667pt;}
.y6f{bottom:208.506667pt;}
.y27{bottom:208.986667pt;}
.ya{bottom:211.706667pt;}
.ya7{bottom:213.466667pt;}
.yc3{bottom:214.106667pt;}
.y118{bottom:220.346667pt;}
.y45{bottom:222.266667pt;}
.y57{bottom:222.426667pt;}
.y9{bottom:232.346667pt;}
.ydd{bottom:233.786667pt;}
.y6e{bottom:235.386667pt;}
.y26{bottom:236.026667pt;}
.yf4{bottom:237.786667pt;}
.y117{bottom:240.986667pt;}
.ya6{bottom:247.386667pt;}
.yc2{bottom:248.026667pt;}
.y44{bottom:249.146667pt;}
.y56{bottom:249.306667pt;}
.y116{bottom:261.466667pt;}
.y8{bottom:262.106667pt;}
.y6d{bottom:262.266667pt;}
.ydc{bottom:267.706667pt;}
.yf3{bottom:271.706667pt;}
.y88{bottom:275.866667pt;}
.y25{bottom:276.026667pt;}
.y55{bottom:276.186667pt;}
.ya5{bottom:281.306667pt;}
.yc1{bottom:281.946667pt;}
.y115{bottom:282.106667pt;}
.y6c{bottom:289.146667pt;}
.ydb{bottom:301.626667pt;}
.y43{bottom:302.746667pt;}
.y24{bottom:303.066667pt;}
.yf2{bottom:305.626667pt;}
.ya4{bottom:315.226667pt;}
.yc0{bottom:315.866667pt;}
.y6b{bottom:316.026667pt;}
.y114{bottom:323.226667pt;}
.y42{bottom:329.626667pt;}
.y54{bottom:329.786667pt;}
.yda{bottom:335.546667pt;}
.y87{bottom:336.506667pt;}
.yf1{bottom:339.546667pt;}
.y6a{bottom:342.746667pt;}
.y23{bottom:343.066667pt;}
.y113{bottom:343.866667pt;}
.ya3{bottom:349.146667pt;}
.ybf{bottom:349.786667pt;}
.y41{bottom:356.506667pt;}
.y53{bottom:356.666667pt;}
.y112{bottom:364.546667pt;}
.yd9{bottom:369.506667pt;}
.y69{bottom:369.666667pt;}
.y22{bottom:370.146667pt;}
.y86{bottom:373.346667pt;}
.yf0{bottom:373.506667pt;}
.ya2{bottom:383.106667pt;}
.y40{bottom:383.426667pt;}
.y52{bottom:383.586667pt;}
.ybe{bottom:383.746667pt;}
.y111{bottom:385.026667pt;}
.y85{bottom:391.266667pt;}
.y68{bottom:396.546667pt;}
.y21{bottom:396.866667pt;}
.yd8{bottom:403.426667pt;}
.y110{bottom:405.666667pt;}
.yef{bottom:407.426667pt;}
.y84{bottom:409.186667pt;}
.y3f{bottom:410.306667pt;}
.ya1{bottom:417.026667pt;}
.ybd{bottom:417.666667pt;}
.y67{bottom:423.426667pt;}
.y51{bottom:423.586667pt;}
.y20{bottom:423.746667pt;}
.yee{bottom:425.506667pt;}
.y10f{bottom:426.306667pt;}
.y83{bottom:427.106667pt;}
.y3e{bottom:437.186667pt;}
.yd7{bottom:437.346667pt;}
.yed{bottom:443.426667pt;}
.y10e{bottom:446.946667pt;}
.y135{bottom:448.546667pt;}
.y66{bottom:450.306667pt;}
.y1f{bottom:450.626667pt;}
.ya0{bottom:450.946667pt;}
.ybc{bottom:451.586667pt;}
.yec{bottom:461.186667pt;}
.y82{bottom:463.586667pt;}
.y10d{bottom:467.426667pt;}
.yd6{bottom:471.266667pt;}
.y3d{bottom:477.186667pt;}
.y1e{bottom:477.506667pt;}
.y81{bottom:481.506667pt;}
.y134{bottom:482.466667pt;}
.y9f{bottom:484.866667pt;}
.ybb{bottom:485.506667pt;}
.y10c{bottom:488.066667pt;}
.yeb{bottom:494.946667pt;}
.y80{bottom:499.426667pt;}
.y133{bottom:503.746667pt;}
.y65{bottom:503.906667pt;}
.y1d{bottom:504.386667pt;}
.yd5{bottom:505.186667pt;}
.y10b{bottom:508.706667pt;}
.yea{bottom:515.746667pt;}
.y3c{bottom:517.346667pt;}
.y9e{bottom:518.786667pt;}
.yba{bottom:519.426667pt;}
.y132{bottom:525.666667pt;}
.y10a{bottom:529.186667pt;}
.y64{bottom:530.786667pt;}
.y1c{bottom:531.266667pt;}
.y7f{bottom:535.906667pt;}
.y9d{bottom:536.866667pt;}
.yd4{bottom:539.106667pt;}
.y3b{bottom:544.386667pt;}
.y131{bottom:546.306667pt;}
.ye9{bottom:549.506667pt;}
.y109{bottom:549.826667pt;}
.yb9{bottom:553.346667pt;}
.y7e{bottom:553.826667pt;}
.y9c{bottom:554.786667pt;}
.y63{bottom:557.666667pt;}
.y1b{bottom:558.146667pt;}
.y130{bottom:566.946667pt;}
.y108{bottom:570.466667pt;}
.y3a{bottom:571.266667pt;}
.y9b{bottom:572.706667pt;}
.yd3{bottom:573.026667pt;}
.ye8{bottom:583.453333pt;}
.y62{bottom:584.573333pt;}
.y1a{bottom:584.893333pt;}
.yb8{bottom:587.293333pt;}
.y12f{bottom:587.453333pt;}
.y7d{bottom:590.493333pt;}
.y107{bottom:590.973333pt;}
.y39{bottom:598.173333pt;}
.ye7{bottom:601.533333pt;}
.y9a{bottom:606.493333pt;}
.yd2{bottom:606.973333pt;}
.y12e{bottom:608.093333pt;}
.y7c{bottom:608.413333pt;}
.y61{bottom:611.453333pt;}
.y106{bottom:611.613333pt;}
.y19{bottom:611.773333pt;}
.ye6{bottom:619.453333pt;}
.yb7{bottom:621.213333pt;}
.y38{bottom:624.893333pt;}
.y50{bottom:625.213333pt;}
.y7b{bottom:626.333333pt;}
.y12d{bottom:628.733333pt;}
.y105{bottom:632.253333pt;}
.ye5{bottom:637.373333pt;}
.y60{bottom:638.333333pt;}
.y18{bottom:638.653333pt;}
.y148{bottom:639.453333pt;}
.y99{bottom:640.413333pt;}
.yd1{bottom:640.893333pt;}
.y12c{bottom:649.213333pt;}
.y37{bottom:651.773333pt;}
.y4f{bottom:651.933333pt;}
.y104{bottom:652.733333pt;}
.yb6{bottom:655.133333pt;}
.ye4{bottom:655.293333pt;}
.y7a{bottom:662.813333pt;}
.y5f{bottom:665.213333pt;}
.y17{bottom:665.533333pt;}
.y12b{bottom:669.853333pt;}
.y147{bottom:673.213333pt;}
.y103{bottom:673.373333pt;}
.y98{bottom:674.333333pt;}
.yd0{bottom:674.813333pt;}
.y7{bottom:676.573333pt;}
.y36{bottom:678.653333pt;}
.y4e{bottom:678.813333pt;}
.y79{bottom:680.733333pt;}
.yb5{bottom:689.053333pt;}
.y12a{bottom:690.493333pt;}
.y146{bottom:690.813333pt;}
.y5e{bottom:691.933333pt;}
.y102{bottom:694.013333pt;}
.y78{bottom:698.653333pt;}
.y16{bottom:705.533333pt;}
.y4d{bottom:705.693333pt;}
.ye3{bottom:707.133333pt;}
.y145{bottom:707.613333pt;}
.y97{bottom:708.253333pt;}
.ycf{bottom:708.733333pt;}
.y129{bottom:710.973333pt;}
.y101{bottom:714.493333pt;}
.y5d{bottom:718.813333pt;}
.yb4{bottom:722.973333pt;}
.ye2{bottom:725.053333pt;}
.y144{bottom:725.533333pt;}
.y128{bottom:731.613333pt;}
.y35{bottom:732.413333pt;}
.y4c{bottom:732.573333pt;}
.y100{bottom:735.133333pt;}
.y77{bottom:735.293333pt;}
.y96{bottom:742.173333pt;}
.yce{bottom:742.653333pt;}
.ye1{bottom:742.813333pt;}
.y143{bottom:743.453333pt;}
.y15{bottom:745.693333pt;}
.y127{bottom:752.253333pt;}
.y76{bottom:753.213333pt;}
.yff{bottom:755.773333pt;}
.yb3{bottom:756.893333pt;}
.y4b{bottom:759.453333pt;}
.y142{bottom:761.373333pt;}
.y75{bottom:770.973333pt;}
.y34{bottom:772.413333pt;}
.y5c{bottom:772.573333pt;}
.y14{bottom:772.733333pt;}
.y95{bottom:776.093333pt;}
.yfe{bottom:776.253333pt;}
.ycd{bottom:776.573333pt;}
.y141{bottom:779.293333pt;}
.yb2{bottom:790.813333pt;}
.y126{bottom:793.373333pt;}
.yfd{bottom:796.933333pt;}
.y140{bottom:797.253333pt;}
.y33{bottom:799.493333pt;}
.y13{bottom:799.653333pt;}
.y74{bottom:807.653333pt;}
.y94{bottom:810.053333pt;}
.ycc{bottom:810.533333pt;}
.y13f{bottom:815.173333pt;}
.y125{bottom:815.653333pt;}
.yfc{bottom:817.573333pt;}
.yb1{bottom:824.773333pt;}
.y32{bottom:826.373333pt;}
.y13e{bottom:833.093333pt;}
.yfb{bottom:838.053333pt;}
.y12{bottom:839.653333pt;}
.y124{bottom:841.893333pt;}
.y93{bottom:843.973333pt;}
.ycb{bottom:844.613333pt;}
.y13d{bottom:851.013333pt;}
.y31{bottom:853.253333pt;}
.yb0{bottom:858.693333pt;}
.y11{bottom:866.693333pt;}
.y123{bottom:866.853333pt;}
.y13c{bottom:868.933333pt;}
.y92{bottom:875.173333pt;}
.yca{bottom:878.533333pt;}
.yfa{bottom:879.333333pt;}
.y30{bottom:879.973333pt;}
.y6{bottom:883.973333pt;}
.y13b{bottom:886.693333pt;}
.y122{bottom:889.253333pt;}
.yaf{bottom:892.613333pt;}
.y91{bottom:893.253333pt;}
.y10{bottom:893.573333pt;}
.yf9{bottom:899.973333pt;}
.y13a{bottom:904.613333pt;}
.y2f{bottom:906.853333pt;}
.y121{bottom:911.333333pt;}
.yc9{bottom:912.453333pt;}
.yf{bottom:920.453333pt;}
.yf8{bottom:920.933333pt;}
.y5{bottom:921.253333pt;}
.y139{bottom:922.533333pt;}
.y90{bottom:924.293333pt;}
.yae{bottom:926.533333pt;}
.y120{bottom:931.973333pt;}
.y2e{bottom:933.733333pt;}
.y138{bottom:940.453333pt;}
.y8f{bottom:942.373333pt;}
.yf7{bottom:944.613333pt;}
.yc8{bottom:946.373333pt;}
.ye{bottom:947.333333pt;}
.y11f{bottom:952.613333pt;}
.y137{bottom:957.893333pt;}
.yad{bottom:960.453333pt;}
.y2d{bottom:960.613333pt;}
.yf6{bottom:970.693333pt;}
.y4{bottom:971.333333pt;}
.y11e{bottom:973.093333pt;}
.yd{bottom:974.053333pt;}
.y136{bottom:974.693333pt;}
.yac{bottom:978.533333pt;}
.yc7{bottom:980.293333pt;}
.y8e{bottom:983.493333pt;}
.y4a{bottom:987.333333pt;}
.y2c{bottom:987.493333pt;}
.y11d{bottom:993.733333pt;}
.yab{bottom:996.453333pt;}
.y3{bottom:1002.853333pt;}
.yf5{bottom:1010.213333pt;}
.y8d{bottom:1012.933333pt;}
.yc{bottom:1014.240000pt;}
.y2b{bottom:1014.400000pt;}
.h2{height:46.690000pt;}
.hb{height:47.080000pt;}
.h8{height:47.610000pt;}
.h5{height:48.330000pt;}
.ha{height:50.750000pt;}
.h7{height:51.750000pt;}
.h4{height:52.320937pt;}
.h9{height:60.547500pt;}
.h6{height:61.295000pt;}
.h3{height:74.680312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.520000pt;}
.x4{left:99.552000pt;}
.x7{left:336.386667pt;}
.x6{left:423.293333pt;}
.x3{left:678.853333pt;}
.x5{left:703.333333pt;}
.x1{left:710.853333pt;}
}




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