
    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_3c4a41b3cfe17a55f4d5bcdd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9968e768887fcc9bd62b0b23.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c53aba278ac448c4ba8046c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_de17ed9bc96d0a0f2d78ae9e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.010254;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_ff5397c5014b3df11ace7826.woff')format("woff");}.ff5{font-family:ff5;line-height:0.994141;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_1266b176db466dfae13002f6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.010742;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_c7c5ba105633e09343ddd59a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_799f4a034c5994951e7444e1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff9{font-family:ff9;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4a0651a04da4562ca3ea2e00.woff')format("woff");}.ffa{font-family:ffa;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d8cffbffb32678badde04acd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.888000px;}
.ls17{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.714000px;}
.ls1c{letter-spacing:-0.555600px;}
.lsd{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.244800px;}
.ls1b{letter-spacing:-0.166800px;}
.ls14{letter-spacing:-0.150000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.014400px;}
.ls1d{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.152400px;}
.ls18{letter-spacing:0.164400px;}
.ls5{letter-spacing:0.172800px;}
.ls19{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.305400px;}
.ls15{letter-spacing:6.785280px;}
.lsa{letter-spacing:13.680000px;}
.ls9{letter-spacing:21.905280px;}
.lsf{letter-spacing:26.640000px;}
.lsb{letter-spacing:28.080000px;}
.lse{letter-spacing:29.105280px;}
.ls8{letter-spacing:35.009280px;}
.ls1{letter-spacing:40.049280px;}
.ls12{letter-spacing:49.961280px;}
.ls2{letter-spacing:55.745280px;}
.ls7{letter-spacing:59.489280px;}
.ls0{letter-spacing:85.985280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws1{word-spacing:-23.601600px;}
.ws0{word-spacing:-23.587200px;}
.ws6{word-spacing:-16.865400px;}
.wse{word-spacing:-16.724400px;}
.ws2{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.565760px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.410000px;}
.ws10{word-spacing:-16.393200px;}
.ws8{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.ws7{word-spacing:-16.145400px;}
.ws11{word-spacing:-16.004400px;}
.wsf{word-spacing:-15.846000px;}
.wsd{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.672000px;}
.wsa{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.351440px;}
._b{width:2.472480px;}
._2{width:4.106880px;}
._3{width:5.232960px;}
._4{width:6.955200px;}
._5{width:8.029200px;}
._12{width:9.102960px;}
._9{width:10.200960px;}
._a{width:11.276880px;}
._c{width:13.181760px;}
._d{width:14.182320px;}
._6{width:15.192000px;}
._19{width:17.690880px;}
._7{width:18.866880px;}
._8{width:20.050560px;}
._13{width:21.991680px;}
._14{width:23.404800px;}
._1a{width:25.038720px;}
._15{width:26.893440px;}
._16{width:28.131360px;}
._17{width:29.874240px;}
._18{width:31.420800px;}
._f{width:33.120000px;}
._e{width:34.799040px;}
._26{width:41.664960px;}
._1b{width:45.838080px;}
._11{width:47.527680px;}
._10{width:48.861840px;}
._22{width:51.508320px;}
._1f{width:55.045440px;}
._29{width:70.545600px;}
._1c{width:84.816000px;}
._1d{width:87.900480px;}
._27{width:89.354160px;}
._25{width:91.543680px;}
._20{width:94.149600px;}
._23{width:102.407040px;}
._24{width:103.423680px;}
._1e{width:117.576000px;}
._21{width:155.067840px;}
._28{width:157.849920px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:58.356000px;}
.y6{bottom:79.056000px;}
.y5{bottom:100.116000px;}
.y10c{bottom:123.336000px;}
.y61{bottom:124.776000px;}
.y135{bottom:125.496000px;}
.ye2{bottom:126.036000px;}
.y8e{bottom:130.356000px;}
.y151{bottom:131.076000px;}
.ybe{bottom:132.336000px;}
.y34{bottom:133.416000px;}
.y10b{bottom:143.856000px;}
.y60{bottom:145.296000px;}
.y134{bottom:146.016000px;}
.ye1{bottom:147.456000px;}
.y8d{bottom:150.870000px;}
.y150{bottom:151.410000px;}
.ybd{bottom:153.390000px;}
.y33{bottom:154.650000px;}
.y10a{bottom:164.370000px;}
.y5f{bottom:165.810000px;}
.y133{bottom:166.530000px;}
.ye0{bottom:167.970000px;}
.y171{bottom:169.590000px;}
.y8c{bottom:171.390000px;}
.y14f{bottom:171.930000px;}
.ybc{bottom:173.730000px;}
.y32{bottom:175.890000px;}
.y109{bottom:184.710000px;}
.y5e{bottom:186.330000px;}
.y132{bottom:187.050000px;}
.ydf{bottom:188.490000px;}
.y170{bottom:190.110000px;}
.y8b{bottom:191.910000px;}
.y14e{bottom:192.450000px;}
.ybb{bottom:194.250000px;}
.y31{bottom:196.950000px;}
.y108{bottom:205.230000px;}
.y5d{bottom:206.670000px;}
.y131{bottom:207.570000px;}
.yde{bottom:209.010000px;}
.y16f{bottom:210.630000px;}
.y8a{bottom:212.430000px;}
.y14d{bottom:212.970000px;}
.yba{bottom:214.590000px;}
.y30{bottom:216.750000px;}
.y107{bottom:225.750000px;}
.y5c{bottom:227.190000px;}
.y130{bottom:228.090000px;}
.ydd{bottom:229.530000px;}
.y16e{bottom:230.970000px;}
.y89{bottom:232.950000px;}
.y14c{bottom:233.490000px;}
.yb9{bottom:235.470000px;}
.y2f{bottom:237.090000px;}
.y106{bottom:245.910000px;}
.y5b{bottom:247.710000px;}
.y12f{bottom:248.610000px;}
.ydc{bottom:250.050000px;}
.y16d{bottom:251.490000px;}
.y88{bottom:253.470000px;}
.y14b{bottom:254.010000px;}
.yb8{bottom:255.810000px;}
.y2e{bottom:257.610000px;}
.y105{bottom:267.150000px;}
.y5a{bottom:268.230000px;}
.y12e{bottom:269.130000px;}
.ydb{bottom:270.570000px;}
.y16c{bottom:272.010000px;}
.y87{bottom:274.035000px;}
.y14a{bottom:274.575000px;}
.yb7{bottom:276.375000px;}
.y2d{bottom:278.175000px;}
.y104{bottom:288.615000px;}
.y59{bottom:288.795000px;}
.y12d{bottom:289.695000px;}
.yda{bottom:290.595000px;}
.y16b{bottom:292.575000px;}
.y86{bottom:294.375000px;}
.y149{bottom:295.095000px;}
.yb6{bottom:296.895000px;}
.y2c{bottom:298.695000px;}
.y103{bottom:309.135000px;}
.y58{bottom:309.315000px;}
.y12c{bottom:310.215000px;}
.yd9{bottom:312.015000px;}
.y16a{bottom:313.095000px;}
.y85{bottom:314.895000px;}
.y148{bottom:315.615000px;}
.yb5{bottom:317.055000px;}
.y2b{bottom:319.215000px;}
.y57{bottom:329.295000px;}
.y102{bottom:329.475000px;}
.y12b{bottom:330.555000px;}
.yd8{bottom:332.355000px;}
.y169{bottom:333.615000px;}
.y84{bottom:335.415000px;}
.y147{bottom:336.135000px;}
.yb4{bottom:337.215000px;}
.y2a{bottom:339.735000px;}
.y56{bottom:349.635000px;}
.y101{bottom:349.995000px;}
.y12a{bottom:351.075000px;}
.yd7{bottom:353.775000px;}
.y168{bottom:354.135000px;}
.ya1{bottom:355.575000px;}
.y83{bottom:355.935000px;}
.y146{bottom:356.655000px;}
.yb3{bottom:357.735000px;}
.y29{bottom:360.255000px;}
.y55{bottom:370.155000px;}
.y100{bottom:370.515000px;}
.y129{bottom:371.595000px;}
.yd6{bottom:374.295000px;}
.y167{bottom:374.655000px;}
.ya0{bottom:375.375000px;}
.y82{bottom:376.455000px;}
.y145{bottom:376.995000px;}
.yb2{bottom:378.255000px;}
.y28{bottom:380.775000px;}
.y54{bottom:390.675000px;}
.yff{bottom:391.035000px;}
.y128{bottom:392.115000px;}
.yd5{bottom:394.815000px;}
.y166{bottom:395.175000px;}
.y9f{bottom:395.715000px;}
.y81{bottom:396.975000px;}
.y144{bottom:397.515000px;}
.yb1{bottom:398.775000px;}
.y27{bottom:401.295000px;}
.y53{bottom:410.835000px;}
.yfe{bottom:411.195000px;}
.y127{bottom:412.275000px;}
.yd4{bottom:415.335000px;}
.y165{bottom:415.695000px;}
.y9e{bottom:416.235000px;}
.y80{bottom:417.495000px;}
.y143{bottom:418.035000px;}
.yb0{bottom:419.295000px;}
.y26{bottom:421.815000px;}
.y52{bottom:431.175000px;}
.yfd{bottom:432.615000px;}
.yd3{bottom:435.855000px;}
.y164{bottom:436.215000px;}
.y9d{bottom:436.755000px;}
.y7f{bottom:438.015000px;}
.y142{bottom:438.555000px;}
.yaf{bottom:439.455000px;}
.y25{bottom:442.335000px;}
.y51{bottom:451.695000px;}
.yfc{bottom:452.955000px;}
.y126{bottom:453.135000px;}
.yd2{bottom:456.375000px;}
.y163{bottom:456.735000px;}
.y9c{bottom:457.275000px;}
.y7e{bottom:457.995000px;}
.y141{bottom:459.075000px;}
.yae{bottom:459.795000px;}
.y24{bottom:462.675000px;}
.y50{bottom:472.035000px;}
.y125{bottom:473.475000px;}
.yfb{bottom:474.375000px;}
.yd1{bottom:476.715000px;}
.y162{bottom:477.075000px;}
.y9b{bottom:477.795000px;}
.y7d{bottom:478.335000px;}
.y140{bottom:479.595000px;}
.yad{bottom:480.135000px;}
.y23{bottom:483.195000px;}
.y4f{bottom:492.555000px;}
.y124{bottom:493.995000px;}
.yfa{bottom:494.715000px;}
.yd0{bottom:497.235000px;}
.y161{bottom:497.595000px;}
.y9a{bottom:498.315000px;}
.y7c{bottom:498.855000px;}
.y13f{bottom:500.115000px;}
.yac{bottom:500.655000px;}
.y22{bottom:503.715000px;}
.y4e{bottom:513.075000px;}
.y123{bottom:514.515000px;}
.yf9{bottom:515.235000px;}
.ycf{bottom:517.395000px;}
.y160{bottom:518.115000px;}
.y99{bottom:518.835000px;}
.y7b{bottom:519.375000px;}
.y13e{bottom:520.635000px;}
.yab{bottom:520.815000px;}
.y21{bottom:524.235000px;}
.y4d{bottom:533.595000px;}
.y122{bottom:535.035000px;}
.yf8{bottom:535.755000px;}
.y15f{bottom:538.635000px;}
.yce{bottom:538.815000px;}
.y98{bottom:539.355000px;}
.y7a{bottom:539.895000px;}
.yaa{bottom:541.155000px;}
.y20{bottom:544.395000px;}
.y4c{bottom:554.115000px;}
.y121{bottom:555.555000px;}
.yf7{bottom:556.305000px;}
.ycd{bottom:559.185000px;}
.y97{bottom:559.725000px;}
.y79{bottom:559.905000px;}
.ya9{bottom:561.705000px;}
.y1f{bottom:564.765000px;}
.y4b{bottom:574.665000px;}
.y120{bottom:575.745000px;}
.yf6{bottom:576.825000px;}
.y15e{bottom:579.705000px;}
.y78{bottom:580.245000px;}
.ycc{bottom:580.605000px;}
.ya8{bottom:582.225000px;}
.y1e{bottom:585.285000px;}
.y4a{bottom:595.185000px;}
.y11f{bottom:596.985000px;}
.yf5{bottom:597.345000px;}
.y15d{bottom:600.225000px;}
.ycb{bottom:600.585000px;}
.y77{bottom:600.765000px;}
.ya7{bottom:602.205000px;}
.y13d{bottom:602.745000px;}
.y1d{bottom:605.445000px;}
.y49{bottom:615.705000px;}
.y11e{bottom:617.325000px;}
.yf4{bottom:617.865000px;}
.y15c{bottom:620.745000px;}
.yca{bottom:620.925000px;}
.y76{bottom:621.285000px;}
.ya6{bottom:622.545000px;}
.y13c{bottom:623.085000px;}
.y1c{bottom:625.425000px;}
.y48{bottom:636.225000px;}
.yf3{bottom:637.845000px;}
.y11d{bottom:638.745000px;}
.y15b{bottom:641.265000px;}
.yc9{bottom:641.445000px;}
.y75{bottom:641.805000px;}
.ya5{bottom:643.065000px;}
.y13b{bottom:643.605000px;}
.y1b{bottom:645.225000px;}
.y47{bottom:656.205000px;}
.yf2{bottom:659.085000px;}
.y11c{bottom:659.265000px;}
.y15a{bottom:661.785000px;}
.yc8{bottom:661.965000px;}
.y74{bottom:662.325000px;}
.ya4{bottom:663.585000px;}
.y13a{bottom:664.125000px;}
.y1a{bottom:665.205000px;}
.y46{bottom:676.545000px;}
.y11b{bottom:679.785000px;}
.yf1{bottom:680.505000px;}
.yc7{bottom:682.305000px;}
.y73{bottom:682.845000px;}
.ya3{bottom:683.565000px;}
.y139{bottom:684.285000px;}
.y19{bottom:685.005000px;}
.y45{bottom:697.065000px;}
.y11a{bottom:700.305000px;}
.yf0{bottom:701.025000px;}
.y159{bottom:702.645000px;}
.yc6{bottom:703.185000px;}
.y72{bottom:703.365000px;}
.ya2{bottom:703.545000px;}
.y138{bottom:704.085000px;}
.y18{bottom:704.985000px;}
.y44{bottom:717.585000px;}
.y119{bottom:720.825000px;}
.yef{bottom:721.545000px;}
.y158{bottom:723.165000px;}
.yc5{bottom:723.525000px;}
.y71{bottom:723.885000px;}
.y137{bottom:724.065000px;}
.y17{bottom:724.785000px;}
.y43{bottom:738.105000px;}
.y118{bottom:741.345000px;}
.yee{bottom:742.065000px;}
.y157{bottom:743.685000px;}
.yc4{bottom:744.045000px;}
.y70{bottom:744.405000px;}
.y16{bottom:744.765000px;}
.y42{bottom:758.625000px;}
.y117{bottom:761.325000px;}
.yed{bottom:762.585000px;}
.y156{bottom:764.205000px;}
.yc3{bottom:764.385000px;}
.y15{bottom:764.565000px;}
.y6f{bottom:764.925000px;}
.y41{bottom:779.145000px;}
.y116{bottom:782.745000px;}
.yec{bottom:783.105000px;}
.y14{bottom:784.545000px;}
.y155{bottom:784.725000px;}
.y6e{bottom:785.445000px;}
.y40{bottom:799.665000px;}
.y115{bottom:803.085000px;}
.yeb{bottom:803.625000px;}
.y13{bottom:804.345000px;}
.y154{bottom:805.245000px;}
.y6d{bottom:805.785000px;}
.y3f{bottom:820.185000px;}
.yea{bottom:824.145000px;}
.y12{bottom:824.325000px;}
.y114{bottom:824.505000px;}
.y153{bottom:825.765000px;}
.y6c{bottom:826.305000px;}
.y3e{bottom:840.570000px;}
.y11{bottom:844.170000px;}
.y113{bottom:845.070000px;}
.y152{bottom:846.330000px;}
.y96{bottom:846.510000px;}
.y6b{bottom:846.870000px;}
.y3d{bottom:861.090000px;}
.y10{bottom:864.150000px;}
.ye9{bottom:865.590000px;}
.y95{bottom:866.850000px;}
.y136{bottom:867.030000px;}
.y6a{bottom:867.390000px;}
.y3c{bottom:882.330000px;}
.yf{bottom:883.950000px;}
.ye8{bottom:885.930000px;}
.y112{bottom:886.110000px;}
.yc2{bottom:887.190000px;}
.y94{bottom:887.370000px;}
.y69{bottom:887.910000px;}
.y3b{bottom:903.570000px;}
.ye{bottom:904.110000px;}
.y111{bottom:906.630000px;}
.ye7{bottom:907.350000px;}
.yc1{bottom:907.710000px;}
.y93{bottom:907.890000px;}
.y68{bottom:908.430000px;}
.y3a{bottom:924.450000px;}
.y110{bottom:927.150000px;}
.yd{bottom:927.870000px;}
.yc0{bottom:928.230000px;}
.y92{bottom:928.410000px;}
.y67{bottom:928.950000px;}
.y39{bottom:945.870000px;}
.y10f{bottom:947.670000px;}
.yc{bottom:948.030000px;}
.ye6{bottom:948.390000px;}
.y91{bottom:948.750000px;}
.y66{bottom:949.470000px;}
.y38{bottom:966.210000px;}
.y10e{bottom:967.650000px;}
.yb{bottom:967.830000px;}
.ye5{bottom:968.910000px;}
.ybf{bottom:969.090000px;}
.y90{bottom:969.270000px;}
.y65{bottom:969.990000px;}
.y37{bottom:987.450000px;}
.ya{bottom:987.810000px;}
.y10d{bottom:989.070000px;}
.ye4{bottom:989.430000px;}
.y8f{bottom:989.790000px;}
.y64{bottom:989.970000px;}
.y9{bottom:1007.970000px;}
.y36{bottom:1008.690000px;}
.ye3{bottom:1009.410000px;}
.y63{bottom:1010.310000px;}
.y8{bottom:1029.570000px;}
.y35{bottom:1029.930000px;}
.y62{bottom:1030.830000px;}
.y4{bottom:1050.990000px;}
.y3{bottom:1073.850000px;}
.y2{bottom:1099.950000px;}
.y1{bottom:1119.390000px;}
.h5{height:48.224531px;}
.ha{height:48.289219px;}
.h7{height:48.353906px;}
.h6{height:52.488281px;}
.h4{height:62.028281px;}
.h9{height:68.084282px;}
.h8{height:68.956875px;}
.h2{height:74.004654px;}
.h3{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:75.780000px;}
.xf{left:82.080000px;}
.x4{left:84.960000px;}
.xe{left:88.560000px;}
.x13{left:90.360000px;}
.xd{left:95.040000px;}
.x14{left:96.840000px;}
.xb{left:101.376000px;}
.xc{left:111.996000px;}
.x11{left:138.996000px;}
.x12{left:165.990000px;}
.x2{left:182.910000px;}
.x3{left:191.190000px;}
.x9{left:333.615000px;}
.x6{left:388.515000px;}
.x8{left:390.675000px;}
.xa{left:414.435000px;}
.x7{left:446.475000px;}
.x1{left:530.565000px;}
.x5{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.789333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.634667pt;}
.ls1c{letter-spacing:-0.493867pt;}
.lsd{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.217600pt;}
.ls1b{letter-spacing:-0.148267pt;}
.ls14{letter-spacing:-0.133333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.012800pt;}
.ls1d{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.135467pt;}
.ls18{letter-spacing:0.146133pt;}
.ls5{letter-spacing:0.153600pt;}
.ls19{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.271467pt;}
.ls15{letter-spacing:6.031360pt;}
.lsa{letter-spacing:12.160000pt;}
.ls9{letter-spacing:19.471360pt;}
.lsf{letter-spacing:23.680000pt;}
.lsb{letter-spacing:24.960000pt;}
.lse{letter-spacing:25.871360pt;}
.ls8{letter-spacing:31.119360pt;}
.ls1{letter-spacing:35.599360pt;}
.ls12{letter-spacing:44.410027pt;}
.ls2{letter-spacing:49.551360pt;}
.ls7{letter-spacing:52.879360pt;}
.ls0{letter-spacing:76.431360pt;}
.ws4{word-spacing:-58.880000pt;}
.ws1{word-spacing:-20.979200pt;}
.ws0{word-spacing:-20.966400pt;}
.ws6{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.866133pt;}
.ws2{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.725120pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.586667pt;}
.ws10{word-spacing:-14.571733pt;}
.ws8{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws7{word-spacing:-14.351467pt;}
.ws11{word-spacing:-14.226133pt;}
.wsf{word-spacing:-14.085333pt;}
.wsd{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.930667pt;}
.wsa{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.201280pt;}
._b{width:2.197760pt;}
._2{width:3.650560pt;}
._3{width:4.651520pt;}
._4{width:6.182400pt;}
._5{width:7.137067pt;}
._12{width:8.091520pt;}
._9{width:9.067520pt;}
._a{width:10.023893pt;}
._c{width:11.717120pt;}
._d{width:12.606507pt;}
._6{width:13.504000pt;}
._19{width:15.725227pt;}
._7{width:16.770560pt;}
._8{width:17.822720pt;}
._13{width:19.548160pt;}
._14{width:20.804267pt;}
._1a{width:22.256640pt;}
._15{width:23.905280pt;}
._16{width:25.005653pt;}
._17{width:26.554880pt;}
._18{width:27.929600pt;}
._f{width:29.440000pt;}
._e{width:30.932480pt;}
._26{width:37.035520pt;}
._1b{width:40.744960pt;}
._11{width:42.246827pt;}
._10{width:43.432747pt;}
._22{width:45.785173pt;}
._1f{width:48.929280pt;}
._29{width:62.707200pt;}
._1c{width:75.392000pt;}
._1d{width:78.133760pt;}
._27{width:79.425920pt;}
._25{width:81.372160pt;}
._20{width:83.688533pt;}
._23{width:91.028480pt;}
._24{width:91.932160pt;}
._1e{width:104.512000pt;}
._21{width:137.838080pt;}
._28{width:140.311040pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:51.872000pt;}
.y6{bottom:70.272000pt;}
.y5{bottom:88.992000pt;}
.y10c{bottom:109.632000pt;}
.y61{bottom:110.912000pt;}
.y135{bottom:111.552000pt;}
.ye2{bottom:112.032000pt;}
.y8e{bottom:115.872000pt;}
.y151{bottom:116.512000pt;}
.ybe{bottom:117.632000pt;}
.y34{bottom:118.592000pt;}
.y10b{bottom:127.872000pt;}
.y60{bottom:129.152000pt;}
.y134{bottom:129.792000pt;}
.ye1{bottom:131.072000pt;}
.y8d{bottom:134.106667pt;}
.y150{bottom:134.586667pt;}
.ybd{bottom:136.346667pt;}
.y33{bottom:137.466667pt;}
.y10a{bottom:146.106667pt;}
.y5f{bottom:147.386667pt;}
.y133{bottom:148.026667pt;}
.ye0{bottom:149.306667pt;}
.y171{bottom:150.746667pt;}
.y8c{bottom:152.346667pt;}
.y14f{bottom:152.826667pt;}
.ybc{bottom:154.426667pt;}
.y32{bottom:156.346667pt;}
.y109{bottom:164.186667pt;}
.y5e{bottom:165.626667pt;}
.y132{bottom:166.266667pt;}
.ydf{bottom:167.546667pt;}
.y170{bottom:168.986667pt;}
.y8b{bottom:170.586667pt;}
.y14e{bottom:171.066667pt;}
.ybb{bottom:172.666667pt;}
.y31{bottom:175.066667pt;}
.y108{bottom:182.426667pt;}
.y5d{bottom:183.706667pt;}
.y131{bottom:184.506667pt;}
.yde{bottom:185.786667pt;}
.y16f{bottom:187.226667pt;}
.y8a{bottom:188.826667pt;}
.y14d{bottom:189.306667pt;}
.yba{bottom:190.746667pt;}
.y30{bottom:192.666667pt;}
.y107{bottom:200.666667pt;}
.y5c{bottom:201.946667pt;}
.y130{bottom:202.746667pt;}
.ydd{bottom:204.026667pt;}
.y16e{bottom:205.306667pt;}
.y89{bottom:207.066667pt;}
.y14c{bottom:207.546667pt;}
.yb9{bottom:209.306667pt;}
.y2f{bottom:210.746667pt;}
.y106{bottom:218.586667pt;}
.y5b{bottom:220.186667pt;}
.y12f{bottom:220.986667pt;}
.ydc{bottom:222.266667pt;}
.y16d{bottom:223.546667pt;}
.y88{bottom:225.306667pt;}
.y14b{bottom:225.786667pt;}
.yb8{bottom:227.386667pt;}
.y2e{bottom:228.986667pt;}
.y105{bottom:237.466667pt;}
.y5a{bottom:238.426667pt;}
.y12e{bottom:239.226667pt;}
.ydb{bottom:240.506667pt;}
.y16c{bottom:241.786667pt;}
.y87{bottom:243.586667pt;}
.y14a{bottom:244.066667pt;}
.yb7{bottom:245.666667pt;}
.y2d{bottom:247.266667pt;}
.y104{bottom:256.546667pt;}
.y59{bottom:256.706667pt;}
.y12d{bottom:257.506667pt;}
.yda{bottom:258.306667pt;}
.y16b{bottom:260.066667pt;}
.y86{bottom:261.666667pt;}
.y149{bottom:262.306667pt;}
.yb6{bottom:263.906667pt;}
.y2c{bottom:265.506667pt;}
.y103{bottom:274.786667pt;}
.y58{bottom:274.946667pt;}
.y12c{bottom:275.746667pt;}
.yd9{bottom:277.346667pt;}
.y16a{bottom:278.306667pt;}
.y85{bottom:279.906667pt;}
.y148{bottom:280.546667pt;}
.yb5{bottom:281.826667pt;}
.y2b{bottom:283.746667pt;}
.y57{bottom:292.706667pt;}
.y102{bottom:292.866667pt;}
.y12b{bottom:293.826667pt;}
.yd8{bottom:295.426667pt;}
.y169{bottom:296.546667pt;}
.y84{bottom:298.146667pt;}
.y147{bottom:298.786667pt;}
.yb4{bottom:299.746667pt;}
.y2a{bottom:301.986667pt;}
.y56{bottom:310.786667pt;}
.y101{bottom:311.106667pt;}
.y12a{bottom:312.066667pt;}
.yd7{bottom:314.466667pt;}
.y168{bottom:314.786667pt;}
.ya1{bottom:316.066667pt;}
.y83{bottom:316.386667pt;}
.y146{bottom:317.026667pt;}
.yb3{bottom:317.986667pt;}
.y29{bottom:320.226667pt;}
.y55{bottom:329.026667pt;}
.y100{bottom:329.346667pt;}
.y129{bottom:330.306667pt;}
.yd6{bottom:332.706667pt;}
.y167{bottom:333.026667pt;}
.ya0{bottom:333.666667pt;}
.y82{bottom:334.626667pt;}
.y145{bottom:335.106667pt;}
.yb2{bottom:336.226667pt;}
.y28{bottom:338.466667pt;}
.y54{bottom:347.266667pt;}
.yff{bottom:347.586667pt;}
.y128{bottom:348.546667pt;}
.yd5{bottom:350.946667pt;}
.y166{bottom:351.266667pt;}
.y9f{bottom:351.746667pt;}
.y81{bottom:352.866667pt;}
.y144{bottom:353.346667pt;}
.yb1{bottom:354.466667pt;}
.y27{bottom:356.706667pt;}
.y53{bottom:365.186667pt;}
.yfe{bottom:365.506667pt;}
.y127{bottom:366.466667pt;}
.yd4{bottom:369.186667pt;}
.y165{bottom:369.506667pt;}
.y9e{bottom:369.986667pt;}
.y80{bottom:371.106667pt;}
.y143{bottom:371.586667pt;}
.yb0{bottom:372.706667pt;}
.y26{bottom:374.946667pt;}
.y52{bottom:383.266667pt;}
.yfd{bottom:384.546667pt;}
.yd3{bottom:387.426667pt;}
.y164{bottom:387.746667pt;}
.y9d{bottom:388.226667pt;}
.y7f{bottom:389.346667pt;}
.y142{bottom:389.826667pt;}
.yaf{bottom:390.626667pt;}
.y25{bottom:393.186667pt;}
.y51{bottom:401.506667pt;}
.yfc{bottom:402.626667pt;}
.y126{bottom:402.786667pt;}
.yd2{bottom:405.666667pt;}
.y163{bottom:405.986667pt;}
.y9c{bottom:406.466667pt;}
.y7e{bottom:407.106667pt;}
.y141{bottom:408.066667pt;}
.yae{bottom:408.706667pt;}
.y24{bottom:411.266667pt;}
.y50{bottom:419.586667pt;}
.y125{bottom:420.866667pt;}
.yfb{bottom:421.666667pt;}
.yd1{bottom:423.746667pt;}
.y162{bottom:424.066667pt;}
.y9b{bottom:424.706667pt;}
.y7d{bottom:425.186667pt;}
.y140{bottom:426.306667pt;}
.yad{bottom:426.786667pt;}
.y23{bottom:429.506667pt;}
.y4f{bottom:437.826667pt;}
.y124{bottom:439.106667pt;}
.yfa{bottom:439.746667pt;}
.yd0{bottom:441.986667pt;}
.y161{bottom:442.306667pt;}
.y9a{bottom:442.946667pt;}
.y7c{bottom:443.426667pt;}
.y13f{bottom:444.546667pt;}
.yac{bottom:445.026667pt;}
.y22{bottom:447.746667pt;}
.y4e{bottom:456.066667pt;}
.y123{bottom:457.346667pt;}
.yf9{bottom:457.986667pt;}
.ycf{bottom:459.906667pt;}
.y160{bottom:460.546667pt;}
.y99{bottom:461.186667pt;}
.y7b{bottom:461.666667pt;}
.y13e{bottom:462.786667pt;}
.yab{bottom:462.946667pt;}
.y21{bottom:465.986667pt;}
.y4d{bottom:474.306667pt;}
.y122{bottom:475.586667pt;}
.yf8{bottom:476.226667pt;}
.y15f{bottom:478.786667pt;}
.yce{bottom:478.946667pt;}
.y98{bottom:479.426667pt;}
.y7a{bottom:479.906667pt;}
.yaa{bottom:481.026667pt;}
.y20{bottom:483.906667pt;}
.y4c{bottom:492.546667pt;}
.y121{bottom:493.826667pt;}
.yf7{bottom:494.493333pt;}
.ycd{bottom:497.053333pt;}
.y97{bottom:497.533333pt;}
.y79{bottom:497.693333pt;}
.ya9{bottom:499.293333pt;}
.y1f{bottom:502.013333pt;}
.y4b{bottom:510.813333pt;}
.y120{bottom:511.773333pt;}
.yf6{bottom:512.733333pt;}
.y15e{bottom:515.293333pt;}
.y78{bottom:515.773333pt;}
.ycc{bottom:516.093333pt;}
.ya8{bottom:517.533333pt;}
.y1e{bottom:520.253333pt;}
.y4a{bottom:529.053333pt;}
.y11f{bottom:530.653333pt;}
.yf5{bottom:530.973333pt;}
.y15d{bottom:533.533333pt;}
.ycb{bottom:533.853333pt;}
.y77{bottom:534.013333pt;}
.ya7{bottom:535.293333pt;}
.y13d{bottom:535.773333pt;}
.y1d{bottom:538.173333pt;}
.y49{bottom:547.293333pt;}
.y11e{bottom:548.733333pt;}
.yf4{bottom:549.213333pt;}
.y15c{bottom:551.773333pt;}
.yca{bottom:551.933333pt;}
.y76{bottom:552.253333pt;}
.ya6{bottom:553.373333pt;}
.y13c{bottom:553.853333pt;}
.y1c{bottom:555.933333pt;}
.y48{bottom:565.533333pt;}
.yf3{bottom:566.973333pt;}
.y11d{bottom:567.773333pt;}
.y15b{bottom:570.013333pt;}
.yc9{bottom:570.173333pt;}
.y75{bottom:570.493333pt;}
.ya5{bottom:571.613333pt;}
.y13b{bottom:572.093333pt;}
.y1b{bottom:573.533333pt;}
.y47{bottom:583.293333pt;}
.yf2{bottom:585.853333pt;}
.y11c{bottom:586.013333pt;}
.y15a{bottom:588.253333pt;}
.yc8{bottom:588.413333pt;}
.y74{bottom:588.733333pt;}
.ya4{bottom:589.853333pt;}
.y13a{bottom:590.333333pt;}
.y1a{bottom:591.293333pt;}
.y46{bottom:601.373333pt;}
.y11b{bottom:604.253333pt;}
.yf1{bottom:604.893333pt;}
.yc7{bottom:606.493333pt;}
.y73{bottom:606.973333pt;}
.ya3{bottom:607.613333pt;}
.y139{bottom:608.253333pt;}
.y19{bottom:608.893333pt;}
.y45{bottom:619.613333pt;}
.y11a{bottom:622.493333pt;}
.yf0{bottom:623.133333pt;}
.y159{bottom:624.573333pt;}
.yc6{bottom:625.053333pt;}
.y72{bottom:625.213333pt;}
.ya2{bottom:625.373333pt;}
.y138{bottom:625.853333pt;}
.y18{bottom:626.653333pt;}
.y44{bottom:637.853333pt;}
.y119{bottom:640.733333pt;}
.yef{bottom:641.373333pt;}
.y158{bottom:642.813333pt;}
.yc5{bottom:643.133333pt;}
.y71{bottom:643.453333pt;}
.y137{bottom:643.613333pt;}
.y17{bottom:644.253333pt;}
.y43{bottom:656.093333pt;}
.y118{bottom:658.973333pt;}
.yee{bottom:659.613333pt;}
.y157{bottom:661.053333pt;}
.yc4{bottom:661.373333pt;}
.y70{bottom:661.693333pt;}
.y16{bottom:662.013333pt;}
.y42{bottom:674.333333pt;}
.y117{bottom:676.733333pt;}
.yed{bottom:677.853333pt;}
.y156{bottom:679.293333pt;}
.yc3{bottom:679.453333pt;}
.y15{bottom:679.613333pt;}
.y6f{bottom:679.933333pt;}
.y41{bottom:692.573333pt;}
.y116{bottom:695.773333pt;}
.yec{bottom:696.093333pt;}
.y14{bottom:697.373333pt;}
.y155{bottom:697.533333pt;}
.y6e{bottom:698.173333pt;}
.y40{bottom:710.813333pt;}
.y115{bottom:713.853333pt;}
.yeb{bottom:714.333333pt;}
.y13{bottom:714.973333pt;}
.y154{bottom:715.773333pt;}
.y6d{bottom:716.253333pt;}
.y3f{bottom:729.053333pt;}
.yea{bottom:732.573333pt;}
.y12{bottom:732.733333pt;}
.y114{bottom:732.893333pt;}
.y153{bottom:734.013333pt;}
.y6c{bottom:734.493333pt;}
.y3e{bottom:747.173333pt;}
.y11{bottom:750.373333pt;}
.y113{bottom:751.173333pt;}
.y152{bottom:752.293333pt;}
.y96{bottom:752.453333pt;}
.y6b{bottom:752.773333pt;}
.y3d{bottom:765.413333pt;}
.y10{bottom:768.133333pt;}
.ye9{bottom:769.413333pt;}
.y95{bottom:770.533333pt;}
.y136{bottom:770.693333pt;}
.y6a{bottom:771.013333pt;}
.y3c{bottom:784.293333pt;}
.yf{bottom:785.733333pt;}
.ye8{bottom:787.493333pt;}
.y112{bottom:787.653333pt;}
.yc2{bottom:788.613333pt;}
.y94{bottom:788.773333pt;}
.y69{bottom:789.253333pt;}
.y3b{bottom:803.173333pt;}
.ye{bottom:803.653333pt;}
.y111{bottom:805.893333pt;}
.ye7{bottom:806.533333pt;}
.yc1{bottom:806.853333pt;}
.y93{bottom:807.013333pt;}
.y68{bottom:807.493333pt;}
.y3a{bottom:821.733333pt;}
.y110{bottom:824.133333pt;}
.yd{bottom:824.773333pt;}
.yc0{bottom:825.093333pt;}
.y92{bottom:825.253333pt;}
.y67{bottom:825.733333pt;}
.y39{bottom:840.773333pt;}
.y10f{bottom:842.373333pt;}
.yc{bottom:842.693333pt;}
.ye6{bottom:843.013333pt;}
.y91{bottom:843.333333pt;}
.y66{bottom:843.973333pt;}
.y38{bottom:858.853333pt;}
.y10e{bottom:860.133333pt;}
.yb{bottom:860.293333pt;}
.ye5{bottom:861.253333pt;}
.ybf{bottom:861.413333pt;}
.y90{bottom:861.573333pt;}
.y65{bottom:862.213333pt;}
.y37{bottom:877.733333pt;}
.ya{bottom:878.053333pt;}
.y10d{bottom:879.173333pt;}
.ye4{bottom:879.493333pt;}
.y8f{bottom:879.813333pt;}
.y64{bottom:879.973333pt;}
.y9{bottom:895.973333pt;}
.y36{bottom:896.613333pt;}
.ye3{bottom:897.253333pt;}
.y63{bottom:898.053333pt;}
.y8{bottom:915.173333pt;}
.y35{bottom:915.493333pt;}
.y62{bottom:916.293333pt;}
.y4{bottom:934.213333pt;}
.y3{bottom:954.533333pt;}
.y2{bottom:977.733333pt;}
.y1{bottom:995.013333pt;}
.h5{height:42.866250pt;}
.ha{height:42.923750pt;}
.h7{height:42.981250pt;}
.h6{height:46.656250pt;}
.h4{height:55.136250pt;}
.h9{height:60.519362pt;}
.h8{height:61.295000pt;}
.h2{height:65.781915pt;}
.h3{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:67.360000pt;}
.xf{left:72.960000pt;}
.x4{left:75.520000pt;}
.xe{left:78.720000pt;}
.x13{left:80.320000pt;}
.xd{left:84.480000pt;}
.x14{left:86.080000pt;}
.xb{left:90.112000pt;}
.xc{left:99.552000pt;}
.x11{left:123.552000pt;}
.x12{left:147.546667pt;}
.x2{left:162.586667pt;}
.x3{left:169.946667pt;}
.x9{left:296.546667pt;}
.x6{left:345.346667pt;}
.x8{left:347.266667pt;}
.xa{left:368.386667pt;}
.x7{left:396.866667pt;}
.x1{left:471.613333pt;}
.x5{left:696.133333pt;}
}




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