
    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_4447405b86b4a84254caea81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_7d8a7c3e02f93431ccb34dd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_b3a33e1228fbaf873abdb7c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_c76fa8bc34144a3de15f0ba2.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3cc02f9670bc654549162d35.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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;}
.ls9{letter-spacing:0.003148px;}
.ls3{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.lsb{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.030000px;}
.ls8{letter-spacing:0.047223px;}
.lsc{letter-spacing:0.307800px;}
.ls7{letter-spacing:0.513157px;}
.lsa{letter-spacing:11.562000px;}
.ls5{letter-spacing:11.898000px;}
.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;}
}
.ws5{word-spacing:-19.508346px;}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws7{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.wsa{word-spacing:-1.296600px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.019200px;}
.ws8{word-spacing:13.296600px;}
._0{margin-left:-9.169200px;}
._19{margin-left:-8.163900px;}
._b{margin-left:-6.626100px;}
._a{margin-left:-5.187600px;}
._2{margin-left:-4.063500px;}
._3{margin-left:-2.457000px;}
._1{margin-left:-1.278900px;}
._4{width:1.076100px;}
._5{width:2.784900px;}
._9{width:4.646400px;}
._d{width:5.973000px;}
._c{width:7.477800px;}
._16{width:8.544600px;}
._10{width:9.589800px;}
._7{width:11.292600px;}
._6{width:12.348600px;}
._18{width:13.841400px;}
._8{width:15.609000px;}
._15{width:16.823400px;}
._17{width:18.176832px;}
._14{width:19.494600px;}
._13{width:20.539500px;}
._11{width:21.714000px;}
._12{width:23.352072px;}
._f{width:24.756600px;}
._e{width:26.221800px;}
._1c{width:28.234800px;}
._1d{width:29.668800px;}
._21{width:31.447200px;}
._20{width:35.593800px;}
._1e{width:38.643000px;}
._1a{width:55.433400px;}
._1b{width:56.634600px;}
._1f{width:123.144000px;}
.fc2{color:rgb(34,31,29);}
.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;}
.y52{bottom:123.306900px;}
.yc5{bottom:123.419400px;}
.y12a{bottom:123.497400px;}
.ya7{bottom:123.767400px;}
.y28{bottom:126.029400px;}
.y7f{bottom:128.253900px;}
.y157{bottom:135.636900px;}
.y51{bottom:139.506900px;}
.ye5{bottom:139.619400px;}
.y129{bottom:139.697400px;}
.ya6{bottom:139.967400px;}
.y27{bottom:142.229400px;}
.yc4{bottom:144.114900px;}
.y7e{bottom:144.453900px;}
.y156{bottom:154.386900px;}
.y50{bottom:155.706900px;}
.yc3{bottom:155.819400px;}
.ya5{bottom:156.167400px;}
.y128{bottom:160.392900px;}
.y7d{bottom:160.653900px;}
.y26{bottom:162.924900px;}
.y4f{bottom:171.906900px;}
.yc2{bottom:172.019400px;}
.y127{bottom:172.097400px;}
.ya4{bottom:172.367400px;}
.y155{bottom:174.636900px;}
.y104{bottom:176.514900px;}
.y25{bottom:179.124900px;}
.y7c{bottom:181.349400px;}
.y4e{bottom:188.106900px;}
.ye4{bottom:188.219400px;}
.y126{bottom:188.297400px;}
.ya3{bottom:188.567400px;}
.yc1{bottom:192.714900px;}
.y7b{bottom:193.053900px;}
.y154{bottom:193.386900px;}
.yc0{bottom:204.419400px;}
.y125{bottom:204.497400px;}
.ya2{bottom:204.767400px;}
.y103{bottom:206.136900px;}
.y24{bottom:207.402900px;}
.y4d{bottom:208.802400px;}
.ye3{bottom:208.914900px;}
.y7a{bottom:209.253900px;}
.y153{bottom:212.136900px;}
.y195{bottom:213.402900px;}
.y4c{bottom:220.506900px;}
.ybf{bottom:220.619400px;}
.ya1{bottom:220.967400px;}
.y102{bottom:224.886900px;}
.y124{bottom:225.192900px;}
.y79{bottom:225.453900px;}
.y23{bottom:226.152900px;}
.y194{bottom:232.152900px;}
.y152{bottom:232.386900px;}
.y4b{bottom:236.706900px;}
.y145{bottom:236.819400px;}
.ya0{bottom:237.167400px;}
.ye2{bottom:241.314900px;}
.y78{bottom:241.653900px;}
.y101{bottom:243.636900px;}
.y22{bottom:244.902900px;}
.y151{bottom:251.136900px;}
.y193{bottom:252.402900px;}
.y4a{bottom:252.906900px;}
.y9f{bottom:253.367400px;}
.y177{bottom:253.386900px;}
.y123{bottom:255.627900px;}
.y144{bottom:257.514900px;}
.y77{bottom:257.853900px;}
.ybe{bottom:259.386900px;}
.y100{bottom:262.386900px;}
.y21{bottom:263.652900px;}
.y49{bottom:269.106900px;}
.y149{bottom:269.219400px;}
.y9e{bottom:269.567400px;}
.y150{bottom:269.886900px;}
.y192{bottom:271.152900px;}
.y176{bottom:272.136900px;}
.ye1{bottom:272.886900px;}
.y76{bottom:274.053900px;}
.y122{bottom:274.377900px;}
.ybd{bottom:278.136900px;}
.yff{bottom:281.136900px;}
.y20{bottom:282.402900px;}
.y48{bottom:285.306900px;}
.y148{bottom:285.419400px;}
.y9d{bottom:285.767400px;}
.y14f{bottom:288.636900px;}
.y191{bottom:289.902900px;}
.y75{bottom:290.253900px;}
.y175{bottom:290.886900px;}
.ye0{bottom:291.636900px;}
.y121{bottom:293.127900px;}
.ybc{bottom:296.886900px;}
.yfe{bottom:299.886900px;}
.y1f{bottom:301.152900px;}
.y47{bottom:301.506900px;}
.y147{bottom:301.619400px;}
.y9c{bottom:301.967400px;}
.y74{bottom:306.453900px;}
.y190{bottom:308.652900px;}
.y14e{bottom:308.886900px;}
.y174{bottom:309.636900px;}
.ydf{bottom:310.386900px;}
.y120{bottom:313.377900px;}
.ybb{bottom:315.636900px;}
.y46{bottom:317.706900px;}
.y146{bottom:317.819400px;}
.y9b{bottom:318.167400px;}
.yfd{bottom:318.636900px;}
.y1e{bottom:319.902900px;}
.y73{bottom:322.653900px;}
.y18f{bottom:327.402900px;}
.y14d{bottom:327.636900px;}
.y173{bottom:328.386900px;}
.yde{bottom:329.136900px;}
.y11f{bottom:332.127900px;}
.y45{bottom:333.906900px;}
.y9a{bottom:334.367400px;}
.yba{bottom:334.386900px;}
.yfc{bottom:337.386900px;}
.y1d{bottom:338.652900px;}
.y72{bottom:338.853900px;}
.y18e{bottom:346.152900px;}
.y143{bottom:346.386900px;}
.y172{bottom:347.136900px;}
.ydd{bottom:349.386900px;}
.y99{bottom:350.567400px;}
.y11e{bottom:350.877900px;}
.yb9{bottom:353.136900px;}
.y44{bottom:354.602400px;}
.y71{bottom:355.053900px;}
.yfb{bottom:356.136900px;}
.y1c{bottom:357.402900px;}
.y18d{bottom:364.902900px;}
.y142{bottom:365.136900px;}
.y14c{bottom:366.636900px;}
.y98{bottom:366.767400px;}
.y171{bottom:367.386900px;}
.ydc{bottom:368.136900px;}
.y11d{bottom:369.627900px;}
.y70{bottom:371.253900px;}
.yb8{bottom:371.886900px;}
.y1b{bottom:376.152900px;}
.yfa{bottom:376.386900px;}
.y43{bottom:377.877900px;}
.y97{bottom:382.967400px;}
.y18c{bottom:383.652900px;}
.y141{bottom:385.386900px;}
.y170{bottom:386.136900px;}
.y11c{bottom:388.377900px;}
.ydb{bottom:388.386900px;}
.yb7{bottom:390.636900px;}
.y6f{bottom:391.949400px;}
.y1a{bottom:394.902900px;}
.yf9{bottom:395.136900px;}
.y42{bottom:396.627900px;}
.y18b{bottom:402.402900px;}
.y6e{bottom:403.653900px;}
.y96{bottom:403.662900px;}
.y140{bottom:404.136900px;}
.y16f{bottom:404.886900px;}
.y11b{bottom:407.127900px;}
.yda{bottom:407.136900px;}
.yb6{bottom:410.886900px;}
.y19{bottom:413.652900px;}
.yf8{bottom:413.886900px;}
.y95{bottom:415.367400px;}
.y41{bottom:416.877900px;}
.y18a{bottom:421.152900px;}
.y6d{bottom:421.653900px;}
.y13f{bottom:422.886900px;}
.y16e{bottom:425.136900px;}
.y11a{bottom:425.877900px;}
.yd9{bottom:425.886900px;}
.yb5{bottom:429.636900px;}
.y94{bottom:431.567400px;}
.y18{bottom:432.402900px;}
.yf7{bottom:432.636900px;}
.y40{bottom:435.627900px;}
.y6c{bottom:439.653900px;}
.y189{bottom:439.902900px;}
.y13e{bottom:441.636900px;}
.y16d{bottom:443.886900px;}
.y119{bottom:444.627900px;}
.yd8{bottom:444.636900px;}
.y93{bottom:447.767400px;}
.yb4{bottom:448.386900px;}
.y14b{bottom:450.636900px;}
.y17{bottom:451.152900px;}
.yf6{bottom:451.386900px;}
.y3f{bottom:454.377900px;}
.y6b{bottom:457.653900px;}
.y188{bottom:458.652900px;}
.y13d{bottom:460.386900px;}
.y16c{bottom:462.636900px;}
.y118{bottom:463.377900px;}
.yd7{bottom:463.386900px;}
.y92{bottom:463.967400px;}
.yb3{bottom:468.636900px;}
.y16{bottom:469.902900px;}
.yf5{bottom:470.136900px;}
.y3e{bottom:473.127900px;}
.y6a{bottom:475.653900px;}
.y187{bottom:477.402900px;}
.y13c{bottom:479.136900px;}
.y91{bottom:480.167400px;}
.y16b{bottom:481.386900px;}
.y117{bottom:482.127900px;}
.yd6{bottom:482.136900px;}
.yb2{bottom:487.386900px;}
.y15{bottom:488.652900px;}
.yf4{bottom:488.886900px;}
.y3d{bottom:491.877900px;}
.y69{bottom:493.653900px;}
.y186{bottom:496.152900px;}
.y13b{bottom:497.886900px;}
.y16a{bottom:500.136900px;}
.y116{bottom:500.877900px;}
.yd5{bottom:500.886900px;}
.yb1{bottom:506.136900px;}
.y14{bottom:507.402900px;}
.yf3{bottom:507.636900px;}
.y3c{bottom:510.627900px;}
.y68{bottom:511.653900px;}
.y185{bottom:514.902900px;}
.y13a{bottom:516.636900px;}
.y90{bottom:518.136900px;}
.y115{bottom:519.627900px;}
.yd4{bottom:519.636900px;}
.y169{bottom:520.386900px;}
.y13{bottom:526.152900px;}
.yb0{bottom:526.386900px;}
.y3b{bottom:529.377900px;}
.y67{bottom:529.653900px;}
.y184{bottom:533.652900px;}
.y139{bottom:535.386900px;}
.y8f{bottom:536.886900px;}
.y114{bottom:538.377900px;}
.yd3{bottom:538.386900px;}
.y168{bottom:539.136900px;}
.y12{bottom:544.902900px;}
.yaf{bottom:545.136900px;}
.y66{bottom:547.653900px;}
.y3a{bottom:548.127900px;}
.y183{bottom:552.402900px;}
.y138{bottom:555.636900px;}
.y113{bottom:557.127900px;}
.y8e{bottom:557.136900px;}
.y167{bottom:559.386900px;}
.y11{bottom:563.652900px;}
.yf2{bottom:563.886900px;}
.yae{bottom:565.386900px;}
.y65{bottom:565.653900px;}
.y39{bottom:566.877900px;}
.y182{bottom:571.152900px;}
.y137{bottom:574.386900px;}
.y112{bottom:575.877900px;}
.y8d{bottom:575.886900px;}
.yd2{bottom:577.386900px;}
.y166{bottom:578.136900px;}
.y10{bottom:582.402900px;}
.yf1{bottom:582.636900px;}
.y64{bottom:583.653900px;}
.yad{bottom:584.136900px;}
.y38{bottom:585.627900px;}
.y181{bottom:589.902900px;}
.y136{bottom:593.136900px;}
.y8c{bottom:594.636900px;}
.y111{bottom:596.127900px;}
.yd1{bottom:596.136900px;}
.y165{bottom:596.886900px;}
.yf{bottom:601.152900px;}
.yf0{bottom:601.386900px;}
.y63{bottom:601.653900px;}
.yac{bottom:604.386900px;}
.y37{bottom:605.877900px;}
.y180{bottom:608.652900px;}
.y135{bottom:611.886900px;}
.y8b{bottom:613.386900px;}
.y110{bottom:614.877900px;}
.yd0{bottom:614.886900px;}
.y164{bottom:617.136900px;}
.y62{bottom:619.653900px;}
.ye{bottom:619.902900px;}
.yef{bottom:620.136900px;}
.yab{bottom:623.136900px;}
.y36{bottom:624.627900px;}
.y17f{bottom:627.402900px;}
.y134{bottom:630.636900px;}
.y8a{bottom:632.136900px;}
.y10f{bottom:633.627900px;}
.ycf{bottom:633.636900px;}
.y163{bottom:635.886900px;}
.yd{bottom:638.652900px;}
.yee{bottom:638.886900px;}
.y14a{bottom:640.386900px;}
.yaa{bottom:641.886900px;}
.y61{bottom:642.149400px;}
.y35{bottom:643.377900px;}
.y17e{bottom:646.152900px;}
.y133{bottom:649.386900px;}
.y10e{bottom:652.377900px;}
.yce{bottom:652.386900px;}
.y60{bottom:653.969400px;}
.y162{bottom:654.636900px;}
.yc{bottom:657.402900px;}
.yed{bottom:659.136900px;}
.y89{bottom:659.886900px;}
.ya9{bottom:660.636900px;}
.y34{bottom:662.127900px;}
.y17d{bottom:664.902900px;}
.y132{bottom:668.136900px;}
.y5f{bottom:670.169400px;}
.ycd{bottom:671.136900px;}
.y10d{bottom:672.627900px;}
.y161{bottom:674.886900px;}
.yb{bottom:676.152900px;}
.yec{bottom:677.886900px;}
.ya8{bottom:679.386900px;}
.y33{bottom:680.877900px;}
.y17c{bottom:683.652900px;}
.y5e{bottom:686.369400px;}
.y131{bottom:688.386900px;}
.y10c{bottom:691.377900px;}
.ycc{bottom:691.386900px;}
.y160{bottom:693.636900px;}
.yeb{bottom:696.636900px;}
.y88{bottom:698.136900px;}
.y32{bottom:699.627900px;}
.y17b{bottom:702.402900px;}
.y5d{bottom:702.569400px;}
.y130{bottom:707.136900px;}
.y10b{bottom:710.127900px;}
.ycb{bottom:710.136900px;}
.y15f{bottom:712.386900px;}
.yea{bottom:715.386900px;}
.y87{bottom:716.886900px;}
.y31{bottom:718.377900px;}
.y5c{bottom:718.769400px;}
.y12f{bottom:725.886900px;}
.yca{bottom:728.886900px;}
.y17a{bottom:730.152900px;}
.ya{bottom:730.902900px;}
.y15e{bottom:732.636900px;}
.ye9{bottom:734.136900px;}
.y5b{bottom:734.969400px;}
.y86{bottom:735.636900px;}
.y30{bottom:737.127900px;}
.y10a{bottom:737.877900px;}
.y12e{bottom:744.636900px;}
.yc9{bottom:749.136900px;}
.y5a{bottom:751.169400px;}
.y15d{bottom:751.386900px;}
.ye8{bottom:752.886900px;}
.y9{bottom:753.402900px;}
.y85{bottom:754.386900px;}
.y2f{bottom:755.877900px;}
.y179{bottom:762.402900px;}
.y12d{bottom:763.386900px;}
.y59{bottom:767.369400px;}
.yc8{bottom:767.886900px;}
.y15c{bottom:770.136900px;}
.y109{bottom:771.627900px;}
.ye7{bottom:771.636900px;}
.y84{bottom:773.136900px;}
.y2e{bottom:774.627900px;}
.y178{bottom:781.152900px;}
.y12c{bottom:782.136900px;}
.y58{bottom:783.569400px;}
.yc7{bottom:786.636900px;}
.y15b{bottom:788.886900px;}
.y108{bottom:790.377900px;}
.ye6{bottom:790.386900px;}
.y83{bottom:791.886900px;}
.y2d{bottom:793.377900px;}
.y57{bottom:799.769400px;}
.y107{bottom:809.127900px;}
.y15a{bottom:809.136900px;}
.y12b{bottom:809.886900px;}
.y82{bottom:810.636900px;}
.yc6{bottom:814.386900px;}
.y56{bottom:815.969400px;}
.y2c{bottom:821.127900px;}
.y159{bottom:827.886900px;}
.y106{bottom:829.377900px;}
.y81{bottom:829.386900px;}
.y8{bottom:829.902900px;}
.y55{bottom:832.169400px;}
.y4{bottom:842.973900px;}
.y158{bottom:846.636900px;}
.y105{bottom:848.127900px;}
.y80{bottom:848.136900px;}
.y7{bottom:848.652900px;}
.y2b{bottom:866.877900px;}
.y54{bottom:866.886900px;}
.y6{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y2a{bottom:885.627900px;}
.y53{bottom:885.636900px;}
.y5{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y29{bottom:922.796400px;}
.ha{height:28.951594px;}
.h3{height:38.285156px;}
.hc{height:41.718750px;}
.h5{height:44.666016px;}
.he{height:45.619629px;}
.h9{height:46.792969px;}
.hb{height:46.933594px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.h2{height:54.755859px;}
.h6{height:56.481445px;}
.hd{height:57.363281px;}
.h7{height:58.902683px;}
.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;}
.xb{left:116.397600px;}
.x9{left:133.937100px;}
.x7{left:142.440600px;}
.x5{left:162.779100px;}
.x6{left:243.510600px;}
.xc{left:264.518100px;}
.xd{left:322.938600px;}
.x3{left:443.360100px;}
.xa{left:487.826100px;}
.x2{left:551.886600px;}
.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;}
.ls9{letter-spacing:0.002798pt;}
.ls3{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.lsb{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.026667pt;}
.ls8{letter-spacing:0.041976pt;}
.lsc{letter-spacing:0.273600pt;}
.ls7{letter-spacing:0.456139pt;}
.lsa{letter-spacing:10.277333pt;}
.ls5{letter-spacing:10.576000pt;}
.ws5{word-spacing:-17.340752pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws7{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.wsa{word-spacing:-1.152533pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.017067pt;}
.ws8{word-spacing:11.819200pt;}
._0{margin-left:-8.150400pt;}
._19{margin-left:-7.256800pt;}
._b{margin-left:-5.889867pt;}
._a{margin-left:-4.611200pt;}
._2{margin-left:-3.612000pt;}
._3{margin-left:-2.184000pt;}
._1{margin-left:-1.136800pt;}
._4{width:0.956533pt;}
._5{width:2.475467pt;}
._9{width:4.130133pt;}
._d{width:5.309333pt;}
._c{width:6.646933pt;}
._16{width:7.595200pt;}
._10{width:8.524267pt;}
._7{width:10.037867pt;}
._6{width:10.976533pt;}
._18{width:12.303467pt;}
._8{width:13.874667pt;}
._15{width:14.954133pt;}
._17{width:16.157184pt;}
._14{width:17.328533pt;}
._13{width:18.257333pt;}
._11{width:19.301333pt;}
._12{width:20.757397pt;}
._f{width:22.005867pt;}
._e{width:23.308267pt;}
._1c{width:25.097600pt;}
._1d{width:26.372267pt;}
._21{width:27.953067pt;}
._20{width:31.638933pt;}
._1e{width:34.349333pt;}
._1a{width:49.274133pt;}
._1b{width:50.341867pt;}
._1f{width:109.461333pt;}
.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;}
.y52{bottom:109.606133pt;}
.yc5{bottom:109.706133pt;}
.y12a{bottom:109.775467pt;}
.ya7{bottom:110.015467pt;}
.y28{bottom:112.026133pt;}
.y7f{bottom:114.003467pt;}
.y157{bottom:120.566133pt;}
.y51{bottom:124.006133pt;}
.ye5{bottom:124.106133pt;}
.y129{bottom:124.175467pt;}
.ya6{bottom:124.415467pt;}
.y27{bottom:126.426133pt;}
.yc4{bottom:128.102133pt;}
.y7e{bottom:128.403467pt;}
.y156{bottom:137.232800pt;}
.y50{bottom:138.406133pt;}
.yc3{bottom:138.506133pt;}
.ya5{bottom:138.815467pt;}
.y128{bottom:142.571467pt;}
.y7d{bottom:142.803467pt;}
.y26{bottom:144.822133pt;}
.y4f{bottom:152.806133pt;}
.yc2{bottom:152.906133pt;}
.y127{bottom:152.975467pt;}
.ya4{bottom:153.215467pt;}
.y155{bottom:155.232800pt;}
.y104{bottom:156.902133pt;}
.y25{bottom:159.222133pt;}
.y7c{bottom:161.199467pt;}
.y4e{bottom:167.206133pt;}
.ye4{bottom:167.306133pt;}
.y126{bottom:167.375467pt;}
.ya3{bottom:167.615467pt;}
.yc1{bottom:171.302133pt;}
.y7b{bottom:171.603467pt;}
.y154{bottom:171.899467pt;}
.yc0{bottom:181.706133pt;}
.y125{bottom:181.775467pt;}
.ya2{bottom:182.015467pt;}
.y103{bottom:183.232800pt;}
.y24{bottom:184.358133pt;}
.y4d{bottom:185.602133pt;}
.ye3{bottom:185.702133pt;}
.y7a{bottom:186.003467pt;}
.y153{bottom:188.566133pt;}
.y195{bottom:189.691467pt;}
.y4c{bottom:196.006133pt;}
.ybf{bottom:196.106133pt;}
.ya1{bottom:196.415467pt;}
.y102{bottom:199.899467pt;}
.y124{bottom:200.171467pt;}
.y79{bottom:200.403467pt;}
.y23{bottom:201.024800pt;}
.y194{bottom:206.358133pt;}
.y152{bottom:206.566133pt;}
.y4b{bottom:210.406133pt;}
.y145{bottom:210.506133pt;}
.ya0{bottom:210.815467pt;}
.ye2{bottom:214.502133pt;}
.y78{bottom:214.803467pt;}
.y101{bottom:216.566133pt;}
.y22{bottom:217.691467pt;}
.y151{bottom:223.232800pt;}
.y193{bottom:224.358133pt;}
.y4a{bottom:224.806133pt;}
.y9f{bottom:225.215467pt;}
.y177{bottom:225.232800pt;}
.y123{bottom:227.224800pt;}
.y144{bottom:228.902133pt;}
.y77{bottom:229.203467pt;}
.ybe{bottom:230.566133pt;}
.y100{bottom:233.232800pt;}
.y21{bottom:234.358133pt;}
.y49{bottom:239.206133pt;}
.y149{bottom:239.306133pt;}
.y9e{bottom:239.615467pt;}
.y150{bottom:239.899467pt;}
.y192{bottom:241.024800pt;}
.y176{bottom:241.899467pt;}
.ye1{bottom:242.566133pt;}
.y76{bottom:243.603467pt;}
.y122{bottom:243.891467pt;}
.ybd{bottom:247.232800pt;}
.yff{bottom:249.899467pt;}
.y20{bottom:251.024800pt;}
.y48{bottom:253.606133pt;}
.y148{bottom:253.706133pt;}
.y9d{bottom:254.015467pt;}
.y14f{bottom:256.566133pt;}
.y191{bottom:257.691467pt;}
.y75{bottom:258.003467pt;}
.y175{bottom:258.566133pt;}
.ye0{bottom:259.232800pt;}
.y121{bottom:260.558133pt;}
.ybc{bottom:263.899467pt;}
.yfe{bottom:266.566133pt;}
.y1f{bottom:267.691467pt;}
.y47{bottom:268.006133pt;}
.y147{bottom:268.106133pt;}
.y9c{bottom:268.415467pt;}
.y74{bottom:272.403467pt;}
.y190{bottom:274.358133pt;}
.y14e{bottom:274.566133pt;}
.y174{bottom:275.232800pt;}
.ydf{bottom:275.899467pt;}
.y120{bottom:278.558133pt;}
.ybb{bottom:280.566133pt;}
.y46{bottom:282.406133pt;}
.y146{bottom:282.506133pt;}
.y9b{bottom:282.815467pt;}
.yfd{bottom:283.232800pt;}
.y1e{bottom:284.358133pt;}
.y73{bottom:286.803467pt;}
.y18f{bottom:291.024800pt;}
.y14d{bottom:291.232800pt;}
.y173{bottom:291.899467pt;}
.yde{bottom:292.566133pt;}
.y11f{bottom:295.224800pt;}
.y45{bottom:296.806133pt;}
.y9a{bottom:297.215467pt;}
.yba{bottom:297.232800pt;}
.yfc{bottom:299.899467pt;}
.y1d{bottom:301.024800pt;}
.y72{bottom:301.203467pt;}
.y18e{bottom:307.691467pt;}
.y143{bottom:307.899467pt;}
.y172{bottom:308.566133pt;}
.ydd{bottom:310.566133pt;}
.y99{bottom:311.615467pt;}
.y11e{bottom:311.891467pt;}
.yb9{bottom:313.899467pt;}
.y44{bottom:315.202133pt;}
.y71{bottom:315.603467pt;}
.yfb{bottom:316.566133pt;}
.y1c{bottom:317.691467pt;}
.y18d{bottom:324.358133pt;}
.y142{bottom:324.566133pt;}
.y14c{bottom:325.899467pt;}
.y98{bottom:326.015467pt;}
.y171{bottom:326.566133pt;}
.ydc{bottom:327.232800pt;}
.y11d{bottom:328.558133pt;}
.y70{bottom:330.003467pt;}
.yb8{bottom:330.566133pt;}
.y1b{bottom:334.358133pt;}
.yfa{bottom:334.566133pt;}
.y43{bottom:335.891467pt;}
.y97{bottom:340.415467pt;}
.y18c{bottom:341.024800pt;}
.y141{bottom:342.566133pt;}
.y170{bottom:343.232800pt;}
.y11c{bottom:345.224800pt;}
.ydb{bottom:345.232800pt;}
.yb7{bottom:347.232800pt;}
.y6f{bottom:348.399467pt;}
.y1a{bottom:351.024800pt;}
.yf9{bottom:351.232800pt;}
.y42{bottom:352.558133pt;}
.y18b{bottom:357.691467pt;}
.y6e{bottom:358.803467pt;}
.y96{bottom:358.811467pt;}
.y140{bottom:359.232800pt;}
.y16f{bottom:359.899467pt;}
.y11b{bottom:361.891467pt;}
.yda{bottom:361.899467pt;}
.yb6{bottom:365.232800pt;}
.y19{bottom:367.691467pt;}
.yf8{bottom:367.899467pt;}
.y95{bottom:369.215467pt;}
.y41{bottom:370.558133pt;}
.y18a{bottom:374.358133pt;}
.y6d{bottom:374.803467pt;}
.y13f{bottom:375.899467pt;}
.y16e{bottom:377.899467pt;}
.y11a{bottom:378.558133pt;}
.yd9{bottom:378.566133pt;}
.yb5{bottom:381.899467pt;}
.y94{bottom:383.615467pt;}
.y18{bottom:384.358133pt;}
.yf7{bottom:384.566133pt;}
.y40{bottom:387.224800pt;}
.y6c{bottom:390.803467pt;}
.y189{bottom:391.024800pt;}
.y13e{bottom:392.566133pt;}
.y16d{bottom:394.566133pt;}
.y119{bottom:395.224800pt;}
.yd8{bottom:395.232800pt;}
.y93{bottom:398.015467pt;}
.yb4{bottom:398.566133pt;}
.y14b{bottom:400.566133pt;}
.y17{bottom:401.024800pt;}
.yf6{bottom:401.232800pt;}
.y3f{bottom:403.891467pt;}
.y6b{bottom:406.803467pt;}
.y188{bottom:407.691467pt;}
.y13d{bottom:409.232800pt;}
.y16c{bottom:411.232800pt;}
.y118{bottom:411.891467pt;}
.yd7{bottom:411.899467pt;}
.y92{bottom:412.415467pt;}
.yb3{bottom:416.566133pt;}
.y16{bottom:417.691467pt;}
.yf5{bottom:417.899467pt;}
.y3e{bottom:420.558133pt;}
.y6a{bottom:422.803467pt;}
.y187{bottom:424.358133pt;}
.y13c{bottom:425.899467pt;}
.y91{bottom:426.815467pt;}
.y16b{bottom:427.899467pt;}
.y117{bottom:428.558133pt;}
.yd6{bottom:428.566133pt;}
.yb2{bottom:433.232800pt;}
.y15{bottom:434.358133pt;}
.yf4{bottom:434.566133pt;}
.y3d{bottom:437.224800pt;}
.y69{bottom:438.803467pt;}
.y186{bottom:441.024800pt;}
.y13b{bottom:442.566133pt;}
.y16a{bottom:444.566133pt;}
.y116{bottom:445.224800pt;}
.yd5{bottom:445.232800pt;}
.yb1{bottom:449.899467pt;}
.y14{bottom:451.024800pt;}
.yf3{bottom:451.232800pt;}
.y3c{bottom:453.891467pt;}
.y68{bottom:454.803467pt;}
.y185{bottom:457.691467pt;}
.y13a{bottom:459.232800pt;}
.y90{bottom:460.566133pt;}
.y115{bottom:461.891467pt;}
.yd4{bottom:461.899467pt;}
.y169{bottom:462.566133pt;}
.y13{bottom:467.691467pt;}
.yb0{bottom:467.899467pt;}
.y3b{bottom:470.558133pt;}
.y67{bottom:470.803467pt;}
.y184{bottom:474.358133pt;}
.y139{bottom:475.899467pt;}
.y8f{bottom:477.232800pt;}
.y114{bottom:478.558133pt;}
.yd3{bottom:478.566133pt;}
.y168{bottom:479.232800pt;}
.y12{bottom:484.358133pt;}
.yaf{bottom:484.566133pt;}
.y66{bottom:486.803467pt;}
.y3a{bottom:487.224800pt;}
.y183{bottom:491.024800pt;}
.y138{bottom:493.899467pt;}
.y113{bottom:495.224800pt;}
.y8e{bottom:495.232800pt;}
.y167{bottom:497.232800pt;}
.y11{bottom:501.024800pt;}
.yf2{bottom:501.232800pt;}
.yae{bottom:502.566133pt;}
.y65{bottom:502.803467pt;}
.y39{bottom:503.891467pt;}
.y182{bottom:507.691467pt;}
.y137{bottom:510.566133pt;}
.y112{bottom:511.891467pt;}
.y8d{bottom:511.899467pt;}
.yd2{bottom:513.232800pt;}
.y166{bottom:513.899467pt;}
.y10{bottom:517.691467pt;}
.yf1{bottom:517.899467pt;}
.y64{bottom:518.803467pt;}
.yad{bottom:519.232800pt;}
.y38{bottom:520.558133pt;}
.y181{bottom:524.358133pt;}
.y136{bottom:527.232800pt;}
.y8c{bottom:528.566133pt;}
.y111{bottom:529.891467pt;}
.yd1{bottom:529.899467pt;}
.y165{bottom:530.566133pt;}
.yf{bottom:534.358133pt;}
.yf0{bottom:534.566133pt;}
.y63{bottom:534.803467pt;}
.yac{bottom:537.232800pt;}
.y37{bottom:538.558133pt;}
.y180{bottom:541.024800pt;}
.y135{bottom:543.899467pt;}
.y8b{bottom:545.232800pt;}
.y110{bottom:546.558133pt;}
.yd0{bottom:546.566133pt;}
.y164{bottom:548.566133pt;}
.y62{bottom:550.803467pt;}
.ye{bottom:551.024800pt;}
.yef{bottom:551.232800pt;}
.yab{bottom:553.899467pt;}
.y36{bottom:555.224800pt;}
.y17f{bottom:557.691467pt;}
.y134{bottom:560.566133pt;}
.y8a{bottom:561.899467pt;}
.y10f{bottom:563.224800pt;}
.ycf{bottom:563.232800pt;}
.y163{bottom:565.232800pt;}
.yd{bottom:567.691467pt;}
.yee{bottom:567.899467pt;}
.y14a{bottom:569.232800pt;}
.yaa{bottom:570.566133pt;}
.y61{bottom:570.799467pt;}
.y35{bottom:571.891467pt;}
.y17e{bottom:574.358133pt;}
.y133{bottom:577.232800pt;}
.y10e{bottom:579.891467pt;}
.yce{bottom:579.899467pt;}
.y60{bottom:581.306133pt;}
.y162{bottom:581.899467pt;}
.yc{bottom:584.358133pt;}
.yed{bottom:585.899467pt;}
.y89{bottom:586.566133pt;}
.ya9{bottom:587.232800pt;}
.y34{bottom:588.558133pt;}
.y17d{bottom:591.024800pt;}
.y132{bottom:593.899467pt;}
.y5f{bottom:595.706133pt;}
.ycd{bottom:596.566133pt;}
.y10d{bottom:597.891467pt;}
.y161{bottom:599.899467pt;}
.yb{bottom:601.024800pt;}
.yec{bottom:602.566133pt;}
.ya8{bottom:603.899467pt;}
.y33{bottom:605.224800pt;}
.y17c{bottom:607.691467pt;}
.y5e{bottom:610.106133pt;}
.y131{bottom:611.899467pt;}
.y10c{bottom:614.558133pt;}
.ycc{bottom:614.566133pt;}
.y160{bottom:616.566133pt;}
.yeb{bottom:619.232800pt;}
.y88{bottom:620.566133pt;}
.y32{bottom:621.891467pt;}
.y17b{bottom:624.358133pt;}
.y5d{bottom:624.506133pt;}
.y130{bottom:628.566133pt;}
.y10b{bottom:631.224800pt;}
.ycb{bottom:631.232800pt;}
.y15f{bottom:633.232800pt;}
.yea{bottom:635.899467pt;}
.y87{bottom:637.232800pt;}
.y31{bottom:638.558133pt;}
.y5c{bottom:638.906133pt;}
.y12f{bottom:645.232800pt;}
.yca{bottom:647.899467pt;}
.y17a{bottom:649.024800pt;}
.ya{bottom:649.691467pt;}
.y15e{bottom:651.232800pt;}
.ye9{bottom:652.566133pt;}
.y5b{bottom:653.306133pt;}
.y86{bottom:653.899467pt;}
.y30{bottom:655.224800pt;}
.y10a{bottom:655.891467pt;}
.y12e{bottom:661.899467pt;}
.yc9{bottom:665.899467pt;}
.y5a{bottom:667.706133pt;}
.y15d{bottom:667.899467pt;}
.ye8{bottom:669.232800pt;}
.y9{bottom:669.691467pt;}
.y85{bottom:670.566133pt;}
.y2f{bottom:671.891467pt;}
.y179{bottom:677.691467pt;}
.y12d{bottom:678.566133pt;}
.y59{bottom:682.106133pt;}
.yc8{bottom:682.566133pt;}
.y15c{bottom:684.566133pt;}
.y109{bottom:685.891467pt;}
.ye7{bottom:685.899467pt;}
.y84{bottom:687.232800pt;}
.y2e{bottom:688.558133pt;}
.y178{bottom:694.358133pt;}
.y12c{bottom:695.232800pt;}
.y58{bottom:696.506133pt;}
.yc7{bottom:699.232800pt;}
.y15b{bottom:701.232800pt;}
.y108{bottom:702.558133pt;}
.ye6{bottom:702.566133pt;}
.y83{bottom:703.899467pt;}
.y2d{bottom:705.224800pt;}
.y57{bottom:710.906133pt;}
.y107{bottom:719.224800pt;}
.y15a{bottom:719.232800pt;}
.y12b{bottom:719.899467pt;}
.y82{bottom:720.566133pt;}
.yc6{bottom:723.899467pt;}
.y56{bottom:725.306133pt;}
.y2c{bottom:729.891467pt;}
.y159{bottom:735.899467pt;}
.y106{bottom:737.224800pt;}
.y81{bottom:737.232800pt;}
.y8{bottom:737.691467pt;}
.y55{bottom:739.706133pt;}
.y4{bottom:749.310133pt;}
.y158{bottom:752.566133pt;}
.y105{bottom:753.891467pt;}
.y80{bottom:753.899467pt;}
.y7{bottom:754.358133pt;}
.y2b{bottom:770.558133pt;}
.y54{bottom:770.566133pt;}
.y6{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y2a{bottom:787.224800pt;}
.y53{bottom:787.232800pt;}
.y5{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y29{bottom:820.263467pt;}
.ha{height:25.734750pt;}
.h3{height:34.031250pt;}
.hc{height:37.083333pt;}
.h5{height:39.703125pt;}
.he{height:40.550781pt;}
.h9{height:41.593750pt;}
.hb{height:41.718750pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.h2{height:48.671875pt;}
.h6{height:50.205729pt;}
.hd{height:50.989583pt;}
.h7{height:52.357940pt;}
.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;}
.xb{left:103.464533pt;}
.x9{left:119.055200pt;}
.x7{left:126.613867pt;}
.x5{left:144.692533pt;}
.x6{left:216.453867pt;}
.xc{left:235.127200pt;}
.xd{left:287.056533pt;}
.x3{left:394.097867pt;}
.xa{left:433.623200pt;}
.x2{left:490.565867pt;}
.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; }
  