
    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_fbce03a67d177d22f8801b92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_81683fdc04ea37822917d316.woff2')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_affa604dcfdc2069373a4aca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_3757936b8a144fe5e01b6e5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_74ee9264120b4e43787a8624.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2f30f8b70075523e2be1eb85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_e2e73f829994a9ff48dea6e8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cfa960003cce57f9509a4950.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_1fd58d204d849b01a3e59e2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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;}
.ls12{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.270000px;}
.ls1{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.468000px;}
.ls1e{letter-spacing:2.448000px;}
.ls1a{letter-spacing:6.048000px;}
.ls19{letter-spacing:8.928000px;}
.ls7{letter-spacing:32.520000px;}
.ls5{letter-spacing:33.240000px;}
.ls1b{letter-spacing:33.264000px;}
.lsf{letter-spacing:54.864000px;}
.lse{letter-spacing:65.664000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws1{word-spacing:-26.748000px;}
.ws8{word-spacing:-16.632000px;}
.ws4{word-spacing:-16.488000px;}
.ws5{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.ws6{word-spacing:-16.200000px;}
.wse{word-spacing:-16.056000px;}
.ws7{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.696000px;}
.wsa{word-spacing:-15.226440px;}
.wsd{word-spacing:-12.258000px;}
.wsc{word-spacing:-12.204000px;}
.wsb{word-spacing:-12.186000px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-2.352000px;}
._1{margin-left:-1.080000px;}
._0{width:1.020000px;}
._8{width:2.928000px;}
._9{width:4.344000px;}
._a{width:5.820000px;}
._5{width:7.320000px;}
._4{width:8.328000px;}
._11{width:9.792000px;}
._10{width:11.232000px;}
._12{width:12.384000px;}
._f{width:13.680000px;}
._2{width:14.688000px;}
._d{width:18.072000px;}
._e{width:19.860000px;}
._16{width:21.648000px;}
._7{width:22.680000px;}
._6{width:23.976000px;}
._15{width:25.008000px;}
._14{width:26.040000px;}
._13{width:27.072000px;}
._18{width:28.080000px;}
._c{width:29.100000px;}
._b{width:30.240000px;}
._17{width:31.536000px;}
._1b{width:32.844000px;}
._1e{width:34.848000px;}
._2b{width:36.432000px;}
._1a{width:37.584000px;}
._19{width:38.592000px;}
._20{width:40.464000px;}
._1f{width:41.760000px;}
._21{width:59.184000px;}
._1c{width:101.244000px;}
._25{width:102.612000px;}
._26{width:144.216000px;}
._23{width:149.592000px;}
._22{width:150.672000px;}
._24{width:151.956000px;}
._2a{width:203.592000px;}
._29{width:204.672000px;}
._27{width:258.816000px;}
._1d{width:1911.444000px;}
._28{width:2152.392000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:156.240000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:5.580000px;}
.yee{bottom:17.100000px;}
.yda{bottom:18.540000px;}
.yea{bottom:22.140000px;}
.yed{bottom:33.654000px;}
.yd9{bottom:35.100000px;}
.y2{bottom:57.420000px;}
.y1{bottom:77.616000px;}
.y28{bottom:117.216000px;}
.yf6{bottom:117.396000px;}
.y110{bottom:117.576000px;}
.y59{bottom:123.336000px;}
.y14d{bottom:126.396000px;}
.yc1{bottom:126.576000px;}
.yec{bottom:126.756000px;}
.y98{bottom:132.336000px;}
.y45{bottom:135.216000px;}
.yfe{bottom:135.576000px;}
.y107{bottom:141.516000px;}
.y15b{bottom:150.330000px;}
.y87{bottom:150.510000px;}
.y27{bottom:151.590000px;}
.y133{bottom:153.390000px;}
.ye8{bottom:156.990000px;}
.y14c{bottom:159.330000px;}
.yc0{bottom:159.510000px;}
.y121{bottom:164.550000px;}
.y58{bottom:168.330000px;}
.yfd{bottom:168.510000px;}
.yab{bottom:171.750000px;}
.y97{bottom:177.330000px;}
.yc7{bottom:177.510000px;}
.y44{bottom:178.950000px;}
.y6d{bottom:180.570000px;}
.y15a{bottom:183.270000px;}
.yf5{bottom:183.450000px;}
.y10f{bottom:183.630000px;}
.y106{bottom:186.510000px;}
.y14b{bottom:192.270000px;}
.ybf{bottom:192.450000px;}
.y13d{bottom:195.330000px;}
.y86{bottom:195.510000px;}
.y26{bottom:197.130000px;}
.y120{bottom:197.490000px;}
.y165{bottom:201.270000px;}
.yfc{bottom:201.450000px;}
.yaa{bottom:204.690000px;}
.y57{bottom:213.330000px;}
.y6c{bottom:213.510000px;}
.yd7{bottom:214.770000px;}
.y159{bottom:216.210000px;}
.yf4{bottom:216.390000px;}
.y10e{bottom:216.570000px;}
.y96{bottom:222.330000px;}
.y43{bottom:222.510000px;}
.y14a{bottom:225.210000px;}
.ybe{bottom:225.390000px;}
.y85{bottom:228.450000px;}
.y11f{bottom:230.430000px;}
.y105{bottom:231.330000px;}
.y164{bottom:234.210000px;}
.ya9{bottom:237.630000px;}
.y13c{bottom:240.330000px;}
.y25{bottom:242.490000px;}
.y6b{bottom:246.450000px;}
.yd6{bottom:247.710000px;}
.yf3{bottom:249.330000px;}
.y10d{bottom:249.510000px;}
.y175{bottom:252.390000px;}
.y42{bottom:255.450000px;}
.y56{bottom:258.330000px;}
.ybd{bottom:258.510000px;}
.y84{bottom:261.390000px;}
.y11e{bottom:263.370000px;}
.y132{bottom:264.270000px;}
.y95{bottom:267.150000px;}
.yc6{bottom:267.330000px;}
.ya8{bottom:270.570000px;}
.y24{bottom:276.330000px;}
.y6a{bottom:279.390000px;}
.yd5{bottom:280.650000px;}
.yf2{bottom:282.270000px;}
.y10c{bottom:282.450000px;}
.y163{bottom:285.150000px;}
.y13b{bottom:285.330000px;}
.y15{bottom:285.870000px;}
.y41{bottom:288.390000px;}
.ybc{bottom:291.450000px;}
.y83{bottom:294.330000px;}
.y131{bottom:297.210000px;}
.y158{bottom:300.090000px;}
.yc5{bottom:300.270000px;}
.y55{bottom:303.150000px;}
.ya7{bottom:303.510000px;}
.y149{bottom:309.270000px;}
.y94{bottom:312.150000px;}
.y69{bottom:312.330000px;}
.yd4{bottom:313.590000px;}
.y11d{bottom:314.310000px;}
.yf1{bottom:315.210000px;}
.y10b{bottom:315.390000px;}
.y162{bottom:318.270000px;}
.y40{bottom:321.330000px;}
.y23{bottom:321.510000px;}
.ybb{bottom:324.390000px;}
.y82{bottom:327.270000px;}
.y130{bottom:330.330000px;}
.yc4{bottom:333.210000px;}
.y174{bottom:336.090000px;}
.y14{bottom:341.355000px;}
.y148{bottom:342.255000px;}
.y68{bottom:345.315000px;}
.yd3{bottom:346.575000px;}
.y11c{bottom:347.295000px;}
.y54{bottom:348.195000px;}
.y10a{bottom:348.375000px;}
.ya6{bottom:348.555000px;}
.y157{bottom:351.255000px;}
.y3f{bottom:354.315000px;}
.y93{bottom:357.195000px;}
.yba{bottom:357.375000px;}
.y81{bottom:360.255000px;}
.y104{bottom:366.375000px;}
.y22{bottom:367.095000px;}
.y161{bottom:369.255000px;}
.y12f{bottom:375.195000px;}
.y67{bottom:378.255000px;}
.yd2{bottom:379.515000px;}
.y11b{bottom:380.415000px;}
.y109{bottom:381.315000px;}
.ya5{bottom:381.495000px;}
.y156{bottom:384.195000px;}
.y3e{bottom:387.255000px;}
.y53{bottom:393.195000px;}
.y13{bottom:394.995000px;}
.y92{bottom:402.195000px;}
.yb9{bottom:402.375000px;}
.y80{bottom:405.255000px;}
.y12e{bottom:408.135000px;}
.y66{bottom:411.195000px;}
.y21{bottom:412.635000px;}
.y11a{bottom:413.355000px;}
.y108{bottom:414.255000px;}
.y171{bottom:417.135000px;}
.y3d{bottom:420.195000px;}
.yf0{bottom:426.135000px;}
.ya4{bottom:426.495000px;}
.y155{bottom:435.135000px;}
.y52{bottom:438.195000px;}
.y12d{bottom:441.255000px;}
.yc3{bottom:444.135000px;}
.yd1{bottom:445.575000px;}
.y119{bottom:446.295000px;}
.y91{bottom:447.015000px;}
.yb8{bottom:447.195000px;}
.y12{bottom:447.915000px;}
.y170{bottom:450.075000px;}
.y7f{bottom:450.255000px;}
.y13a{bottom:453.135000px;}
.y65{bottom:456.195000px;}
.y20{bottom:458.175000px;}
.yef{bottom:459.075000px;}
.ya3{bottom:459.435000px;}
.y3c{bottom:465.195000px;}
.y154{bottom:468.075000px;}
.yc2{bottom:477.255000px;}
.yd0{bottom:478.515000px;}
.y118{bottom:479.235000px;}
.yb7{bottom:480.135000px;}
.y51{bottom:483.015000px;}
.y7e{bottom:483.195000px;}
.y139{bottom:486.075000px;}
.y64{bottom:489.135000px;}
.y90{bottom:492.015000px;}
.y12c{bottom:492.195000px;}
.y3b{bottom:498.135000px;}
.y16f{bottom:501.015000px;}
.y103{bottom:501.195000px;}
.y11{bottom:502.635000px;}
.y1f{bottom:503.715000px;}
.ya2{bottom:504.435000px;}
.ycf{bottom:511.455000px;}
.y117{bottom:512.175000px;}
.yb6{bottom:513.255000px;}
.y7d{bottom:516.135000px;}
.y138{bottom:519.015000px;}
.y63{bottom:522.075000px;}
.y147{bottom:524.955000px;}
.y12b{bottom:525.135000px;}
.y50{bottom:528.015000px;}
.y3a{bottom:531.075000px;}
.y16e{bottom:533.955000px;}
.y102{bottom:534.135000px;}
.y8f{bottom:537.015000px;}
.y1e{bottom:537.375000px;}
.yce{bottom:544.395000px;}
.y116{bottom:545.115000px;}
.yb5{bottom:546.195000px;}
.y7c{bottom:549.075000px;}
.y153{bottom:551.955000px;}
.y137{bottom:552.135000px;}
.yf7{bottom:554.835000px;}
.y62{bottom:555.015000px;}
.y12a{bottom:558.075000px;}
.y39{bottom:564.015000px;}
.y101{bottom:567.075000px;}
.y10{bottom:567.795000px;}
.ye7{bottom:569.955000px;}
.ya1{bottom:570.315000px;}
.y1d{bottom:570.855000px;}
.y4f{bottom:573.015000px;}
.y146{bottom:575.895000px;}
.ycd{bottom:577.335000px;}
.y115{bottom:578.055000px;}
.yb4{bottom:579.135000px;}
.y7b{bottom:582.015000px;}
.y16d{bottom:584.895000px;}
.y61{bottom:588.135000px;}
.y129{bottom:591.015000px;}
.y136{bottom:596.955000px;}
.y100{bottom:600.015000px;}
.ye6{bottom:602.895000px;}
.y152{bottom:603.075000px;}
.ya0{bottom:603.255000px;}
.y38{bottom:609.045000px;}
.ycc{bottom:610.305000px;}
.y114{bottom:611.025000px;}
.yb3{bottom:612.105000px;}
.y7a{bottom:614.985000px;}
.y1c{bottom:616.245000px;}
.y16c{bottom:617.865000px;}
.y4e{bottom:618.045000px;}
.y60{bottom:621.105000px;}
.y128{bottom:623.985000px;}
.y8e{bottom:627.045000px;}
.yd8{bottom:627.765000px;}
.y135{bottom:629.925000px;}
.yff{bottom:632.985000px;}
.yf{bottom:634.785000px;}
.ye5{bottom:635.865000px;}
.y177{bottom:636.045000px;}
.y37{bottom:641.985000px;}
.y113{bottom:643.965000px;}
.yb2{bottom:645.045000px;}
.y79{bottom:647.925000px;}
.y9f{bottom:648.105000px;}
.y16b{bottom:650.805000px;}
.y151{bottom:653.865000px;}
.y5f{bottom:654.045000px;}
.ycb{bottom:655.305000px;}
.y145{bottom:659.985000px;}
.y1b{bottom:661.605000px;}
.y4d{bottom:663.045000px;}
.yfb{bottom:665.925000px;}
.ye4{bottom:668.805000px;}
.y8d{bottom:671.865000px;}
.y36{bottom:674.925000px;}
.y112{bottom:676.905000px;}
.yb1{bottom:677.985000px;}
.y78{bottom:681.045000px;}
.y9e{bottom:682.125000px;}
.y150{bottom:686.805000px;}
.y5e{bottom:686.985000px;}
.y144{bottom:692.925000px;}
.y134{bottom:695.985000px;}
.yfa{bottom:699.045000px;}
.ye{bottom:701.745000px;}
.ye3{bottom:701.925000px;}
.y1a{bottom:707.145000px;}
.y35{bottom:707.865000px;}
.y111{bottom:710.025000px;}
.yb0{bottom:710.925000px;}
.y77{bottom:713.985000px;}
.y9d{bottom:715.965000px;}
.y8c{bottom:716.865000px;}
.y5d{bottom:719.925000px;}
.y143{bottom:725.865000px;}
.yf9{bottom:731.985000px;}
.ye2{bottom:734.865000px;}
.yca{bottom:737.925000px;}
.y34{bottom:740.805000px;}
.yaf{bottom:743.865000px;}
.y76{bottom:746.925000px;}
.y19{bottom:752.685000px;}
.y4c{bottom:752.865000px;}
.y142{bottom:758.805000px;}
.y8b{bottom:761.865000px;}
.y9c{bottom:762.045000px;}
.yf8{bottom:764.925000px;}
.yd{bottom:768.705000px;}
.y14f{bottom:770.865000px;}
.y33{bottom:773.925000px;}
.ye9{bottom:774.105000px;}
.yae{bottom:776.805000px;}
.ye1{bottom:779.685000px;}
.y75{bottom:779.865000px;}
.yc9{bottom:782.745000px;}
.y5c{bottom:785.805000px;}
.y176{bottom:788.865000px;}
.y141{bottom:791.745000px;}
.y4b{bottom:797.865000px;}
.y18{bottom:798.225000px;}
.y32{bottom:806.865000px;}
.yad{bottom:809.925000px;}
.y5b{bottom:818.745000px;}
.y14e{bottom:821.805000px;}
.ye0{bottom:824.685000px;}
.y74{bottom:824.865000px;}
.yc8{bottom:827.745000px;}
.y4a{bottom:830.805000px;}
.y16a{bottom:836.745000px;}
.yc{bottom:837.285000px;}
.y8a{bottom:839.805000px;}
.y9b{bottom:840.885000px;}
.yac{bottom:842.865000px;}
.y17{bottom:843.765000px;}
.y31{bottom:851.685000px;}
.y140{bottom:857.625000px;}
.y127{bottom:857.805000px;}
.y49{bottom:863.745000px;}
.ydf{bottom:869.685000px;}
.yb{bottom:870.990000px;}
.y89{bottom:872.790000px;}
.y9a{bottom:873.690000px;}
.y73{bottom:875.850000px;}
.y16{bottom:884.310000px;}
.y30{bottom:884.850000px;}
.y169{bottom:887.730000px;}
.y126{bottom:890.790000px;}
.y48{bottom:896.730000px;}
.y160{bottom:902.670000px;}
.ya{bottom:904.830000px;}
.y88{bottom:905.730000px;}
.y99{bottom:907.710000px;}
.y72{bottom:908.790000px;}
.yde{bottom:914.730000px;}
.y2f{bottom:917.790000px;}
.y125{bottom:923.730000px;}
.y47{bottom:929.670000px;}
.y9{bottom:938.490000px;}
.y168{bottom:938.670000px;}
.y71{bottom:941.730000px;}
.y2e{bottom:950.730000px;}
.y15f{bottom:953.610000px;}
.y124{bottom:956.670000px;}
.ydd{bottom:959.550000px;}
.y46{bottom:962.610000px;}
.y167{bottom:971.610000px;}
.y8{bottom:972.150000px;}
.y70{bottom:974.670000px;}
.y123{bottom:989.610000px;}
.y13f{bottom:992.670000px;}
.y2d{bottom:995.550000px;}
.ydc{bottom:1004.550000px;}
.y15e{bottom:1004.730000px;}
.y7{bottom:1005.990000px;}
.y6f{bottom:1007.610000px;}
.y166{bottom:1022.550000px;}
.y122{bottom:1022.730000px;}
.y2c{bottom:1028.670000px;}
.y173{bottom:1037.490000px;}
.y6{bottom:1039.650000px;}
.y6e{bottom:1040.550000px;}
.y13e{bottom:1043.610000px;}
.ydb{bottom:1049.550000px;}
.y15d{bottom:1055.490000px;}
.y2b{bottom:1061.610000px;}
.y5{bottom:1073.490000px;}
.y172{bottom:1088.430000px;}
.y15c{bottom:1088.610000px;}
.y2a{bottom:1094.550000px;}
.y5a{bottom:1106.430000px;}
.y4{bottom:1107.150000px;}
.y29{bottom:1139.580000px;}
.y3{bottom:1141.020000px;}
.h13{height:31.500000px;}
.h11{height:35.100000px;}
.h12{height:46.440000px;}
.hf{height:47.880000px;}
.h10{height:53.709961px;}
.h15{height:59.378906px;}
.ha{height:59.439023px;}
.h2{height:65.884219px;}
.hc{height:71.613281px;}
.hb{height:73.722656px;}
.hd{height:74.004654px;}
.he{height:74.953125px;}
.h14{height:83.787539px;}
.h9{height:105.996094px;}
.h8{height:108.843750px;}
.h7{height:125.455078px;}
.h5{height:132.789375px;}
.h6{height:134.912461px;}
.h4{height:157.460625px;}
.h3{height:217.687500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:311.250000px;}
.w4{width:342.795000px;}
.w6{width:348.150000px;}
.w5{width:354.315000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x13{left:136.835987px;}
.x15{left:146.195987px;}
.x17{left:154.649987px;}
.x6{left:157.529987px;}
.x1f{left:158.609987px;}
.x7{left:173.369987px;}
.x18{left:181.649987px;}
.x20{left:185.609987px;}
.xf{left:198.569987px;}
.xe{left:207.569987px;}
.x1e{left:208.649987px;}
.x5{left:219.989987px;}
.x11{left:256.709987px;}
.x1b{left:261.930000px;}
.xc{left:266.429987px;}
.x1c{left:269.310000px;}
.x9{left:278.894987px;}
.x1d{left:285.555000px;}
.x16{left:286.994987px;}
.xa{left:288.794987px;}
.x1a{left:291.135000px;}
.x12{left:294.374987px;}
.x4{left:295.814987px;}
.xd{left:302.654987px;}
.x14{left:340.094987px;}
.x10{left:378.254987px;}
.x3{left:393.194987px;}
.x19{left:438.194987px;}
.x1{left:442.334987px;}
.x8{left:446.474987px;}
.xb{left:572.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.416000pt;}
.ls1e{letter-spacing:2.176000pt;}
.ls1a{letter-spacing:5.376000pt;}
.ls19{letter-spacing:7.936000pt;}
.ls7{letter-spacing:28.906667pt;}
.ls5{letter-spacing:29.546667pt;}
.ls1b{letter-spacing:29.568000pt;}
.lsf{letter-spacing:48.768000pt;}
.lse{letter-spacing:58.368000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws1{word-spacing:-23.776000pt;}
.ws8{word-spacing:-14.784000pt;}
.ws4{word-spacing:-14.656000pt;}
.ws5{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.400000pt;}
.wse{word-spacing:-14.272000pt;}
.ws7{word-spacing:-14.144000pt;}
.wsf{word-spacing:-13.952000pt;}
.wsa{word-spacing:-13.534613pt;}
.wsd{word-spacing:-10.896000pt;}
.wsc{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.832000pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-2.090667pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.906667pt;}
._8{width:2.602667pt;}
._9{width:3.861333pt;}
._a{width:5.173333pt;}
._5{width:6.506667pt;}
._4{width:7.402667pt;}
._11{width:8.704000pt;}
._10{width:9.984000pt;}
._12{width:11.008000pt;}
._f{width:12.160000pt;}
._2{width:13.056000pt;}
._d{width:16.064000pt;}
._e{width:17.653333pt;}
._16{width:19.242667pt;}
._7{width:20.160000pt;}
._6{width:21.312000pt;}
._15{width:22.229333pt;}
._14{width:23.146667pt;}
._13{width:24.064000pt;}
._18{width:24.960000pt;}
._c{width:25.866667pt;}
._b{width:26.880000pt;}
._17{width:28.032000pt;}
._1b{width:29.194667pt;}
._1e{width:30.976000pt;}
._2b{width:32.384000pt;}
._1a{width:33.408000pt;}
._19{width:34.304000pt;}
._20{width:35.968000pt;}
._1f{width:37.120000pt;}
._21{width:52.608000pt;}
._1c{width:89.994667pt;}
._25{width:91.210667pt;}
._26{width:128.192000pt;}
._23{width:132.970667pt;}
._22{width:133.930667pt;}
._24{width:135.072000pt;}
._2a{width:180.970667pt;}
._29{width:181.930667pt;}
._27{width:230.058667pt;}
._1d{width:1699.061333pt;}
._28{width:1913.237333pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:138.880000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:4.960000pt;}
.yee{bottom:15.200000pt;}
.yda{bottom:16.480000pt;}
.yea{bottom:19.680000pt;}
.yed{bottom:29.914667pt;}
.yd9{bottom:31.200000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.992000pt;}
.y28{bottom:104.192000pt;}
.yf6{bottom:104.352000pt;}
.y110{bottom:104.512000pt;}
.y59{bottom:109.632000pt;}
.y14d{bottom:112.352000pt;}
.yc1{bottom:112.512000pt;}
.yec{bottom:112.672000pt;}
.y98{bottom:117.632000pt;}
.y45{bottom:120.192000pt;}
.yfe{bottom:120.512000pt;}
.y107{bottom:125.792000pt;}
.y15b{bottom:133.626667pt;}
.y87{bottom:133.786667pt;}
.y27{bottom:134.746667pt;}
.y133{bottom:136.346667pt;}
.ye8{bottom:139.546667pt;}
.y14c{bottom:141.626667pt;}
.yc0{bottom:141.786667pt;}
.y121{bottom:146.266667pt;}
.y58{bottom:149.626667pt;}
.yfd{bottom:149.786667pt;}
.yab{bottom:152.666667pt;}
.y97{bottom:157.626667pt;}
.yc7{bottom:157.786667pt;}
.y44{bottom:159.066667pt;}
.y6d{bottom:160.506667pt;}
.y15a{bottom:162.906667pt;}
.yf5{bottom:163.066667pt;}
.y10f{bottom:163.226667pt;}
.y106{bottom:165.786667pt;}
.y14b{bottom:170.906667pt;}
.ybf{bottom:171.066667pt;}
.y13d{bottom:173.626667pt;}
.y86{bottom:173.786667pt;}
.y26{bottom:175.226667pt;}
.y120{bottom:175.546667pt;}
.y165{bottom:178.906667pt;}
.yfc{bottom:179.066667pt;}
.yaa{bottom:181.946667pt;}
.y57{bottom:189.626667pt;}
.y6c{bottom:189.786667pt;}
.yd7{bottom:190.906667pt;}
.y159{bottom:192.186667pt;}
.yf4{bottom:192.346667pt;}
.y10e{bottom:192.506667pt;}
.y96{bottom:197.626667pt;}
.y43{bottom:197.786667pt;}
.y14a{bottom:200.186667pt;}
.ybe{bottom:200.346667pt;}
.y85{bottom:203.066667pt;}
.y11f{bottom:204.826667pt;}
.y105{bottom:205.626667pt;}
.y164{bottom:208.186667pt;}
.ya9{bottom:211.226667pt;}
.y13c{bottom:213.626667pt;}
.y25{bottom:215.546667pt;}
.y6b{bottom:219.066667pt;}
.yd6{bottom:220.186667pt;}
.yf3{bottom:221.626667pt;}
.y10d{bottom:221.786667pt;}
.y175{bottom:224.346667pt;}
.y42{bottom:227.066667pt;}
.y56{bottom:229.626667pt;}
.ybd{bottom:229.786667pt;}
.y84{bottom:232.346667pt;}
.y11e{bottom:234.106667pt;}
.y132{bottom:234.906667pt;}
.y95{bottom:237.466667pt;}
.yc6{bottom:237.626667pt;}
.ya8{bottom:240.506667pt;}
.y24{bottom:245.626667pt;}
.y6a{bottom:248.346667pt;}
.yd5{bottom:249.466667pt;}
.yf2{bottom:250.906667pt;}
.y10c{bottom:251.066667pt;}
.y163{bottom:253.466667pt;}
.y13b{bottom:253.626667pt;}
.y15{bottom:254.106667pt;}
.y41{bottom:256.346667pt;}
.ybc{bottom:259.066667pt;}
.y83{bottom:261.626667pt;}
.y131{bottom:264.186667pt;}
.y158{bottom:266.746667pt;}
.yc5{bottom:266.906667pt;}
.y55{bottom:269.466667pt;}
.ya7{bottom:269.786667pt;}
.y149{bottom:274.906667pt;}
.y94{bottom:277.466667pt;}
.y69{bottom:277.626667pt;}
.yd4{bottom:278.746667pt;}
.y11d{bottom:279.386667pt;}
.yf1{bottom:280.186667pt;}
.y10b{bottom:280.346667pt;}
.y162{bottom:282.906667pt;}
.y40{bottom:285.626667pt;}
.y23{bottom:285.786667pt;}
.ybb{bottom:288.346667pt;}
.y82{bottom:290.906667pt;}
.y130{bottom:293.626667pt;}
.yc4{bottom:296.186667pt;}
.y174{bottom:298.746667pt;}
.y14{bottom:303.426667pt;}
.y148{bottom:304.226667pt;}
.y68{bottom:306.946667pt;}
.yd3{bottom:308.066667pt;}
.y11c{bottom:308.706667pt;}
.y54{bottom:309.506667pt;}
.y10a{bottom:309.666667pt;}
.ya6{bottom:309.826667pt;}
.y157{bottom:312.226667pt;}
.y3f{bottom:314.946667pt;}
.y93{bottom:317.506667pt;}
.yba{bottom:317.666667pt;}
.y81{bottom:320.226667pt;}
.y104{bottom:325.666667pt;}
.y22{bottom:326.306667pt;}
.y161{bottom:328.226667pt;}
.y12f{bottom:333.506667pt;}
.y67{bottom:336.226667pt;}
.yd2{bottom:337.346667pt;}
.y11b{bottom:338.146667pt;}
.y109{bottom:338.946667pt;}
.ya5{bottom:339.106667pt;}
.y156{bottom:341.506667pt;}
.y3e{bottom:344.226667pt;}
.y53{bottom:349.506667pt;}
.y13{bottom:351.106667pt;}
.y92{bottom:357.506667pt;}
.yb9{bottom:357.666667pt;}
.y80{bottom:360.226667pt;}
.y12e{bottom:362.786667pt;}
.y66{bottom:365.506667pt;}
.y21{bottom:366.786667pt;}
.y11a{bottom:367.426667pt;}
.y108{bottom:368.226667pt;}
.y171{bottom:370.786667pt;}
.y3d{bottom:373.506667pt;}
.yf0{bottom:378.786667pt;}
.ya4{bottom:379.106667pt;}
.y155{bottom:386.786667pt;}
.y52{bottom:389.506667pt;}
.y12d{bottom:392.226667pt;}
.yc3{bottom:394.786667pt;}
.yd1{bottom:396.066667pt;}
.y119{bottom:396.706667pt;}
.y91{bottom:397.346667pt;}
.yb8{bottom:397.506667pt;}
.y12{bottom:398.146667pt;}
.y170{bottom:400.066667pt;}
.y7f{bottom:400.226667pt;}
.y13a{bottom:402.786667pt;}
.y65{bottom:405.506667pt;}
.y20{bottom:407.266667pt;}
.yef{bottom:408.066667pt;}
.ya3{bottom:408.386667pt;}
.y3c{bottom:413.506667pt;}
.y154{bottom:416.066667pt;}
.yc2{bottom:424.226667pt;}
.yd0{bottom:425.346667pt;}
.y118{bottom:425.986667pt;}
.yb7{bottom:426.786667pt;}
.y51{bottom:429.346667pt;}
.y7e{bottom:429.506667pt;}
.y139{bottom:432.066667pt;}
.y64{bottom:434.786667pt;}
.y90{bottom:437.346667pt;}
.y12c{bottom:437.506667pt;}
.y3b{bottom:442.786667pt;}
.y16f{bottom:445.346667pt;}
.y103{bottom:445.506667pt;}
.y11{bottom:446.786667pt;}
.y1f{bottom:447.746667pt;}
.ya2{bottom:448.386667pt;}
.ycf{bottom:454.626667pt;}
.y117{bottom:455.266667pt;}
.yb6{bottom:456.226667pt;}
.y7d{bottom:458.786667pt;}
.y138{bottom:461.346667pt;}
.y63{bottom:464.066667pt;}
.y147{bottom:466.626667pt;}
.y12b{bottom:466.786667pt;}
.y50{bottom:469.346667pt;}
.y3a{bottom:472.066667pt;}
.y16e{bottom:474.626667pt;}
.y102{bottom:474.786667pt;}
.y8f{bottom:477.346667pt;}
.y1e{bottom:477.666667pt;}
.yce{bottom:483.906667pt;}
.y116{bottom:484.546667pt;}
.yb5{bottom:485.506667pt;}
.y7c{bottom:488.066667pt;}
.y153{bottom:490.626667pt;}
.y137{bottom:490.786667pt;}
.yf7{bottom:493.186667pt;}
.y62{bottom:493.346667pt;}
.y12a{bottom:496.066667pt;}
.y39{bottom:501.346667pt;}
.y101{bottom:504.066667pt;}
.y10{bottom:504.706667pt;}
.ye7{bottom:506.626667pt;}
.ya1{bottom:506.946667pt;}
.y1d{bottom:507.426667pt;}
.y4f{bottom:509.346667pt;}
.y146{bottom:511.906667pt;}
.ycd{bottom:513.186667pt;}
.y115{bottom:513.826667pt;}
.yb4{bottom:514.786667pt;}
.y7b{bottom:517.346667pt;}
.y16d{bottom:519.906667pt;}
.y61{bottom:522.786667pt;}
.y129{bottom:525.346667pt;}
.y136{bottom:530.626667pt;}
.y100{bottom:533.346667pt;}
.ye6{bottom:535.906667pt;}
.y152{bottom:536.066667pt;}
.ya0{bottom:536.226667pt;}
.y38{bottom:541.373333pt;}
.ycc{bottom:542.493333pt;}
.y114{bottom:543.133333pt;}
.yb3{bottom:544.093333pt;}
.y7a{bottom:546.653333pt;}
.y1c{bottom:547.773333pt;}
.y16c{bottom:549.213333pt;}
.y4e{bottom:549.373333pt;}
.y60{bottom:552.093333pt;}
.y128{bottom:554.653333pt;}
.y8e{bottom:557.373333pt;}
.yd8{bottom:558.013333pt;}
.y135{bottom:559.933333pt;}
.yff{bottom:562.653333pt;}
.yf{bottom:564.253333pt;}
.ye5{bottom:565.213333pt;}
.y177{bottom:565.373333pt;}
.y37{bottom:570.653333pt;}
.y113{bottom:572.413333pt;}
.yb2{bottom:573.373333pt;}
.y79{bottom:575.933333pt;}
.y9f{bottom:576.093333pt;}
.y16b{bottom:578.493333pt;}
.y151{bottom:581.213333pt;}
.y5f{bottom:581.373333pt;}
.ycb{bottom:582.493333pt;}
.y145{bottom:586.653333pt;}
.y1b{bottom:588.093333pt;}
.y4d{bottom:589.373333pt;}
.yfb{bottom:591.933333pt;}
.ye4{bottom:594.493333pt;}
.y8d{bottom:597.213333pt;}
.y36{bottom:599.933333pt;}
.y112{bottom:601.693333pt;}
.yb1{bottom:602.653333pt;}
.y78{bottom:605.373333pt;}
.y9e{bottom:606.333333pt;}
.y150{bottom:610.493333pt;}
.y5e{bottom:610.653333pt;}
.y144{bottom:615.933333pt;}
.y134{bottom:618.653333pt;}
.yfa{bottom:621.373333pt;}
.ye{bottom:623.773333pt;}
.ye3{bottom:623.933333pt;}
.y1a{bottom:628.573333pt;}
.y35{bottom:629.213333pt;}
.y111{bottom:631.133333pt;}
.yb0{bottom:631.933333pt;}
.y77{bottom:634.653333pt;}
.y9d{bottom:636.413333pt;}
.y8c{bottom:637.213333pt;}
.y5d{bottom:639.933333pt;}
.y143{bottom:645.213333pt;}
.yf9{bottom:650.653333pt;}
.ye2{bottom:653.213333pt;}
.yca{bottom:655.933333pt;}
.y34{bottom:658.493333pt;}
.yaf{bottom:661.213333pt;}
.y76{bottom:663.933333pt;}
.y19{bottom:669.053333pt;}
.y4c{bottom:669.213333pt;}
.y142{bottom:674.493333pt;}
.y8b{bottom:677.213333pt;}
.y9c{bottom:677.373333pt;}
.yf8{bottom:679.933333pt;}
.yd{bottom:683.293333pt;}
.y14f{bottom:685.213333pt;}
.y33{bottom:687.933333pt;}
.ye9{bottom:688.093333pt;}
.yae{bottom:690.493333pt;}
.ye1{bottom:693.053333pt;}
.y75{bottom:693.213333pt;}
.yc9{bottom:695.773333pt;}
.y5c{bottom:698.493333pt;}
.y176{bottom:701.213333pt;}
.y141{bottom:703.773333pt;}
.y4b{bottom:709.213333pt;}
.y18{bottom:709.533333pt;}
.y32{bottom:717.213333pt;}
.yad{bottom:719.933333pt;}
.y5b{bottom:727.773333pt;}
.y14e{bottom:730.493333pt;}
.ye0{bottom:733.053333pt;}
.y74{bottom:733.213333pt;}
.yc8{bottom:735.773333pt;}
.y4a{bottom:738.493333pt;}
.y16a{bottom:743.773333pt;}
.yc{bottom:744.253333pt;}
.y8a{bottom:746.493333pt;}
.y9b{bottom:747.453333pt;}
.yac{bottom:749.213333pt;}
.y17{bottom:750.013333pt;}
.y31{bottom:757.053333pt;}
.y140{bottom:762.333333pt;}
.y127{bottom:762.493333pt;}
.y49{bottom:767.773333pt;}
.ydf{bottom:773.053333pt;}
.yb{bottom:774.213333pt;}
.y89{bottom:775.813333pt;}
.y9a{bottom:776.613333pt;}
.y73{bottom:778.533333pt;}
.y16{bottom:786.053333pt;}
.y30{bottom:786.533333pt;}
.y169{bottom:789.093333pt;}
.y126{bottom:791.813333pt;}
.y48{bottom:797.093333pt;}
.y160{bottom:802.373333pt;}
.ya{bottom:804.293333pt;}
.y88{bottom:805.093333pt;}
.y99{bottom:806.853333pt;}
.y72{bottom:807.813333pt;}
.yde{bottom:813.093333pt;}
.y2f{bottom:815.813333pt;}
.y125{bottom:821.093333pt;}
.y47{bottom:826.373333pt;}
.y9{bottom:834.213333pt;}
.y168{bottom:834.373333pt;}
.y71{bottom:837.093333pt;}
.y2e{bottom:845.093333pt;}
.y15f{bottom:847.653333pt;}
.y124{bottom:850.373333pt;}
.ydd{bottom:852.933333pt;}
.y46{bottom:855.653333pt;}
.y167{bottom:863.653333pt;}
.y8{bottom:864.133333pt;}
.y70{bottom:866.373333pt;}
.y123{bottom:879.653333pt;}
.y13f{bottom:882.373333pt;}
.y2d{bottom:884.933333pt;}
.ydc{bottom:892.933333pt;}
.y15e{bottom:893.093333pt;}
.y7{bottom:894.213333pt;}
.y6f{bottom:895.653333pt;}
.y166{bottom:908.933333pt;}
.y122{bottom:909.093333pt;}
.y2c{bottom:914.373333pt;}
.y173{bottom:922.213333pt;}
.y6{bottom:924.133333pt;}
.y6e{bottom:924.933333pt;}
.y13e{bottom:927.653333pt;}
.ydb{bottom:932.933333pt;}
.y15d{bottom:938.213333pt;}
.y2b{bottom:943.653333pt;}
.y5{bottom:954.213333pt;}
.y172{bottom:967.493333pt;}
.y15c{bottom:967.653333pt;}
.y2a{bottom:972.933333pt;}
.y5a{bottom:983.493333pt;}
.y4{bottom:984.133333pt;}
.y29{bottom:1012.960000pt;}
.y3{bottom:1014.240000pt;}
.h13{height:28.000000pt;}
.h11{height:31.200000pt;}
.h12{height:41.280000pt;}
.hf{height:42.560000pt;}
.h10{height:47.742188pt;}
.h15{height:52.781250pt;}
.ha{height:52.834688pt;}
.h2{height:58.563750pt;}
.hc{height:63.656250pt;}
.hb{height:65.531250pt;}
.hd{height:65.781915pt;}
.he{height:66.625000pt;}
.h14{height:74.477812pt;}
.h9{height:94.218750pt;}
.h8{height:96.750000pt;}
.h7{height:111.515625pt;}
.h5{height:118.035000pt;}
.h6{height:119.922187pt;}
.h4{height:139.965000pt;}
.h3{height:193.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:276.666667pt;}
.w4{width:304.706667pt;}
.w6{width:309.466667pt;}
.w5{width:314.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x13{left:121.631988pt;}
.x15{left:129.951988pt;}
.x17{left:137.466655pt;}
.x6{left:140.026655pt;}
.x1f{left:140.986655pt;}
.x7{left:154.106655pt;}
.x18{left:161.466655pt;}
.x20{left:164.986655pt;}
.xf{left:176.506655pt;}
.xe{left:184.506655pt;}
.x1e{left:185.466655pt;}
.x5{left:195.546655pt;}
.x11{left:228.186655pt;}
.x1b{left:232.826667pt;}
.xc{left:236.826655pt;}
.x1c{left:239.386667pt;}
.x9{left:247.906655pt;}
.x1d{left:253.826667pt;}
.x16{left:255.106655pt;}
.xa{left:256.706655pt;}
.x1a{left:258.786667pt;}
.x12{left:261.666655pt;}
.x4{left:262.946655pt;}
.xd{left:269.026655pt;}
.x14{left:302.306655pt;}
.x10{left:336.226655pt;}
.x3{left:349.506655pt;}
.x19{left:389.506655pt;}
.x1{left:393.186655pt;}
.x8{left:396.866655pt;}
.xb{left:508.893322pt;}
}




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