
    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_a00e0a23fc4e0d4c5239dc07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_4818b6c4a52da4bd6723141c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e2326b3c026d248d4b20938c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d7581b164da2ab3f559bc5b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c3affae871363db6c4865cc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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;}
.m5{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.153780px;}
.ls2{letter-spacing:0.158468px;}
.ls4{letter-spacing:0.160888px;}
.lsc{letter-spacing:0.162413px;}
.lsd{letter-spacing:0.163013px;}
.ls9{letter-spacing:0.163034px;}
.lsf{letter-spacing:0.163288px;}
.lse{letter-spacing:0.163552px;}
.lsb{letter-spacing:0.163613px;}
.ls10{letter-spacing:0.164457px;}
.ls12{letter-spacing:0.166288px;}
.ls6{letter-spacing:0.166309px;}
.ls7{letter-spacing:0.166583px;}
.ls11{letter-spacing:0.166888px;}
.ls13{letter-spacing:5.917198px;}
.ls0{letter-spacing:15.282714px;}
.ls8{letter-spacing:152.129505px;}
.lsa{letter-spacing:152.165526px;}
.ls5{letter-spacing:155.731629px;}
.ls3{letter-spacing:155.767650px;}
.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:-16.415993px;}
.ws1{word-spacing:0.000000px;}
._27{margin-left:-11.045105px;}
._1f{margin-left:-8.666915px;}
._1{margin-left:-1.298261px;}
._2{width:1.051087px;}
._8{width:2.604321px;}
._7{width:4.215051px;}
._6{width:5.402834px;}
._4{width:7.071711px;}
._3{width:8.796607px;}
._11{width:9.808395px;}
._0{width:10.827975px;}
._5{width:12.295625px;}
._e{width:13.909213px;}
._9{width:15.385975px;}
._a{width:17.713972px;}
._d{width:19.669173px;}
._18{width:21.168562px;}
._1a{width:22.381597px;}
._10{width:23.822468px;}
._f{width:24.904204px;}
._12{width:26.740615px;}
._1c{width:27.935079px;}
._1b{width:28.986776px;}
._19{width:30.285012px;}
._17{width:32.091470px;}
._16{width:33.119846px;}
._28{width:34.866316px;}
._14{width:36.012430px;}
._15{width:37.123843px;}
._b{width:41.104683px;}
._c{width:42.395668px;}
._13{width:60.495963px;}
._1d{width:66.457355px;}
._1e{width:67.615473px;}
._24{width:844.436588px;}
._25{width:847.681940px;}
._22{width:893.612509px;}
._21{width:965.828768px;}
._23{width:982.500569px;}
._20{width:1228.210421px;}
._26{width:1287.454397px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.879999px;}
.fs4{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y135{bottom:-0.001011px;}
.y110{bottom:-0.000995px;}
.y161{bottom:-0.000837px;}
.y142{bottom:-0.000833px;}
.y11d{bottom:-0.000817px;}
.y0{bottom:0.000000px;}
.y153{bottom:0.000004px;}
.y132{bottom:4.138967px;}
.yea{bottom:4.138987px;}
.yed{bottom:4.139007px;}
.yf0{bottom:4.139027px;}
.yf3{bottom:4.139047px;}
.yf6{bottom:4.139066px;}
.yf9{bottom:4.139086px;}
.y7{bottom:4.140029px;}
.y8{bottom:57.540277px;}
.y6{bottom:74.100240px;}
.y5{bottom:98.759960px;}
.y4{bottom:119.459952px;}
.y152{bottom:139.260240px;}
.ye6{bottom:139.439944px;}
.y93{bottom:145.199942px;}
.y5d{bottom:152.039939px;}
.y12d{bottom:153.659939px;}
.y78{bottom:154.199938px;}
.ye5{bottom:156.539937px;}
.y24{bottom:159.419936px;}
.y199{bottom:159.779936px;}
.y107{bottom:162.299935px;}
.y151{bottom:162.659935px;}
.y187{bottom:166.979933px;}
.ycf{bottom:168.779932px;}
.y10c{bottom:171.299931px;}
.ye4{bottom:173.819930px;}
.y92{bottom:176.159930px;}
.y172{bottom:182.639927px;}
.y5c{bottom:182.999927px;}
.y77{bottom:185.159926px;}
.y23{bottom:190.379924px;}
.y198{bottom:190.739924px;}
.ye3{bottom:191.099924px;}
.yad{bottom:192.899923px;}
.y106{bottom:193.259923px;}
.y150{bottom:193.619923px;}
.ye2{bottom:194.879922px;}
.y186{bottom:197.939921px;}
.y40{bottom:199.739920px;}
.yc6{bottom:200.819920px;}
.y12c{bottom:202.619919px;}
.y91{bottom:207.119917px;}
.ye1{bottom:208.919916px;}
.y10b{bottom:211.259915px;}
.y171{bottom:213.599915px;}
.y5b{bottom:213.959914px;}
.y76{bottom:216.119914px;}
.y22{bottom:221.339911px;}
.y197{bottom:221.699911px;}
.yac{bottom:223.859910px;}
.y105{bottom:224.219910px;}
.y14f{bottom:224.579910px;}
.y3f{bottom:230.699908px;}
.yc5{bottom:231.779907px;}
.y12b{bottom:233.579907px;}
.y185{bottom:237.899905px;}
.y90{bottom:238.079905px;}
.y10a{bottom:242.219903px;}
.y5a{bottom:244.919902px;}
.y75{bottom:247.079901px;}
.y21{bottom:252.299899px;}
.y196{bottom:252.659899px;}
.y170{bottom:253.559899px;}
.yab{bottom:254.819898px;}
.y104{bottom:255.179898px;}
.y14e{bottom:255.539898px;}
.y3e{bottom:261.659895px;}
.yc4{bottom:262.739895px;}
.y12a{bottom:264.539894px;}
.y184{bottom:268.859892px;}
.y59{bottom:275.879890px;}
.y8f{bottom:278.219889px;}
.y109{bottom:282.179887px;}
.y20{bottom:283.259887px;}
.y195{bottom:283.619887px;}
.y16f{bottom:284.519886px;}
.y74{bottom:287.219885px;}
.ye0{bottom:287.939885px;}
.y3d{bottom:292.619883px;}
.yc3{bottom:293.699883px;}
.yaa{bottom:294.779882px;}
.y129{bottom:295.499882px;}
.y183{bottom:299.819880px;}
.yce{bottom:300.899880px;}
.y103{bottom:304.139878px;}
.y14d{bottom:304.499878px;}
.y58{bottom:307.019877px;}
.y8e{bottom:309.179876px;}
.y194{bottom:314.579874px;}
.y16e{bottom:315.479874px;}
.ydf{bottom:318.899872px;}
.y108{bottom:322.139871px;}
.y1f{bottom:322.679871px;}
.y3c{bottom:323.579871px;}
.yc2{bottom:324.659870px;}
.ya9{bottom:325.919870px;}
.y128{bottom:326.459869px;}
.y73{bottom:327.179869px;}
.y182{bottom:330.779868px;}
.y14c{bottom:335.459866px;}
.y57{bottom:337.979865px;}
.y8d{bottom:340.139864px;}
.y193{bottom:345.719862px;}
.y16d{bottom:346.439861px;}
.yde{bottom:349.859860px;}
.y102{bottom:353.099859px;}
.y3b{bottom:354.719858px;}
.ya8{bottom:356.879857px;}
.y127{bottom:357.419857px;}
.y72{bottom:358.139857px;}
.y181{bottom:361.919855px;}
.yc1{bottom:364.079854px;}
.y14b{bottom:366.419853px;}
.y56{bottom:368.939852px;}
.ycd{bottom:370.919852px;}
.y8c{bottom:371.099852px;}
.y130{bottom:375.419850px;}
.y192{bottom:376.679849px;}
.y16c{bottom:377.399849px;}
.ydd{bottom:380.819848px;}
.y3a{bottom:385.679846px;}
.y126{bottom:388.559845px;}
.y71{bottom:389.099844px;}
.y1e{bottom:392.519843px;}
.y180{bottom:392.879843px;}
.y101{bottom:393.959842px;}
.ya7{bottom:396.839841px;}
.y14a{bottom:397.559841px;}
.y55{bottom:399.899840px;}
.ycc{bottom:401.879839px;}
.y154{bottom:406.559837px;}
.y191{bottom:407.639837px;}
.y16b{bottom:408.359837px;}
.y8b{bottom:411.059836px;}
.ydc{bottom:411.959835px;}
.y12f{bottom:415.559834px;}
.y39{bottom:416.639833px;}
.y70{bottom:420.059832px;}
.y1d{bottom:423.479831px;}
.y17f{bottom:423.839830px;}
.y100{bottom:424.919830px;}
.ya6{bottom:427.799829px;}
.y149{bottom:428.519829px;}
.y54{bottom:430.859828px;}
.ycb{bottom:432.839827px;}
.yc0{bottom:433.919826px;}
.y125{bottom:437.519825px;}
.y190{bottom:438.599825px;}
.y16a{bottom:439.319824px;}
.y8a{bottom:442.019823px;}
.yda{bottom:442.919823px;}
.y12e{bottom:446.519821px;}
.ydb{bottom:447.419821px;}
.y38{bottom:447.599821px;}
.y6f{bottom:451.019820px;}
.y1c{bottom:454.439818px;}
.y17e{bottom:454.799818px;}
.ya5{bottom:458.759816px;}
.y53{bottom:461.819815px;}
.yca{bottom:463.799814px;}
.ybf{bottom:464.879814px;}
.y18f{bottom:469.559812px;}
.y169{bottom:470.459812px;}
.y89{bottom:472.979811px;}
.yd9{bottom:473.879810px;}
.y148{bottom:477.479809px;}
.y37{bottom:478.559809px;}
.y1b{bottom:485.399806px;}
.y17d{bottom:485.759806px;}
.y124{bottom:486.479805px;}
.y6e{bottom:490.979804px;}
.yc9{bottom:494.759802px;}
.ybe{bottom:495.839802px;}
.ya4{bottom:498.719801px;}
.y18e{bottom:500.519800px;}
.y168{bottom:501.419799px;}
.y52{bottom:501.779799px;}
.y88{bottom:503.939798px;}
.yd8{bottom:504.839798px;}
.y1a{bottom:516.359793px;}
.y17c{bottom:516.719793px;}
.y123{bottom:517.439793px;}
.y36{bottom:517.799793px;}
.y6d{bottom:521.939791px;}
.yc8{bottom:525.719790px;}
.y147{bottom:526.439789px;}
.yff{bottom:526.799789px;}
.ya3{bottom:529.679788px;}
.y18d{bottom:531.479787px;}
.y167{bottom:532.379787px;}
.y51{bottom:532.739787px;}
.y87{bottom:534.899786px;}
.ybd{bottom:535.799786px;}
.yb7{bottom:542.639783px;}
.y11c{bottom:543.720600px;}
.y19{bottom:547.319781px;}
.y17b{bottom:547.679781px;}
.y6c{bottom:552.899779px;}
.yc7{bottom:556.679777px;}
.y146{bottom:557.399777px;}
.yfe{bottom:557.759777px;}
.ya2{bottom:560.639776px;}
.y18c{bottom:562.439775px;}
.y86{bottom:566.039774px;}
.ybc{bottom:566.759773px;}
.y11b{bottom:567.119773px;}
.y166{bottom:569.999772px;}
.y50{bottom:572.879771px;}
.y18{bottom:578.279769px;}
.y17a{bottom:578.639769px;}
.yb6{bottom:582.599767px;}
.y141{bottom:583.680600px;}
.y6b{bottom:584.039766px;}
.y35{bottom:587.639765px;}
.yfd{bottom:588.719765px;}
.ya1{bottom:591.599763px;}
.y160{bottom:593.400600px;}
.y18b{bottom:593.579763px;}
.y85{bottom:596.999761px;}
.ybb{bottom:597.719761px;}
.y11a{bottom:598.079761px;}
.y4f{bottom:603.839758px;}
.y140{bottom:607.079757px;}
.y17{bottom:609.419756px;}
.y179{bottom:609.599756px;}
.yb5{bottom:613.739755px;}
.y6a{bottom:614.999754px;}
.y15f{bottom:616.979753px;}
.y34{bottom:618.599753px;}
.ya0{bottom:622.739751px;}
.y18a{bottom:624.539750px;}
.y84{bottom:627.959749px;}
.yba{bottom:628.679749px;}
.y119{bottom:629.039748px;}
.y4e{bottom:634.799746px;}
.yd7{bottom:635.519746px;}
.y13f{bottom:638.039745px;}
.y16{bottom:640.379744px;}
.y178{bottom:640.739744px;}
.yb4{bottom:644.699742px;}
.y69{bottom:645.959742px;}
.y15e{bottom:647.939741px;}
.y33{bottom:649.739740px;}
.y189{bottom:655.499738px;}
.y83{bottom:657.659737px;}
.yfc{bottom:659.819736px;}
.y118{bottom:660.179736px;}
.y9f{bottom:662.699735px;}
.y4d{bottom:665.759734px;}
.yb9{bottom:666.479733px;}
.y13e{bottom:669.179732px;}
.y15{bottom:671.339731px;}
.y177{bottom:671.699731px;}
.yb3{bottom:675.659730px;}
.y15d{bottom:678.899728px;}
.y32{bottom:680.699728px;}
.yd6{bottom:682.319727px;}
.y68{bottom:685.919726px;}
.yb8{bottom:690.419724px;}
.yfb{bottom:690.779724px;}
.y9e{bottom:693.659723px;}
.y188{bottom:694.739722px;}
.y13d{bottom:700.139720px;}
.y14{bottom:702.299719px;}
.y176{bottom:702.659719px;}
.y4c{bottom:705.719718px;}
.y82{bottom:706.619717px;}
.y117{bottom:709.139716px;}
.y15c{bottom:709.859716px;}
.y31{bottom:711.659715px;}
.y67{bottom:716.879713px;}
.y9d{bottom:724.619710px;}
.yfa{bottom:728.399709px;}
.yd5{bottom:731.999707px;}
.y13{bottom:733.259707px;}
.y175{bottom:733.619707px;}
.y81{bottom:737.579705px;}
.y116{bottom:740.099704px;}
.y30{bottom:742.619703px;}
.y4b{bottom:745.679702px;}
.yb2{bottom:746.579701px;}
.y66{bottom:747.839701px;}
.y13c{bottom:749.099700px;}
.y9c{bottom:755.579698px;}
.y15b{bottom:758.819696px;}
.y12{bottom:764.219694px;}
.y174{bottom:764.579694px;}
.y80{bottom:768.539693px;}
.y115{bottom:771.059692px;}
.y2f{bottom:773.579691px;}
.yf7{bottom:775.199690px;}
.yb1{bottom:777.539689px;}
.y65{bottom:778.799688px;}
.y13b{bottom:780.059688px;}
.yf8{bottom:780.060600px;}
.yd4{bottom:781.859687px;}
.y4a{bottom:785.639686px;}
.y9b{bottom:786.539685px;}
.y122{bottom:789.059684px;}
.y15a{bottom:789.779684px;}
.y11{bottom:795.179682px;}
.y173{bottom:795.539682px;}
.y7f{bottom:799.499680px;}
.y114{bottom:802.019679px;}
.y2e{bottom:804.539678px;}
.y64{bottom:809.759676px;}
.y13a{bottom:811.019676px;}
.y49{bottom:816.599673px;}
.yb0{bottom:817.499673px;}
.y121{bottom:820.019672px;}
.y159{bottom:820.739672px;}
.yf4{bottom:825.059670px;}
.y10{bottom:826.139670px;}
.y9a{bottom:826.499669px;}
.y145{bottom:829.019668px;}
.yf5{bottom:829.920600px;}
.y7e{bottom:830.459668px;}
.yd3{bottom:831.539667px;}
.y113{bottom:832.979667px;}
.y2d{bottom:835.499666px;}
.y63{bottom:840.899664px;}
.y139{bottom:841.979663px;}
.yaf{bottom:848.459661px;}
.y120{bottom:850.979660px;}
.y158{bottom:851.699659px;}
.y48{bottom:856.739657px;}
.yf{bottom:857.099657px;}
.y99{bottom:857.459657px;}
.y7d{bottom:861.599655px;}
.y2c{bottom:866.459653px;}
.y144{bottom:868.979652px;}
.y138{bottom:872.939651px;}
.yf1{bottom:874.739650px;}
.yae{bottom:879.599648px;}
.yf2{bottom:879.600600px;}
.y62{bottom:880.859648px;}
.yd2{bottom:881.219648px;}
.y112{bottom:881.939647px;}
.y157{bottom:882.659647px;}
.y47{bottom:887.699645px;}
.ye{bottom:888.239645px;}
.y98{bottom:888.599645px;}
.y11f{bottom:890.939644px;}
.y7c{bottom:892.559643px;}
.y2b{bottom:897.599641px;}
.y143{bottom:899.939640px;}
.y165{bottom:900.659640px;}
.y61{bottom:911.819635px;}
.y156{bottom:913.799634px;}
.y46{bottom:918.659633px;}
.yd{bottom:919.199632px;}
.y97{bottom:919.559632px;}
.y11e{bottom:921.899631px;}
.y7b{bottom:923.519631px;}
.yee{bottom:924.419630px;}
.y2a{bottom:928.559629px;}
.yef{bottom:929.280600px;}
.yd1{bottom:930.899628px;}
.y164{bottom:931.799627px;}
.y60{bottom:942.779623px;}
.y45{bottom:949.619620px;}
.yc{bottom:950.159620px;}
.y96{bottom:950.519620px;}
.y29{bottom:959.519616px;}
.y111{bottom:962.039615px;}
.y155{bottom:962.759615px;}
.y7a{bottom:963.479615px;}
.y137{bottom:971.039612px;}
.y163{bottom:971.759611px;}
.y5f{bottom:973.739611px;}
.yeb{bottom:974.279610px;}
.yec{bottom:979.140600px;}
.y44{bottom:980.579608px;}
.yd0{bottom:980.759608px;}
.yb{bottom:981.119608px;}
.y95{bottom:981.479607px;}
.y10f{bottom:988.320600px;}
.y28{bottom:990.479604px;}
.y136{bottom:1001.999599px;}
.y162{bottom:1002.719599px;}
.y5e{bottom:1003.439599px;}
.y43{bottom:1011.539595px;}
.y10e{bottom:1011.719595px;}
.y94{bottom:1012.439595px;}
.ya{bottom:1020.359592px;}
.y27{bottom:1021.439591px;}
.ye8{bottom:1023.959590px;}
.y134{bottom:1028.280600px;}
.ye9{bottom:1028.820600px;}
.y42{bottom:1041.239584px;}
.y10d{bottom:1042.679583px;}
.y79{bottom:1043.399583px;}
.y9{bottom:1044.479582px;}
.y133{bottom:1051.679579px;}
.y26{bottom:1052.399579px;}
.ye7{bottom:1073.639571px;}
.y131{bottom:1078.500600px;}
.y41{bottom:1080.479568px;}
.y25{bottom:1083.359567px;}
.y3{bottom:1104.239558px;}
.y2{bottom:1124.939550px;}
.y1{bottom:1141.319543px;}
.ha{height:0.720000px;}
.hb{height:2.096718px;}
.hc{height:2.099530px;}
.h2{height:20.520000px;}
.h9{height:20.700000px;}
.h8{height:28.343661px;}
.h7{height:35.167134px;}
.h6{height:43.565256px;}
.h4{height:52.417948px;}
.h1{height:52.488260px;}
.h5{height:75.093720px;}
.h3{height:87.859652px;}
.h0{height:1263.000000px;}
.w3{width:0.360000px;}
.w6{width:4.680000px;}
.w1{width:8.280000px;}
.w2{width:28.800000px;}
.w5{width:61.560000px;}
.w4{width:80.640000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.619775px;}
.x16{left:130.499640px;}
.x12{left:132.119947px;}
.x17{left:138.599640px;}
.x5{left:148.859940px;}
.xa{left:160.019936px;}
.xe{left:167.760236px;}
.x3{left:180.719756px;}
.x19{left:219.240000px;}
.x13{left:232.739907px;}
.x9{left:234.721177px;}
.x8{left:273.959746px;}
.x1a{left:280.800000px;}
.xb{left:288.719127px;}
.x6{left:314.459821px;}
.x18{left:341.100013px;}
.x7{left:347.579756px;}
.xd{left:353.699859px;}
.xf{left:399.059840px;}
.x1{left:404.279838px;}
.x4{left:511.380000px;}
.x14{left:596.700000px;}
.x10{left:598.139761px;}
.x11{left:603.719759px;}
.x15{left:625.500000px;}
.xc{left:702.539719px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.136693pt;}
.ls2{letter-spacing:0.140860pt;}
.ls4{letter-spacing:0.143011pt;}
.lsc{letter-spacing:0.144367pt;}
.lsd{letter-spacing:0.144900pt;}
.ls9{letter-spacing:0.144919pt;}
.lsf{letter-spacing:0.145144pt;}
.lse{letter-spacing:0.145380pt;}
.lsb{letter-spacing:0.145434pt;}
.ls10{letter-spacing:0.146184pt;}
.ls12{letter-spacing:0.147811pt;}
.ls6{letter-spacing:0.147830pt;}
.ls7{letter-spacing:0.148074pt;}
.ls11{letter-spacing:0.148344pt;}
.ls13{letter-spacing:5.259731pt;}
.ls0{letter-spacing:13.584635pt;}
.ls8{letter-spacing:135.226227pt;}
.lsa{letter-spacing:135.258246pt;}
.ls5{letter-spacing:138.428115pt;}
.ls3{letter-spacing:138.460133pt;}
.ws0{word-spacing:-14.591994pt;}
.ws1{word-spacing:0.000000pt;}
._27{margin-left:-9.817871pt;}
._1f{margin-left:-7.703924pt;}
._1{margin-left:-1.154009pt;}
._2{width:0.934300pt;}
._8{width:2.314952pt;}
._7{width:3.746712pt;}
._6{width:4.802519pt;}
._4{width:6.285965pt;}
._3{width:7.819207pt;}
._11{width:8.718573pt;}
._0{width:9.624867pt;}
._5{width:10.929445pt;}
._e{width:12.363745pt;}
._9{width:13.676422pt;}
._a{width:15.745753pt;}
._d{width:17.483709pt;}
._18{width:18.816500pt;}
._1a{width:19.894753pt;}
._10{width:21.175527pt;}
._f{width:22.137070pt;}
._12{width:23.769436pt;}
._1c{width:24.831182pt;}
._1b{width:25.766023pt;}
._19{width:26.920011pt;}
._17{width:28.525751pt;}
._16{width:29.439863pt;}
._28{width:30.992281pt;}
._14{width:32.011049pt;}
._15{width:32.998971pt;}
._b{width:36.537496pt;}
._c{width:37.685038pt;}
._13{width:53.774189pt;}
._1d{width:59.073204pt;}
._1e{width:60.102643pt;}
._24{width:750.610300pt;}
._25{width:753.495058pt;}
._22{width:794.322230pt;}
._21{width:858.514460pt;}
._23{width:873.333839pt;}
._20{width:1091.742596pt;}
._26{width:1144.403909pt;}
.fs5{font-size:2.559999pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y135{bottom:-0.000899pt;}
.y110{bottom:-0.000885pt;}
.y161{bottom:-0.000744pt;}
.y142{bottom:-0.000741pt;}
.y11d{bottom:-0.000727pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:0.000004pt;}
.y132{bottom:3.679082pt;}
.yea{bottom:3.679099pt;}
.yed{bottom:3.679117pt;}
.yf0{bottom:3.679135pt;}
.yf3{bottom:3.679152pt;}
.yf6{bottom:3.679170pt;}
.yf9{bottom:3.679188pt;}
.y7{bottom:3.680026pt;}
.y8{bottom:51.146913pt;}
.y6{bottom:65.866880pt;}
.y5{bottom:87.786632pt;}
.y4{bottom:106.186624pt;}
.y152{bottom:123.786880pt;}
.ye6{bottom:123.946617pt;}
.y93{bottom:129.066615pt;}
.y5d{bottom:135.146613pt;}
.y12d{bottom:136.586612pt;}
.y78{bottom:137.066612pt;}
.ye5{bottom:139.146611pt;}
.y24{bottom:141.706610pt;}
.y199{bottom:142.026610pt;}
.y107{bottom:144.266609pt;}
.y151{bottom:144.586609pt;}
.y187{bottom:148.426607pt;}
.ycf{bottom:150.026607pt;}
.y10c{bottom:152.266606pt;}
.ye4{bottom:154.506605pt;}
.y92{bottom:156.586604pt;}
.y172{bottom:162.346602pt;}
.y5c{bottom:162.666602pt;}
.y77{bottom:164.586601pt;}
.y23{bottom:169.226599pt;}
.y198{bottom:169.546599pt;}
.ye3{bottom:169.866599pt;}
.yad{bottom:171.466598pt;}
.y106{bottom:171.786598pt;}
.y150{bottom:172.106598pt;}
.ye2{bottom:173.226597pt;}
.y186{bottom:175.946596pt;}
.y40{bottom:177.546596pt;}
.yc6{bottom:178.506595pt;}
.y12c{bottom:180.106595pt;}
.y91{bottom:184.106593pt;}
.ye1{bottom:185.706592pt;}
.y10b{bottom:187.786592pt;}
.y171{bottom:189.866591pt;}
.y5b{bottom:190.186591pt;}
.y76{bottom:192.106590pt;}
.y22{bottom:196.746588pt;}
.y197{bottom:197.066588pt;}
.yac{bottom:198.986587pt;}
.y105{bottom:199.306587pt;}
.y14f{bottom:199.626587pt;}
.y3f{bottom:205.066585pt;}
.yc5{bottom:206.026584pt;}
.y12b{bottom:207.626584pt;}
.y185{bottom:211.466582pt;}
.y90{bottom:211.626582pt;}
.y10a{bottom:215.306581pt;}
.y5a{bottom:217.706580pt;}
.y75{bottom:219.626579pt;}
.y21{bottom:224.266577pt;}
.y196{bottom:224.586577pt;}
.y170{bottom:225.386577pt;}
.yab{bottom:226.506576pt;}
.y104{bottom:226.826576pt;}
.y14e{bottom:227.146576pt;}
.y3e{bottom:232.586574pt;}
.yc4{bottom:233.546573pt;}
.y12a{bottom:235.146573pt;}
.y184{bottom:238.986571pt;}
.y59{bottom:245.226569pt;}
.y8f{bottom:247.306568pt;}
.y109{bottom:250.826566pt;}
.y20{bottom:251.786566pt;}
.y195{bottom:252.106566pt;}
.y16f{bottom:252.906566pt;}
.y74{bottom:255.306565pt;}
.ye0{bottom:255.946564pt;}
.y3d{bottom:260.106563pt;}
.yc3{bottom:261.066562pt;}
.yaa{bottom:262.026562pt;}
.y129{bottom:262.666562pt;}
.y183{bottom:266.506560pt;}
.yce{bottom:267.466560pt;}
.y103{bottom:270.346559pt;}
.y14d{bottom:270.666558pt;}
.y58{bottom:272.906558pt;}
.y8e{bottom:274.826557pt;}
.y194{bottom:279.626555pt;}
.y16e{bottom:280.426554pt;}
.ydf{bottom:283.466553pt;}
.y108{bottom:286.346552pt;}
.y1f{bottom:286.826552pt;}
.y3c{bottom:287.626552pt;}
.yc2{bottom:288.586551pt;}
.ya9{bottom:289.706551pt;}
.y128{bottom:290.186551pt;}
.y73{bottom:290.826550pt;}
.y182{bottom:294.026549pt;}
.y14c{bottom:298.186547pt;}
.y57{bottom:300.426546pt;}
.y8d{bottom:302.346546pt;}
.y193{bottom:307.306544pt;}
.y16d{bottom:307.946543pt;}
.yde{bottom:310.986542pt;}
.y102{bottom:313.866541pt;}
.y3b{bottom:315.306541pt;}
.ya8{bottom:317.226540pt;}
.y127{bottom:317.706540pt;}
.y72{bottom:318.346539pt;}
.y181{bottom:321.706538pt;}
.yc1{bottom:323.626537pt;}
.y14b{bottom:325.706536pt;}
.y56{bottom:327.946535pt;}
.ycd{bottom:329.706535pt;}
.y8c{bottom:329.866535pt;}
.y130{bottom:333.706533pt;}
.y192{bottom:334.826533pt;}
.y16c{bottom:335.466532pt;}
.ydd{bottom:338.506531pt;}
.y3a{bottom:342.826530pt;}
.y126{bottom:345.386529pt;}
.y71{bottom:345.866528pt;}
.y1e{bottom:348.906527pt;}
.y180{bottom:349.226527pt;}
.y101{bottom:350.186527pt;}
.ya7{bottom:352.746526pt;}
.y14a{bottom:353.386525pt;}
.y55{bottom:355.466524pt;}
.ycc{bottom:357.226524pt;}
.y154{bottom:361.386522pt;}
.y191{bottom:362.346522pt;}
.y16b{bottom:362.986521pt;}
.y8b{bottom:365.386521pt;}
.ydc{bottom:366.186520pt;}
.y12f{bottom:369.386519pt;}
.y39{bottom:370.346519pt;}
.y70{bottom:373.386517pt;}
.y1d{bottom:376.426516pt;}
.y17f{bottom:376.746516pt;}
.y100{bottom:377.706516pt;}
.ya6{bottom:380.266515pt;}
.y149{bottom:380.906514pt;}
.y54{bottom:382.986513pt;}
.ycb{bottom:384.746513pt;}
.yc0{bottom:385.706512pt;}
.y125{bottom:388.906511pt;}
.y190{bottom:389.866511pt;}
.y16a{bottom:390.506510pt;}
.y8a{bottom:392.906510pt;}
.yda{bottom:393.706509pt;}
.y12e{bottom:396.906508pt;}
.ydb{bottom:397.706508pt;}
.y38{bottom:397.866508pt;}
.y6f{bottom:400.906506pt;}
.y1c{bottom:403.946505pt;}
.y17e{bottom:404.266505pt;}
.ya5{bottom:407.786504pt;}
.y53{bottom:410.506502pt;}
.yca{bottom:412.266502pt;}
.ybf{bottom:413.226501pt;}
.y18f{bottom:417.386500pt;}
.y169{bottom:418.186499pt;}
.y89{bottom:420.426498pt;}
.yd9{bottom:421.226498pt;}
.y148{bottom:424.426497pt;}
.y37{bottom:425.386497pt;}
.y1b{bottom:431.466494pt;}
.y17d{bottom:431.786494pt;}
.y124{bottom:432.426494pt;}
.y6e{bottom:436.426492pt;}
.yc9{bottom:439.786491pt;}
.ybe{bottom:440.746490pt;}
.ya4{bottom:443.306489pt;}
.y18e{bottom:444.906489pt;}
.y168{bottom:445.706488pt;}
.y52{bottom:446.026488pt;}
.y88{bottom:447.946487pt;}
.yd8{bottom:448.746487pt;}
.y1a{bottom:458.986483pt;}
.y17c{bottom:459.306483pt;}
.y123{bottom:459.946483pt;}
.y36{bottom:460.266483pt;}
.y6d{bottom:463.946481pt;}
.yc8{bottom:467.306480pt;}
.y147{bottom:467.946479pt;}
.yff{bottom:468.266479pt;}
.ya3{bottom:470.826478pt;}
.y18d{bottom:472.426478pt;}
.y167{bottom:473.226477pt;}
.y51{bottom:473.546477pt;}
.y87{bottom:475.466476pt;}
.ybd{bottom:476.266476pt;}
.yb7{bottom:482.346474pt;}
.y11c{bottom:483.307200pt;}
.y19{bottom:486.506472pt;}
.y17b{bottom:486.826472pt;}
.y6c{bottom:491.466470pt;}
.yc7{bottom:494.826469pt;}
.y146{bottom:495.466468pt;}
.yfe{bottom:495.786468pt;}
.ya2{bottom:498.346467pt;}
.y18c{bottom:499.946467pt;}
.y86{bottom:503.146465pt;}
.ybc{bottom:503.786465pt;}
.y11b{bottom:504.106465pt;}
.y166{bottom:506.666464pt;}
.y50{bottom:509.226463pt;}
.y18{bottom:514.026461pt;}
.y17a{bottom:514.346461pt;}
.yb6{bottom:517.866460pt;}
.y141{bottom:518.827200pt;}
.y6b{bottom:519.146459pt;}
.y35{bottom:522.346458pt;}
.yfd{bottom:523.306457pt;}
.ya1{bottom:525.866456pt;}
.y160{bottom:527.467200pt;}
.y18b{bottom:527.626456pt;}
.y85{bottom:530.666454pt;}
.ybb{bottom:531.306454pt;}
.y11a{bottom:531.626454pt;}
.y4f{bottom:536.746452pt;}
.y140{bottom:539.626451pt;}
.y17{bottom:541.706450pt;}
.y179{bottom:541.866450pt;}
.yb5{bottom:545.546448pt;}
.y6a{bottom:546.666448pt;}
.y15f{bottom:548.426447pt;}
.y34{bottom:549.866447pt;}
.ya0{bottom:553.546445pt;}
.y18a{bottom:555.146445pt;}
.y84{bottom:558.186443pt;}
.yba{bottom:558.826443pt;}
.y119{bottom:559.146443pt;}
.y4e{bottom:564.266441pt;}
.yd7{bottom:564.906441pt;}
.y13f{bottom:567.146440pt;}
.y16{bottom:569.226439pt;}
.y178{bottom:569.546439pt;}
.yb4{bottom:573.066437pt;}
.y69{bottom:574.186437pt;}
.y15e{bottom:575.946436pt;}
.y33{bottom:577.546436pt;}
.y189{bottom:582.666434pt;}
.y83{bottom:584.586433pt;}
.yfc{bottom:586.506432pt;}
.y118{bottom:586.826432pt;}
.y9f{bottom:589.066431pt;}
.y4d{bottom:591.786430pt;}
.yb9{bottom:592.426430pt;}
.y13e{bottom:594.826429pt;}
.y15{bottom:596.746428pt;}
.y177{bottom:597.066428pt;}
.yb3{bottom:600.586426pt;}
.y15d{bottom:603.466425pt;}
.y32{bottom:605.066425pt;}
.yd6{bottom:606.506424pt;}
.y68{bottom:609.706423pt;}
.yb8{bottom:613.706421pt;}
.yfb{bottom:614.026421pt;}
.y9e{bottom:616.586420pt;}
.y188{bottom:617.546420pt;}
.y13d{bottom:622.346418pt;}
.y14{bottom:624.266417pt;}
.y176{bottom:624.586417pt;}
.y4c{bottom:627.306416pt;}
.y82{bottom:628.106415pt;}
.y117{bottom:630.346415pt;}
.y15c{bottom:630.986414pt;}
.y31{bottom:632.586414pt;}
.y67{bottom:637.226412pt;}
.y9d{bottom:644.106409pt;}
.yfa{bottom:647.466408pt;}
.yd5{bottom:650.666406pt;}
.y13{bottom:651.786406pt;}
.y175{bottom:652.106406pt;}
.y81{bottom:655.626404pt;}
.y116{bottom:657.866404pt;}
.y30{bottom:660.106403pt;}
.y4b{bottom:662.826402pt;}
.yb2{bottom:663.626401pt;}
.y66{bottom:664.746401pt;}
.y13c{bottom:665.866400pt;}
.y9c{bottom:671.626398pt;}
.y15b{bottom:674.506397pt;}
.y12{bottom:679.306395pt;}
.y174{bottom:679.626395pt;}
.y80{bottom:683.146393pt;}
.y115{bottom:685.386393pt;}
.y2f{bottom:687.626392pt;}
.yf7{bottom:689.066391pt;}
.yb1{bottom:691.146390pt;}
.y65{bottom:692.266390pt;}
.y13b{bottom:693.386389pt;}
.yf8{bottom:693.387200pt;}
.yd4{bottom:694.986389pt;}
.y4a{bottom:698.346387pt;}
.y9b{bottom:699.146387pt;}
.y122{bottom:701.386386pt;}
.y15a{bottom:702.026386pt;}
.y11{bottom:706.826384pt;}
.y173{bottom:707.146384pt;}
.y7f{bottom:710.666382pt;}
.y114{bottom:712.906382pt;}
.y2e{bottom:715.146381pt;}
.y64{bottom:719.786379pt;}
.y13a{bottom:720.906378pt;}
.y49{bottom:725.866376pt;}
.yb0{bottom:726.666376pt;}
.y121{bottom:728.906375pt;}
.y159{bottom:729.546375pt;}
.yf4{bottom:733.386373pt;}
.y10{bottom:734.346373pt;}
.y9a{bottom:734.666373pt;}
.y145{bottom:736.906372pt;}
.yf5{bottom:737.707200pt;}
.y7e{bottom:738.186371pt;}
.yd3{bottom:739.146371pt;}
.y113{bottom:740.426370pt;}
.y2d{bottom:742.666370pt;}
.y63{bottom:747.466368pt;}
.y139{bottom:748.426367pt;}
.yaf{bottom:754.186365pt;}
.y120{bottom:756.426364pt;}
.y158{bottom:757.066364pt;}
.y48{bottom:761.546362pt;}
.yf{bottom:761.866362pt;}
.y99{bottom:762.186362pt;}
.y7d{bottom:765.866360pt;}
.y2c{bottom:770.186359pt;}
.y144{bottom:772.426358pt;}
.y138{bottom:775.946356pt;}
.yf1{bottom:777.546356pt;}
.yae{bottom:781.866354pt;}
.yf2{bottom:781.867200pt;}
.y62{bottom:782.986353pt;}
.yd2{bottom:783.306353pt;}
.y112{bottom:783.946353pt;}
.y157{bottom:784.586353pt;}
.y47{bottom:789.066351pt;}
.ye{bottom:789.546351pt;}
.y98{bottom:789.866351pt;}
.y11f{bottom:791.946350pt;}
.y7c{bottom:793.386349pt;}
.y2b{bottom:797.866348pt;}
.y143{bottom:799.946347pt;}
.y165{bottom:800.586346pt;}
.y61{bottom:810.506342pt;}
.y156{bottom:812.266342pt;}
.y46{bottom:816.586340pt;}
.yd{bottom:817.066340pt;}
.y97{bottom:817.386340pt;}
.y11e{bottom:819.466339pt;}
.y7b{bottom:820.906338pt;}
.yee{bottom:821.706338pt;}
.y2a{bottom:825.386337pt;}
.yef{bottom:826.027200pt;}
.yd1{bottom:827.466336pt;}
.y164{bottom:828.266335pt;}
.y60{bottom:838.026331pt;}
.y45{bottom:844.106329pt;}
.yc{bottom:844.586329pt;}
.y96{bottom:844.906329pt;}
.y29{bottom:852.906326pt;}
.y111{bottom:855.146325pt;}
.y155{bottom:855.786324pt;}
.y7a{bottom:856.426324pt;}
.y137{bottom:863.146321pt;}
.y163{bottom:863.786321pt;}
.y5f{bottom:865.546320pt;}
.yeb{bottom:866.026320pt;}
.yec{bottom:870.347200pt;}
.y44{bottom:871.626318pt;}
.yd0{bottom:871.786318pt;}
.yb{bottom:872.106318pt;}
.y95{bottom:872.426318pt;}
.y10f{bottom:878.507200pt;}
.y28{bottom:880.426314pt;}
.y136{bottom:890.666310pt;}
.y162{bottom:891.306310pt;}
.y5e{bottom:891.946310pt;}
.y43{bottom:899.146307pt;}
.y10e{bottom:899.306307pt;}
.y94{bottom:899.946307pt;}
.ya{bottom:906.986304pt;}
.y27{bottom:907.946303pt;}
.ye8{bottom:910.186303pt;}
.y134{bottom:914.027200pt;}
.ye9{bottom:914.507200pt;}
.y42{bottom:925.546296pt;}
.y10d{bottom:926.826296pt;}
.y79{bottom:927.466296pt;}
.y9{bottom:928.426295pt;}
.y133{bottom:934.826293pt;}
.y26{bottom:935.466292pt;}
.ye7{bottom:954.346285pt;}
.y131{bottom:958.667200pt;}
.y41{bottom:960.426282pt;}
.y25{bottom:962.986281pt;}
.y3{bottom:981.546274pt;}
.y2{bottom:999.946267pt;}
.y1{bottom:1014.506261pt;}
.ha{height:0.640000pt;}
.hb{height:1.863749pt;}
.hc{height:1.866249pt;}
.h2{height:18.240000pt;}
.h9{height:18.400000pt;}
.h8{height:25.194365pt;}
.h7{height:31.259675pt;}
.h6{height:38.724672pt;}
.h4{height:46.593731pt;}
.h1{height:46.656231pt;}
.h5{height:66.749973pt;}
.h3{height:78.097469pt;}
.h0{height:1122.666667pt;}
.w3{width:0.320000pt;}
.w6{width:4.160000pt;}
.w1{width:7.360000pt;}
.w2{width:25.600000pt;}
.w5{width:54.720000pt;}
.w4{width:71.680000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.439800pt;}
.x16{left:115.999680pt;}
.x12{left:117.439953pt;}
.x17{left:123.199680pt;}
.x5{left:132.319947pt;}
.xa{left:142.239943pt;}
.xe{left:149.120210pt;}
.x3{left:160.639783pt;}
.x19{left:194.880000pt;}
.x13{left:206.879917pt;}
.x9{left:208.641046pt;}
.x8{left:243.519775pt;}
.x1a{left:249.600000pt;}
.xb{left:256.639224pt;}
.x6{left:279.519841pt;}
.x18{left:303.200012pt;}
.x7{left:308.959783pt;}
.xd{left:314.399874pt;}
.xf{left:354.719858pt;}
.x1{left:359.359856pt;}
.x4{left:454.560000pt;}
.x14{left:530.400000pt;}
.x10{left:531.679787pt;}
.x11{left:536.639785pt;}
.x15{left:556.000000pt;}
.xc{left:624.479750pt;}
}




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