
    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_08ef34e0453c52cfb226404c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_40f0eb44a1f64c425965bab5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_8a35a16a5b77536e09167c27.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_146155598ef4f8b6b7542cc4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_fd886004b4f81a46e2cec318.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854492;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_7e534c80653372af14be2ee3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_c0dd982df756f8fc4d3aea4a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_1f9502af93390fe6717b9a5f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_725a875532d4d9209c853f28.woff')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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);}
.v1{vertical-align:-12.240000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.478200px;}
.ls4{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270600px;}
.ls8{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.097800px;}
.lsb{letter-spacing:-0.094800px;}
.ls3{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.097920px;}
.ls1{letter-spacing:0.187200px;}
.lse{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.223200px;}
.ls12{letter-spacing:0.308880px;}
.ls9{letter-spacing:0.328200px;}
.ls17{letter-spacing:0.347760px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.466560px;}
.ls19{letter-spacing:0.540000px;}
.ls13{letter-spacing:22.986720px;}
.ls6{letter-spacing:41.706720px;}
.lsf{letter-spacing:46.002720px;}
.ls5{letter-spacing:46.026720px;}
.ls16{letter-spacing:153.868800px;}
.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;}
}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.370400px;}
.wsc{word-spacing:-13.353600px;}
.wsa{word-spacing:-13.160160px;}
.wse{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.049400px;}
.ws7{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.342200px;}
.ws8{word-spacing:-10.134600px;}
.ws9{word-spacing:-9.092400px;}
.wsd{word-spacing:-8.553600px;}
.ws3{word-spacing:-7.884000px;}
.ws4{word-spacing:-7.632000px;}
.ws2{word-spacing:-6.652800px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-9.547200px;}
._26{margin-left:-4.226640px;}
._a{margin-left:-3.183600px;}
._2{margin-left:-1.242000px;}
._1{width:1.092000px;}
._4{width:2.155200px;}
._14{width:3.196560px;}
._16{width:4.229520px;}
._12{width:5.242560px;}
._13{width:6.378000px;}
._17{width:7.768800px;}
._c{width:9.170880px;}
._15{width:10.234800px;}
._5{width:11.286000px;}
._1a{width:13.170000px;}
._d{width:14.309760px;}
._b{width:15.537600px;}
._10{width:17.569440px;}
._11{width:18.596160px;}
._19{width:19.905600px;}
._1d{width:21.019200px;}
._8{width:22.572960px;}
._7{width:23.664960px;}
._1e{width:27.071280px;}
._25{width:28.565280px;}
._e{width:31.194720px;}
._f{width:32.313840px;}
._1b{width:46.790280px;}
._9{width:48.405600px;}
._0{width:75.000000px;}
._2a{width:90.297360px;}
._24{width:104.822160px;}
._31{width:113.962320px;}
._29{width:127.288800px;}
._20{width:128.766240px;}
._2b{width:136.580400px;}
._2c{width:151.475280px;}
._22{width:153.806160px;}
._27{width:160.917360px;}
._28{width:161.949600px;}
._21{width:179.276400px;}
._3{width:181.620000px;}
._2f{width:190.976640px;}
._30{width:192.128400px;}
._18{width:197.068800px;}
._6{width:200.280000px;}
._1f{width:202.828800px;}
._2d{width:336.568320px;}
._2e{width:898.252560px;}
._1c{width:1126.567200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(1,2,5);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:32.760000px;}
.y53{bottom:46.080000px;}
.y7{bottom:56.520000px;}
.y52{bottom:56.700000px;}
.y51{bottom:67.140000px;}
.y6{bottom:70.596000px;}
.y50{bottom:84.780000px;}
.y168{bottom:119.196000px;}
.yfe{bottom:119.916000px;}
.y3f{bottom:127.116000px;}
.y121{bottom:129.636000px;}
.ybb{bottom:135.396000px;}
.y167{bottom:136.656000px;}
.y4f{bottom:137.700000px;}
.y135{bottom:139.896000px;}
.y89{bottom:143.316000px;}
.y3e{bottom:144.756000px;}
.y120{bottom:147.276000px;}
.ydb{bottom:148.356000px;}
.y4e{bottom:151.740000px;}
.yba{bottom:152.850000px;}
.y166{bottom:154.290000px;}
.y134{bottom:157.350000px;}
.y88{bottom:160.950000px;}
.y3d{bottom:162.210000px;}
.y11f{bottom:164.910000px;}
.y4d{bottom:165.780000px;}
.yda{bottom:165.990000px;}
.ya7{bottom:169.770000px;}
.yb9{bottom:170.490000px;}
.y165{bottom:171.930000px;}
.y133{bottom:174.990000px;}
.y87{bottom:178.410000px;}
.y3c{bottom:179.850000px;}
.y4c{bottom:180.000000px;}
.y11e{bottom:182.370000px;}
.yd9{bottom:183.630000px;}
.yb8{bottom:184.710000px;}
.ya6{bottom:187.410000px;}
.y164{bottom:189.570000px;}
.y132{bottom:192.630000px;}
.y4b{bottom:194.040000px;}
.y86{bottom:196.050000px;}
.y3b{bottom:197.490000px;}
.y11d{bottom:200.010000px;}
.yd8{bottom:201.270000px;}
.ya5{bottom:204.870000px;}
.y163{bottom:207.030000px;}
.y4a{bottom:208.080000px;}
.y131{bottom:210.270000px;}
.y85{bottom:213.690000px;}
.y3a{bottom:215.130000px;}
.yfd{bottom:215.490000px;}
.y11c{bottom:217.650000px;}
.yd7{bottom:218.730000px;}
.y49{bottom:222.120000px;}
.ya4{bottom:222.510000px;}
.y162{bottom:224.670000px;}
.y130{bottom:227.730000px;}
.y84{bottom:231.150000px;}
.y39{bottom:232.590000px;}
.yfc{bottom:233.130000px;}
.y48{bottom:234.720000px;}
.y11b{bottom:235.110000px;}
.yd6{bottom:236.370000px;}
.ya3{bottom:240.150000px;}
.y161{bottom:242.310000px;}
.y47{bottom:243.180000px;}
.y12f{bottom:245.370000px;}
.y83{bottom:248.790000px;}
.y38{bottom:250.230000px;}
.yfb{bottom:250.770000px;}
.y11a{bottom:252.750000px;}
.yd5{bottom:254.010000px;}
.y46{bottom:257.400000px;}
.ya2{bottom:257.610000px;}
.y160{bottom:259.770000px;}
.y12e{bottom:263.010000px;}
.y82{bottom:266.430000px;}
.y37{bottom:267.870000px;}
.yfa{bottom:268.230000px;}
.y119{bottom:270.390000px;}
.yd4{bottom:271.470000px;}
.y45{bottom:271.485000px;}
.ya1{bottom:275.250000px;}
.y15f{bottom:277.410000px;}
.y12d{bottom:280.470000px;}
.y81{bottom:283.890000px;}
.y36{bottom:285.330000px;}
.y44{bottom:285.525000px;}
.yf9{bottom:285.870000px;}
.y118{bottom:288.030000px;}
.yd3{bottom:289.110000px;}
.ya0{bottom:289.470000px;}
.y15e{bottom:295.050000px;}
.y12c{bottom:298.110000px;}
.y43{bottom:299.565000px;}
.y80{bottom:301.530000px;}
.y35{bottom:302.970000px;}
.yf8{bottom:303.510000px;}
.y117{bottom:305.490000px;}
.yd2{bottom:306.750000px;}
.y42{bottom:312.165000px;}
.y15d{bottom:312.510000px;}
.y12b{bottom:315.750000px;}
.y7f{bottom:319.170000px;}
.y34{bottom:320.610000px;}
.yf7{bottom:321.150000px;}
.y116{bottom:323.130000px;}
.y41{bottom:323.325000px;}
.yd1{bottom:324.210000px;}
.y15c{bottom:330.150000px;}
.y12a{bottom:333.210000px;}
.y7e{bottom:336.675000px;}
.y33{bottom:338.115000px;}
.yf6{bottom:338.655000px;}
.y115{bottom:340.815000px;}
.yd0{bottom:341.895000px;}
.y15b{bottom:347.835000px;}
.y129{bottom:350.895000px;}
.y7d{bottom:354.315000px;}
.y32{bottom:355.755000px;}
.yf5{bottom:356.295000px;}
.y114{bottom:358.275000px;}
.ycf{bottom:359.535000px;}
.y15a{bottom:365.295000px;}
.y7c{bottom:368.535000px;}
.y31{bottom:373.395000px;}
.yf4{bottom:373.935000px;}
.y113{bottom:375.915000px;}
.yce{bottom:377.175000px;}
.y159{bottom:382.935000px;}
.y128{bottom:386.175000px;}
.y30{bottom:391.035000px;}
.yf3{bottom:391.395000px;}
.y112{bottom:393.555000px;}
.ycd{bottom:395.535000px;}
.y158{bottom:400.575000px;}
.y127{bottom:403.635000px;}
.y2f{bottom:408.495000px;}
.yb7{bottom:408.675000px;}
.yf2{bottom:409.035000px;}
.y111{bottom:411.015000px;}
.ycc{bottom:414.075000px;}
.y157{bottom:418.215000px;}
.y126{bottom:421.275000px;}
.y2e{bottom:426.135000px;}
.yb6{bottom:426.315000px;}
.yf1{bottom:426.675000px;}
.y110{bottom:428.655000px;}
.ycb{bottom:431.715000px;}
.y156{bottom:435.675000px;}
.y125{bottom:438.915000px;}
.y2d{bottom:443.775000px;}
.yf0{bottom:444.135000px;}
.y10f{bottom:446.295000px;}
.yca{bottom:449.355000px;}
.y155{bottom:453.315000px;}
.y124{bottom:456.375000px;}
.y2c{bottom:461.235000px;}
.yb5{bottom:461.415000px;}
.yef{bottom:461.775000px;}
.y10e{bottom:463.935000px;}
.yc9{bottom:466.815000px;}
.y154{bottom:470.955000px;}
.y123{bottom:474.015000px;}
.y2b{bottom:478.875000px;}
.yb4{bottom:479.055000px;}
.yee{bottom:479.415000px;}
.yc8{bottom:481.035000px;}
.y10d{bottom:481.395000px;}
.y153{bottom:488.415000px;}
.y122{bottom:491.655000px;}
.y2a{bottom:496.515000px;}
.yed{bottom:497.055000px;}
.y10c{bottom:499.035000px;}
.y152{bottom:506.055000px;}
.y7b{bottom:509.115000px;}
.yb3{bottom:510.735000px;}
.y10b{bottom:513.255000px;}
.y29{bottom:513.975000px;}
.yec{bottom:514.515000px;}
.y151{bottom:523.695000px;}
.y7a{bottom:526.755000px;}
.y28{bottom:531.615000px;}
.yeb{bottom:532.155000px;}
.y150{bottom:541.155000px;}
.y79{bottom:544.395000px;}
.y27{bottom:549.255000px;}
.yea{bottom:549.795000px;}
.y14f{bottom:558.795000px;}
.y78{bottom:561.855000px;}
.y26{bottom:566.895000px;}
.ye9{bottom:567.255000px;}
.y14e{bottom:576.435000px;}
.y77{bottom:579.495000px;}
.y25{bottom:584.355000px;}
.ye8{bottom:584.895000px;}
.y14d{bottom:594.075000px;}
.y76{bottom:597.135000px;}
.ye7{bottom:602.535000px;}
.y24{bottom:603.825000px;}
.y9f{bottom:604.365000px;}
.y40{bottom:610.485000px;}
.y14c{bottom:611.565000px;}
.y75{bottom:614.805000px;}
.yc7{bottom:615.165000px;}
.y23{bottom:620.025000px;}
.y9e{bottom:622.005000px;}
.y14b{bottom:629.205000px;}
.y74{bottom:632.265000px;}
.yc6{bottom:632.805000px;}
.y22{bottom:637.665000px;}
.y9d{bottom:639.645000px;}
.yb2{bottom:644.685000px;}
.y14a{bottom:646.845000px;}
.y73{bottom:649.905000px;}
.yc5{bottom:650.445000px;}
.ye6{bottom:651.885000px;}
.y21{bottom:655.305000px;}
.y9c{bottom:657.105000px;}
.yb1{bottom:662.325000px;}
.y149{bottom:664.305000px;}
.y72{bottom:667.545000px;}
.yc4{bottom:667.905000px;}
.y20{bottom:672.765000px;}
.y9b{bottom:674.745000px;}
.yb0{bottom:679.785000px;}
.y148{bottom:681.945000px;}
.y71{bottom:685.005000px;}
.yc3{bottom:685.545000px;}
.y1f{bottom:690.405000px;}
.y9a{bottom:692.385000px;}
.yaf{bottom:697.425000px;}
.y10a{bottom:698.865000px;}
.y147{bottom:699.585000px;}
.y70{bottom:702.645000px;}
.yc2{bottom:703.185000px;}
.y1e{bottom:708.045000px;}
.y99{bottom:709.845000px;}
.yae{bottom:715.065000px;}
.y109{bottom:716.505000px;}
.y146{bottom:717.045000px;}
.y6f{bottom:720.285000px;}
.yc1{bottom:720.645000px;}
.y1d{bottom:725.685000px;}
.y98{bottom:727.485000px;}
.yad{bottom:732.525000px;}
.y108{bottom:734.145000px;}
.y145{bottom:734.685000px;}
.y6e{bottom:737.745000px;}
.yc0{bottom:738.285000px;}
.y1c{bottom:743.145000px;}
.y97{bottom:745.125000px;}
.yac{bottom:750.165000px;}
.y107{bottom:751.605000px;}
.y144{bottom:752.325000px;}
.y6d{bottom:755.385000px;}
.ybf{bottom:755.925000px;}
.y1b{bottom:760.785000px;}
.y96{bottom:762.585000px;}
.yab{bottom:767.805000px;}
.y106{bottom:769.245000px;}
.y143{bottom:769.965000px;}
.y6c{bottom:773.025000px;}
.ybe{bottom:773.565000px;}
.y1a{bottom:778.425000px;}
.y95{bottom:780.225000px;}
.yaa{bottom:785.445000px;}
.y105{bottom:786.885000px;}
.y142{bottom:787.425000px;}
.ybd{bottom:787.605000px;}
.ye5{bottom:790.305000px;}
.y6b{bottom:790.665000px;}
.y19{bottom:795.885000px;}
.y94{bottom:797.865000px;}
.ya9{bottom:802.905000px;}
.y104{bottom:804.345000px;}
.y141{bottom:805.065000px;}
.ye4{bottom:807.765000px;}
.y6a{bottom:808.125000px;}
.y93{bottom:811.905000px;}
.y18{bottom:813.525000px;}
.ya8{bottom:817.125000px;}
.y103{bottom:821.985000px;}
.y140{bottom:822.705000px;}
.ye3{bottom:825.405000px;}
.y69{bottom:825.765000px;}
.y17{bottom:831.165000px;}
.y102{bottom:839.625000px;}
.y13f{bottom:840.165000px;}
.ye2{bottom:843.045000px;}
.y68{bottom:843.405000px;}
.y16{bottom:848.625000px;}
.y101{bottom:857.085000px;}
.y13e{bottom:857.805000px;}
.ye1{bottom:860.685000px;}
.y67{bottom:860.865000px;}
.y15{bottom:866.265000px;}
.y100{bottom:874.770000px;}
.y13d{bottom:875.490000px;}
.ye0{bottom:878.190000px;}
.y66{bottom:878.550000px;}
.y14{bottom:883.950000px;}
.yff{bottom:888.990000px;}
.y13c{bottom:892.950000px;}
.ydf{bottom:895.830000px;}
.y65{bottom:896.190000px;}
.y13{bottom:901.410000px;}
.y13b{bottom:910.590000px;}
.yde{bottom:913.470000px;}
.y64{bottom:913.650000px;}
.y12{bottom:919.050000px;}
.y13a{bottom:928.230000px;}
.ydd{bottom:930.930000px;}
.y63{bottom:931.290000px;}
.y11{bottom:936.690000px;}
.y139{bottom:945.690000px;}
.ydc{bottom:948.570000px;}
.y62{bottom:948.930000px;}
.y10{bottom:953.970000px;}
.y138{bottom:963.330000px;}
.y61{bottom:966.570000px;}
.yf{bottom:969.450000px;}
.y137{bottom:980.970000px;}
.y60{bottom:984.030000px;}
.ye{bottom:986.910000px;}
.y136{bottom:998.610000px;}
.yd{bottom:1000.230000px;}
.y5f{bottom:1001.670000px;}
.ybc{bottom:1016.070000px;}
.y5e{bottom:1019.310000px;}
.yc{bottom:1020.210000px;}
.y92{bottom:1033.710000px;}
.y5d{bottom:1036.770000px;}
.yb{bottom:1043.070000px;}
.y91{bottom:1051.350000px;}
.y5c{bottom:1054.410000px;}
.ya{bottom:1065.930000px;}
.y90{bottom:1068.810000px;}
.y5b{bottom:1072.050000px;}
.y8f{bottom:1086.450000px;}
.y9{bottom:1088.790000px;}
.y5a{bottom:1089.510000px;}
.y8e{bottom:1104.090000px;}
.y59{bottom:1107.150000px;}
.y8{bottom:1111.290000px;}
.y8d{bottom:1121.550000px;}
.y58{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y8c{bottom:1139.220000px;}
.y57{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y8b{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y56{bottom:1175.220000px;}
.y8a{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y55{bottom:1197.540000px;}
.hd{height:20.117109px;}
.he{height:30.480469px;}
.h9{height:33.480703px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.hb{height:45.720703px;}
.h5{height:50.273438px;}
.ha{height:50.597578px;}
.h8{height:56.084062px;}
.hf{height:58.819922px;}
.h6{height:60.960938px;}
.h7{height:65.837812px;}
.hc{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:221.970000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x27{left:118.655987px;}
.x26{left:127.655987px;}
.xf{left:133.415987px;}
.xa{left:134.994000px;}
.x5{left:145.115987px;}
.x4{left:155.369987px;}
.xb{left:159.509987px;}
.x8{left:170.309987px;}
.x6{left:205.949987px;}
.x17{left:240.509987px;}
.x1e{left:247.349987px;}
.x2a{left:250.229987px;}
.x28{left:255.629987px;}
.x21{left:267.689987px;}
.x2c{left:269.129987px;}
.x12{left:285.194987px;}
.xc{left:292.754987px;}
.xe{left:295.454987px;}
.x24{left:302.294987px;}
.x2e{left:306.434987px;}
.x19{left:310.934987px;}
.x16{left:319.034987px;}
.x23{left:329.294987px;}
.x13{left:337.394987px;}
.x9{left:342.614987px;}
.x1f{left:344.054987px;}
.x7{left:354.314987px;}
.x1b{left:355.934987px;}
.x2d{left:416.594987px;}
.x1a{left:420.914987px;}
.x3{left:446.654987px;}
.x14{left:473.144987px;}
.x10{left:544.964987px;}
.x20{left:566.924987px;}
.x1c{left:616.424987px;}
.x18{left:634.424987px;}
.x2b{left:641.804987px;}
.x11{left:659.309987px;}
.x2f{left:668.849987px;}
.x29{left:675.509987px;}
.x1d{left:683.969987px;}
.x22{left:698.189987px;}
.xd{left:704.309987px;}
.x15{left:710.609987px;}
.x25{left:734.009987px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.425067pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240533pt;}
.ls8{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.086933pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls3{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.087040pt;}
.ls1{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.198400pt;}
.ls12{letter-spacing:0.274560pt;}
.ls9{letter-spacing:0.291733pt;}
.ls17{letter-spacing:0.309120pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.414720pt;}
.ls19{letter-spacing:0.480000pt;}
.ls13{letter-spacing:20.432640pt;}
.ls6{letter-spacing:37.072640pt;}
.lsf{letter-spacing:40.891307pt;}
.ls5{letter-spacing:40.912640pt;}
.ls16{letter-spacing:136.772267pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.884800pt;}
.wsc{word-spacing:-11.869867pt;}
.wsa{word-spacing:-11.697920pt;}
.wse{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.599467pt;}
.ws7{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.193067pt;}
.ws8{word-spacing:-9.008533pt;}
.ws9{word-spacing:-8.082133pt;}
.wsd{word-spacing:-7.603200pt;}
.ws3{word-spacing:-7.008000pt;}
.ws4{word-spacing:-6.784000pt;}
.ws2{word-spacing:-5.913600pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-8.486400pt;}
._26{margin-left:-3.757013pt;}
._a{margin-left:-2.829867pt;}
._2{margin-left:-1.104000pt;}
._1{width:0.970667pt;}
._4{width:1.915733pt;}
._14{width:2.841387pt;}
._16{width:3.759573pt;}
._12{width:4.660053pt;}
._13{width:5.669333pt;}
._17{width:6.905600pt;}
._c{width:8.151893pt;}
._15{width:9.097600pt;}
._5{width:10.032000pt;}
._1a{width:11.706667pt;}
._d{width:12.719787pt;}
._b{width:13.811200pt;}
._10{width:15.617280pt;}
._11{width:16.529920pt;}
._19{width:17.693867pt;}
._1d{width:18.683733pt;}
._8{width:20.064853pt;}
._7{width:21.035520pt;}
._1e{width:24.063360pt;}
._25{width:25.391360pt;}
._e{width:27.728640pt;}
._f{width:28.723413pt;}
._1b{width:41.591360pt;}
._9{width:43.027200pt;}
._0{width:66.666667pt;}
._2a{width:80.264320pt;}
._24{width:93.175253pt;}
._31{width:101.299840pt;}
._29{width:113.145600pt;}
._20{width:114.458880pt;}
._2b{width:121.404800pt;}
._2c{width:134.644693pt;}
._22{width:136.716587pt;}
._27{width:143.037653pt;}
._28{width:143.955200pt;}
._21{width:159.356800pt;}
._3{width:161.440000pt;}
._2f{width:169.757013pt;}
._30{width:170.780800pt;}
._18{width:175.172267pt;}
._6{width:178.026667pt;}
._1f{width:180.292267pt;}
._2d{width:299.171840pt;}
._2e{width:798.446720pt;}
._1c{width:1001.393067pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:29.120000pt;}
.y53{bottom:40.960000pt;}
.y7{bottom:50.240000pt;}
.y52{bottom:50.400000pt;}
.y51{bottom:59.680000pt;}
.y6{bottom:62.752000pt;}
.y50{bottom:75.360000pt;}
.y168{bottom:105.952000pt;}
.yfe{bottom:106.592000pt;}
.y3f{bottom:112.992000pt;}
.y121{bottom:115.232000pt;}
.ybb{bottom:120.352000pt;}
.y167{bottom:121.472000pt;}
.y4f{bottom:122.400000pt;}
.y135{bottom:124.352000pt;}
.y89{bottom:127.392000pt;}
.y3e{bottom:128.672000pt;}
.y120{bottom:130.912000pt;}
.ydb{bottom:131.872000pt;}
.y4e{bottom:134.880000pt;}
.yba{bottom:135.866667pt;}
.y166{bottom:137.146667pt;}
.y134{bottom:139.866667pt;}
.y88{bottom:143.066667pt;}
.y3d{bottom:144.186667pt;}
.y11f{bottom:146.586667pt;}
.y4d{bottom:147.360000pt;}
.yda{bottom:147.546667pt;}
.ya7{bottom:150.906667pt;}
.yb9{bottom:151.546667pt;}
.y165{bottom:152.826667pt;}
.y133{bottom:155.546667pt;}
.y87{bottom:158.586667pt;}
.y3c{bottom:159.866667pt;}
.y4c{bottom:160.000000pt;}
.y11e{bottom:162.106667pt;}
.yd9{bottom:163.226667pt;}
.yb8{bottom:164.186667pt;}
.ya6{bottom:166.586667pt;}
.y164{bottom:168.506667pt;}
.y132{bottom:171.226667pt;}
.y4b{bottom:172.480000pt;}
.y86{bottom:174.266667pt;}
.y3b{bottom:175.546667pt;}
.y11d{bottom:177.786667pt;}
.yd8{bottom:178.906667pt;}
.ya5{bottom:182.106667pt;}
.y163{bottom:184.026667pt;}
.y4a{bottom:184.960000pt;}
.y131{bottom:186.906667pt;}
.y85{bottom:189.946667pt;}
.y3a{bottom:191.226667pt;}
.yfd{bottom:191.546667pt;}
.y11c{bottom:193.466667pt;}
.yd7{bottom:194.426667pt;}
.y49{bottom:197.440000pt;}
.ya4{bottom:197.786667pt;}
.y162{bottom:199.706667pt;}
.y130{bottom:202.426667pt;}
.y84{bottom:205.466667pt;}
.y39{bottom:206.746667pt;}
.yfc{bottom:207.226667pt;}
.y48{bottom:208.640000pt;}
.y11b{bottom:208.986667pt;}
.yd6{bottom:210.106667pt;}
.ya3{bottom:213.466667pt;}
.y161{bottom:215.386667pt;}
.y47{bottom:216.160000pt;}
.y12f{bottom:218.106667pt;}
.y83{bottom:221.146667pt;}
.y38{bottom:222.426667pt;}
.yfb{bottom:222.906667pt;}
.y11a{bottom:224.666667pt;}
.yd5{bottom:225.786667pt;}
.y46{bottom:228.800000pt;}
.ya2{bottom:228.986667pt;}
.y160{bottom:230.906667pt;}
.y12e{bottom:233.786667pt;}
.y82{bottom:236.826667pt;}
.y37{bottom:238.106667pt;}
.yfa{bottom:238.426667pt;}
.y119{bottom:240.346667pt;}
.yd4{bottom:241.306667pt;}
.y45{bottom:241.320000pt;}
.ya1{bottom:244.666667pt;}
.y15f{bottom:246.586667pt;}
.y12d{bottom:249.306667pt;}
.y81{bottom:252.346667pt;}
.y36{bottom:253.626667pt;}
.y44{bottom:253.800000pt;}
.yf9{bottom:254.106667pt;}
.y118{bottom:256.026667pt;}
.yd3{bottom:256.986667pt;}
.ya0{bottom:257.306667pt;}
.y15e{bottom:262.266667pt;}
.y12c{bottom:264.986667pt;}
.y43{bottom:266.280000pt;}
.y80{bottom:268.026667pt;}
.y35{bottom:269.306667pt;}
.yf8{bottom:269.786667pt;}
.y117{bottom:271.546667pt;}
.yd2{bottom:272.666667pt;}
.y42{bottom:277.480000pt;}
.y15d{bottom:277.786667pt;}
.y12b{bottom:280.666667pt;}
.y7f{bottom:283.706667pt;}
.y34{bottom:284.986667pt;}
.yf7{bottom:285.466667pt;}
.y116{bottom:287.226667pt;}
.y41{bottom:287.400000pt;}
.yd1{bottom:288.186667pt;}
.y15c{bottom:293.466667pt;}
.y12a{bottom:296.186667pt;}
.y7e{bottom:299.266667pt;}
.y33{bottom:300.546667pt;}
.yf6{bottom:301.026667pt;}
.y115{bottom:302.946667pt;}
.yd0{bottom:303.906667pt;}
.y15b{bottom:309.186667pt;}
.y129{bottom:311.906667pt;}
.y7d{bottom:314.946667pt;}
.y32{bottom:316.226667pt;}
.yf5{bottom:316.706667pt;}
.y114{bottom:318.466667pt;}
.ycf{bottom:319.586667pt;}
.y15a{bottom:324.706667pt;}
.y7c{bottom:327.586667pt;}
.y31{bottom:331.906667pt;}
.yf4{bottom:332.386667pt;}
.y113{bottom:334.146667pt;}
.yce{bottom:335.266667pt;}
.y159{bottom:340.386667pt;}
.y128{bottom:343.266667pt;}
.y30{bottom:347.586667pt;}
.yf3{bottom:347.906667pt;}
.y112{bottom:349.826667pt;}
.ycd{bottom:351.586667pt;}
.y158{bottom:356.066667pt;}
.y127{bottom:358.786667pt;}
.y2f{bottom:363.106667pt;}
.yb7{bottom:363.266667pt;}
.yf2{bottom:363.586667pt;}
.y111{bottom:365.346667pt;}
.ycc{bottom:368.066667pt;}
.y157{bottom:371.746667pt;}
.y126{bottom:374.466667pt;}
.y2e{bottom:378.786667pt;}
.yb6{bottom:378.946667pt;}
.yf1{bottom:379.266667pt;}
.y110{bottom:381.026667pt;}
.ycb{bottom:383.746667pt;}
.y156{bottom:387.266667pt;}
.y125{bottom:390.146667pt;}
.y2d{bottom:394.466667pt;}
.yf0{bottom:394.786667pt;}
.y10f{bottom:396.706667pt;}
.yca{bottom:399.426667pt;}
.y155{bottom:402.946667pt;}
.y124{bottom:405.666667pt;}
.y2c{bottom:409.986667pt;}
.yb5{bottom:410.146667pt;}
.yef{bottom:410.466667pt;}
.y10e{bottom:412.386667pt;}
.yc9{bottom:414.946667pt;}
.y154{bottom:418.626667pt;}
.y123{bottom:421.346667pt;}
.y2b{bottom:425.666667pt;}
.yb4{bottom:425.826667pt;}
.yee{bottom:426.146667pt;}
.yc8{bottom:427.586667pt;}
.y10d{bottom:427.906667pt;}
.y153{bottom:434.146667pt;}
.y122{bottom:437.026667pt;}
.y2a{bottom:441.346667pt;}
.yed{bottom:441.826667pt;}
.y10c{bottom:443.586667pt;}
.y152{bottom:449.826667pt;}
.y7b{bottom:452.546667pt;}
.yb3{bottom:453.986667pt;}
.y10b{bottom:456.226667pt;}
.y29{bottom:456.866667pt;}
.yec{bottom:457.346667pt;}
.y151{bottom:465.506667pt;}
.y7a{bottom:468.226667pt;}
.y28{bottom:472.546667pt;}
.yeb{bottom:473.026667pt;}
.y150{bottom:481.026667pt;}
.y79{bottom:483.906667pt;}
.y27{bottom:488.226667pt;}
.yea{bottom:488.706667pt;}
.y14f{bottom:496.706667pt;}
.y78{bottom:499.426667pt;}
.y26{bottom:503.906667pt;}
.ye9{bottom:504.226667pt;}
.y14e{bottom:512.386667pt;}
.y77{bottom:515.106667pt;}
.y25{bottom:519.426667pt;}
.ye8{bottom:519.906667pt;}
.y14d{bottom:528.066667pt;}
.y76{bottom:530.786667pt;}
.ye7{bottom:535.586667pt;}
.y24{bottom:536.733333pt;}
.y9f{bottom:537.213333pt;}
.y40{bottom:542.653333pt;}
.y14c{bottom:543.613333pt;}
.y75{bottom:546.493333pt;}
.yc7{bottom:546.813333pt;}
.y23{bottom:551.133333pt;}
.y9e{bottom:552.893333pt;}
.y14b{bottom:559.293333pt;}
.y74{bottom:562.013333pt;}
.yc6{bottom:562.493333pt;}
.y22{bottom:566.813333pt;}
.y9d{bottom:568.573333pt;}
.yb2{bottom:573.053333pt;}
.y14a{bottom:574.973333pt;}
.y73{bottom:577.693333pt;}
.yc5{bottom:578.173333pt;}
.ye6{bottom:579.453333pt;}
.y21{bottom:582.493333pt;}
.y9c{bottom:584.093333pt;}
.yb1{bottom:588.733333pt;}
.y149{bottom:590.493333pt;}
.y72{bottom:593.373333pt;}
.yc4{bottom:593.693333pt;}
.y20{bottom:598.013333pt;}
.y9b{bottom:599.773333pt;}
.yb0{bottom:604.253333pt;}
.y148{bottom:606.173333pt;}
.y71{bottom:608.893333pt;}
.yc3{bottom:609.373333pt;}
.y1f{bottom:613.693333pt;}
.y9a{bottom:615.453333pt;}
.yaf{bottom:619.933333pt;}
.y10a{bottom:621.213333pt;}
.y147{bottom:621.853333pt;}
.y70{bottom:624.573333pt;}
.yc2{bottom:625.053333pt;}
.y1e{bottom:629.373333pt;}
.y99{bottom:630.973333pt;}
.yae{bottom:635.613333pt;}
.y109{bottom:636.893333pt;}
.y146{bottom:637.373333pt;}
.y6f{bottom:640.253333pt;}
.yc1{bottom:640.573333pt;}
.y1d{bottom:645.053333pt;}
.y98{bottom:646.653333pt;}
.yad{bottom:651.133333pt;}
.y108{bottom:652.573333pt;}
.y145{bottom:653.053333pt;}
.y6e{bottom:655.773333pt;}
.yc0{bottom:656.253333pt;}
.y1c{bottom:660.573333pt;}
.y97{bottom:662.333333pt;}
.yac{bottom:666.813333pt;}
.y107{bottom:668.093333pt;}
.y144{bottom:668.733333pt;}
.y6d{bottom:671.453333pt;}
.ybf{bottom:671.933333pt;}
.y1b{bottom:676.253333pt;}
.y96{bottom:677.853333pt;}
.yab{bottom:682.493333pt;}
.y106{bottom:683.773333pt;}
.y143{bottom:684.413333pt;}
.y6c{bottom:687.133333pt;}
.ybe{bottom:687.613333pt;}
.y1a{bottom:691.933333pt;}
.y95{bottom:693.533333pt;}
.yaa{bottom:698.173333pt;}
.y105{bottom:699.453333pt;}
.y142{bottom:699.933333pt;}
.ybd{bottom:700.093333pt;}
.ye5{bottom:702.493333pt;}
.y6b{bottom:702.813333pt;}
.y19{bottom:707.453333pt;}
.y94{bottom:709.213333pt;}
.ya9{bottom:713.693333pt;}
.y104{bottom:714.973333pt;}
.y141{bottom:715.613333pt;}
.ye4{bottom:718.013333pt;}
.y6a{bottom:718.333333pt;}
.y93{bottom:721.693333pt;}
.y18{bottom:723.133333pt;}
.ya8{bottom:726.333333pt;}
.y103{bottom:730.653333pt;}
.y140{bottom:731.293333pt;}
.ye3{bottom:733.693333pt;}
.y69{bottom:734.013333pt;}
.y17{bottom:738.813333pt;}
.y102{bottom:746.333333pt;}
.y13f{bottom:746.813333pt;}
.ye2{bottom:749.373333pt;}
.y68{bottom:749.693333pt;}
.y16{bottom:754.333333pt;}
.y101{bottom:761.853333pt;}
.y13e{bottom:762.493333pt;}
.ye1{bottom:765.053333pt;}
.y67{bottom:765.213333pt;}
.y15{bottom:770.013333pt;}
.y100{bottom:777.573333pt;}
.y13d{bottom:778.213333pt;}
.ye0{bottom:780.613333pt;}
.y66{bottom:780.933333pt;}
.y14{bottom:785.733333pt;}
.yff{bottom:790.213333pt;}
.y13c{bottom:793.733333pt;}
.ydf{bottom:796.293333pt;}
.y65{bottom:796.613333pt;}
.y13{bottom:801.253333pt;}
.y13b{bottom:809.413333pt;}
.yde{bottom:811.973333pt;}
.y64{bottom:812.133333pt;}
.y12{bottom:816.933333pt;}
.y13a{bottom:825.093333pt;}
.ydd{bottom:827.493333pt;}
.y63{bottom:827.813333pt;}
.y11{bottom:832.613333pt;}
.y139{bottom:840.613333pt;}
.ydc{bottom:843.173333pt;}
.y62{bottom:843.493333pt;}
.y10{bottom:847.973333pt;}
.y138{bottom:856.293333pt;}
.y61{bottom:859.173333pt;}
.yf{bottom:861.733333pt;}
.y137{bottom:871.973333pt;}
.y60{bottom:874.693333pt;}
.ye{bottom:877.253333pt;}
.y136{bottom:887.653333pt;}
.yd{bottom:889.093333pt;}
.y5f{bottom:890.373333pt;}
.ybc{bottom:903.173333pt;}
.y5e{bottom:906.053333pt;}
.yc{bottom:906.853333pt;}
.y92{bottom:918.853333pt;}
.y5d{bottom:921.573333pt;}
.yb{bottom:927.173333pt;}
.y91{bottom:934.533333pt;}
.y5c{bottom:937.253333pt;}
.ya{bottom:947.493333pt;}
.y90{bottom:950.053333pt;}
.y5b{bottom:952.933333pt;}
.y8f{bottom:965.733333pt;}
.y9{bottom:967.813333pt;}
.y5a{bottom:968.453333pt;}
.y8e{bottom:981.413333pt;}
.y59{bottom:984.133333pt;}
.y8{bottom:987.813333pt;}
.y8d{bottom:996.933333pt;}
.y58{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y8c{bottom:1012.640000pt;}
.y57{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y8b{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y56{bottom:1044.640000pt;}
.y8a{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y55{bottom:1064.480000pt;}
.hd{height:17.881875pt;}
.he{height:27.093750pt;}
.h9{height:29.760625pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.hb{height:40.640625pt;}
.h5{height:44.687500pt;}
.ha{height:44.975625pt;}
.h8{height:49.852500pt;}
.hf{height:52.284375pt;}
.h6{height:54.187500pt;}
.h7{height:58.522500pt;}
.hc{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:197.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x27{left:105.471988pt;}
.x26{left:113.471988pt;}
.xf{left:118.591988pt;}
.xa{left:119.994667pt;}
.x5{left:128.991988pt;}
.x4{left:138.106655pt;}
.xb{left:141.786655pt;}
.x8{left:151.386655pt;}
.x6{left:183.066655pt;}
.x17{left:213.786655pt;}
.x1e{left:219.866655pt;}
.x2a{left:222.426655pt;}
.x28{left:227.226655pt;}
.x21{left:237.946655pt;}
.x2c{left:239.226655pt;}
.x12{left:253.506655pt;}
.xc{left:260.226655pt;}
.xe{left:262.626655pt;}
.x24{left:268.706655pt;}
.x2e{left:272.386655pt;}
.x19{left:276.386655pt;}
.x16{left:283.586655pt;}
.x23{left:292.706655pt;}
.x13{left:299.906655pt;}
.x9{left:304.546655pt;}
.x1f{left:305.826655pt;}
.x7{left:314.946655pt;}
.x1b{left:316.386655pt;}
.x2d{left:370.306655pt;}
.x1a{left:374.146655pt;}
.x3{left:397.026655pt;}
.x14{left:420.573322pt;}
.x10{left:484.413322pt;}
.x20{left:503.933322pt;}
.x1c{left:547.933322pt;}
.x18{left:563.933322pt;}
.x2b{left:570.493322pt;}
.x11{left:586.053322pt;}
.x2f{left:594.533322pt;}
.x29{left:600.453322pt;}
.x1d{left:607.973322pt;}
.x22{left:620.613322pt;}
.xd{left:626.053322pt;}
.x15{left:631.653322pt;}
.x25{left:652.453322pt;}
}




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