
    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_cde04c5cd0b035c868b4f9c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_2aa500273c0fa2f706076859.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_12ee1de480958fa1d2e62fe0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187012;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_c356d7bfdc8059ab918af2ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.158691;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_cf69974ca79160676b4c7cfa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a7b6b1381095e5b2f6391e3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.187012;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_a10a4ad4790d0f595ddf0569.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008301;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_e5ded11bdd60c821619f670b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9{letter-spacing:-0.888000px;}
.lsa{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.726000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.690000px;}
.ls14{letter-spacing:-0.457800px;}
.ls13{letter-spacing:-0.342600px;}
.lsb{letter-spacing:-0.291000px;}
.ls11{letter-spacing:-0.244800px;}
.ls12{letter-spacing:-0.210000px;}
.lsf{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.166800px;}
.ls7{letter-spacing:-0.152400px;}
.ls1b{letter-spacing:-0.150000px;}
.lsd{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.048960px;}
.lsc{letter-spacing:-0.005760px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.164400px;}
.ls17{letter-spacing:0.178800px;}
.ls15{letter-spacing:0.262080px;}
.ls2{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.345600px;}
.lse{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.377400px;}
.ls16{letter-spacing:67.241280px;}
.ls0{letter-spacing:846.156000px;}
.ls5{letter-spacing:847.596000px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws11{word-spacing:-21.060000px;}
.ws12{word-spacing:-20.370000px;}
.ws14{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.937400px;}
.wse{word-spacing:-16.905600px;}
.ws0{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.738800px;}
.ws4{word-spacing:-16.724400px;}
.ws1{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.554240px;}
.wsb{word-spacing:-16.511040px;}
.wsc{word-spacing:-16.450800px;}
.ws13{word-spacing:-16.410000px;}
.ws3{word-spacing:-16.407600px;}
.ws9{word-spacing:-16.350000px;}
.ws8{word-spacing:-16.315200px;}
.ws5{word-spacing:-16.269000px;}
.ws15{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.834000px;}
.wsa{word-spacing:-12.420000px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-5.431680px;}
._8{margin-left:-3.738240px;}
._7{margin-left:-2.592000px;}
._1{margin-left:-1.101120px;}
._0{width:1.075680px;}
._10{width:2.187840px;}
._11{width:3.312480px;}
._6{width:4.464000px;}
._12{width:5.762880px;}
._13{width:7.087680px;}
._16{width:8.495040px;}
._9{width:9.538560px;}
._a{width:10.598400px;}
._b{width:11.633280px;}
._c{width:12.959040px;}
._14{width:14.069760px;}
._17{width:15.473280px;}
._15{width:17.926080px;}
._e{width:19.557120px;}
._d{width:20.733120px;}
._18{width:22.109760px;}
._1b{width:23.335200px;}
._1f{width:25.038720px;}
._20{width:26.297280px;}
._19{width:28.218240px;}
._21{width:29.981760px;}
._23{width:31.033920px;}
._22{width:32.167680px;}
._f{width:33.757440px;}
._27{width:39.520320px;}
._1d{width:43.825920px;}
._1a{width:45.506880px;}
._4{width:47.808000px;}
._2b{width:52.635840px;}
._5{width:100.080000px;}
._28{width:151.225920px;}
._29{width:152.470080px;}
._26{width:164.275200px;}
._25{width:165.376320px;}
._1c{width:185.016000px;}
._24{width:197.461440px;}
._2{width:199.584000px;}
._3{width:201.168000px;}
._2a{width:889.114560px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(34,31,31);}
.fc1{color:rgb(0,19,98);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.780000px;}
.y2{bottom:4.680000px;}
.yb7{bottom:100.476000px;}
.y56{bottom:108.216000px;}
.ye7{bottom:109.476000px;}
.y185{bottom:110.016000px;}
.y144{bottom:112.356000px;}
.y108{bottom:113.616000px;}
.y129{bottom:114.336000px;}
.yb6{bottom:120.996000px;}
.y16a{bottom:125.676000px;}
.y164{bottom:127.476000px;}
.y55{bottom:128.736000px;}
.ye6{bottom:129.996000px;}
.y184{bottom:130.536000px;}
.y17b{bottom:131.076000px;}
.y143{bottom:132.876000px;}
.y107{bottom:134.136000px;}
.y128{bottom:134.856000px;}
.yb5{bottom:141.336000px;}
.y169{bottom:146.196000px;}
.y163{bottom:147.996000px;}
.y54{bottom:149.256000px;}
.ye5{bottom:150.510000px;}
.y183{bottom:150.870000px;}
.y17a{bottom:151.590000px;}
.y142{bottom:153.390000px;}
.y106{bottom:154.650000px;}
.y127{bottom:155.370000px;}
.yb4{bottom:161.850000px;}
.y168{bottom:166.710000px;}
.y162{bottom:168.510000px;}
.y53{bottom:169.770000px;}
.ye4{bottom:170.850000px;}
.y182{bottom:171.390000px;}
.y179{bottom:172.110000px;}
.y141{bottom:173.910000px;}
.y105{bottom:175.170000px;}
.y126{bottom:175.890000px;}
.yb3{bottom:182.370000px;}
.y167{bottom:187.230000px;}
.y161{bottom:189.030000px;}
.y52{bottom:190.290000px;}
.ye3{bottom:191.370000px;}
.y181{bottom:191.910000px;}
.y178{bottom:192.630000px;}
.y140{bottom:194.430000px;}
.y104{bottom:195.690000px;}
.y125{bottom:196.230000px;}
.yb2{bottom:202.890000px;}
.y166{bottom:207.570000px;}
.y160{bottom:209.550000px;}
.y51{bottom:210.810000px;}
.ye2{bottom:211.890000px;}
.y180{bottom:212.430000px;}
.y177{bottom:213.150000px;}
.y13f{bottom:214.950000px;}
.y103{bottom:216.210000px;}
.y124{bottom:216.750000px;}
.yb1{bottom:223.410000px;}
.y84{bottom:228.090000px;}
.y15f{bottom:230.070000px;}
.y50{bottom:231.330000px;}
.ye1{bottom:231.870000px;}
.y17f{bottom:232.950000px;}
.y176{bottom:233.670000px;}
.y13e{bottom:235.470000px;}
.y102{bottom:236.730000px;}
.y123{bottom:237.270000px;}
.yb0{bottom:243.930000px;}
.y83{bottom:248.610000px;}
.y15e{bottom:250.590000px;}
.y4f{bottom:251.670000px;}
.ye0{bottom:252.390000px;}
.y17e{bottom:253.470000px;}
.y175{bottom:254.010000px;}
.y13d{bottom:255.990000px;}
.y101{bottom:257.250000px;}
.y122{bottom:257.790000px;}
.yaf{bottom:264.450000px;}
.y82{bottom:269.130000px;}
.y15d{bottom:272.010000px;}
.y4e{bottom:272.190000px;}
.ydf{bottom:272.910000px;}
.y17d{bottom:273.990000px;}
.y174{bottom:274.530000px;}
.y13c{bottom:276.510000px;}
.y100{bottom:277.770000px;}
.y121{bottom:278.310000px;}
.yae{bottom:284.970000px;}
.y81{bottom:289.650000px;}
.y4d{bottom:292.710000px;}
.yde{bottom:293.430000px;}
.y17c{bottom:294.510000px;}
.y173{bottom:295.050000px;}
.y13b{bottom:295.950000px;}
.yff{bottom:298.110000px;}
.y120{bottom:298.830000px;}
.yad{bottom:305.490000px;}
.y80{bottom:310.170000px;}
.y4c{bottom:313.230000px;}
.ydd{bottom:313.770000px;}
.y13a{bottom:315.030000px;}
.y172{bottom:315.570000px;}
.yfe{bottom:318.630000px;}
.y11f{bottom:319.350000px;}
.yac{bottom:326.010000px;}
.y7f{bottom:330.735000px;}
.y4b{bottom:333.795000px;}
.ydc{bottom:334.335000px;}
.y139{bottom:335.595000px;}
.y171{bottom:336.135000px;}
.yfd{bottom:339.195000px;}
.y11e{bottom:339.915000px;}
.yab{bottom:346.575000px;}
.y7e{bottom:351.255000px;}
.ydb{bottom:354.855000px;}
.y4a{bottom:355.215000px;}
.y138{bottom:356.115000px;}
.y170{bottom:356.655000px;}
.yfc{bottom:359.715000px;}
.y132{bottom:360.075000px;}
.y11d{bottom:360.435000px;}
.yaa{bottom:366.915000px;}
.y7d{bottom:371.775000px;}
.yda{bottom:375.375000px;}
.y137{bottom:376.635000px;}
.y16f{bottom:377.175000px;}
.y131{bottom:378.975000px;}
.y49{bottom:379.695000px;}
.yfb{bottom:380.235000px;}
.y159{bottom:380.595000px;}
.y11c{bottom:380.955000px;}
.ya9{bottom:387.435000px;}
.y7c{bottom:392.295000px;}
.y1f{bottom:394.275000px;}
.yd9{bottom:395.895000px;}
.y136{bottom:396.975000px;}
.y16e{bottom:397.695000px;}
.y130{bottom:398.595000px;}
.y158{bottom:399.495000px;}
.y48{bottom:400.215000px;}
.yfa{bottom:400.755000px;}
.y135{bottom:401.115000px;}
.y11b{bottom:401.475000px;}
.ya8{bottom:407.955000px;}
.y7b{bottom:412.815000px;}
.yd8{bottom:416.415000px;}
.y1e{bottom:416.595000px;}
.y12f{bottom:417.495000px;}
.y16d{bottom:418.215000px;}
.y157{bottom:419.475000px;}
.y134{bottom:420.015000px;}
.y47{bottom:420.735000px;}
.yf9{bottom:420.915000px;}
.y11a{bottom:421.815000px;}
.ya7{bottom:428.475000px;}
.y7a{bottom:433.335000px;}
.y165{bottom:434.235000px;}
.yd7{bottom:436.935000px;}
.y12e{bottom:438.015000px;}
.y16c{bottom:438.735000px;}
.y133{bottom:439.635000px;}
.yf8{bottom:439.815000px;}
.y156{bottom:439.995000px;}
.y1d{bottom:440.895000px;}
.y46{bottom:441.075000px;}
.y15c{bottom:441.435000px;}
.y119{bottom:442.335000px;}
.ya6{bottom:448.995000px;}
.y79{bottom:453.675000px;}
.yd6{bottom:457.455000px;}
.y12d{bottom:458.535000px;}
.y16b{bottom:459.255000px;}
.yf7{bottom:459.795000px;}
.y155{bottom:460.515000px;}
.y1c{bottom:461.415000px;}
.y45{bottom:461.595000px;}
.y118{bottom:462.855000px;}
.ya5{bottom:469.515000px;}
.y78{bottom:474.195000px;}
.yd5{bottom:477.975000px;}
.y12c{bottom:479.055000px;}
.yf6{bottom:479.595000px;}
.y154{bottom:480.855000px;}
.y1b{bottom:481.935000px;}
.y44{bottom:482.115000px;}
.y117{bottom:483.375000px;}
.ya4{bottom:490.035000px;}
.y77{bottom:494.715000px;}
.yd4{bottom:498.495000px;}
.y12b{bottom:499.575000px;}
.yf5{bottom:500.115000px;}
.y153{bottom:501.375000px;}
.y1a{bottom:502.275000px;}
.y43{bottom:502.635000px;}
.y116{bottom:503.895000px;}
.ya3{bottom:510.555000px;}
.y76{bottom:516.135000px;}
.yd3{bottom:519.015000px;}
.y12a{bottom:520.095000px;}
.yf4{bottom:520.635000px;}
.y152{bottom:521.895000px;}
.y19{bottom:522.975000px;}
.y42{bottom:523.155000px;}
.y115{bottom:524.415000px;}
.ya2{bottom:531.075000px;}
.yd2{bottom:539.355000px;}
.y75{bottom:540.615000px;}
.yf3{bottom:541.155000px;}
.y151{bottom:542.415000px;}
.y41{bottom:543.675000px;}
.y114{bottom:544.935000px;}
.y18{bottom:546.915000px;}
.y19d{bottom:551.415000px;}
.ya1{bottom:551.595000px;}
.yd1{bottom:559.875000px;}
.y74{bottom:561.135000px;}
.yf2{bottom:561.675000px;}
.y150{bottom:562.935000px;}
.y40{bottom:564.195000px;}
.y113{bottom:565.455000px;}
.y19c{bottom:571.935000px;}
.y17{bottom:572.115000px;}
.yd0{bottom:580.395000px;}
.y73{bottom:581.655000px;}
.yf1{bottom:582.195000px;}
.y14f{bottom:583.455000px;}
.y3f{bottom:584.715000px;}
.y112{bottom:585.975000px;}
.y19b{bottom:592.455000px;}
.ya0{bottom:592.635000px;}
.y16{bottom:594.075000px;}
.ycf{bottom:600.945000px;}
.y72{bottom:602.205000px;}
.yf0{bottom:602.745000px;}
.y14e{bottom:604.005000px;}
.y3e{bottom:605.265000px;}
.y111{bottom:606.525000px;}
.y9f{bottom:613.005000px;}
.yce{bottom:621.465000px;}
.y71{bottom:622.545000px;}
.yef{bottom:623.265000px;}
.y15{bottom:623.625000px;}
.y14d{bottom:624.525000px;}
.y3d{bottom:625.785000px;}
.y110{bottom:627.045000px;}
.y9e{bottom:633.525000px;}
.ycd{bottom:641.985000px;}
.y70{bottom:643.065000px;}
.yee{bottom:643.785000px;}
.y14c{bottom:645.045000px;}
.y3c{bottom:646.305000px;}
.y10f{bottom:647.385000px;}
.y14{bottom:653.145000px;}
.y9d{bottom:654.045000px;}
.ycc{bottom:662.505000px;}
.y6f{bottom:663.585000px;}
.yed{bottom:664.305000px;}
.y14b{bottom:665.565000px;}
.y3b{bottom:666.645000px;}
.y10e{bottom:667.905000px;}
.y9c{bottom:674.565000px;}
.y13{bottom:682.665000px;}
.ycb{bottom:683.025000px;}
.y6e{bottom:684.105000px;}
.yec{bottom:684.825000px;}
.y14a{bottom:686.085000px;}
.y3a{bottom:687.165000px;}
.y10d{bottom:688.425000px;}
.y19a{bottom:694.905000px;}
.y9b{bottom:695.085000px;}
.y12{bottom:703.185000px;}
.yca{bottom:703.545000px;}
.y6d{bottom:704.625000px;}
.yeb{bottom:705.345000px;}
.y149{bottom:706.425000px;}
.y39{bottom:707.685000px;}
.y10c{bottom:708.945000px;}
.y199{bottom:715.425000px;}
.y9a{bottom:715.605000px;}
.y11{bottom:723.705000px;}
.yc9{bottom:724.065000px;}
.y6c{bottom:725.145000px;}
.yea{bottom:725.685000px;}
.y148{bottom:726.945000px;}
.y38{bottom:728.205000px;}
.y10b{bottom:729.105000px;}
.y198{bottom:735.945000px;}
.y99{bottom:736.125000px;}
.y10{bottom:743.685000px;}
.yc8{bottom:744.585000px;}
.y6b{bottom:745.665000px;}
.ye9{bottom:746.205000px;}
.y147{bottom:747.465000px;}
.y10a{bottom:748.185000px;}
.y37{bottom:748.365000px;}
.y197{bottom:756.465000px;}
.y98{bottom:756.645000px;}
.yc7{bottom:764.925000px;}
.y6a{bottom:766.185000px;}
.yf{bottom:766.545000px;}
.ye8{bottom:766.725000px;}
.y109{bottom:767.625000px;}
.y146{bottom:767.985000px;}
.y36{bottom:768.345000px;}
.y97{bottom:777.165000px;}
.y196{bottom:777.345000px;}
.yc6{bottom:785.445000px;}
.y69{bottom:786.705000px;}
.y35{bottom:787.245000px;}
.y145{bottom:788.145000px;}
.y15b{bottom:788.505000px;}
.y96{bottom:797.685000px;}
.ye{bottom:799.125000px;}
.y195{bottom:799.305000px;}
.yc5{bottom:805.965000px;}
.y68{bottom:807.225000px;}
.y34{bottom:807.765000px;}
.y15a{bottom:808.665000px;}
.y95{bottom:818.205000px;}
.y194{bottom:819.825000px;}
.yc4{bottom:826.485000px;}
.y67{bottom:827.745000px;}
.y33{bottom:828.285000px;}
.yd{bottom:831.705000px;}
.y94{bottom:838.545000px;}
.y193{bottom:840.345000px;}
.yc3{bottom:847.005000px;}
.y66{bottom:848.085000px;}
.y32{bottom:848.805000px;}
.y93{bottom:859.065000px;}
.y192{bottom:860.865000px;}
.yc{bottom:861.585000px;}
.yc2{bottom:867.570000px;}
.y65{bottom:868.650000px;}
.y31{bottom:869.370000px;}
.y92{bottom:879.630000px;}
.y191{bottom:881.430000px;}
.yb{bottom:887.010000px;}
.yc1{bottom:888.090000px;}
.y64{bottom:889.170000px;}
.y30{bottom:889.890000px;}
.y91{bottom:900.150000px;}
.y190{bottom:901.950000px;}
.yc0{bottom:908.610000px;}
.y63{bottom:909.690000px;}
.y2f{bottom:910.410000px;}
.y90{bottom:920.670000px;}
.y18f{bottom:922.470000px;}
.ybf{bottom:929.130000px;}
.y62{bottom:930.210000px;}
.ya{bottom:930.570000px;}
.y2e{bottom:930.930000px;}
.y8f{bottom:941.190000px;}
.y18e{bottom:942.990000px;}
.ybe{bottom:949.650000px;}
.y61{bottom:950.730000px;}
.y2d{bottom:951.270000px;}
.y8e{bottom:961.170000px;}
.y18d{bottom:963.510000px;}
.ybd{bottom:970.170000px;}
.y60{bottom:971.250000px;}
.y2c{bottom:971.790000px;}
.y9{bottom:973.950000px;}
.y8d{bottom:980.970000px;}
.y18c{bottom:984.030000px;}
.ybc{bottom:990.690000px;}
.y5f{bottom:991.770000px;}
.y2b{bottom:992.310000px;}
.y8c{bottom:1001.490000px;}
.y18b{bottom:1004.190000px;}
.ybb{bottom:1011.030000px;}
.y5e{bottom:1012.290000px;}
.y2a{bottom:1012.830000px;}
.y8{bottom:1017.330000px;}
.y8b{bottom:1022.010000px;}
.y18a{bottom:1023.990000px;}
.yba{bottom:1031.550000px;}
.y5d{bottom:1032.810000px;}
.y29{bottom:1033.350000px;}
.y8a{bottom:1042.530000px;}
.y189{bottom:1043.970000px;}
.yb9{bottom:1052.070000px;}
.y5c{bottom:1053.330000px;}
.y28{bottom:1053.870000px;}
.y7{bottom:1060.710000px;}
.y89{bottom:1063.050000px;}
.y188{bottom:1064.130000px;}
.yb8{bottom:1072.230000px;}
.y5b{bottom:1073.850000px;}
.y27{bottom:1074.390000px;}
.y88{bottom:1083.570000px;}
.y187{bottom:1084.650000px;}
.y5a{bottom:1094.190000px;}
.y26{bottom:1094.910000px;}
.y6{bottom:1099.230000px;}
.y87{bottom:1103.550000px;}
.y186{bottom:1105.170000px;}
.y59{bottom:1114.710000px;}
.y25{bottom:1115.430000px;}
.y5{bottom:1119.390000px;}
.y86{bottom:1126.590000px;}
.y58{bottom:1135.260000px;}
.y24{bottom:1135.980000px;}
.y4{bottom:1139.220000px;}
.y85{bottom:1151.820000px;}
.y57{bottom:1155.780000px;}
.y23{bottom:1156.140000px;}
.y3{bottom:1158.660000px;}
.y20{bottom:1192.320000px;}
.y1{bottom:1194.660000px;}
.y22{bottom:1207.440000px;}
.hb{height:14.940000px;}
.hc{height:34.884492px;}
.hd{height:43.215117px;}
.h2{height:47.901094px;}
.h12{height:48.062812px;}
.h11{height:48.353906px;}
.h3{height:48.858398px;}
.he{height:54.069961px;}
.h4{height:59.189062px;}
.h5{height:59.932969px;}
.h8{height:65.144531px;}
.h10{height:68.084282px;}
.ha{height:74.004654px;}
.hf{height:75.273047px;}
.h9{height:76.219102px;}
.h7{height:96.503906px;}
.h6{height:128.671875px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:17.460000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:3.060000px;}
.x1{left:106.415987px;}
.x5{left:133.415987px;}
.x6{left:155.549987px;}
.x4{left:160.409987px;}
.x7{left:335.234987px;}
.x2{left:768.060000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.789333pt;}
.lsa{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.645333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.613333pt;}
.ls14{letter-spacing:-0.406933pt;}
.ls13{letter-spacing:-0.304533pt;}
.lsb{letter-spacing:-0.258667pt;}
.ls11{letter-spacing:-0.217600pt;}
.ls12{letter-spacing:-0.186667pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.148267pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls1b{letter-spacing:-0.133333pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.043520pt;}
.lsc{letter-spacing:-0.005120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.146133pt;}
.ls17{letter-spacing:0.158933pt;}
.ls15{letter-spacing:0.232960pt;}
.ls2{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.307200pt;}
.lse{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.335467pt;}
.ls16{letter-spacing:59.770027pt;}
.ls0{letter-spacing:752.138667pt;}
.ls5{letter-spacing:753.418667pt;}
.ws6{word-spacing:-19.040000pt;}
.ws11{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.106667pt;}
.ws14{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.055467pt;}
.wse{word-spacing:-15.027200pt;}
.ws0{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.878933pt;}
.ws4{word-spacing:-14.866133pt;}
.ws1{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.714880pt;}
.wsb{word-spacing:-14.676480pt;}
.wsc{word-spacing:-14.622933pt;}
.ws13{word-spacing:-14.586667pt;}
.ws3{word-spacing:-14.584533pt;}
.ws9{word-spacing:-14.533333pt;}
.ws8{word-spacing:-14.502400pt;}
.ws5{word-spacing:-14.461333pt;}
.ws15{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.074667pt;}
.wsa{word-spacing:-11.040000pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-4.828160pt;}
._8{margin-left:-3.322880pt;}
._7{margin-left:-2.304000pt;}
._1{margin-left:-0.978773pt;}
._0{width:0.956160pt;}
._10{width:1.944747pt;}
._11{width:2.944427pt;}
._6{width:3.968000pt;}
._12{width:5.122560pt;}
._13{width:6.300160pt;}
._16{width:7.551147pt;}
._9{width:8.478720pt;}
._a{width:9.420800pt;}
._b{width:10.340693pt;}
._c{width:11.519147pt;}
._14{width:12.506453pt;}
._17{width:13.754027pt;}
._15{width:15.934293pt;}
._e{width:17.384107pt;}
._d{width:18.429440pt;}
._18{width:19.653120pt;}
._1b{width:20.742400pt;}
._1f{width:22.256640pt;}
._20{width:23.375360pt;}
._19{width:25.082880pt;}
._21{width:26.650453pt;}
._23{width:27.585707pt;}
._22{width:28.593493pt;}
._f{width:30.006613pt;}
._27{width:35.129173pt;}
._1d{width:38.956373pt;}
._1a{width:40.450560pt;}
._4{width:42.496000pt;}
._2b{width:46.787413pt;}
._5{width:88.960000pt;}
._28{width:134.423040pt;}
._29{width:135.528960pt;}
._26{width:146.022400pt;}
._25{width:147.001173pt;}
._1c{width:164.458667pt;}
._24{width:175.521280pt;}
._2{width:177.408000pt;}
._3{width:178.816000pt;}
._2a{width:790.324053pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.360000pt;}
.y2{bottom:4.160000pt;}
.yb7{bottom:89.312000pt;}
.y56{bottom:96.192000pt;}
.ye7{bottom:97.312000pt;}
.y185{bottom:97.792000pt;}
.y144{bottom:99.872000pt;}
.y108{bottom:100.992000pt;}
.y129{bottom:101.632000pt;}
.yb6{bottom:107.552000pt;}
.y16a{bottom:111.712000pt;}
.y164{bottom:113.312000pt;}
.y55{bottom:114.432000pt;}
.ye6{bottom:115.552000pt;}
.y184{bottom:116.032000pt;}
.y17b{bottom:116.512000pt;}
.y143{bottom:118.112000pt;}
.y107{bottom:119.232000pt;}
.y128{bottom:119.872000pt;}
.yb5{bottom:125.632000pt;}
.y169{bottom:129.952000pt;}
.y163{bottom:131.552000pt;}
.y54{bottom:132.672000pt;}
.ye5{bottom:133.786667pt;}
.y183{bottom:134.106667pt;}
.y17a{bottom:134.746667pt;}
.y142{bottom:136.346667pt;}
.y106{bottom:137.466667pt;}
.y127{bottom:138.106667pt;}
.yb4{bottom:143.866667pt;}
.y168{bottom:148.186667pt;}
.y162{bottom:149.786667pt;}
.y53{bottom:150.906667pt;}
.ye4{bottom:151.866667pt;}
.y182{bottom:152.346667pt;}
.y179{bottom:152.986667pt;}
.y141{bottom:154.586667pt;}
.y105{bottom:155.706667pt;}
.y126{bottom:156.346667pt;}
.yb3{bottom:162.106667pt;}
.y167{bottom:166.426667pt;}
.y161{bottom:168.026667pt;}
.y52{bottom:169.146667pt;}
.ye3{bottom:170.106667pt;}
.y181{bottom:170.586667pt;}
.y178{bottom:171.226667pt;}
.y140{bottom:172.826667pt;}
.y104{bottom:173.946667pt;}
.y125{bottom:174.426667pt;}
.yb2{bottom:180.346667pt;}
.y166{bottom:184.506667pt;}
.y160{bottom:186.266667pt;}
.y51{bottom:187.386667pt;}
.ye2{bottom:188.346667pt;}
.y180{bottom:188.826667pt;}
.y177{bottom:189.466667pt;}
.y13f{bottom:191.066667pt;}
.y103{bottom:192.186667pt;}
.y124{bottom:192.666667pt;}
.yb1{bottom:198.586667pt;}
.y84{bottom:202.746667pt;}
.y15f{bottom:204.506667pt;}
.y50{bottom:205.626667pt;}
.ye1{bottom:206.106667pt;}
.y17f{bottom:207.066667pt;}
.y176{bottom:207.706667pt;}
.y13e{bottom:209.306667pt;}
.y102{bottom:210.426667pt;}
.y123{bottom:210.906667pt;}
.yb0{bottom:216.826667pt;}
.y83{bottom:220.986667pt;}
.y15e{bottom:222.746667pt;}
.y4f{bottom:223.706667pt;}
.ye0{bottom:224.346667pt;}
.y17e{bottom:225.306667pt;}
.y175{bottom:225.786667pt;}
.y13d{bottom:227.546667pt;}
.y101{bottom:228.666667pt;}
.y122{bottom:229.146667pt;}
.yaf{bottom:235.066667pt;}
.y82{bottom:239.226667pt;}
.y15d{bottom:241.786667pt;}
.y4e{bottom:241.946667pt;}
.ydf{bottom:242.586667pt;}
.y17d{bottom:243.546667pt;}
.y174{bottom:244.026667pt;}
.y13c{bottom:245.786667pt;}
.y100{bottom:246.906667pt;}
.y121{bottom:247.386667pt;}
.yae{bottom:253.306667pt;}
.y81{bottom:257.466667pt;}
.y4d{bottom:260.186667pt;}
.yde{bottom:260.826667pt;}
.y17c{bottom:261.786667pt;}
.y173{bottom:262.266667pt;}
.y13b{bottom:263.066667pt;}
.yff{bottom:264.986667pt;}
.y120{bottom:265.626667pt;}
.yad{bottom:271.546667pt;}
.y80{bottom:275.706667pt;}
.y4c{bottom:278.426667pt;}
.ydd{bottom:278.906667pt;}
.y13a{bottom:280.026667pt;}
.y172{bottom:280.506667pt;}
.yfe{bottom:283.226667pt;}
.y11f{bottom:283.866667pt;}
.yac{bottom:289.786667pt;}
.y7f{bottom:293.986667pt;}
.y4b{bottom:296.706667pt;}
.ydc{bottom:297.186667pt;}
.y139{bottom:298.306667pt;}
.y171{bottom:298.786667pt;}
.yfd{bottom:301.506667pt;}
.y11e{bottom:302.146667pt;}
.yab{bottom:308.066667pt;}
.y7e{bottom:312.226667pt;}
.ydb{bottom:315.426667pt;}
.y4a{bottom:315.746667pt;}
.y138{bottom:316.546667pt;}
.y170{bottom:317.026667pt;}
.yfc{bottom:319.746667pt;}
.y132{bottom:320.066667pt;}
.y11d{bottom:320.386667pt;}
.yaa{bottom:326.146667pt;}
.y7d{bottom:330.466667pt;}
.yda{bottom:333.666667pt;}
.y137{bottom:334.786667pt;}
.y16f{bottom:335.266667pt;}
.y131{bottom:336.866667pt;}
.y49{bottom:337.506667pt;}
.yfb{bottom:337.986667pt;}
.y159{bottom:338.306667pt;}
.y11c{bottom:338.626667pt;}
.ya9{bottom:344.386667pt;}
.y7c{bottom:348.706667pt;}
.y1f{bottom:350.466667pt;}
.yd9{bottom:351.906667pt;}
.y136{bottom:352.866667pt;}
.y16e{bottom:353.506667pt;}
.y130{bottom:354.306667pt;}
.y158{bottom:355.106667pt;}
.y48{bottom:355.746667pt;}
.yfa{bottom:356.226667pt;}
.y135{bottom:356.546667pt;}
.y11b{bottom:356.866667pt;}
.ya8{bottom:362.626667pt;}
.y7b{bottom:366.946667pt;}
.yd8{bottom:370.146667pt;}
.y1e{bottom:370.306667pt;}
.y12f{bottom:371.106667pt;}
.y16d{bottom:371.746667pt;}
.y157{bottom:372.866667pt;}
.y134{bottom:373.346667pt;}
.y47{bottom:373.986667pt;}
.yf9{bottom:374.146667pt;}
.y11a{bottom:374.946667pt;}
.ya7{bottom:380.866667pt;}
.y7a{bottom:385.186667pt;}
.y165{bottom:385.986667pt;}
.yd7{bottom:388.386667pt;}
.y12e{bottom:389.346667pt;}
.y16c{bottom:389.986667pt;}
.y133{bottom:390.786667pt;}
.yf8{bottom:390.946667pt;}
.y156{bottom:391.106667pt;}
.y1d{bottom:391.906667pt;}
.y46{bottom:392.066667pt;}
.y15c{bottom:392.386667pt;}
.y119{bottom:393.186667pt;}
.ya6{bottom:399.106667pt;}
.y79{bottom:403.266667pt;}
.yd6{bottom:406.626667pt;}
.y12d{bottom:407.586667pt;}
.y16b{bottom:408.226667pt;}
.yf7{bottom:408.706667pt;}
.y155{bottom:409.346667pt;}
.y1c{bottom:410.146667pt;}
.y45{bottom:410.306667pt;}
.y118{bottom:411.426667pt;}
.ya5{bottom:417.346667pt;}
.y78{bottom:421.506667pt;}
.yd5{bottom:424.866667pt;}
.y12c{bottom:425.826667pt;}
.yf6{bottom:426.306667pt;}
.y154{bottom:427.426667pt;}
.y1b{bottom:428.386667pt;}
.y44{bottom:428.546667pt;}
.y117{bottom:429.666667pt;}
.ya4{bottom:435.586667pt;}
.y77{bottom:439.746667pt;}
.yd4{bottom:443.106667pt;}
.y12b{bottom:444.066667pt;}
.yf5{bottom:444.546667pt;}
.y153{bottom:445.666667pt;}
.y1a{bottom:446.466667pt;}
.y43{bottom:446.786667pt;}
.y116{bottom:447.906667pt;}
.ya3{bottom:453.826667pt;}
.y76{bottom:458.786667pt;}
.yd3{bottom:461.346667pt;}
.y12a{bottom:462.306667pt;}
.yf4{bottom:462.786667pt;}
.y152{bottom:463.906667pt;}
.y19{bottom:464.866667pt;}
.y42{bottom:465.026667pt;}
.y115{bottom:466.146667pt;}
.ya2{bottom:472.066667pt;}
.yd2{bottom:479.426667pt;}
.y75{bottom:480.546667pt;}
.yf3{bottom:481.026667pt;}
.y151{bottom:482.146667pt;}
.y41{bottom:483.266667pt;}
.y114{bottom:484.386667pt;}
.y18{bottom:486.146667pt;}
.y19d{bottom:490.146667pt;}
.ya1{bottom:490.306667pt;}
.yd1{bottom:497.666667pt;}
.y74{bottom:498.786667pt;}
.yf2{bottom:499.266667pt;}
.y150{bottom:500.386667pt;}
.y40{bottom:501.506667pt;}
.y113{bottom:502.626667pt;}
.y19c{bottom:508.386667pt;}
.y17{bottom:508.546667pt;}
.yd0{bottom:515.906667pt;}
.y73{bottom:517.026667pt;}
.yf1{bottom:517.506667pt;}
.y14f{bottom:518.626667pt;}
.y3f{bottom:519.746667pt;}
.y112{bottom:520.866667pt;}
.y19b{bottom:526.626667pt;}
.ya0{bottom:526.786667pt;}
.y16{bottom:528.066667pt;}
.ycf{bottom:534.173333pt;}
.y72{bottom:535.293333pt;}
.yf0{bottom:535.773333pt;}
.y14e{bottom:536.893333pt;}
.y3e{bottom:538.013333pt;}
.y111{bottom:539.133333pt;}
.y9f{bottom:544.893333pt;}
.yce{bottom:552.413333pt;}
.y71{bottom:553.373333pt;}
.yef{bottom:554.013333pt;}
.y15{bottom:554.333333pt;}
.y14d{bottom:555.133333pt;}
.y3d{bottom:556.253333pt;}
.y110{bottom:557.373333pt;}
.y9e{bottom:563.133333pt;}
.ycd{bottom:570.653333pt;}
.y70{bottom:571.613333pt;}
.yee{bottom:572.253333pt;}
.y14c{bottom:573.373333pt;}
.y3c{bottom:574.493333pt;}
.y10f{bottom:575.453333pt;}
.y14{bottom:580.573333pt;}
.y9d{bottom:581.373333pt;}
.ycc{bottom:588.893333pt;}
.y6f{bottom:589.853333pt;}
.yed{bottom:590.493333pt;}
.y14b{bottom:591.613333pt;}
.y3b{bottom:592.573333pt;}
.y10e{bottom:593.693333pt;}
.y9c{bottom:599.613333pt;}
.y13{bottom:606.813333pt;}
.ycb{bottom:607.133333pt;}
.y6e{bottom:608.093333pt;}
.yec{bottom:608.733333pt;}
.y14a{bottom:609.853333pt;}
.y3a{bottom:610.813333pt;}
.y10d{bottom:611.933333pt;}
.y19a{bottom:617.693333pt;}
.y9b{bottom:617.853333pt;}
.y12{bottom:625.053333pt;}
.yca{bottom:625.373333pt;}
.y6d{bottom:626.333333pt;}
.yeb{bottom:626.973333pt;}
.y149{bottom:627.933333pt;}
.y39{bottom:629.053333pt;}
.y10c{bottom:630.173333pt;}
.y199{bottom:635.933333pt;}
.y9a{bottom:636.093333pt;}
.y11{bottom:643.293333pt;}
.yc9{bottom:643.613333pt;}
.y6c{bottom:644.573333pt;}
.yea{bottom:645.053333pt;}
.y148{bottom:646.173333pt;}
.y38{bottom:647.293333pt;}
.y10b{bottom:648.093333pt;}
.y198{bottom:654.173333pt;}
.y99{bottom:654.333333pt;}
.y10{bottom:661.053333pt;}
.yc8{bottom:661.853333pt;}
.y6b{bottom:662.813333pt;}
.ye9{bottom:663.293333pt;}
.y147{bottom:664.413333pt;}
.y10a{bottom:665.053333pt;}
.y37{bottom:665.213333pt;}
.y197{bottom:672.413333pt;}
.y98{bottom:672.573333pt;}
.yc7{bottom:679.933333pt;}
.y6a{bottom:681.053333pt;}
.yf{bottom:681.373333pt;}
.ye8{bottom:681.533333pt;}
.y109{bottom:682.333333pt;}
.y146{bottom:682.653333pt;}
.y36{bottom:682.973333pt;}
.y97{bottom:690.813333pt;}
.y196{bottom:690.973333pt;}
.yc6{bottom:698.173333pt;}
.y69{bottom:699.293333pt;}
.y35{bottom:699.773333pt;}
.y145{bottom:700.573333pt;}
.y15b{bottom:700.893333pt;}
.y96{bottom:709.053333pt;}
.ye{bottom:710.333333pt;}
.y195{bottom:710.493333pt;}
.yc5{bottom:716.413333pt;}
.y68{bottom:717.533333pt;}
.y34{bottom:718.013333pt;}
.y15a{bottom:718.813333pt;}
.y95{bottom:727.293333pt;}
.y194{bottom:728.733333pt;}
.yc4{bottom:734.653333pt;}
.y67{bottom:735.773333pt;}
.y33{bottom:736.253333pt;}
.yd{bottom:739.293333pt;}
.y94{bottom:745.373333pt;}
.y193{bottom:746.973333pt;}
.yc3{bottom:752.893333pt;}
.y66{bottom:753.853333pt;}
.y32{bottom:754.493333pt;}
.y93{bottom:763.613333pt;}
.y192{bottom:765.213333pt;}
.yc{bottom:765.853333pt;}
.yc2{bottom:771.173333pt;}
.y65{bottom:772.133333pt;}
.y31{bottom:772.773333pt;}
.y92{bottom:781.893333pt;}
.y191{bottom:783.493333pt;}
.yb{bottom:788.453333pt;}
.yc1{bottom:789.413333pt;}
.y64{bottom:790.373333pt;}
.y30{bottom:791.013333pt;}
.y91{bottom:800.133333pt;}
.y190{bottom:801.733333pt;}
.yc0{bottom:807.653333pt;}
.y63{bottom:808.613333pt;}
.y2f{bottom:809.253333pt;}
.y90{bottom:818.373333pt;}
.y18f{bottom:819.973333pt;}
.ybf{bottom:825.893333pt;}
.y62{bottom:826.853333pt;}
.ya{bottom:827.173333pt;}
.y2e{bottom:827.493333pt;}
.y8f{bottom:836.613333pt;}
.y18e{bottom:838.213333pt;}
.ybe{bottom:844.133333pt;}
.y61{bottom:845.093333pt;}
.y2d{bottom:845.573333pt;}
.y8e{bottom:854.373333pt;}
.y18d{bottom:856.453333pt;}
.ybd{bottom:862.373333pt;}
.y60{bottom:863.333333pt;}
.y2c{bottom:863.813333pt;}
.y9{bottom:865.733333pt;}
.y8d{bottom:871.973333pt;}
.y18c{bottom:874.693333pt;}
.ybc{bottom:880.613333pt;}
.y5f{bottom:881.573333pt;}
.y2b{bottom:882.053333pt;}
.y8c{bottom:890.213333pt;}
.y18b{bottom:892.613333pt;}
.ybb{bottom:898.693333pt;}
.y5e{bottom:899.813333pt;}
.y2a{bottom:900.293333pt;}
.y8{bottom:904.293333pt;}
.y8b{bottom:908.453333pt;}
.y18a{bottom:910.213333pt;}
.yba{bottom:916.933333pt;}
.y5d{bottom:918.053333pt;}
.y29{bottom:918.533333pt;}
.y8a{bottom:926.693333pt;}
.y189{bottom:927.973333pt;}
.yb9{bottom:935.173333pt;}
.y5c{bottom:936.293333pt;}
.y28{bottom:936.773333pt;}
.y7{bottom:942.853333pt;}
.y89{bottom:944.933333pt;}
.y188{bottom:945.893333pt;}
.yb8{bottom:953.093333pt;}
.y5b{bottom:954.533333pt;}
.y27{bottom:955.013333pt;}
.y88{bottom:963.173333pt;}
.y187{bottom:964.133333pt;}
.y5a{bottom:972.613333pt;}
.y26{bottom:973.253333pt;}
.y6{bottom:977.093333pt;}
.y87{bottom:980.933333pt;}
.y186{bottom:982.373333pt;}
.y59{bottom:990.853333pt;}
.y25{bottom:991.493333pt;}
.y5{bottom:995.013333pt;}
.y86{bottom:1001.413333pt;}
.y58{bottom:1009.120000pt;}
.y24{bottom:1009.760000pt;}
.y4{bottom:1012.640000pt;}
.y85{bottom:1023.840000pt;}
.y57{bottom:1027.360000pt;}
.y23{bottom:1027.680000pt;}
.y3{bottom:1029.920000pt;}
.y20{bottom:1059.840000pt;}
.y1{bottom:1061.920000pt;}
.y22{bottom:1073.280000pt;}
.hb{height:13.280000pt;}
.hc{height:31.008437pt;}
.hd{height:38.413438pt;}
.h2{height:42.578750pt;}
.h12{height:42.722500pt;}
.h11{height:42.981250pt;}
.h3{height:43.429688pt;}
.he{height:48.062188pt;}
.h4{height:52.612500pt;}
.h5{height:53.273750pt;}
.h8{height:57.906250pt;}
.h10{height:60.519362pt;}
.ha{height:65.781915pt;}
.hf{height:66.909375pt;}
.h9{height:67.750312pt;}
.h7{height:85.781250pt;}
.h6{height:114.375000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:15.520000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:2.720000pt;}
.x1{left:94.591988pt;}
.x5{left:118.591988pt;}
.x6{left:138.266655pt;}
.x4{left:142.586655pt;}
.x7{left:297.986655pt;}
.x2{left:682.720000pt;}
}




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