
    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_8ddb75e6c6254489b736966d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.100586;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_ba460b5e93d9da73625b3d3c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_171276a58dfcc5e09d29c18e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.v1{vertical-align:-72.720014px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v3{vertical-align:27.359973px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.044776px;}
.ls0{letter-spacing:0.053947px;}
.ls4{letter-spacing:0.054401px;}
.ls6{letter-spacing:0.099800px;}
.ls5{letter-spacing:0.159352px;}
.ls1{letter-spacing:608.417649px;}
.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;}
}
.ws4{word-spacing:-19.005023px;}
.ws2{word-spacing:-17.982338px;}
.ws5{word-spacing:-16.543688px;}
.ws3{word-spacing:-14.206050px;}
.ws0{word-spacing:-10.429729px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-4.857592px;}
._0{margin-left:-3.450445px;}
._1{margin-left:-2.356401px;}
._2{margin-left:-1.199240px;}
._3{width:1.008416px;}
._4{width:2.273004px;}
._f{width:3.376412px;}
._a{width:4.424217px;}
._6{width:6.006382px;}
._5{width:7.355338px;}
._9{width:8.593310px;}
._b{width:9.757903px;}
._d{width:11.005191px;}
._8{width:12.225333px;}
._7{width:13.739630px;}
._c{width:15.296507px;}
._14{width:16.502727px;}
._19{width:17.795862px;}
._10{width:19.132926px;}
._11{width:20.949985px;}
._13{width:22.406273px;}
._15{width:24.510769px;}
._12{width:25.966776px;}
._16{width:31.901229px;}
._18{width:40.219227px;}
._17{width:41.234624px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.718915px;}
.fs5{font-size:56.824200px;}
.fs4{font-size:59.701050px;}
.fs2{font-size:66.174750px;}
.fs7{font-size:69.938217px;}
.fs0{font-size:71.929350px;}
.fs6{font-size:76.020091px;}
.fs1{font-size:84.157196px;}
.y0{bottom:0.000000px;}
.y3{bottom:30.960022px;}
.y2{bottom:51.120002px;}
.y22{bottom:80.639992px;}
.y5c{bottom:82.259994px;}
.ya4{bottom:83.879998px;}
.y152{bottom:86.580025px;}
.yf5{bottom:86.759994px;}
.y175{bottom:88.019989px;}
.yfd{bottom:88.379998px;}
.ye2{bottom:91.259994px;}
.y12f{bottom:92.879998px;}
.y6f{bottom:94.320030px;}
.y21{bottom:97.019989px;}
.ybe{bottom:97.379998px;}
.yf2{bottom:98.820030px;}
.y7e{bottom:100.259994px;}
.y5b{bottom:101.879998px;}
.ya3{bottom:103.320030px;}
.y151{bottom:104.580025px;}
.y174{bottom:106.019989px;}
.y79{bottom:106.379998px;}
.yfc{bottom:107.820030px;}
.ye1{bottom:110.879998px;}
.y12c{bottom:112.320030px;}
.y20{bottom:113.580025px;}
.y6e{bottom:113.759994px;}
.y3b{bottom:115.019989px;}
.ybd{bottom:116.820030px;}
.yf1{bottom:118.259994px;}
.y7d{bottom:119.879998px;}
.y5a{bottom:121.320030px;}
.y150{bottom:122.580025px;}
.y11a{bottom:122.759994px;}
.y78{bottom:125.820030px;}
.ya2{bottom:127.259994px;}
.y173{bottom:128.519989px;}
.y103{bottom:130.139992px;}
.ye0{bottom:130.320030px;}
.y132{bottom:130.500000px;}
.y1f{bottom:131.580025px;}
.y12b{bottom:131.759994px;}
.y6d{bottom:133.379998px;}
.ybc{bottom:136.259994px;}
.yf0{bottom:137.879998px;}
.y7c{bottom:139.320030px;}
.y14f{bottom:140.580025px;}
.y59{bottom:140.759994px;}
.y119{bottom:142.379998px;}
.ycd{bottom:145.259994px;}
.y102{bottom:146.519989px;}
.ya1{bottom:146.879998px;}
.yfb{bottom:147.059967px;}
.y77{bottom:149.759994px;}
.y12a{bottom:151.379998px;}
.y6c{bottom:152.820030px;}
.y3a{bottom:154.259994px;}
.ybb{bottom:155.879998px;}
.yef{bottom:157.320030px;}
.y14e{bottom:158.580025px;}
.y7b{bottom:158.759994px;}
.y58{bottom:160.379998px;}
.y118{bottom:161.820030px;}
.y101{bottom:163.080025px;}
.y172{bottom:164.519989px;}
.ycc{bottom:164.879998px;}
.y18b{bottom:166.139992px;}
.ya0{bottom:166.320030px;}
.ydf{bottom:169.379998px;}
.yfa{bottom:170.820030px;}
.y6b{bottom:172.259994px;}
.y39{bottom:173.879998px;}
.yba{bottom:175.320030px;}
.y14d{bottom:176.580025px;}
.yee{bottom:176.759994px;}
.y7a{bottom:178.379998px;}
.y100{bottom:179.639992px;}
.y57{bottom:179.820030px;}
.y117{bottom:181.259994px;}
.y171{bottom:182.519989px;}
.ycb{bottom:184.320030px;}
.y9f{bottom:185.759994px;}
.y18a{bottom:188.639992px;}
.yde{bottom:188.820030px;}
.yf9{bottom:190.259994px;}
.y6a{bottom:191.879998px;}
.y38{bottom:193.320030px;}
.y14c{bottom:194.580025px;}
.yb9{bottom:194.759994px;}
.yed{bottom:196.379998px;}
.yff{bottom:197.460022px;}
.y1e{bottom:197.820030px;}
.y91{bottom:199.259994px;}
.y170{bottom:200.519989px;}
.y116{bottom:200.879998px;}
.y56{bottom:203.759994px;}
.y9e{bottom:205.379998px;}
.y126{bottom:205.559967px;}
.y189{bottom:206.639992px;}
.ydd{bottom:208.259994px;}
.yf8{bottom:209.879998px;}
.y69{bottom:211.320030px;}
.y14b{bottom:212.580025px;}
.y37{bottom:212.759994px;}
.yb8{bottom:214.379998px;}
.yec{bottom:216.000000px;}
.y1d{bottom:217.259994px;}
.y16f{bottom:218.519989px;}
.y90{bottom:218.879998px;}
.y115{bottom:220.500000px;}
.y55{bottom:223.379998px;}
.y12e{bottom:223.559967px;}
.y9d{bottom:224.820030px;}
.ydc{bottom:227.879998px;}
.y188{bottom:229.139992px;}
.y125{bottom:229.320030px;}
.y14a{bottom:230.580025px;}
.y68{bottom:230.759994px;}
.y36{bottom:232.379998px;}
.yb7{bottom:233.820030px;}
.y16e{bottom:236.519989px;}
.y1c{bottom:236.879998px;}
.y8f{bottom:238.320030px;}
.yeb{bottom:239.759994px;}
.y54{bottom:242.820030px;}
.y9c{bottom:244.259994px;}
.ydb{bottom:247.320030px;}
.y149{bottom:248.580025px;}
.y131{bottom:248.759994px;}
.y67{bottom:250.379998px;}
.y187{bottom:251.639992px;}
.y76{bottom:251.820030px;}
.y35{bottom:252.000000px;}
.yb6{bottom:253.259994px;}
.y1b{bottom:256.320030px;}
.y8e{bottom:257.759994px;}
.y16d{bottom:259.019989px;}
.yea{bottom:259.379998px;}
.y53{bottom:262.259994px;}
.y9b{bottom:263.879998px;}
.y148{bottom:266.580025px;}
.yda{bottom:266.759994px;}
.y130{bottom:268.559967px;}
.y186{bottom:269.639992px;}
.y66{bottom:269.820030px;}
.y75{bottom:271.259994px;}
.yb5{bottom:272.879998px;}
.y1a{bottom:275.759994px;}
.y8d{bottom:277.379998px;}
.ye9{bottom:278.820030px;}
.y16c{bottom:281.519989px;}
.y52{bottom:281.879998px;}
.y114{bottom:283.320030px;}
.y9a{bottom:283.500000px;}
.y147{bottom:284.580025px;}
.yd9{bottom:286.379998px;}
.y65{bottom:289.259994px;}
.y74{bottom:290.879998px;}
.y185{bottom:292.139992px;}
.yb4{bottom:292.319995px;}
.y124{bottom:292.500000px;}
.y19{bottom:295.379998px;}
.y8c{bottom:296.819995px;}
.ye8{bottom:298.259994px;}
.y51{bottom:301.319995px;}
.y146{bottom:302.579990px;}
.y113{bottom:302.759994px;}
.y16b{bottom:304.019989px;}
.yd8{bottom:305.819995px;}
.y99{bottom:307.259994px;}
.y64{bottom:308.879998px;}
.y73{bottom:310.319995px;}
.yb3{bottom:311.759994px;}
.y184{bottom:314.639992px;}
.y18{bottom:314.819995px;}
.y8b{bottom:316.259994px;}
.y145{bottom:320.579990px;}
.y50{bottom:320.759994px;}
.y16a{bottom:322.019989px;}
.y112{bottom:322.379998px;}
.yd7{bottom:325.259994px;}
.y98{bottom:326.879998px;}
.y63{bottom:328.319995px;}
.y72{bottom:329.759994px;}
.yb2{bottom:331.379998px;}
.y183{bottom:332.639992px;}
.y17{bottom:334.259994px;}
.y8a{bottom:335.879998px;}
.y144{bottom:338.579990px;}
.y169{bottom:340.019989px;}
.y4f{bottom:340.379998px;}
.y111{bottom:341.819995px;}
.yca{bottom:344.879998px;}
.y97{bottom:346.319995px;}
.y62{bottom:347.759994px;}
.y71{bottom:349.379998px;}
.y182{bottom:350.639992px;}
.yb1{bottom:350.819995px;}
.y16{bottom:353.879998px;}
.y89{bottom:355.319995px;}
.y143{bottom:356.579990px;}
.y168{bottom:358.019989px;}
.y4e{bottom:359.819995px;}
.y110{bottom:361.259994px;}
.yc9{bottom:364.319995px;}
.y61{bottom:367.379998px;}
.y181{bottom:368.639992px;}
.y129{bottom:368.819995px;}
.y70{bottom:369.000000px;}
.y96{bottom:370.259994px;}
.y15{bottom:373.319995px;}
.y142{bottom:374.579990px;}
.y88{bottom:374.759994px;}
.y4d{bottom:379.259994px;}
.y167{bottom:380.519989px;}
.y10f{bottom:380.879998px;}
.yc8{bottom:383.759994px;}
.y180{bottom:386.639992px;}
.y60{bottom:386.819995px;}
.y128{bottom:388.259994px;}
.y95{bottom:389.879998px;}
.y11e{bottom:390.060001px;}
.y141{bottom:392.579990px;}
.y14{bottom:392.759994px;}
.y87{bottom:394.379998px;}
.y4c{bottom:398.879998px;}
.y10e{bottom:400.319995px;}
.yc7{bottom:403.379998px;}
.y11d{bottom:403.560001px;}
.y17f{bottom:404.639992px;}
.y5f{bottom:406.259994px;}
.y127{bottom:407.879998px;}
.y94{bottom:409.319995px;}
.y140{bottom:410.579990px;}
.y13{bottom:412.379998px;}
.y86{bottom:413.819995px;}
.y4b{bottom:418.319995px;}
.yd1{bottom:418.500000px;}
.y10d{bottom:419.759994px;}
.y166{bottom:422.639992px;}
.yc6{bottom:422.819995px;}
.y11c{bottom:427.319995px;}
.y13f{bottom:428.579990px;}
.yb0{bottom:428.759994px;}
.y93{bottom:428.939999px;}
.y12{bottom:431.639992px;}
.y34{bottom:431.819995px;}
.y85{bottom:433.259994px;}
.y5e{bottom:434.879998px;}
.y4a{bottom:437.759994px;}
.y10c{bottom:439.379998px;}
.y165{bottom:440.639992px;}
.yc5{bottom:442.259994px;}
.y13e{bottom:446.579990px;}
.y11b{bottom:446.759994px;}
.yaf{bottom:448.379998px;}
.y33{bottom:451.259994px;}
.y84{bottom:452.879998px;}
.y11{bottom:454.139992px;}
.y49{bottom:457.379998px;}
.y164{bottom:458.639992px;}
.y10b{bottom:458.819995px;}
.yd0{bottom:461.879998px;}
.yc4{bottom:462.060001px;}
.y13d{bottom:464.579990px;}
.yf7{bottom:466.379998px;}
.yae{bottom:467.819995px;}
.y32{bottom:470.879998px;}
.y10{bottom:472.139992px;}
.y5d{bottom:472.319995px;}
.y163{bottom:476.639992px;}
.y122{bottom:476.819995px;}
.y10a{bottom:478.259994px;}
.y17e{bottom:481.139992px;}
.y48{bottom:481.319995px;}
.yf4{bottom:481.500000px;}
.y13c{bottom:482.579990px;}
.yc3{bottom:485.819995px;}
.yad{bottom:487.259994px;}
.yf{bottom:490.139992px;}
.y31{bottom:490.319995px;}
.y83{bottom:491.759994px;}
.y162{bottom:494.639992px;}
.y121{bottom:496.259994px;}
.y17d{bottom:499.139992px;}
.y13b{bottom:500.579990px;}
.y47{bottom:500.759994px;}
.yc2{bottom:505.259994px;}
.yac{bottom:506.879998px;}
.ye{bottom:508.139992px;}
.y30{bottom:509.759994px;}
.y82{bottom:511.379998px;}
.y161{bottom:512.639992px;}
.y120{bottom:515.879998px;}
.y17c{bottom:517.139992px;}
.y13a{bottom:518.579990px;}
.y46{bottom:520.379998px;}
.yc1{bottom:524.879998px;}
.yd{bottom:526.139992px;}
.yab{bottom:526.319995px;}
.y2f{bottom:529.379998px;}
.y160{bottom:530.639992px;}
.y81{bottom:530.819995px;}
.y17b{bottom:535.139992px;}
.y109{bottom:535.319995px;}
.y139{bottom:536.579990px;}
.y45{bottom:539.819995px;}
.yc{bottom:544.139992px;}
.yc0{bottom:544.319996px;}
.yaa{bottom:545.759994px;}
.y15f{bottom:548.639992px;}
.y2e{bottom:548.819996px;}
.y80{bottom:550.259994px;}
.y17a{bottom:553.139992px;}
.y138{bottom:554.579990px;}
.y108{bottom:554.759994px;}
.y11f{bottom:554.939999px;}
.y44{bottom:559.259994px;}
.yb{bottom:562.139992px;}
.yf3{bottom:563.759994px;}
.yf6{bottom:563.939999px;}
.y15e{bottom:566.639992px;}
.y2d{bottom:568.259994px;}
.y7f{bottom:569.879998px;}
.y179{bottom:571.139992px;}
.y137{bottom:572.579990px;}
.ya9{bottom:574.379998px;}
.y43{bottom:578.879998px;}
.ya{bottom:580.139992px;}
.ycf{bottom:583.379998px;}
.y15d{bottom:584.639992px;}
.y2c{bottom:587.879998px;}
.y178{bottom:589.139992px;}
.y92{bottom:589.319996px;}
.y136{bottom:590.580008px;}
.y107{bottom:593.819996px;}
.y9{bottom:598.139992px;}
.y42{bottom:598.319996px;}
.yfe{bottom:598.500000px;}
.y15c{bottom:602.639992px;}
.ya8{bottom:602.819996px;}
.y2b{bottom:607.319996px;}
.ye7{bottom:608.759994px;}
.y177{bottom:611.639992px;}
.y106{bottom:613.259994px;}
.y135{bottom:617.580008px;}
.y41{bottom:617.759994px;}
.y15b{bottom:620.639992px;}
.ya7{bottom:622.259994px;}
.y2a{bottom:626.759994px;}
.ye6{bottom:628.379998px;}
.y105{bottom:632.879998px;}
.y123{bottom:633.060001px;}
.y176{bottom:634.139992px;}
.y134{bottom:635.580008px;}
.y40{bottom:637.379998px;}
.y15a{bottom:638.639992px;}
.y8{bottom:638.819996px;}
.ya6{bottom:641.879998px;}
.y29{bottom:646.379998px;}
.ye5{bottom:647.819996px;}
.y104{bottom:652.500000px;}
.y159{bottom:656.639992px;}
.yd6{bottom:656.819996px;}
.y7{bottom:658.259994px;}
.y3f{bottom:661.319996px;}
.yce{bottom:661.500000px;}
.y133{bottom:662.580008px;}
.y28{bottom:665.819996px;}
.ye4{bottom:667.259994px;}
.y158{bottom:674.639992px;}
.yd5{bottom:676.259994px;}
.y6{bottom:678.060001px;}
.y3e{bottom:680.759994px;}
.y27{bottom:685.259994px;}
.ye3{bottom:686.879998px;}
.y157{bottom:692.639992px;}
.yd4{bottom:695.879998px;}
.y3d{bottom:700.379998px;}
.y12d{bottom:700.560001px;}
.y26{bottom:704.879998px;}
.y5{bottom:706.319996px;}
.y156{bottom:710.639992px;}
.yd3{bottom:715.319996px;}
.y3c{bottom:719.819996px;}
.ya5{bottom:720.000000px;}
.y25{bottom:724.319996px;}
.y4{bottom:726.120002px;}
.y155{bottom:728.640000px;}
.yd2{bottom:734.760003px;}
.y24{bottom:743.760003px;}
.y154{bottom:746.640000px;}
.y23{bottom:763.379998px;}
.ybf{bottom:763.560001px;}
.y153{bottom:764.640000px;}
.y1{bottom:805.860000px;}
.hc{height:44.816591px;}
.he{height:47.365384px;}
.h4{height:48.713871px;}
.h7{height:49.993799px;}
.h6{height:50.489365px;}
.ha{height:51.484309px;}
.h3{height:55.414891px;}
.hd{height:55.964193px;}
.h2{height:56.995132px;}
.h1{height:60.233806px;}
.h5{height:60.830876px;}
.h8{height:62.295490px;}
.h9{height:62.295594px;}
.hb{height:62.641893px;}
.h0{height:864.000000px;}
.w0{width:540.000000px;}
.x0{left:0.000000px;}
.x13{left:63.899999px;}
.xe{left:85.140000px;}
.x5{left:106.379998px;}
.x4{left:121.319996px;}
.x15{left:134.280001px;}
.x10{left:195.840002px;}
.x6{left:221.759994px;}
.xc{left:246.960005px;}
.xb{left:255.599997px;}
.xa{left:260.460005px;}
.x9{left:261.900003px;}
.x11{left:263.699993px;}
.x12{left:276.479994px;}
.x14{left:279.900003px;}
.x2{left:284.939999px;}
.x1{left:287.099997px;}
.x3{left:297.720017px;}
.xf{left:301.139992px;}
.xd{left:383.040012px;}
.x7{left:385.560001px;}
.x16{left:458.100014px;}
.x8{left:489.060001px;}
@media print{
.v1{vertical-align:-64.640012pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v3{vertical-align:24.319976pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.039801pt;}
.ls0{letter-spacing:0.047953pt;}
.ls4{letter-spacing:0.048356pt;}
.ls6{letter-spacing:0.088711pt;}
.ls5{letter-spacing:0.141646pt;}
.ls1{letter-spacing:540.815688pt;}
.ws4{word-spacing:-16.893353pt;}
.ws2{word-spacing:-15.984300pt;}
.ws5{word-spacing:-14.705500pt;}
.ws3{word-spacing:-12.627600pt;}
.ws0{word-spacing:-9.270870pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-4.317860pt;}
._0{margin-left:-3.067062pt;}
._1{margin-left:-2.094579pt;}
._2{margin-left:-1.065991pt;}
._3{width:0.896369pt;}
._4{width:2.020448pt;}
._f{width:3.001255pt;}
._a{width:3.932637pt;}
._6{width:5.339006pt;}
._5{width:6.538078pt;}
._9{width:7.638497pt;}
._b{width:8.673692pt;}
._d{width:9.782392pt;}
._8{width:10.866963pt;}
._7{width:12.213004pt;}
._c{width:13.596895pt;}
._14{width:14.669091pt;}
._19{width:15.818544pt;}
._10{width:17.007045pt;}
._11{width:18.622209pt;}
._13{width:19.916688pt;}
._15{width:21.787350pt;}
._12{width:23.081579pt;}
._16{width:28.356648pt;}
._18{width:35.750424pt;}
._17{width:36.652999pt;}
.fs3{font-size:37.083480pt;}
.fs5{font-size:50.510400pt;}
.fs4{font-size:53.067600pt;}
.fs2{font-size:58.822000pt;}
.fs7{font-size:62.167304pt;}
.fs0{font-size:63.937200pt;}
.fs6{font-size:67.573414pt;}
.fs1{font-size:74.806396pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:27.520020pt;}
.y2{bottom:45.440002pt;}
.y22{bottom:71.679993pt;}
.y5c{bottom:73.119995pt;}
.ya4{bottom:74.559998pt;}
.y152{bottom:76.960022pt;}
.yf5{bottom:77.119995pt;}
.y175{bottom:78.239990pt;}
.yfd{bottom:78.559998pt;}
.ye2{bottom:81.119995pt;}
.y12f{bottom:82.559998pt;}
.y6f{bottom:83.840027pt;}
.y21{bottom:86.239990pt;}
.ybe{bottom:86.559998pt;}
.yf2{bottom:87.840027pt;}
.y7e{bottom:89.119995pt;}
.y5b{bottom:90.559998pt;}
.ya3{bottom:91.840027pt;}
.y151{bottom:92.960022pt;}
.y174{bottom:94.239990pt;}
.y79{bottom:94.559998pt;}
.yfc{bottom:95.840027pt;}
.ye1{bottom:98.559998pt;}
.y12c{bottom:99.840027pt;}
.y20{bottom:100.960022pt;}
.y6e{bottom:101.119995pt;}
.y3b{bottom:102.239990pt;}
.ybd{bottom:103.840027pt;}
.yf1{bottom:105.119995pt;}
.y7d{bottom:106.559998pt;}
.y5a{bottom:107.840027pt;}
.y150{bottom:108.960022pt;}
.y11a{bottom:109.119995pt;}
.y78{bottom:111.840027pt;}
.ya2{bottom:113.119995pt;}
.y173{bottom:114.239990pt;}
.y103{bottom:115.679993pt;}
.ye0{bottom:115.840027pt;}
.y132{bottom:116.000000pt;}
.y1f{bottom:116.960022pt;}
.y12b{bottom:117.119995pt;}
.y6d{bottom:118.559998pt;}
.ybc{bottom:121.119995pt;}
.yf0{bottom:122.559998pt;}
.y7c{bottom:123.840027pt;}
.y14f{bottom:124.960022pt;}
.y59{bottom:125.119995pt;}
.y119{bottom:126.559998pt;}
.ycd{bottom:129.119995pt;}
.y102{bottom:130.239990pt;}
.ya1{bottom:130.559998pt;}
.yfb{bottom:130.719971pt;}
.y77{bottom:133.119995pt;}
.y12a{bottom:134.559998pt;}
.y6c{bottom:135.840027pt;}
.y3a{bottom:137.119995pt;}
.ybb{bottom:138.559998pt;}
.yef{bottom:139.840027pt;}
.y14e{bottom:140.960022pt;}
.y7b{bottom:141.119995pt;}
.y58{bottom:142.559998pt;}
.y118{bottom:143.840027pt;}
.y101{bottom:144.960022pt;}
.y172{bottom:146.239990pt;}
.ycc{bottom:146.559998pt;}
.y18b{bottom:147.679993pt;}
.ya0{bottom:147.840027pt;}
.ydf{bottom:150.559998pt;}
.yfa{bottom:151.840027pt;}
.y6b{bottom:153.119995pt;}
.y39{bottom:154.559998pt;}
.yba{bottom:155.840027pt;}
.y14d{bottom:156.960022pt;}
.yee{bottom:157.119995pt;}
.y7a{bottom:158.559998pt;}
.y100{bottom:159.679993pt;}
.y57{bottom:159.840027pt;}
.y117{bottom:161.119995pt;}
.y171{bottom:162.239990pt;}
.ycb{bottom:163.840027pt;}
.y9f{bottom:165.119995pt;}
.y18a{bottom:167.679993pt;}
.yde{bottom:167.840027pt;}
.yf9{bottom:169.119995pt;}
.y6a{bottom:170.559998pt;}
.y38{bottom:171.840027pt;}
.y14c{bottom:172.960022pt;}
.yb9{bottom:173.119995pt;}
.yed{bottom:174.559998pt;}
.yff{bottom:175.520020pt;}
.y1e{bottom:175.840027pt;}
.y91{bottom:177.119995pt;}
.y170{bottom:178.239990pt;}
.y116{bottom:178.559998pt;}
.y56{bottom:181.119995pt;}
.y9e{bottom:182.559998pt;}
.y126{bottom:182.719971pt;}
.y189{bottom:183.679993pt;}
.ydd{bottom:185.119995pt;}
.yf8{bottom:186.559998pt;}
.y69{bottom:187.840027pt;}
.y14b{bottom:188.960022pt;}
.y37{bottom:189.119995pt;}
.yb8{bottom:190.559998pt;}
.yec{bottom:192.000000pt;}
.y1d{bottom:193.119995pt;}
.y16f{bottom:194.239990pt;}
.y90{bottom:194.559998pt;}
.y115{bottom:196.000000pt;}
.y55{bottom:198.559998pt;}
.y12e{bottom:198.719971pt;}
.y9d{bottom:199.840027pt;}
.ydc{bottom:202.559998pt;}
.y188{bottom:203.679993pt;}
.y125{bottom:203.840027pt;}
.y14a{bottom:204.960022pt;}
.y68{bottom:205.119995pt;}
.y36{bottom:206.559998pt;}
.yb7{bottom:207.840027pt;}
.y16e{bottom:210.239990pt;}
.y1c{bottom:210.559998pt;}
.y8f{bottom:211.840027pt;}
.yeb{bottom:213.119995pt;}
.y54{bottom:215.840027pt;}
.y9c{bottom:217.119995pt;}
.ydb{bottom:219.840027pt;}
.y149{bottom:220.960022pt;}
.y131{bottom:221.119995pt;}
.y67{bottom:222.559998pt;}
.y187{bottom:223.679993pt;}
.y76{bottom:223.840027pt;}
.y35{bottom:224.000000pt;}
.yb6{bottom:225.119995pt;}
.y1b{bottom:227.840027pt;}
.y8e{bottom:229.119995pt;}
.y16d{bottom:230.239990pt;}
.yea{bottom:230.559998pt;}
.y53{bottom:233.119995pt;}
.y9b{bottom:234.559998pt;}
.y148{bottom:236.960022pt;}
.yda{bottom:237.119995pt;}
.y130{bottom:238.719971pt;}
.y186{bottom:239.679993pt;}
.y66{bottom:239.840027pt;}
.y75{bottom:241.119995pt;}
.yb5{bottom:242.559998pt;}
.y1a{bottom:245.119995pt;}
.y8d{bottom:246.559998pt;}
.ye9{bottom:247.840027pt;}
.y16c{bottom:250.239990pt;}
.y52{bottom:250.559998pt;}
.y114{bottom:251.840027pt;}
.y9a{bottom:252.000000pt;}
.y147{bottom:252.960022pt;}
.yd9{bottom:254.559998pt;}
.y65{bottom:257.119995pt;}
.y74{bottom:258.559998pt;}
.y185{bottom:259.679993pt;}
.yb4{bottom:259.839996pt;}
.y124{bottom:260.000000pt;}
.y19{bottom:262.559998pt;}
.y8c{bottom:263.839996pt;}
.ye8{bottom:265.119995pt;}
.y51{bottom:267.839996pt;}
.y146{bottom:268.959991pt;}
.y113{bottom:269.119995pt;}
.y16b{bottom:270.239990pt;}
.yd8{bottom:271.839996pt;}
.y99{bottom:273.119995pt;}
.y64{bottom:274.559998pt;}
.y73{bottom:275.839996pt;}
.yb3{bottom:277.119995pt;}
.y184{bottom:279.679993pt;}
.y18{bottom:279.839996pt;}
.y8b{bottom:281.119995pt;}
.y145{bottom:284.959991pt;}
.y50{bottom:285.119995pt;}
.y16a{bottom:286.239990pt;}
.y112{bottom:286.559998pt;}
.yd7{bottom:289.119995pt;}
.y98{bottom:290.559998pt;}
.y63{bottom:291.839996pt;}
.y72{bottom:293.119995pt;}
.yb2{bottom:294.559998pt;}
.y183{bottom:295.679993pt;}
.y17{bottom:297.119995pt;}
.y8a{bottom:298.559998pt;}
.y144{bottom:300.959991pt;}
.y169{bottom:302.239990pt;}
.y4f{bottom:302.559998pt;}
.y111{bottom:303.839996pt;}
.yca{bottom:306.559998pt;}
.y97{bottom:307.839996pt;}
.y62{bottom:309.119995pt;}
.y71{bottom:310.559998pt;}
.y182{bottom:311.679993pt;}
.yb1{bottom:311.839996pt;}
.y16{bottom:314.559998pt;}
.y89{bottom:315.839996pt;}
.y143{bottom:316.959991pt;}
.y168{bottom:318.239990pt;}
.y4e{bottom:319.839996pt;}
.y110{bottom:321.119995pt;}
.yc9{bottom:323.839996pt;}
.y61{bottom:326.559998pt;}
.y181{bottom:327.679993pt;}
.y129{bottom:327.839996pt;}
.y70{bottom:328.000000pt;}
.y96{bottom:329.119995pt;}
.y15{bottom:331.839996pt;}
.y142{bottom:332.959991pt;}
.y88{bottom:333.119995pt;}
.y4d{bottom:337.119995pt;}
.y167{bottom:338.239990pt;}
.y10f{bottom:338.559998pt;}
.yc8{bottom:341.119995pt;}
.y180{bottom:343.679993pt;}
.y60{bottom:343.839996pt;}
.y128{bottom:345.119995pt;}
.y95{bottom:346.559998pt;}
.y11e{bottom:346.720001pt;}
.y141{bottom:348.959991pt;}
.y14{bottom:349.119995pt;}
.y87{bottom:350.559998pt;}
.y4c{bottom:354.559998pt;}
.y10e{bottom:355.839996pt;}
.yc7{bottom:358.559998pt;}
.y11d{bottom:358.720001pt;}
.y17f{bottom:359.679993pt;}
.y5f{bottom:361.119995pt;}
.y127{bottom:362.559998pt;}
.y94{bottom:363.839996pt;}
.y140{bottom:364.959991pt;}
.y13{bottom:366.559998pt;}
.y86{bottom:367.839996pt;}
.y4b{bottom:371.839996pt;}
.yd1{bottom:372.000000pt;}
.y10d{bottom:373.119995pt;}
.y166{bottom:375.679993pt;}
.yc6{bottom:375.839996pt;}
.y11c{bottom:379.839996pt;}
.y13f{bottom:380.959991pt;}
.yb0{bottom:381.119995pt;}
.y93{bottom:381.279999pt;}
.y12{bottom:383.679993pt;}
.y34{bottom:383.839996pt;}
.y85{bottom:385.119995pt;}
.y5e{bottom:386.559998pt;}
.y4a{bottom:389.119995pt;}
.y10c{bottom:390.559998pt;}
.y165{bottom:391.679993pt;}
.yc5{bottom:393.119995pt;}
.y13e{bottom:396.959991pt;}
.y11b{bottom:397.119995pt;}
.yaf{bottom:398.559998pt;}
.y33{bottom:401.119995pt;}
.y84{bottom:402.559998pt;}
.y11{bottom:403.679993pt;}
.y49{bottom:406.559998pt;}
.y164{bottom:407.679993pt;}
.y10b{bottom:407.839996pt;}
.yd0{bottom:410.559998pt;}
.yc4{bottom:410.720001pt;}
.y13d{bottom:412.959991pt;}
.yf7{bottom:414.559998pt;}
.yae{bottom:415.839996pt;}
.y32{bottom:418.559998pt;}
.y10{bottom:419.679993pt;}
.y5d{bottom:419.839996pt;}
.y163{bottom:423.679993pt;}
.y122{bottom:423.839996pt;}
.y10a{bottom:425.119995pt;}
.y17e{bottom:427.679993pt;}
.y48{bottom:427.839996pt;}
.yf4{bottom:428.000000pt;}
.y13c{bottom:428.959991pt;}
.yc3{bottom:431.839996pt;}
.yad{bottom:433.119995pt;}
.yf{bottom:435.679993pt;}
.y31{bottom:435.839996pt;}
.y83{bottom:437.119995pt;}
.y162{bottom:439.679993pt;}
.y121{bottom:441.119995pt;}
.y17d{bottom:443.679993pt;}
.y13b{bottom:444.959991pt;}
.y47{bottom:445.119995pt;}
.yc2{bottom:449.119995pt;}
.yac{bottom:450.559998pt;}
.ye{bottom:451.679993pt;}
.y30{bottom:453.119995pt;}
.y82{bottom:454.559998pt;}
.y161{bottom:455.679993pt;}
.y120{bottom:458.559998pt;}
.y17c{bottom:459.679993pt;}
.y13a{bottom:460.959991pt;}
.y46{bottom:462.559998pt;}
.yc1{bottom:466.559998pt;}
.yd{bottom:467.679993pt;}
.yab{bottom:467.839996pt;}
.y2f{bottom:470.559998pt;}
.y160{bottom:471.679993pt;}
.y81{bottom:471.839996pt;}
.y17b{bottom:475.679993pt;}
.y109{bottom:475.839996pt;}
.y139{bottom:476.959991pt;}
.y45{bottom:479.839996pt;}
.yc{bottom:483.679993pt;}
.yc0{bottom:483.839996pt;}
.yaa{bottom:485.119995pt;}
.y15f{bottom:487.679993pt;}
.y2e{bottom:487.839996pt;}
.y80{bottom:489.119995pt;}
.y17a{bottom:491.679993pt;}
.y138{bottom:492.959991pt;}
.y108{bottom:493.119995pt;}
.y11f{bottom:493.279999pt;}
.y44{bottom:497.119995pt;}
.yb{bottom:499.679993pt;}
.yf3{bottom:501.119995pt;}
.yf6{bottom:501.279999pt;}
.y15e{bottom:503.679993pt;}
.y2d{bottom:505.119995pt;}
.y7f{bottom:506.559998pt;}
.y179{bottom:507.679993pt;}
.y137{bottom:508.959991pt;}
.ya9{bottom:510.559998pt;}
.y43{bottom:514.559998pt;}
.ya{bottom:515.679993pt;}
.ycf{bottom:518.559998pt;}
.y15d{bottom:519.679993pt;}
.y2c{bottom:522.559998pt;}
.y178{bottom:523.679993pt;}
.y92{bottom:523.839996pt;}
.y136{bottom:524.960007pt;}
.y107{bottom:527.839996pt;}
.y9{bottom:531.679993pt;}
.y42{bottom:531.839996pt;}
.yfe{bottom:532.000000pt;}
.y15c{bottom:535.679993pt;}
.ya8{bottom:535.839996pt;}
.y2b{bottom:539.839996pt;}
.ye7{bottom:541.119995pt;}
.y177{bottom:543.679993pt;}
.y106{bottom:545.119995pt;}
.y135{bottom:548.960007pt;}
.y41{bottom:549.119995pt;}
.y15b{bottom:551.679993pt;}
.ya7{bottom:553.119995pt;}
.y2a{bottom:557.119995pt;}
.ye6{bottom:558.559998pt;}
.y105{bottom:562.559998pt;}
.y123{bottom:562.720001pt;}
.y176{bottom:563.679993pt;}
.y134{bottom:564.960007pt;}
.y40{bottom:566.559998pt;}
.y15a{bottom:567.679993pt;}
.y8{bottom:567.839996pt;}
.ya6{bottom:570.559998pt;}
.y29{bottom:574.559998pt;}
.ye5{bottom:575.839996pt;}
.y104{bottom:580.000000pt;}
.y159{bottom:583.679993pt;}
.yd6{bottom:583.839996pt;}
.y7{bottom:585.119995pt;}
.y3f{bottom:587.839996pt;}
.yce{bottom:588.000000pt;}
.y133{bottom:588.960007pt;}
.y28{bottom:591.839996pt;}
.ye4{bottom:593.119995pt;}
.y158{bottom:599.679993pt;}
.yd5{bottom:601.119995pt;}
.y6{bottom:602.720001pt;}
.y3e{bottom:605.119995pt;}
.y27{bottom:609.119995pt;}
.ye3{bottom:610.559998pt;}
.y157{bottom:615.679993pt;}
.yd4{bottom:618.559998pt;}
.y3d{bottom:622.559998pt;}
.y12d{bottom:622.720001pt;}
.y26{bottom:626.559998pt;}
.y5{bottom:627.839996pt;}
.y156{bottom:631.679993pt;}
.yd3{bottom:635.839996pt;}
.y3c{bottom:639.839996pt;}
.ya5{bottom:640.000000pt;}
.y25{bottom:643.839996pt;}
.y4{bottom:645.440002pt;}
.y155{bottom:647.680000pt;}
.yd2{bottom:653.120003pt;}
.y24{bottom:661.120003pt;}
.y154{bottom:663.680000pt;}
.y23{bottom:678.559998pt;}
.ybf{bottom:678.720001pt;}
.y153{bottom:679.680000pt;}
.y1{bottom:716.320000pt;}
.hc{height:39.836970pt;}
.he{height:42.102564pt;}
.h4{height:43.301219pt;}
.h7{height:44.438933pt;}
.h6{height:44.879435pt;}
.ha{height:45.763831pt;}
.h3{height:49.257681pt;}
.hd{height:49.745949pt;}
.h2{height:50.662339pt;}
.h1{height:53.541161pt;}
.h5{height:54.071890pt;}
.h8{height:55.373769pt;}
.h9{height:55.373861pt;}
.hb{height:55.681683pt;}
.h0{height:768.000000pt;}
.w0{width:480.000000pt;}
.x0{left:0.000000pt;}
.x13{left:56.799999pt;}
.xe{left:75.680000pt;}
.x5{left:94.559998pt;}
.x4{left:107.839996pt;}
.x15{left:119.360001pt;}
.x10{left:174.080002pt;}
.x6{left:197.119995pt;}
.xc{left:219.520004pt;}
.xb{left:227.199997pt;}
.xa{left:231.520004pt;}
.x9{left:232.800003pt;}
.x11{left:234.399994pt;}
.x12{left:245.759995pt;}
.x14{left:248.800003pt;}
.x2{left:253.279999pt;}
.x1{left:255.199997pt;}
.x3{left:264.640015pt;}
.xf{left:267.679993pt;}
.xd{left:340.480011pt;}
.x7{left:342.720001pt;}
.x16{left:407.200012pt;}
.x8{left:434.720001pt;}
}




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