
    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_3908833af390c6bb30c8a4de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_bba28bd607946a7f9bd3addc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_730e979fddf71756ecbf849a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_9696ec0465eff27cece4b6be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.978000px;}
.v1{vertical-align:20.976000px;}
.v5{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.006296px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls5{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.022037px;}
.ls7{letter-spacing:0.185744px;}
.lsa{letter-spacing:0.390377px;}
.ls4{letter-spacing:0.513157px;}
.ls8{letter-spacing:1.689600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws7{word-spacing:-11.880000px;}
.ws3{word-spacing:-10.004280px;}
.ws9{word-spacing:-8.465160px;}
.ws2{word-spacing:-8.080380px;}
.ws6{word-spacing:-6.932336px;}
.ws5{word-spacing:-6.926040px;}
.ws1{word-spacing:-0.032400px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-23.643900px;}
._24{margin-left:-9.120900px;}
._18{margin-left:-7.701000px;}
._4{margin-left:-5.954100px;}
._2{margin-left:-4.063500px;}
._0{margin-left:-3.040200px;}
._1{margin-left:-1.379700px;}
._3{width:1.356300px;}
._b{width:2.455200px;}
._5{width:4.218600px;}
._6{width:5.345700px;}
._15{width:6.430200px;}
._8{width:7.528500px;}
._7{width:8.593200px;}
._1b{width:9.628800px;}
._12{width:10.659300px;}
._e{width:11.893200px;}
._c{width:13.127400px;}
._1c{width:14.271900px;}
._16{width:15.632400px;}
._a{width:16.927800px;}
._9{width:18.011700px;}
._17{width:19.668000px;}
._1a{width:20.997300px;}
._f{width:22.334400px;}
._13{width:24.222000px;}
._14{width:25.291200px;}
._d{width:26.796000px;}
._1d{width:28.661700px;}
._10{width:29.931000px;}
._11{width:31.007700px;}
._21{width:32.062800px;}
._23{width:34.042200px;}
._22{width:37.026000px;}
._20{width:43.645800px;}
._1f{width:59.056800px;}
._1e{width:165.792300px;}
.fc2{color:rgb(48,45,44);}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.ybc{bottom:123.419400px;}
.y27{bottom:124.583400px;}
.y130{bottom:127.802400px;}
.y10f{bottom:127.914900px;}
.y4e{bottom:132.903900px;}
.y174{bottom:134.136900px;}
.y1b0{bottom:136.386900px;}
.y96{bottom:137.253900px;}
.y18c{bottom:138.149400px;}
.y1f4{bottom:138.402900px;}
.y12f{bottom:139.506900px;}
.ybb{bottom:139.619400px;}
.y26{bottom:140.783400px;}
.y1cb{bottom:143.886900px;}
.yca{bottom:144.114900px;}
.y4d{bottom:150.903900px;}
.y173{bottom:152.886900px;}
.y1af{bottom:155.136900px;}
.y72{bottom:155.399400px;}
.y12e{bottom:155.706900px;}
.ycc{bottom:155.819400px;}
.y18b{bottom:156.149400px;}
.y1f3{bottom:157.152900px;}
.y95{bottom:157.949400px;}
.yba{bottom:160.314900px;}
.y25{bottom:161.478900px;}
.y1ca{bottom:162.636900px;}
.y74{bottom:168.224400px;}
.y172{bottom:171.636900px;}
.ycb{bottom:172.019400px;}
.y4c{bottom:173.399400px;}
.y8d{bottom:174.149400px;}
.y1f2{bottom:175.902900px;}
.y12d{bottom:176.402400px;}
.yb4{bottom:176.514900px;}
.y24{bottom:177.678900px;}
.y1ae{bottom:178.386900px;}
.y192{bottom:180.636900px;}
.y1c9{bottom:181.386900px;}
.y189{bottom:185.136900px;}
.yb3{bottom:188.219400px;}
.y73{bottom:188.919900px;}
.y8c{bottom:190.349400px;}
.y18a{bottom:190.352400px;}
.y171{bottom:190.386900px;}
.yec{bottom:190.836900px;}
.y12b{bottom:192.602400px;}
.y111{bottom:192.714900px;}
.y23{bottom:193.878900px;}
.y1f1{bottom:194.652900px;}
.y1ad{bottom:197.136900px;}
.y191{bottom:199.386900px;}
.y71{bottom:200.624400px;}
.y8b{bottom:202.053900px;}
.y4b{bottom:203.144400px;}
.y188{bottom:203.886900px;}
.yb2{bottom:204.419400px;}
.y1c8{bottom:204.636900px;}
.y12a{bottom:208.802400px;}
.y110{bottom:208.914900px;}
.y170{bottom:209.136900px;}
.yeb{bottom:210.036900px;}
.y1f0{bottom:213.402900px;}
.y1ac{bottom:215.886900px;}
.y70{bottom:216.824400px;}
.y190{bottom:218.136900px;}
.y4a{bottom:221.894400px;}
.y187{bottom:222.636900px;}
.y8a{bottom:222.749400px;}
.y22{bottom:224.652900px;}
.y128{bottom:225.002400px;}
.yb1{bottom:225.114900px;}
.y16f{bottom:227.886900px;}
.yea{bottom:229.236900px;}
.y19e{bottom:230.136900px;}
.y1ef{bottom:232.152900px;}
.y6f{bottom:233.024400px;}
.y89{bottom:234.453900px;}
.y18f{bottom:236.886900px;}
.y1ab{bottom:239.136900px;}
.y1c7{bottom:240.636900px;}
.y49{bottom:240.644400px;}
.y129{bottom:241.202400px;}
.yb0{bottom:241.314900px;}
.y186{bottom:241.386900px;}
.y21{bottom:243.402900px;}
.y127{bottom:243.636900px;}
.y10e{bottom:246.186900px;}
.yc9{bottom:246.636900px;}
.ye9{bottom:248.436900px;}
.y19d{bottom:248.886900px;}
.y6e{bottom:249.224400px;}
.y88{bottom:250.653900px;}
.y1ee{bottom:250.902900px;}
.y16b{bottom:252.186900px;}
.y18e{bottom:255.636900px;}
.y12c{bottom:257.402400px;}
.yb5{bottom:257.514900px;}
.y1aa{bottom:257.886900px;}
.y48{bottom:259.394400px;}
.y185{bottom:260.136900px;}
.y20{bottom:262.152900px;}
.y126{bottom:262.386900px;}
.y1c6{bottom:263.136900px;}
.y194{bottom:263.886900px;}
.y10d{bottom:264.936900px;}
.yc8{bottom:265.386900px;}
.y6d{bottom:265.424400px;}
.ye8{bottom:267.636900px;}
.yb9{bottom:269.219400px;}
.y1ed{bottom:269.652900px;}
.y16a{bottom:270.936900px;}
.y87{bottom:271.349400px;}
.y14b{bottom:273.786900px;}
.y1a9{bottom:276.636900px;}
.y47{bottom:278.144400px;}
.y184{bottom:278.886900px;}
.y1f{bottom:280.902900px;}
.y125{bottom:281.136900px;}
.y193{bottom:282.636900px;}
.y94{bottom:283.053900px;}
.y18d{bottom:283.386900px;}
.y10c{bottom:283.686900px;}
.yc7{bottom:284.136900px;}
.yb8{bottom:285.419400px;}
.y6c{bottom:286.119900px;}
.y19c{bottom:286.386900px;}
.ye7{bottom:286.836900px;}
.y1ec{bottom:288.402900px;}
.y169{bottom:289.686900px;}
.y14a{bottom:293.136900px;}
.y46{bottom:296.894400px;}
.y183{bottom:297.636900px;}
.y1c5{bottom:299.136900px;}
.y93{bottom:299.253900px;}
.y1e{bottom:299.652900px;}
.y1a8{bottom:299.886900px;}
.y124{bottom:301.386900px;}
.yb7{bottom:301.619400px;}
.y10b{bottom:302.436900px;}
.yc6{bottom:302.886900px;}
.y19b{bottom:305.136900px;}
.y1eb{bottom:307.152900px;}
.ye6{bottom:307.536900px;}
.y168{bottom:308.436900px;}
.y6b{bottom:309.636900px;}
.y149{bottom:312.486900px;}
.y45{bottom:315.644400px;}
.y182{bottom:316.386900px;}
.y1d{bottom:318.402900px;}
.y1a7{bottom:318.636900px;}
.y92{bottom:319.949400px;}
.y123{bottom:320.136900px;}
.y10a{bottom:321.186900px;}
.yc5{bottom:321.636900px;}
.yb6{bottom:322.314900px;}
.y1ea{bottom:325.902900px;}
.ye5{bottom:326.736900px;}
.y167{bottom:327.186900px;}
.y6a{bottom:328.386900px;}
.y91{bottom:330.903900px;}
.y148{bottom:331.836900px;}
.y19a{bottom:332.886900px;}
.y44{bottom:334.394400px;}
.y181{bottom:335.136900px;}
.y1c{bottom:337.152900px;}
.y122{bottom:338.886900px;}
.y1c4{bottom:339.636900px;}
.y109{bottom:339.936900px;}
.yc4{bottom:340.386900px;}
.y1a6{bottom:341.886900px;}
.y1e9{bottom:344.652900px;}
.ye4{bottom:345.936900px;}
.y69{bottom:347.136900px;}
.y90{bottom:348.903900px;}
.y147{bottom:351.186900px;}
.y43{bottom:353.144400px;}
.y180{bottom:353.886900px;}
.y1b{bottom:355.902900px;}
.y121{bottom:357.636900px;}
.y108{bottom:358.686900px;}
.yc3{bottom:359.136900px;}
.y1a5{bottom:360.636900px;}
.y1e8{bottom:363.402900px;}
.y166{bottom:364.686900px;}
.ye3{bottom:365.136900px;}
.y8f{bottom:366.903900px;}
.y146{bottom:370.536900px;}
.y42{bottom:371.894400px;}
.y17f{bottom:372.636900px;}
.y1a{bottom:374.652900px;}
.y68{bottom:374.886900px;}
.y120{bottom:376.386900px;}
.yaf{bottom:377.136900px;}
.y107{bottom:377.436900px;}
.yc2{bottom:377.886900px;}
.y1a4{bottom:379.386900px;}
.y1c3{bottom:380.136900px;}
.y1e7{bottom:382.152900px;}
.y165{bottom:383.436900px;}
.y199{bottom:383.886900px;}
.ye2{bottom:384.336900px;}
.y8e{bottom:384.903900px;}
.y145{bottom:389.886900px;}
.y41{bottom:390.644400px;}
.y17e{bottom:391.386900px;}
.y19{bottom:393.402900px;}
.y11f{bottom:395.136900px;}
.y106{bottom:396.186900px;}
.yae{bottom:396.636900px;}
.y1c2{bottom:398.136900px;}
.y1e6{bottom:400.902900px;}
.y164{bottom:402.186900px;}
.y198{bottom:402.636900px;}
.ye1{bottom:403.536900px;}
.y40{bottom:409.394400px;}
.y17d{bottom:410.136900px;}
.y144{bottom:410.736900px;}
.y18{bottom:412.152900px;}
.y11e{bottom:413.886900px;}
.y105{bottom:414.936900px;}
.yc1{bottom:415.386900px;}
.y67{bottom:416.136900px;}
.y196{bottom:416.886900px;}
.y1e5{bottom:419.652900px;}
.y163{bottom:420.936900px;}
.y1a3{bottom:421.386900px;}
.ye0{bottom:422.736900px;}
.y86{bottom:426.636900px;}
.y3f{bottom:428.144400px;}
.y17c{bottom:428.886900px;}
.y143{bottom:430.086900px;}
.y17{bottom:430.902900px;}
.y11d{bottom:432.636900px;}
.y104{bottom:433.686900px;}
.yc0{bottom:434.136900px;}
.y66{bottom:434.886900px;}
.yad{bottom:435.636900px;}
.y1e4{bottom:438.402900px;}
.y1c1{bottom:438.636900px;}
.y162{bottom:439.686900px;}
.y1a2{bottom:440.136900px;}
.ydf{bottom:441.936900px;}
.y85{bottom:446.136900px;}
.y3e{bottom:446.894400px;}
.y17b{bottom:447.636900px;}
.y142{bottom:449.436900px;}
.y16{bottom:449.652900px;}
.y11c{bottom:451.386900px;}
.y103{bottom:452.436900px;}
.ybf{bottom:452.886900px;}
.y195{bottom:454.386900px;}
.yac{bottom:455.136900px;}
.y1c0{bottom:456.636900px;}
.y1e3{bottom:457.152900px;}
.y161{bottom:459.936900px;}
.yde{bottom:461.136900px;}
.y1a1{bottom:463.386900px;}
.y84{bottom:465.636900px;}
.y3d{bottom:465.644400px;}
.y17a{bottom:466.386900px;}
.y15{bottom:468.402900px;}
.y141{bottom:468.786900px;}
.y11b{bottom:470.136900px;}
.y102{bottom:471.186900px;}
.ybe{bottom:471.636900px;}
.y65{bottom:473.136900px;}
.yab{bottom:474.636900px;}
.y1e2{bottom:475.902900px;}
.y1bf{bottom:479.136900px;}
.y160{bottom:479.286900px;}
.y1a0{bottom:482.136900px;}
.y3c{bottom:484.394400px;}
.y83{bottom:485.136900px;}
.y14{bottom:487.152900px;}
.y140{bottom:488.136900px;}
.y11a{bottom:488.886900px;}
.ydd{bottom:489.336900px;}
.y101{bottom:489.936900px;}
.ybd{bottom:490.386900px;}
.y64{bottom:491.886900px;}
.yaa{bottom:494.136900px;}
.y1e1{bottom:494.652900px;}
.y1be{bottom:497.136900px;}
.y15f{bottom:498.636900px;}
.y3b{bottom:503.144400px;}
.y179{bottom:503.886900px;}
.y82{bottom:504.636900px;}
.y13{bottom:505.902900px;}
.y13f{bottom:507.486900px;}
.y119{bottom:507.636900px;}
.y100{bottom:508.686900px;}
.y16e{bottom:509.136900px;}
.y19f{bottom:509.886900px;}
.y63{bottom:510.636900px;}
.y1e0{bottom:513.402900px;}
.ya9{bottom:513.636900px;}
.y1bd{bottom:515.136900px;}
.y15e{bottom:517.986900px;}
.y3a{bottom:521.894400px;}
.y178{bottom:522.636900px;}
.ydc{bottom:523.086900px;}
.y81{bottom:524.136900px;}
.y12{bottom:524.652900px;}
.y118{bottom:526.386900px;}
.y13e{bottom:526.836900px;}
.yff{bottom:527.436900px;}
.y16d{bottom:527.886900px;}
.y62{bottom:529.386900px;}
.y1df{bottom:532.152900px;}
.ya8{bottom:533.136900px;}
.y15d{bottom:537.336900px;}
.y39{bottom:540.644400px;}
.y177{bottom:541.386900px;}
.ydb{bottom:542.136900px;}
.y11{bottom:543.402900px;}
.y80{bottom:543.636900px;}
.y117{bottom:545.136900px;}
.yfe{bottom:546.186900px;}
.y16c{bottom:546.636900px;}
.y61{bottom:548.136900px;}
.y1de{bottom:550.902900px;}
.y1bc{bottom:551.136900px;}
.y197{bottom:552.131400px;}
.ya7{bottom:552.636900px;}
.y15c{bottom:556.686900px;}
.y38{bottom:559.394400px;}
.y176{bottom:560.136900px;}
.yda{bottom:561.186900px;}
.y7f{bottom:563.136900px;}
.yfd{bottom:564.936900px;}
.y116{bottom:565.386900px;}
.y13d{bottom:565.536900px;}
.y60{bottom:566.886900px;}
.y1bb{bottom:569.136900px;}
.y1dd{bottom:569.652900px;}
.ya6{bottom:572.136900px;}
.y1d6{bottom:572.886900px;}
.y15b{bottom:576.036900px;}
.y37{bottom:578.144400px;}
.yd9{bottom:580.236900px;}
.yfc{bottom:583.686900px;}
.y7e{bottom:584.136900px;}
.y13c{bottom:584.886900px;}
.y5f{bottom:585.636900px;}
.y1ba{bottom:587.136900px;}
.y175{bottom:587.886900px;}
.y1dc{bottom:588.402900px;}
.ya5{bottom:591.636900px;}
.y15a{bottom:595.386900px;}
.yd8{bottom:599.286900px;}
.yfb{bottom:602.436900px;}
.y7d{bottom:602.886900px;}
.y13b{bottom:604.236900px;}
.y5e{bottom:604.386900px;}
.y36{bottom:605.894400px;}
.y10{bottom:607.152900px;}
.ya4{bottom:611.136900px;}
.y1b9{bottom:612.636900px;}
.y159{bottom:614.736900px;}
.y1d5{bottom:614.886900px;}
.yd7{bottom:618.336900px;}
.yfa{bottom:621.186900px;}
.y7c{bottom:621.636900px;}
.y5d{bottom:623.136900px;}
.y13a{bottom:623.586900px;}
.y1db{bottom:625.902900px;}
.yf{bottom:629.652900px;}
.ya3{bottom:630.636900px;}
.y1d4{bottom:633.636900px;}
.y158{bottom:634.086900px;}
.yd6{bottom:637.386900px;}
.y1b8{bottom:638.136900px;}
.yf9{bottom:639.936900px;}
.y7b{bottom:640.386900px;}
.y5c{bottom:641.886900px;}
.y139{bottom:642.936900px;}
.ya2{bottom:650.136900px;}
.y35{bottom:651.644400px;}
.ye{bottom:652.152900px;}
.y157{bottom:653.436900px;}
.y1da{bottom:653.652900px;}
.y1b7{bottom:656.136900px;}
.yd5{bottom:656.436900px;}
.y1d3{bottom:656.886900px;}
.yf8{bottom:658.686900px;}
.y7a{bottom:659.136900px;}
.y5b{bottom:660.636900px;}
.y138{bottom:662.286900px;}
.ya1{bottom:669.636900px;}
.y34{bottom:670.394400px;}
.y156{bottom:672.786900px;}
.y1b6{bottom:674.136900px;}
.yd{bottom:674.652900px;}
.yd4{bottom:675.486900px;}
.yf7{bottom:677.436900px;}
.y79{bottom:677.886900px;}
.y5a{bottom:679.386900px;}
.y1d2{bottom:680.136900px;}
.y137{bottom:681.636900px;}
.y1d9{bottom:685.902900px;}
.ya0{bottom:689.136900px;}
.y33{bottom:689.144400px;}
.y155{bottom:692.136900px;}
.yd3{bottom:694.536900px;}
.yf6{bottom:696.186900px;}
.y78{bottom:696.636900px;}
.y59{bottom:698.136900px;}
.y1d1{bottom:698.886900px;}
.y136{bottom:700.986900px;}
.y1d8{bottom:704.652900px;}
.y32{bottom:707.894400px;}
.y9f{bottom:708.636900px;}
.y1b5{bottom:710.136900px;}
.y154{bottom:711.486900px;}
.yd2{bottom:713.586900px;}
.yf5{bottom:714.936900px;}
.y77{bottom:715.386900px;}
.y58{bottom:716.886900px;}
.y135{bottom:720.336900px;}
.y1d0{bottom:722.136900px;}
.y1d7{bottom:723.402900px;}
.y9e{bottom:729.636900px;}
.y153{bottom:730.836900px;}
.yd1{bottom:732.636900px;}
.yf4{bottom:733.686900px;}
.y76{bottom:734.136900px;}
.y57{bottom:735.636900px;}
.y31{bottom:735.644400px;}
.y134{bottom:739.686900px;}
.y1cf{bottom:745.386900px;}
.y9d{bottom:749.136900px;}
.y152{bottom:750.186900px;}
.y1b4{bottom:750.636900px;}
.yd0{bottom:751.686900px;}
.yf3{bottom:752.436900px;}
.y75{bottom:752.886900px;}
.y56{bottom:754.386900px;}
.y30{bottom:754.394400px;}
.y133{bottom:759.036900px;}
.y1ce{bottom:764.136900px;}
.y9c{bottom:768.636900px;}
.y151{bottom:769.536900px;}
.ycf{bottom:770.736900px;}
.yf2{bottom:771.186900px;}
.y115{bottom:771.636900px;}
.yc{bottom:772.152900px;}
.y55{bottom:773.136900px;}
.y2f{bottom:773.144400px;}
.y1b3{bottom:786.636900px;}
.y132{bottom:787.386900px;}
.y9b{bottom:788.136900px;}
.y150{bottom:788.886900px;}
.yce{bottom:789.786900px;}
.yf1{bottom:789.936900px;}
.y114{bottom:790.386900px;}
.yb{bottom:790.902900px;}
.y54{bottom:791.886900px;}
.y2e{bottom:791.894400px;}
.y1cd{bottom:806.136900px;}
.y9a{bottom:807.636900px;}
.y14f{bottom:808.236900px;}
.yf0{bottom:808.686900px;}
.ycd{bottom:808.836900px;}
.y113{bottom:809.136900px;}
.ya{bottom:809.652900px;}
.y53{bottom:810.636900px;}
.y2d{bottom:810.644400px;}
.y5{bottom:823.998900px;}
.y1cc{bottom:824.886900px;}
.y99{bottom:827.136900px;}
.yef{bottom:827.436900px;}
.y14e{bottom:827.586900px;}
.y112{bottom:827.886900px;}
.y9{bottom:828.402900px;}
.y131{bottom:828.636900px;}
.y1f8{bottom:829.377900px;}
.y52{bottom:829.386900px;}
.y2c{bottom:829.394400px;}
.y1b2{bottom:845.136900px;}
.yee{bottom:846.186900px;}
.y98{bottom:846.636900px;}
.y14d{bottom:846.936900px;}
.y1f7{bottom:848.127900px;}
.y51{bottom:848.136900px;}
.y2b{bottom:848.144400px;}
.y8{bottom:848.652900px;}
.y4{bottom:855.338400px;}
.y97{bottom:866.136900px;}
.y14c{bottom:866.286900px;}
.yed{bottom:866.436900px;}
.y1f6{bottom:866.877900px;}
.y50{bottom:866.886900px;}
.y2a{bottom:866.894400px;}
.y7{bottom:867.402900px;}
.y1b1{bottom:867.636900px;}
.y3{bottom:871.538400px;}
.y1f5{bottom:885.627900px;}
.y4f{bottom:885.636900px;}
.y29{bottom:885.644400px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y28{bottom:922.796400px;}
.he{height:27.393029px;}
.h9{height:29.004328px;}
.hf{height:35.449734px;}
.hb{height:41.765625px;}
.h3{height:44.586914px;}
.hc{height:46.792969px;}
.ha{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.hd{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x6{left:91.416600px;}
.x13{left:95.513100px;}
.xe{left:105.089100px;}
.x7{left:108.674100px;}
.x8{left:115.134600px;}
.x12{left:119.147100px;}
.xf{left:131.712600px;}
.xc{left:133.937100px;}
.xb{left:142.440600px;}
.x9{left:188.787600px;}
.x10{left:191.021100px;}
.xa{left:213.798600px;}
.x14{left:322.938600px;}
.x11{left:329.726100px;}
.xd{left:333.015600px;}
.x2{left:381.264600px;}
.x4{left:417.861600px;}
.x5{left:443.360100px;}
.x3{left:451.770600px;}
.x1{left:596.750100px;}
@media print{
.v6{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.869333pt;}
.v1{vertical-align:18.645333pt;}
.v5{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.005597pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls5{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.019589pt;}
.ls7{letter-spacing:0.165106pt;}
.lsa{letter-spacing:0.347002pt;}
.ls4{letter-spacing:0.456139pt;}
.ls8{letter-spacing:1.501867pt;}
.ws4{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws7{word-spacing:-10.560000pt;}
.ws3{word-spacing:-8.892693pt;}
.ws9{word-spacing:-7.524587pt;}
.ws2{word-spacing:-7.182560pt;}
.ws6{word-spacing:-6.162077pt;}
.ws5{word-spacing:-6.156480pt;}
.ws1{word-spacing:-0.028800pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-21.016800pt;}
._24{margin-left:-8.107467pt;}
._18{margin-left:-6.845333pt;}
._4{margin-left:-5.292533pt;}
._2{margin-left:-3.612000pt;}
._0{margin-left:-2.702400pt;}
._1{margin-left:-1.226400pt;}
._3{width:1.205600pt;}
._b{width:2.182400pt;}
._5{width:3.749867pt;}
._6{width:4.751733pt;}
._15{width:5.715733pt;}
._8{width:6.692000pt;}
._7{width:7.638400pt;}
._1b{width:8.558933pt;}
._12{width:9.474933pt;}
._e{width:10.571733pt;}
._c{width:11.668800pt;}
._1c{width:12.686133pt;}
._16{width:13.895467pt;}
._a{width:15.046933pt;}
._9{width:16.010400pt;}
._17{width:17.482667pt;}
._1a{width:18.664267pt;}
._f{width:19.852800pt;}
._13{width:21.530667pt;}
._14{width:22.481067pt;}
._d{width:23.818667pt;}
._1d{width:25.477067pt;}
._10{width:26.605333pt;}
._11{width:27.562400pt;}
._21{width:28.500267pt;}
._23{width:30.259733pt;}
._22{width:32.912000pt;}
._20{width:38.796267pt;}
._1f{width:52.494933pt;}
._1e{width:147.370933pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.ybc{bottom:109.706133pt;}
.y27{bottom:110.740800pt;}
.y130{bottom:113.602133pt;}
.y10f{bottom:113.702133pt;}
.y4e{bottom:118.136800pt;}
.y174{bottom:119.232800pt;}
.y1b0{bottom:121.232800pt;}
.y96{bottom:122.003467pt;}
.y18c{bottom:122.799467pt;}
.y1f4{bottom:123.024800pt;}
.y12f{bottom:124.006133pt;}
.ybb{bottom:124.106133pt;}
.y26{bottom:125.140800pt;}
.y1cb{bottom:127.899467pt;}
.yca{bottom:128.102133pt;}
.y4d{bottom:134.136800pt;}
.y173{bottom:135.899467pt;}
.y1af{bottom:137.899467pt;}
.y72{bottom:138.132800pt;}
.y12e{bottom:138.406133pt;}
.ycc{bottom:138.506133pt;}
.y18b{bottom:138.799467pt;}
.y1f3{bottom:139.691467pt;}
.y95{bottom:140.399467pt;}
.yba{bottom:142.502133pt;}
.y25{bottom:143.536800pt;}
.y1ca{bottom:144.566133pt;}
.y74{bottom:149.532800pt;}
.y172{bottom:152.566133pt;}
.ycb{bottom:152.906133pt;}
.y4c{bottom:154.132800pt;}
.y8d{bottom:154.799467pt;}
.y1f2{bottom:156.358133pt;}
.y12d{bottom:156.802133pt;}
.yb4{bottom:156.902133pt;}
.y24{bottom:157.936800pt;}
.y1ae{bottom:158.566133pt;}
.y192{bottom:160.566133pt;}
.y1c9{bottom:161.232800pt;}
.y189{bottom:164.566133pt;}
.yb3{bottom:167.306133pt;}
.y73{bottom:167.928800pt;}
.y8c{bottom:169.199467pt;}
.y18a{bottom:169.202133pt;}
.y171{bottom:169.232800pt;}
.yec{bottom:169.632800pt;}
.y12b{bottom:171.202133pt;}
.y111{bottom:171.302133pt;}
.y23{bottom:172.336800pt;}
.y1f1{bottom:173.024800pt;}
.y1ad{bottom:175.232800pt;}
.y191{bottom:177.232800pt;}
.y71{bottom:178.332800pt;}
.y8b{bottom:179.603467pt;}
.y4b{bottom:180.572800pt;}
.y188{bottom:181.232800pt;}
.yb2{bottom:181.706133pt;}
.y1c8{bottom:181.899467pt;}
.y12a{bottom:185.602133pt;}
.y110{bottom:185.702133pt;}
.y170{bottom:185.899467pt;}
.yeb{bottom:186.699467pt;}
.y1f0{bottom:189.691467pt;}
.y1ac{bottom:191.899467pt;}
.y70{bottom:192.732800pt;}
.y190{bottom:193.899467pt;}
.y4a{bottom:197.239467pt;}
.y187{bottom:197.899467pt;}
.y8a{bottom:197.999467pt;}
.y22{bottom:199.691467pt;}
.y128{bottom:200.002133pt;}
.yb1{bottom:200.102133pt;}
.y16f{bottom:202.566133pt;}
.yea{bottom:203.766133pt;}
.y19e{bottom:204.566133pt;}
.y1ef{bottom:206.358133pt;}
.y6f{bottom:207.132800pt;}
.y89{bottom:208.403467pt;}
.y18f{bottom:210.566133pt;}
.y1ab{bottom:212.566133pt;}
.y1c7{bottom:213.899467pt;}
.y49{bottom:213.906133pt;}
.y129{bottom:214.402133pt;}
.yb0{bottom:214.502133pt;}
.y186{bottom:214.566133pt;}
.y21{bottom:216.358133pt;}
.y127{bottom:216.566133pt;}
.y10e{bottom:218.832800pt;}
.yc9{bottom:219.232800pt;}
.ye9{bottom:220.832800pt;}
.y19d{bottom:221.232800pt;}
.y6e{bottom:221.532800pt;}
.y88{bottom:222.803467pt;}
.y1ee{bottom:223.024800pt;}
.y16b{bottom:224.166133pt;}
.y18e{bottom:227.232800pt;}
.y12c{bottom:228.802133pt;}
.yb5{bottom:228.902133pt;}
.y1aa{bottom:229.232800pt;}
.y48{bottom:230.572800pt;}
.y185{bottom:231.232800pt;}
.y20{bottom:233.024800pt;}
.y126{bottom:233.232800pt;}
.y1c6{bottom:233.899467pt;}
.y194{bottom:234.566133pt;}
.y10d{bottom:235.499467pt;}
.yc8{bottom:235.899467pt;}
.y6d{bottom:235.932800pt;}
.ye8{bottom:237.899467pt;}
.yb9{bottom:239.306133pt;}
.y1ed{bottom:239.691467pt;}
.y16a{bottom:240.832800pt;}
.y87{bottom:241.199467pt;}
.y14b{bottom:243.366133pt;}
.y1a9{bottom:245.899467pt;}
.y47{bottom:247.239467pt;}
.y184{bottom:247.899467pt;}
.y1f{bottom:249.691467pt;}
.y125{bottom:249.899467pt;}
.y193{bottom:251.232800pt;}
.y94{bottom:251.603467pt;}
.y18d{bottom:251.899467pt;}
.y10c{bottom:252.166133pt;}
.yc7{bottom:252.566133pt;}
.yb8{bottom:253.706133pt;}
.y6c{bottom:254.328800pt;}
.y19c{bottom:254.566133pt;}
.ye7{bottom:254.966133pt;}
.y1ec{bottom:256.358133pt;}
.y169{bottom:257.499467pt;}
.y14a{bottom:260.566133pt;}
.y46{bottom:263.906133pt;}
.y183{bottom:264.566133pt;}
.y1c5{bottom:265.899467pt;}
.y93{bottom:266.003467pt;}
.y1e{bottom:266.358133pt;}
.y1a8{bottom:266.566133pt;}
.y124{bottom:267.899467pt;}
.yb7{bottom:268.106133pt;}
.y10b{bottom:268.832800pt;}
.yc6{bottom:269.232800pt;}
.y19b{bottom:271.232800pt;}
.y1eb{bottom:273.024800pt;}
.ye6{bottom:273.366133pt;}
.y168{bottom:274.166133pt;}
.y6b{bottom:275.232800pt;}
.y149{bottom:277.766133pt;}
.y45{bottom:280.572800pt;}
.y182{bottom:281.232800pt;}
.y1d{bottom:283.024800pt;}
.y1a7{bottom:283.232800pt;}
.y92{bottom:284.399467pt;}
.y123{bottom:284.566133pt;}
.y10a{bottom:285.499467pt;}
.yc5{bottom:285.899467pt;}
.yb6{bottom:286.502133pt;}
.y1ea{bottom:289.691467pt;}
.ye5{bottom:290.432800pt;}
.y167{bottom:290.832800pt;}
.y6a{bottom:291.899467pt;}
.y91{bottom:294.136800pt;}
.y148{bottom:294.966133pt;}
.y19a{bottom:295.899467pt;}
.y44{bottom:297.239467pt;}
.y181{bottom:297.899467pt;}
.y1c{bottom:299.691467pt;}
.y122{bottom:301.232800pt;}
.y1c4{bottom:301.899467pt;}
.y109{bottom:302.166133pt;}
.yc4{bottom:302.566133pt;}
.y1a6{bottom:303.899467pt;}
.y1e9{bottom:306.358133pt;}
.ye4{bottom:307.499467pt;}
.y69{bottom:308.566133pt;}
.y90{bottom:310.136800pt;}
.y147{bottom:312.166133pt;}
.y43{bottom:313.906133pt;}
.y180{bottom:314.566133pt;}
.y1b{bottom:316.358133pt;}
.y121{bottom:317.899467pt;}
.y108{bottom:318.832800pt;}
.yc3{bottom:319.232800pt;}
.y1a5{bottom:320.566133pt;}
.y1e8{bottom:323.024800pt;}
.y166{bottom:324.166133pt;}
.ye3{bottom:324.566133pt;}
.y8f{bottom:326.136800pt;}
.y146{bottom:329.366133pt;}
.y42{bottom:330.572800pt;}
.y17f{bottom:331.232800pt;}
.y1a{bottom:333.024800pt;}
.y68{bottom:333.232800pt;}
.y120{bottom:334.566133pt;}
.yaf{bottom:335.232800pt;}
.y107{bottom:335.499467pt;}
.yc2{bottom:335.899467pt;}
.y1a4{bottom:337.232800pt;}
.y1c3{bottom:337.899467pt;}
.y1e7{bottom:339.691467pt;}
.y165{bottom:340.832800pt;}
.y199{bottom:341.232800pt;}
.ye2{bottom:341.632800pt;}
.y8e{bottom:342.136800pt;}
.y145{bottom:346.566133pt;}
.y41{bottom:347.239467pt;}
.y17e{bottom:347.899467pt;}
.y19{bottom:349.691467pt;}
.y11f{bottom:351.232800pt;}
.y106{bottom:352.166133pt;}
.yae{bottom:352.566133pt;}
.y1c2{bottom:353.899467pt;}
.y1e6{bottom:356.358133pt;}
.y164{bottom:357.499467pt;}
.y198{bottom:357.899467pt;}
.ye1{bottom:358.699467pt;}
.y40{bottom:363.906133pt;}
.y17d{bottom:364.566133pt;}
.y144{bottom:365.099467pt;}
.y18{bottom:366.358133pt;}
.y11e{bottom:367.899467pt;}
.y105{bottom:368.832800pt;}
.yc1{bottom:369.232800pt;}
.y67{bottom:369.899467pt;}
.y196{bottom:370.566133pt;}
.y1e5{bottom:373.024800pt;}
.y163{bottom:374.166133pt;}
.y1a3{bottom:374.566133pt;}
.ye0{bottom:375.766133pt;}
.y86{bottom:379.232800pt;}
.y3f{bottom:380.572800pt;}
.y17c{bottom:381.232800pt;}
.y143{bottom:382.299467pt;}
.y17{bottom:383.024800pt;}
.y11d{bottom:384.566133pt;}
.y104{bottom:385.499467pt;}
.yc0{bottom:385.899467pt;}
.y66{bottom:386.566133pt;}
.yad{bottom:387.232800pt;}
.y1e4{bottom:389.691467pt;}
.y1c1{bottom:389.899467pt;}
.y162{bottom:390.832800pt;}
.y1a2{bottom:391.232800pt;}
.ydf{bottom:392.832800pt;}
.y85{bottom:396.566133pt;}
.y3e{bottom:397.239467pt;}
.y17b{bottom:397.899467pt;}
.y142{bottom:399.499467pt;}
.y16{bottom:399.691467pt;}
.y11c{bottom:401.232800pt;}
.y103{bottom:402.166133pt;}
.ybf{bottom:402.566133pt;}
.y195{bottom:403.899467pt;}
.yac{bottom:404.566133pt;}
.y1c0{bottom:405.899467pt;}
.y1e3{bottom:406.358133pt;}
.y161{bottom:408.832800pt;}
.yde{bottom:409.899467pt;}
.y1a1{bottom:411.899467pt;}
.y84{bottom:413.899467pt;}
.y3d{bottom:413.906133pt;}
.y17a{bottom:414.566133pt;}
.y15{bottom:416.358133pt;}
.y141{bottom:416.699467pt;}
.y11b{bottom:417.899467pt;}
.y102{bottom:418.832800pt;}
.ybe{bottom:419.232800pt;}
.y65{bottom:420.566133pt;}
.yab{bottom:421.899467pt;}
.y1e2{bottom:423.024800pt;}
.y1bf{bottom:425.899467pt;}
.y160{bottom:426.032800pt;}
.y1a0{bottom:428.566133pt;}
.y3c{bottom:430.572800pt;}
.y83{bottom:431.232800pt;}
.y14{bottom:433.024800pt;}
.y140{bottom:433.899467pt;}
.y11a{bottom:434.566133pt;}
.ydd{bottom:434.966133pt;}
.y101{bottom:435.499467pt;}
.ybd{bottom:435.899467pt;}
.y64{bottom:437.232800pt;}
.yaa{bottom:439.232800pt;}
.y1e1{bottom:439.691467pt;}
.y1be{bottom:441.899467pt;}
.y15f{bottom:443.232800pt;}
.y3b{bottom:447.239467pt;}
.y179{bottom:447.899467pt;}
.y82{bottom:448.566133pt;}
.y13{bottom:449.691467pt;}
.y13f{bottom:451.099467pt;}
.y119{bottom:451.232800pt;}
.y100{bottom:452.166133pt;}
.y16e{bottom:452.566133pt;}
.y19f{bottom:453.232800pt;}
.y63{bottom:453.899467pt;}
.y1e0{bottom:456.358133pt;}
.ya9{bottom:456.566133pt;}
.y1bd{bottom:457.899467pt;}
.y15e{bottom:460.432800pt;}
.y3a{bottom:463.906133pt;}
.y178{bottom:464.566133pt;}
.ydc{bottom:464.966133pt;}
.y81{bottom:465.899467pt;}
.y12{bottom:466.358133pt;}
.y118{bottom:467.899467pt;}
.y13e{bottom:468.299467pt;}
.yff{bottom:468.832800pt;}
.y16d{bottom:469.232800pt;}
.y62{bottom:470.566133pt;}
.y1df{bottom:473.024800pt;}
.ya8{bottom:473.899467pt;}
.y15d{bottom:477.632800pt;}
.y39{bottom:480.572800pt;}
.y177{bottom:481.232800pt;}
.ydb{bottom:481.899467pt;}
.y11{bottom:483.024800pt;}
.y80{bottom:483.232800pt;}
.y117{bottom:484.566133pt;}
.yfe{bottom:485.499467pt;}
.y16c{bottom:485.899467pt;}
.y61{bottom:487.232800pt;}
.y1de{bottom:489.691467pt;}
.y1bc{bottom:489.899467pt;}
.y197{bottom:490.783467pt;}
.ya7{bottom:491.232800pt;}
.y15c{bottom:494.832800pt;}
.y38{bottom:497.239467pt;}
.y176{bottom:497.899467pt;}
.yda{bottom:498.832800pt;}
.y7f{bottom:500.566133pt;}
.yfd{bottom:502.166133pt;}
.y116{bottom:502.566133pt;}
.y13d{bottom:502.699467pt;}
.y60{bottom:503.899467pt;}
.y1bb{bottom:505.899467pt;}
.y1dd{bottom:506.358133pt;}
.ya6{bottom:508.566133pt;}
.y1d6{bottom:509.232800pt;}
.y15b{bottom:512.032800pt;}
.y37{bottom:513.906133pt;}
.yd9{bottom:515.766133pt;}
.yfc{bottom:518.832800pt;}
.y7e{bottom:519.232800pt;}
.y13c{bottom:519.899467pt;}
.y5f{bottom:520.566133pt;}
.y1ba{bottom:521.899467pt;}
.y175{bottom:522.566133pt;}
.y1dc{bottom:523.024800pt;}
.ya5{bottom:525.899467pt;}
.y15a{bottom:529.232800pt;}
.yd8{bottom:532.699467pt;}
.yfb{bottom:535.499467pt;}
.y7d{bottom:535.899467pt;}
.y13b{bottom:537.099467pt;}
.y5e{bottom:537.232800pt;}
.y36{bottom:538.572800pt;}
.y10{bottom:539.691467pt;}
.ya4{bottom:543.232800pt;}
.y1b9{bottom:544.566133pt;}
.y159{bottom:546.432800pt;}
.y1d5{bottom:546.566133pt;}
.yd7{bottom:549.632800pt;}
.yfa{bottom:552.166133pt;}
.y7c{bottom:552.566133pt;}
.y5d{bottom:553.899467pt;}
.y13a{bottom:554.299467pt;}
.y1db{bottom:556.358133pt;}
.yf{bottom:559.691467pt;}
.ya3{bottom:560.566133pt;}
.y1d4{bottom:563.232800pt;}
.y158{bottom:563.632800pt;}
.yd6{bottom:566.566133pt;}
.y1b8{bottom:567.232800pt;}
.yf9{bottom:568.832800pt;}
.y7b{bottom:569.232800pt;}
.y5c{bottom:570.566133pt;}
.y139{bottom:571.499467pt;}
.ya2{bottom:577.899467pt;}
.y35{bottom:579.239467pt;}
.ye{bottom:579.691467pt;}
.y157{bottom:580.832800pt;}
.y1da{bottom:581.024800pt;}
.y1b7{bottom:583.232800pt;}
.yd5{bottom:583.499467pt;}
.y1d3{bottom:583.899467pt;}
.yf8{bottom:585.499467pt;}
.y7a{bottom:585.899467pt;}
.y5b{bottom:587.232800pt;}
.y138{bottom:588.699467pt;}
.ya1{bottom:595.232800pt;}
.y34{bottom:595.906133pt;}
.y156{bottom:598.032800pt;}
.y1b6{bottom:599.232800pt;}
.yd{bottom:599.691467pt;}
.yd4{bottom:600.432800pt;}
.yf7{bottom:602.166133pt;}
.y79{bottom:602.566133pt;}
.y5a{bottom:603.899467pt;}
.y1d2{bottom:604.566133pt;}
.y137{bottom:605.899467pt;}
.y1d9{bottom:609.691467pt;}
.ya0{bottom:612.566133pt;}
.y33{bottom:612.572800pt;}
.y155{bottom:615.232800pt;}
.yd3{bottom:617.366133pt;}
.yf6{bottom:618.832800pt;}
.y78{bottom:619.232800pt;}
.y59{bottom:620.566133pt;}
.y1d1{bottom:621.232800pt;}
.y136{bottom:623.099467pt;}
.y1d8{bottom:626.358133pt;}
.y32{bottom:629.239467pt;}
.y9f{bottom:629.899467pt;}
.y1b5{bottom:631.232800pt;}
.y154{bottom:632.432800pt;}
.yd2{bottom:634.299467pt;}
.yf5{bottom:635.499467pt;}
.y77{bottom:635.899467pt;}
.y58{bottom:637.232800pt;}
.y135{bottom:640.299467pt;}
.y1d0{bottom:641.899467pt;}
.y1d7{bottom:643.024800pt;}
.y9e{bottom:648.566133pt;}
.y153{bottom:649.632800pt;}
.yd1{bottom:651.232800pt;}
.yf4{bottom:652.166133pt;}
.y76{bottom:652.566133pt;}
.y57{bottom:653.899467pt;}
.y31{bottom:653.906133pt;}
.y134{bottom:657.499467pt;}
.y1cf{bottom:662.566133pt;}
.y9d{bottom:665.899467pt;}
.y152{bottom:666.832800pt;}
.y1b4{bottom:667.232800pt;}
.yd0{bottom:668.166133pt;}
.yf3{bottom:668.832800pt;}
.y75{bottom:669.232800pt;}
.y56{bottom:670.566133pt;}
.y30{bottom:670.572800pt;}
.y133{bottom:674.699467pt;}
.y1ce{bottom:679.232800pt;}
.y9c{bottom:683.232800pt;}
.y151{bottom:684.032800pt;}
.ycf{bottom:685.099467pt;}
.yf2{bottom:685.499467pt;}
.y115{bottom:685.899467pt;}
.yc{bottom:686.358133pt;}
.y55{bottom:687.232800pt;}
.y2f{bottom:687.239467pt;}
.y1b3{bottom:699.232800pt;}
.y132{bottom:699.899467pt;}
.y9b{bottom:700.566133pt;}
.y150{bottom:701.232800pt;}
.yce{bottom:702.032800pt;}
.yf1{bottom:702.166133pt;}
.y114{bottom:702.566133pt;}
.yb{bottom:703.024800pt;}
.y54{bottom:703.899467pt;}
.y2e{bottom:703.906133pt;}
.y1cd{bottom:716.566133pt;}
.y9a{bottom:717.899467pt;}
.y14f{bottom:718.432800pt;}
.yf0{bottom:718.832800pt;}
.ycd{bottom:718.966133pt;}
.y113{bottom:719.232800pt;}
.ya{bottom:719.691467pt;}
.y53{bottom:720.566133pt;}
.y2d{bottom:720.572800pt;}
.y5{bottom:732.443467pt;}
.y1cc{bottom:733.232800pt;}
.y99{bottom:735.232800pt;}
.yef{bottom:735.499467pt;}
.y14e{bottom:735.632800pt;}
.y112{bottom:735.899467pt;}
.y9{bottom:736.358133pt;}
.y131{bottom:736.566133pt;}
.y1f8{bottom:737.224800pt;}
.y52{bottom:737.232800pt;}
.y2c{bottom:737.239467pt;}
.y1b2{bottom:751.232800pt;}
.yee{bottom:752.166133pt;}
.y98{bottom:752.566133pt;}
.y14d{bottom:752.832800pt;}
.y1f7{bottom:753.891467pt;}
.y51{bottom:753.899467pt;}
.y2b{bottom:753.906133pt;}
.y8{bottom:754.358133pt;}
.y4{bottom:760.300800pt;}
.y97{bottom:769.899467pt;}
.y14c{bottom:770.032800pt;}
.yed{bottom:770.166133pt;}
.y1f6{bottom:770.558133pt;}
.y50{bottom:770.566133pt;}
.y2a{bottom:770.572800pt;}
.y7{bottom:771.024800pt;}
.y1b1{bottom:771.232800pt;}
.y3{bottom:774.700800pt;}
.y1f5{bottom:787.224800pt;}
.y4f{bottom:787.232800pt;}
.y29{bottom:787.239467pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y28{bottom:820.263467pt;}
.he{height:24.349359pt;}
.h9{height:25.781625pt;}
.hf{height:31.510875pt;}
.hb{height:37.125000pt;}
.h3{height:39.632812pt;}
.hc{height:41.593750pt;}
.ha{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.hd{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x6{left:81.259200pt;}
.x13{left:84.900533pt;}
.xe{left:93.412533pt;}
.x7{left:96.599200pt;}
.x8{left:102.341867pt;}
.x12{left:105.908533pt;}
.xf{left:117.077867pt;}
.xc{left:119.055200pt;}
.xb{left:126.613867pt;}
.x9{left:167.811200pt;}
.x10{left:169.796533pt;}
.xa{left:190.043200pt;}
.x14{left:287.056533pt;}
.x11{left:293.089867pt;}
.xd{left:296.013867pt;}
.x2{left:338.901867pt;}
.x4{left:371.432533pt;}
.x5{left:394.097867pt;}
.x3{left:401.573867pt;}
.x1{left:530.444533pt;}
}




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