
    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_7cd439e6b4f2c0bea41a4d4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896484;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_69c6ff33ba8da161f1ba4a13.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_362c4f25568f7257c253aa0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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_fe0ef65f48ed38e245829986.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_1a71bfca51039b403a7807b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.877930;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_11ba5aaa1a320fff1753c305.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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:ff7;src:url('chunks/assets/font_9d90a001ccc091135db4a144.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.079102;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:ff8;src:url('chunks/assets/font_d15069d89485e644dee73698.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.092773;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:ff9;src:url('chunks/assets/font_57cf00f76859a717171bf889.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.114258;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:ffa;src:url('chunks/assets/font_d9df7496e6d4586e26483a0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740723;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:ffb;src:url('chunks/assets/font_d18d5f343080dc15a2723a6d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.875488;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:ffc;src:url('chunks/assets/font_cb272652de8bc56a71eee5be.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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);}
.v2{vertical-align:-17.968482px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.v3{vertical-align:35.964000px;}
.ls2{letter-spacing:-7.200000px;}
.ls8{letter-spacing:-1.998000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010272px;}
.ls5{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.594000px;}
.ls9{letter-spacing:0.756000px;}
.ls3{letter-spacing:1.080000px;}
.ls7{letter-spacing:2.808000px;}
.ls4{letter-spacing:15.606000px;}
.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;}
}
.ws1{word-spacing:-17.503992px;}
.ws5{word-spacing:-16.308000px;}
.ws4{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.256000px;}
.wsa{word-spacing:-14.094000px;}
.ws8{word-spacing:-13.932000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:-11.502000px;}
.ws0{word-spacing:-7.870500px;}
.ws14{word-spacing:-2.376000px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:0.918000px;}
.ws15{word-spacing:1.620000px;}
.ws12{word-spacing:1.728000px;}
.wsb{word-spacing:2.268000px;}
.wsf{word-spacing:3.618000px;}
.ws3{word-spacing:7.200000px;}
.ws10{word-spacing:8.694000px;}
.ws13{word-spacing:10.152000px;}
.wsd{word-spacing:11.556000px;}
.wsc{word-spacing:21.924000px;}
.ws11{word-spacing:42.606000px;}
.ws16{word-spacing:51.354000px;}
._d{margin-left:-13.554000px;}
._4{margin-left:-6.058800px;}
._0{margin-left:-4.973400px;}
._a{margin-left:-3.569400px;}
._3{margin-left:-2.430000px;}
._1{margin-left:-1.020600px;}
._7{width:1.031400px;}
._b{width:2.338200px;}
._6{width:3.526200px;}
._2{width:5.454000px;}
._e{width:6.993000px;}
._11{width:8.424000px;}
._5{width:9.563400px;}
._14{width:10.594800px;}
._c{width:11.826000px;}
._9{width:14.553000px;}
._f{width:16.545600px;}
._10{width:17.641800px;}
._8{width:19.315800px;}
._16{width:21.000600px;}
._1e{width:22.334400px;}
._13{width:23.754600px;}
._15{width:24.991200px;}
._1c{width:26.157600px;}
._19{width:27.270000px;}
._18{width:28.431000px;}
._17{width:35.062200px;}
._1b{width:36.309600px;}
._20{width:37.578600px;}
._12{width:38.917800px;}
._1f{width:40.813200px;}
._1a{width:42.481800px;}
._1d{width:43.912800px;}
._21{width:46.018800px;}
._23{width:47.466000px;}
._22{width:49.939200px;}
._24{width:51.332400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:31.482000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:62.964000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:48.015450px;}
.y2{bottom:48.015600px;}
.y3{bottom:48.018300px;}
.y12e{bottom:85.667850px;}
.y36{bottom:87.713700px;}
.y6d{bottom:89.320200px;}
.yea{bottom:94.662450px;}
.yc6{bottom:98.914950px;}
.y12d{bottom:101.867850px;}
.y35{bottom:103.913700px;}
.y6c{bottom:105.520200px;}
.y164{bottom:107.132850px;}
.y94{bottom:107.942850px;}
.ye9{bottom:110.862450px;}
.y107{bottom:113.815350px;}
.yc5{bottom:115.114950px;}
.y12c{bottom:118.067850px;}
.y6b{bottom:121.720200px;}
.y163{bottom:123.332850px;}
.y93{bottom:124.142850px;}
.ye8{bottom:127.062450px;}
.y106{bottom:130.015350px;}
.yc4{bottom:131.314950px;}
.y12b{bottom:134.267850px;}
.y6a{bottom:137.920200px;}
.y162{bottom:139.532850px;}
.y92{bottom:140.342850px;}
.y34{bottom:144.818700px;}
.yc3{bottom:147.514950px;}
.y12a{bottom:150.467850px;}
.y69{bottom:154.120200px;}
.y161{bottom:155.732850px;}
.y91{bottom:156.542850px;}
.yc2{bottom:163.714950px;}
.y33{bottom:165.271200px;}
.y129{bottom:166.667850px;}
.y68{bottom:170.320200px;}
.y90{bottom:172.742850px;}
.y160{bottom:176.185350px;}
.ye7{bottom:179.914950px;}
.y128{bottom:182.867850px;}
.y67{bottom:186.520200px;}
.y8f{bottom:188.942850px;}
.yb1{bottom:192.371850px;}
.y15f{bottom:192.385350px;}
.y32{bottom:194.228700px;}
.ye6{bottom:196.114950px;}
.y127{bottom:199.067850px;}
.yc1{bottom:201.177450px;}
.y66{bottom:202.720200px;}
.y8e{bottom:205.142850px;}
.y15e{bottom:208.585350px;}
.y31{bottom:210.428700px;}
.ye5{bottom:212.314950px;}
.y126{bottom:215.267850px;}
.yc0{bottom:217.377450px;}
.y8d{bottom:221.342850px;}
.y65{bottom:223.172700px;}
.y15d{bottom:224.785350px;}
.y30{bottom:226.628700px;}
.ye4{bottom:228.514950px;}
.y125{bottom:231.467850px;}
.yb0{bottom:233.276850px;}
.y8c{bottom:237.542850px;}
.y64{bottom:239.372700px;}
.y2f{bottom:242.828700px;}
.ye3{bottom:244.714950px;}
.y15c{bottom:245.237850px;}
.y124{bottom:247.667850px;}
.yaf{bottom:249.476850px;}
.y8b{bottom:253.742850px;}
.y63{bottom:255.572700px;}
.y2e{bottom:259.028700px;}
.ye2{bottom:260.914950px;}
.y15b{bottom:261.437850px;}
.y123{bottom:263.867850px;}
.yae{bottom:269.929350px;}
.y8a{bottom:269.942850px;}
.y62{bottom:271.772700px;}
.y2d{bottom:275.228700px;}
.ye1{bottom:277.114950px;}
.y15a{bottom:277.637850px;}
.y122{bottom:280.067850px;}
.yad{bottom:286.129350px;}
.y89{bottom:286.142850px;}
.y61{bottom:287.972700px;}
.y2c{bottom:291.428250px;}
.ye0{bottom:293.314950px;}
.y159{bottom:293.837850px;}
.y121{bottom:296.267850px;}
.yac{bottom:302.329350px;}
.y88{bottom:302.342850px;}
.y60{bottom:304.172700px;}
.y2b{bottom:307.628250px;}
.ydf{bottom:309.514950px;}
.y120{bottom:312.467850px;}
.y158{bottom:314.290350px;}
.y87{bottom:318.542850px;}
.y5f{bottom:320.372700px;}
.yab{bottom:322.781850px;}
.yde{bottom:325.714950px;}
.y2a{bottom:328.072800px;}
.y11f{bottom:328.667850px;}
.y157{bottom:330.490350px;}
.y5e{bottom:336.572700px;}
.yaa{bottom:338.981850px;}
.y86{bottom:338.995350px;}
.ydd{bottom:341.914950px;}
.y29{bottom:344.272800px;}
.y11e{bottom:344.867850px;}
.y156{bottom:346.690350px;}
.y5d{bottom:352.772700px;}
.ya9{bottom:355.181850px;}
.ydc{bottom:358.114950px;}
.y11d{bottom:361.067850px;}
.y155{bottom:362.890350px;}
.y28{bottom:364.725300px;}
.ya8{bottom:371.381850px;}
.y5c{bottom:373.225200px;}
.ydb{bottom:374.314950px;}
.y105{bottom:377.267850px;}
.y154{bottom:379.090350px;}
.y27{bottom:380.925300px;}
.y85{bottom:384.962850px;}
.ya7{bottom:387.581850px;}
.yda{bottom:390.514950px;}
.y104{bottom:393.467850px;}
.y26{bottom:397.125300px;}
.y153{bottom:399.542850px;}
.y84{bottom:401.162850px;}
.y5b{bottom:402.182700px;}
.ya6{bottom:403.781850px;}
.yd9{bottom:406.714950px;}
.y103{bottom:409.667850px;}
.y25{bottom:413.325300px;}
.y152{bottom:415.742850px;}
.ya5{bottom:419.981850px;}
.yd8{bottom:422.914950px;}
.y102{bottom:425.867850px;}
.y24{bottom:429.525300px;}
.y5a{bottom:431.140200px;}
.y151{bottom:431.942850px;}
.ya4{bottom:436.181850px;}
.yd7{bottom:439.114950px;}
.y101{bottom:442.067850px;}
.y23{bottom:445.725300px;}
.y59{bottom:447.340200px;}
.y150{bottom:448.142850px;}
.ya3{bottom:452.381850px;}
.yd6{bottom:455.314950px;}
.y100{bottom:458.267850px;}
.y22{bottom:461.925300px;}
.y58{bottom:463.540200px;}
.ybf{bottom:464.629950px;}
.ya2{bottom:468.581850px;}
.y14f{bottom:468.595350px;}
.yd5{bottom:471.514950px;}
.y21{bottom:478.125300px;}
.yff{bottom:478.720350px;}
.y57{bottom:479.740200px;}
.ybe{bottom:480.829950px;}
.ya1{bottom:484.781850px;}
.y14e{bottom:484.795350px;}
.yd4{bottom:487.714950px;}
.y20{bottom:494.325300px;}
.yfe{bottom:494.920350px;}
.y56{bottom:500.192700px;}
.ya0{bottom:500.981850px;}
.y14d{bottom:500.995350px;}
.yd3{bottom:503.914950px;}
.yfd{bottom:511.120350px;}
.y1f{bottom:514.777800px;}
.y55{bottom:516.392700px;}
.y9f{bottom:517.181850px;}
.ybd{bottom:518.292450px;}
.yd2{bottom:520.114950px;}
.y14c{bottom:521.447850px;}
.yfc{bottom:527.320350px;}
.y54{bottom:532.592700px;}
.ybc{bottom:534.492450px;}
.yd1{bottom:536.314950px;}
.y9e{bottom:537.634350px;}
.y14b{bottom:537.647850px;}
.yfb{bottom:543.520350px;}
.y1e{bottom:543.735300px;}
.y53{bottom:548.792700px;}
.yd0{bottom:552.514950px;}
.y14a{bottom:553.847850px;}
.yfa{bottom:559.720350px;}
.y1d{bottom:564.187800px;}
.y52{bottom:564.992700px;}
.ycf{bottom:568.714950px;}
.y149{bottom:574.300350px;}
.yf9{bottom:575.920350px;}
.y187{bottom:579.335850px;}
.y51{bottom:581.192700px;}
.y9d{bottom:583.601850px;}
.yce{bottom:584.914950px;}
.y148{bottom:590.500350px;}
.yf8{bottom:592.120350px;}
.y1c{bottom:593.145300px;}
.y186{bottom:595.535850px;}
.y9c{bottom:599.801850px;}
.ycd{bottom:601.114950px;}
.y50{bottom:601.645200px;}
.y147{bottom:606.700350px;}
.yf7{bottom:608.320350px;}
.y1b{bottom:609.345300px;}
.y185{bottom:611.735850px;}
.ycc{bottom:617.314950px;}
.y4f{bottom:617.845200px;}
.y146{bottom:622.900350px;}
.yf6{bottom:624.520350px;}
.y1a{bottom:625.545300px;}
.y184{bottom:627.935850px;}
.y4e{bottom:634.045200px;}
.ycb{bottom:637.767450px;}
.y11c{bottom:640.720350px;}
.y19{bottom:641.745300px;}
.y145{bottom:643.352850px;}
.yf5{bottom:644.972850px;}
.y183{bottom:648.388350px;}
.y83{bottom:648.415350px;}
.y4d{bottom:650.245200px;}
.y11b{bottom:656.920350px;}
.y18{bottom:657.945300px;}
.y144{bottom:659.552850px;}
.yf4{bottom:661.172850px;}
.y182{bottom:664.588350px;}
.y82{bottom:664.615350px;}
.y4c{bottom:666.445200px;}
.y11a{bottom:673.120350px;}
.y17{bottom:674.145300px;}
.y143{bottom:675.752850px;}
.yf3{bottom:677.372850px;}
.y181{bottom:680.788350px;}
.y81{bottom:680.815350px;}
.yca{bottom:683.734950px;}
.y4b{bottom:686.897700px;}
.y119{bottom:689.320350px;}
.y16{bottom:690.345300px;}
.yf2{bottom:693.572850px;}
.y142{bottom:696.205350px;}
.y180{bottom:696.988350px;}
.y80{bottom:697.015350px;}
.yc9{bottom:699.934950px;}
.y4a{bottom:703.097700px;}
.y118{bottom:705.520350px;}
.yf1{bottom:709.772850px;}
.y15{bottom:710.797800px;}
.y141{bottom:712.405350px;}
.y17f{bottom:717.440850px;}
.y49{bottom:719.297700px;}
.y117{bottom:721.720350px;}
.yf0{bottom:725.972850px;}
.y14{bottom:726.997800px;}
.y140{bottom:728.605350px;}
.y17e{bottom:733.640850px;}
.y7f{bottom:734.477850px;}
.y48{bottom:735.497700px;}
.y116{bottom:737.920350px;}
.yef{bottom:742.172850px;}
.y13{bottom:747.450300px;}
.y13f{bottom:749.057850px;}
.y17d{bottom:749.840850px;}
.y7e{bottom:750.677850px;}
.y47{bottom:751.697700px;}
.y115{bottom:754.120350px;}
.yee{bottom:758.372850px;}
.y12{bottom:763.650300px;}
.y13e{bottom:765.257850px;}
.y46{bottom:767.897700px;}
.y17c{bottom:770.293350px;}
.yed{bottom:774.572850px;}
.y11{bottom:779.850300px;}
.y13d{bottom:781.457850px;}
.ybb{bottom:781.744950px;}
.y45{bottom:784.097700px;}
.y17b{bottom:786.493350px;}
.yec{bottom:790.772850px;}
.y10{bottom:796.050300px;}
.yba{bottom:797.944950px;}
.y44{bottom:800.297700px;}
.y13c{bottom:801.910350px;}
.y17a{bottom:802.693350px;}
.y114{bottom:803.530350px;}
.yeb{bottom:811.225350px;}
.yf{bottom:812.250300px;}
.yb9{bottom:814.144950px;}
.y13b{bottom:818.110350px;}
.y179{bottom:818.893350px;}
.y113{bottom:819.730350px;}
.y43{bottom:820.750200px;}
.ye{bottom:828.450300px;}
.yb8{bottom:830.344950px;}
.y9b{bottom:830.854350px;}
.y13a{bottom:834.310350px;}
.y112{bottom:835.930350px;}
.y178{bottom:839.345850px;}
.yd{bottom:844.650300px;}
.yb7{bottom:846.544950px;}
.y9a{bottom:847.054350px;}
.y42{bottom:849.707700px;}
.y111{bottom:852.130350px;}
.y139{bottom:854.762850px;}
.y177{bottom:855.545850px;}
.y99{bottom:863.254350px;}
.yc{bottom:865.102800px;}
.y41{bottom:865.907700px;}
.yb6{bottom:866.997450px;}
.y110{bottom:868.330350px;}
.y176{bottom:871.745850px;}
.y40{bottom:882.107700px;}
.yb5{bottom:883.197450px;}
.y138{bottom:883.720350px;}
.y10f{bottom:884.530350px;}
.y175{bottom:887.945850px;}
.y3f{bottom:898.307700px;}
.yb4{bottom:899.397450px;}
.y137{bottom:899.920350px;}
.y98{bottom:900.716850px;}
.y10e{bottom:900.730350px;}
.y174{bottom:904.145850px;}
.yb{bottom:910.260300px;}
.y3e{bottom:914.507700px;}
.y136{bottom:916.120350px;}
.y97{bottom:916.916850px;}
.y10d{bottom:916.930350px;}
.y173{bottom:924.598350px;}
.ya{bottom:926.460300px;}
.yc8{bottom:931.797450px;}
.y135{bottom:932.320350px;}
.y10c{bottom:933.130350px;}
.y3d{bottom:934.960200px;}
.yb3{bottom:936.859950px;}
.y172{bottom:940.798350px;}
.y9{bottom:947.155800px;}
.yc7{bottom:947.997450px;}
.y134{bottom:948.520350px;}
.y10b{bottom:949.330350px;}
.y3c{bottom:951.160200px;}
.yb2{bottom:953.059950px;}
.y171{bottom:956.998350px;}
.y8{bottom:958.860300px;}
.y133{bottom:964.720350px;}
.y10a{bottom:965.530350px;}
.y3b{bottom:967.360200px;}
.y170{bottom:973.198350px;}
.y7{bottom:979.552421px;}
.y109{bottom:981.730350px;}
.y3a{bottom:983.560200px;}
.y132{bottom:985.172850px;}
.y16f{bottom:989.398350px;}
.y6{bottom:995.512350px;}
.y7d{bottom:997.930350px;}
.y39{bottom:999.760200px;}
.y131{bottom:1001.372850px;}
.y16e{bottom:1005.598350px;}
.y7c{bottom:1014.130350px;}
.y38{bottom:1015.960200px;}
.y5{bottom:1015.963800px;}
.y130{bottom:1017.572850px;}
.y108{bottom:1018.382850px;}
.y16d{bottom:1026.050850px;}
.y7b{bottom:1034.582850px;}
.y37{bottom:1036.412700px;}
.y4{bottom:1036.416300px;}
.y12f{bottom:1038.025350px;}
.y16c{bottom:1042.250850px;}
.y7a{bottom:1050.782850px;}
.y16b{bottom:1058.450850px;}
.y79{bottom:1066.982850px;}
.y16a{bottom:1078.903350px;}
.y78{bottom:1083.182850px;}
.y70{bottom:1089.086550px;}
.y169{bottom:1095.103350px;}
.y77{bottom:1099.382850px;}
.y168{bottom:1111.303350px;}
.y76{bottom:1115.582850px;}
.y6f{bottom:1121.486550px;}
.y167{bottom:1131.755850px;}
.y75{bottom:1131.782850px;}
.y166{bottom:1147.955850px;}
.y96{bottom:1147.969350px;}
.y74{bottom:1147.982850px;}
.y6e{bottom:1153.886550px;}
.y165{bottom:1164.155850px;}
.y95{bottom:1164.169350px;}
.y73{bottom:1164.182850px;}
.y71{bottom:1203.495450px;}
.y1{bottom:1203.495600px;}
.h8{height:29.848078px;}
.h6{height:29.861596px;}
.h2{height:32.671875px;}
.h4{height:33.328125px;}
.hf{height:36.755859px;}
.he{height:37.494141px;}
.h3{height:42.515625px;}
.hb{height:46.617188px;}
.hc{height:47.355469px;}
.h7{height:47.830078px;}
.ha{height:47.831878px;}
.h9{height:47.861878px;}
.h5{height:48.120117px;}
.hd{height:97.611328px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x10{left:83.476500px;}
.x3{left:85.048800px;}
.x12{left:86.487000px;}
.x14{left:91.900050px;}
.x6{left:93.223050px;}
.x8{left:96.233550px;}
.x11{left:156.768000px;}
.x7{left:161.641050px;}
.x15{left:204.557550px;}
.x4{left:467.717250px;}
.x5{left:488.979750px;}
.x16{left:497.521050px;}
.x9{left:505.027050px;}
.xb{left:508.037550px;}
.xe{left:515.341500px;}
.xf{left:518.352000px;}
.xc{left:546.081000px;}
.xa{left:558.824550px;}
.xd{left:562.200000px;}
.x13{left:818.933850px;}
.x1{left:823.133850px;}
@media print{
.v2{vertical-align:-15.971984pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.v3{vertical-align:31.968000pt;}
.ls2{letter-spacing:-6.400000pt;}
.ls8{letter-spacing:-1.776000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009131pt;}
.ls5{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.528000pt;}
.ls9{letter-spacing:0.672000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls7{letter-spacing:2.496000pt;}
.ls4{letter-spacing:13.872000pt;}
.ws1{word-spacing:-15.559104pt;}
.ws5{word-spacing:-14.496000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.672000pt;}
.wsa{word-spacing:-12.528000pt;}
.ws8{word-spacing:-12.384000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.224000pt;}
.ws0{word-spacing:-6.996000pt;}
.ws14{word-spacing:-2.112000pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:0.816000pt;}
.ws15{word-spacing:1.440000pt;}
.ws12{word-spacing:1.536000pt;}
.wsb{word-spacing:2.016000pt;}
.wsf{word-spacing:3.216000pt;}
.ws3{word-spacing:6.400000pt;}
.ws10{word-spacing:7.728000pt;}
.ws13{word-spacing:9.024000pt;}
.wsd{word-spacing:10.272000pt;}
.wsc{word-spacing:19.488000pt;}
.ws11{word-spacing:37.872000pt;}
.ws16{word-spacing:45.648000pt;}
._d{margin-left:-12.048000pt;}
._4{margin-left:-5.385600pt;}
._0{margin-left:-4.420800pt;}
._a{margin-left:-3.172800pt;}
._3{margin-left:-2.160000pt;}
._1{margin-left:-0.907200pt;}
._7{width:0.916800pt;}
._b{width:2.078400pt;}
._6{width:3.134400pt;}
._2{width:4.848000pt;}
._e{width:6.216000pt;}
._11{width:7.488000pt;}
._5{width:8.500800pt;}
._14{width:9.417600pt;}
._c{width:10.512000pt;}
._9{width:12.936000pt;}
._f{width:14.707200pt;}
._10{width:15.681600pt;}
._8{width:17.169600pt;}
._16{width:18.667200pt;}
._1e{width:19.852800pt;}
._13{width:21.115200pt;}
._15{width:22.214400pt;}
._1c{width:23.251200pt;}
._19{width:24.240000pt;}
._18{width:25.272000pt;}
._17{width:31.166400pt;}
._1b{width:32.275200pt;}
._20{width:33.403200pt;}
._12{width:34.593600pt;}
._1f{width:36.278400pt;}
._1a{width:37.761600pt;}
._1d{width:39.033600pt;}
._21{width:40.905600pt;}
._23{width:42.192000pt;}
._22{width:44.390400pt;}
._24{width:45.628800pt;}
.fs2{font-size:27.984000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:55.968000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:42.680400pt;}
.y2{bottom:42.680533pt;}
.y3{bottom:42.682933pt;}
.y12e{bottom:76.149200pt;}
.y36{bottom:77.967733pt;}
.y6d{bottom:79.395733pt;}
.yea{bottom:84.144400pt;}
.yc6{bottom:87.924400pt;}
.y12d{bottom:90.549200pt;}
.y35{bottom:92.367733pt;}
.y6c{bottom:93.795733pt;}
.y164{bottom:95.229200pt;}
.y94{bottom:95.949200pt;}
.ye9{bottom:98.544400pt;}
.y107{bottom:101.169200pt;}
.yc5{bottom:102.324400pt;}
.y12c{bottom:104.949200pt;}
.y6b{bottom:108.195733pt;}
.y163{bottom:109.629200pt;}
.y93{bottom:110.349200pt;}
.ye8{bottom:112.944400pt;}
.y106{bottom:115.569200pt;}
.yc4{bottom:116.724400pt;}
.y12b{bottom:119.349200pt;}
.y6a{bottom:122.595733pt;}
.y162{bottom:124.029200pt;}
.y92{bottom:124.749200pt;}
.y34{bottom:128.727733pt;}
.yc3{bottom:131.124400pt;}
.y12a{bottom:133.749200pt;}
.y69{bottom:136.995733pt;}
.y161{bottom:138.429200pt;}
.y91{bottom:139.149200pt;}
.yc2{bottom:145.524400pt;}
.y33{bottom:146.907733pt;}
.y129{bottom:148.149200pt;}
.y68{bottom:151.395733pt;}
.y90{bottom:153.549200pt;}
.y160{bottom:156.609200pt;}
.ye7{bottom:159.924400pt;}
.y128{bottom:162.549200pt;}
.y67{bottom:165.795733pt;}
.y8f{bottom:167.949200pt;}
.yb1{bottom:170.997200pt;}
.y15f{bottom:171.009200pt;}
.y32{bottom:172.647733pt;}
.ye6{bottom:174.324400pt;}
.y127{bottom:176.949200pt;}
.yc1{bottom:178.824400pt;}
.y66{bottom:180.195733pt;}
.y8e{bottom:182.349200pt;}
.y15e{bottom:185.409200pt;}
.y31{bottom:187.047733pt;}
.ye5{bottom:188.724400pt;}
.y126{bottom:191.349200pt;}
.yc0{bottom:193.224400pt;}
.y8d{bottom:196.749200pt;}
.y65{bottom:198.375733pt;}
.y15d{bottom:199.809200pt;}
.y30{bottom:201.447733pt;}
.ye4{bottom:203.124400pt;}
.y125{bottom:205.749200pt;}
.yb0{bottom:207.357200pt;}
.y8c{bottom:211.149200pt;}
.y64{bottom:212.775733pt;}
.y2f{bottom:215.847733pt;}
.ye3{bottom:217.524400pt;}
.y15c{bottom:217.989200pt;}
.y124{bottom:220.149200pt;}
.yaf{bottom:221.757200pt;}
.y8b{bottom:225.549200pt;}
.y63{bottom:227.175733pt;}
.y2e{bottom:230.247733pt;}
.ye2{bottom:231.924400pt;}
.y15b{bottom:232.389200pt;}
.y123{bottom:234.549200pt;}
.yae{bottom:239.937200pt;}
.y8a{bottom:239.949200pt;}
.y62{bottom:241.575733pt;}
.y2d{bottom:244.647733pt;}
.ye1{bottom:246.324400pt;}
.y15a{bottom:246.789200pt;}
.y122{bottom:248.949200pt;}
.yad{bottom:254.337200pt;}
.y89{bottom:254.349200pt;}
.y61{bottom:255.975733pt;}
.y2c{bottom:259.047333pt;}
.ye0{bottom:260.724400pt;}
.y159{bottom:261.189200pt;}
.y121{bottom:263.349200pt;}
.yac{bottom:268.737200pt;}
.y88{bottom:268.749200pt;}
.y60{bottom:270.375733pt;}
.y2b{bottom:273.447333pt;}
.ydf{bottom:275.124400pt;}
.y120{bottom:277.749200pt;}
.y158{bottom:279.369200pt;}
.y87{bottom:283.149200pt;}
.y5f{bottom:284.775733pt;}
.yab{bottom:286.917200pt;}
.yde{bottom:289.524400pt;}
.y2a{bottom:291.620267pt;}
.y11f{bottom:292.149200pt;}
.y157{bottom:293.769200pt;}
.y5e{bottom:299.175733pt;}
.yaa{bottom:301.317200pt;}
.y86{bottom:301.329200pt;}
.ydd{bottom:303.924400pt;}
.y29{bottom:306.020267pt;}
.y11e{bottom:306.549200pt;}
.y156{bottom:308.169200pt;}
.y5d{bottom:313.575733pt;}
.ya9{bottom:315.717200pt;}
.ydc{bottom:318.324400pt;}
.y11d{bottom:320.949200pt;}
.y155{bottom:322.569200pt;}
.y28{bottom:324.200267pt;}
.ya8{bottom:330.117200pt;}
.y5c{bottom:331.755733pt;}
.ydb{bottom:332.724400pt;}
.y105{bottom:335.349200pt;}
.y154{bottom:336.969200pt;}
.y27{bottom:338.600267pt;}
.y85{bottom:342.189200pt;}
.ya7{bottom:344.517200pt;}
.yda{bottom:347.124400pt;}
.y104{bottom:349.749200pt;}
.y26{bottom:353.000267pt;}
.y153{bottom:355.149200pt;}
.y84{bottom:356.589200pt;}
.y5b{bottom:357.495733pt;}
.ya6{bottom:358.917200pt;}
.yd9{bottom:361.524400pt;}
.y103{bottom:364.149200pt;}
.y25{bottom:367.400267pt;}
.y152{bottom:369.549200pt;}
.ya5{bottom:373.317200pt;}
.yd8{bottom:375.924400pt;}
.y102{bottom:378.549200pt;}
.y24{bottom:381.800267pt;}
.y5a{bottom:383.235733pt;}
.y151{bottom:383.949200pt;}
.ya4{bottom:387.717200pt;}
.yd7{bottom:390.324400pt;}
.y101{bottom:392.949200pt;}
.y23{bottom:396.200267pt;}
.y59{bottom:397.635733pt;}
.y150{bottom:398.349200pt;}
.ya3{bottom:402.117200pt;}
.yd6{bottom:404.724400pt;}
.y100{bottom:407.349200pt;}
.y22{bottom:410.600267pt;}
.y58{bottom:412.035733pt;}
.ybf{bottom:413.004400pt;}
.ya2{bottom:416.517200pt;}
.y14f{bottom:416.529200pt;}
.yd5{bottom:419.124400pt;}
.y21{bottom:425.000267pt;}
.yff{bottom:425.529200pt;}
.y57{bottom:426.435733pt;}
.ybe{bottom:427.404400pt;}
.ya1{bottom:430.917200pt;}
.y14e{bottom:430.929200pt;}
.yd4{bottom:433.524400pt;}
.y20{bottom:439.400267pt;}
.yfe{bottom:439.929200pt;}
.y56{bottom:444.615733pt;}
.ya0{bottom:445.317200pt;}
.y14d{bottom:445.329200pt;}
.yd3{bottom:447.924400pt;}
.yfd{bottom:454.329200pt;}
.y1f{bottom:457.580267pt;}
.y55{bottom:459.015733pt;}
.y9f{bottom:459.717200pt;}
.ybd{bottom:460.704400pt;}
.yd2{bottom:462.324400pt;}
.y14c{bottom:463.509200pt;}
.yfc{bottom:468.729200pt;}
.y54{bottom:473.415733pt;}
.ybc{bottom:475.104400pt;}
.yd1{bottom:476.724400pt;}
.y9e{bottom:477.897200pt;}
.y14b{bottom:477.909200pt;}
.yfb{bottom:483.129200pt;}
.y1e{bottom:483.320267pt;}
.y53{bottom:487.815733pt;}
.yd0{bottom:491.124400pt;}
.y14a{bottom:492.309200pt;}
.yfa{bottom:497.529200pt;}
.y1d{bottom:501.500267pt;}
.y52{bottom:502.215733pt;}
.ycf{bottom:505.524400pt;}
.y149{bottom:510.489200pt;}
.yf9{bottom:511.929200pt;}
.y187{bottom:514.965200pt;}
.y51{bottom:516.615733pt;}
.y9d{bottom:518.757200pt;}
.yce{bottom:519.924400pt;}
.y148{bottom:524.889200pt;}
.yf8{bottom:526.329200pt;}
.y1c{bottom:527.240267pt;}
.y186{bottom:529.365200pt;}
.y9c{bottom:533.157200pt;}
.ycd{bottom:534.324400pt;}
.y50{bottom:534.795733pt;}
.y147{bottom:539.289200pt;}
.yf7{bottom:540.729200pt;}
.y1b{bottom:541.640267pt;}
.y185{bottom:543.765200pt;}
.ycc{bottom:548.724400pt;}
.y4f{bottom:549.195733pt;}
.y146{bottom:553.689200pt;}
.yf6{bottom:555.129200pt;}
.y1a{bottom:556.040267pt;}
.y184{bottom:558.165200pt;}
.y4e{bottom:563.595733pt;}
.ycb{bottom:566.904400pt;}
.y11c{bottom:569.529200pt;}
.y19{bottom:570.440267pt;}
.y145{bottom:571.869200pt;}
.yf5{bottom:573.309200pt;}
.y183{bottom:576.345200pt;}
.y83{bottom:576.369200pt;}
.y4d{bottom:577.995733pt;}
.y11b{bottom:583.929200pt;}
.y18{bottom:584.840267pt;}
.y144{bottom:586.269200pt;}
.yf4{bottom:587.709200pt;}
.y182{bottom:590.745200pt;}
.y82{bottom:590.769200pt;}
.y4c{bottom:592.395733pt;}
.y11a{bottom:598.329200pt;}
.y17{bottom:599.240267pt;}
.y143{bottom:600.669200pt;}
.yf3{bottom:602.109200pt;}
.y181{bottom:605.145200pt;}
.y81{bottom:605.169200pt;}
.yca{bottom:607.764400pt;}
.y4b{bottom:610.575733pt;}
.y119{bottom:612.729200pt;}
.y16{bottom:613.640267pt;}
.yf2{bottom:616.509200pt;}
.y142{bottom:618.849200pt;}
.y180{bottom:619.545200pt;}
.y80{bottom:619.569200pt;}
.yc9{bottom:622.164400pt;}
.y4a{bottom:624.975733pt;}
.y118{bottom:627.129200pt;}
.yf1{bottom:630.909200pt;}
.y15{bottom:631.820267pt;}
.y141{bottom:633.249200pt;}
.y17f{bottom:637.725200pt;}
.y49{bottom:639.375733pt;}
.y117{bottom:641.529200pt;}
.yf0{bottom:645.309200pt;}
.y14{bottom:646.220267pt;}
.y140{bottom:647.649200pt;}
.y17e{bottom:652.125200pt;}
.y7f{bottom:652.869200pt;}
.y48{bottom:653.775733pt;}
.y116{bottom:655.929200pt;}
.yef{bottom:659.709200pt;}
.y13{bottom:664.400267pt;}
.y13f{bottom:665.829200pt;}
.y17d{bottom:666.525200pt;}
.y7e{bottom:667.269200pt;}
.y47{bottom:668.175733pt;}
.y115{bottom:670.329200pt;}
.yee{bottom:674.109200pt;}
.y12{bottom:678.800267pt;}
.y13e{bottom:680.229200pt;}
.y46{bottom:682.575733pt;}
.y17c{bottom:684.705200pt;}
.yed{bottom:688.509200pt;}
.y11{bottom:693.200267pt;}
.y13d{bottom:694.629200pt;}
.ybb{bottom:694.884400pt;}
.y45{bottom:696.975733pt;}
.y17b{bottom:699.105200pt;}
.yec{bottom:702.909200pt;}
.y10{bottom:707.600267pt;}
.yba{bottom:709.284400pt;}
.y44{bottom:711.375733pt;}
.y13c{bottom:712.809200pt;}
.y17a{bottom:713.505200pt;}
.y114{bottom:714.249200pt;}
.yeb{bottom:721.089200pt;}
.yf{bottom:722.000267pt;}
.yb9{bottom:723.684400pt;}
.y13b{bottom:727.209200pt;}
.y179{bottom:727.905200pt;}
.y113{bottom:728.649200pt;}
.y43{bottom:729.555733pt;}
.ye{bottom:736.400267pt;}
.yb8{bottom:738.084400pt;}
.y9b{bottom:738.537200pt;}
.y13a{bottom:741.609200pt;}
.y112{bottom:743.049200pt;}
.y178{bottom:746.085200pt;}
.yd{bottom:750.800267pt;}
.yb7{bottom:752.484400pt;}
.y9a{bottom:752.937200pt;}
.y42{bottom:755.295733pt;}
.y111{bottom:757.449200pt;}
.y139{bottom:759.789200pt;}
.y177{bottom:760.485200pt;}
.y99{bottom:767.337200pt;}
.yc{bottom:768.980267pt;}
.y41{bottom:769.695733pt;}
.yb6{bottom:770.664400pt;}
.y110{bottom:771.849200pt;}
.y176{bottom:774.885200pt;}
.y40{bottom:784.095733pt;}
.yb5{bottom:785.064400pt;}
.y138{bottom:785.529200pt;}
.y10f{bottom:786.249200pt;}
.y175{bottom:789.285200pt;}
.y3f{bottom:798.495733pt;}
.yb4{bottom:799.464400pt;}
.y137{bottom:799.929200pt;}
.y98{bottom:800.637200pt;}
.y10e{bottom:800.649200pt;}
.y174{bottom:803.685200pt;}
.yb{bottom:809.120267pt;}
.y3e{bottom:812.895733pt;}
.y136{bottom:814.329200pt;}
.y97{bottom:815.037200pt;}
.y10d{bottom:815.049200pt;}
.y173{bottom:821.865200pt;}
.ya{bottom:823.520267pt;}
.yc8{bottom:828.264400pt;}
.y135{bottom:828.729200pt;}
.y10c{bottom:829.449200pt;}
.y3d{bottom:831.075733pt;}
.yb3{bottom:832.764400pt;}
.y172{bottom:836.265200pt;}
.y9{bottom:841.916267pt;}
.yc7{bottom:842.664400pt;}
.y134{bottom:843.129200pt;}
.y10b{bottom:843.849200pt;}
.y3c{bottom:845.475733pt;}
.yb2{bottom:847.164400pt;}
.y171{bottom:850.665200pt;}
.y8{bottom:852.320267pt;}
.y133{bottom:857.529200pt;}
.y10a{bottom:858.249200pt;}
.y3b{bottom:859.875733pt;}
.y170{bottom:865.065200pt;}
.y7{bottom:870.713263pt;}
.y109{bottom:872.649200pt;}
.y3a{bottom:874.275733pt;}
.y132{bottom:875.709200pt;}
.y16f{bottom:879.465200pt;}
.y6{bottom:884.899867pt;}
.y7d{bottom:887.049200pt;}
.y39{bottom:888.675733pt;}
.y131{bottom:890.109200pt;}
.y16e{bottom:893.865200pt;}
.y7c{bottom:901.449200pt;}
.y38{bottom:903.075733pt;}
.y5{bottom:903.078933pt;}
.y130{bottom:904.509200pt;}
.y108{bottom:905.229200pt;}
.y16d{bottom:912.045200pt;}
.y7b{bottom:919.629200pt;}
.y37{bottom:921.255733pt;}
.y4{bottom:921.258933pt;}
.y12f{bottom:922.689200pt;}
.y16c{bottom:926.445200pt;}
.y7a{bottom:934.029200pt;}
.y16b{bottom:940.845200pt;}
.y79{bottom:948.429200pt;}
.y16a{bottom:959.025200pt;}
.y78{bottom:962.829200pt;}
.y70{bottom:968.076933pt;}
.y169{bottom:973.425200pt;}
.y77{bottom:977.229200pt;}
.y168{bottom:987.825200pt;}
.y76{bottom:991.629200pt;}
.y6f{bottom:996.876933pt;}
.y167{bottom:1006.005200pt;}
.y75{bottom:1006.029200pt;}
.y166{bottom:1020.405200pt;}
.y96{bottom:1020.417200pt;}
.y74{bottom:1020.429200pt;}
.y6e{bottom:1025.676933pt;}
.y165{bottom:1034.805200pt;}
.y95{bottom:1034.817200pt;}
.y73{bottom:1034.829200pt;}
.y71{bottom:1069.773733pt;}
.y1{bottom:1069.773867pt;}
.h8{height:26.531625pt;}
.h6{height:26.543641pt;}
.h2{height:29.041667pt;}
.h4{height:29.625000pt;}
.hf{height:32.671875pt;}
.he{height:33.328125pt;}
.h3{height:37.791667pt;}
.hb{height:41.437500pt;}
.hc{height:42.093750pt;}
.h7{height:42.515625pt;}
.ha{height:42.517225pt;}
.h9{height:42.543892pt;}
.h5{height:42.773438pt;}
.hd{height:86.765625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x10{left:74.201333pt;}
.x3{left:75.598933pt;}
.x12{left:76.877333pt;}
.x14{left:81.688933pt;}
.x6{left:82.864933pt;}
.x8{left:85.540933pt;}
.x11{left:139.349333pt;}
.x7{left:143.680933pt;}
.x15{left:181.828933pt;}
.x4{left:415.748667pt;}
.x5{left:434.648667pt;}
.x16{left:442.240933pt;}
.x9{left:448.912933pt;}
.xb{left:451.588933pt;}
.xe{left:458.081333pt;}
.xf{left:460.757333pt;}
.xc{left:485.405333pt;}
.xa{left:496.732933pt;}
.xd{left:499.733333pt;}
.x13{left:727.941200pt;}
.x1{left:731.674533pt;}
}




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