
    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_74a2dff6b0f4831a47125238.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ec67b69d08cd8d861e691587.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_d03784378b13d36694b94a29.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_efad89e1e4a11d206c5e5f63.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_487c16178951e63a093cc938.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3ea4a6abf0687a65f118e650.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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;}
.ls4{letter-spacing:-0.624000px;}
.ls6{letter-spacing:-0.516000px;}
.lsa{letter-spacing:-0.468000px;}
.ls15{letter-spacing:-0.312000px;}
.ls8{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.lsd{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.312000px;}
.ls10{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.468000px;}
.ls14{letter-spacing:0.492000px;}
.ls9{letter-spacing:0.516000px;}
.ls7{letter-spacing:0.804000px;}
.lse{letter-spacing:1.500000px;}
.ls19{letter-spacing:1.524000px;}
.ls5{letter-spacing:1.812000px;}
.ls2{letter-spacing:6.312000px;}
.lsc{letter-spacing:9.312000px;}
.lsb{letter-spacing:15.312000px;}
.ls11{letter-spacing:25.812000px;}
.ls17{letter-spacing:33.984000px;}
.ls12{letter-spacing:81.312000px;}
.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;}
}
.ws0{word-spacing:-30.000000px;}
.ws10{word-spacing:-26.376000px;}
.wsf{word-spacing:-24.312000px;}
.ws5{word-spacing:-24.000000px;}
.wse{word-spacing:-23.532000px;}
.ws4{word-spacing:-23.376000px;}
.ws7{word-spacing:-19.152000px;}
.ws9{word-spacing:-18.516000px;}
.wsb{word-spacing:-18.468000px;}
.wsc{word-spacing:-18.432000px;}
.ws1{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.976000px;}
.wsd{word-spacing:-17.532000px;}
.ws6{word-spacing:-17.484000px;}
.ws8{word-spacing:-14.820000px;}
.wsa{word-spacing:-12.000000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-15.210000px;}
._2{margin-left:-2.136000px;}
._0{margin-left:-1.092000px;}
._1{width:1.044000px;}
._3{width:2.088000px;}
._5{width:3.978000px;}
._10{width:34.164000px;}
._11{width:35.328000px;}
._13{width:48.252000px;}
._15{width:82.116000px;}
._14{width:89.460000px;}
._a{width:92.244000px;}
._12{width:104.220000px;}
._d{width:113.496000px;}
._9{width:119.196000px;}
._7{width:132.348000px;}
._e{width:148.404000px;}
._c{width:164.388000px;}
._b{width:184.332000px;}
._8{width:194.388000px;}
._f{width:196.356000px;}
._6{width:198.150000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(20,20,18);}
.fc4{color:rgb(149,79,114);}
.fc2{color:rgb(60,64,67);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(30,27,18);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs3{font-size:120.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:111.787500px;}
.y159{bottom:112.162500px;}
.y1c{bottom:114.412500px;}
.y9d{bottom:115.912500px;}
.y95{bottom:118.537500px;}
.y199{bottom:120.037500px;}
.y91{bottom:122.662500px;}
.y175{bottom:126.412500px;}
.yd9{bottom:129.037500px;}
.y46{bottom:131.287500px;}
.y39{bottom:133.912500px;}
.y18b{bottom:136.537500px;}
.y107{bottom:136.912500px;}
.y66{bottom:138.037500px;}
.yf1{bottom:139.162500px;}
.yb2{bottom:139.537500px;}
.y198{bottom:140.662500px;}
.y7b{bottom:142.912500px;}
.y1b{bottom:145.537500px;}
.y9c{bottom:147.037500px;}
.y94{bottom:149.662500px;}
.y174{bottom:150.780000px;}
.y1b5{bottom:151.920000px;}
.y90{bottom:153.795000px;}
.yd8{bottom:159.795000px;}
.y197{bottom:161.280000px;}
.y45{bottom:162.420000px;}
.y38{bottom:164.655000px;}
.y106{bottom:167.655000px;}
.y65{bottom:169.170000px;}
.yf0{bottom:170.295000px;}
.yb1{bottom:170.670000px;}
.y10f{bottom:171.405000px;}
.y1b4{bottom:172.920000px;}
.y7a{bottom:174.045000px;}
.y1a{bottom:176.700000px;}
.y9b{bottom:178.200000px;}
.y196{bottom:181.950000px;}
.y8f{bottom:184.950000px;}
.yd7{bottom:190.950000px;}
.y64{bottom:192.825000px;}
.y44{bottom:193.575000px;}
.y93{bottom:194.325000px;}
.y37{bottom:195.825000px;}
.y105{bottom:198.825000px;}
.yef{bottom:201.075000px;}
.yb0{bottom:201.450000px;}
.y10e{bottom:202.200000px;}
.y130{bottom:202.575000px;}
.y195{bottom:202.950000px;}
.y79{bottom:205.200000px;}
.y19{bottom:207.450000px;}
.y9a{bottom:209.325000px;}
.y120{bottom:210.075000px;}
.y1b3{bottom:214.200000px;}
.y8e{bottom:216.075000px;}
.y63{bottom:216.825000px;}
.yd6{bottom:222.075000px;}
.y194{bottom:223.575000px;}
.y43{bottom:224.700000px;}
.y36{bottom:226.950000px;}
.y18a{bottom:229.575000px;}
.y104{bottom:229.950000px;}
.yee{bottom:232.200000px;}
.yaf{bottom:232.575000px;}
.y10d{bottom:233.325000px;}
.y12f{bottom:233.700000px;}
.y1b2{bottom:234.825000px;}
.y78{bottom:236.325000px;}
.y18{bottom:238.575000px;}
.y62{bottom:240.450000px;}
.y11f{bottom:240.825000px;}
.y193{bottom:244.200000px;}
.y8d{bottom:247.200000px;}
.yd5{bottom:253.200000px;}
.y42{bottom:255.450000px;}
.y35{bottom:258.075000px;}
.y189{bottom:260.700000px;}
.y103{bottom:261.075000px;}
.yed{bottom:263.325000px;}
.yae{bottom:263.700000px;}
.y61{bottom:264.450000px;}
.y192{bottom:264.825000px;}
.y158{bottom:267.450000px;}
.y17{bottom:269.700000px;}
.y99{bottom:271.200000px;}
.y11e{bottom:271.950000px;}
.y1b1{bottom:276.450000px;}
.y171{bottom:276.825000px;}
.y144{bottom:277.575000px;}
.y8c{bottom:277.950000px;}
.y77{bottom:280.950000px;}
.yd4{bottom:283.950000px;}
.y191{bottom:285.450000px;}
.y41{bottom:286.575000px;}
.y60{bottom:288.075000px;}
.y34{bottom:289.200000px;}
.y188{bottom:291.825000px;}
.y102{bottom:292.200000px;}
.yec{bottom:294.495000px;}
.yad{bottom:294.870000px;}
.y10c{bottom:295.620000px;}
.y1b0{bottom:297.105000px;}
.y157{bottom:298.245000px;}
.y16{bottom:300.870000px;}
.y98{bottom:302.370000px;}
.y11d{bottom:303.105000px;}
.y190{bottom:306.480000px;}
.y170{bottom:307.995000px;}
.y143{bottom:308.745000px;}
.y5f{bottom:312.120000px;}
.yd3{bottom:315.120000px;}
.yf2{bottom:316.245000px;}
.y40{bottom:317.745000px;}
.y33{bottom:319.980000px;}
.y8b{bottom:322.995000px;}
.yeb{bottom:325.620000px;}
.yac{bottom:325.995000px;}
.y12e{bottom:326.745000px;}
.y18f{bottom:327.120000px;}
.y156{bottom:329.370000px;}
.y15{bottom:331.995000px;}
.y97{bottom:333.495000px;}
.y11c{bottom:334.245000px;}
.y5e{bottom:335.745000px;}
.y1af{bottom:338.370000px;}
.y16f{bottom:339.120000px;}
.y142{bottom:339.495000px;}
.y10b{bottom:340.245000px;}
.y76{bottom:344.745000px;}
.yd2{bottom:346.245000px;}
.y18e{bottom:347.745000px;}
.y3f{bottom:348.870000px;}
.y32{bottom:351.120000px;}
.y101{bottom:354.120000px;}
.yea{bottom:356.370000px;}
.yab{bottom:356.745000px;}
.y12d{bottom:357.870000px;}
.y1ae{bottom:358.995000px;}
.y155{bottom:360.495000px;}
.y14{bottom:362.745000px;}
.yc8{bottom:364.620000px;}
.y11b{bottom:364.995000px;}
.y5d{bottom:366.870000px;}
.y18d{bottom:368.370000px;}
.y16e{bottom:370.245000px;}
.y141{bottom:370.620000px;}
.y75{bottom:375.870000px;}
.yd1{bottom:377.370000px;}
.y96{bottom:378.120000px;}
.y3e{bottom:379.995000px;}
.y31{bottom:382.245000px;}
.y187{bottom:384.870000px;}
.y100{bottom:385.245000px;}
.y8a{bottom:386.370000px;}
.ye9{bottom:387.495000px;}
.yaa{bottom:387.870000px;}
.y12c{bottom:388.995000px;}
.y154{bottom:391.620000px;}
.y13{bottom:393.870000px;}
.yc7{bottom:395.745000px;}
.y10a{bottom:396.870000px;}
.y5c{bottom:397.995000px;}
.y18c{bottom:400.620000px;}
.y16d{bottom:401.370000px;}
.y140{bottom:401.745000px;}
.y74{bottom:406.620000px;}
.yd0{bottom:408.495000px;}
.y11a{bottom:409.995000px;}
.y3d{bottom:410.745000px;}
.y30{bottom:413.370000px;}
.y186{bottom:416.025000px;}
.yff{bottom:416.400000px;}
.y89{bottom:417.525000px;}
.ye8{bottom:418.650000px;}
.y12b{bottom:419.775000px;}
.y109{bottom:420.525000px;}
.y1ad{bottom:421.275000px;}
.y153{bottom:422.775000px;}
.y12{bottom:425.025000px;}
.yc6{bottom:426.525000px;}
.y5b{bottom:429.150000px;}
.y16c{bottom:432.150000px;}
.y13f{bottom:432.900000px;}
.ya9{bottom:437.025000px;}
.y73{bottom:437.775000px;}
.ycf{bottom:439.275000px;}
.y3c{bottom:441.900000px;}
.y50{bottom:444.525000px;}
.y185{bottom:447.150000px;}
.yfe{bottom:447.525000px;}
.y88{bottom:448.650000px;}
.ye7{bottom:449.775000px;}
.y128{bottom:450.900000px;}
.y152{bottom:453.525000px;}
.y11{bottom:456.150000px;}
.yc5{bottom:457.650000px;}
.y5a{bottom:460.275000px;}
.y1ac{bottom:462.525000px;}
.y2f{bottom:462.900000px;}
.y16b{bottom:463.275000px;}
.y13e{bottom:463.650000px;}
.ya8{bottom:468.150000px;}
.y72{bottom:468.900000px;}
.yce{bottom:470.400000px;}
.y119{bottom:471.525000px;}
.y3b{bottom:473.025000px;}
.y4f{bottom:475.275000px;}
.yfd{bottom:478.275000px;}
.y87{bottom:479.775000px;}
.ye6{bottom:480.900000px;}
.y127{bottom:482.025000px;}
.y1ab{bottom:483.525000px;}
.y151{bottom:484.650000px;}
.y10{bottom:487.275000px;}
.yc4{bottom:488.775000px;}
.y108{bottom:494.025000px;}
.y16a{bottom:494.400000px;}
.y13d{bottom:494.775000px;}
.y118{bottom:495.525000px;}
.ya7{bottom:499.275000px;}
.y71{bottom:500.025000px;}
.ycd{bottom:501.525000px;}
.y3a{bottom:504.150000px;}
.y59{bottom:504.900000px;}
.y4e{bottom:506.400000px;}
.yfc{bottom:509.400000px;}
.y86{bottom:510.900000px;}
.ye5{bottom:511.650000px;}
.y126{bottom:512.775000px;}
.y12a{bottom:513.150000px;}
.y150{bottom:515.775000px;}
.yf{bottom:518.025000px;}
.yc3{bottom:519.900000px;}
.y1aa{bottom:524.775000px;}
.y169{bottom:525.525000px;}
.y13c{bottom:525.900000px;}
.ya6{bottom:530.025000px;}
.y70{bottom:531.150000px;}
.ycc{bottom:532.650000px;}
.y2e{bottom:535.320000px;}
.y4d{bottom:537.570000px;}
.y184{bottom:540.195000px;}
.yfb{bottom:540.570000px;}
.y85{bottom:541.695000px;}
.ye4{bottom:542.820000px;}
.y125{bottom:543.945000px;}
.y129{bottom:544.320000px;}
.y1a9{bottom:545.445000px;}
.y14f{bottom:546.945000px;}
.ye{bottom:549.195000px;}
.yc2{bottom:551.070000px;}
.y168{bottom:556.695000px;}
.y13b{bottom:557.070000px;}
.ya5{bottom:561.195000px;}
.y6f{bottom:561.945000px;}
.ycb{bottom:563.820000px;}
.y2d{bottom:566.070000px;}
.y4c{bottom:568.695000px;}
.y183{bottom:571.320000px;}
.yfa{bottom:571.695000px;}
.y84{bottom:572.820000px;}
.ye3{bottom:573.945000px;}
.y124{bottom:575.070000px;}
.y14e{bottom:578.070000px;}
.yd{bottom:580.320000px;}
.yc1{bottom:581.820000px;}
.y1a8{bottom:587.070000px;}
.y167{bottom:587.445000px;}
.y13a{bottom:588.195000px;}
.ya4{bottom:592.320000px;}
.yca{bottom:592.695000px;}
.y6e{bottom:593.070000px;}
.y2c{bottom:597.195000px;}
.y4b{bottom:599.445000px;}
.yf9{bottom:602.445000px;}
.y83{bottom:603.945000px;}
.ye2{bottom:605.070000px;}
.y123{bottom:606.195000px;}
.y1a7{bottom:607.695000px;}
.y14d{bottom:608.820000px;}
.yc{bottom:611.445000px;}
.yc0{bottom:612.945000px;}
.yc9{bottom:616.695000px;}
.y166{bottom:618.570000px;}
.y139{bottom:618.945000px;}
.ya3{bottom:623.445000px;}
.y6d{bottom:624.195000px;}
.y2b{bottom:628.320000px;}
.y4a{bottom:630.570000px;}
.yf8{bottom:633.570000px;}
.y82{bottom:635.070000px;}
.ye1{bottom:636.195000px;}
.y122{bottom:637.320000px;}
.y14c{bottom:639.945000px;}
.yb{bottom:642.195000px;}
.ybf{bottom:644.070000px;}
.y1a6{bottom:648.945000px;}
.y165{bottom:649.695000px;}
.y138{bottom:650.070000px;}
.y6c{bottom:655.350000px;}
.y2a{bottom:659.475000px;}
.y49{bottom:661.725000px;}
.y182{bottom:664.350000px;}
.yf7{bottom:664.725000px;}
.y81{bottom:666.225000px;}
.ye0{bottom:666.975000px;}
.y121{bottom:668.100000px;}
.y1a5{bottom:669.600000px;}
.y14b{bottom:671.100000px;}
.ya2{bottom:672.225000px;}
.ya{bottom:673.350000px;}
.ybe{bottom:675.225000px;}
.y164{bottom:680.850000px;}
.y137{bottom:681.225000px;}
.y6b{bottom:686.475000px;}
.y29{bottom:690.225000px;}
.y48{bottom:692.850000px;}
.y181{bottom:695.475000px;}
.yf6{bottom:695.850000px;}
.y80{bottom:696.975000px;}
.ydf{bottom:698.100000px;}
.y14a{bottom:702.225000px;}
.ya1{bottom:703.350000px;}
.y9{bottom:704.475000px;}
.ybd{bottom:705.975000px;}
.y117{bottom:706.350000px;}
.y1a4{bottom:711.225000px;}
.y163{bottom:711.600000px;}
.y136{bottom:712.350000px;}
.y6a{bottom:717.225000px;}
.y28{bottom:721.350000px;}
.y58{bottom:723.975000px;}
.y180{bottom:726.600000px;}
.yf5{bottom:726.975000px;}
.yde{bottom:729.225000px;}
.y1a3{bottom:731.850000px;}
.y149{bottom:732.975000px;}
.y7f{bottom:734.475000px;}
.y8{bottom:735.600000px;}
.y116{bottom:737.475000px;}
.y47{bottom:742.350000px;}
.y162{bottom:742.725000px;}
.y135{bottom:743.475000px;}
.y69{bottom:748.350000px;}
.ybc{bottom:750.600000px;}
.y7e{bottom:751.725000px;}
.y27{bottom:752.475000px;}
.y57{bottom:754.725000px;}
.yf4{bottom:757.725000px;}
.ydd{bottom:760.350000px;}
.y148{bottom:764.100000px;}
.ya0{bottom:765.600000px;}
.y7{bottom:766.725000px;}
.y115{bottom:768.600000px;}
.y1a2{bottom:773.130000px;}
.y161{bottom:773.895000px;}
.y134{bottom:774.255000px;}
.y7d{bottom:776.130000px;}
.ybb{bottom:781.755000px;}
.y26{bottom:783.630000px;}
.y56{bottom:785.880000px;}
.y17f{bottom:788.880000px;}
.ydc{bottom:791.520000px;}
.y68{bottom:793.380000px;}
.y1a1{bottom:793.755000px;}
.y147{bottom:795.255000px;}
.y9f{bottom:796.755000px;}
.y114{bottom:799.380000px;}
.yf3{bottom:802.755000px;}
.y133{bottom:803.130000px;}
.y92{bottom:804.255000px;}
.y160{bottom:805.005000px;}
.yba{bottom:812.880000px;}
.y25{bottom:814.755000px;}
.y6{bottom:816.255000px;}
.y55{bottom:817.005000px;}
.y17e{bottom:819.630000px;}
.ydb{bottom:822.255000px;}
.y146{bottom:826.380000px;}
.y9e{bottom:827.505000px;}
.y132{bottom:829.005000px;}
.y113{bottom:830.505000px;}
.y1a0{bottom:835.380000px;}
.y15f{bottom:836.130000px;}
.yb9{bottom:844.005000px;}
.y24{bottom:845.505000px;}
.y54{bottom:848.130000px;}
.y67{bottom:848.505000px;}
.yda{bottom:849.630000px;}
.y17d{bottom:850.755000px;}
.y131{bottom:853.380000px;}
.y19f{bottom:856.005000px;}
.y145{bottom:857.505000px;}
.y112{bottom:861.630000px;}
.y15e{bottom:866.880000px;}
.yb8{bottom:874.755000px;}
.y23{bottom:876.630000px;}
.y53{bottom:879.255000px;}
.y17c{bottom:881.880000px;}
.y5{bottom:888.255000px;}
.y111{bottom:890.505000px;}
.y19e{bottom:897.300000px;}
.y15d{bottom:898.050000px;}
.yb7{bottom:905.925000px;}
.y22{bottom:907.800000px;}
.y52{bottom:910.050000px;}
.y17b{bottom:913.050000px;}
.y110{bottom:914.925000px;}
.y19d{bottom:918.300000px;}
.y4{bottom:919.425000px;}
.y15c{bottom:929.175000px;}
.y21{bottom:938.925000px;}
.y17a{bottom:944.175000px;}
.yb6{bottom:950.550000px;}
.y51{bottom:959.550000px;}
.y15b{bottom:960.300000px;}
.y20{bottom:970.050000px;}
.y3{bottom:971.925000px;}
.y179{bottom:974.925000px;}
.y19c{bottom:980.175000px;}
.yb5{bottom:981.675000px;}
.y15a{bottom:991.425000px;}
.y173{bottom:1000.050000px;}
.y1f{bottom:1000.800000px;}
.y178{bottom:1006.050000px;}
.yb4{bottom:1012.830000px;}
.y19b{bottom:1021.830000px;}
.y1e{bottom:1031.955000px;}
.y177{bottom:1037.205000px;}
.y19a{bottom:1042.455000px;}
.y2{bottom:1043.580000px;}
.y172{bottom:1051.830000px;}
.yb3{bottom:1057.455000px;}
.y1d{bottom:1063.080000px;}
.y176{bottom:1066.080000px;}
.y1{bottom:1118.580000px;}
.hb{height:52.998047px;}
.h9{height:58.886719px;}
.he{height:59.343750px;}
.h6{height:64.546875px;}
.h1{height:68.835938px;}
.h7{height:70.628906px;}
.h3{height:70.664062px;}
.h4{height:72.562500px;}
.hd{height:75.093750px;}
.hc{height:94.218750px;}
.h8{height:100.125000px;}
.ha{height:117.773438px;}
.h5{height:125.156250px;}
.h2{height:153.105469px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.037486px;}
.x3{left:133.537486px;}
.x6{left:135.037486px;}
.xd{left:141.449986px;}
.x11{left:148.574986px;}
.x8{left:160.574986px;}
.xa{left:162.074986px;}
.x10{left:189.074986px;}
.x1c{left:195.824986px;}
.x9{left:216.074986px;}
.x2{left:218.699986px;}
.x1b{left:220.574986px;}
.x17{left:223.574986px;}
.x14{left:230.369986px;}
.xe{left:243.869986px;}
.x1d{left:268.994986px;}
.x7{left:270.119986px;}
.x16{left:291.119986px;}
.x4{left:308.369986px;}
.x13{left:319.994986px;}
.x1e{left:324.149986px;}
.x15{left:334.649986px;}
.x18{left:350.399986px;}
.x1f{left:356.024986px;}
.x19{left:375.899986px;}
.x1a{left:379.274986px;}
.x21{left:429.944986px;}
.xf{left:459.194986px;}
.x20{left:524.099986px;}
.xc{left:707.924986px;}
.xb{left:791.954986px;}
.x1{left:801.329986px;}
.x12{left:810.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.554667pt;}
.ls6{letter-spacing:-0.458667pt;}
.lsa{letter-spacing:-0.416000pt;}
.ls15{letter-spacing:-0.277333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.277333pt;}
.ls10{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.416000pt;}
.ls14{letter-spacing:0.437333pt;}
.ls9{letter-spacing:0.458667pt;}
.ls7{letter-spacing:0.714667pt;}
.lse{letter-spacing:1.333333pt;}
.ls19{letter-spacing:1.354667pt;}
.ls5{letter-spacing:1.610667pt;}
.ls2{letter-spacing:5.610667pt;}
.lsc{letter-spacing:8.277333pt;}
.lsb{letter-spacing:13.610667pt;}
.ls11{letter-spacing:22.944000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls12{letter-spacing:72.277333pt;}
.ws0{word-spacing:-26.666667pt;}
.ws10{word-spacing:-23.445333pt;}
.wsf{word-spacing:-21.610667pt;}
.ws5{word-spacing:-21.333333pt;}
.wse{word-spacing:-20.917333pt;}
.ws4{word-spacing:-20.778667pt;}
.ws7{word-spacing:-17.024000pt;}
.ws9{word-spacing:-16.458667pt;}
.wsb{word-spacing:-16.416000pt;}
.wsc{word-spacing:-16.384000pt;}
.ws1{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.978667pt;}
.wsd{word-spacing:-15.584000pt;}
.ws6{word-spacing:-15.541333pt;}
.ws8{word-spacing:-13.173333pt;}
.wsa{word-spacing:-10.666667pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-13.520000pt;}
._2{margin-left:-1.898667pt;}
._0{margin-left:-0.970667pt;}
._1{width:0.928000pt;}
._3{width:1.856000pt;}
._5{width:3.536000pt;}
._10{width:30.368000pt;}
._11{width:31.402667pt;}
._13{width:42.890667pt;}
._15{width:72.992000pt;}
._14{width:79.520000pt;}
._a{width:81.994667pt;}
._12{width:92.640000pt;}
._d{width:100.885333pt;}
._9{width:105.952000pt;}
._7{width:117.642667pt;}
._e{width:131.914667pt;}
._c{width:146.122667pt;}
._b{width:163.850667pt;}
._8{width:172.789333pt;}
._f{width:174.538667pt;}
._6{width:176.133333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs3{font-size:106.666667pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:99.366667pt;}
.y159{bottom:99.700000pt;}
.y1c{bottom:101.700000pt;}
.y9d{bottom:103.033333pt;}
.y95{bottom:105.366667pt;}
.y199{bottom:106.700000pt;}
.y91{bottom:109.033333pt;}
.y175{bottom:112.366667pt;}
.yd9{bottom:114.700000pt;}
.y46{bottom:116.700000pt;}
.y39{bottom:119.033333pt;}
.y18b{bottom:121.366667pt;}
.y107{bottom:121.700000pt;}
.y66{bottom:122.700000pt;}
.yf1{bottom:123.700000pt;}
.yb2{bottom:124.033333pt;}
.y198{bottom:125.033333pt;}
.y7b{bottom:127.033333pt;}
.y1b{bottom:129.366667pt;}
.y9c{bottom:130.700000pt;}
.y94{bottom:133.033333pt;}
.y174{bottom:134.026667pt;}
.y1b5{bottom:135.040000pt;}
.y90{bottom:136.706667pt;}
.yd8{bottom:142.040000pt;}
.y197{bottom:143.360000pt;}
.y45{bottom:144.373333pt;}
.y38{bottom:146.360000pt;}
.y106{bottom:149.026667pt;}
.y65{bottom:150.373333pt;}
.yf0{bottom:151.373333pt;}
.yb1{bottom:151.706667pt;}
.y10f{bottom:152.360000pt;}
.y1b4{bottom:153.706667pt;}
.y7a{bottom:154.706667pt;}
.y1a{bottom:157.066667pt;}
.y9b{bottom:158.400000pt;}
.y196{bottom:161.733333pt;}
.y8f{bottom:164.400000pt;}
.yd7{bottom:169.733333pt;}
.y64{bottom:171.400000pt;}
.y44{bottom:172.066667pt;}
.y93{bottom:172.733333pt;}
.y37{bottom:174.066667pt;}
.y105{bottom:176.733333pt;}
.yef{bottom:178.733333pt;}
.yb0{bottom:179.066667pt;}
.y10e{bottom:179.733333pt;}
.y130{bottom:180.066667pt;}
.y195{bottom:180.400000pt;}
.y79{bottom:182.400000pt;}
.y19{bottom:184.400000pt;}
.y9a{bottom:186.066667pt;}
.y120{bottom:186.733333pt;}
.y1b3{bottom:190.400000pt;}
.y8e{bottom:192.066667pt;}
.y63{bottom:192.733333pt;}
.yd6{bottom:197.400000pt;}
.y194{bottom:198.733333pt;}
.y43{bottom:199.733333pt;}
.y36{bottom:201.733333pt;}
.y18a{bottom:204.066667pt;}
.y104{bottom:204.400000pt;}
.yee{bottom:206.400000pt;}
.yaf{bottom:206.733333pt;}
.y10d{bottom:207.400000pt;}
.y12f{bottom:207.733333pt;}
.y1b2{bottom:208.733333pt;}
.y78{bottom:210.066667pt;}
.y18{bottom:212.066667pt;}
.y62{bottom:213.733333pt;}
.y11f{bottom:214.066667pt;}
.y193{bottom:217.066667pt;}
.y8d{bottom:219.733333pt;}
.yd5{bottom:225.066667pt;}
.y42{bottom:227.066667pt;}
.y35{bottom:229.400000pt;}
.y189{bottom:231.733333pt;}
.y103{bottom:232.066667pt;}
.yed{bottom:234.066667pt;}
.yae{bottom:234.400000pt;}
.y61{bottom:235.066667pt;}
.y192{bottom:235.400000pt;}
.y158{bottom:237.733333pt;}
.y17{bottom:239.733333pt;}
.y99{bottom:241.066667pt;}
.y11e{bottom:241.733333pt;}
.y1b1{bottom:245.733333pt;}
.y171{bottom:246.066667pt;}
.y144{bottom:246.733333pt;}
.y8c{bottom:247.066667pt;}
.y77{bottom:249.733333pt;}
.yd4{bottom:252.400000pt;}
.y191{bottom:253.733333pt;}
.y41{bottom:254.733333pt;}
.y60{bottom:256.066667pt;}
.y34{bottom:257.066667pt;}
.y188{bottom:259.400000pt;}
.y102{bottom:259.733333pt;}
.yec{bottom:261.773333pt;}
.yad{bottom:262.106667pt;}
.y10c{bottom:262.773333pt;}
.y1b0{bottom:264.093333pt;}
.y157{bottom:265.106667pt;}
.y16{bottom:267.440000pt;}
.y98{bottom:268.773333pt;}
.y11d{bottom:269.426667pt;}
.y190{bottom:272.426667pt;}
.y170{bottom:273.773333pt;}
.y143{bottom:274.440000pt;}
.y5f{bottom:277.440000pt;}
.yd3{bottom:280.106667pt;}
.yf2{bottom:281.106667pt;}
.y40{bottom:282.440000pt;}
.y33{bottom:284.426667pt;}
.y8b{bottom:287.106667pt;}
.yeb{bottom:289.440000pt;}
.yac{bottom:289.773333pt;}
.y12e{bottom:290.440000pt;}
.y18f{bottom:290.773333pt;}
.y156{bottom:292.773333pt;}
.y15{bottom:295.106667pt;}
.y97{bottom:296.440000pt;}
.y11c{bottom:297.106667pt;}
.y5e{bottom:298.440000pt;}
.y1af{bottom:300.773333pt;}
.y16f{bottom:301.440000pt;}
.y142{bottom:301.773333pt;}
.y10b{bottom:302.440000pt;}
.y76{bottom:306.440000pt;}
.yd2{bottom:307.773333pt;}
.y18e{bottom:309.106667pt;}
.y3f{bottom:310.106667pt;}
.y32{bottom:312.106667pt;}
.y101{bottom:314.773333pt;}
.yea{bottom:316.773333pt;}
.yab{bottom:317.106667pt;}
.y12d{bottom:318.106667pt;}
.y1ae{bottom:319.106667pt;}
.y155{bottom:320.440000pt;}
.y14{bottom:322.440000pt;}
.yc8{bottom:324.106667pt;}
.y11b{bottom:324.440000pt;}
.y5d{bottom:326.106667pt;}
.y18d{bottom:327.440000pt;}
.y16e{bottom:329.106667pt;}
.y141{bottom:329.440000pt;}
.y75{bottom:334.106667pt;}
.yd1{bottom:335.440000pt;}
.y96{bottom:336.106667pt;}
.y3e{bottom:337.773333pt;}
.y31{bottom:339.773333pt;}
.y187{bottom:342.106667pt;}
.y100{bottom:342.440000pt;}
.y8a{bottom:343.440000pt;}
.ye9{bottom:344.440000pt;}
.yaa{bottom:344.773333pt;}
.y12c{bottom:345.773333pt;}
.y154{bottom:348.106667pt;}
.y13{bottom:350.106667pt;}
.yc7{bottom:351.773333pt;}
.y10a{bottom:352.773333pt;}
.y5c{bottom:353.773333pt;}
.y18c{bottom:356.106667pt;}
.y16d{bottom:356.773333pt;}
.y140{bottom:357.106667pt;}
.y74{bottom:361.440000pt;}
.yd0{bottom:363.106667pt;}
.y11a{bottom:364.440000pt;}
.y3d{bottom:365.106667pt;}
.y30{bottom:367.440000pt;}
.y186{bottom:369.800000pt;}
.yff{bottom:370.133333pt;}
.y89{bottom:371.133333pt;}
.ye8{bottom:372.133333pt;}
.y12b{bottom:373.133333pt;}
.y109{bottom:373.800000pt;}
.y1ad{bottom:374.466667pt;}
.y153{bottom:375.800000pt;}
.y12{bottom:377.800000pt;}
.yc6{bottom:379.133333pt;}
.y5b{bottom:381.466667pt;}
.y16c{bottom:384.133333pt;}
.y13f{bottom:384.800000pt;}
.ya9{bottom:388.466667pt;}
.y73{bottom:389.133333pt;}
.ycf{bottom:390.466667pt;}
.y3c{bottom:392.800000pt;}
.y50{bottom:395.133333pt;}
.y185{bottom:397.466667pt;}
.yfe{bottom:397.800000pt;}
.y88{bottom:398.800000pt;}
.ye7{bottom:399.800000pt;}
.y128{bottom:400.800000pt;}
.y152{bottom:403.133333pt;}
.y11{bottom:405.466667pt;}
.yc5{bottom:406.800000pt;}
.y5a{bottom:409.133333pt;}
.y1ac{bottom:411.133333pt;}
.y2f{bottom:411.466667pt;}
.y16b{bottom:411.800000pt;}
.y13e{bottom:412.133333pt;}
.ya8{bottom:416.133333pt;}
.y72{bottom:416.800000pt;}
.yce{bottom:418.133333pt;}
.y119{bottom:419.133333pt;}
.y3b{bottom:420.466667pt;}
.y4f{bottom:422.466667pt;}
.yfd{bottom:425.133333pt;}
.y87{bottom:426.466667pt;}
.ye6{bottom:427.466667pt;}
.y127{bottom:428.466667pt;}
.y1ab{bottom:429.800000pt;}
.y151{bottom:430.800000pt;}
.y10{bottom:433.133333pt;}
.yc4{bottom:434.466667pt;}
.y108{bottom:439.133333pt;}
.y16a{bottom:439.466667pt;}
.y13d{bottom:439.800000pt;}
.y118{bottom:440.466667pt;}
.ya7{bottom:443.800000pt;}
.y71{bottom:444.466667pt;}
.ycd{bottom:445.800000pt;}
.y3a{bottom:448.133333pt;}
.y59{bottom:448.800000pt;}
.y4e{bottom:450.133333pt;}
.yfc{bottom:452.800000pt;}
.y86{bottom:454.133333pt;}
.ye5{bottom:454.800000pt;}
.y126{bottom:455.800000pt;}
.y12a{bottom:456.133333pt;}
.y150{bottom:458.466667pt;}
.yf{bottom:460.466667pt;}
.yc3{bottom:462.133333pt;}
.y1aa{bottom:466.466667pt;}
.y169{bottom:467.133333pt;}
.y13c{bottom:467.466667pt;}
.ya6{bottom:471.133333pt;}
.y70{bottom:472.133333pt;}
.ycc{bottom:473.466667pt;}
.y2e{bottom:475.840000pt;}
.y4d{bottom:477.840000pt;}
.y184{bottom:480.173333pt;}
.yfb{bottom:480.506667pt;}
.y85{bottom:481.506667pt;}
.ye4{bottom:482.506667pt;}
.y125{bottom:483.506667pt;}
.y129{bottom:483.840000pt;}
.y1a9{bottom:484.840000pt;}
.y14f{bottom:486.173333pt;}
.ye{bottom:488.173333pt;}
.yc2{bottom:489.840000pt;}
.y168{bottom:494.840000pt;}
.y13b{bottom:495.173333pt;}
.ya5{bottom:498.840000pt;}
.y6f{bottom:499.506667pt;}
.ycb{bottom:501.173333pt;}
.y2d{bottom:503.173333pt;}
.y4c{bottom:505.506667pt;}
.y183{bottom:507.840000pt;}
.yfa{bottom:508.173333pt;}
.y84{bottom:509.173333pt;}
.ye3{bottom:510.173333pt;}
.y124{bottom:511.173333pt;}
.y14e{bottom:513.840000pt;}
.yd{bottom:515.840000pt;}
.yc1{bottom:517.173333pt;}
.y1a8{bottom:521.840000pt;}
.y167{bottom:522.173333pt;}
.y13a{bottom:522.840000pt;}
.ya4{bottom:526.506667pt;}
.yca{bottom:526.840000pt;}
.y6e{bottom:527.173333pt;}
.y2c{bottom:530.840000pt;}
.y4b{bottom:532.840000pt;}
.yf9{bottom:535.506667pt;}
.y83{bottom:536.840000pt;}
.ye2{bottom:537.840000pt;}
.y123{bottom:538.840000pt;}
.y1a7{bottom:540.173333pt;}
.y14d{bottom:541.173333pt;}
.yc{bottom:543.506667pt;}
.yc0{bottom:544.840000pt;}
.yc9{bottom:548.173333pt;}
.y166{bottom:549.840000pt;}
.y139{bottom:550.173333pt;}
.ya3{bottom:554.173333pt;}
.y6d{bottom:554.840000pt;}
.y2b{bottom:558.506667pt;}
.y4a{bottom:560.506667pt;}
.yf8{bottom:563.173333pt;}
.y82{bottom:564.506667pt;}
.ye1{bottom:565.506667pt;}
.y122{bottom:566.506667pt;}
.y14c{bottom:568.840000pt;}
.yb{bottom:570.840000pt;}
.ybf{bottom:572.506667pt;}
.y1a6{bottom:576.840000pt;}
.y165{bottom:577.506667pt;}
.y138{bottom:577.840000pt;}
.y6c{bottom:582.533333pt;}
.y2a{bottom:586.200000pt;}
.y49{bottom:588.200000pt;}
.y182{bottom:590.533333pt;}
.yf7{bottom:590.866667pt;}
.y81{bottom:592.200000pt;}
.ye0{bottom:592.866667pt;}
.y121{bottom:593.866667pt;}
.y1a5{bottom:595.200000pt;}
.y14b{bottom:596.533333pt;}
.ya2{bottom:597.533333pt;}
.ya{bottom:598.533333pt;}
.ybe{bottom:600.200000pt;}
.y164{bottom:605.200000pt;}
.y137{bottom:605.533333pt;}
.y6b{bottom:610.200000pt;}
.y29{bottom:613.533333pt;}
.y48{bottom:615.866667pt;}
.y181{bottom:618.200000pt;}
.yf6{bottom:618.533333pt;}
.y80{bottom:619.533333pt;}
.ydf{bottom:620.533333pt;}
.y14a{bottom:624.200000pt;}
.ya1{bottom:625.200000pt;}
.y9{bottom:626.200000pt;}
.ybd{bottom:627.533333pt;}
.y117{bottom:627.866667pt;}
.y1a4{bottom:632.200000pt;}
.y163{bottom:632.533333pt;}
.y136{bottom:633.200000pt;}
.y6a{bottom:637.533333pt;}
.y28{bottom:641.200000pt;}
.y58{bottom:643.533333pt;}
.y180{bottom:645.866667pt;}
.yf5{bottom:646.200000pt;}
.yde{bottom:648.200000pt;}
.y1a3{bottom:650.533333pt;}
.y149{bottom:651.533333pt;}
.y7f{bottom:652.866667pt;}
.y8{bottom:653.866667pt;}
.y116{bottom:655.533333pt;}
.y47{bottom:659.866667pt;}
.y162{bottom:660.200000pt;}
.y135{bottom:660.866667pt;}
.y69{bottom:665.200000pt;}
.ybc{bottom:667.200000pt;}
.y7e{bottom:668.200000pt;}
.y27{bottom:668.866667pt;}
.y57{bottom:670.866667pt;}
.yf4{bottom:673.533333pt;}
.ydd{bottom:675.866667pt;}
.y148{bottom:679.200000pt;}
.ya0{bottom:680.533333pt;}
.y7{bottom:681.533333pt;}
.y115{bottom:683.200000pt;}
.y1a2{bottom:687.226667pt;}
.y161{bottom:687.906667pt;}
.y134{bottom:688.226667pt;}
.y7d{bottom:689.893333pt;}
.ybb{bottom:694.893333pt;}
.y26{bottom:696.560000pt;}
.y56{bottom:698.560000pt;}
.y17f{bottom:701.226667pt;}
.ydc{bottom:703.573333pt;}
.y68{bottom:705.226667pt;}
.y1a1{bottom:705.560000pt;}
.y147{bottom:706.893333pt;}
.y9f{bottom:708.226667pt;}
.y114{bottom:710.560000pt;}
.yf3{bottom:713.560000pt;}
.y133{bottom:713.893333pt;}
.y92{bottom:714.893333pt;}
.y160{bottom:715.560000pt;}
.yba{bottom:722.560000pt;}
.y25{bottom:724.226667pt;}
.y6{bottom:725.560000pt;}
.y55{bottom:726.226667pt;}
.y17e{bottom:728.560000pt;}
.ydb{bottom:730.893333pt;}
.y146{bottom:734.560000pt;}
.y9e{bottom:735.560000pt;}
.y132{bottom:736.893333pt;}
.y113{bottom:738.226667pt;}
.y1a0{bottom:742.560000pt;}
.y15f{bottom:743.226667pt;}
.yb9{bottom:750.226667pt;}
.y24{bottom:751.560000pt;}
.y54{bottom:753.893333pt;}
.y67{bottom:754.226667pt;}
.yda{bottom:755.226667pt;}
.y17d{bottom:756.226667pt;}
.y131{bottom:758.560000pt;}
.y19f{bottom:760.893333pt;}
.y145{bottom:762.226667pt;}
.y112{bottom:765.893333pt;}
.y15e{bottom:770.560000pt;}
.yb8{bottom:777.560000pt;}
.y23{bottom:779.226667pt;}
.y53{bottom:781.560000pt;}
.y17c{bottom:783.893333pt;}
.y5{bottom:789.560000pt;}
.y111{bottom:791.560000pt;}
.y19e{bottom:797.600000pt;}
.y15d{bottom:798.266667pt;}
.yb7{bottom:805.266667pt;}
.y22{bottom:806.933333pt;}
.y52{bottom:808.933333pt;}
.y17b{bottom:811.600000pt;}
.y110{bottom:813.266667pt;}
.y19d{bottom:816.266667pt;}
.y4{bottom:817.266667pt;}
.y15c{bottom:825.933333pt;}
.y21{bottom:834.600000pt;}
.y17a{bottom:839.266667pt;}
.yb6{bottom:844.933333pt;}
.y51{bottom:852.933333pt;}
.y15b{bottom:853.600000pt;}
.y20{bottom:862.266667pt;}
.y3{bottom:863.933333pt;}
.y179{bottom:866.600000pt;}
.y19c{bottom:871.266667pt;}
.yb5{bottom:872.600000pt;}
.y15a{bottom:881.266667pt;}
.y173{bottom:888.933333pt;}
.y1f{bottom:889.600000pt;}
.y178{bottom:894.266667pt;}
.yb4{bottom:900.293333pt;}
.y19b{bottom:908.293333pt;}
.y1e{bottom:917.293333pt;}
.y177{bottom:921.960000pt;}
.y19a{bottom:926.626667pt;}
.y2{bottom:927.626667pt;}
.y172{bottom:934.960000pt;}
.yb3{bottom:939.960000pt;}
.y1d{bottom:944.960000pt;}
.y176{bottom:947.626667pt;}
.y1{bottom:994.293333pt;}
.hb{height:47.109375pt;}
.h9{height:52.343750pt;}
.he{height:52.750000pt;}
.h6{height:57.375000pt;}
.h1{height:61.187500pt;}
.h7{height:62.781250pt;}
.h3{height:62.812500pt;}
.h4{height:64.500000pt;}
.hd{height:66.750000pt;}
.hc{height:83.750000pt;}
.h8{height:89.000000pt;}
.ha{height:104.687500pt;}
.h5{height:111.250000pt;}
.h2{height:136.093750pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.033321pt;}
.x3{left:118.699988pt;}
.x6{left:120.033321pt;}
.xd{left:125.733321pt;}
.x11{left:132.066655pt;}
.x8{left:142.733321pt;}
.xa{left:144.066655pt;}
.x10{left:168.066655pt;}
.x1c{left:174.066655pt;}
.x9{left:192.066655pt;}
.x2{left:194.399988pt;}
.x1b{left:196.066655pt;}
.x17{left:198.733321pt;}
.x14{left:204.773321pt;}
.xe{left:216.773321pt;}
.x1d{left:239.106655pt;}
.x7{left:240.106655pt;}
.x16{left:258.773321pt;}
.x4{left:274.106655pt;}
.x13{left:284.439988pt;}
.x1e{left:288.133321pt;}
.x15{left:297.466655pt;}
.x18{left:311.466655pt;}
.x1f{left:316.466655pt;}
.x19{left:334.133321pt;}
.x1a{left:337.133321pt;}
.x21{left:382.173321pt;}
.xf{left:408.173321pt;}
.x20{left:465.866655pt;}
.xc{left:629.266655pt;}
.xb{left:703.959988pt;}
.x1{left:712.293321pt;}
.x12{left:720.306655pt;}
}




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