
    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_e604a44729a8618795a565cd.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_2f975510b2c317c934732c21.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_41b07c20606389fa70c87ce3.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_356e2cb07b073f4990cbf1f2.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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls4{letter-spacing:0.009445px;}
.ls3{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.016200px;}
.ls5{letter-spacing:0.513157px;}
.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;}
}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-7.842300px;}
._3{margin-left:-6.014100px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.278900px;}
._d{width:1.193100px;}
._9{width:2.877600px;}
._e{width:4.029672px;}
._4{width:5.162400px;}
._5{width:6.486600px;}
._8{width:8.244300px;}
._7{width:9.956400px;}
._b{width:10.969200px;}
._1b{width:12.075000px;}
._6{width:13.106100px;}
._1c{width:14.155738px;}
._c{width:16.005000px;}
._18{width:17.199600px;}
._13{width:18.295200px;}
._11{width:19.324800px;}
._12{width:20.790000px;}
._16{width:22.598400px;}
._14{width:23.931600px;}
._1f{width:25.132800px;}
._20{width:26.340900px;}
._f{width:27.502200px;}
._10{width:28.683600px;}
._1e{width:30.023400px;}
._17{width:32.571000px;}
._21{width:33.654900px;}
._1a{width:34.882800px;}
._19{width:36.121800px;}
._a{width:38.194200px;}
._15{width:40.048800px;}
._1d{width:41.434800px;}
._23{width:42.632100px;}
.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;}
.y77{bottom:123.419400px;}
.y4e{bottom:125.286900px;}
.ydd{bottom:126.453900px;}
.y23{bottom:133.275900px;}
.y16f{bottom:133.386900px;}
.y9f{bottom:133.653900px;}
.y76{bottom:139.619400px;}
.ydc{bottom:142.653900px;}
.y4d{bottom:144.036900px;}
.y100{bottom:144.453900px;}
.y22{bottom:149.475900px;}
.y14e{bottom:151.152900px;}
.y9e{bottom:151.653900px;}
.y16e{bottom:152.136900px;}
.yb6{bottom:156.149400px;}
.y75{bottom:160.314900px;}
.yff{bottom:160.653900px;}
.ydb{bottom:163.349400px;}
.yb5{bottom:169.653900px;}
.y14d{bottom:169.902900px;}
.y21{bottom:170.171400px;}
.y4c{bottom:171.786900px;}
.y9d{bottom:174.149400px;}
.yd9{bottom:175.053900px;}
.y16d{bottom:175.386900px;}
.yfe{bottom:176.853900px;}
.y74{bottom:182.736900px;}
.y9c{bottom:185.631900px;}
.y20{bottom:186.371400px;}
.y14c{bottom:188.652900px;}
.yd8{bottom:191.253900px;}
.yb4{bottom:192.149400px;}
.yfd{bottom:193.053900px;}
.y16c{bottom:194.136900px;}
.y12b{bottom:199.386900px;}
.y73{bottom:200.886900px;}
.y9b{bottom:201.831900px;}
.y113{bottom:205.653900px;}
.y4b{bottom:210.036900px;}
.yb3{bottom:211.053900px;}
.y1f{bottom:211.152900px;}
.y14b{bottom:211.902900px;}
.yd7{bottom:211.949400px;}
.y16b{bottom:212.886900px;}
.yfc{bottom:213.749400px;}
.y9a{bottom:218.031900px;}
.y12a{bottom:218.136900px;}
.y72{bottom:219.036900px;}
.y112{bottom:223.653900px;}
.y10c{bottom:226.386900px;}
.yb2{bottom:227.253900px;}
.y4a{bottom:227.736900px;}
.yd6{bottom:228.149400px;}
.y1e{bottom:229.902900px;}
.yfb{bottom:229.949400px;}
.y14a{bottom:230.652900px;}
.y16a{bottom:236.136900px;}
.y129{bottom:236.886900px;}
.y71{bottom:237.186900px;}
.y99{bottom:238.727400px;}
.yd5{bottom:241.653900px;}
.y10b{bottom:245.136900px;}
.y49{bottom:245.436900px;}
.yb1{bottom:247.949400px;}
.y1d{bottom:248.652900px;}
.y149{bottom:249.402900px;}
.y169{bottom:254.886900px;}
.y70{bottom:255.336900px;}
.y128{bottom:255.636900px;}
.yb0{bottom:259.653900px;}
.y98{bottom:259.986900px;}
.y48{bottom:263.136900px;}
.y10a{bottom:263.886900px;}
.yd4{bottom:264.149400px;}
.y1c{bottom:267.402900px;}
.y18b{bottom:269.652900px;}
.y148{bottom:272.652900px;}
.y6f{bottom:273.486900px;}
.y168{bottom:273.636900px;}
.y127{bottom:274.386900px;}
.yda{bottom:277.653900px;}
.y97{bottom:278.736900px;}
.y47{bottom:280.836900px;}
.yaf{bottom:282.149400px;}
.y109{bottom:282.636900px;}
.y1b{bottom:286.152900px;}
.y18a{bottom:288.402900px;}
.y147{bottom:291.402900px;}
.y6e{bottom:291.636900px;}
.y126{bottom:293.136900px;}
.y167{bottom:296.886900px;}
.y96{bottom:297.486900px;}
.y46{bottom:298.536900px;}
.yfa{bottom:300.149400px;}
.y108{bottom:301.386900px;}
.y1a{bottom:304.902900px;}
.y189{bottom:308.652900px;}
.y6d{bottom:309.786900px;}
.y125{bottom:311.886900px;}
.y166{bottom:315.636900px;}
.y45{bottom:316.236900px;}
.yd3{bottom:317.136900px;}
.y111{bottom:318.636900px;}
.y146{bottom:319.152900px;}
.yf9{bottom:319.949400px;}
.yae{bottom:320.136900px;}
.y95{bottom:325.236900px;}
.y188{bottom:327.402900px;}
.y6c{bottom:327.936900px;}
.y124{bottom:330.636900px;}
.yf8{bottom:331.653900px;}
.y19{bottom:332.652900px;}
.y44{bottom:333.936900px;}
.y165{bottom:334.386900px;}
.yd2{bottom:336.036900px;}
.y110{bottom:337.386900px;}
.yad{bottom:338.886900px;}
.y94{bottom:343.986900px;}
.y6b{bottom:346.086900px;}
.y187{bottom:346.152900px;}
.y123{bottom:349.386900px;}
.yf7{bottom:349.653900px;}
.y43{bottom:351.636900px;}
.yd1{bottom:354.936900px;}
.y10f{bottom:356.136900px;}
.y145{bottom:357.402900px;}
.yac{bottom:357.636900px;}
.y6a{bottom:364.236900px;}
.y186{bottom:364.902900px;}
.yf6{bottom:367.653900px;}
.y122{bottom:368.136900px;}
.y42{bottom:369.336900px;}
.yd0{bottom:373.836900px;}
.y144{bottom:376.152900px;}
.yab{bottom:376.386900px;}
.y18{bottom:378.402900px;}
.y93{bottom:382.236900px;}
.y69{bottom:382.386900px;}
.y185{bottom:383.652900px;}
.y121{bottom:386.886900px;}
.y41{bottom:388.536900px;}
.yf5{bottom:390.149400px;}
.ycf{bottom:392.736900px;}
.y143{bottom:394.902900px;}
.yaa{bottom:395.136900px;}
.y17{bottom:397.152900px;}
.y92{bottom:400.086900px;}
.y68{bottom:400.536900px;}
.y184{bottom:402.402900px;}
.y120{bottom:405.636900px;}
.y40{bottom:406.236900px;}
.yf4{bottom:408.149400px;}
.yce{bottom:411.636900px;}
.y142{bottom:413.652900px;}
.ya9{bottom:413.886900px;}
.y91{bottom:417.936900px;}
.y164{bottom:418.386900px;}
.y67{bottom:418.686900px;}
.y183{bottom:421.152900px;}
.yf3{bottom:421.653900px;}
.y3f{bottom:423.936900px;}
.y11f{bottom:424.386900px;}
.y16{bottom:424.902900px;}
.ycd{bottom:430.536900px;}
.y141{bottom:432.402900px;}
.ya8{bottom:432.636900px;}
.y90{bottom:435.786900px;}
.y66{bottom:436.836900px;}
.y163{bottom:437.136900px;}
.y182{bottom:439.902900px;}
.y3e{bottom:441.636900px;}
.y11e{bottom:443.136900px;}
.y15{bottom:443.652900px;}
.yf2{bottom:444.149400px;}
.ycc{bottom:449.436900px;}
.y140{bottom:451.152900px;}
.ya7{bottom:451.386900px;}
.y8f{bottom:453.636900px;}
.y65{bottom:454.986900px;}
.y181{bottom:458.652900px;}
.y3d{bottom:459.336900px;}
.y162{bottom:460.386900px;}
.y11d{bottom:461.886900px;}
.y14{bottom:462.402900px;}
.ycb{bottom:468.336900px;}
.yf1{bottom:468.936900px;}
.y13f{bottom:469.902900px;}
.ya6{bottom:470.136900px;}
.y8e{bottom:471.486900px;}
.y107{bottom:471.636900px;}
.y64{bottom:473.136900px;}
.y3c{bottom:477.036900px;}
.y180{bottom:477.402900px;}
.y161{bottom:479.136900px;}
.y11c{bottom:480.636900px;}
.y13{bottom:481.152900px;}
.yca{bottom:487.236900px;}
.yf0{bottom:487.686900px;}
.y13e{bottom:488.652900px;}
.ya5{bottom:488.886900px;}
.y8d{bottom:489.336900px;}
.y106{bottom:490.386900px;}
.y63{bottom:491.286900px;}
.y3b{bottom:494.736900px;}
.y17f{bottom:496.152900px;}
.y160{bottom:497.886900px;}
.y11b{bottom:499.386900px;}
.y12{bottom:499.902900px;}
.yc9{bottom:506.136900px;}
.y8c{bottom:507.186900px;}
.y13d{bottom:507.402900px;}
.ya4{bottom:507.636900px;}
.y105{bottom:509.136900px;}
.y62{bottom:509.436900px;}
.y3a{bottom:512.436900px;}
.y17e{bottom:514.902900px;}
.yef{bottom:515.436900px;}
.y11a{bottom:518.136900px;}
.y11{bottom:518.652900px;}
.y15f{bottom:521.136900px;}
.yc8{bottom:525.036900px;}
.y13c{bottom:526.152900px;}
.y10e{bottom:526.386900px;}
.y8b{bottom:526.536900px;}
.y61{bottom:527.586900px;}
.ya3{bottom:527.886900px;}
.y39{bottom:530.136900px;}
.y17d{bottom:533.652900px;}
.yee{bottom:534.186900px;}
.y119{bottom:536.886900px;}
.y10{bottom:537.402900px;}
.y15e{bottom:539.886900px;}
.yc7{bottom:543.936900px;}
.y8a{bottom:544.386900px;}
.y13b{bottom:544.902900px;}
.y10d{bottom:545.136900px;}
.y60{bottom:545.736900px;}
.ya2{bottom:546.636900px;}
.y38{bottom:547.836900px;}
.y17c{bottom:552.402900px;}
.yf{bottom:556.152900px;}
.y15d{bottom:558.636900px;}
.y89{bottom:562.236900px;}
.yc6{bottom:562.836900px;}
.y13a{bottom:563.652900px;}
.y118{bottom:564.636900px;}
.y5f{bottom:565.386900px;}
.y37{bottom:565.536900px;}
.y17b{bottom:571.152900px;}
.yed{bottom:572.436900px;}
.ye{bottom:574.902900px;}
.y15c{bottom:577.386900px;}
.y88{bottom:580.086900px;}
.yc5{bottom:581.736900px;}
.y139{bottom:582.402900px;}
.y36{bottom:583.236900px;}
.y5e{bottom:584.136900px;}
.y17a{bottom:589.902900px;}
.yec{bottom:590.736900px;}
.yd{bottom:593.652900px;}
.y87{bottom:597.936900px;}
.y15b{bottom:600.636900px;}
.y35{bottom:600.936900px;}
.y138{bottom:601.152900px;}
.yc4{bottom:602.136900px;}
.y5d{bottom:602.886900px;}
.y179{bottom:608.652900px;}
.yeb{bottom:609.036900px;}
.yc{bottom:612.402900px;}
.y86{bottom:615.786900px;}
.y34{bottom:618.636900px;}
.y15a{bottom:619.386900px;}
.y137{bottom:619.902900px;}
.yc3{bottom:621.036900px;}
.y5c{bottom:621.636900px;}
.yea{bottom:627.336900px;}
.y178{bottom:627.402900px;}
.yb{bottom:631.152900px;}
.y85{bottom:633.636900px;}
.y33{bottom:637.836900px;}
.y159{bottom:638.136900px;}
.y136{bottom:638.652900px;}
.yc2{bottom:639.936900px;}
.y5b{bottom:640.386900px;}
.ye9{bottom:645.636900px;}
.y177{bottom:646.152900px;}
.ya{bottom:649.902900px;}
.y84{bottom:651.486900px;}
.y32{bottom:655.536900px;}
.y158{bottom:656.886900px;}
.y135{bottom:657.402900px;}
.yc1{bottom:658.836900px;}
.y5a{bottom:659.136900px;}
.y104{bottom:660.636900px;}
.ye8{bottom:663.936900px;}
.y176{bottom:664.902900px;}
.y9{bottom:668.652900px;}
.y83{bottom:669.336900px;}
.y31{bottom:673.236900px;}
.y134{bottom:676.152900px;}
.yc0{bottom:677.736900px;}
.y59{bottom:677.886900px;}
.y103{bottom:679.386900px;}
.y157{bottom:680.136900px;}
.ye7{bottom:682.236900px;}
.y175{bottom:683.652900px;}
.y82{bottom:687.186900px;}
.y30{bottom:690.936900px;}
.y133{bottom:694.902900px;}
.y58{bottom:696.636900px;}
.y102{bottom:698.136900px;}
.y156{bottom:698.886900px;}
.ye6{bottom:700.536900px;}
.y174{bottom:702.402900px;}
.y81{bottom:705.036900px;}
.y2f{bottom:708.636900px;}
.y132{bottom:713.652900px;}
.y57{bottom:715.386900px;}
.ybf{bottom:715.536900px;}
.y101{bottom:716.886900px;}
.y155{bottom:717.636900px;}
.ye5{bottom:718.836900px;}
.y173{bottom:721.152900px;}
.y80{bottom:722.886900px;}
.y2e{bottom:726.336900px;}
.y8{bottom:732.402900px;}
.ya1{bottom:734.136900px;}
.ybe{bottom:734.436900px;}
.y56{bottom:735.636900px;}
.ye4{bottom:737.136900px;}
.y7f{bottom:740.736900px;}
.y154{bottom:740.886900px;}
.y2d{bottom:744.036900px;}
.y172{bottom:748.902900px;}
.y131{bottom:751.152900px;}
.ya0{bottom:752.886900px;}
.ybd{bottom:753.336900px;}
.y55{bottom:754.386900px;}
.ye3{bottom:755.436900px;}
.y7e{bottom:758.586900px;}
.y153{bottom:759.636900px;}
.y2c{bottom:761.736900px;}
.y130{bottom:769.902900px;}
.y117{bottom:771.636900px;}
.ybc{bottom:772.236900px;}
.y54{bottom:773.136900px;}
.ye2{bottom:773.736900px;}
.y7d{bottom:776.436900px;}
.y2b{bottom:779.436900px;}
.y171{bottom:781.152900px;}
.y152{bottom:782.886900px;}
.y170{bottom:787.386900px;}
.y12f{bottom:788.652900px;}
.y116{bottom:790.386900px;}
.ybb{bottom:791.136900px;}
.y53{bottom:791.886900px;}
.ye1{bottom:792.036900px;}
.y7c{bottom:794.286900px;}
.y2a{bottom:797.136900px;}
.y151{bottom:806.136900px;}
.y12e{bottom:807.402900px;}
.y115{bottom:809.136900px;}
.yba{bottom:810.036900px;}
.ye0{bottom:810.336900px;}
.y52{bottom:810.636900px;}
.y7b{bottom:812.136900px;}
.y29{bottom:814.836900px;}
.y150{bottom:824.886900px;}
.y12d{bottom:826.152900px;}
.y114{bottom:827.886900px;}
.ydf{bottom:828.636900px;}
.yb9{bottom:828.936900px;}
.y51{bottom:829.386900px;}
.y7{bottom:829.902900px;}
.y7a{bottom:829.986900px;}
.y28{bottom:832.536900px;}
.y14f{bottom:843.636900px;}
.yde{bottom:846.936900px;}
.yb8{bottom:847.836900px;}
.y50{bottom:848.136900px;}
.y6{bottom:848.652900px;}
.y79{bottom:849.336900px;}
.y27{bottom:850.236900px;}
.y12c{bottom:853.902900px;}
.y3{bottom:862.158900px;}
.yb7{bottom:866.736900px;}
.y4f{bottom:866.886900px;}
.y5{bottom:867.402900px;}
.y78{bottom:867.486900px;}
.y26{bottom:867.936900px;}
.y25{bottom:885.636900px;}
.y4{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y24{bottom:922.796400px;}
.he{height:27.393029px;}
.hb{height:29.004328px;}
.hd{height:41.765625px;}
.h3{height:44.586914px;}
.h9{height:46.792969px;}
.hc{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.ha{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;}
.x4{left:91.416600px;}
.x8{left:108.425100px;}
.x5{left:110.028600px;}
.x7{left:133.937100px;}
.x6{left:142.440600px;}
.xa{left:161.586600px;}
.xc{left:168.300600px;}
.xd{left:322.938600px;}
.xb{left:329.726100px;}
.x3{left:443.360100px;}
.x9{left:466.181100px;}
.x2{left:517.979100px;}
.x1{left:605.471100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls4{letter-spacing:0.008395pt;}
.ls3{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.014400pt;}
.ls5{letter-spacing:0.456139pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-6.970933pt;}
._3{margin-left:-5.345867pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-1.136800pt;}
._d{width:1.060533pt;}
._9{width:2.557867pt;}
._e{width:3.581931pt;}
._4{width:4.588800pt;}
._5{width:5.765867pt;}
._8{width:7.328267pt;}
._7{width:8.850133pt;}
._b{width:9.750400pt;}
._1b{width:10.733333pt;}
._6{width:11.649867pt;}
._1c{width:12.582878pt;}
._c{width:14.226667pt;}
._18{width:15.288533pt;}
._13{width:16.262400pt;}
._11{width:17.177600pt;}
._12{width:18.480000pt;}
._16{width:20.087467pt;}
._14{width:21.272533pt;}
._1f{width:22.340267pt;}
._20{width:23.414133pt;}
._f{width:24.446400pt;}
._10{width:25.496533pt;}
._1e{width:26.687467pt;}
._17{width:28.952000pt;}
._21{width:29.915467pt;}
._1a{width:31.006933pt;}
._19{width:32.108267pt;}
._a{width:33.950400pt;}
._15{width:35.598933pt;}
._1d{width:36.830933pt;}
._23{width:37.895200pt;}
.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;}
.y77{bottom:109.706133pt;}
.y4e{bottom:111.366133pt;}
.ydd{bottom:112.403467pt;}
.y23{bottom:118.467467pt;}
.y16f{bottom:118.566133pt;}
.y9f{bottom:118.803467pt;}
.y76{bottom:124.106133pt;}
.ydc{bottom:126.803467pt;}
.y4d{bottom:128.032800pt;}
.y100{bottom:128.403467pt;}
.y22{bottom:132.867467pt;}
.y14e{bottom:134.358133pt;}
.y9e{bottom:134.803467pt;}
.y16e{bottom:135.232800pt;}
.yb6{bottom:138.799467pt;}
.y75{bottom:142.502133pt;}
.yff{bottom:142.803467pt;}
.ydb{bottom:145.199467pt;}
.yb5{bottom:150.803467pt;}
.y14d{bottom:151.024800pt;}
.y21{bottom:151.263467pt;}
.y4c{bottom:152.699467pt;}
.y9d{bottom:154.799467pt;}
.yd9{bottom:155.603467pt;}
.y16d{bottom:155.899467pt;}
.yfe{bottom:157.203467pt;}
.y74{bottom:162.432800pt;}
.y9c{bottom:165.006133pt;}
.y20{bottom:165.663467pt;}
.y14c{bottom:167.691467pt;}
.yd8{bottom:170.003467pt;}
.yb4{bottom:170.799467pt;}
.yfd{bottom:171.603467pt;}
.y16c{bottom:172.566133pt;}
.y12b{bottom:177.232800pt;}
.y73{bottom:178.566133pt;}
.y9b{bottom:179.406133pt;}
.y113{bottom:182.803467pt;}
.y4b{bottom:186.699467pt;}
.yb3{bottom:187.603467pt;}
.y1f{bottom:187.691467pt;}
.y14b{bottom:188.358133pt;}
.yd7{bottom:188.399467pt;}
.y16b{bottom:189.232800pt;}
.yfc{bottom:189.999467pt;}
.y9a{bottom:193.806133pt;}
.y12a{bottom:193.899467pt;}
.y72{bottom:194.699467pt;}
.y112{bottom:198.803467pt;}
.y10c{bottom:201.232800pt;}
.yb2{bottom:202.003467pt;}
.y4a{bottom:202.432800pt;}
.yd6{bottom:202.799467pt;}
.y1e{bottom:204.358133pt;}
.yfb{bottom:204.399467pt;}
.y14a{bottom:205.024800pt;}
.y16a{bottom:209.899467pt;}
.y129{bottom:210.566133pt;}
.y71{bottom:210.832800pt;}
.y99{bottom:212.202133pt;}
.yd5{bottom:214.803467pt;}
.y10b{bottom:217.899467pt;}
.y49{bottom:218.166133pt;}
.yb1{bottom:220.399467pt;}
.y1d{bottom:221.024800pt;}
.y149{bottom:221.691467pt;}
.y169{bottom:226.566133pt;}
.y70{bottom:226.966133pt;}
.y128{bottom:227.232800pt;}
.yb0{bottom:230.803467pt;}
.y98{bottom:231.099467pt;}
.y48{bottom:233.899467pt;}
.y10a{bottom:234.566133pt;}
.yd4{bottom:234.799467pt;}
.y1c{bottom:237.691467pt;}
.y18b{bottom:239.691467pt;}
.y148{bottom:242.358133pt;}
.y6f{bottom:243.099467pt;}
.y168{bottom:243.232800pt;}
.y127{bottom:243.899467pt;}
.yda{bottom:246.803467pt;}
.y97{bottom:247.766133pt;}
.y47{bottom:249.632800pt;}
.yaf{bottom:250.799467pt;}
.y109{bottom:251.232800pt;}
.y1b{bottom:254.358133pt;}
.y18a{bottom:256.358133pt;}
.y147{bottom:259.024800pt;}
.y6e{bottom:259.232800pt;}
.y126{bottom:260.566133pt;}
.y167{bottom:263.899467pt;}
.y96{bottom:264.432800pt;}
.y46{bottom:265.366133pt;}
.yfa{bottom:266.799467pt;}
.y108{bottom:267.899467pt;}
.y1a{bottom:271.024800pt;}
.y189{bottom:274.358133pt;}
.y6d{bottom:275.366133pt;}
.y125{bottom:277.232800pt;}
.y166{bottom:280.566133pt;}
.y45{bottom:281.099467pt;}
.yd3{bottom:281.899467pt;}
.y111{bottom:283.232800pt;}
.y146{bottom:283.691467pt;}
.yf9{bottom:284.399467pt;}
.yae{bottom:284.566133pt;}
.y95{bottom:289.099467pt;}
.y188{bottom:291.024800pt;}
.y6c{bottom:291.499467pt;}
.y124{bottom:293.899467pt;}
.yf8{bottom:294.803467pt;}
.y19{bottom:295.691467pt;}
.y44{bottom:296.832800pt;}
.y165{bottom:297.232800pt;}
.yd2{bottom:298.699467pt;}
.y110{bottom:299.899467pt;}
.yad{bottom:301.232800pt;}
.y94{bottom:305.766133pt;}
.y6b{bottom:307.632800pt;}
.y187{bottom:307.691467pt;}
.y123{bottom:310.566133pt;}
.yf7{bottom:310.803467pt;}
.y43{bottom:312.566133pt;}
.yd1{bottom:315.499467pt;}
.y10f{bottom:316.566133pt;}
.y145{bottom:317.691467pt;}
.yac{bottom:317.899467pt;}
.y6a{bottom:323.766133pt;}
.y186{bottom:324.358133pt;}
.yf6{bottom:326.803467pt;}
.y122{bottom:327.232800pt;}
.y42{bottom:328.299467pt;}
.yd0{bottom:332.299467pt;}
.y144{bottom:334.358133pt;}
.yab{bottom:334.566133pt;}
.y18{bottom:336.358133pt;}
.y93{bottom:339.766133pt;}
.y69{bottom:339.899467pt;}
.y185{bottom:341.024800pt;}
.y121{bottom:343.899467pt;}
.y41{bottom:345.366133pt;}
.yf5{bottom:346.799467pt;}
.ycf{bottom:349.099467pt;}
.y143{bottom:351.024800pt;}
.yaa{bottom:351.232800pt;}
.y17{bottom:353.024800pt;}
.y92{bottom:355.632800pt;}
.y68{bottom:356.032800pt;}
.y184{bottom:357.691467pt;}
.y120{bottom:360.566133pt;}
.y40{bottom:361.099467pt;}
.yf4{bottom:362.799467pt;}
.yce{bottom:365.899467pt;}
.y142{bottom:367.691467pt;}
.ya9{bottom:367.899467pt;}
.y91{bottom:371.499467pt;}
.y164{bottom:371.899467pt;}
.y67{bottom:372.166133pt;}
.y183{bottom:374.358133pt;}
.yf3{bottom:374.803467pt;}
.y3f{bottom:376.832800pt;}
.y11f{bottom:377.232800pt;}
.y16{bottom:377.691467pt;}
.ycd{bottom:382.699467pt;}
.y141{bottom:384.358133pt;}
.ya8{bottom:384.566133pt;}
.y90{bottom:387.366133pt;}
.y66{bottom:388.299467pt;}
.y163{bottom:388.566133pt;}
.y182{bottom:391.024800pt;}
.y3e{bottom:392.566133pt;}
.y11e{bottom:393.899467pt;}
.y15{bottom:394.358133pt;}
.yf2{bottom:394.799467pt;}
.ycc{bottom:399.499467pt;}
.y140{bottom:401.024800pt;}
.ya7{bottom:401.232800pt;}
.y8f{bottom:403.232800pt;}
.y65{bottom:404.432800pt;}
.y181{bottom:407.691467pt;}
.y3d{bottom:408.299467pt;}
.y162{bottom:409.232800pt;}
.y11d{bottom:410.566133pt;}
.y14{bottom:411.024800pt;}
.ycb{bottom:416.299467pt;}
.yf1{bottom:416.832800pt;}
.y13f{bottom:417.691467pt;}
.ya6{bottom:417.899467pt;}
.y8e{bottom:419.099467pt;}
.y107{bottom:419.232800pt;}
.y64{bottom:420.566133pt;}
.y3c{bottom:424.032800pt;}
.y180{bottom:424.358133pt;}
.y161{bottom:425.899467pt;}
.y11c{bottom:427.232800pt;}
.y13{bottom:427.691467pt;}
.yca{bottom:433.099467pt;}
.yf0{bottom:433.499467pt;}
.y13e{bottom:434.358133pt;}
.ya5{bottom:434.566133pt;}
.y8d{bottom:434.966133pt;}
.y106{bottom:435.899467pt;}
.y63{bottom:436.699467pt;}
.y3b{bottom:439.766133pt;}
.y17f{bottom:441.024800pt;}
.y160{bottom:442.566133pt;}
.y11b{bottom:443.899467pt;}
.y12{bottom:444.358133pt;}
.yc9{bottom:449.899467pt;}
.y8c{bottom:450.832800pt;}
.y13d{bottom:451.024800pt;}
.ya4{bottom:451.232800pt;}
.y105{bottom:452.566133pt;}
.y62{bottom:452.832800pt;}
.y3a{bottom:455.499467pt;}
.y17e{bottom:457.691467pt;}
.yef{bottom:458.166133pt;}
.y11a{bottom:460.566133pt;}
.y11{bottom:461.024800pt;}
.y15f{bottom:463.232800pt;}
.yc8{bottom:466.699467pt;}
.y13c{bottom:467.691467pt;}
.y10e{bottom:467.899467pt;}
.y8b{bottom:468.032800pt;}
.y61{bottom:468.966133pt;}
.ya3{bottom:469.232800pt;}
.y39{bottom:471.232800pt;}
.y17d{bottom:474.358133pt;}
.yee{bottom:474.832800pt;}
.y119{bottom:477.232800pt;}
.y10{bottom:477.691467pt;}
.y15e{bottom:479.899467pt;}
.yc7{bottom:483.499467pt;}
.y8a{bottom:483.899467pt;}
.y13b{bottom:484.358133pt;}
.y10d{bottom:484.566133pt;}
.y60{bottom:485.099467pt;}
.ya2{bottom:485.899467pt;}
.y38{bottom:486.966133pt;}
.y17c{bottom:491.024800pt;}
.yf{bottom:494.358133pt;}
.y15d{bottom:496.566133pt;}
.y89{bottom:499.766133pt;}
.yc6{bottom:500.299467pt;}
.y13a{bottom:501.024800pt;}
.y118{bottom:501.899467pt;}
.y5f{bottom:502.566133pt;}
.y37{bottom:502.699467pt;}
.y17b{bottom:507.691467pt;}
.yed{bottom:508.832800pt;}
.ye{bottom:511.024800pt;}
.y15c{bottom:513.232800pt;}
.y88{bottom:515.632800pt;}
.yc5{bottom:517.099467pt;}
.y139{bottom:517.691467pt;}
.y36{bottom:518.432800pt;}
.y5e{bottom:519.232800pt;}
.y17a{bottom:524.358133pt;}
.yec{bottom:525.099467pt;}
.yd{bottom:527.691467pt;}
.y87{bottom:531.499467pt;}
.y15b{bottom:533.899467pt;}
.y35{bottom:534.166133pt;}
.y138{bottom:534.358133pt;}
.yc4{bottom:535.232800pt;}
.y5d{bottom:535.899467pt;}
.y179{bottom:541.024800pt;}
.yeb{bottom:541.366133pt;}
.yc{bottom:544.358133pt;}
.y86{bottom:547.366133pt;}
.y34{bottom:549.899467pt;}
.y15a{bottom:550.566133pt;}
.y137{bottom:551.024800pt;}
.yc3{bottom:552.032800pt;}
.y5c{bottom:552.566133pt;}
.yea{bottom:557.632800pt;}
.y178{bottom:557.691467pt;}
.yb{bottom:561.024800pt;}
.y85{bottom:563.232800pt;}
.y33{bottom:566.966133pt;}
.y159{bottom:567.232800pt;}
.y136{bottom:567.691467pt;}
.yc2{bottom:568.832800pt;}
.y5b{bottom:569.232800pt;}
.ye9{bottom:573.899467pt;}
.y177{bottom:574.358133pt;}
.ya{bottom:577.691467pt;}
.y84{bottom:579.099467pt;}
.y32{bottom:582.699467pt;}
.y158{bottom:583.899467pt;}
.y135{bottom:584.358133pt;}
.yc1{bottom:585.632800pt;}
.y5a{bottom:585.899467pt;}
.y104{bottom:587.232800pt;}
.ye8{bottom:590.166133pt;}
.y176{bottom:591.024800pt;}
.y9{bottom:594.358133pt;}
.y83{bottom:594.966133pt;}
.y31{bottom:598.432800pt;}
.y134{bottom:601.024800pt;}
.yc0{bottom:602.432800pt;}
.y59{bottom:602.566133pt;}
.y103{bottom:603.899467pt;}
.y157{bottom:604.566133pt;}
.ye7{bottom:606.432800pt;}
.y175{bottom:607.691467pt;}
.y82{bottom:610.832800pt;}
.y30{bottom:614.166133pt;}
.y133{bottom:617.691467pt;}
.y58{bottom:619.232800pt;}
.y102{bottom:620.566133pt;}
.y156{bottom:621.232800pt;}
.ye6{bottom:622.699467pt;}
.y174{bottom:624.358133pt;}
.y81{bottom:626.699467pt;}
.y2f{bottom:629.899467pt;}
.y132{bottom:634.358133pt;}
.y57{bottom:635.899467pt;}
.ybf{bottom:636.032800pt;}
.y101{bottom:637.232800pt;}
.y155{bottom:637.899467pt;}
.ye5{bottom:638.966133pt;}
.y173{bottom:641.024800pt;}
.y80{bottom:642.566133pt;}
.y2e{bottom:645.632800pt;}
.y8{bottom:651.024800pt;}
.ya1{bottom:652.566133pt;}
.ybe{bottom:652.832800pt;}
.y56{bottom:653.899467pt;}
.ye4{bottom:655.232800pt;}
.y7f{bottom:658.432800pt;}
.y154{bottom:658.566133pt;}
.y2d{bottom:661.366133pt;}
.y172{bottom:665.691467pt;}
.y131{bottom:667.691467pt;}
.ya0{bottom:669.232800pt;}
.ybd{bottom:669.632800pt;}
.y55{bottom:670.566133pt;}
.ye3{bottom:671.499467pt;}
.y7e{bottom:674.299467pt;}
.y153{bottom:675.232800pt;}
.y2c{bottom:677.099467pt;}
.y130{bottom:684.358133pt;}
.y117{bottom:685.899467pt;}
.ybc{bottom:686.432800pt;}
.y54{bottom:687.232800pt;}
.ye2{bottom:687.766133pt;}
.y7d{bottom:690.166133pt;}
.y2b{bottom:692.832800pt;}
.y171{bottom:694.358133pt;}
.y152{bottom:695.899467pt;}
.y170{bottom:699.899467pt;}
.y12f{bottom:701.024800pt;}
.y116{bottom:702.566133pt;}
.ybb{bottom:703.232800pt;}
.y53{bottom:703.899467pt;}
.ye1{bottom:704.032800pt;}
.y7c{bottom:706.032800pt;}
.y2a{bottom:708.566133pt;}
.y151{bottom:716.566133pt;}
.y12e{bottom:717.691467pt;}
.y115{bottom:719.232800pt;}
.yba{bottom:720.032800pt;}
.ye0{bottom:720.299467pt;}
.y52{bottom:720.566133pt;}
.y7b{bottom:721.899467pt;}
.y29{bottom:724.299467pt;}
.y150{bottom:733.232800pt;}
.y12d{bottom:734.358133pt;}
.y114{bottom:735.899467pt;}
.ydf{bottom:736.566133pt;}
.yb9{bottom:736.832800pt;}
.y51{bottom:737.232800pt;}
.y7{bottom:737.691467pt;}
.y7a{bottom:737.766133pt;}
.y28{bottom:740.032800pt;}
.y14f{bottom:749.899467pt;}
.yde{bottom:752.832800pt;}
.yb8{bottom:753.632800pt;}
.y50{bottom:753.899467pt;}
.y6{bottom:754.358133pt;}
.y79{bottom:754.966133pt;}
.y27{bottom:755.766133pt;}
.y12c{bottom:759.024800pt;}
.y3{bottom:766.363467pt;}
.yb7{bottom:770.432800pt;}
.y4f{bottom:770.566133pt;}
.y5{bottom:771.024800pt;}
.y78{bottom:771.099467pt;}
.y26{bottom:771.499467pt;}
.y25{bottom:787.232800pt;}
.y4{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y24{bottom:820.263467pt;}
.he{height:24.349359pt;}
.hb{height:25.781625pt;}
.hd{height:37.125000pt;}
.h3{height:39.632812pt;}
.h9{height:41.593750pt;}
.hc{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.ha{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;}
.x4{left:81.259200pt;}
.x8{left:96.377867pt;}
.x5{left:97.803200pt;}
.x7{left:119.055200pt;}
.x6{left:126.613867pt;}
.xa{left:143.632533pt;}
.xc{left:149.600533pt;}
.xd{left:287.056533pt;}
.xb{left:293.089867pt;}
.x3{left:394.097867pt;}
.x9{left:414.383200pt;}
.x2{left:460.425867pt;}
.x1{left:538.196533pt;}
}




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