
    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_575764c38f1c9d9f9b2c5003.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_ffad5d2d57ea40640ffe4ba5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_4394753de345d1fb841f8ab2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999512;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_8ca275d14ba203bcfda8a642.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_80c9859970a4832385aba5aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_dbe9524236ec2d80a34e732c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_84274fca520523c16c39a939.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_a0db3e2004b24d115207308e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb{letter-spacing:-1.926000px;}
.ls10{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.422000px;}
.ls7{letter-spacing:-0.972000px;}
.lsa{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.507000px;}
.lsf{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.466800px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.507000px;}
.ls5{letter-spacing:0.720000px;}
.ls1{letter-spacing:3.600000px;}
.lsc{letter-spacing:21.744000px;}
.ls2{letter-spacing:21.888000px;}
.ls11{letter-spacing:26.386560px;}
.ls8{letter-spacing:63.838560px;}
.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;}
}
.ws3{word-spacing:-60.480000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.633400px;}
.ws5{word-spacing:-14.613000px;}
.ws7{word-spacing:-13.680000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-9.101760px;}
._13{margin-left:-8.096160px;}
._b{margin-left:-6.656640px;}
._4{margin-left:-5.136960px;}
._6{margin-left:-3.920160px;}
._3{margin-left:-2.422080px;}
._2{margin-left:-1.369920px;}
._1{width:1.440000px;}
._7{width:2.729280px;}
._5{width:4.542240px;}
._c{width:6.395520px;}
._d{width:7.892160px;}
._10{width:9.049440px;}
._a{width:10.096320px;}
._8{width:11.672640px;}
._9{width:12.920640px;}
._11{width:13.971360px;}
._e{width:16.792320px;}
._12{width:18.213120px;}
._14{width:19.605600px;}
._16{width:22.749120px;}
._15{width:24.190560px;}
._0{width:25.808160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y111{bottom:173.235000px;}
.yd2{bottom:173.595000px;}
.yba{bottom:176.115000px;}
.y16b{bottom:178.275000px;}
.y158{bottom:179.355000px;}
.ye4{bottom:180.075000px;}
.y30{bottom:183.675000px;}
.y186{bottom:188.715000px;}
.y62{bottom:190.155000px;}
.yd1{bottom:190.875000px;}
.y98{bottom:191.235000px;}
.yb9{bottom:193.395000px;}
.y16a{bottom:195.195000px;}
.y12c{bottom:196.635000px;}
.y199{bottom:198.075000px;}
.y110{bottom:199.515000px;}
.y2f{bottom:200.955000px;}
.y157{bottom:205.635000px;}
.y185{bottom:205.995000px;}
.y61{bottom:207.075000px;}
.yd0{bottom:208.155000px;}
.y97{bottom:208.515000px;}
.yb8{bottom:210.315000px;}
.y169{bottom:212.475000px;}
.y12b{bottom:213.915000px;}
.y198{bottom:214.995000px;}
.y10f{bottom:216.795000px;}
.y2e{bottom:218.235000px;}
.y13c{bottom:218.955000px;}
.y184{bottom:222.915000px;}
.y60{bottom:224.355000px;}
.ycf{bottom:225.435000px;}
.y96{bottom:225.795000px;}
.yb7{bottom:227.595000px;}
.y168{bottom:229.755000px;}
.y12a{bottom:231.195000px;}
.y156{bottom:231.915000px;}
.y10e{bottom:234.075000px;}
.y2d{bottom:235.515000px;}
.y197{bottom:241.275000px;}
.y5f{bottom:241.635000px;}
.y13b{bottom:241.995000px;}
.yce{bottom:242.715000px;}
.y95{bottom:243.075000px;}
.yb6{bottom:244.875000px;}
.y129{bottom:248.475000px;}
.y155{bottom:249.195000px;}
.y10d{bottom:251.355000px;}
.y2c{bottom:252.795000px;}
.y167{bottom:256.035000px;}
.y196{bottom:258.555000px;}
.y5e{bottom:258.915000px;}
.ycd{bottom:259.995000px;}
.y94{bottom:260.355000px;}
.yb5{bottom:262.185000px;}
.y128{bottom:265.785000px;}
.y154{bottom:266.505000px;}
.y10c{bottom:268.665000px;}
.y2b{bottom:270.105000px;}
.y166{bottom:273.345000px;}
.y195{bottom:275.865000px;}
.y5d{bottom:276.225000px;}
.ycc{bottom:277.305000px;}
.y93{bottom:277.665000px;}
.yb4{bottom:279.465000px;}
.y127{bottom:283.065000px;}
.y153{bottom:283.785000px;}
.y10b{bottom:285.945000px;}
.y2a{bottom:287.385000px;}
.y165{bottom:290.625000px;}
.y5c{bottom:293.505000px;}
.y92{bottom:294.945000px;}
.yb3{bottom:296.745000px;}
.y152{bottom:301.065000px;}
.y194{bottom:302.145000px;}
.y10a{bottom:303.225000px;}
.ycb{bottom:303.585000px;}
.y164{bottom:307.905000px;}
.y126{bottom:309.345000px;}
.y91{bottom:312.225000px;}
.y29{bottom:313.665000px;}
.yb2{bottom:314.025000px;}
.y183{bottom:318.345000px;}
.y193{bottom:319.425000px;}
.y5b{bottom:320.505000px;}
.yca{bottom:320.865000px;}
.y163{bottom:325.185000px;}
.y125{bottom:326.625000px;}
.y151{bottom:327.345000px;}
.y90{bottom:329.145000px;}
.y109{bottom:329.505000px;}
.y28{bottom:330.945000px;}
.y182{bottom:335.625000px;}
.yc9{bottom:338.145000px;}
.yb1{bottom:341.025000px;}
.y162{bottom:342.465000px;}
.y124{bottom:343.905000px;}
.y150{bottom:344.625000px;}
.y192{bottom:345.705000px;}
.y108{bottom:346.425000px;}
.y27{bottom:348.225000px;}
.y181{bottom:352.905000px;}
.y8f{bottom:355.425000px;}
.y5a{bottom:358.305000px;}
.y161{bottom:359.745000px;}
.y123{bottom:360.825000px;}
.y14f{bottom:361.905000px;}
.y191{bottom:362.985000px;}
.y107{bottom:363.705000px;}
.y26{bottom:365.145000px;}
.y180{bottom:370.185000px;}
.yc8{bottom:372.345000px;}
.y8e{bottom:372.705000px;}
.y59{bottom:375.585000px;}
.y160{bottom:377.025000px;}
.y122{bottom:378.105000px;}
.yb0{bottom:378.825000px;}
.y106{bottom:380.985000px;}
.y25{bottom:382.425000px;}
.y14e{bottom:388.905000px;}
.y190{bottom:389.265000px;}
.y8d{bottom:389.985000px;}
.y58{bottom:392.865000px;}
.y15f{bottom:393.945000px;}
.y121{bottom:395.430000px;}
.yaf{bottom:396.150000px;}
.y17f{bottom:396.510000px;}
.y105{bottom:398.310000px;}
.yc7{bottom:398.670000px;}
.y24{bottom:399.750000px;}
.y14d{bottom:406.230000px;}
.y18f{bottom:406.590000px;}
.y8c{bottom:407.310000px;}
.y57{bottom:410.190000px;}
.y120{bottom:412.710000px;}
.yae{bottom:413.430000px;}
.y17e{bottom:413.790000px;}
.y104{bottom:415.590000px;}
.yc6{bottom:415.950000px;}
.y23{bottom:417.030000px;}
.y15e{bottom:420.270000px;}
.y14c{bottom:423.510000px;}
.y8b{bottom:424.590000px;}
.y56{bottom:427.470000px;}
.y11f{bottom:429.990000px;}
.yad{bottom:430.710000px;}
.y17d{bottom:431.070000px;}
.y103{bottom:432.870000px;}
.yc5{bottom:433.230000px;}
.y22{bottom:434.310000px;}
.y15d{bottom:437.550000px;}
.y8a{bottom:441.870000px;}
.y55{bottom:444.750000px;}
.y11e{bottom:447.270000px;}
.yac{bottom:447.990000px;}
.y18e{bottom:449.790000px;}
.y102{bottom:450.150000px;}
.yc4{bottom:450.510000px;}
.y80{bottom:450.870000px;}
.y21{bottom:451.590000px;}
.y15c{bottom:454.830000px;}
.y89{bottom:459.150000px;}
.y54{bottom:462.030000px;}
.y11d{bottom:464.550000px;}
.yab{bottom:465.270000px;}
.y18d{bottom:467.070000px;}
.y101{bottom:467.430000px;}
.yc3{bottom:467.790000px;}
.y7f{bottom:468.150000px;}
.y20{bottom:468.870000px;}
.y15b{bottom:472.110000px;}
.y88{bottom:476.430000px;}
.y53{bottom:479.310000px;}
.y11c{bottom:481.830000px;}
.y17c{bottom:482.550000px;}
.yc2{bottom:485.070000px;}
.y7e{bottom:485.430000px;}
.y1f{bottom:486.150000px;}
.y15a{bottom:489.390000px;}
.y18c{bottom:493.350000px;}
.y87{bottom:493.710000px;}
.y52{bottom:496.590000px;}
.y11b{bottom:499.110000px;}
.yaa{bottom:500.550000px;}
.y7d{bottom:502.710000px;}
.y1e{bottom:503.430000px;}
.y17b{bottom:509.910000px;}
.y18b{bottom:510.630000px;}
.y86{bottom:510.990000px;}
.y14b{bottom:512.790000px;}
.y51{bottom:513.870000px;}
.y159{bottom:516.390000px;}
.y7c{bottom:519.990000px;}
.yc1{bottom:520.350000px;}
.y1d{bottom:520.710000px;}
.ya9{bottom:523.590000px;}
.y11a{bottom:526.110000px;}
.y100{bottom:528.300000px;}
.y14a{bottom:530.100000px;}
.y85{bottom:536.940000px;}
.y7b{bottom:537.300000px;}
.y1c{bottom:538.020000px;}
.y50{bottom:540.180000px;}
.yc0{bottom:543.420000px;}
.yff{bottom:545.220000px;}
.y149{bottom:547.380000px;}
.y17a{bottom:547.740000px;}
.y7a{bottom:554.220000px;}
.y1b{bottom:554.940000px;}
.y4f{bottom:557.100000px;}
.yfe{bottom:562.500000px;}
.y18a{bottom:564.300000px;}
.y148{bottom:564.660000px;}
.y119{bottom:565.020000px;}
.y79{bottom:571.500000px;}
.y4e{bottom:574.380000px;}
.yfd{bottom:579.780000px;}
.y179{bottom:581.940000px;}
.y1a{bottom:582.300000px;}
.y118{bottom:585.540000px;}
.y78{bottom:588.780000px;}
.y4d{bottom:591.660000px;}
.y147{bottom:592.020000px;}
.y13a{bottom:594.540000px;}
.yfc{bottom:597.060000px;}
.y178{bottom:599.220000px;}
.y189{bottom:602.100000px;}
.y77{bottom:606.060000px;}
.y4c{bottom:608.940000px;}
.y139{bottom:611.820000px;}
.yfb{bottom:614.340000px;}
.y177{bottom:616.500000px;}
.y188{bottom:619.020000px;}
.y19{bottom:620.460000px;}
.y76{bottom:623.340000px;}
.y4b{bottom:626.220000px;}
.y138{bottom:628.740000px;}
.yfa{bottom:631.620000px;}
.y176{bottom:633.780000px;}
.y18{bottom:638.460000px;}
.y84{bottom:640.620000px;}
.y4a{bottom:643.500000px;}
.y137{bottom:646.020000px;}
.y187{bottom:646.380000px;}
.yf9{bottom:648.900000px;}
.y75{bottom:649.620000px;}
.y175{bottom:651.060000px;}
.y83{bottom:657.900000px;}
.y136{bottom:663.330000px;}
.yf8{bottom:666.210000px;}
.y74{bottom:666.930000px;}
.y174{bottom:668.370000px;}
.y49{bottom:669.810000px;}
.y146{bottom:670.890000px;}
.y17{bottom:674.490000px;}
.y117{bottom:675.210000px;}
.y135{bottom:680.610000px;}
.y73{bottom:684.210000px;}
.y173{bottom:685.650000px;}
.y48{bottom:687.090000px;}
.y16{bottom:692.490000px;}
.y82{bottom:693.210000px;}
.y145{bottom:697.170000px;}
.y72{bottom:701.490000px;}
.y47{bottom:704.370000px;}
.y134{bottom:707.970000px;}
.yf7{bottom:709.770000px;}
.y15{bottom:710.490000px;}
.y172{bottom:711.930000px;}
.y144{bottom:714.450000px;}
.y1a8{bottom:716.250000px;}
.y71{bottom:718.770000px;}
.y46{bottom:721.650000px;}
.ya8{bottom:724.890000px;}
.yf6{bottom:727.050000px;}
.y14{bottom:728.490000px;}
.y171{bottom:729.210000px;}
.y143{bottom:731.730000px;}
.y81{bottom:733.530000px;}
.y70{bottom:736.050000px;}
.ya7{bottom:742.170000px;}
.yf5{bottom:744.330000px;}
.y133{bottom:745.770000px;}
.y13{bottom:746.490000px;}
.y45{bottom:747.930000px;}
.y142{bottom:749.010000px;}
.y1a7{bottom:750.810000px;}
.y6f{bottom:753.330000px;}
.ya6{bottom:759.450000px;}
.yf4{bottom:761.250000px;}
.y132{bottom:763.050000px;}
.y170{bottom:763.770000px;}
.y12{bottom:764.490000px;}
.y44{bottom:765.930000px;}
.ye3{bottom:766.290000px;}
.y6e{bottom:770.250000px;}
.y141{bottom:775.290000px;}
.ya5{bottom:776.370000px;}
.y1a6{bottom:777.090000px;}
.yf3{bottom:778.530000px;}
.y131{bottom:779.970000px;}
.y16f{bottom:781.050000px;}
.y11{bottom:782.490000px;}
.ye2{bottom:783.570000px;}
.y43{bottom:784.290000px;}
.y116{bottom:787.530000px;}
.y140{bottom:792.570000px;}
.ya4{bottom:793.650000px;}
.y1a5{bottom:794.370000px;}
.yf2{bottom:795.855000px;}
.y6d{bottom:796.575000px;}
.y130{bottom:797.295000px;}
.y16e{bottom:798.015000px;}
.y10{bottom:800.535000px;}
.ye1{bottom:800.895000px;}
.y42{bottom:802.695000px;}
.y115{bottom:804.855000px;}
.y13f{bottom:809.895000px;}
.ya3{bottom:810.975000px;}
.y1a4{bottom:811.695000px;}
.yf1{bottom:813.135000px;}
.y6c{bottom:813.855000px;}
.y12f{bottom:814.575000px;}
.ye0{bottom:817.815000px;}
.yf{bottom:818.535000px;}
.y41{bottom:821.055000px;}
.y114{bottom:822.135000px;}
.y13e{bottom:826.815000px;}
.ya2{bottom:828.255000px;}
.y6b{bottom:831.135000px;}
.y16d{bottom:833.295000px;}
.ydf{bottom:835.095000px;}
.ye{bottom:836.535000px;}
.y1a3{bottom:837.975000px;}
.yf0{bottom:839.415000px;}
.ya1{bottom:845.535000px;}
.y40{bottom:848.415000px;}
.y12e{bottom:849.855000px;}
.yde{bottom:852.375000px;}
.ybf{bottom:853.095000px;}
.y13d{bottom:854.175000px;}
.yd{bottom:854.535000px;}
.y1a2{bottom:855.255000px;}
.y16c{bottom:856.335000px;}
.yef{bottom:856.695000px;}
.ya0{bottom:862.815000px;}
.y6a{bottom:865.695000px;}
.ydd{bottom:869.655000px;}
.ybe{bottom:870.375000px;}
.yc{bottom:872.535000px;}
.y12d{bottom:872.895000px;}
.yee{bottom:873.975000px;}
.y3f{bottom:874.695000px;}
.y9f{bottom:880.095000px;}
.y1a1{bottom:881.535000px;}
.y69{bottom:882.975000px;}
.ybd{bottom:887.655000px;}
.yb{bottom:890.535000px;}
.yed{bottom:891.255000px;}
.y3e{bottom:891.975000px;}
.ydc{bottom:897.015000px;}
.y9e{bottom:897.375000px;}
.y1a0{bottom:898.815000px;}
.y113{bottom:900.255000px;}
.ybc{bottom:904.935000px;}
.ya{bottom:908.535000px;}
.y3d{bottom:909.255000px;}
.y9d{bottom:914.655000px;}
.y112{bottom:917.535000px;}
.y19f{bottom:925.095000px;}
.yec{bottom:925.815000px;}
.y9{bottom:926.535000px;}
.y9c{bottom:931.965000px;}
.ybb{bottom:932.325000px;}
.ydb{bottom:934.845000px;}
.y19e{bottom:942.045000px;}
.yeb{bottom:943.125000px;}
.y3c{bottom:943.845000px;}
.y8{bottom:944.565000px;}
.yda{bottom:952.125000px;}
.y9b{bottom:958.965000px;}
.y68{bottom:961.125000px;}
.y19d{bottom:968.325000px;}
.yd9{bottom:969.045000px;}
.y3b{bottom:970.125000px;}
.y67{bottom:978.045000px;}
.y7{bottom:980.205000px;}
.y19c{bottom:985.605000px;}
.yd8{bottom:986.325000px;}
.y3a{bottom:987.045000px;}
.y66{bottom:995.325000px;}
.y6{bottom:997.485000px;}
.y9a{bottom:997.845000px;}
.yd7{bottom:1003.605000px;}
.y39{bottom:1004.325000px;}
.y19b{bottom:1011.885000px;}
.y65{bottom:1012.605000px;}
.y99{bottom:1018.365000px;}
.yea{bottom:1020.885000px;}
.y38{bottom:1021.605000px;}
.y19a{bottom:1029.165000px;}
.y64{bottom:1029.885000px;}
.y5{bottom:1032.765000px;}
.ye9{bottom:1038.165000px;}
.y37{bottom:1038.885000px;}
.y63{bottom:1047.165000px;}
.y4{bottom:1050.045000px;}
.ye8{bottom:1055.445000px;}
.y36{bottom:1056.165000px;}
.yd6{bottom:1064.490000px;}
.y3{bottom:1067.370000px;}
.ye7{bottom:1072.770000px;}
.y35{bottom:1073.490000px;}
.yd5{bottom:1081.770000px;}
.ye6{bottom:1090.050000px;}
.y34{bottom:1090.770000px;}
.yd4{bottom:1099.050000px;}
.y2{bottom:1104.090000px;}
.ye5{bottom:1107.330000px;}
.y33{bottom:1108.050000px;}
.yd3{bottom:1116.330000px;}
.y32{bottom:1125.330000px;}
.y1{bottom:1128.210000px;}
.y31{bottom:1142.610000px;}
.h9{height:44.031094px;}
.h3{height:45.566719px;}
.h8{height:50.800781px;}
.h6{height:52.417969px;}
.h5{height:53.215313px;}
.h7{height:54.219375px;}
.h2{height:58.928906px;}
.h4{height:63.351562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x2{left:133.271987px;}
.xa{left:148.751987px;}
.x8{left:160.274987px;}
.x5{left:595.334987px;}
.x6{left:637.844987px;}
.x7{left:659.084987px;}
.x4{left:701.924987px;}
.x9{left:723.209987px;}
.x3{left:786.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.712000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.264000pt;}
.ls7{letter-spacing:-0.864000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.450667pt;}
.lsf{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.414933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.450667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1{letter-spacing:3.200000pt;}
.lsc{letter-spacing:19.328000pt;}
.ls2{letter-spacing:19.456000pt;}
.ls11{letter-spacing:23.454720pt;}
.ls8{letter-spacing:56.745387pt;}
.ws3{word-spacing:-53.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.007467pt;}
.ws5{word-spacing:-12.989333pt;}
.ws7{word-spacing:-12.160000pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-8.090453pt;}
._13{margin-left:-7.196587pt;}
._b{margin-left:-5.917013pt;}
._4{margin-left:-4.566187pt;}
._6{margin-left:-3.484587pt;}
._3{margin-left:-2.152960pt;}
._2{margin-left:-1.217707pt;}
._1{width:1.280000pt;}
._7{width:2.426027pt;}
._5{width:4.037547pt;}
._c{width:5.684907pt;}
._d{width:7.015253pt;}
._10{width:8.043947pt;}
._a{width:8.974507pt;}
._8{width:10.375680pt;}
._9{width:11.485013pt;}
._11{width:12.418987pt;}
._e{width:14.926507pt;}
._12{width:16.189440pt;}
._14{width:17.427200pt;}
._16{width:20.221440pt;}
._15{width:21.502720pt;}
._0{width:22.940587pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:153.986667pt;}
.yd2{bottom:154.306667pt;}
.yba{bottom:156.546667pt;}
.y16b{bottom:158.466667pt;}
.y158{bottom:159.426667pt;}
.ye4{bottom:160.066667pt;}
.y30{bottom:163.266667pt;}
.y186{bottom:167.746667pt;}
.y62{bottom:169.026667pt;}
.yd1{bottom:169.666667pt;}
.y98{bottom:169.986667pt;}
.yb9{bottom:171.906667pt;}
.y16a{bottom:173.506667pt;}
.y12c{bottom:174.786667pt;}
.y199{bottom:176.066667pt;}
.y110{bottom:177.346667pt;}
.y2f{bottom:178.626667pt;}
.y157{bottom:182.786667pt;}
.y185{bottom:183.106667pt;}
.y61{bottom:184.066667pt;}
.yd0{bottom:185.026667pt;}
.y97{bottom:185.346667pt;}
.yb8{bottom:186.946667pt;}
.y169{bottom:188.866667pt;}
.y12b{bottom:190.146667pt;}
.y198{bottom:191.106667pt;}
.y10f{bottom:192.706667pt;}
.y2e{bottom:193.986667pt;}
.y13c{bottom:194.626667pt;}
.y184{bottom:198.146667pt;}
.y60{bottom:199.426667pt;}
.ycf{bottom:200.386667pt;}
.y96{bottom:200.706667pt;}
.yb7{bottom:202.306667pt;}
.y168{bottom:204.226667pt;}
.y12a{bottom:205.506667pt;}
.y156{bottom:206.146667pt;}
.y10e{bottom:208.066667pt;}
.y2d{bottom:209.346667pt;}
.y197{bottom:214.466667pt;}
.y5f{bottom:214.786667pt;}
.y13b{bottom:215.106667pt;}
.yce{bottom:215.746667pt;}
.y95{bottom:216.066667pt;}
.yb6{bottom:217.666667pt;}
.y129{bottom:220.866667pt;}
.y155{bottom:221.506667pt;}
.y10d{bottom:223.426667pt;}
.y2c{bottom:224.706667pt;}
.y167{bottom:227.586667pt;}
.y196{bottom:229.826667pt;}
.y5e{bottom:230.146667pt;}
.ycd{bottom:231.106667pt;}
.y94{bottom:231.426667pt;}
.yb5{bottom:233.053333pt;}
.y128{bottom:236.253333pt;}
.y154{bottom:236.893333pt;}
.y10c{bottom:238.813333pt;}
.y2b{bottom:240.093333pt;}
.y166{bottom:242.973333pt;}
.y195{bottom:245.213333pt;}
.y5d{bottom:245.533333pt;}
.ycc{bottom:246.493333pt;}
.y93{bottom:246.813333pt;}
.yb4{bottom:248.413333pt;}
.y127{bottom:251.613333pt;}
.y153{bottom:252.253333pt;}
.y10b{bottom:254.173333pt;}
.y2a{bottom:255.453333pt;}
.y165{bottom:258.333333pt;}
.y5c{bottom:260.893333pt;}
.y92{bottom:262.173333pt;}
.yb3{bottom:263.773333pt;}
.y152{bottom:267.613333pt;}
.y194{bottom:268.573333pt;}
.y10a{bottom:269.533333pt;}
.ycb{bottom:269.853333pt;}
.y164{bottom:273.693333pt;}
.y126{bottom:274.973333pt;}
.y91{bottom:277.533333pt;}
.y29{bottom:278.813333pt;}
.yb2{bottom:279.133333pt;}
.y183{bottom:282.973333pt;}
.y193{bottom:283.933333pt;}
.y5b{bottom:284.893333pt;}
.yca{bottom:285.213333pt;}
.y163{bottom:289.053333pt;}
.y125{bottom:290.333333pt;}
.y151{bottom:290.973333pt;}
.y90{bottom:292.573333pt;}
.y109{bottom:292.893333pt;}
.y28{bottom:294.173333pt;}
.y182{bottom:298.333333pt;}
.yc9{bottom:300.573333pt;}
.yb1{bottom:303.133333pt;}
.y162{bottom:304.413333pt;}
.y124{bottom:305.693333pt;}
.y150{bottom:306.333333pt;}
.y192{bottom:307.293333pt;}
.y108{bottom:307.933333pt;}
.y27{bottom:309.533333pt;}
.y181{bottom:313.693333pt;}
.y8f{bottom:315.933333pt;}
.y5a{bottom:318.493333pt;}
.y161{bottom:319.773333pt;}
.y123{bottom:320.733333pt;}
.y14f{bottom:321.693333pt;}
.y191{bottom:322.653333pt;}
.y107{bottom:323.293333pt;}
.y26{bottom:324.573333pt;}
.y180{bottom:329.053333pt;}
.yc8{bottom:330.973333pt;}
.y8e{bottom:331.293333pt;}
.y59{bottom:333.853333pt;}
.y160{bottom:335.133333pt;}
.y122{bottom:336.093333pt;}
.yb0{bottom:336.733333pt;}
.y106{bottom:338.653333pt;}
.y25{bottom:339.933333pt;}
.y14e{bottom:345.693333pt;}
.y190{bottom:346.013333pt;}
.y8d{bottom:346.653333pt;}
.y58{bottom:349.213333pt;}
.y15f{bottom:350.173333pt;}
.y121{bottom:351.493333pt;}
.yaf{bottom:352.133333pt;}
.y17f{bottom:352.453333pt;}
.y105{bottom:354.053333pt;}
.yc7{bottom:354.373333pt;}
.y24{bottom:355.333333pt;}
.y14d{bottom:361.093333pt;}
.y18f{bottom:361.413333pt;}
.y8c{bottom:362.053333pt;}
.y57{bottom:364.613333pt;}
.y120{bottom:366.853333pt;}
.yae{bottom:367.493333pt;}
.y17e{bottom:367.813333pt;}
.y104{bottom:369.413333pt;}
.yc6{bottom:369.733333pt;}
.y23{bottom:370.693333pt;}
.y15e{bottom:373.573333pt;}
.y14c{bottom:376.453333pt;}
.y8b{bottom:377.413333pt;}
.y56{bottom:379.973333pt;}
.y11f{bottom:382.213333pt;}
.yad{bottom:382.853333pt;}
.y17d{bottom:383.173333pt;}
.y103{bottom:384.773333pt;}
.yc5{bottom:385.093333pt;}
.y22{bottom:386.053333pt;}
.y15d{bottom:388.933333pt;}
.y8a{bottom:392.773333pt;}
.y55{bottom:395.333333pt;}
.y11e{bottom:397.573333pt;}
.yac{bottom:398.213333pt;}
.y18e{bottom:399.813333pt;}
.y102{bottom:400.133333pt;}
.yc4{bottom:400.453333pt;}
.y80{bottom:400.773333pt;}
.y21{bottom:401.413333pt;}
.y15c{bottom:404.293333pt;}
.y89{bottom:408.133333pt;}
.y54{bottom:410.693333pt;}
.y11d{bottom:412.933333pt;}
.yab{bottom:413.573333pt;}
.y18d{bottom:415.173333pt;}
.y101{bottom:415.493333pt;}
.yc3{bottom:415.813333pt;}
.y7f{bottom:416.133333pt;}
.y20{bottom:416.773333pt;}
.y15b{bottom:419.653333pt;}
.y88{bottom:423.493333pt;}
.y53{bottom:426.053333pt;}
.y11c{bottom:428.293333pt;}
.y17c{bottom:428.933333pt;}
.yc2{bottom:431.173333pt;}
.y7e{bottom:431.493333pt;}
.y1f{bottom:432.133333pt;}
.y15a{bottom:435.013333pt;}
.y18c{bottom:438.533333pt;}
.y87{bottom:438.853333pt;}
.y52{bottom:441.413333pt;}
.y11b{bottom:443.653333pt;}
.yaa{bottom:444.933333pt;}
.y7d{bottom:446.853333pt;}
.y1e{bottom:447.493333pt;}
.y17b{bottom:453.253333pt;}
.y18b{bottom:453.893333pt;}
.y86{bottom:454.213333pt;}
.y14b{bottom:455.813333pt;}
.y51{bottom:456.773333pt;}
.y159{bottom:459.013333pt;}
.y7c{bottom:462.213333pt;}
.yc1{bottom:462.533333pt;}
.y1d{bottom:462.853333pt;}
.ya9{bottom:465.413333pt;}
.y11a{bottom:467.653333pt;}
.y100{bottom:469.600000pt;}
.y14a{bottom:471.200000pt;}
.y85{bottom:477.280000pt;}
.y7b{bottom:477.600000pt;}
.y1c{bottom:478.240000pt;}
.y50{bottom:480.160000pt;}
.yc0{bottom:483.040000pt;}
.yff{bottom:484.640000pt;}
.y149{bottom:486.560000pt;}
.y17a{bottom:486.880000pt;}
.y7a{bottom:492.640000pt;}
.y1b{bottom:493.280000pt;}
.y4f{bottom:495.200000pt;}
.yfe{bottom:500.000000pt;}
.y18a{bottom:501.600000pt;}
.y148{bottom:501.920000pt;}
.y119{bottom:502.240000pt;}
.y79{bottom:508.000000pt;}
.y4e{bottom:510.560000pt;}
.yfd{bottom:515.360000pt;}
.y179{bottom:517.280000pt;}
.y1a{bottom:517.600000pt;}
.y118{bottom:520.480000pt;}
.y78{bottom:523.360000pt;}
.y4d{bottom:525.920000pt;}
.y147{bottom:526.240000pt;}
.y13a{bottom:528.480000pt;}
.yfc{bottom:530.720000pt;}
.y178{bottom:532.640000pt;}
.y189{bottom:535.200000pt;}
.y77{bottom:538.720000pt;}
.y4c{bottom:541.280000pt;}
.y139{bottom:543.840000pt;}
.yfb{bottom:546.080000pt;}
.y177{bottom:548.000000pt;}
.y188{bottom:550.240000pt;}
.y19{bottom:551.520000pt;}
.y76{bottom:554.080000pt;}
.y4b{bottom:556.640000pt;}
.y138{bottom:558.880000pt;}
.yfa{bottom:561.440000pt;}
.y176{bottom:563.360000pt;}
.y18{bottom:567.520000pt;}
.y84{bottom:569.440000pt;}
.y4a{bottom:572.000000pt;}
.y137{bottom:574.240000pt;}
.y187{bottom:574.560000pt;}
.yf9{bottom:576.800000pt;}
.y75{bottom:577.440000pt;}
.y175{bottom:578.720000pt;}
.y83{bottom:584.800000pt;}
.y136{bottom:589.626667pt;}
.yf8{bottom:592.186667pt;}
.y74{bottom:592.826667pt;}
.y174{bottom:594.106667pt;}
.y49{bottom:595.386667pt;}
.y146{bottom:596.346667pt;}
.y17{bottom:599.546667pt;}
.y117{bottom:600.186667pt;}
.y135{bottom:604.986667pt;}
.y73{bottom:608.186667pt;}
.y173{bottom:609.466667pt;}
.y48{bottom:610.746667pt;}
.y16{bottom:615.546667pt;}
.y82{bottom:616.186667pt;}
.y145{bottom:619.706667pt;}
.y72{bottom:623.546667pt;}
.y47{bottom:626.106667pt;}
.y134{bottom:629.306667pt;}
.yf7{bottom:630.906667pt;}
.y15{bottom:631.546667pt;}
.y172{bottom:632.826667pt;}
.y144{bottom:635.066667pt;}
.y1a8{bottom:636.666667pt;}
.y71{bottom:638.906667pt;}
.y46{bottom:641.466667pt;}
.ya8{bottom:644.346667pt;}
.yf6{bottom:646.266667pt;}
.y14{bottom:647.546667pt;}
.y171{bottom:648.186667pt;}
.y143{bottom:650.426667pt;}
.y81{bottom:652.026667pt;}
.y70{bottom:654.266667pt;}
.ya7{bottom:659.706667pt;}
.yf5{bottom:661.626667pt;}
.y133{bottom:662.906667pt;}
.y13{bottom:663.546667pt;}
.y45{bottom:664.826667pt;}
.y142{bottom:665.786667pt;}
.y1a7{bottom:667.386667pt;}
.y6f{bottom:669.626667pt;}
.ya6{bottom:675.066667pt;}
.yf4{bottom:676.666667pt;}
.y132{bottom:678.266667pt;}
.y170{bottom:678.906667pt;}
.y12{bottom:679.546667pt;}
.y44{bottom:680.826667pt;}
.ye3{bottom:681.146667pt;}
.y6e{bottom:684.666667pt;}
.y141{bottom:689.146667pt;}
.ya5{bottom:690.106667pt;}
.y1a6{bottom:690.746667pt;}
.yf3{bottom:692.026667pt;}
.y131{bottom:693.306667pt;}
.y16f{bottom:694.266667pt;}
.y11{bottom:695.546667pt;}
.ye2{bottom:696.506667pt;}
.y43{bottom:697.146667pt;}
.y116{bottom:700.026667pt;}
.y140{bottom:704.506667pt;}
.ya4{bottom:705.466667pt;}
.y1a5{bottom:706.106667pt;}
.yf2{bottom:707.426667pt;}
.y6d{bottom:708.066667pt;}
.y130{bottom:708.706667pt;}
.y16e{bottom:709.346667pt;}
.y10{bottom:711.586667pt;}
.ye1{bottom:711.906667pt;}
.y42{bottom:713.506667pt;}
.y115{bottom:715.426667pt;}
.y13f{bottom:719.906667pt;}
.ya3{bottom:720.866667pt;}
.y1a4{bottom:721.506667pt;}
.yf1{bottom:722.786667pt;}
.y6c{bottom:723.426667pt;}
.y12f{bottom:724.066667pt;}
.ye0{bottom:726.946667pt;}
.yf{bottom:727.586667pt;}
.y41{bottom:729.826667pt;}
.y114{bottom:730.786667pt;}
.y13e{bottom:734.946667pt;}
.ya2{bottom:736.226667pt;}
.y6b{bottom:738.786667pt;}
.y16d{bottom:740.706667pt;}
.ydf{bottom:742.306667pt;}
.ye{bottom:743.586667pt;}
.y1a3{bottom:744.866667pt;}
.yf0{bottom:746.146667pt;}
.ya1{bottom:751.586667pt;}
.y40{bottom:754.146667pt;}
.y12e{bottom:755.426667pt;}
.yde{bottom:757.666667pt;}
.ybf{bottom:758.306667pt;}
.y13d{bottom:759.266667pt;}
.yd{bottom:759.586667pt;}
.y1a2{bottom:760.226667pt;}
.y16c{bottom:761.186667pt;}
.yef{bottom:761.506667pt;}
.ya0{bottom:766.946667pt;}
.y6a{bottom:769.506667pt;}
.ydd{bottom:773.026667pt;}
.ybe{bottom:773.666667pt;}
.yc{bottom:775.586667pt;}
.y12d{bottom:775.906667pt;}
.yee{bottom:776.866667pt;}
.y3f{bottom:777.506667pt;}
.y9f{bottom:782.306667pt;}
.y1a1{bottom:783.586667pt;}
.y69{bottom:784.866667pt;}
.ybd{bottom:789.026667pt;}
.yb{bottom:791.586667pt;}
.yed{bottom:792.226667pt;}
.y3e{bottom:792.866667pt;}
.ydc{bottom:797.346667pt;}
.y9e{bottom:797.666667pt;}
.y1a0{bottom:798.946667pt;}
.y113{bottom:800.226667pt;}
.ybc{bottom:804.386667pt;}
.ya{bottom:807.586667pt;}
.y3d{bottom:808.226667pt;}
.y9d{bottom:813.026667pt;}
.y112{bottom:815.586667pt;}
.y19f{bottom:822.306667pt;}
.yec{bottom:822.946667pt;}
.y9{bottom:823.586667pt;}
.y9c{bottom:828.413333pt;}
.ybb{bottom:828.733333pt;}
.ydb{bottom:830.973333pt;}
.y19e{bottom:837.373333pt;}
.yeb{bottom:838.333333pt;}
.y3c{bottom:838.973333pt;}
.y8{bottom:839.613333pt;}
.yda{bottom:846.333333pt;}
.y9b{bottom:852.413333pt;}
.y68{bottom:854.333333pt;}
.y19d{bottom:860.733333pt;}
.yd9{bottom:861.373333pt;}
.y3b{bottom:862.333333pt;}
.y67{bottom:869.373333pt;}
.y7{bottom:871.293333pt;}
.y19c{bottom:876.093333pt;}
.yd8{bottom:876.733333pt;}
.y3a{bottom:877.373333pt;}
.y66{bottom:884.733333pt;}
.y6{bottom:886.653333pt;}
.y9a{bottom:886.973333pt;}
.yd7{bottom:892.093333pt;}
.y39{bottom:892.733333pt;}
.y19b{bottom:899.453333pt;}
.y65{bottom:900.093333pt;}
.y99{bottom:905.213333pt;}
.yea{bottom:907.453333pt;}
.y38{bottom:908.093333pt;}
.y19a{bottom:914.813333pt;}
.y64{bottom:915.453333pt;}
.y5{bottom:918.013333pt;}
.ye9{bottom:922.813333pt;}
.y37{bottom:923.453333pt;}
.y63{bottom:930.813333pt;}
.y4{bottom:933.373333pt;}
.ye8{bottom:938.173333pt;}
.y36{bottom:938.813333pt;}
.yd6{bottom:946.213333pt;}
.y3{bottom:948.773333pt;}
.ye7{bottom:953.573333pt;}
.y35{bottom:954.213333pt;}
.yd5{bottom:961.573333pt;}
.ye6{bottom:968.933333pt;}
.y34{bottom:969.573333pt;}
.yd4{bottom:976.933333pt;}
.y2{bottom:981.413333pt;}
.ye5{bottom:984.293333pt;}
.y33{bottom:984.933333pt;}
.yd3{bottom:992.293333pt;}
.y32{bottom:1000.293333pt;}
.y1{bottom:1002.853333pt;}
.y31{bottom:1015.653333pt;}
.h9{height:39.138750pt;}
.h3{height:40.503750pt;}
.h8{height:45.156250pt;}
.h6{height:46.593750pt;}
.h5{height:47.302500pt;}
.h7{height:48.195000pt;}
.h2{height:52.381250pt;}
.h4{height:56.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x2{left:118.463988pt;}
.xa{left:132.223988pt;}
.x8{left:142.466655pt;}
.x5{left:529.186655pt;}
.x6{left:566.973322pt;}
.x7{left:585.853322pt;}
.x4{left:623.933322pt;}
.x9{left:642.853322pt;}
.x3{left:699.173322pt;}
}




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