
    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_3fd052605b19218890b469fc.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_b685e421bb02c9f07321117d.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_b7f9e46cbbd46d101ebc9582.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_e805e7b2c2af3ffaa4f348a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677246;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_86825c2344ddf23ffd31e0d7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_65fc51455c159ca7c5984030.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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);}
.v5{vertical-align:-21.978000px;}
.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;}
.ls0{letter-spacing:0.016200px;}
.ls5{letter-spacing:0.069260px;}
.ls3{letter-spacing:0.346302px;}
.ls6{letter-spacing:0.478526px;}
.ls4{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;}
}
.ws5{word-spacing:-29.935884px;}
.ws2{word-spacing:-14.520000px;}
.ws7{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws3{word-spacing:-6.926040px;}
.ws0{word-spacing:-0.032400px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-11.263200px;}
._0{margin-left:-9.153000px;}
._4{margin-left:-7.855200px;}
._7{margin-left:-6.146400px;}
._20{margin-left:-5.081700px;}
._2{margin-left:-4.063500px;}
._3{margin-left:-2.457000px;}
._1{margin-left:-1.278900px;}
._6{width:1.629900px;}
._9{width:2.811600px;}
._a{width:3.953400px;}
._f{width:5.042400px;}
._e{width:6.324600px;}
._8{width:7.524000px;}
._12{width:8.562300px;}
._13{width:9.610200px;}
._c{width:10.738200px;}
._b{width:11.926200px;}
._14{width:13.068000px;}
._18{width:14.190840px;}
._17{width:15.241032px;}
._d{width:16.909200px;}
._19{width:18.051000px;}
._15{width:19.665300px;}
._16{width:20.954700px;}
._11{width:22.548156px;}
._10{width:23.772372px;}
._1e{width:25.739100px;}
._1b{width:26.929500px;}
._1a{width:28.580400px;}
._1d{width:30.579900px;}
._1f{width:31.800600px;}
._1c{width:33.309300px;}
.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;}
.y4f{bottom:123.306900px;}
.ybb{bottom:123.681900px;}
.yda{bottom:123.800400px;}
.y9d{bottom:127.802400px;}
.y76{bottom:128.177400px;}
.y27{bottom:130.052400px;}
.y9a{bottom:142.056900px;}
.yba{bottom:142.431900px;}
.yd9{bottom:142.550400px;}
.y26{bottom:146.252400px;}
.y4e{bottom:146.552400px;}
.y69{bottom:146.927400px;}
.y4d{bottom:160.806900px;}
.y6b{bottom:161.181900px;}
.y99{bottom:165.302400px;}
.yb9{bottom:165.677400px;}
.yd8{bottom:165.795900px;}
.y25{bottom:166.947900px;}
.y4c{bottom:179.556900px;}
.yeb{bottom:179.931900px;}
.yd3{bottom:180.050400px;}
.y24{bottom:183.147900px;}
.y98{bottom:184.052400px;}
.y6a{bottom:184.427400px;}
.yf7{bottom:198.306900px;}
.y70{bottom:198.681900px;}
.yd2{bottom:198.800400px;}
.y4b{bottom:202.802400px;}
.y145{bottom:203.177400px;}
.yf6{bottom:217.056900px;}
.y6f{bottom:217.431900px;}
.yd1{bottom:217.550400px;}
.y172{bottom:218.136900px;}
.y168{bottom:219.636900px;}
.y9b{bottom:221.552400px;}
.y144{bottom:221.927400px;}
.y23{bottom:223.152900px;}
.y4a{bottom:226.377900px;}
.yf5{bottom:235.806900px;}
.yea{bottom:236.181900px;}
.y171{bottom:236.886900px;}
.y167{bottom:239.136900px;}
.y9c{bottom:240.302400px;}
.y6e{bottom:240.677400px;}
.yd0{bottom:240.795900px;}
.y22{bottom:241.902900px;}
.yb8{bottom:243.636900px;}
.y49{bottom:245.127900px;}
.y143{bottom:246.636900px;}
.y17c{bottom:249.402900px;}
.yf4{bottom:254.556900px;}
.y6d{bottom:254.931900px;}
.y170{bottom:255.636900px;}
.y166{bottom:258.636900px;}
.y112{bottom:259.427400px;}
.ycf{bottom:259.545900px;}
.yb7{bottom:262.386900px;}
.y48{bottom:263.877900px;}
.y142{bottom:265.386900px;}
.y17b{bottom:268.152900px;}
.y97{bottom:269.136900px;}
.y21{bottom:269.652900px;}
.yf3{bottom:273.306900px;}
.ye9{bottom:273.681900px;}
.yd7{bottom:273.800400px;}
.y16f{bottom:274.386900px;}
.y165{bottom:278.136900px;}
.y6c{bottom:278.177400px;}
.yb6{bottom:281.136900px;}
.y47{bottom:282.627900px;}
.y141{bottom:284.136900px;}
.y96{bottom:287.886900px;}
.y20{bottom:288.402900px;}
.y72{bottom:292.431900px;}
.yd6{bottom:292.550400px;}
.y16e{bottom:293.136900px;}
.yf2{bottom:296.552400px;}
.y113{bottom:296.927400px;}
.y164{bottom:297.636900px;}
.yb5{bottom:299.886900px;}
.y46{bottom:301.377900px;}
.y140{bottom:302.136900px;}
.y14e{bottom:302.886900px;}
.y95{bottom:306.636900px;}
.y1f{bottom:307.152900px;}
.yfc{bottom:310.806900px;}
.y115{bottom:311.181900px;}
.yd5{bottom:311.300400px;}
.y16d{bottom:311.886900px;}
.y12a{bottom:313.386900px;}
.yf8{bottom:315.302400px;}
.y71{bottom:315.677400px;}
.y163{bottom:317.136900px;}
.yb4{bottom:318.636900px;}
.y45{bottom:320.127900px;}
.ye8{bottom:321.636900px;}
.y94{bottom:324.636900px;}
.y1e{bottom:325.902900px;}
.yfb{bottom:329.556900px;}
.y75{bottom:329.931900px;}
.y16c{bottom:330.636900px;}
.y129{bottom:332.136900px;}
.y114{bottom:334.427400px;}
.yd4{bottom:334.545900px;}
.y162{bottom:336.636900px;}
.y44{bottom:338.877900px;}
.yb3{bottom:338.886900px;}
.y13f{bottom:339.636900px;}
.ye7{bottom:340.386900px;}
.y93{bottom:342.636900px;}
.y1d{bottom:344.652900px;}
.yf1{bottom:347.886900px;}
.yfa{bottom:348.306900px;}
.y74{bottom:348.681900px;}
.y16b{bottom:349.386900px;}
.y128{bottom:350.886900px;}
.y161{bottom:356.136900px;}
.yb2{bottom:357.636900px;}
.ye6{bottom:359.136900px;}
.y92{bottom:360.636900px;}
.y1c{bottom:363.402900px;}
.y43{bottom:366.627900px;}
.yf0{bottom:366.636900px;}
.y119{bottom:367.431900px;}
.yce{bottom:368.136900px;}
.y127{bottom:369.636900px;}
.yf9{bottom:371.552400px;}
.y73{bottom:371.927400px;}
.y13e{bottom:375.636900px;}
.yb1{bottom:376.386900px;}
.ye5{bottom:377.886900px;}
.y91{bottom:378.636900px;}
.y1b{bottom:382.152900px;}
.yef{bottom:385.386900px;}
.yfe{bottom:385.806900px;}
.ycd{bottom:386.886900px;}
.y126{bottom:388.386900px;}
.y118{bottom:390.677400px;}
.y13d{bottom:393.636900px;}
.yb0{bottom:395.136900px;}
.y90{bottom:396.636900px;}
.ye4{bottom:398.136900px;}
.y1a{bottom:400.902900px;}
.yee{bottom:404.136900px;}
.yfd{bottom:404.556900px;}
.y42{bottom:404.877900px;}
.y117{bottom:404.931900px;}
.ycc{bottom:405.636900px;}
.y125{bottom:407.136900px;}
.y13c{bottom:411.636900px;}
.yaf{bottom:413.886900px;}
.y160{bottom:414.636900px;}
.y8f{bottom:416.136900px;}
.y14d{bottom:416.886900px;}
.y19{bottom:419.652900px;}
.yed{bottom:422.886900px;}
.y41{bottom:423.627900px;}
.ycb{bottom:424.386900px;}
.y124{bottom:425.886900px;}
.y116{bottom:428.177400px;}
.y13b{bottom:429.636900px;}
.y68{bottom:432.636900px;}
.y8e{bottom:434.136900px;}
.y14c{bottom:435.636900px;}
.y18{bottom:438.402900px;}
.y40{bottom:442.377900px;}
.yca{bottom:443.136900px;}
.y123{bottom:444.636900px;}
.y13a{bottom:447.636900px;}
.yec{bottom:450.636900px;}
.y67{bottom:451.386900px;}
.y8d{bottom:452.136900px;}
.y14b{bottom:454.386900px;}
.y15f{bottom:455.136900px;}
.y17{bottom:457.152900px;}
.y3f{bottom:461.127900px;}
.yc9{bottom:461.886900px;}
.y122{bottom:463.386900px;}
.y139{bottom:465.636900px;}
.y66{bottom:470.136900px;}
.y111{bottom:473.136900px;}
.y15e{bottom:474.636900px;}
.y16{bottom:475.902900px;}
.y3e{bottom:479.877900px;}
.yc8{bottom:480.636900px;}
.y121{bottom:482.136900px;}
.y138{bottom:483.636900px;}
.y8c{bottom:488.136900px;}
.y65{bottom:488.886900px;}
.yae{bottom:490.386900px;}
.y14a{bottom:491.886900px;}
.y110{bottom:492.636900px;}
.y15d{bottom:494.136900px;}
.y15{bottom:494.652900px;}
.y3d{bottom:498.627900px;}
.yc7{bottom:499.386900px;}
.y16a{bottom:500.886900px;}
.y137{bottom:501.636900px;}
.y8b{bottom:506.136900px;}
.y64{bottom:507.636900px;}
.yad{bottom:509.136900px;}
.y120{bottom:509.886900px;}
.y149{bottom:510.636900px;}
.y10f{bottom:512.136900px;}
.y14{bottom:513.402900px;}
.y15c{bottom:513.636900px;}
.y3c{bottom:518.877900px;}
.yc6{bottom:519.636900px;}
.y8a{bottom:524.136900px;}
.y63{bottom:526.386900px;}
.yac{bottom:527.886900px;}
.y11f{bottom:528.636900px;}
.y148{bottom:529.386900px;}
.y10e{bottom:531.636900px;}
.y13{bottom:532.152900px;}
.y15b{bottom:533.136900px;}
.y3b{bottom:537.627900px;}
.yc5{bottom:538.386900px;}
.y136{bottom:539.136900px;}
.y89{bottom:542.136900px;}
.y62{bottom:545.136900px;}
.yab{bottom:546.636900px;}
.y11e{bottom:547.386900px;}
.y147{bottom:548.136900px;}
.y12{bottom:550.902900px;}
.y10d{bottom:551.136900px;}
.y15a{bottom:552.636900px;}
.y3a{bottom:556.377900px;}
.yc4{bottom:557.136900px;}
.y88{bottom:560.136900px;}
.y61{bottom:563.886900px;}
.yaa{bottom:565.386900px;}
.y169{bottom:566.136900px;}
.y146{bottom:566.886900px;}
.y11{bottom:569.652900px;}
.y10c{bottom:570.636900px;}
.y159{bottom:572.136900px;}
.y39{bottom:575.127900px;}
.y135{bottom:575.136900px;}
.yc3{bottom:575.886900px;}
.y87{bottom:578.136900px;}
.y60{bottom:582.636900px;}
.ya9{bottom:584.136900px;}
.y11d{bottom:585.636900px;}
.y10{bottom:588.402900px;}
.y10b{bottom:590.136900px;}
.y158{bottom:591.636900px;}
.y134{bottom:593.136900px;}
.y38{bottom:593.877900px;}
.yc2{bottom:594.636900px;}
.ye3{bottom:596.136900px;}
.y86{bottom:597.636900px;}
.y5f{bottom:601.386900px;}
.ya8{bottom:602.886900px;}
.y11c{bottom:604.386900px;}
.y17a{bottom:607.152900px;}
.y10a{bottom:609.636900px;}
.y133{bottom:611.136900px;}
.y37{bottom:612.627900px;}
.y157{bottom:612.636900px;}
.yc1{bottom:613.386900px;}
.ye2{bottom:614.136900px;}
.y85{bottom:615.636900px;}
.y5e{bottom:620.136900px;}
.ya7{bottom:621.636900px;}
.y11b{bottom:623.136900px;}
.y179{bottom:625.902900px;}
.y109{bottom:629.136900px;}
.y36{bottom:631.377900px;}
.yc0{bottom:632.136900px;}
.y84{bottom:633.636900px;}
.y5d{bottom:638.886900px;}
.ya6{bottom:640.386900px;}
.y11a{bottom:641.886900px;}
.yf{bottom:644.652900px;}
.y132{bottom:647.136900px;}
.y35{bottom:650.127900px;}
.ye1{bottom:650.136900px;}
.ybf{bottom:650.886900px;}
.y83{bottom:651.636900px;}
.y178{bottom:653.652900px;}
.y5c{bottom:659.136900px;}
.ya5{bottom:660.636900px;}
.y131{bottom:665.136900px;}
.ye{bottom:667.152900px;}
.ye0{bottom:668.136900px;}
.y82{bottom:669.636900px;}
.y34{bottom:670.377900px;}
.y156{bottom:671.136900px;}
.y5b{bottom:677.886900px;}
.ya4{bottom:679.386900px;}
.y130{bottom:683.136900px;}
.y177{bottom:685.902900px;}
.ydf{bottom:686.136900px;}
.y81{bottom:687.636900px;}
.ybe{bottom:688.386900px;}
.y33{bottom:689.127900px;}
.y108{bottom:689.136900px;}
.yd{bottom:689.652900px;}
.y155{bottom:690.636900px;}
.y5a{bottom:696.636900px;}
.ya3{bottom:698.136900px;}
.y12f{bottom:701.136900px;}
.yde{bottom:704.136900px;}
.y176{bottom:704.652900px;}
.y80{bottom:705.636900px;}
.y32{bottom:707.877900px;}
.y107{bottom:708.636900px;}
.y154{bottom:710.136900px;}
.y59{bottom:715.386900px;}
.ybd{bottom:716.136900px;}
.ya2{bottom:716.886900px;}
.y12e{bottom:719.136900px;}
.ydd{bottom:722.136900px;}
.y175{bottom:723.402900px;}
.y7f{bottom:723.636900px;}
.y31{bottom:726.627900px;}
.y106{bottom:728.136900px;}
.y153{bottom:729.636900px;}
.y58{bottom:734.136900px;}
.ybc{bottom:734.886900px;}
.ya1{bottom:735.636900px;}
.y12d{bottom:737.136900px;}
.ydc{bottom:740.136900px;}
.y7e{bottom:741.636900px;}
.y30{bottom:745.377900px;}
.y105{bottom:747.636900px;}
.y152{bottom:749.136900px;}
.y57{bottom:752.886900px;}
.ya0{bottom:754.386900px;}
.y12c{bottom:755.136900px;}
.ydb{bottom:758.136900px;}
.y7d{bottom:759.636900px;}
.y2f{bottom:764.127900px;}
.y104{bottom:767.136900px;}
.y151{bottom:768.636900px;}
.y56{bottom:771.636900px;}
.yc{bottom:772.152900px;}
.y9f{bottom:773.136900px;}
.y7c{bottom:777.636900px;}
.y2e{bottom:782.877900px;}
.y103{bottom:786.636900px;}
.y150{bottom:788.136900px;}
.y55{bottom:790.386900px;}
.yb{bottom:790.902900px;}
.y12b{bottom:791.136900px;}
.y9e{bottom:791.886900px;}
.y7b{bottom:795.636900px;}
.y2d{bottom:801.627900px;}
.y102{bottom:806.136900px;}
.y14f{bottom:807.636900px;}
.y174{bottom:809.136900px;}
.ya{bottom:809.652900px;}
.y54{bottom:810.636900px;}
.y7a{bottom:813.636900px;}
.y2c{bottom:820.377900px;}
.y101{bottom:827.136900px;}
.y5{bottom:827.853900px;}
.y173{bottom:827.886900px;}
.y9{bottom:828.402900px;}
.y53{bottom:829.386900px;}
.y79{bottom:831.636900px;}
.y2b{bottom:839.127900px;}
.y100{bottom:846.636900px;}
.y52{bottom:848.136900px;}
.y8{bottom:848.652900px;}
.y78{bottom:849.636900px;}
.y4{bottom:855.338400px;}
.y2a{bottom:857.877900px;}
.yff{bottom:866.136900px;}
.y51{bottom:866.886900px;}
.y7{bottom:867.402900px;}
.y77{bottom:867.636900px;}
.y3{bottom:871.538400px;}
.y29{bottom:885.627900px;}
.y50{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y28{bottom:922.796400px;}
.hb{height:28.951594px;}
.h3{height:38.285156px;}
.hd{height:41.718750px;}
.h5{height:44.666016px;}
.h6{height:45.619629px;}
.ha{height:46.792969px;}
.hc{height:46.933594px;}
.h4{height:47.572244px;}
.h9{height:47.791992px;}
.h2{height:54.755859px;}
.h7{height:56.481445px;}
.he{height:57.363281px;}
.h8{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.xe{left:96.948600px;}
.x6{left:103.403100px;}
.xa{left:108.425100px;}
.xf{left:109.986600px;}
.x7{left:123.555600px;}
.xb{left:133.937100px;}
.x9{left:142.440600px;}
.x8{left:212.880600px;}
.x10{left:269.741100px;}
.x11{left:322.938600px;}
.xc{left:409.620600px;}
.x4{left:443.360100px;}
.x3{left:496.581600px;}
.x2{left:545.558100px;}
.xd{left:605.471100px;}
.x1{left:614.192100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.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;}
.ls0{letter-spacing:0.014400pt;}
.ls5{letter-spacing:0.061565pt;}
.ls3{letter-spacing:0.307824pt;}
.ls6{letter-spacing:0.425357pt;}
.ls4{letter-spacing:0.456139pt;}
.ws5{word-spacing:-26.609675pt;}
.ws2{word-spacing:-12.906667pt;}
.ws7{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws3{word-spacing:-6.156480pt;}
.ws0{word-spacing:-0.028800pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-10.011733pt;}
._0{margin-left:-8.136000pt;}
._4{margin-left:-6.982400pt;}
._7{margin-left:-5.463467pt;}
._20{margin-left:-4.517067pt;}
._2{margin-left:-3.612000pt;}
._3{margin-left:-2.184000pt;}
._1{margin-left:-1.136800pt;}
._6{width:1.448800pt;}
._9{width:2.499200pt;}
._a{width:3.514133pt;}
._f{width:4.482133pt;}
._e{width:5.621867pt;}
._8{width:6.688000pt;}
._12{width:7.610933pt;}
._13{width:8.542400pt;}
._c{width:9.545067pt;}
._b{width:10.601067pt;}
._14{width:11.616000pt;}
._18{width:12.614080pt;}
._17{width:13.547584pt;}
._d{width:15.030400pt;}
._19{width:16.045333pt;}
._15{width:17.480267pt;}
._16{width:18.626400pt;}
._11{width:20.042805pt;}
._10{width:21.130997pt;}
._1e{width:22.879200pt;}
._1b{width:23.937333pt;}
._1a{width:25.404800pt;}
._1d{width:27.182133pt;}
._1f{width:28.267200pt;}
._1c{width:29.608267pt;}
.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;}
.y4f{bottom:109.606133pt;}
.ybb{bottom:109.939467pt;}
.yda{bottom:110.044800pt;}
.y9d{bottom:113.602133pt;}
.y76{bottom:113.935467pt;}
.y27{bottom:115.602133pt;}
.y9a{bottom:126.272800pt;}
.yba{bottom:126.606133pt;}
.yd9{bottom:126.711467pt;}
.y26{bottom:130.002133pt;}
.y4e{bottom:130.268800pt;}
.y69{bottom:130.602133pt;}
.y4d{bottom:142.939467pt;}
.y6b{bottom:143.272800pt;}
.y99{bottom:146.935467pt;}
.yb9{bottom:147.268800pt;}
.yd8{bottom:147.374133pt;}
.y25{bottom:148.398133pt;}
.y4c{bottom:159.606133pt;}
.yeb{bottom:159.939467pt;}
.yd3{bottom:160.044800pt;}
.y24{bottom:162.798133pt;}
.y98{bottom:163.602133pt;}
.y6a{bottom:163.935467pt;}
.yf7{bottom:176.272800pt;}
.y70{bottom:176.606133pt;}
.yd2{bottom:176.711467pt;}
.y4b{bottom:180.268800pt;}
.y145{bottom:180.602133pt;}
.yf6{bottom:192.939467pt;}
.y6f{bottom:193.272800pt;}
.yd1{bottom:193.378133pt;}
.y172{bottom:193.899467pt;}
.y168{bottom:195.232800pt;}
.y9b{bottom:196.935467pt;}
.y144{bottom:197.268800pt;}
.y23{bottom:198.358133pt;}
.y4a{bottom:201.224800pt;}
.yf5{bottom:209.606133pt;}
.yea{bottom:209.939467pt;}
.y171{bottom:210.566133pt;}
.y167{bottom:212.566133pt;}
.y9c{bottom:213.602133pt;}
.y6e{bottom:213.935467pt;}
.yd0{bottom:214.040800pt;}
.y22{bottom:215.024800pt;}
.yb8{bottom:216.566133pt;}
.y49{bottom:217.891467pt;}
.y143{bottom:219.232800pt;}
.y17c{bottom:221.691467pt;}
.yf4{bottom:226.272800pt;}
.y6d{bottom:226.606133pt;}
.y170{bottom:227.232800pt;}
.y166{bottom:229.899467pt;}
.y112{bottom:230.602133pt;}
.ycf{bottom:230.707467pt;}
.yb7{bottom:233.232800pt;}
.y48{bottom:234.558133pt;}
.y142{bottom:235.899467pt;}
.y17b{bottom:238.358133pt;}
.y97{bottom:239.232800pt;}
.y21{bottom:239.691467pt;}
.yf3{bottom:242.939467pt;}
.ye9{bottom:243.272800pt;}
.yd7{bottom:243.378133pt;}
.y16f{bottom:243.899467pt;}
.y165{bottom:247.232800pt;}
.y6c{bottom:247.268800pt;}
.yb6{bottom:249.899467pt;}
.y47{bottom:251.224800pt;}
.y141{bottom:252.566133pt;}
.y96{bottom:255.899467pt;}
.y20{bottom:256.358133pt;}
.y72{bottom:259.939467pt;}
.yd6{bottom:260.044800pt;}
.y16e{bottom:260.566133pt;}
.yf2{bottom:263.602133pt;}
.y113{bottom:263.935467pt;}
.y164{bottom:264.566133pt;}
.yb5{bottom:266.566133pt;}
.y46{bottom:267.891467pt;}
.y140{bottom:268.566133pt;}
.y14e{bottom:269.232800pt;}
.y95{bottom:272.566133pt;}
.y1f{bottom:273.024800pt;}
.yfc{bottom:276.272800pt;}
.y115{bottom:276.606133pt;}
.yd5{bottom:276.711467pt;}
.y16d{bottom:277.232800pt;}
.y12a{bottom:278.566133pt;}
.yf8{bottom:280.268800pt;}
.y71{bottom:280.602133pt;}
.y163{bottom:281.899467pt;}
.yb4{bottom:283.232800pt;}
.y45{bottom:284.558133pt;}
.ye8{bottom:285.899467pt;}
.y94{bottom:288.566133pt;}
.y1e{bottom:289.691467pt;}
.yfb{bottom:292.939467pt;}
.y75{bottom:293.272800pt;}
.y16c{bottom:293.899467pt;}
.y129{bottom:295.232800pt;}
.y114{bottom:297.268800pt;}
.yd4{bottom:297.374133pt;}
.y162{bottom:299.232800pt;}
.y44{bottom:301.224800pt;}
.yb3{bottom:301.232800pt;}
.y13f{bottom:301.899467pt;}
.ye7{bottom:302.566133pt;}
.y93{bottom:304.566133pt;}
.y1d{bottom:306.358133pt;}
.yf1{bottom:309.232800pt;}
.yfa{bottom:309.606133pt;}
.y74{bottom:309.939467pt;}
.y16b{bottom:310.566133pt;}
.y128{bottom:311.899467pt;}
.y161{bottom:316.566133pt;}
.yb2{bottom:317.899467pt;}
.ye6{bottom:319.232800pt;}
.y92{bottom:320.566133pt;}
.y1c{bottom:323.024800pt;}
.y43{bottom:325.891467pt;}
.yf0{bottom:325.899467pt;}
.y119{bottom:326.606133pt;}
.yce{bottom:327.232800pt;}
.y127{bottom:328.566133pt;}
.yf9{bottom:330.268800pt;}
.y73{bottom:330.602133pt;}
.y13e{bottom:333.899467pt;}
.yb1{bottom:334.566133pt;}
.ye5{bottom:335.899467pt;}
.y91{bottom:336.566133pt;}
.y1b{bottom:339.691467pt;}
.yef{bottom:342.566133pt;}
.yfe{bottom:342.939467pt;}
.ycd{bottom:343.899467pt;}
.y126{bottom:345.232800pt;}
.y118{bottom:347.268800pt;}
.y13d{bottom:349.899467pt;}
.yb0{bottom:351.232800pt;}
.y90{bottom:352.566133pt;}
.ye4{bottom:353.899467pt;}
.y1a{bottom:356.358133pt;}
.yee{bottom:359.232800pt;}
.yfd{bottom:359.606133pt;}
.y42{bottom:359.891467pt;}
.y117{bottom:359.939467pt;}
.ycc{bottom:360.566133pt;}
.y125{bottom:361.899467pt;}
.y13c{bottom:365.899467pt;}
.yaf{bottom:367.899467pt;}
.y160{bottom:368.566133pt;}
.y8f{bottom:369.899467pt;}
.y14d{bottom:370.566133pt;}
.y19{bottom:373.024800pt;}
.yed{bottom:375.899467pt;}
.y41{bottom:376.558133pt;}
.ycb{bottom:377.232800pt;}
.y124{bottom:378.566133pt;}
.y116{bottom:380.602133pt;}
.y13b{bottom:381.899467pt;}
.y68{bottom:384.566133pt;}
.y8e{bottom:385.899467pt;}
.y14c{bottom:387.232800pt;}
.y18{bottom:389.691467pt;}
.y40{bottom:393.224800pt;}
.yca{bottom:393.899467pt;}
.y123{bottom:395.232800pt;}
.y13a{bottom:397.899467pt;}
.yec{bottom:400.566133pt;}
.y67{bottom:401.232800pt;}
.y8d{bottom:401.899467pt;}
.y14b{bottom:403.899467pt;}
.y15f{bottom:404.566133pt;}
.y17{bottom:406.358133pt;}
.y3f{bottom:409.891467pt;}
.yc9{bottom:410.566133pt;}
.y122{bottom:411.899467pt;}
.y139{bottom:413.899467pt;}
.y66{bottom:417.899467pt;}
.y111{bottom:420.566133pt;}
.y15e{bottom:421.899467pt;}
.y16{bottom:423.024800pt;}
.y3e{bottom:426.558133pt;}
.yc8{bottom:427.232800pt;}
.y121{bottom:428.566133pt;}
.y138{bottom:429.899467pt;}
.y8c{bottom:433.899467pt;}
.y65{bottom:434.566133pt;}
.yae{bottom:435.899467pt;}
.y14a{bottom:437.232800pt;}
.y110{bottom:437.899467pt;}
.y15d{bottom:439.232800pt;}
.y15{bottom:439.691467pt;}
.y3d{bottom:443.224800pt;}
.yc7{bottom:443.899467pt;}
.y16a{bottom:445.232800pt;}
.y137{bottom:445.899467pt;}
.y8b{bottom:449.899467pt;}
.y64{bottom:451.232800pt;}
.yad{bottom:452.566133pt;}
.y120{bottom:453.232800pt;}
.y149{bottom:453.899467pt;}
.y10f{bottom:455.232800pt;}
.y14{bottom:456.358133pt;}
.y15c{bottom:456.566133pt;}
.y3c{bottom:461.224800pt;}
.yc6{bottom:461.899467pt;}
.y8a{bottom:465.899467pt;}
.y63{bottom:467.899467pt;}
.yac{bottom:469.232800pt;}
.y11f{bottom:469.899467pt;}
.y148{bottom:470.566133pt;}
.y10e{bottom:472.566133pt;}
.y13{bottom:473.024800pt;}
.y15b{bottom:473.899467pt;}
.y3b{bottom:477.891467pt;}
.yc5{bottom:478.566133pt;}
.y136{bottom:479.232800pt;}
.y89{bottom:481.899467pt;}
.y62{bottom:484.566133pt;}
.yab{bottom:485.899467pt;}
.y11e{bottom:486.566133pt;}
.y147{bottom:487.232800pt;}
.y12{bottom:489.691467pt;}
.y10d{bottom:489.899467pt;}
.y15a{bottom:491.232800pt;}
.y3a{bottom:494.558133pt;}
.yc4{bottom:495.232800pt;}
.y88{bottom:497.899467pt;}
.y61{bottom:501.232800pt;}
.yaa{bottom:502.566133pt;}
.y169{bottom:503.232800pt;}
.y146{bottom:503.899467pt;}
.y11{bottom:506.358133pt;}
.y10c{bottom:507.232800pt;}
.y159{bottom:508.566133pt;}
.y39{bottom:511.224800pt;}
.y135{bottom:511.232800pt;}
.yc3{bottom:511.899467pt;}
.y87{bottom:513.899467pt;}
.y60{bottom:517.899467pt;}
.ya9{bottom:519.232800pt;}
.y11d{bottom:520.566133pt;}
.y10{bottom:523.024800pt;}
.y10b{bottom:524.566133pt;}
.y158{bottom:525.899467pt;}
.y134{bottom:527.232800pt;}
.y38{bottom:527.891467pt;}
.yc2{bottom:528.566133pt;}
.ye3{bottom:529.899467pt;}
.y86{bottom:531.232800pt;}
.y5f{bottom:534.566133pt;}
.ya8{bottom:535.899467pt;}
.y11c{bottom:537.232800pt;}
.y17a{bottom:539.691467pt;}
.y10a{bottom:541.899467pt;}
.y133{bottom:543.232800pt;}
.y37{bottom:544.558133pt;}
.y157{bottom:544.566133pt;}
.yc1{bottom:545.232800pt;}
.ye2{bottom:545.899467pt;}
.y85{bottom:547.232800pt;}
.y5e{bottom:551.232800pt;}
.ya7{bottom:552.566133pt;}
.y11b{bottom:553.899467pt;}
.y179{bottom:556.358133pt;}
.y109{bottom:559.232800pt;}
.y36{bottom:561.224800pt;}
.yc0{bottom:561.899467pt;}
.y84{bottom:563.232800pt;}
.y5d{bottom:567.899467pt;}
.ya6{bottom:569.232800pt;}
.y11a{bottom:570.566133pt;}
.yf{bottom:573.024800pt;}
.y132{bottom:575.232800pt;}
.y35{bottom:577.891467pt;}
.ye1{bottom:577.899467pt;}
.ybf{bottom:578.566133pt;}
.y83{bottom:579.232800pt;}
.y178{bottom:581.024800pt;}
.y5c{bottom:585.899467pt;}
.ya5{bottom:587.232800pt;}
.y131{bottom:591.232800pt;}
.ye{bottom:593.024800pt;}
.ye0{bottom:593.899467pt;}
.y82{bottom:595.232800pt;}
.y34{bottom:595.891467pt;}
.y156{bottom:596.566133pt;}
.y5b{bottom:602.566133pt;}
.ya4{bottom:603.899467pt;}
.y130{bottom:607.232800pt;}
.y177{bottom:609.691467pt;}
.ydf{bottom:609.899467pt;}
.y81{bottom:611.232800pt;}
.ybe{bottom:611.899467pt;}
.y33{bottom:612.558133pt;}
.y108{bottom:612.566133pt;}
.yd{bottom:613.024800pt;}
.y155{bottom:613.899467pt;}
.y5a{bottom:619.232800pt;}
.ya3{bottom:620.566133pt;}
.y12f{bottom:623.232800pt;}
.yde{bottom:625.899467pt;}
.y176{bottom:626.358133pt;}
.y80{bottom:627.232800pt;}
.y32{bottom:629.224800pt;}
.y107{bottom:629.899467pt;}
.y154{bottom:631.232800pt;}
.y59{bottom:635.899467pt;}
.ybd{bottom:636.566133pt;}
.ya2{bottom:637.232800pt;}
.y12e{bottom:639.232800pt;}
.ydd{bottom:641.899467pt;}
.y175{bottom:643.024800pt;}
.y7f{bottom:643.232800pt;}
.y31{bottom:645.891467pt;}
.y106{bottom:647.232800pt;}
.y153{bottom:648.566133pt;}
.y58{bottom:652.566133pt;}
.ybc{bottom:653.232800pt;}
.ya1{bottom:653.899467pt;}
.y12d{bottom:655.232800pt;}
.ydc{bottom:657.899467pt;}
.y7e{bottom:659.232800pt;}
.y30{bottom:662.558133pt;}
.y105{bottom:664.566133pt;}
.y152{bottom:665.899467pt;}
.y57{bottom:669.232800pt;}
.ya0{bottom:670.566133pt;}
.y12c{bottom:671.232800pt;}
.ydb{bottom:673.899467pt;}
.y7d{bottom:675.232800pt;}
.y2f{bottom:679.224800pt;}
.y104{bottom:681.899467pt;}
.y151{bottom:683.232800pt;}
.y56{bottom:685.899467pt;}
.yc{bottom:686.358133pt;}
.y9f{bottom:687.232800pt;}
.y7c{bottom:691.232800pt;}
.y2e{bottom:695.891467pt;}
.y103{bottom:699.232800pt;}
.y150{bottom:700.566133pt;}
.y55{bottom:702.566133pt;}
.yb{bottom:703.024800pt;}
.y12b{bottom:703.232800pt;}
.y9e{bottom:703.899467pt;}
.y7b{bottom:707.232800pt;}
.y2d{bottom:712.558133pt;}
.y102{bottom:716.566133pt;}
.y14f{bottom:717.899467pt;}
.y174{bottom:719.232800pt;}
.ya{bottom:719.691467pt;}
.y54{bottom:720.566133pt;}
.y7a{bottom:723.232800pt;}
.y2c{bottom:729.224800pt;}
.y101{bottom:735.232800pt;}
.y5{bottom:735.870133pt;}
.y173{bottom:735.899467pt;}
.y9{bottom:736.358133pt;}
.y53{bottom:737.232800pt;}
.y79{bottom:739.232800pt;}
.y2b{bottom:745.891467pt;}
.y100{bottom:752.566133pt;}
.y52{bottom:753.899467pt;}
.y8{bottom:754.358133pt;}
.y78{bottom:755.232800pt;}
.y4{bottom:760.300800pt;}
.y2a{bottom:762.558133pt;}
.yff{bottom:769.899467pt;}
.y51{bottom:770.566133pt;}
.y7{bottom:771.024800pt;}
.y77{bottom:771.232800pt;}
.y3{bottom:774.700800pt;}
.y29{bottom:787.224800pt;}
.y50{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y28{bottom:820.263467pt;}
.hb{height:25.734750pt;}
.h3{height:34.031250pt;}
.hd{height:37.083333pt;}
.h5{height:39.703125pt;}
.h6{height:40.550781pt;}
.ha{height:41.593750pt;}
.hc{height:41.718750pt;}
.h4{height:42.286439pt;}
.h9{height:42.481771pt;}
.h2{height:48.671875pt;}
.h7{height:50.205729pt;}
.he{height:50.989583pt;}
.h8{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.xe{left:86.176533pt;}
.x6{left:91.913867pt;}
.xa{left:96.377867pt;}
.xf{left:97.765867pt;}
.x7{left:109.827200pt;}
.xb{left:119.055200pt;}
.x9{left:126.613867pt;}
.x8{left:189.227200pt;}
.x10{left:239.769867pt;}
.x11{left:287.056533pt;}
.xc{left:364.107200pt;}
.x4{left:394.097867pt;}
.x3{left:441.405867pt;}
.x2{left:484.940533pt;}
.xd{left:538.196533pt;}
.x1{left:545.948533pt;}
}




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