
    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_3607bcb0db038013d79c4787.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_17c99fe0125c84a7ad2aa560.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_ac01f5789ffef71a15b4e4de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_cbc6032320ec7eb8302854b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.920410;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_985b8de94fbf6e164101777d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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;}
.v1{vertical-align:28.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.504000px;}
.ls0{letter-spacing:78.408000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.268000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-10.500000px;}
.ws4{word-spacing:-0.084000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-1087.944000px;}
._16{margin-left:-36.408000px;}
._9{margin-left:-8.496000px;}
._12{margin-left:-6.984000px;}
._2{margin-left:-5.832000px;}
._1{margin-left:-4.104000px;}
._c{margin-left:-2.736000px;}
._0{margin-left:-1.728000px;}
._3{width:1.080000px;}
._4{width:2.232000px;}
._8{width:3.912000px;}
._5{width:5.880000px;}
._11{width:6.936000px;}
._a{width:7.944000px;}
._d{width:8.952000px;}
._7{width:10.152000px;}
._6{width:11.160000px;}
._e{width:12.456000px;}
._f{width:13.608000px;}
._13{width:14.760000px;}
._18{width:15.768000px;}
._17{width:16.776000px;}
._b{width:19.512000px;}
._10{width:20.520000px;}
._1b{width:21.816000px;}
._1c{width:22.896000px;}
._23{width:24.552000px;}
._22{width:25.560000px;}
._26{width:26.568000px;}
._2d{width:28.224000px;}
._20{width:29.376000px;}
._21{width:30.384000px;}
._1f{width:32.400000px;}
._27{width:34.272000px;}
._19{width:38.232000px;}
._1a{width:39.744000px;}
._1d{width:41.184000px;}
._2e{width:45.168000px;}
._29{width:46.416000px;}
._28{width:47.640000px;}
._2c{width:54.000000px;}
._2b{width:60.840000px;}
._2a{width:64.080000px;}
._1e{width:80.928000px;}
._24{width:97.992000px;}
._25{width:101.304000px;}
._15{width:1051.128000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1f{bottom:88.891500px;}
.y1c3{bottom:116.641500px;}
.y1e{bottom:125.491500px;}
.y1a2{bottom:127.141500px;}
.y1e7{bottom:130.741500px;}
.y16d{bottom:130.891500px;}
.y45{bottom:131.641500px;}
.y69{bottom:131.791500px;}
.y8c{bottom:137.191500px;}
.y1c2{bottom:140.491500px;}
.yab{bottom:143.191500px;}
.y13e{bottom:143.491500px;}
.y10d{bottom:144.091500px;}
.y126{bottom:144.841500px;}
.y1a1{bottom:150.841500px;}
.yef{bottom:151.291500px;}
.y1e6{bottom:154.591500px;}
.y16c{bottom:154.741500px;}
.y68{bottom:155.641500px;}
.y1d{bottom:157.741500px;}
.y190{bottom:159.241500px;}
.y8b{bottom:160.891500px;}
.y44{bottom:163.891500px;}
.y155{bottom:164.791500px;}
.y10c{bottom:167.791500px;}
.y1c1{bottom:172.741500px;}
.y1a0{bottom:174.691500px;}
.yaa{bottom:175.441500px;}
.y13d{bottom:175.741500px;}
.y125{bottom:177.091500px;}
.y1e5{bottom:178.291500px;}
.y16b{bottom:178.441500px;}
.yce{bottom:181.291500px;}
.y18f{bottom:182.941500px;}
.yee{bottom:183.541500px;}
.y67{bottom:185.341500px;}
.y154{bottom:188.491500px;}
.y1c{bottom:189.991500px;}
.y10b{bottom:191.641500px;}
.y8a{bottom:193.141500px;}
.y43{bottom:196.141500px;}
.y1c0{bottom:196.441500px;}
.y19f{bottom:198.391500px;}
.y13c{bottom:199.441500px;}
.y1e4{bottom:202.141500px;}
.ya9{bottom:207.691500px;}
.y16a{bottom:208.141500px;}
.y124{bottom:209.341500px;}
.ycd{bottom:213.541500px;}
.y1b{bottom:213.841500px;}
.y18e{bottom:215.191500px;}
.y10a{bottom:215.341500px;}
.yed{bottom:215.791500px;}
.y89{bottom:216.991500px;}
.y153{bottom:220.741500px;}
.y13b{bottom:223.291500px;}
.y66{bottom:224.791500px;}
.y1e3{bottom:225.841500px;}
.y19e{bottom:228.091500px;}
.y42{bottom:228.391500px;}
.y1bf{bottom:228.691500px;}
.y169{bottom:232.291500px;}
.y123{bottom:233.041500px;}
.ycc{bottom:237.391500px;}
.y1a{bottom:237.541500px;}
.y109{bottom:239.191500px;}
.ya8{bottom:239.941500px;}
.y88{bottom:240.691500px;}
.y13a{bottom:246.991500px;}
.y18d{bottom:247.441500px;}
.yec{bottom:248.041500px;}
.y41{bottom:252.241500px;}
.y1be{bottom:252.541500px;}
.y152{bottom:252.991500px;}
.y1e2{bottom:255.541500px;}
.y122{bottom:256.891500px;}
.y65{bottom:257.041500px;}
.y19{bottom:261.391500px;}
.y108{bottom:262.891500px;}
.ya7{bottom:263.641500px;}
.ycb{bottom:269.641500px;}
.y87{bottom:270.391500px;}
.y139{bottom:270.841500px;}
.y168{bottom:271.741500px;}
.y40{bottom:275.941500px;}
.y151{bottom:276.841500px;}
.y18c{bottom:279.691500px;}
.yeb{bottom:280.291500px;}
.y121{bottom:280.591500px;}
.y1bd{bottom:284.791500px;}
.y18{bottom:285.091500px;}
.y107{bottom:286.741500px;}
.ya6{bottom:287.491500px;}
.y64{bottom:289.291500px;}
.y19d{bottom:291.691500px;}
.yca{bottom:293.341500px;}
.y138{bottom:294.541500px;}
.y1e1{bottom:294.991500px;}
.y18b{bottom:303.541500px;}
.yea{bottom:303.991500px;}
.y120{bottom:304.441500px;}
.y3f{bottom:308.191500px;}
.y86{bottom:308.641500px;}
.y17{bottom:308.941500px;}
.y150{bottom:309.091500px;}
.y106{bottom:310.441500px;}
.ya5{bottom:311.191500px;}
.y19c{bottom:315.541500px;}
.y1bc{bottom:317.041500px;}
.y137{bottom:318.391500px;}
.y63{bottom:321.541500px;}
.yc9{bottom:325.591500px;}
.y18a{bottom:327.241500px;}
.ye9{bottom:327.841500px;}
.y11f{bottom:328.141500px;}
.y3e{bottom:332.041500px;}
.y105{bottom:334.291500px;}
.ya4{bottom:335.041500px;}
.y16{bottom:338.641500px;}
.y14f{bottom:341.341500px;}
.y136{bottom:342.091500px;}
.y19b{bottom:347.791500px;}
.y1bb{bottom:349.291500px;}
.yc8{bottom:349.441500px;}
.y189{bottom:351.091500px;}
.ye8{bottom:351.541500px;}
.y11e{bottom:351.991500px;}
.y62{bottom:353.791500px;}
.y3d{bottom:355.741500px;}
.y85{bottom:358.741500px;}
.y167{bottom:360.091500px;}
.y104{bottom:363.991500px;}
.y135{bottom:365.941500px;}
.y14e{bottom:373.591500px;}
.y188{bottom:374.791500px;}
.ye7{bottom:375.391500px;}
.y11d{bottom:375.691500px;}
.y15{bottom:376.741500px;}
.y61{bottom:377.491500px;}
.y3c{bottom:379.591500px;}
.y19a{bottom:380.041500px;}
.y1ba{bottom:381.541500px;}
.yc7{bottom:381.691500px;}
.ya3{bottom:382.591500px;}
.y1e0{bottom:383.341500px;}
.y84{bottom:390.991500px;}
.y166{bottom:392.341500px;}
.y134{bottom:395.641500px;}
.y187{bottom:398.641500px;}
.ye6{bottom:399.091500px;}
.y11c{bottom:399.541500px;}
.y60{bottom:401.341500px;}
.y3b{bottom:403.291500px;}
.y103{bottom:403.441500px;}
.y199{bottom:403.741500px;}
.yc6{bottom:405.391500px;}
.y14d{bottom:405.841500px;}
.y1df{bottom:407.041500px;}
.ya2{bottom:412.291500px;}
.y1b9{bottom:413.791500px;}
.y186{bottom:422.341500px;}
.ye5{bottom:422.941500px;}
.y83{bottom:423.241500px;}
.y165{bottom:424.591500px;}
.y5f{bottom:425.041500px;}
.y14{bottom:426.991500px;}
.y3a{bottom:427.141500px;}
.y14c{bottom:429.541500px;}
.y133{bottom:433.741500px;}
.y102{bottom:435.691500px;}
.y198{bottom:435.991500px;}
.y1b8{bottom:437.491500px;}
.yc5{bottom:437.641500px;}
.y1de{bottom:439.291500px;}
.y185{bottom:446.191500px;}
.ye4{bottom:446.641500px;}
.y11b{bottom:447.091500px;}
.y13{bottom:450.691500px;}
.y39{bottom:450.841500px;}
.ya1{bottom:451.741500px;}
.y14b{bottom:453.391500px;}
.y5e{bottom:454.741500px;}
.y82{bottom:455.491500px;}
.y164{bottom:456.841500px;}
.y197{bottom:459.841500px;}
.y1b7{bottom:461.341500px;}
.y101{bottom:467.941500px;}
.yc4{bottom:469.891500px;}
.ye3{bottom:470.491500px;}
.y11a{bottom:470.791500px;}
.y1dd{bottom:471.541500px;}
.y38{bottom:474.691500px;}
.y14a{bottom:477.091500px;}
.y81{bottom:479.341500px;}
.y163{bottom:480.541500px;}
.y12{bottom:482.941500px;}
.ya0{bottom:483.991500px;}
.y1b6{bottom:485.041500px;}
.y196{bottom:492.091500px;}
.y184{bottom:493.741500px;}
.y5d{bottom:494.191500px;}
.y37{bottom:498.391500px;}
.ye2{bottom:500.191500px;}
.y119{bottom:500.491500px;}
.y149{bottom:500.941500px;}
.yc3{bottom:502.141500px;}
.y80{bottom:503.041500px;}
.y1dc{bottom:503.791500px;}
.y162{bottom:504.391500px;}
.y1b5{bottom:508.891500px;}
.y11{bottom:515.191500px;}
.y9f{bottom:516.241500px;}
.y183{bottom:517.441500px;}
.y195{bottom:524.341500px;}
.y148{bottom:524.641500px;}
.y5c{bottom:526.441500px;}
.y7f{bottom:526.891500px;}
.y36{bottom:528.091500px;}
.y100{bottom:532.441500px;}
.y1b4{bottom:532.591500px;}
.yc2{bottom:534.391500px;}
.y1db{bottom:536.041500px;}
.y10{bottom:539.041500px;}
.ye1{bottom:539.641500px;}
.y118{bottom:539.941500px;}
.y182{bottom:541.291500px;}
.y9e{bottom:548.491500px;}
.y161{bottom:551.941500px;}
.y1b3{bottom:556.441500px;}
.y7e{bottom:556.591500px;}
.y5b{bottom:558.691500px;}
.y1da{bottom:559.891500px;}
.yff{bottom:564.691500px;}
.y181{bottom:564.991500px;}
.yc1{bottom:566.641500px;}
.y35{bottom:567.541500px;}
.yf{bottom:571.291500px;}
.ye0{bottom:571.891500px;}
.y117{bottom:572.191500px;}
.y160{bottom:575.641500px;}
.y1b2{bottom:580.141500px;}
.y9d{bottom:580.741500px;}
.y1d9{bottom:583.591500px;}
.yfe{bottom:588.391500px;}
.y180{bottom:588.841500px;}
.yc0{bottom:590.491500px;}
.y5a{bottom:590.941500px;}
.y7d{bottom:596.041500px;}
.y15f{bottom:599.491500px;}
.y34{bottom:599.791500px;}
.ye{bottom:603.541500px;}
.y1b1{bottom:603.991500px;}
.ydf{bottom:604.141500px;}
.y116{bottom:604.441500px;}
.y1d8{bottom:607.441500px;}
.yfd{bottom:612.241500px;}
.y17f{bottom:612.541500px;}
.y9c{bottom:612.991500px;}
.ybf{bottom:614.191500px;}
.y59{bottom:614.791500px;}
.y194{bottom:621.091500px;}
.y15e{bottom:623.191500px;}
.y1b0{bottom:627.691500px;}
.y7c{bottom:628.291500px;}
.y1d7{bottom:631.141500px;}
.y33{bottom:632.041500px;}
.yd{bottom:635.791500px;}
.yfc{bottom:635.941500px;}
.yde{bottom:636.391500px;}
.y9b{bottom:636.691500px;}
.ybe{bottom:638.041500px;}
.y58{bottom:638.491500px;}
.y17e{bottom:642.241500px;}
.y193{bottom:644.791500px;}
.y15d{bottom:647.041500px;}
.y147{bottom:651.991500px;}
.y1d6{bottom:654.991500px;}
.yc{bottom:659.491500px;}
.yfb{bottom:659.791500px;}
.y1af{bottom:659.941500px;}
.y7b{bottom:660.541500px;}
.ybd{bottom:661.741500px;}
.y57{bottom:662.341500px;}
.y32{bottom:664.291500px;}
.y17d{bottom:666.391500px;}
.ydd{bottom:668.641500px;}
.y115{bottom:668.941500px;}
.y15c{bottom:670.741500px;}
.y146{bottom:675.841500px;}
.y1d5{bottom:678.691500px;}
.y1ae{bottom:683.791500px;}
.y9a{bottom:684.241500px;}
.ybc{bottom:685.591500px;}
.y56{bottom:686.041500px;}
.y31{bottom:688.141500px;}
.yb{bottom:691.741500px;}
.yfa{bottom:692.041500px;}
.ydc{bottom:692.341500px;}
.y7a{bottom:692.791500px;}
.y15b{bottom:694.591500px;}
.y145{bottom:699.541500px;}
.y1d4{bottom:702.541500px;}
.y17c{bottom:705.841500px;}
.y1ad{bottom:707.491500px;}
.y99{bottom:708.091500px;}
.ybb{bottom:709.291500px;}
.y30{bottom:711.841500px;}
.y55{bottom:715.741500px;}
.ydb{bottom:716.191500px;}
.y79{bottom:716.491500px;}
.ya{bottom:721.441500px;}
.y144{bottom:723.391500px;}
.y15a{bottom:724.291500px;}
.y1d3{bottom:726.241500px;}
.y1ac{bottom:731.341500px;}
.y98{bottom:731.791500px;}
.yba{bottom:733.141500px;}
.y2f{bottom:735.691500px;}
.y17b{bottom:738.091500px;}
.yf9{bottom:739.591500px;}
.yda{bottom:739.891500px;}
.y78{bottom:740.341500px;}
.y1ec{bottom:743.341500px;}
.y143{bottom:747.091500px;}
.y132{bottom:748.741500px;}
.y1d2{bottom:750.091500px;}
.y1ab{bottom:755.041500px;}
.y54{bottom:755.191500px;}
.y97{bottom:755.641500px;}
.y2e{bottom:759.391500px;}
.y9{bottom:760.891500px;}
.y17a{bottom:761.941500px;}
.yf8{bottom:763.291500px;}
.yd9{bottom:763.741500px;}
.y77{bottom:764.041500px;}
.yb9{bottom:765.391500px;}
.y1d1{bottom:773.791500px;}
.y142{bottom:776.791500px;}
.y1eb{bottom:777.541500px;}
.y96{bottom:779.341500px;}
.y131{bottom:780.991500px;}
.yf7{bottom:787.141500px;}
.y1aa{bottom:787.291500px;}
.y53{bottom:787.441500px;}
.y76{bottom:787.891500px;}
.y2d{bottom:789.091500px;}
.y8{bottom:793.141500px;}
.y179{bottom:794.191500px;}
.y159{bottom:795.991500px;}
.y1d0{bottom:797.641500px;}
.y95{bottom:803.191500px;}
.y130{bottom:804.841500px;}
.yf6{bottom:810.841500px;}
.y1a9{bottom:811.141500px;}
.yd8{bottom:811.291500px;}
.y75{bottom:811.591500px;}
.y1ea{bottom:811.891500px;}
.yb8{bottom:812.941500px;}
.y141{bottom:816.241500px;}
.y7{bottom:816.991500px;}
.y52{bottom:819.691500px;}
.y178{bottom:826.441500px;}
.y2c{bottom:828.541500px;}
.y1cf{bottom:829.891500px;}
.y94{bottom:832.891500px;}
.y1a8{bottom:834.841500px;}
.y192{bottom:834.991500px;}
.y114{bottom:835.441500px;}
.y1e9{bottom:835.591500px;}
.yb7{bottom:836.641500px;}
.y140{bottom:840.091500px;}
.yf5{bottom:840.541500px;}
.y6{bottom:840.691500px;}
.yd7{bottom:840.991500px;}
.y74{bottom:841.291500px;}
.y51{bottom:851.941500px;}
.y12f{bottom:852.391500px;}
.y1ce{bottom:853.591500px;}
.y177{bottom:858.691500px;}
.y113{bottom:859.141500px;}
.y2b{bottom:860.791500px;}
.y5{bottom:864.541500px;}
.yf4{bottom:864.691500px;}
.yb6{bottom:868.891500px;}
.y1e8{bottom:869.941500px;}
.y93{bottom:872.341500px;}
.y50{bottom:875.791500px;}
.y12e{bottom:876.091500px;}
.y1cd{bottom:877.441500px;}
.yd6{bottom:880.441500px;}
.y73{bottom:880.741500px;}
.y1a7{bottom:882.391500px;}
.y158{bottom:884.191500px;}
.y4{bottom:888.241500px;}
.y112{bottom:888.841500px;}
.y176{bottom:890.941500px;}
.yb5{bottom:892.741500px;}
.y2a{bottom:893.041500px;}
.y92{bottom:896.041500px;}
.y4f{bottom:899.491500px;}
.y12d{bottom:899.941500px;}
.y1cc{bottom:901.141500px;}
.yf3{bottom:904.141500px;}
.yd5{bottom:912.691500px;}
.y72{bottom:912.991500px;}
.y1a6{bottom:914.641500px;}
.yb4{bottom:916.441500px;}
.y3{bottom:919.291500px;}
.y175{bottom:923.191500px;}
.y4e{bottom:923.341500px;}
.y1cb{bottom:924.991500px;}
.y29{bottom:925.291500px;}
.y91{bottom:928.291500px;}
.y12c{bottom:932.191500px;}
.yf2{bottom:936.391500px;}
.y1a5{bottom:938.491500px;}
.yb3{bottom:940.291500px;}
.yd4{bottom:944.941500px;}
.y71{bottom:945.241500px;}
.y174{bottom:946.891500px;}
.y4d{bottom:947.041500px;}
.y1ca{bottom:948.691500px;}
.y28{bottom:949.141500px;}
.y90{bottom:952.141500px;}
.y12b{bottom:955.891500px;}
.y13f{bottom:960.541500px;}
.y1a4{bottom:962.191500px;}
.yb2{bottom:963.991500px;}
.yf1{bottom:968.641500px;}
.y173{bottom:970.741500px;}
.y4c{bottom:970.891500px;}
.y1c9{bottom:972.541500px;}
.y27{bottom:972.841500px;}
.yd3{bottom:977.191500px;}
.y70{bottom:977.491500px;}
.y12a{bottom:979.741500px;}
.y8f{bottom:984.391500px;}
.y1a3{bottom:986.041500px;}
.yb1{bottom:987.841500px;}
.y191{bottom:992.791500px;}
.y172{bottom:994.441500px;}
.y1c8{bottom:996.241500px;}
.y26{bottom:996.691500px;}
.y4b{bottom:1000.591500px;}
.yf0{bottom:1000.891500px;}
.y129{bottom:1003.441500px;}
.y111{bottom:1008.091500px;}
.yd2{bottom:1009.441500px;}
.y6f{bottom:1009.741500px;}
.yb0{bottom:1011.541500px;}
.y8e{bottom:1016.641500px;}
.y157{bottom:1017.541500px;}
.y171{bottom:1018.291500px;}
.y1c7{bottom:1020.091500px;}
.y25{bottom:1020.391500px;}
.y128{bottom:1027.291500px;}
.yd1{bottom:1033.141500px;}
.y6e{bottom:1033.591500px;}
.yaf{bottom:1035.391500px;}
.y4a{bottom:1040.041500px;}
.y110{bottom:1040.341500px;}
.y156{bottom:1041.691500px;}
.y170{bottom:1041.991500px;}
.y1c6{bottom:1043.791500px;}
.y24{bottom:1044.241500px;}
.y8d{bottom:1048.891500px;}
.yd0{bottom:1056.991500px;}
.y6d{bottom:1057.291500px;}
.yae{bottom:1065.091500px;}
.y16f{bottom:1065.841500px;}
.y1c5{bottom:1067.641500px;}
.y23{bottom:1067.941500px;}
.y49{bottom:1072.291500px;}
.y10f{bottom:1072.591500px;}
.ycf{bottom:1080.691500px;}
.y6c{bottom:1081.141500px;}
.y2{bottom:1085.341500px;}
.yad{bottom:1089.241500px;}
.y16e{bottom:1089.541500px;}
.y22{bottom:1091.791500px;}
.y127{bottom:1096.441500px;}
.y1c4{bottom:1097.341500px;}
.y48{bottom:1104.541500px;}
.y10e{bottom:1104.841500px;}
.y6b{bottom:1113.391500px;}
.y21{bottom:1121.491500px;}
.y47{bottom:1128.241500px;}
.yac{bottom:1128.691500px;}
.y6a{bottom:1137.091500px;}
.y46{bottom:1157.941500px;}
.y20{bottom:1160.941500px;}
.h4{height:50.695312px;}
.h7{height:50.730469px;}
.h6{height:57.772266px;}
.h5{height:60.867188px;}
.h3{height:78.257812px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x2{left:112.200000px;}
.x3{left:139.200000px;}
.x5{left:437.700000px;}
.x4{left:442.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.448000pt;}
.ls0{letter-spacing:69.696000pt;}
.ws1{word-spacing:-20.682667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws4{word-spacing:-0.074667pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-967.061333pt;}
._16{margin-left:-32.362667pt;}
._9{margin-left:-7.552000pt;}
._12{margin-left:-6.208000pt;}
._2{margin-left:-5.184000pt;}
._1{margin-left:-3.648000pt;}
._c{margin-left:-2.432000pt;}
._0{margin-left:-1.536000pt;}
._3{width:0.960000pt;}
._4{width:1.984000pt;}
._8{width:3.477333pt;}
._5{width:5.226667pt;}
._11{width:6.165333pt;}
._a{width:7.061333pt;}
._d{width:7.957333pt;}
._7{width:9.024000pt;}
._6{width:9.920000pt;}
._e{width:11.072000pt;}
._f{width:12.096000pt;}
._13{width:13.120000pt;}
._18{width:14.016000pt;}
._17{width:14.912000pt;}
._b{width:17.344000pt;}
._10{width:18.240000pt;}
._1b{width:19.392000pt;}
._1c{width:20.352000pt;}
._23{width:21.824000pt;}
._22{width:22.720000pt;}
._26{width:23.616000pt;}
._2d{width:25.088000pt;}
._20{width:26.112000pt;}
._21{width:27.008000pt;}
._1f{width:28.800000pt;}
._27{width:30.464000pt;}
._19{width:33.984000pt;}
._1a{width:35.328000pt;}
._1d{width:36.608000pt;}
._2e{width:40.149333pt;}
._29{width:41.258667pt;}
._28{width:42.346667pt;}
._2c{width:48.000000pt;}
._2b{width:54.080000pt;}
._2a{width:56.960000pt;}
._1e{width:71.936000pt;}
._24{width:87.104000pt;}
._25{width:90.048000pt;}
._15{width:934.336000pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1f{bottom:79.014667pt;}
.y1c3{bottom:103.681333pt;}
.y1e{bottom:111.548000pt;}
.y1a2{bottom:113.014667pt;}
.y1e7{bottom:116.214667pt;}
.y16d{bottom:116.348000pt;}
.y45{bottom:117.014667pt;}
.y69{bottom:117.148000pt;}
.y8c{bottom:121.948000pt;}
.y1c2{bottom:124.881333pt;}
.yab{bottom:127.281333pt;}
.y13e{bottom:127.548000pt;}
.y10d{bottom:128.081333pt;}
.y126{bottom:128.748000pt;}
.y1a1{bottom:134.081333pt;}
.yef{bottom:134.481333pt;}
.y1e6{bottom:137.414667pt;}
.y16c{bottom:137.548000pt;}
.y68{bottom:138.348000pt;}
.y1d{bottom:140.214667pt;}
.y190{bottom:141.548000pt;}
.y8b{bottom:143.014667pt;}
.y44{bottom:145.681333pt;}
.y155{bottom:146.481333pt;}
.y10c{bottom:149.148000pt;}
.y1c1{bottom:153.548000pt;}
.y1a0{bottom:155.281333pt;}
.yaa{bottom:155.948000pt;}
.y13d{bottom:156.214667pt;}
.y125{bottom:157.414667pt;}
.y1e5{bottom:158.481333pt;}
.y16b{bottom:158.614667pt;}
.yce{bottom:161.148000pt;}
.y18f{bottom:162.614667pt;}
.yee{bottom:163.148000pt;}
.y67{bottom:164.748000pt;}
.y154{bottom:167.548000pt;}
.y1c{bottom:168.881333pt;}
.y10b{bottom:170.348000pt;}
.y8a{bottom:171.681333pt;}
.y43{bottom:174.348000pt;}
.y1c0{bottom:174.614667pt;}
.y19f{bottom:176.348000pt;}
.y13c{bottom:177.281333pt;}
.y1e4{bottom:179.681333pt;}
.ya9{bottom:184.614667pt;}
.y16a{bottom:185.014667pt;}
.y124{bottom:186.081333pt;}
.ycd{bottom:189.814667pt;}
.y1b{bottom:190.081333pt;}
.y18e{bottom:191.281333pt;}
.y10a{bottom:191.414667pt;}
.yed{bottom:191.814667pt;}
.y89{bottom:192.881333pt;}
.y153{bottom:196.214667pt;}
.y13b{bottom:198.481333pt;}
.y66{bottom:199.814667pt;}
.y1e3{bottom:200.748000pt;}
.y19e{bottom:202.748000pt;}
.y42{bottom:203.014667pt;}
.y1bf{bottom:203.281333pt;}
.y169{bottom:206.481333pt;}
.y123{bottom:207.148000pt;}
.ycc{bottom:211.014667pt;}
.y1a{bottom:211.148000pt;}
.y109{bottom:212.614667pt;}
.ya8{bottom:213.281333pt;}
.y88{bottom:213.948000pt;}
.y13a{bottom:219.548000pt;}
.y18d{bottom:219.948000pt;}
.yec{bottom:220.481333pt;}
.y41{bottom:224.214667pt;}
.y1be{bottom:224.481333pt;}
.y152{bottom:224.881333pt;}
.y1e2{bottom:227.148000pt;}
.y122{bottom:228.348000pt;}
.y65{bottom:228.481333pt;}
.y19{bottom:232.348000pt;}
.y108{bottom:233.681333pt;}
.ya7{bottom:234.348000pt;}
.ycb{bottom:239.681333pt;}
.y87{bottom:240.348000pt;}
.y139{bottom:240.748000pt;}
.y168{bottom:241.548000pt;}
.y40{bottom:245.281333pt;}
.y151{bottom:246.081333pt;}
.y18c{bottom:248.614667pt;}
.yeb{bottom:249.148000pt;}
.y121{bottom:249.414667pt;}
.y1bd{bottom:253.148000pt;}
.y18{bottom:253.414667pt;}
.y107{bottom:254.881333pt;}
.ya6{bottom:255.548000pt;}
.y64{bottom:257.148000pt;}
.y19d{bottom:259.281333pt;}
.yca{bottom:260.748000pt;}
.y138{bottom:261.814667pt;}
.y1e1{bottom:262.214667pt;}
.y18b{bottom:269.814667pt;}
.yea{bottom:270.214667pt;}
.y120{bottom:270.614667pt;}
.y3f{bottom:273.948000pt;}
.y86{bottom:274.348000pt;}
.y17{bottom:274.614667pt;}
.y150{bottom:274.748000pt;}
.y106{bottom:275.948000pt;}
.ya5{bottom:276.614667pt;}
.y19c{bottom:280.481333pt;}
.y1bc{bottom:281.814667pt;}
.y137{bottom:283.014667pt;}
.y63{bottom:285.814667pt;}
.yc9{bottom:289.414667pt;}
.y18a{bottom:290.881333pt;}
.ye9{bottom:291.414667pt;}
.y11f{bottom:291.681333pt;}
.y3e{bottom:295.148000pt;}
.y105{bottom:297.148000pt;}
.ya4{bottom:297.814667pt;}
.y16{bottom:301.014667pt;}
.y14f{bottom:303.414667pt;}
.y136{bottom:304.081333pt;}
.y19b{bottom:309.148000pt;}
.y1bb{bottom:310.481333pt;}
.yc8{bottom:310.614667pt;}
.y189{bottom:312.081333pt;}
.ye8{bottom:312.481333pt;}
.y11e{bottom:312.881333pt;}
.y62{bottom:314.481333pt;}
.y3d{bottom:316.214667pt;}
.y85{bottom:318.881333pt;}
.y167{bottom:320.081333pt;}
.y104{bottom:323.548000pt;}
.y135{bottom:325.281333pt;}
.y14e{bottom:332.081333pt;}
.y188{bottom:333.148000pt;}
.ye7{bottom:333.681333pt;}
.y11d{bottom:333.948000pt;}
.y15{bottom:334.881333pt;}
.y61{bottom:335.548000pt;}
.y3c{bottom:337.414667pt;}
.y19a{bottom:337.814667pt;}
.y1ba{bottom:339.148000pt;}
.yc7{bottom:339.281333pt;}
.ya3{bottom:340.081333pt;}
.y1e0{bottom:340.748000pt;}
.y84{bottom:347.548000pt;}
.y166{bottom:348.748000pt;}
.y134{bottom:351.681333pt;}
.y187{bottom:354.348000pt;}
.ye6{bottom:354.748000pt;}
.y11c{bottom:355.148000pt;}
.y60{bottom:356.748000pt;}
.y3b{bottom:358.481333pt;}
.y103{bottom:358.614667pt;}
.y199{bottom:358.881333pt;}
.yc6{bottom:360.348000pt;}
.y14d{bottom:360.748000pt;}
.y1df{bottom:361.814667pt;}
.ya2{bottom:366.481333pt;}
.y1b9{bottom:367.814667pt;}
.y186{bottom:375.414667pt;}
.ye5{bottom:375.948000pt;}
.y83{bottom:376.214667pt;}
.y165{bottom:377.414667pt;}
.y5f{bottom:377.814667pt;}
.y14{bottom:379.548000pt;}
.y3a{bottom:379.681333pt;}
.y14c{bottom:381.814667pt;}
.y133{bottom:385.548000pt;}
.y102{bottom:387.281333pt;}
.y198{bottom:387.548000pt;}
.y1b8{bottom:388.881333pt;}
.yc5{bottom:389.014667pt;}
.y1de{bottom:390.481333pt;}
.y185{bottom:396.614667pt;}
.ye4{bottom:397.014667pt;}
.y11b{bottom:397.414667pt;}
.y13{bottom:400.614667pt;}
.y39{bottom:400.748000pt;}
.ya1{bottom:401.548000pt;}
.y14b{bottom:403.014667pt;}
.y5e{bottom:404.214667pt;}
.y82{bottom:404.881333pt;}
.y164{bottom:406.081333pt;}
.y197{bottom:408.748000pt;}
.y1b7{bottom:410.081333pt;}
.y101{bottom:415.948000pt;}
.yc4{bottom:417.681333pt;}
.ye3{bottom:418.214667pt;}
.y11a{bottom:418.481333pt;}
.y1dd{bottom:419.148000pt;}
.y38{bottom:421.948000pt;}
.y14a{bottom:424.081333pt;}
.y81{bottom:426.081333pt;}
.y163{bottom:427.148000pt;}
.y12{bottom:429.281333pt;}
.ya0{bottom:430.214667pt;}
.y1b6{bottom:431.148000pt;}
.y196{bottom:437.414667pt;}
.y184{bottom:438.881333pt;}
.y5d{bottom:439.281333pt;}
.y37{bottom:443.014667pt;}
.ye2{bottom:444.614667pt;}
.y119{bottom:444.881333pt;}
.y149{bottom:445.281333pt;}
.yc3{bottom:446.348000pt;}
.y80{bottom:447.148000pt;}
.y1dc{bottom:447.814667pt;}
.y162{bottom:448.348000pt;}
.y1b5{bottom:452.348000pt;}
.y11{bottom:457.948000pt;}
.y9f{bottom:458.881333pt;}
.y183{bottom:459.948000pt;}
.y195{bottom:466.081333pt;}
.y148{bottom:466.348000pt;}
.y5c{bottom:467.948000pt;}
.y7f{bottom:468.348000pt;}
.y36{bottom:469.414667pt;}
.y100{bottom:473.281333pt;}
.y1b4{bottom:473.414667pt;}
.yc2{bottom:475.014667pt;}
.y1db{bottom:476.481333pt;}
.y10{bottom:479.148000pt;}
.ye1{bottom:479.681333pt;}
.y118{bottom:479.948000pt;}
.y182{bottom:481.148000pt;}
.y9e{bottom:487.548000pt;}
.y161{bottom:490.614667pt;}
.y1b3{bottom:494.614667pt;}
.y7e{bottom:494.748000pt;}
.y5b{bottom:496.614667pt;}
.y1da{bottom:497.681333pt;}
.yff{bottom:501.948000pt;}
.y181{bottom:502.214667pt;}
.yc1{bottom:503.681333pt;}
.y35{bottom:504.481333pt;}
.yf{bottom:507.814667pt;}
.ye0{bottom:508.348000pt;}
.y117{bottom:508.614667pt;}
.y160{bottom:511.681333pt;}
.y1b2{bottom:515.681333pt;}
.y9d{bottom:516.214667pt;}
.y1d9{bottom:518.748000pt;}
.yfe{bottom:523.014667pt;}
.y180{bottom:523.414667pt;}
.yc0{bottom:524.881333pt;}
.y5a{bottom:525.281333pt;}
.y7d{bottom:529.814667pt;}
.y15f{bottom:532.881333pt;}
.y34{bottom:533.148000pt;}
.ye{bottom:536.481333pt;}
.y1b1{bottom:536.881333pt;}
.ydf{bottom:537.014667pt;}
.y116{bottom:537.281333pt;}
.y1d8{bottom:539.948000pt;}
.yfd{bottom:544.214667pt;}
.y17f{bottom:544.481333pt;}
.y9c{bottom:544.881333pt;}
.ybf{bottom:545.948000pt;}
.y59{bottom:546.481333pt;}
.y194{bottom:552.081333pt;}
.y15e{bottom:553.948000pt;}
.y1b0{bottom:557.948000pt;}
.y7c{bottom:558.481333pt;}
.y1d7{bottom:561.014667pt;}
.y33{bottom:561.814667pt;}
.yd{bottom:565.148000pt;}
.yfc{bottom:565.281333pt;}
.yde{bottom:565.681333pt;}
.y9b{bottom:565.948000pt;}
.ybe{bottom:567.148000pt;}
.y58{bottom:567.548000pt;}
.y17e{bottom:570.881333pt;}
.y193{bottom:573.148000pt;}
.y15d{bottom:575.148000pt;}
.y147{bottom:579.548000pt;}
.y1d6{bottom:582.214667pt;}
.yc{bottom:586.214667pt;}
.yfb{bottom:586.481333pt;}
.y1af{bottom:586.614667pt;}
.y7b{bottom:587.148000pt;}
.ybd{bottom:588.214667pt;}
.y57{bottom:588.748000pt;}
.y32{bottom:590.481333pt;}
.y17d{bottom:592.348000pt;}
.ydd{bottom:594.348000pt;}
.y115{bottom:594.614667pt;}
.y15c{bottom:596.214667pt;}
.y146{bottom:600.748000pt;}
.y1d5{bottom:603.281333pt;}
.y1ae{bottom:607.814667pt;}
.y9a{bottom:608.214667pt;}
.ybc{bottom:609.414667pt;}
.y56{bottom:609.814667pt;}
.y31{bottom:611.681333pt;}
.yb{bottom:614.881333pt;}
.yfa{bottom:615.148000pt;}
.ydc{bottom:615.414667pt;}
.y7a{bottom:615.814667pt;}
.y15b{bottom:617.414667pt;}
.y145{bottom:621.814667pt;}
.y1d4{bottom:624.481333pt;}
.y17c{bottom:627.414667pt;}
.y1ad{bottom:628.881333pt;}
.y99{bottom:629.414667pt;}
.ybb{bottom:630.481333pt;}
.y30{bottom:632.748000pt;}
.y55{bottom:636.214667pt;}
.ydb{bottom:636.614667pt;}
.y79{bottom:636.881333pt;}
.ya{bottom:641.281333pt;}
.y144{bottom:643.014667pt;}
.y15a{bottom:643.814667pt;}
.y1d3{bottom:645.548000pt;}
.y1ac{bottom:650.081333pt;}
.y98{bottom:650.481333pt;}
.yba{bottom:651.681333pt;}
.y2f{bottom:653.948000pt;}
.y17b{bottom:656.081333pt;}
.yf9{bottom:657.414667pt;}
.yda{bottom:657.681333pt;}
.y78{bottom:658.081333pt;}
.y1ec{bottom:660.748000pt;}
.y143{bottom:664.081333pt;}
.y132{bottom:665.548000pt;}
.y1d2{bottom:666.748000pt;}
.y1ab{bottom:671.148000pt;}
.y54{bottom:671.281333pt;}
.y97{bottom:671.681333pt;}
.y2e{bottom:675.014667pt;}
.y9{bottom:676.348000pt;}
.y17a{bottom:677.281333pt;}
.yf8{bottom:678.481333pt;}
.yd9{bottom:678.881333pt;}
.y77{bottom:679.148000pt;}
.yb9{bottom:680.348000pt;}
.y1d1{bottom:687.814667pt;}
.y142{bottom:690.481333pt;}
.y1eb{bottom:691.148000pt;}
.y96{bottom:692.748000pt;}
.y131{bottom:694.214667pt;}
.yf7{bottom:699.681333pt;}
.y1aa{bottom:699.814667pt;}
.y53{bottom:699.948000pt;}
.y76{bottom:700.348000pt;}
.y2d{bottom:701.414667pt;}
.y8{bottom:705.014667pt;}
.y179{bottom:705.948000pt;}
.y159{bottom:707.548000pt;}
.y1d0{bottom:709.014667pt;}
.y95{bottom:713.948000pt;}
.y130{bottom:715.414667pt;}
.yf6{bottom:720.748000pt;}
.y1a9{bottom:721.014667pt;}
.yd8{bottom:721.148000pt;}
.y75{bottom:721.414667pt;}
.y1ea{bottom:721.681333pt;}
.yb8{bottom:722.614667pt;}
.y141{bottom:725.548000pt;}
.y7{bottom:726.214667pt;}
.y52{bottom:728.614667pt;}
.y178{bottom:734.614667pt;}
.y2c{bottom:736.481333pt;}
.y1cf{bottom:737.681333pt;}
.y94{bottom:740.348000pt;}
.y1a8{bottom:742.081333pt;}
.y192{bottom:742.214667pt;}
.y114{bottom:742.614667pt;}
.y1e9{bottom:742.748000pt;}
.yb7{bottom:743.681333pt;}
.y140{bottom:746.748000pt;}
.yf5{bottom:747.148000pt;}
.y6{bottom:747.281333pt;}
.yd7{bottom:747.548000pt;}
.y74{bottom:747.814667pt;}
.y51{bottom:757.281333pt;}
.y12f{bottom:757.681333pt;}
.y1ce{bottom:758.748000pt;}
.y177{bottom:763.281333pt;}
.y113{bottom:763.681333pt;}
.y2b{bottom:765.148000pt;}
.y5{bottom:768.481333pt;}
.yf4{bottom:768.614667pt;}
.yb6{bottom:772.348000pt;}
.y1e8{bottom:773.281333pt;}
.y93{bottom:775.414667pt;}
.y50{bottom:778.481333pt;}
.y12e{bottom:778.748000pt;}
.y1cd{bottom:779.948000pt;}
.yd6{bottom:782.614667pt;}
.y73{bottom:782.881333pt;}
.y1a7{bottom:784.348000pt;}
.y158{bottom:785.948000pt;}
.y4{bottom:789.548000pt;}
.y112{bottom:790.081333pt;}
.y176{bottom:791.948000pt;}
.yb5{bottom:793.548000pt;}
.y2a{bottom:793.814667pt;}
.y92{bottom:796.481333pt;}
.y4f{bottom:799.548000pt;}
.y12d{bottom:799.948000pt;}
.y1cc{bottom:801.014667pt;}
.yf3{bottom:803.681333pt;}
.yd5{bottom:811.281333pt;}
.y72{bottom:811.548000pt;}
.y1a6{bottom:813.014667pt;}
.yb4{bottom:814.614667pt;}
.y3{bottom:817.148000pt;}
.y175{bottom:820.614667pt;}
.y4e{bottom:820.748000pt;}
.y1cb{bottom:822.214667pt;}
.y29{bottom:822.481333pt;}
.y91{bottom:825.148000pt;}
.y12c{bottom:828.614667pt;}
.yf2{bottom:832.348000pt;}
.y1a5{bottom:834.214667pt;}
.yb3{bottom:835.814667pt;}
.yd4{bottom:839.948000pt;}
.y71{bottom:840.214667pt;}
.y174{bottom:841.681333pt;}
.y4d{bottom:841.814667pt;}
.y1ca{bottom:843.281333pt;}
.y28{bottom:843.681333pt;}
.y90{bottom:846.348000pt;}
.y12b{bottom:849.681333pt;}
.y13f{bottom:853.814667pt;}
.y1a4{bottom:855.281333pt;}
.yb2{bottom:856.881333pt;}
.yf1{bottom:861.014667pt;}
.y173{bottom:862.881333pt;}
.y4c{bottom:863.014667pt;}
.y1c9{bottom:864.481333pt;}
.y27{bottom:864.748000pt;}
.yd3{bottom:868.614667pt;}
.y70{bottom:868.881333pt;}
.y12a{bottom:870.881333pt;}
.y8f{bottom:875.014667pt;}
.y1a3{bottom:876.481333pt;}
.yb1{bottom:878.081333pt;}
.y191{bottom:882.481333pt;}
.y172{bottom:883.948000pt;}
.y1c8{bottom:885.548000pt;}
.y26{bottom:885.948000pt;}
.y4b{bottom:889.414667pt;}
.yf0{bottom:889.681333pt;}
.y129{bottom:891.948000pt;}
.y111{bottom:896.081333pt;}
.yd2{bottom:897.281333pt;}
.y6f{bottom:897.548000pt;}
.yb0{bottom:899.148000pt;}
.y8e{bottom:903.681333pt;}
.y157{bottom:904.481333pt;}
.y171{bottom:905.148000pt;}
.y1c7{bottom:906.748000pt;}
.y25{bottom:907.014667pt;}
.y128{bottom:913.148000pt;}
.yd1{bottom:918.348000pt;}
.y6e{bottom:918.748000pt;}
.yaf{bottom:920.348000pt;}
.y4a{bottom:924.481333pt;}
.y110{bottom:924.748000pt;}
.y156{bottom:925.948000pt;}
.y170{bottom:926.214667pt;}
.y1c6{bottom:927.814667pt;}
.y24{bottom:928.214667pt;}
.y8d{bottom:932.348000pt;}
.yd0{bottom:939.548000pt;}
.y6d{bottom:939.814667pt;}
.yae{bottom:946.748000pt;}
.y16f{bottom:947.414667pt;}
.y1c5{bottom:949.014667pt;}
.y23{bottom:949.281333pt;}
.y49{bottom:953.148000pt;}
.y10f{bottom:953.414667pt;}
.ycf{bottom:960.614667pt;}
.y6c{bottom:961.014667pt;}
.y2{bottom:964.748000pt;}
.yad{bottom:968.214667pt;}
.y16e{bottom:968.481333pt;}
.y22{bottom:970.481333pt;}
.y127{bottom:974.614667pt;}
.y1c4{bottom:975.414667pt;}
.y48{bottom:981.814667pt;}
.y10e{bottom:982.081333pt;}
.y6b{bottom:989.681333pt;}
.y21{bottom:996.881333pt;}
.y47{bottom:1002.881333pt;}
.yac{bottom:1003.281333pt;}
.y6a{bottom:1010.748000pt;}
.y46{bottom:1029.281333pt;}
.y20{bottom:1031.948000pt;}
.h4{height:45.062500pt;}
.h7{height:45.093750pt;}
.h6{height:51.353125pt;}
.h5{height:54.104167pt;}
.h3{height:69.562500pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x2{left:99.733333pt;}
.x3{left:123.733333pt;}
.x5{left:389.066667pt;}
.x4{left:393.066667pt;}
}




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