
    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_1ef441ec0f6388dc1cc7c692.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_30cf5d7a9468361630c76bc1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_2127e9c37ec498a5e0906918.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_37d5813f31533b7831bf8472.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_0ec44bbb1c6c0be866329c3d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_78678eb8c41cfa7ad68edaa7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5486737b817a1978b11d769.woff')format("woff");}.ff7{font-family:ff7;line-height:0.964355;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_ca9c89090c26b688f1cff3de.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_14c07d284892bd636d64283e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_77db1a8c1687e883d8774cf3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.269400px;}
.ls1a{letter-spacing:-0.259800px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.189360px;}
.ls16{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.279360px;}
.ls19{letter-spacing:0.279600px;}
.lsf{letter-spacing:0.336000px;}
.lse{letter-spacing:0.360000px;}
.ls0{letter-spacing:1.596000px;}
.ls21{letter-spacing:3.780000px;}
.ls1{letter-spacing:7.380000px;}
.ls1e{letter-spacing:8.586720px;}
.ls10{letter-spacing:10.746720px;}
.ls1b{letter-spacing:11.466720px;}
.ls15{letter-spacing:15.066720px;}
.ls12{letter-spacing:17.946720px;}
.ls1f{letter-spacing:19.386720px;}
.ls7{letter-spacing:20.826720px;}
.ls2{letter-spacing:30.186720px;}
.ls20{letter-spacing:38.573280px;}
.ls5{letter-spacing:46.746720px;}
.ls1c{letter-spacing:64.026720px;}
.ls1d{letter-spacing:64.146720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws3{word-spacing:-54.000000px;}
.ws7{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.219600px;}
.ws4{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.790600px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-7.800000px;}
._3{margin-left:-5.184000px;}
._c{margin-left:-3.294000px;}
._8{margin-left:-2.196360px;}
._0{margin-left:-1.151640px;}
._2{width:1.056000px;}
._4{width:2.322000px;}
._15{width:3.419640px;}
._12{width:4.536000px;}
._11{width:5.724000px;}
._f{width:6.858000px;}
._7{width:8.154000px;}
._6{width:9.234000px;}
._1e{width:10.427040px;}
._b{width:11.502000px;}
._1d{width:13.146000px;}
._30{width:14.375520px;}
._14{width:16.002000px;}
._13{width:17.154000px;}
._18{width:18.196560px;}
._e{width:19.500360px;}
._d{width:20.682000px;}
._1b{width:22.273200px;}
._1c{width:23.970000px;}
._24{width:25.995600px;}
._2a{width:27.014400px;}
._20{width:28.027440px;}
._21{width:29.061120px;}
._5{width:30.078000px;}
._28{width:31.080120px;}
._19{width:32.927760px;}
._1a{width:34.282560px;}
._1f{width:35.578320px;}
._25{width:36.809280px;}
._10{width:38.286000px;}
._29{width:39.919680px;}
._26{width:41.433360px;}
._22{width:42.728400px;}
._23{width:44.318760px;}
._a{width:48.114000px;}
._9{width:49.410000px;}
._17{width:51.462000px;}
._16{width:52.704000px;}
._27{width:53.875680px;}
._2b{width:54.935640px;}
._2d{width:57.105720px;}
._2e{width:61.993440px;}
._2c{width:71.460000px;}
._31{width:74.000160px;}
._2f{width:249.690240px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.880000px;}
.y9{bottom:18.540000px;}
.y8{bottom:34.020000px;}
.y7{bottom:49.500000px;}
.y1{bottom:56.376000px;}
.y6a{bottom:57.096000px;}
.y6{bottom:64.980000px;}
.y69{bottom:74.376000px;}
.y126{bottom:112.176000px;}
.y66{bottom:115.776000px;}
.y9a{bottom:115.956000px;}
.y18e{bottom:118.296000px;}
.y158{bottom:120.996000px;}
.yeb{bottom:122.076000px;}
.y99{bottom:127.296000px;}
.y125{bottom:129.456000px;}
.y39{bottom:131.256000px;}
.y65{bottom:133.056000px;}
.y18d{bottom:134.676000px;}
.y157{bottom:137.376000px;}
.yea{bottom:138.456000px;}
.y38{bottom:147.636000px;}
.y64{bottom:150.330000px;}
.y124{bottom:152.670000px;}
.y156{bottom:153.750000px;}
.ye9{bottom:154.830000px;}
.y18c{bottom:160.050000px;}
.y37{bottom:164.010000px;}
.y63{bottom:167.610000px;}
.y155{bottom:170.130000px;}
.ye8{bottom:171.390000px;}
.yc4{bottom:173.370000px;}
.y18b{bottom:176.430000px;}
.y36{bottom:180.390000px;}
.y123{bottom:181.830000px;}
.y62{bottom:184.710000px;}
.y154{bottom:186.510000px;}
.ye7{bottom:187.770000px;}
.yc3{bottom:189.750000px;}
.y18a{bottom:192.810000px;}
.y35{bottom:196.770000px;}
.y122{bottom:198.210000px;}
.y61{bottom:201.990000px;}
.ye6{bottom:204.150000px;}
.yc2{bottom:206.130000px;}
.y153{bottom:207.570000px;}
.y189{bottom:209.190000px;}
.y34{bottom:213.150000px;}
.y121{bottom:214.590000px;}
.y60{bottom:219.270000px;}
.ye5{bottom:220.530000px;}
.y33{bottom:229.530000px;}
.yc1{bottom:230.970000px;}
.y152{bottom:233.670000px;}
.y188{bottom:235.650000px;}
.y5f{bottom:236.550000px;}
.ye4{bottom:236.910000px;}
.yc0{bottom:244.110000px;}
.y32{bottom:245.910000px;}
.y120{bottom:247.350000px;}
.y151{bottom:250.050000px;}
.y187{bottom:252.030000px;}
.ye3{bottom:253.290000px;}
.y5e{bottom:253.830000px;}
.ybf{bottom:263.550000px;}
.y11f{bottom:263.730000px;}
.y150{bottom:266.430000px;}
.y186{bottom:268.410000px;}
.y5d{bottom:270.930000px;}
.y31{bottom:271.290000px;}
.ye2{bottom:278.670000px;}
.y11e{bottom:280.110000px;}
.y30{bottom:287.715000px;}
.y5c{bottom:288.255000px;}
.y14f{bottom:292.935000px;}
.y185{bottom:294.915000px;}
.y11d{bottom:296.535000px;}
.y2f{bottom:304.095000px;}
.ye1{bottom:305.175000px;}
.y5b{bottom:305.535000px;}
.y14e{bottom:309.315000px;}
.y184{bottom:311.295000px;}
.y11c{bottom:312.915000px;}
.y98{bottom:318.135000px;}
.y2e{bottom:320.475000px;}
.ye0{bottom:321.555000px;}
.y5a{bottom:322.815000px;}
.y14d{bottom:325.695000px;}
.y183{bottom:327.675000px;}
.y11b{bottom:329.295000px;}
.y97{bottom:335.415000px;}
.y2d{bottom:336.855000px;}
.ydf{bottom:337.935000px;}
.y59{bottom:340.095000px;}
.y11a{bottom:345.675000px;}
.y14c{bottom:352.155000px;}
.y96{bottom:352.515000px;}
.y2c{bottom:353.235000px;}
.y182{bottom:354.135000px;}
.yde{bottom:354.315000px;}
.y58{bottom:357.375000px;}
.y14b{bottom:368.715000px;}
.y2b{bottom:369.615000px;}
.y95{bottom:369.795000px;}
.y181{bottom:370.515000px;}
.ydd{bottom:370.695000px;}
.y119{bottom:371.055000px;}
.y57{bottom:374.475000px;}
.y14a{bottom:385.095000px;}
.y94{bottom:387.075000px;}
.y118{bottom:387.435000px;}
.y56{bottom:391.755000px;}
.y2a{bottom:394.995000px;}
.ydc{bottom:395.535000px;}
.y180{bottom:396.975000px;}
.y117{bottom:403.815000px;}
.y93{bottom:404.355000px;}
.ydb{bottom:408.675000px;}
.y55{bottom:409.035000px;}
.y29{bottom:411.375000px;}
.y149{bottom:411.555000px;}
.y17f{bottom:413.355000px;}
.y116{bottom:420.195000px;}
.y92{bottom:421.635000px;}
.y54{bottom:426.315000px;}
.y28{bottom:427.755000px;}
.y148{bottom:427.935000px;}
.yda{bottom:428.295000px;}
.y115{bottom:436.575000px;}
.y91{bottom:438.915000px;}
.y17e{bottom:439.815000px;}
.y53{bottom:443.595000px;}
.y27{bottom:444.135000px;}
.y147{bottom:448.815000px;}
.y114{bottom:452.955000px;}
.y26{bottom:460.515000px;}
.y52{bottom:460.875000px;}
.ybe{bottom:462.495000px;}
.y17d{bottom:465.195000px;}
.y113{bottom:469.335000px;}
.y146{bottom:474.915000px;}
.y25{bottom:476.895000px;}
.y51{bottom:477.975000px;}
.ybd{bottom:478.875000px;}
.y17c{bottom:481.575000px;}
.y112{bottom:485.715000px;}
.y90{bottom:486.795000px;}
.y145{bottom:491.475000px;}
.y24{bottom:493.275000px;}
.ybc{bottom:495.255000px;}
.y17b{bottom:497.955000px;}
.y50{bottom:501.195000px;}
.y111{bottom:502.095000px;}
.y8f{bottom:504.075000px;}
.y144{bottom:507.855000px;}
.y23{bottom:509.655000px;}
.ybb{bottom:511.635000px;}
.y17a{bottom:514.335000px;}
.y110{bottom:518.475000px;}
.y8e{bottom:521.355000px;}
.y143{bottom:524.235000px;}
.yba{bottom:528.015000px;}
.y4f{bottom:530.355000px;}
.y179{bottom:530.715000px;}
.y22{bottom:532.155000px;}
.y10f{bottom:534.855000px;}
.y8d{bottom:538.635000px;}
.yb9{bottom:544.395000px;}
.y4e{bottom:546.735000px;}
.y178{bottom:547.095000px;}
.y142{bottom:550.695000px;}
.y10e{bottom:551.235000px;}
.y8c{bottom:555.735000px;}
.yb8{bottom:560.775000px;}
.y21{bottom:561.135000px;}
.y4d{bottom:563.115000px;}
.y177{bottom:563.475000px;}
.y141{bottom:567.105000px;}
.y10d{bottom:572.325000px;}
.y8b{bottom:573.045000px;}
.y20{bottom:576.825000px;}
.yb7{bottom:577.185000px;}
.y4c{bottom:579.525000px;}
.y176{bottom:588.885000px;}
.y8a{bottom:590.325000px;}
.y1f{bottom:592.305000px;}
.yb6{bottom:593.565000px;}
.y10c{bottom:598.425000px;}
.y4b{bottom:604.905000px;}
.y175{bottom:605.265000px;}
.y1e{bottom:607.785000px;}
.y140{bottom:609.945000px;}
.y89{bottom:613.545000px;}
.y10b{bottom:614.805000px;}
.yb5{bottom:618.945000px;}
.y4a{bottom:621.285000px;}
.y174{bottom:621.645000px;}
.y13f{bottom:626.325000px;}
.y10a{bottom:631.185000px;}
.yb4{bottom:635.325000px;}
.y49{bottom:637.665000px;}
.y1d{bottom:638.205000px;}
.y88{bottom:642.885000px;}
.y13e{bottom:647.385000px;}
.y109{bottom:647.565000px;}
.y173{bottom:648.105000px;}
.yb3{bottom:651.705000px;}
.y1c{bottom:653.865000px;}
.y87{bottom:660.165000px;}
.y48{bottom:663.045000px;}
.y108{bottom:663.945000px;}
.y172{bottom:664.485000px;}
.yb2{bottom:668.085000px;}
.y1ab{bottom:668.445000px;}
.y1b{bottom:669.345000px;}
.y13d{bottom:673.485000px;}
.y86{bottom:677.265000px;}
.y47{bottom:679.425000px;}
.y107{bottom:680.325000px;}
.y171{bottom:680.865000px;}
.yb1{bottom:684.465000px;}
.y1a{bottom:684.825000px;}
.y13c{bottom:689.865000px;}
.y1aa{bottom:693.825000px;}
.y85{bottom:694.545000px;}
.y46{bottom:695.805000px;}
.y106{bottom:696.885000px;}
.y19{bottom:700.485000px;}
.yb0{bottom:700.845000px;}
.y13b{bottom:706.245000px;}
.y170{bottom:707.325000px;}
.y84{bottom:711.825000px;}
.y105{bottom:713.265000px;}
.y18{bottom:715.965000px;}
.yaf{bottom:717.225000px;}
.y1a9{bottom:719.205000px;}
.y45{bottom:721.185000px;}
.y16f{bottom:723.705000px;}
.y83{bottom:729.105000px;}
.y104{bottom:729.645000px;}
.y17{bottom:731.445000px;}
.y13a{bottom:732.705000px;}
.yae{bottom:733.605000px;}
.y44{bottom:737.565000px;}
.y1a8{bottom:739.005000px;}
.y103{bottom:746.025000px;}
.y82{bottom:746.385000px;}
.y16{bottom:746.925000px;}
.y139{bottom:749.085000px;}
.yad{bottom:749.985000px;}
.y16e{bottom:750.165000px;}
.y1a7{bottom:752.505000px;}
.y43{bottom:753.945000px;}
.y102{bottom:762.405000px;}
.y15{bottom:762.585000px;}
.y81{bottom:763.665000px;}
.y138{bottom:765.465000px;}
.y1a6{bottom:766.005000px;}
.yac{bottom:766.365000px;}
.y16d{bottom:766.545000px;}
.y42{bottom:770.505000px;}
.y14{bottom:778.065000px;}
.y101{bottom:778.785000px;}
.y1a5{bottom:779.505000px;}
.y80{bottom:780.765000px;}
.y137{bottom:781.845000px;}
.yab{bottom:782.745000px;}
.yd9{bottom:785.985000px;}
.y41{bottom:786.885000px;}
.y16c{bottom:792.105000px;}
.y13{bottom:793.545000px;}
.y100{bottom:795.165000px;}
.y1a4{bottom:796.605000px;}
.y7f{bottom:798.045000px;}
.yd8{bottom:802.365000px;}
.y40{bottom:803.265000px;}
.yaa{bottom:803.805000px;}
.y136{bottom:808.305000px;}
.y16b{bottom:808.485000px;}
.y12{bottom:809.025000px;}
.y1a3{bottom:810.105000px;}
.yff{bottom:811.545000px;}
.y7e{bottom:815.325000px;}
.yd7{bottom:818.745000px;}
.y3f{bottom:819.645000px;}
.y1a2{bottom:823.605000px;}
.y11{bottom:824.685000px;}
.y16a{bottom:824.865000px;}
.yfe{bottom:827.925000px;}
.ya9{bottom:829.905000px;}
.y7d{bottom:832.605000px;}
.yd6{bottom:835.125000px;}
.y3e{bottom:836.025000px;}
.y1a1{bottom:837.105000px;}
.y10{bottom:840.165000px;}
.y169{bottom:841.245000px;}
.yfd{bottom:844.305000px;}
.ya8{bottom:846.285000px;}
.y7c{bottom:849.930000px;}
.y1a0{bottom:850.650000px;}
.y135{bottom:851.190000px;}
.yd5{bottom:851.550000px;}
.y3d{bottom:852.450000px;}
.yf{bottom:855.690000px;}
.y168{bottom:857.670000px;}
.ya7{bottom:862.710000px;}
.y7b{bottom:867.030000px;}
.y134{bottom:867.570000px;}
.yd4{bottom:867.930000px;}
.y3c{bottom:868.830000px;}
.yfc{bottom:869.730000px;}
.ye{bottom:871.170000px;}
.ya6{bottom:879.090000px;}
.y19f{bottom:881.430000px;}
.y167{bottom:883.050000px;}
.y133{bottom:883.950000px;}
.y7a{bottom:884.310000px;}
.y3b{bottom:885.210000px;}
.yd{bottom:886.830000px;}
.y19e{bottom:894.930000px;}
.ya5{bottom:895.470000px;}
.yfb{bottom:896.190000px;}
.y166{bottom:899.430000px;}
.y3a{bottom:901.590000px;}
.yc{bottom:902.310000px;}
.y132{bottom:905.010000px;}
.yd3{bottom:905.370000px;}
.y19d{bottom:908.430000px;}
.ya4{bottom:911.850000px;}
.yfa{bottom:912.570000px;}
.y165{bottom:915.810000px;}
.y79{bottom:918.870000px;}
.y19c{bottom:925.710000px;}
.yf9{bottom:928.950000px;}
.y131{bottom:931.110000px;}
.yd2{bottom:931.650000px;}
.y164{bottom:932.190000px;}
.y78{bottom:936.150000px;}
.ya3{bottom:937.410000px;}
.yb{bottom:938.130000px;}
.y19b{bottom:939.210000px;}
.yf8{bottom:945.330000px;}
.y130{bottom:947.490000px;}
.y163{bottom:948.570000px;}
.yd1{bottom:948.930000px;}
.y19a{bottom:952.710000px;}
.y77{bottom:953.430000px;}
.yf7{bottom:961.710000px;}
.ya2{bottom:962.970000px;}
.y12f{bottom:963.870000px;}
.y162{bottom:964.950000px;}
.yd0{bottom:966.030000px;}
.y199{bottom:969.990000px;}
.y76{bottom:970.530000px;}
.yf6{bottom:978.090000px;}
.ya1{bottom:979.350000px;}
.y12e{bottom:980.250000px;}
.y161{bottom:981.330000px;}
.ycf{bottom:983.310000px;}
.y198{bottom:983.490000px;}
.y75{bottom:987.810000px;}
.yf5{bottom:994.470000px;}
.ya0{bottom:995.730000px;}
.y12d{bottom:996.630000px;}
.y197{bottom:996.990000px;}
.y160{bottom:997.710000px;}
.y5{bottom:999.510000px;}
.yce{bottom:1000.590000px;}
.y74{bottom:1005.090000px;}
.y196{bottom:1010.490000px;}
.yf4{bottom:1010.850000px;}
.y9f{bottom:1012.110000px;}
.y12c{bottom:1013.010000px;}
.y15f{bottom:1014.090000px;}
.ycd{bottom:1017.870000px;}
.y73{bottom:1022.370000px;}
.yf3{bottom:1027.230000px;}
.y195{bottom:1027.770000px;}
.y9e{bottom:1028.490000px;}
.y12b{bottom:1029.390000px;}
.ycc{bottom:1035.150000px;}
.y15e{bottom:1039.470000px;}
.y72{bottom:1039.650000px;}
.y194{bottom:1041.270000px;}
.yf2{bottom:1043.610000px;}
.y9d{bottom:1044.870000px;}
.y12a{bottom:1045.770000px;}
.ycb{bottom:1052.430000px;}
.y193{bottom:1054.770000px;}
.y15d{bottom:1055.850000px;}
.y71{bottom:1056.930000px;}
.yf1{bottom:1059.990000px;}
.y9c{bottom:1061.250000px;}
.y129{bottom:1062.150000px;}
.y192{bottom:1068.270000px;}
.yca{bottom:1069.530000px;}
.y15c{bottom:1072.230000px;}
.y70{bottom:1074.030000px;}
.yf0{bottom:1076.370000px;}
.y128{bottom:1078.530000px;}
.y191{bottom:1081.770000px;}
.y9b{bottom:1082.310000px;}
.yc9{bottom:1086.810000px;}
.y15b{bottom:1088.610000px;}
.y6f{bottom:1091.310000px;}
.y190{bottom:1095.090000px;}
.y127{bottom:1099.590000px;}
.yef{bottom:1101.750000px;}
.yc8{bottom:1104.090000px;}
.y15a{bottom:1104.990000px;}
.y4{bottom:1105.890000px;}
.y6e{bottom:1108.590000px;}
.y18f{bottom:1115.430000px;}
.yc7{bottom:1121.370000px;}
.y6d{bottom:1125.870000px;}
.yee{bottom:1128.210000px;}
.y159{bottom:1137.780000px;}
.yc6{bottom:1138.680000px;}
.y6c{bottom:1143.180000px;}
.yed{bottom:1144.620000px;}
.y3{bottom:1147.320000px;}
.yc5{bottom:1160.280000px;}
.y6b{bottom:1160.460000px;}
.yec{bottom:1161.000000px;}
.y68{bottom:1177.560000px;}
.y2{bottom:1188.720000px;}
.y67{bottom:1194.840000px;}
.he{height:34.884492px;}
.hc{height:43.215117px;}
.h2{height:47.344922px;}
.hd{height:49.583118px;}
.h7{height:52.971680px;}
.h6{height:52.998047px;}
.h9{height:54.421875px;}
.h8{height:58.651172px;}
.hb{height:59.614102px;}
.ha{height:61.423863px;}
.h5{height:77.580000px;}
.h3{height:104.132812px;}
.h4{height:141.328125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:379.155000px;}
.w4{width:379.335000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:66.959987px;}
.xe{left:68.039987px;}
.xd{left:88.379987px;}
.x10{left:89.639987px;}
.x1c{left:95.075987px;}
.x3{left:96.515987px;}
.x2{left:108.935987px;}
.x8{left:112.530000px;}
.x6{left:120.810000px;}
.x1d{left:122.075987px;}
.x7{left:127.110000px;}
.xb{left:129.090000px;}
.xc{left:136.650000px;}
.x9{left:138.810000px;}
.x5{left:161.130000px;}
.x17{left:185.069987px;}
.xf{left:192.269987px;}
.x20{left:211.889987px;}
.x4{left:249.869987px;}
.x18{left:397.874987px;}
.x1b{left:439.094987px;}
.x16{left:442.694987px;}
.xa{left:446.115000px;}
.x12{left:459.974987px;}
.x11{left:481.574987px;}
.x13{left:486.974987px;}
.x1e{left:488.594987px;}
.x14{left:514.004987px;}
.x1f{left:522.644987px;}
.x19{left:528.224987px;}
.x15{left:563.864987px;}
.x1a{left:799.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.239467pt;}
.ls1a{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.168320pt;}
.ls16{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.248320pt;}
.ls19{letter-spacing:0.248533pt;}
.lsf{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.320000pt;}
.ls0{letter-spacing:1.418667pt;}
.ls21{letter-spacing:3.360000pt;}
.ls1{letter-spacing:6.560000pt;}
.ls1e{letter-spacing:7.632640pt;}
.ls10{letter-spacing:9.552640pt;}
.ls1b{letter-spacing:10.192640pt;}
.ls15{letter-spacing:13.392640pt;}
.ls12{letter-spacing:15.952640pt;}
.ls1f{letter-spacing:17.232640pt;}
.ls7{letter-spacing:18.512640pt;}
.ls2{letter-spacing:26.832640pt;}
.ls20{letter-spacing:34.287360pt;}
.ls5{letter-spacing:41.552640pt;}
.ls1c{letter-spacing:56.912640pt;}
.ls1d{letter-spacing:57.019307pt;}
.wsc{word-spacing:-53.120000pt;}
.ws3{word-spacing:-48.000000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.528533pt;}
.ws4{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.480533pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-6.933333pt;}
._3{margin-left:-4.608000pt;}
._c{margin-left:-2.928000pt;}
._8{margin-left:-1.952320pt;}
._0{margin-left:-1.023680pt;}
._2{width:0.938667pt;}
._4{width:2.064000pt;}
._15{width:3.039680pt;}
._12{width:4.032000pt;}
._11{width:5.088000pt;}
._f{width:6.096000pt;}
._7{width:7.248000pt;}
._6{width:8.208000pt;}
._1e{width:9.268480pt;}
._b{width:10.224000pt;}
._1d{width:11.685333pt;}
._30{width:12.778240pt;}
._14{width:14.224000pt;}
._13{width:15.248000pt;}
._18{width:16.174720pt;}
._e{width:17.333653pt;}
._d{width:18.384000pt;}
._1b{width:19.798400pt;}
._1c{width:21.306667pt;}
._24{width:23.107200pt;}
._2a{width:24.012800pt;}
._20{width:24.913280pt;}
._21{width:25.832107pt;}
._5{width:26.736000pt;}
._28{width:27.626773pt;}
._19{width:29.269120pt;}
._1a{width:30.473387pt;}
._1f{width:31.625173pt;}
._25{width:32.719360pt;}
._10{width:34.032000pt;}
._29{width:35.484160pt;}
._26{width:36.829653pt;}
._22{width:37.980800pt;}
._23{width:39.394453pt;}
._a{width:42.768000pt;}
._9{width:43.920000pt;}
._17{width:45.744000pt;}
._16{width:46.848000pt;}
._27{width:47.889493pt;}
._2b{width:48.831680pt;}
._2d{width:50.760640pt;}
._2e{width:55.105280pt;}
._2c{width:63.520000pt;}
._31{width:65.777920pt;}
._2f{width:221.946880pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.560000pt;}
.y9{bottom:16.480000pt;}
.y8{bottom:30.240000pt;}
.y7{bottom:44.000000pt;}
.y1{bottom:50.112000pt;}
.y6a{bottom:50.752000pt;}
.y6{bottom:57.760000pt;}
.y69{bottom:66.112000pt;}
.y126{bottom:99.712000pt;}
.y66{bottom:102.912000pt;}
.y9a{bottom:103.072000pt;}
.y18e{bottom:105.152000pt;}
.y158{bottom:107.552000pt;}
.yeb{bottom:108.512000pt;}
.y99{bottom:113.152000pt;}
.y125{bottom:115.072000pt;}
.y39{bottom:116.672000pt;}
.y65{bottom:118.272000pt;}
.y18d{bottom:119.712000pt;}
.y157{bottom:122.112000pt;}
.yea{bottom:123.072000pt;}
.y38{bottom:131.232000pt;}
.y64{bottom:133.626667pt;}
.y124{bottom:135.706667pt;}
.y156{bottom:136.666667pt;}
.ye9{bottom:137.626667pt;}
.y18c{bottom:142.266667pt;}
.y37{bottom:145.786667pt;}
.y63{bottom:148.986667pt;}
.y155{bottom:151.226667pt;}
.ye8{bottom:152.346667pt;}
.yc4{bottom:154.106667pt;}
.y18b{bottom:156.826667pt;}
.y36{bottom:160.346667pt;}
.y123{bottom:161.626667pt;}
.y62{bottom:164.186667pt;}
.y154{bottom:165.786667pt;}
.ye7{bottom:166.906667pt;}
.yc3{bottom:168.666667pt;}
.y18a{bottom:171.386667pt;}
.y35{bottom:174.906667pt;}
.y122{bottom:176.186667pt;}
.y61{bottom:179.546667pt;}
.ye6{bottom:181.466667pt;}
.yc2{bottom:183.226667pt;}
.y153{bottom:184.506667pt;}
.y189{bottom:185.946667pt;}
.y34{bottom:189.466667pt;}
.y121{bottom:190.746667pt;}
.y60{bottom:194.906667pt;}
.ye5{bottom:196.026667pt;}
.y33{bottom:204.026667pt;}
.yc1{bottom:205.306667pt;}
.y152{bottom:207.706667pt;}
.y188{bottom:209.466667pt;}
.y5f{bottom:210.266667pt;}
.ye4{bottom:210.586667pt;}
.yc0{bottom:216.986667pt;}
.y32{bottom:218.586667pt;}
.y120{bottom:219.866667pt;}
.y151{bottom:222.266667pt;}
.y187{bottom:224.026667pt;}
.ye3{bottom:225.146667pt;}
.y5e{bottom:225.626667pt;}
.ybf{bottom:234.266667pt;}
.y11f{bottom:234.426667pt;}
.y150{bottom:236.826667pt;}
.y186{bottom:238.586667pt;}
.y5d{bottom:240.826667pt;}
.y31{bottom:241.146667pt;}
.ye2{bottom:247.706667pt;}
.y11e{bottom:248.986667pt;}
.y30{bottom:255.746667pt;}
.y5c{bottom:256.226667pt;}
.y14f{bottom:260.386667pt;}
.y185{bottom:262.146667pt;}
.y11d{bottom:263.586667pt;}
.y2f{bottom:270.306667pt;}
.ye1{bottom:271.266667pt;}
.y5b{bottom:271.586667pt;}
.y14e{bottom:274.946667pt;}
.y184{bottom:276.706667pt;}
.y11c{bottom:278.146667pt;}
.y98{bottom:282.786667pt;}
.y2e{bottom:284.866667pt;}
.ye0{bottom:285.826667pt;}
.y5a{bottom:286.946667pt;}
.y14d{bottom:289.506667pt;}
.y183{bottom:291.266667pt;}
.y11b{bottom:292.706667pt;}
.y97{bottom:298.146667pt;}
.y2d{bottom:299.426667pt;}
.ydf{bottom:300.386667pt;}
.y59{bottom:302.306667pt;}
.y11a{bottom:307.266667pt;}
.y14c{bottom:313.026667pt;}
.y96{bottom:313.346667pt;}
.y2c{bottom:313.986667pt;}
.y182{bottom:314.786667pt;}
.yde{bottom:314.946667pt;}
.y58{bottom:317.666667pt;}
.y14b{bottom:327.746667pt;}
.y2b{bottom:328.546667pt;}
.y95{bottom:328.706667pt;}
.y181{bottom:329.346667pt;}
.ydd{bottom:329.506667pt;}
.y119{bottom:329.826667pt;}
.y57{bottom:332.866667pt;}
.y14a{bottom:342.306667pt;}
.y94{bottom:344.066667pt;}
.y118{bottom:344.386667pt;}
.y56{bottom:348.226667pt;}
.y2a{bottom:351.106667pt;}
.ydc{bottom:351.586667pt;}
.y180{bottom:352.866667pt;}
.y117{bottom:358.946667pt;}
.y93{bottom:359.426667pt;}
.ydb{bottom:363.266667pt;}
.y55{bottom:363.586667pt;}
.y29{bottom:365.666667pt;}
.y149{bottom:365.826667pt;}
.y17f{bottom:367.426667pt;}
.y116{bottom:373.506667pt;}
.y92{bottom:374.786667pt;}
.y54{bottom:378.946667pt;}
.y28{bottom:380.226667pt;}
.y148{bottom:380.386667pt;}
.yda{bottom:380.706667pt;}
.y115{bottom:388.066667pt;}
.y91{bottom:390.146667pt;}
.y17e{bottom:390.946667pt;}
.y53{bottom:394.306667pt;}
.y27{bottom:394.786667pt;}
.y147{bottom:398.946667pt;}
.y114{bottom:402.626667pt;}
.y26{bottom:409.346667pt;}
.y52{bottom:409.666667pt;}
.ybe{bottom:411.106667pt;}
.y17d{bottom:413.506667pt;}
.y113{bottom:417.186667pt;}
.y146{bottom:422.146667pt;}
.y25{bottom:423.906667pt;}
.y51{bottom:424.866667pt;}
.ybd{bottom:425.666667pt;}
.y17c{bottom:428.066667pt;}
.y112{bottom:431.746667pt;}
.y90{bottom:432.706667pt;}
.y145{bottom:436.866667pt;}
.y24{bottom:438.466667pt;}
.ybc{bottom:440.226667pt;}
.y17b{bottom:442.626667pt;}
.y50{bottom:445.506667pt;}
.y111{bottom:446.306667pt;}
.y8f{bottom:448.066667pt;}
.y144{bottom:451.426667pt;}
.y23{bottom:453.026667pt;}
.ybb{bottom:454.786667pt;}
.y17a{bottom:457.186667pt;}
.y110{bottom:460.866667pt;}
.y8e{bottom:463.426667pt;}
.y143{bottom:465.986667pt;}
.yba{bottom:469.346667pt;}
.y4f{bottom:471.426667pt;}
.y179{bottom:471.746667pt;}
.y22{bottom:473.026667pt;}
.y10f{bottom:475.426667pt;}
.y8d{bottom:478.786667pt;}
.yb9{bottom:483.906667pt;}
.y4e{bottom:485.986667pt;}
.y178{bottom:486.306667pt;}
.y142{bottom:489.506667pt;}
.y10e{bottom:489.986667pt;}
.y8c{bottom:493.986667pt;}
.yb8{bottom:498.466667pt;}
.y21{bottom:498.786667pt;}
.y4d{bottom:500.546667pt;}
.y177{bottom:500.866667pt;}
.y141{bottom:504.093333pt;}
.y10d{bottom:508.733333pt;}
.y8b{bottom:509.373333pt;}
.y20{bottom:512.733333pt;}
.yb7{bottom:513.053333pt;}
.y4c{bottom:515.133333pt;}
.y176{bottom:523.453333pt;}
.y8a{bottom:524.733333pt;}
.y1f{bottom:526.493333pt;}
.yb6{bottom:527.613333pt;}
.y10c{bottom:531.933333pt;}
.y4b{bottom:537.693333pt;}
.y175{bottom:538.013333pt;}
.y1e{bottom:540.253333pt;}
.y140{bottom:542.173333pt;}
.y89{bottom:545.373333pt;}
.y10b{bottom:546.493333pt;}
.yb5{bottom:550.173333pt;}
.y4a{bottom:552.253333pt;}
.y174{bottom:552.573333pt;}
.y13f{bottom:556.733333pt;}
.y10a{bottom:561.053333pt;}
.yb4{bottom:564.733333pt;}
.y49{bottom:566.813333pt;}
.y1d{bottom:567.293333pt;}
.y88{bottom:571.453333pt;}
.y13e{bottom:575.453333pt;}
.y109{bottom:575.613333pt;}
.y173{bottom:576.093333pt;}
.yb3{bottom:579.293333pt;}
.y1c{bottom:581.213333pt;}
.y87{bottom:586.813333pt;}
.y48{bottom:589.373333pt;}
.y108{bottom:590.173333pt;}
.y172{bottom:590.653333pt;}
.yb2{bottom:593.853333pt;}
.y1ab{bottom:594.173333pt;}
.y1b{bottom:594.973333pt;}
.y13d{bottom:598.653333pt;}
.y86{bottom:602.013333pt;}
.y47{bottom:603.933333pt;}
.y107{bottom:604.733333pt;}
.y171{bottom:605.213333pt;}
.yb1{bottom:608.413333pt;}
.y1a{bottom:608.733333pt;}
.y13c{bottom:613.213333pt;}
.y1aa{bottom:616.733333pt;}
.y85{bottom:617.373333pt;}
.y46{bottom:618.493333pt;}
.y106{bottom:619.453333pt;}
.y19{bottom:622.653333pt;}
.yb0{bottom:622.973333pt;}
.y13b{bottom:627.773333pt;}
.y170{bottom:628.733333pt;}
.y84{bottom:632.733333pt;}
.y105{bottom:634.013333pt;}
.y18{bottom:636.413333pt;}
.yaf{bottom:637.533333pt;}
.y1a9{bottom:639.293333pt;}
.y45{bottom:641.053333pt;}
.y16f{bottom:643.293333pt;}
.y83{bottom:648.093333pt;}
.y104{bottom:648.573333pt;}
.y17{bottom:650.173333pt;}
.y13a{bottom:651.293333pt;}
.yae{bottom:652.093333pt;}
.y44{bottom:655.613333pt;}
.y1a8{bottom:656.893333pt;}
.y103{bottom:663.133333pt;}
.y82{bottom:663.453333pt;}
.y16{bottom:663.933333pt;}
.y139{bottom:665.853333pt;}
.yad{bottom:666.653333pt;}
.y16e{bottom:666.813333pt;}
.y1a7{bottom:668.893333pt;}
.y43{bottom:670.173333pt;}
.y102{bottom:677.693333pt;}
.y15{bottom:677.853333pt;}
.y81{bottom:678.813333pt;}
.y138{bottom:680.413333pt;}
.y1a6{bottom:680.893333pt;}
.yac{bottom:681.213333pt;}
.y16d{bottom:681.373333pt;}
.y42{bottom:684.893333pt;}
.y14{bottom:691.613333pt;}
.y101{bottom:692.253333pt;}
.y1a5{bottom:692.893333pt;}
.y80{bottom:694.013333pt;}
.y137{bottom:694.973333pt;}
.yab{bottom:695.773333pt;}
.yd9{bottom:698.653333pt;}
.y41{bottom:699.453333pt;}
.y16c{bottom:704.093333pt;}
.y13{bottom:705.373333pt;}
.y100{bottom:706.813333pt;}
.y1a4{bottom:708.093333pt;}
.y7f{bottom:709.373333pt;}
.yd8{bottom:713.213333pt;}
.y40{bottom:714.013333pt;}
.yaa{bottom:714.493333pt;}
.y136{bottom:718.493333pt;}
.y16b{bottom:718.653333pt;}
.y12{bottom:719.133333pt;}
.y1a3{bottom:720.093333pt;}
.yff{bottom:721.373333pt;}
.y7e{bottom:724.733333pt;}
.yd7{bottom:727.773333pt;}
.y3f{bottom:728.573333pt;}
.y1a2{bottom:732.093333pt;}
.y11{bottom:733.053333pt;}
.y16a{bottom:733.213333pt;}
.yfe{bottom:735.933333pt;}
.ya9{bottom:737.693333pt;}
.y7d{bottom:740.093333pt;}
.yd6{bottom:742.333333pt;}
.y3e{bottom:743.133333pt;}
.y1a1{bottom:744.093333pt;}
.y10{bottom:746.813333pt;}
.y169{bottom:747.773333pt;}
.yfd{bottom:750.493333pt;}
.ya8{bottom:752.253333pt;}
.y7c{bottom:755.493333pt;}
.y1a0{bottom:756.133333pt;}
.y135{bottom:756.613333pt;}
.yd5{bottom:756.933333pt;}
.y3d{bottom:757.733333pt;}
.yf{bottom:760.613333pt;}
.y168{bottom:762.373333pt;}
.ya7{bottom:766.853333pt;}
.y7b{bottom:770.693333pt;}
.y134{bottom:771.173333pt;}
.yd4{bottom:771.493333pt;}
.y3c{bottom:772.293333pt;}
.yfc{bottom:773.093333pt;}
.ye{bottom:774.373333pt;}
.ya6{bottom:781.413333pt;}
.y19f{bottom:783.493333pt;}
.y167{bottom:784.933333pt;}
.y133{bottom:785.733333pt;}
.y7a{bottom:786.053333pt;}
.y3b{bottom:786.853333pt;}
.yd{bottom:788.293333pt;}
.y19e{bottom:795.493333pt;}
.ya5{bottom:795.973333pt;}
.yfb{bottom:796.613333pt;}
.y166{bottom:799.493333pt;}
.y3a{bottom:801.413333pt;}
.yc{bottom:802.053333pt;}
.y132{bottom:804.453333pt;}
.yd3{bottom:804.773333pt;}
.y19d{bottom:807.493333pt;}
.ya4{bottom:810.533333pt;}
.yfa{bottom:811.173333pt;}
.y165{bottom:814.053333pt;}
.y79{bottom:816.773333pt;}
.y19c{bottom:822.853333pt;}
.yf9{bottom:825.733333pt;}
.y131{bottom:827.653333pt;}
.yd2{bottom:828.133333pt;}
.y164{bottom:828.613333pt;}
.y78{bottom:832.133333pt;}
.ya3{bottom:833.253333pt;}
.yb{bottom:833.893333pt;}
.y19b{bottom:834.853333pt;}
.yf8{bottom:840.293333pt;}
.y130{bottom:842.213333pt;}
.y163{bottom:843.173333pt;}
.yd1{bottom:843.493333pt;}
.y19a{bottom:846.853333pt;}
.y77{bottom:847.493333pt;}
.yf7{bottom:854.853333pt;}
.ya2{bottom:855.973333pt;}
.y12f{bottom:856.773333pt;}
.y162{bottom:857.733333pt;}
.yd0{bottom:858.693333pt;}
.y199{bottom:862.213333pt;}
.y76{bottom:862.693333pt;}
.yf6{bottom:869.413333pt;}
.ya1{bottom:870.533333pt;}
.y12e{bottom:871.333333pt;}
.y161{bottom:872.293333pt;}
.ycf{bottom:874.053333pt;}
.y198{bottom:874.213333pt;}
.y75{bottom:878.053333pt;}
.yf5{bottom:883.973333pt;}
.ya0{bottom:885.093333pt;}
.y12d{bottom:885.893333pt;}
.y197{bottom:886.213333pt;}
.y160{bottom:886.853333pt;}
.y5{bottom:888.453333pt;}
.yce{bottom:889.413333pt;}
.y74{bottom:893.413333pt;}
.y196{bottom:898.213333pt;}
.yf4{bottom:898.533333pt;}
.y9f{bottom:899.653333pt;}
.y12c{bottom:900.453333pt;}
.y15f{bottom:901.413333pt;}
.ycd{bottom:904.773333pt;}
.y73{bottom:908.773333pt;}
.yf3{bottom:913.093333pt;}
.y195{bottom:913.573333pt;}
.y9e{bottom:914.213333pt;}
.y12b{bottom:915.013333pt;}
.ycc{bottom:920.133333pt;}
.y15e{bottom:923.973333pt;}
.y72{bottom:924.133333pt;}
.y194{bottom:925.573333pt;}
.yf2{bottom:927.653333pt;}
.y9d{bottom:928.773333pt;}
.y12a{bottom:929.573333pt;}
.ycb{bottom:935.493333pt;}
.y193{bottom:937.573333pt;}
.y15d{bottom:938.533333pt;}
.y71{bottom:939.493333pt;}
.yf1{bottom:942.213333pt;}
.y9c{bottom:943.333333pt;}
.y129{bottom:944.133333pt;}
.y192{bottom:949.573333pt;}
.yca{bottom:950.693333pt;}
.y15c{bottom:953.093333pt;}
.y70{bottom:954.693333pt;}
.yf0{bottom:956.773333pt;}
.y128{bottom:958.693333pt;}
.y191{bottom:961.573333pt;}
.y9b{bottom:962.053333pt;}
.yc9{bottom:966.053333pt;}
.y15b{bottom:967.653333pt;}
.y6f{bottom:970.053333pt;}
.y190{bottom:973.413333pt;}
.y127{bottom:977.413333pt;}
.yef{bottom:979.333333pt;}
.yc8{bottom:981.413333pt;}
.y15a{bottom:982.213333pt;}
.y4{bottom:983.013333pt;}
.y6e{bottom:985.413333pt;}
.y18f{bottom:991.493333pt;}
.yc7{bottom:996.773333pt;}
.y6d{bottom:1000.773333pt;}
.yee{bottom:1002.853333pt;}
.y159{bottom:1011.360000pt;}
.yc6{bottom:1012.160000pt;}
.y6c{bottom:1016.160000pt;}
.yed{bottom:1017.440000pt;}
.y3{bottom:1019.840000pt;}
.yc5{bottom:1031.360000pt;}
.y6b{bottom:1031.520000pt;}
.yec{bottom:1032.000000pt;}
.y68{bottom:1046.720000pt;}
.y2{bottom:1056.640000pt;}
.y67{bottom:1062.080000pt;}
.he{height:31.008437pt;}
.hc{height:38.413438pt;}
.h2{height:42.084375pt;}
.hd{height:44.073883pt;}
.h7{height:47.085938pt;}
.h6{height:47.109375pt;}
.h9{height:48.375000pt;}
.h8{height:52.134375pt;}
.hb{height:52.990313pt;}
.ha{height:54.598989pt;}
.h5{height:68.960000pt;}
.h3{height:92.562500pt;}
.h4{height:125.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:337.026667pt;}
.w4{width:337.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.519988pt;}
.xe{left:60.479988pt;}
.xd{left:78.559988pt;}
.x10{left:79.679988pt;}
.x1c{left:84.511988pt;}
.x3{left:85.791988pt;}
.x2{left:96.831988pt;}
.x8{left:100.026667pt;}
.x6{left:107.386667pt;}
.x1d{left:108.511988pt;}
.x7{left:112.986667pt;}
.xb{left:114.746667pt;}
.xc{left:121.466667pt;}
.x9{left:123.386667pt;}
.x5{left:143.226667pt;}
.x17{left:164.506655pt;}
.xf{left:170.906655pt;}
.x20{left:188.346655pt;}
.x4{left:222.106655pt;}
.x18{left:353.666655pt;}
.x1b{left:390.306655pt;}
.x16{left:393.506655pt;}
.xa{left:396.546667pt;}
.x12{left:408.866655pt;}
.x11{left:428.066655pt;}
.x13{left:432.866655pt;}
.x1e{left:434.306655pt;}
.x14{left:456.893322pt;}
.x1f{left:464.573322pt;}
.x19{left:469.533322pt;}
.x15{left:501.213322pt;}
.x1a{left:710.693322pt;}
}




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