
    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_dc34c63d39c83ea2462ecbbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138071;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_24081d70859836ff326981ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.748000;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_93e8fa8cfb692fbb86dd8314.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138071;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_3f27ac2d467578cfe5e92286.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_ff5ca599b74cee10da937a80.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.114000;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_6efe1e6048a7d15a68f2bbe4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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;}
.v1{vertical-align:21.978000px;}
.ls5{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:3.360000px;}
.ls3{letter-spacing:7.200000px;}
.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;}
}
.ws5a{word-spacing:-17.064000px;}
.ws80{word-spacing:-16.704000px;}
.ws2{word-spacing:-15.642000px;}
.ws82{word-spacing:-14.400000px;}
.ws81{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.200000px;}
.ws0{word-spacing:-7.695600px;}
.ws4{word-spacing:-3.360000px;}
.ws5f{word-spacing:-2.880000px;}
.ws3e{word-spacing:-2.736000px;}
.ws78{word-spacing:-2.664000px;}
.ws30{word-spacing:-2.376000px;}
.ws45{word-spacing:-2.340000px;}
.ws4d{word-spacing:-2.304000px;}
.ws43{word-spacing:-2.160000px;}
.ws64{word-spacing:-2.088000px;}
.ws7b{word-spacing:-2.016000px;}
.ws38{word-spacing:-1.872000px;}
.ws52{word-spacing:-1.800000px;}
.ws44{word-spacing:-1.656000px;}
.ws27{word-spacing:-1.368000px;}
.ws6f{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.152000px;}
.ws31{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.008000px;}
.ws3a{word-spacing:-0.936000px;}
.ws57{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.792000px;}
.ws54{word-spacing:-0.720000px;}
.ws3d{word-spacing:-0.648000px;}
.ws63{word-spacing:-0.576000px;}
.ws2d{word-spacing:-0.504000px;}
.ws46{word-spacing:-0.420000px;}
.ws16{word-spacing:-0.396000px;}
.ws68{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.288000px;}
.ws8{word-spacing:-0.132000px;}
.ws23{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.144000px;}
.ws50{word-spacing:0.288000px;}
.ws32{word-spacing:0.360000px;}
.ws7e{word-spacing:0.432000px;}
.ws11{word-spacing:0.594000px;}
.ws40{word-spacing:0.648000px;}
.ws1d{word-spacing:0.720000px;}
.ws83{word-spacing:0.792000px;}
.ws61{word-spacing:0.864000px;}
.ws41{word-spacing:1.008000px;}
.ws25{word-spacing:1.080000px;}
.ws49{word-spacing:1.140000px;}
.ws42{word-spacing:1.152000px;}
.ws1c{word-spacing:1.296000px;}
.ws2f{word-spacing:1.368000px;}
.ws4b{word-spacing:1.512000px;}
.ws13{word-spacing:1.716000px;}
.ws5e{word-spacing:1.728000px;}
.ws1a{word-spacing:1.800000px;}
.ws12{word-spacing:1.848000px;}
.ws70{word-spacing:1.872000px;}
.ws67{word-spacing:2.016000px;}
.ws5{word-spacing:2.112000px;}
.ws1e{word-spacing:2.160000px;}
.ws2e{word-spacing:2.232000px;}
.wsb{word-spacing:2.376000px;}
.ws6{word-spacing:2.442000px;}
.ws47{word-spacing:2.460000px;}
.ws1f{word-spacing:2.520000px;}
.ws28{word-spacing:2.592000px;}
.ws29{word-spacing:2.664000px;}
.ws74{word-spacing:2.736000px;}
.ws6e{word-spacing:2.808000px;}
.ws35{word-spacing:2.880000px;}
.ws73{word-spacing:2.952000px;}
.ws5d{word-spacing:3.024000px;}
.ws51{word-spacing:3.168000px;}
.ws2c{word-spacing:3.384000px;}
.ws65{word-spacing:3.480000px;}
.ws39{word-spacing:3.528000px;}
.ws5c{word-spacing:3.600000px;}
.ws20{word-spacing:3.672000px;}
.ws6b{word-spacing:3.744000px;}
.ws5b{word-spacing:3.780000px;}
.ws48{word-spacing:3.840000px;}
.ws3b{word-spacing:3.888000px;}
.ws7c{word-spacing:3.900000px;}
.ws60{word-spacing:3.960000px;}
.ws9{word-spacing:4.092000px;}
.wsc{word-spacing:4.290000px;}
.ws7f{word-spacing:4.320000px;}
.ws4f{word-spacing:4.392000px;}
.ws33{word-spacing:4.464000px;}
.ws26{word-spacing:4.536000px;}
.ws69{word-spacing:4.608000px;}
.ws37{word-spacing:4.752000px;}
.wsa{word-spacing:4.818000px;}
.ws66{word-spacing:4.860000px;}
.wsd{word-spacing:4.884000px;}
.ws34{word-spacing:4.896000px;}
.ws53{word-spacing:5.040000px;}
.ws24{word-spacing:5.112000px;}
.ws72{word-spacing:5.184000px;}
.ws10{word-spacing:5.280000px;}
.ws4e{word-spacing:5.328000px;}
.ws77{word-spacing:5.472000px;}
.ws7a{word-spacing:5.616000px;}
.ws76{word-spacing:5.760000px;}
.ws18{word-spacing:5.832000px;}
.ws15{word-spacing:5.874000px;}
.wsf{word-spacing:5.940000px;}
.ws4c{word-spacing:6.120000px;}
.ws2a{word-spacing:6.192000px;}
.ws7{word-spacing:6.204000px;}
.ws6a{word-spacing:6.552000px;}
.ws19{word-spacing:6.624000px;}
.ws7d{word-spacing:6.768000px;}
.ws71{word-spacing:6.840000px;}
.ws55{word-spacing:7.056000px;}
.ws59{word-spacing:7.200000px;}
.ws21{word-spacing:7.272000px;}
.ws56{word-spacing:7.344000px;}
.ws79{word-spacing:7.488000px;}
.wse{word-spacing:7.524000px;}
.ws75{word-spacing:7.632000px;}
.ws14{word-spacing:7.656000px;}
.ws4a{word-spacing:7.704000px;}
.ws58{word-spacing:7.848000px;}
.ws62{word-spacing:7.992000px;}
.ws6c{word-spacing:8.496000px;}
.ws36{word-spacing:8.712000px;}
.ws3f{word-spacing:10.512000px;}
.ws6d{word-spacing:12.240000px;}
._c{margin-left:-14.022000px;}
._d{margin-left:-9.506400px;}
._4{margin-left:-8.139600px;}
._3{margin-left:-6.888000px;}
._6{margin-left:-4.922640px;}
._1{margin-left:-3.118800px;}
._0{margin-left:-1.686000px;}
._2{width:1.602000px;}
._7{width:2.782200px;}
._5{width:3.838800px;}
._b{width:5.047200px;}
._a{width:6.865200px;}
._9{width:8.419200px;}
._e{width:9.429600px;}
._8{width:10.650000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,178,178);}
.fs4{font-size:38.478000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.592250px;}
.y50{bottom:84.799350px;}
.y9b{bottom:84.972000px;}
.y6f{bottom:85.025400px;}
.yf0{bottom:85.037250px;}
.y27{bottom:85.039500px;}
.y11d{bottom:85.062150px;}
.ye3{bottom:85.105800px;}
.y10c{bottom:85.115850px;}
.y13a{bottom:85.138200px;}
.ybd{bottom:85.157100px;}
.y162{bottom:85.213200px;}
.y26{bottom:103.039500px;}
.y161{bottom:107.767200px;}
.y139{bottom:107.944200px;}
.y10b{bottom:108.101850px;}
.y9a{bottom:108.174000px;}
.ybc{bottom:108.215100px;}
.y6e{bottom:108.875400px;}
.yef{bottom:109.211250px;}
.y11c{bottom:110.118150px;}
.y4f{bottom:111.403350px;}
.ye2{bottom:112.789800px;}
.y138{bottom:130.750200px;}
.y10a{bottom:131.087850px;}
.ybb{bottom:131.273100px;}
.y99{bottom:131.376000px;}
.y6d{bottom:132.725400px;}
.yee{bottom:133.385250px;}
.y11b{bottom:135.174150px;}
.y4e{bottom:138.007350px;}
.ye1{bottom:140.473800px;}
.y160{bottom:147.331200px;}
.y137{bottom:153.556200px;}
.y109{bottom:154.073850px;}
.yba{bottom:154.331100px;}
.y98{bottom:154.578000px;}
.y6c{bottom:156.575400px;}
.y11a{bottom:160.230150px;}
.y4d{bottom:164.611350px;}
.y25{bottom:166.633350px;}
.ye0{bottom:168.157800px;}
.y15f{bottom:169.885200px;}
.y136{bottom:176.362200px;}
.y108{bottom:177.059850px;}
.yb9{bottom:177.389100px;}
.y97{bottom:177.780000px;}
.y119{bottom:185.286150px;}
.y4c{bottom:191.215350px;}
.y15e{bottom:192.439200px;}
.ydf{bottom:195.841800px;}
.y135{bottom:199.168200px;}
.y107{bottom:200.045850px;}
.yb8{bottom:200.447100px;}
.y96{bottom:200.982000px;}
.y24{bottom:207.190350px;}
.y118{bottom:210.342150px;}
.y15d{bottom:214.993200px;}
.y4b{bottom:217.819350px;}
.y134{bottom:221.974200px;}
.y106{bottom:223.031850px;}
.yb7{bottom:223.505100px;}
.yde{bottom:223.525800px;}
.y95{bottom:224.184000px;}
.y23{bottom:230.752350px;}
.y117{bottom:235.398150px;}
.y15c{bottom:237.547200px;}
.y4a{bottom:244.423350px;}
.y133{bottom:244.780200px;}
.y105{bottom:246.017850px;}
.yb6{bottom:246.563100px;}
.y94{bottom:247.386000px;}
.ydd{bottom:251.209800px;}
.y22{bottom:254.314350px;}
.y116{bottom:260.454150px;}
.y132{bottom:267.586200px;}
.y104{bottom:269.003850px;}
.yb5{bottom:269.621100px;}
.y93{bottom:270.588000px;}
.y49{bottom:271.027350px;}
.y15b{bottom:277.111200px;}
.y21{bottom:277.876350px;}
.ydc{bottom:278.893800px;}
.y115{bottom:285.510150px;}
.y131{bottom:290.392200px;}
.y103{bottom:291.989850px;}
.yb4{bottom:292.679100px;}
.y92{bottom:293.790000px;}
.y48{bottom:297.631350px;}
.y15a{bottom:299.665200px;}
.y20{bottom:301.438350px;}
.ydb{bottom:306.577800px;}
.y130{bottom:313.198200px;}
.y102{bottom:314.975850px;}
.yb3{bottom:315.737100px;}
.y91{bottom:316.992000px;}
.y159{bottom:322.219200px;}
.y47{bottom:324.235350px;}
.y1f{bottom:325.000350px;}
.yda{bottom:334.261800px;}
.y12f{bottom:336.004200px;}
.y101{bottom:337.961850px;}
.yb2{bottom:338.795100px;}
.y158{bottom:344.773200px;}
.y1e{bottom:348.562350px;}
.y46{bottom:350.839350px;}
.y12e{bottom:358.810200px;}
.y100{bottom:360.947850px;}
.yb1{bottom:361.853100px;}
.yd9{bottom:361.945800px;}
.y1d{bottom:372.124350px;}
.y90{bottom:374.229450px;}
.y45{bottom:377.443350px;}
.yff{bottom:383.933850px;}
.y157{bottom:384.337200px;}
.yb0{bottom:384.911100px;}
.yd8{bottom:389.629800px;}
.y8f{bottom:392.919450px;}
.y1c{bottom:395.686350px;}
.y12d{bottom:398.626200px;}
.y44{bottom:404.047350px;}
.yfe{bottom:406.919850px;}
.yaf{bottom:407.969100px;}
.y8e{bottom:411.609450px;}
.yd7{bottom:417.313800px;}
.y1b{bottom:419.248350px;}
.y156{bottom:423.901200px;}
.yfd{bottom:429.905850px;}
.y8d{bottom:430.299450px;}
.y43{bottom:430.651350px;}
.yae{bottom:431.027100px;}
.y1a{bottom:442.810350px;}
.yd6{bottom:444.997800px;}
.y155{bottom:446.455200px;}
.y12c{bottom:446.956200px;}
.y8c{bottom:448.989450px;}
.yfc{bottom:452.891850px;}
.yad{bottom:454.085100px;}
.y42{bottom:457.255350px;}
.y6b{bottom:462.493350px;}
.y19{bottom:466.372350px;}
.y8b{bottom:467.679450px;}
.y154{bottom:469.009200px;}
.y12b{bottom:469.762200px;}
.yd5{bottom:472.681800px;}
.yfb{bottom:475.877850px;}
.yac{bottom:477.143100px;}
.y41{bottom:483.859350px;}
.y6a{bottom:486.343350px;}
.y18{bottom:489.934350px;}
.y153{bottom:491.563200px;}
.y12a{bottom:492.568200px;}
.yfa{bottom:498.863850px;}
.yab{bottom:500.201100px;}
.yd4{bottom:500.365800px;}
.y69{bottom:510.193350px;}
.y40{bottom:510.463350px;}
.y152{bottom:514.117200px;}
.y8a{bottom:520.237200px;}
.yaa{bottom:523.259100px;}
.yd3{bottom:528.049800px;}
.y68{bottom:534.043350px;}
.y3f{bottom:537.067350px;}
.yf9{bottom:538.859850px;}
.y17{bottom:539.005350px;}
.y89{bottom:543.439200px;}
.ya9{bottom:546.317100px;}
.y129{bottom:549.391200px;}
.y151{bottom:553.681200px;}
.yd2{bottom:555.733800px;}
.y67{bottom:557.893350px;}
.y3e{bottom:563.671350px;}
.y88{bottom:566.641200px;}
.y128{bottom:567.706200px;}
.ya8{bottom:569.375100px;}
.yed{bottom:571.748250px;}
.y150{bottom:576.235200px;}
.y16{bottom:579.562350px;}
.y66{bottom:581.743350px;}
.yd1{bottom:583.417800px;}
.y127{bottom:586.021200px;}
.y87{bottom:589.843200px;}
.y3d{bottom:590.275350px;}
.yec{bottom:591.428250px;}
.ya7{bottom:592.433100px;}
.y14f{bottom:598.789200px;}
.y15{bottom:603.124350px;}
.y126{bottom:604.336200px;}
.y65{bottom:605.593350px;}
.yd0{bottom:611.101800px;}
.yeb{bottom:611.108250px;}
.y86{bottom:613.045200px;}
.ya6{bottom:615.491100px;}
.y3c{bottom:616.879350px;}
.y14{bottom:626.686350px;}
.y64{bottom:629.443350px;}
.yea{bottom:630.788250px;}
.y85{bottom:636.247200px;}
.y14e{bottom:638.353200px;}
.ya5{bottom:638.549100px;}
.ycf{bottom:638.785800px;}
.y3b{bottom:643.483350px;}
.y13{bottom:650.248350px;}
.y63{bottom:653.293350px;}
.y125{bottom:656.714400px;}
.y84{bottom:659.449200px;}
.y14d{bottom:660.907200px;}
.ya4{bottom:661.607100px;}
.yce{bottom:666.469800px;}
.y3a{bottom:670.087350px;}
.y12{bottom:673.810350px;}
.y62{bottom:677.143350px;}
.y124{bottom:679.520400px;}
.y83{bottom:682.651200px;}
.y14c{bottom:683.461200px;}
.ye9{bottom:684.471750px;}
.ya3{bottom:684.665100px;}
.ycd{bottom:694.153800px;}
.y39{bottom:696.691350px;}
.y11{bottom:697.372350px;}
.y61{bottom:700.993350px;}
.y123{bottom:702.326400px;}
.y82{bottom:705.853200px;}
.y14b{bottom:706.015200px;}
.ya2{bottom:707.723100px;}
.ye8{bottom:708.645750px;}
.y114{bottom:718.766400px;}
.y10{bottom:720.934350px;}
.ycc{bottom:721.837800px;}
.y38{bottom:723.295350px;}
.y60{bottom:724.843350px;}
.y122{bottom:725.132400px;}
.y81{bottom:729.055200px;}
.ye7{bottom:732.819750px;}
.y113{bottom:743.822400px;}
.yf{bottom:744.496350px;}
.y14a{bottom:745.579200px;}
.y121{bottom:747.938400px;}
.y5f{bottom:748.693350px;}
.ycb{bottom:749.521800px;}
.y37{bottom:749.899350px;}
.ye6{bottom:756.993750px;}
.ye{bottom:768.058350px;}
.y149{bottom:768.133200px;}
.y112{bottom:768.878400px;}
.y80{bottom:769.249200px;}
.y120{bottom:770.744400px;}
.y5e{bottom:772.543350px;}
.y36{bottom:776.503350px;}
.yca{bottom:777.205800px;}
.ye5{bottom:781.167750px;}
.yd{bottom:791.620350px;}
.y7f{bottom:792.451200px;}
.y11f{bottom:793.550400px;}
.y111{bottom:793.934400px;}
.y5d{bottom:796.393350px;}
.y35{bottom:803.107350px;}
.ye4{bottom:805.341750px;}
.y148{bottom:807.697200px;}
.yc{bottom:815.182350px;}
.y11e{bottom:816.356400px;}
.y110{bottom:818.990400px;}
.y5c{bottom:820.243350px;}
.yc9{bottom:821.899800px;}
.y34{bottom:829.711350px;}
.y147{bottom:830.251200px;}
.yb{bottom:838.744350px;}
.y7e{bottom:841.159200px;}
.y10f{bottom:844.046400px;}
.y5b{bottom:844.093350px;}
.y33{bottom:856.315350px;}
.ya{bottom:862.306350px;}
.y7d{bottom:864.361200px;}
.y5a{bottom:867.943350px;}
.y10e{bottom:869.102400px;}
.y146{bottom:869.815200px;}
.yc8{bottom:875.089800px;}
.y32{bottom:882.919350px;}
.y7c{bottom:887.563200px;}
.y59{bottom:891.793350px;}
.y10d{bottom:894.158400px;}
.yc7{bottom:902.773800px;}
.y31{bottom:909.523350px;}
.y7b{bottom:910.765200px;}
.y9{bottom:911.377350px;}
.y58{bottom:915.643350px;}
.y145{bottom:917.893200px;}
.yc6{bottom:930.457800px;}
.y7a{bottom:933.967200px;}
.y30{bottom:936.127350px;}
.y57{bottom:939.493350px;}
.y144{bottom:940.447200px;}
.y79{bottom:957.169200px;}
.yc5{bottom:958.141800px;}
.y2f{bottom:962.731350px;}
.y143{bottom:963.001200px;}
.y56{bottom:963.343350px;}
.y78{bottom:980.371200px;}
.yf8{bottom:982.099200px;}
.y142{bottom:985.555200px;}
.yc4{bottom:985.825800px;}
.y55{bottom:987.193350px;}
.y2e{bottom:989.335350px;}
.y8{bottom:998.707650px;}
.y77{bottom:1003.573200px;}
.yf7{bottom:1005.085200px;}
.y141{bottom:1008.109200px;}
.y54{bottom:1011.043350px;}
.yc3{bottom:1013.509800px;}
.y2d{bottom:1015.939350px;}
.y7{bottom:1023.763650px;}
.y76{bottom:1026.775200px;}
.ya1{bottom:1027.639200px;}
.yf6{bottom:1028.071200px;}
.y140{bottom:1030.663200px;}
.y53{bottom:1034.893350px;}
.y2c{bottom:1042.543350px;}
.y6{bottom:1048.819650px;}
.y75{bottom:1049.977200px;}
.ya0{bottom:1050.697200px;}
.yf5{bottom:1051.057200px;}
.y13f{bottom:1053.217200px;}
.y2b{bottom:1069.147350px;}
.y74{bottom:1073.179200px;}
.y9f{bottom:1073.755200px;}
.yf4{bottom:1074.043200px;}
.yc2{bottom:1075.195200px;}
.y52{bottom:1075.753350px;}
.y13e{bottom:1075.771200px;}
.y2a{bottom:1095.751350px;}
.y73{bottom:1096.381200px;}
.y9e{bottom:1096.813200px;}
.yf3{bottom:1097.029200px;}
.y13d{bottom:1098.325200px;}
.yc1{bottom:1098.385200px;}
.y5{bottom:1107.886200px;}
.y72{bottom:1119.583200px;}
.y9d{bottom:1119.871200px;}
.yf2{bottom:1120.015200px;}
.y13c{bottom:1120.879200px;}
.yc0{bottom:1121.575200px;}
.y29{bottom:1122.355350px;}
.y4{bottom:1135.942200px;}
.y51{bottom:1142.119350px;}
.y71{bottom:1142.785200px;}
.y9c{bottom:1142.929200px;}
.yf1{bottom:1143.001200px;}
.y13b{bottom:1143.433200px;}
.ybf{bottom:1144.765200px;}
.y2{bottom:1162.675350px;}
.y3{bottom:1163.998200px;}
.y28{bottom:1165.969350px;}
.y70{bottom:1165.987200px;}
.ybe{bottom:1167.955200px;}
.ha{height:49.440000px;}
.hc{height:50.280000px;}
.hd{height:50.832000px;}
.h2{height:50.944286px;}
.h9{height:54.384000px;}
.h7{height:55.308000px;}
.h8{height:56.038714px;}
.hb{height:59.328000px;}
.h5{height:60.336000px;}
.h6{height:61.133143px;}
.h3{height:61.656000px;}
.h4{height:71.322000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x3{left:127.555350px;}
.x4{left:136.069350px;}
.x5{left:255.118050px;}
.x2{left:765.355800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:2.986667pt;}
.ls3{letter-spacing:6.400000pt;}
.ws5a{word-spacing:-15.168000pt;}
.ws80{word-spacing:-14.848000pt;}
.ws2{word-spacing:-13.904000pt;}
.ws82{word-spacing:-12.800000pt;}
.ws81{word-spacing:-12.480000pt;}
.ws1{word-spacing:-11.733333pt;}
.ws0{word-spacing:-6.840533pt;}
.ws4{word-spacing:-2.986667pt;}
.ws5f{word-spacing:-2.560000pt;}
.ws3e{word-spacing:-2.432000pt;}
.ws78{word-spacing:-2.368000pt;}
.ws30{word-spacing:-2.112000pt;}
.ws45{word-spacing:-2.080000pt;}
.ws4d{word-spacing:-2.048000pt;}
.ws43{word-spacing:-1.920000pt;}
.ws64{word-spacing:-1.856000pt;}
.ws7b{word-spacing:-1.792000pt;}
.ws38{word-spacing:-1.664000pt;}
.ws52{word-spacing:-1.600000pt;}
.ws44{word-spacing:-1.472000pt;}
.ws27{word-spacing:-1.216000pt;}
.ws6f{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.024000pt;}
.ws31{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.896000pt;}
.ws3a{word-spacing:-0.832000pt;}
.ws57{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.704000pt;}
.ws54{word-spacing:-0.640000pt;}
.ws3d{word-spacing:-0.576000pt;}
.ws63{word-spacing:-0.512000pt;}
.ws2d{word-spacing:-0.448000pt;}
.ws46{word-spacing:-0.373333pt;}
.ws16{word-spacing:-0.352000pt;}
.ws68{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.256000pt;}
.ws8{word-spacing:-0.117333pt;}
.ws23{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.128000pt;}
.ws50{word-spacing:0.256000pt;}
.ws32{word-spacing:0.320000pt;}
.ws7e{word-spacing:0.384000pt;}
.ws11{word-spacing:0.528000pt;}
.ws40{word-spacing:0.576000pt;}
.ws1d{word-spacing:0.640000pt;}
.ws83{word-spacing:0.704000pt;}
.ws61{word-spacing:0.768000pt;}
.ws41{word-spacing:0.896000pt;}
.ws25{word-spacing:0.960000pt;}
.ws49{word-spacing:1.013333pt;}
.ws42{word-spacing:1.024000pt;}
.ws1c{word-spacing:1.152000pt;}
.ws2f{word-spacing:1.216000pt;}
.ws4b{word-spacing:1.344000pt;}
.ws13{word-spacing:1.525333pt;}
.ws5e{word-spacing:1.536000pt;}
.ws1a{word-spacing:1.600000pt;}
.ws12{word-spacing:1.642667pt;}
.ws70{word-spacing:1.664000pt;}
.ws67{word-spacing:1.792000pt;}
.ws5{word-spacing:1.877333pt;}
.ws1e{word-spacing:1.920000pt;}
.ws2e{word-spacing:1.984000pt;}
.wsb{word-spacing:2.112000pt;}
.ws6{word-spacing:2.170667pt;}
.ws47{word-spacing:2.186667pt;}
.ws1f{word-spacing:2.240000pt;}
.ws28{word-spacing:2.304000pt;}
.ws29{word-spacing:2.368000pt;}
.ws74{word-spacing:2.432000pt;}
.ws6e{word-spacing:2.496000pt;}
.ws35{word-spacing:2.560000pt;}
.ws73{word-spacing:2.624000pt;}
.ws5d{word-spacing:2.688000pt;}
.ws51{word-spacing:2.816000pt;}
.ws2c{word-spacing:3.008000pt;}
.ws65{word-spacing:3.093333pt;}
.ws39{word-spacing:3.136000pt;}
.ws5c{word-spacing:3.200000pt;}
.ws20{word-spacing:3.264000pt;}
.ws6b{word-spacing:3.328000pt;}
.ws5b{word-spacing:3.360000pt;}
.ws48{word-spacing:3.413333pt;}
.ws3b{word-spacing:3.456000pt;}
.ws7c{word-spacing:3.466667pt;}
.ws60{word-spacing:3.520000pt;}
.ws9{word-spacing:3.637333pt;}
.wsc{word-spacing:3.813333pt;}
.ws7f{word-spacing:3.840000pt;}
.ws4f{word-spacing:3.904000pt;}
.ws33{word-spacing:3.968000pt;}
.ws26{word-spacing:4.032000pt;}
.ws69{word-spacing:4.096000pt;}
.ws37{word-spacing:4.224000pt;}
.wsa{word-spacing:4.282667pt;}
.ws66{word-spacing:4.320000pt;}
.wsd{word-spacing:4.341333pt;}
.ws34{word-spacing:4.352000pt;}
.ws53{word-spacing:4.480000pt;}
.ws24{word-spacing:4.544000pt;}
.ws72{word-spacing:4.608000pt;}
.ws10{word-spacing:4.693333pt;}
.ws4e{word-spacing:4.736000pt;}
.ws77{word-spacing:4.864000pt;}
.ws7a{word-spacing:4.992000pt;}
.ws76{word-spacing:5.120000pt;}
.ws18{word-spacing:5.184000pt;}
.ws15{word-spacing:5.221333pt;}
.wsf{word-spacing:5.280000pt;}
.ws4c{word-spacing:5.440000pt;}
.ws2a{word-spacing:5.504000pt;}
.ws7{word-spacing:5.514667pt;}
.ws6a{word-spacing:5.824000pt;}
.ws19{word-spacing:5.888000pt;}
.ws7d{word-spacing:6.016000pt;}
.ws71{word-spacing:6.080000pt;}
.ws55{word-spacing:6.272000pt;}
.ws59{word-spacing:6.400000pt;}
.ws21{word-spacing:6.464000pt;}
.ws56{word-spacing:6.528000pt;}
.ws79{word-spacing:6.656000pt;}
.wse{word-spacing:6.688000pt;}
.ws75{word-spacing:6.784000pt;}
.ws14{word-spacing:6.805333pt;}
.ws4a{word-spacing:6.848000pt;}
.ws58{word-spacing:6.976000pt;}
.ws62{word-spacing:7.104000pt;}
.ws6c{word-spacing:7.552000pt;}
.ws36{word-spacing:7.744000pt;}
.ws3f{word-spacing:9.344000pt;}
.ws6d{word-spacing:10.880000pt;}
._c{margin-left:-12.464000pt;}
._d{margin-left:-8.450133pt;}
._4{margin-left:-7.235200pt;}
._3{margin-left:-6.122667pt;}
._6{margin-left:-4.375680pt;}
._1{margin-left:-2.772267pt;}
._0{margin-left:-1.498667pt;}
._2{width:1.424000pt;}
._7{width:2.473067pt;}
._5{width:3.412267pt;}
._b{width:4.486400pt;}
._a{width:6.102400pt;}
._9{width:7.483733pt;}
._e{width:8.381867pt;}
._8{width:9.466667pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.415333pt;}
.y50{bottom:75.377200pt;}
.y9b{bottom:75.530667pt;}
.y6f{bottom:75.578133pt;}
.yf0{bottom:75.588667pt;}
.y27{bottom:75.590667pt;}
.y11d{bottom:75.610800pt;}
.ye3{bottom:75.649600pt;}
.y10c{bottom:75.658533pt;}
.y13a{bottom:75.678400pt;}
.ybd{bottom:75.695200pt;}
.y162{bottom:75.745067pt;}
.y26{bottom:91.590667pt;}
.y161{bottom:95.793067pt;}
.y139{bottom:95.950400pt;}
.y10b{bottom:96.090533pt;}
.y9a{bottom:96.154667pt;}
.ybc{bottom:96.191200pt;}
.y6e{bottom:96.778133pt;}
.yef{bottom:97.076667pt;}
.y11c{bottom:97.882800pt;}
.y4f{bottom:99.025200pt;}
.ye2{bottom:100.257600pt;}
.y138{bottom:116.222400pt;}
.y10a{bottom:116.522533pt;}
.ybb{bottom:116.687200pt;}
.y99{bottom:116.778667pt;}
.y6d{bottom:117.978133pt;}
.yee{bottom:118.564667pt;}
.y11b{bottom:120.154800pt;}
.y4e{bottom:122.673200pt;}
.ye1{bottom:124.865600pt;}
.y160{bottom:130.961067pt;}
.y137{bottom:136.494400pt;}
.y109{bottom:136.954533pt;}
.yba{bottom:137.183200pt;}
.y98{bottom:137.402667pt;}
.y6c{bottom:139.178133pt;}
.y11a{bottom:142.426800pt;}
.y4d{bottom:146.321200pt;}
.y25{bottom:148.118533pt;}
.ye0{bottom:149.473600pt;}
.y15f{bottom:151.009067pt;}
.y136{bottom:156.766400pt;}
.y108{bottom:157.386533pt;}
.yb9{bottom:157.679200pt;}
.y97{bottom:158.026667pt;}
.y119{bottom:164.698800pt;}
.y4c{bottom:169.969200pt;}
.y15e{bottom:171.057067pt;}
.ydf{bottom:174.081600pt;}
.y135{bottom:177.038400pt;}
.y107{bottom:177.818533pt;}
.yb8{bottom:178.175200pt;}
.y96{bottom:178.650667pt;}
.y24{bottom:184.169200pt;}
.y118{bottom:186.970800pt;}
.y15d{bottom:191.105067pt;}
.y4b{bottom:193.617200pt;}
.y134{bottom:197.310400pt;}
.y106{bottom:198.250533pt;}
.yb7{bottom:198.671200pt;}
.yde{bottom:198.689600pt;}
.y95{bottom:199.274667pt;}
.y23{bottom:205.113200pt;}
.y117{bottom:209.242800pt;}
.y15c{bottom:211.153067pt;}
.y4a{bottom:217.265200pt;}
.y133{bottom:217.582400pt;}
.y105{bottom:218.682533pt;}
.yb6{bottom:219.167200pt;}
.y94{bottom:219.898667pt;}
.ydd{bottom:223.297600pt;}
.y22{bottom:226.057200pt;}
.y116{bottom:231.514800pt;}
.y132{bottom:237.854400pt;}
.y104{bottom:239.114533pt;}
.yb5{bottom:239.663200pt;}
.y93{bottom:240.522667pt;}
.y49{bottom:240.913200pt;}
.y15b{bottom:246.321067pt;}
.y21{bottom:247.001200pt;}
.ydc{bottom:247.905600pt;}
.y115{bottom:253.786800pt;}
.y131{bottom:258.126400pt;}
.y103{bottom:259.546533pt;}
.yb4{bottom:260.159200pt;}
.y92{bottom:261.146667pt;}
.y48{bottom:264.561200pt;}
.y15a{bottom:266.369067pt;}
.y20{bottom:267.945200pt;}
.ydb{bottom:272.513600pt;}
.y130{bottom:278.398400pt;}
.y102{bottom:279.978533pt;}
.yb3{bottom:280.655200pt;}
.y91{bottom:281.770667pt;}
.y159{bottom:286.417067pt;}
.y47{bottom:288.209200pt;}
.y1f{bottom:288.889200pt;}
.yda{bottom:297.121600pt;}
.y12f{bottom:298.670400pt;}
.y101{bottom:300.410533pt;}
.yb2{bottom:301.151200pt;}
.y158{bottom:306.465067pt;}
.y1e{bottom:309.833200pt;}
.y46{bottom:311.857200pt;}
.y12e{bottom:318.942400pt;}
.y100{bottom:320.842533pt;}
.yb1{bottom:321.647200pt;}
.yd9{bottom:321.729600pt;}
.y1d{bottom:330.777200pt;}
.y90{bottom:332.648400pt;}
.y45{bottom:335.505200pt;}
.yff{bottom:341.274533pt;}
.y157{bottom:341.633067pt;}
.yb0{bottom:342.143200pt;}
.yd8{bottom:346.337600pt;}
.y8f{bottom:349.261733pt;}
.y1c{bottom:351.721200pt;}
.y12d{bottom:354.334400pt;}
.y44{bottom:359.153200pt;}
.yfe{bottom:361.706533pt;}
.yaf{bottom:362.639200pt;}
.y8e{bottom:365.875067pt;}
.yd7{bottom:370.945600pt;}
.y1b{bottom:372.665200pt;}
.y156{bottom:376.801067pt;}
.yfd{bottom:382.138533pt;}
.y8d{bottom:382.488400pt;}
.y43{bottom:382.801200pt;}
.yae{bottom:383.135200pt;}
.y1a{bottom:393.609200pt;}
.yd6{bottom:395.553600pt;}
.y155{bottom:396.849067pt;}
.y12c{bottom:397.294400pt;}
.y8c{bottom:399.101733pt;}
.yfc{bottom:402.570533pt;}
.yad{bottom:403.631200pt;}
.y42{bottom:406.449200pt;}
.y6b{bottom:411.105200pt;}
.y19{bottom:414.553200pt;}
.y8b{bottom:415.715067pt;}
.y154{bottom:416.897067pt;}
.y12b{bottom:417.566400pt;}
.yd5{bottom:420.161600pt;}
.yfb{bottom:423.002533pt;}
.yac{bottom:424.127200pt;}
.y41{bottom:430.097200pt;}
.y6a{bottom:432.305200pt;}
.y18{bottom:435.497200pt;}
.y153{bottom:436.945067pt;}
.y12a{bottom:437.838400pt;}
.yfa{bottom:443.434533pt;}
.yab{bottom:444.623200pt;}
.yd4{bottom:444.769600pt;}
.y69{bottom:453.505200pt;}
.y40{bottom:453.745200pt;}
.y152{bottom:456.993067pt;}
.y8a{bottom:462.433067pt;}
.yaa{bottom:465.119200pt;}
.yd3{bottom:469.377600pt;}
.y68{bottom:474.705200pt;}
.y3f{bottom:477.393200pt;}
.yf9{bottom:478.986533pt;}
.y17{bottom:479.115867pt;}
.y89{bottom:483.057067pt;}
.ya9{bottom:485.615200pt;}
.y129{bottom:488.347733pt;}
.y151{bottom:492.161067pt;}
.yd2{bottom:493.985600pt;}
.y67{bottom:495.905200pt;}
.y3e{bottom:501.041200pt;}
.y88{bottom:503.681067pt;}
.y128{bottom:504.627733pt;}
.ya8{bottom:506.111200pt;}
.yed{bottom:508.220667pt;}
.y150{bottom:512.209067pt;}
.y16{bottom:515.166533pt;}
.y66{bottom:517.105200pt;}
.yd1{bottom:518.593600pt;}
.y127{bottom:520.907733pt;}
.y87{bottom:524.305067pt;}
.y3d{bottom:524.689200pt;}
.yec{bottom:525.714000pt;}
.ya7{bottom:526.607200pt;}
.y14f{bottom:532.257067pt;}
.y15{bottom:536.110533pt;}
.y126{bottom:537.187733pt;}
.y65{bottom:538.305200pt;}
.yd0{bottom:543.201600pt;}
.yeb{bottom:543.207333pt;}
.y86{bottom:544.929067pt;}
.ya6{bottom:547.103200pt;}
.y3c{bottom:548.337200pt;}
.y14{bottom:557.054533pt;}
.y64{bottom:559.505200pt;}
.yea{bottom:560.700667pt;}
.y85{bottom:565.553067pt;}
.y14e{bottom:567.425067pt;}
.ya5{bottom:567.599200pt;}
.ycf{bottom:567.809600pt;}
.y3b{bottom:571.985200pt;}
.y13{bottom:577.998533pt;}
.y63{bottom:580.705200pt;}
.y125{bottom:583.746133pt;}
.y84{bottom:586.177067pt;}
.y14d{bottom:587.473067pt;}
.ya4{bottom:588.095200pt;}
.yce{bottom:592.417600pt;}
.y3a{bottom:595.633200pt;}
.y12{bottom:598.942533pt;}
.y62{bottom:601.905200pt;}
.y124{bottom:604.018133pt;}
.y83{bottom:606.801067pt;}
.y14c{bottom:607.521067pt;}
.ye9{bottom:608.419333pt;}
.ya3{bottom:608.591200pt;}
.ycd{bottom:617.025600pt;}
.y39{bottom:619.281200pt;}
.y11{bottom:619.886533pt;}
.y61{bottom:623.105200pt;}
.y123{bottom:624.290133pt;}
.y82{bottom:627.425067pt;}
.y14b{bottom:627.569067pt;}
.ya2{bottom:629.087200pt;}
.ye8{bottom:629.907333pt;}
.y114{bottom:638.903467pt;}
.y10{bottom:640.830533pt;}
.ycc{bottom:641.633600pt;}
.y38{bottom:642.929200pt;}
.y60{bottom:644.305200pt;}
.y122{bottom:644.562133pt;}
.y81{bottom:648.049067pt;}
.ye7{bottom:651.395333pt;}
.y113{bottom:661.175467pt;}
.yf{bottom:661.774533pt;}
.y14a{bottom:662.737067pt;}
.y121{bottom:664.834133pt;}
.y5f{bottom:665.505200pt;}
.ycb{bottom:666.241600pt;}
.y37{bottom:666.577200pt;}
.ye6{bottom:672.883333pt;}
.ye{bottom:682.718533pt;}
.y149{bottom:682.785067pt;}
.y112{bottom:683.447467pt;}
.y80{bottom:683.777067pt;}
.y120{bottom:685.106133pt;}
.y5e{bottom:686.705200pt;}
.y36{bottom:690.225200pt;}
.yca{bottom:690.849600pt;}
.ye5{bottom:694.371333pt;}
.yd{bottom:703.662533pt;}
.y7f{bottom:704.401067pt;}
.y11f{bottom:705.378133pt;}
.y111{bottom:705.719467pt;}
.y5d{bottom:707.905200pt;}
.y35{bottom:713.873200pt;}
.ye4{bottom:715.859333pt;}
.y148{bottom:717.953067pt;}
.yc{bottom:724.606533pt;}
.y11e{bottom:725.650133pt;}
.y110{bottom:727.991467pt;}
.y5c{bottom:729.105200pt;}
.yc9{bottom:730.577600pt;}
.y34{bottom:737.521200pt;}
.y147{bottom:738.001067pt;}
.yb{bottom:745.550533pt;}
.y7e{bottom:747.697067pt;}
.y10f{bottom:750.263467pt;}
.y5b{bottom:750.305200pt;}
.y33{bottom:761.169200pt;}
.ya{bottom:766.494533pt;}
.y7d{bottom:768.321067pt;}
.y5a{bottom:771.505200pt;}
.y10e{bottom:772.535467pt;}
.y146{bottom:773.169067pt;}
.yc8{bottom:777.857600pt;}
.y32{bottom:784.817200pt;}
.y7c{bottom:788.945067pt;}
.y59{bottom:792.705200pt;}
.y10d{bottom:794.807467pt;}
.yc7{bottom:802.465600pt;}
.y31{bottom:808.465200pt;}
.y7b{bottom:809.569067pt;}
.y9{bottom:810.113200pt;}
.y58{bottom:813.905200pt;}
.y145{bottom:815.905067pt;}
.yc6{bottom:827.073600pt;}
.y7a{bottom:830.193067pt;}
.y30{bottom:832.113200pt;}
.y57{bottom:835.105200pt;}
.y144{bottom:835.953067pt;}
.y79{bottom:850.817067pt;}
.yc5{bottom:851.681600pt;}
.y2f{bottom:855.761200pt;}
.y143{bottom:856.001067pt;}
.y56{bottom:856.305200pt;}
.y78{bottom:871.441067pt;}
.yf8{bottom:872.977067pt;}
.y142{bottom:876.049067pt;}
.yc4{bottom:876.289600pt;}
.y55{bottom:877.505200pt;}
.y2e{bottom:879.409200pt;}
.y8{bottom:887.740133pt;}
.y77{bottom:892.065067pt;}
.yf7{bottom:893.409067pt;}
.y141{bottom:896.097067pt;}
.y54{bottom:898.705200pt;}
.yc3{bottom:900.897600pt;}
.y2d{bottom:903.057200pt;}
.y7{bottom:910.012133pt;}
.y76{bottom:912.689067pt;}
.ya1{bottom:913.457067pt;}
.yf6{bottom:913.841067pt;}
.y140{bottom:916.145067pt;}
.y53{bottom:919.905200pt;}
.y2c{bottom:926.705200pt;}
.y6{bottom:932.284133pt;}
.y75{bottom:933.313067pt;}
.ya0{bottom:933.953067pt;}
.yf5{bottom:934.273067pt;}
.y13f{bottom:936.193067pt;}
.y2b{bottom:950.353200pt;}
.y74{bottom:953.937067pt;}
.y9f{bottom:954.449067pt;}
.yf4{bottom:954.705067pt;}
.yc2{bottom:955.729067pt;}
.y52{bottom:956.225200pt;}
.y13e{bottom:956.241067pt;}
.y2a{bottom:974.001200pt;}
.y73{bottom:974.561067pt;}
.y9e{bottom:974.945067pt;}
.yf3{bottom:975.137067pt;}
.y13d{bottom:976.289067pt;}
.yc1{bottom:976.342400pt;}
.y5{bottom:984.787733pt;}
.y72{bottom:995.185067pt;}
.y9d{bottom:995.441067pt;}
.yf2{bottom:995.569067pt;}
.y13c{bottom:996.337067pt;}
.yc0{bottom:996.955733pt;}
.y29{bottom:997.649200pt;}
.y4{bottom:1009.726400pt;}
.y51{bottom:1015.217200pt;}
.y71{bottom:1015.809067pt;}
.y9c{bottom:1015.937067pt;}
.yf1{bottom:1016.001067pt;}
.y13b{bottom:1016.385067pt;}
.ybf{bottom:1017.569067pt;}
.y2{bottom:1033.489200pt;}
.y3{bottom:1034.665067pt;}
.y28{bottom:1036.417200pt;}
.y70{bottom:1036.433067pt;}
.ybe{bottom:1038.182400pt;}
.ha{height:43.946667pt;}
.hc{height:44.693333pt;}
.hd{height:45.184000pt;}
.h2{height:45.283810pt;}
.h9{height:48.341333pt;}
.h7{height:49.162667pt;}
.h8{height:49.812190pt;}
.hb{height:52.736000pt;}
.h5{height:53.632000pt;}
.h6{height:54.340571pt;}
.h3{height:54.805333pt;}
.h4{height:63.397333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x3{left:113.382533pt;}
.x4{left:120.950533pt;}
.x5{left:226.771600pt;}
.x2{left:680.316267pt;}
}




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