
    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_1d47960409474da9bc822f02.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7a245596f96c8a53d045598c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d70b724876aa43cd428ed76d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bdd710dc0b78c15ed6524840.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls3{letter-spacing:0.044075px;}
.ls5{letter-spacing:0.069260px;}
.ls4{letter-spacing:0.245560px;}
.ls6{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;}
}
.ws3{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws5{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.004280px;}
.ws7{word-spacing:-8.465160px;}
.ws4{word-spacing:-6.926040px;}
.ws1{word-spacing:-0.032400px;}
.ws6{word-spacing:0.000000px;}
._20{margin-left:-7.901400px;}
._3{margin-left:-6.576300px;}
._10{margin-left:-5.123700px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.278900px;}
._5{width:1.002000px;}
._4{width:2.100000px;}
._8{width:3.682800px;}
._a{width:4.996200px;}
._7{width:6.421800px;}
._11{width:7.662600px;}
._15{width:8.665800px;}
._d{width:9.939600px;}
._f{width:11.271300px;}
._9{width:13.231500px;}
._b{width:16.020000px;}
._e{width:17.028000px;}
._1c{width:18.037800px;}
._1b{width:19.179600px;}
._18{width:20.209200px;}
._6{width:21.692700px;}
._14{width:22.753200px;}
._19{width:23.827200px;}
._c{width:25.390200px;}
._17{width:27.198600px;}
._21{width:28.551600px;}
._16{width:32.010000px;}
._12{width:33.343200px;}
._13{width:34.590600px;}
._1a{width:36.001776px;}
._1e{width:37.626600px;}
._1d{width:39.151200px;}
._1f{width:40.430100px;}
._23{width:47.051400px;}
._22{width:52.014600px;}
._24{width:59.390400px;}
.fc2{color:rgb(72,118,134);}
.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;}
.y24{bottom:133.275900px;}
.y8a{bottom:133.653900px;}
.y4d{bottom:138.149400px;}
.y23{bottom:149.475900px;}
.y14a{bottom:149.886900px;}
.ycf{bottom:151.653900px;}
.y4c{bottom:156.149400px;}
.y149{bottom:168.636900px;}
.y89{bottom:169.653900px;}
.y22{bottom:170.171400px;}
.y4b{bottom:174.149400px;}
.y21{bottom:186.371400px;}
.yce{bottom:187.653900px;}
.y148{bottom:191.886900px;}
.y4a{bottom:192.149400px;}
.y49{bottom:205.653900px;}
.y6b{bottom:207.636900px;}
.ycd{bottom:210.149400px;}
.y147{bottom:210.636900px;}
.y169{bottom:212.886900px;}
.y88{bottom:213.336900px;}
.yeb{bottom:223.653900px;}
.y20{bottom:226.152900px;}
.y6a{bottom:226.386900px;}
.y48{bottom:228.149400px;}
.y11c{bottom:229.386900px;}
.y168{bottom:231.636900px;}
.y87{bottom:232.386900px;}
.y146{bottom:233.886900px;}
.y143{bottom:236.886900px;}
.ycc{bottom:237.627900px;}
.y136{bottom:238.386900px;}
.ya6{bottom:241.653900px;}
.y1f{bottom:244.902900px;}
.y69{bottom:245.136900px;}
.y138{bottom:246.149400px;}
.y11b{bottom:248.136900px;}
.y86{bottom:251.436900px;}
.y145{bottom:252.636900px;}
.y167{bottom:254.886900px;}
.y142{bottom:255.636900px;}
.ycb{bottom:256.377900px;}
.y135{bottom:257.136900px;}
.ya5{bottom:259.653900px;}
.y47{bottom:262.386900px;}
.y1e{bottom:263.652900px;}
.y68{bottom:263.886900px;}
.yea{bottom:264.149400px;}
.y11a{bottom:266.886900px;}
.y85{bottom:270.486900px;}
.y144{bottom:271.386900px;}
.y166{bottom:273.636900px;}
.y141{bottom:274.386900px;}
.yca{bottom:275.127900px;}
.y132{bottom:275.886900px;}
.yec{bottom:277.653900px;}
.y46{bottom:281.136900px;}
.ya4{bottom:282.149400px;}
.y1d{bottom:282.402900px;}
.y67{bottom:284.136900px;}
.y119{bottom:285.636900px;}
.y84{bottom:289.536900px;}
.y140{bottom:293.136900px;}
.y131{bottom:294.636900px;}
.yc9{bottom:295.377900px;}
.ya8{bottom:295.653900px;}
.y165{bottom:296.886900px;}
.y45{bottom:299.886900px;}
.y1c{bottom:301.152900px;}
.y66{bottom:302.886900px;}
.y118{bottom:304.386900px;}
.y83{bottom:308.586900px;}
.y13f{bottom:311.886900px;}
.y130{bottom:313.386900px;}
.y106{bottom:313.653900px;}
.yc8{bottom:314.127900px;}
.y164{bottom:315.636900px;}
.ya7{bottom:318.149400px;}
.y44{bottom:318.636900px;}
.y1b{bottom:319.902900px;}
.y65{bottom:321.636900px;}
.y117{bottom:323.136900px;}
.y82{bottom:327.636900px;}
.y13e{bottom:330.636900px;}
.ye9{bottom:331.653900px;}
.y12f{bottom:332.136900px;}
.yc7{bottom:332.877900px;}
.ya9{bottom:336.149400px;}
.y43{bottom:337.386900px;}
.y163{bottom:338.886900px;}
.y64{bottom:340.386900px;}
.y134{bottom:341.136900px;}
.y116{bottom:341.886900px;}
.y174{bottom:344.652900px;}
.y81{bottom:346.686900px;}
.y1a{bottom:347.652900px;}
.y13d{bottom:349.386900px;}
.ye8{bottom:349.653900px;}
.y12e{bottom:350.886900px;}
.yc6{bottom:351.627900px;}
.y42{bottom:356.136900px;}
.y162{bottom:357.636900px;}
.y63{bottom:359.136900px;}
.y133{bottom:359.886900px;}
.y115{bottom:360.636900px;}
.y173{bottom:363.402900px;}
.y80{bottom:365.736900px;}
.y13c{bottom:368.136900px;}
.y12d{bottom:369.636900px;}
.yc5{bottom:370.377900px;}
.ye7{bottom:372.149400px;}
.y41{bottom:376.386900px;}
.y62{bottom:377.886900px;}
.y114{bottom:379.386900px;}
.y105{bottom:379.902900px;}
.y161{bottom:380.886900px;}
.y172{bottom:383.652900px;}
.y7f{bottom:384.786900px;}
.y13b{bottom:386.886900px;}
.y12c{bottom:388.386900px;}
.yc4{bottom:389.127900px;}
.ya3{bottom:390.336900px;}
.ye6{bottom:392.886900px;}
.y19{bottom:393.402900px;}
.y40{bottom:395.136900px;}
.y61{bottom:396.636900px;}
.y113{bottom:398.136900px;}
.y104{bottom:398.652900px;}
.y160{bottom:399.636900px;}
.y171{bottom:402.402900px;}
.y7e{bottom:403.836900px;}
.y13a{bottom:405.636900px;}
.y12b{bottom:407.136900px;}
.yc3{bottom:407.877900px;}
.ya2{bottom:409.386900px;}
.ye5{bottom:411.636900px;}
.y18{bottom:412.152900px;}
.y3f{bottom:413.886900px;}
.y60{bottom:415.386900px;}
.y112{bottom:416.886900px;}
.y15f{bottom:418.386900px;}
.y170{bottom:421.152900px;}
.y7d{bottom:424.386900px;}
.y12a{bottom:425.886900px;}
.y103{bottom:426.402900px;}
.yc2{bottom:426.627900px;}
.ya1{bottom:428.436900px;}
.ye4{bottom:430.386900px;}
.y3e{bottom:432.636900px;}
.y5f{bottom:434.136900px;}
.y111{bottom:435.636900px;}
.y17{bottom:439.902900px;}
.y15e{bottom:441.636900px;}
.y7c{bottom:443.136900px;}
.y129{bottom:444.636900px;}
.yc1{bottom:445.377900px;}
.ya0{bottom:447.486900px;}
.ye3{bottom:449.136900px;}
.y3d{bottom:451.386900px;}
.y5e{bottom:452.886900px;}
.y110{bottom:454.386900px;}
.y16{bottom:458.652900px;}
.y15d{bottom:460.386900px;}
.y7b{bottom:461.886900px;}
.y128{bottom:463.386900px;}
.yc0{bottom:464.127900px;}
.y102{bottom:464.652900px;}
.y9f{bottom:466.536900px;}
.ye2{bottom:467.886900px;}
.y3c{bottom:470.136900px;}
.y5d{bottom:471.636900px;}
.y10f{bottom:473.136900px;}
.y15{bottom:477.402900px;}
.y15c{bottom:479.136900px;}
.y7a{bottom:480.636900px;}
.y127{bottom:482.136900px;}
.ybf{bottom:482.877900px;}
.y101{bottom:483.402900px;}
.y9e{bottom:485.586900px;}
.ye1{bottom:486.636900px;}
.y3b{bottom:488.886900px;}
.y5c{bottom:490.386900px;}
.y10e{bottom:491.886900px;}
.y14{bottom:496.152900px;}
.y15b{bottom:497.886900px;}
.y79{bottom:499.386900px;}
.y126{bottom:500.886900px;}
.ybe{bottom:501.627900px;}
.y100{bottom:502.152900px;}
.y9d{bottom:504.636900px;}
.ye0{bottom:505.386900px;}
.y3a{bottom:507.636900px;}
.y5b{bottom:509.136900px;}
.y10d{bottom:510.636900px;}
.y13{bottom:514.902900px;}
.y78{bottom:518.136900px;}
.y125{bottom:519.636900px;}
.ybd{bottom:520.377900px;}
.yff{bottom:520.902900px;}
.y15a{bottom:521.136900px;}
.y9c{bottom:523.686900px;}
.ydf{bottom:524.136900px;}
.y39{bottom:526.386900px;}
.y5a{bottom:527.886900px;}
.y10c{bottom:529.386900px;}
.y12{bottom:533.652900px;}
.y77{bottom:536.886900px;}
.y124{bottom:538.386900px;}
.ybc{bottom:539.127900px;}
.yfe{bottom:539.652900px;}
.y159{bottom:539.886900px;}
.y9b{bottom:542.736900px;}
.yde{bottom:542.886900px;}
.y38{bottom:545.136900px;}
.y59{bottom:546.636900px;}
.y10b{bottom:548.136900px;}
.y11{bottom:552.402900px;}
.y76{bottom:555.636900px;}
.y123{bottom:557.136900px;}
.ybb{bottom:557.877900px;}
.yfd{bottom:558.402900px;}
.y158{bottom:558.636900px;}
.ydd{bottom:561.636900px;}
.y9a{bottom:561.786900px;}
.y37{bottom:563.886900px;}
.y58{bottom:565.386900px;}
.y10a{bottom:566.886900px;}
.y10{bottom:571.152900px;}
.y75{bottom:574.386900px;}
.y122{bottom:575.886900px;}
.yba{bottom:576.627900px;}
.yfc{bottom:577.152900px;}
.ydc{bottom:580.386900px;}
.y99{bottom:580.836900px;}
.y157{bottom:581.886900px;}
.y36{bottom:582.636900px;}
.y57{bottom:584.136900px;}
.y109{bottom:585.636900px;}
.yf{bottom:589.902900px;}
.y74{bottom:594.636900px;}
.yb9{bottom:595.377900px;}
.yfb{bottom:595.902900px;}
.ydb{bottom:599.136900px;}
.y98{bottom:599.886900px;}
.y156{bottom:600.636900px;}
.y35{bottom:602.886900px;}
.y108{bottom:604.386900px;}
.ye{bottom:608.652900px;}
.y73{bottom:613.386900px;}
.yb8{bottom:614.127900px;}
.yfa{bottom:614.652900px;}
.yda{bottom:617.886900px;}
.y97{bottom:618.936900px;}
.y155{bottom:619.386900px;}
.y34{bottom:621.636900px;}
.y139{bottom:622.386900px;}
.y107{bottom:623.136900px;}
.yd{bottom:627.402900px;}
.y72{bottom:632.136900px;}
.yb7{bottom:632.877900px;}
.yf9{bottom:633.402900px;}
.yd9{bottom:636.636900px;}
.y96{bottom:637.986900px;}
.y33{bottom:640.386900px;}
.y137{bottom:641.136900px;}
.y56{bottom:641.886900px;}
.y154{bottom:642.636900px;}
.yc{bottom:646.152900px;}
.y71{bottom:650.886900px;}
.yb6{bottom:651.627900px;}
.yf8{bottom:652.152900px;}
.yd8{bottom:655.386900px;}
.y95{bottom:657.036900px;}
.y32{bottom:659.136900px;}
.y55{bottom:660.636900px;}
.y153{bottom:661.386900px;}
.y16f{bottom:664.902900px;}
.y70{bottom:669.636900px;}
.yb5{bottom:670.377900px;}
.yf7{bottom:670.902900px;}
.yd7{bottom:674.136900px;}
.y94{bottom:676.086900px;}
.y31{bottom:677.886900px;}
.y54{bottom:679.386900px;}
.y16e{bottom:683.652900px;}
.y152{bottom:684.636900px;}
.y6f{bottom:688.386900px;}
.yb4{bottom:689.127900px;}
.yf6{bottom:689.652900px;}
.yd6{bottom:692.886900px;}
.y93{bottom:695.136900px;}
.y30{bottom:696.636900px;}
.y53{bottom:698.136900px;}
.y16d{bottom:702.402900px;}
.y151{bottom:703.386900px;}
.y6e{bottom:707.136900px;}
.yb3{bottom:707.877900px;}
.yf5{bottom:708.402900px;}
.yb{bottom:709.902900px;}
.yd5{bottom:711.636900px;}
.y92{bottom:714.186900px;}
.y2f{bottom:715.386900px;}
.y52{bottom:716.886900px;}
.y6d{bottom:725.886900px;}
.yb2{bottom:726.627900px;}
.y150{bottom:726.636900px;}
.yf4{bottom:727.152900px;}
.y16c{bottom:730.152900px;}
.yd4{bottom:730.386900px;}
.ya{bottom:732.402900px;}
.y91{bottom:733.236900px;}
.y2e{bottom:734.136900px;}
.y51{bottom:735.636900px;}
.y121{bottom:744.636900px;}
.yb1{bottom:745.377900px;}
.y14f{bottom:745.386900px;}
.yf3{bottom:745.902900px;}
.yd3{bottom:749.136900px;}
.y90{bottom:752.286900px;}
.y2d{bottom:752.886900px;}
.y6c{bottom:753.636900px;}
.y50{bottom:754.386900px;}
.y16b{bottom:762.402900px;}
.y120{bottom:763.386900px;}
.yb0{bottom:764.127900px;}
.y14e{bottom:764.136900px;}
.yf2{bottom:764.652900px;}
.yd2{bottom:767.886900px;}
.y8f{bottom:771.336900px;}
.y2c{bottom:771.636900px;}
.y4f{bottom:773.136900px;}
.y16a{bottom:781.152900px;}
.y11f{bottom:782.136900px;}
.yaf{bottom:782.877900px;}
.y14d{bottom:782.886900px;}
.yf1{bottom:783.402900px;}
.yd1{bottom:786.636900px;}
.y2b{bottom:790.386900px;}
.y4e{bottom:791.886900px;}
.y11e{bottom:800.886900px;}
.yae{bottom:801.627900px;}
.yf0{bottom:802.152900px;}
.y14c{bottom:806.136900px;}
.y8e{bottom:809.436900px;}
.y2a{bottom:810.636900px;}
.yd0{bottom:814.386900px;}
.yad{bottom:820.377900px;}
.yef{bottom:820.902900px;}
.y5{bottom:823.998900px;}
.y14b{bottom:824.886900px;}
.y8d{bottom:828.486900px;}
.y11d{bottom:828.636900px;}
.y29{bottom:829.386900px;}
.y9{bottom:829.902900px;}
.yac{bottom:839.127900px;}
.yee{bottom:839.652900px;}
.y8c{bottom:847.536900px;}
.y28{bottom:848.136900px;}
.y8{bottom:848.652900px;}
.y4{bottom:855.338400px;}
.yab{bottom:857.877900px;}
.yed{bottom:858.402900px;}
.y8b{bottom:866.586900px;}
.y27{bottom:866.886900px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.yaa{bottom:885.627900px;}
.y26{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y25{bottom:922.796400px;}
.hb{height:29.004328px;}
.hd{height:41.765625px;}
.h3{height:44.586914px;}
.h9{height:46.792969px;}
.hc{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.ha{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x6{left:91.416600px;}
.x7{left:103.898100px;}
.x8{left:105.920100px;}
.xb{left:108.425100px;}
.xd{left:110.918100px;}
.xa{left:133.937100px;}
.x9{left:142.440600px;}
.xe{left:223.079100px;}
.xf{left:322.938600px;}
.x2{left:432.996600px;}
.x5{left:443.360100px;}
.x3{left:469.595100px;}
.xc{left:488.493600px;}
.x4{left:511.439100px;}
.x1{left:596.750100px;}
@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;}
.ls3{letter-spacing:0.039178pt;}
.ls5{letter-spacing:0.061565pt;}
.ls4{letter-spacing:0.218275pt;}
.ls6{letter-spacing:0.456139pt;}
.ws3{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws2{word-spacing:-8.892693pt;}
.ws7{word-spacing:-7.524587pt;}
.ws4{word-spacing:-6.156480pt;}
.ws1{word-spacing:-0.028800pt;}
.ws6{word-spacing:0.000000pt;}
._20{margin-left:-7.023467pt;}
._3{margin-left:-5.845600pt;}
._10{margin-left:-4.554400pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-1.136800pt;}
._5{width:0.890667pt;}
._4{width:1.866667pt;}
._8{width:3.273600pt;}
._a{width:4.441067pt;}
._7{width:5.708267pt;}
._11{width:6.811200pt;}
._15{width:7.702933pt;}
._d{width:8.835200pt;}
._f{width:10.018933pt;}
._9{width:11.761333pt;}
._b{width:14.240000pt;}
._e{width:15.136000pt;}
._1c{width:16.033600pt;}
._1b{width:17.048533pt;}
._18{width:17.963733pt;}
._6{width:19.282400pt;}
._14{width:20.225067pt;}
._19{width:21.179733pt;}
._c{width:22.569067pt;}
._17{width:24.176533pt;}
._21{width:25.379200pt;}
._16{width:28.453333pt;}
._12{width:29.638400pt;}
._13{width:30.747200pt;}
._1a{width:32.001579pt;}
._1e{width:33.445867pt;}
._1d{width:34.801067pt;}
._1f{width:35.937867pt;}
._23{width:41.823467pt;}
._22{width:46.235200pt;}
._24{width:52.791467pt;}
.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;}
.y24{bottom:118.467467pt;}
.y8a{bottom:118.803467pt;}
.y4d{bottom:122.799467pt;}
.y23{bottom:132.867467pt;}
.y14a{bottom:133.232800pt;}
.ycf{bottom:134.803467pt;}
.y4c{bottom:138.799467pt;}
.y149{bottom:149.899467pt;}
.y89{bottom:150.803467pt;}
.y22{bottom:151.263467pt;}
.y4b{bottom:154.799467pt;}
.y21{bottom:165.663467pt;}
.yce{bottom:166.803467pt;}
.y148{bottom:170.566133pt;}
.y4a{bottom:170.799467pt;}
.y49{bottom:182.803467pt;}
.y6b{bottom:184.566133pt;}
.ycd{bottom:186.799467pt;}
.y147{bottom:187.232800pt;}
.y169{bottom:189.232800pt;}
.y88{bottom:189.632800pt;}
.yeb{bottom:198.803467pt;}
.y20{bottom:201.024800pt;}
.y6a{bottom:201.232800pt;}
.y48{bottom:202.799467pt;}
.y11c{bottom:203.899467pt;}
.y168{bottom:205.899467pt;}
.y87{bottom:206.566133pt;}
.y146{bottom:207.899467pt;}
.y143{bottom:210.566133pt;}
.ycc{bottom:211.224800pt;}
.y136{bottom:211.899467pt;}
.ya6{bottom:214.803467pt;}
.y1f{bottom:217.691467pt;}
.y69{bottom:217.899467pt;}
.y138{bottom:218.799467pt;}
.y11b{bottom:220.566133pt;}
.y86{bottom:223.499467pt;}
.y145{bottom:224.566133pt;}
.y167{bottom:226.566133pt;}
.y142{bottom:227.232800pt;}
.ycb{bottom:227.891467pt;}
.y135{bottom:228.566133pt;}
.ya5{bottom:230.803467pt;}
.y47{bottom:233.232800pt;}
.y1e{bottom:234.358133pt;}
.y68{bottom:234.566133pt;}
.yea{bottom:234.799467pt;}
.y11a{bottom:237.232800pt;}
.y85{bottom:240.432800pt;}
.y144{bottom:241.232800pt;}
.y166{bottom:243.232800pt;}
.y141{bottom:243.899467pt;}
.yca{bottom:244.558133pt;}
.y132{bottom:245.232800pt;}
.yec{bottom:246.803467pt;}
.y46{bottom:249.899467pt;}
.ya4{bottom:250.799467pt;}
.y1d{bottom:251.024800pt;}
.y67{bottom:252.566133pt;}
.y119{bottom:253.899467pt;}
.y84{bottom:257.366133pt;}
.y140{bottom:260.566133pt;}
.y131{bottom:261.899467pt;}
.yc9{bottom:262.558133pt;}
.ya8{bottom:262.803467pt;}
.y165{bottom:263.899467pt;}
.y45{bottom:266.566133pt;}
.y1c{bottom:267.691467pt;}
.y66{bottom:269.232800pt;}
.y118{bottom:270.566133pt;}
.y83{bottom:274.299467pt;}
.y13f{bottom:277.232800pt;}
.y130{bottom:278.566133pt;}
.y106{bottom:278.803467pt;}
.yc8{bottom:279.224800pt;}
.y164{bottom:280.566133pt;}
.ya7{bottom:282.799467pt;}
.y44{bottom:283.232800pt;}
.y1b{bottom:284.358133pt;}
.y65{bottom:285.899467pt;}
.y117{bottom:287.232800pt;}
.y82{bottom:291.232800pt;}
.y13e{bottom:293.899467pt;}
.ye9{bottom:294.803467pt;}
.y12f{bottom:295.232800pt;}
.yc7{bottom:295.891467pt;}
.ya9{bottom:298.799467pt;}
.y43{bottom:299.899467pt;}
.y163{bottom:301.232800pt;}
.y64{bottom:302.566133pt;}
.y134{bottom:303.232800pt;}
.y116{bottom:303.899467pt;}
.y174{bottom:306.358133pt;}
.y81{bottom:308.166133pt;}
.y1a{bottom:309.024800pt;}
.y13d{bottom:310.566133pt;}
.ye8{bottom:310.803467pt;}
.y12e{bottom:311.899467pt;}
.yc6{bottom:312.558133pt;}
.y42{bottom:316.566133pt;}
.y162{bottom:317.899467pt;}
.y63{bottom:319.232800pt;}
.y133{bottom:319.899467pt;}
.y115{bottom:320.566133pt;}
.y173{bottom:323.024800pt;}
.y80{bottom:325.099467pt;}
.y13c{bottom:327.232800pt;}
.y12d{bottom:328.566133pt;}
.yc5{bottom:329.224800pt;}
.ye7{bottom:330.799467pt;}
.y41{bottom:334.566133pt;}
.y62{bottom:335.899467pt;}
.y114{bottom:337.232800pt;}
.y105{bottom:337.691467pt;}
.y161{bottom:338.566133pt;}
.y172{bottom:341.024800pt;}
.y7f{bottom:342.032800pt;}
.y13b{bottom:343.899467pt;}
.y12c{bottom:345.232800pt;}
.yc4{bottom:345.891467pt;}
.ya3{bottom:346.966133pt;}
.ye6{bottom:349.232800pt;}
.y19{bottom:349.691467pt;}
.y40{bottom:351.232800pt;}
.y61{bottom:352.566133pt;}
.y113{bottom:353.899467pt;}
.y104{bottom:354.358133pt;}
.y160{bottom:355.232800pt;}
.y171{bottom:357.691467pt;}
.y7e{bottom:358.966133pt;}
.y13a{bottom:360.566133pt;}
.y12b{bottom:361.899467pt;}
.yc3{bottom:362.558133pt;}
.ya2{bottom:363.899467pt;}
.ye5{bottom:365.899467pt;}
.y18{bottom:366.358133pt;}
.y3f{bottom:367.899467pt;}
.y60{bottom:369.232800pt;}
.y112{bottom:370.566133pt;}
.y15f{bottom:371.899467pt;}
.y170{bottom:374.358133pt;}
.y7d{bottom:377.232800pt;}
.y12a{bottom:378.566133pt;}
.y103{bottom:379.024800pt;}
.yc2{bottom:379.224800pt;}
.ya1{bottom:380.832800pt;}
.ye4{bottom:382.566133pt;}
.y3e{bottom:384.566133pt;}
.y5f{bottom:385.899467pt;}
.y111{bottom:387.232800pt;}
.y17{bottom:391.024800pt;}
.y15e{bottom:392.566133pt;}
.y7c{bottom:393.899467pt;}
.y129{bottom:395.232800pt;}
.yc1{bottom:395.891467pt;}
.ya0{bottom:397.766133pt;}
.ye3{bottom:399.232800pt;}
.y3d{bottom:401.232800pt;}
.y5e{bottom:402.566133pt;}
.y110{bottom:403.899467pt;}
.y16{bottom:407.691467pt;}
.y15d{bottom:409.232800pt;}
.y7b{bottom:410.566133pt;}
.y128{bottom:411.899467pt;}
.yc0{bottom:412.558133pt;}
.y102{bottom:413.024800pt;}
.y9f{bottom:414.699467pt;}
.ye2{bottom:415.899467pt;}
.y3c{bottom:417.899467pt;}
.y5d{bottom:419.232800pt;}
.y10f{bottom:420.566133pt;}
.y15{bottom:424.358133pt;}
.y15c{bottom:425.899467pt;}
.y7a{bottom:427.232800pt;}
.y127{bottom:428.566133pt;}
.ybf{bottom:429.224800pt;}
.y101{bottom:429.691467pt;}
.y9e{bottom:431.632800pt;}
.ye1{bottom:432.566133pt;}
.y3b{bottom:434.566133pt;}
.y5c{bottom:435.899467pt;}
.y10e{bottom:437.232800pt;}
.y14{bottom:441.024800pt;}
.y15b{bottom:442.566133pt;}
.y79{bottom:443.899467pt;}
.y126{bottom:445.232800pt;}
.ybe{bottom:445.891467pt;}
.y100{bottom:446.358133pt;}
.y9d{bottom:448.566133pt;}
.ye0{bottom:449.232800pt;}
.y3a{bottom:451.232800pt;}
.y5b{bottom:452.566133pt;}
.y10d{bottom:453.899467pt;}
.y13{bottom:457.691467pt;}
.y78{bottom:460.566133pt;}
.y125{bottom:461.899467pt;}
.ybd{bottom:462.558133pt;}
.yff{bottom:463.024800pt;}
.y15a{bottom:463.232800pt;}
.y9c{bottom:465.499467pt;}
.ydf{bottom:465.899467pt;}
.y39{bottom:467.899467pt;}
.y5a{bottom:469.232800pt;}
.y10c{bottom:470.566133pt;}
.y12{bottom:474.358133pt;}
.y77{bottom:477.232800pt;}
.y124{bottom:478.566133pt;}
.ybc{bottom:479.224800pt;}
.yfe{bottom:479.691467pt;}
.y159{bottom:479.899467pt;}
.y9b{bottom:482.432800pt;}
.yde{bottom:482.566133pt;}
.y38{bottom:484.566133pt;}
.y59{bottom:485.899467pt;}
.y10b{bottom:487.232800pt;}
.y11{bottom:491.024800pt;}
.y76{bottom:493.899467pt;}
.y123{bottom:495.232800pt;}
.ybb{bottom:495.891467pt;}
.yfd{bottom:496.358133pt;}
.y158{bottom:496.566133pt;}
.ydd{bottom:499.232800pt;}
.y9a{bottom:499.366133pt;}
.y37{bottom:501.232800pt;}
.y58{bottom:502.566133pt;}
.y10a{bottom:503.899467pt;}
.y10{bottom:507.691467pt;}
.y75{bottom:510.566133pt;}
.y122{bottom:511.899467pt;}
.yba{bottom:512.558133pt;}
.yfc{bottom:513.024800pt;}
.ydc{bottom:515.899467pt;}
.y99{bottom:516.299467pt;}
.y157{bottom:517.232800pt;}
.y36{bottom:517.899467pt;}
.y57{bottom:519.232800pt;}
.y109{bottom:520.566133pt;}
.yf{bottom:524.358133pt;}
.y74{bottom:528.566133pt;}
.yb9{bottom:529.224800pt;}
.yfb{bottom:529.691467pt;}
.ydb{bottom:532.566133pt;}
.y98{bottom:533.232800pt;}
.y156{bottom:533.899467pt;}
.y35{bottom:535.899467pt;}
.y108{bottom:537.232800pt;}
.ye{bottom:541.024800pt;}
.y73{bottom:545.232800pt;}
.yb8{bottom:545.891467pt;}
.yfa{bottom:546.358133pt;}
.yda{bottom:549.232800pt;}
.y97{bottom:550.166133pt;}
.y155{bottom:550.566133pt;}
.y34{bottom:552.566133pt;}
.y139{bottom:553.232800pt;}
.y107{bottom:553.899467pt;}
.yd{bottom:557.691467pt;}
.y72{bottom:561.899467pt;}
.yb7{bottom:562.558133pt;}
.yf9{bottom:563.024800pt;}
.yd9{bottom:565.899467pt;}
.y96{bottom:567.099467pt;}
.y33{bottom:569.232800pt;}
.y137{bottom:569.899467pt;}
.y56{bottom:570.566133pt;}
.y154{bottom:571.232800pt;}
.yc{bottom:574.358133pt;}
.y71{bottom:578.566133pt;}
.yb6{bottom:579.224800pt;}
.yf8{bottom:579.691467pt;}
.yd8{bottom:582.566133pt;}
.y95{bottom:584.032800pt;}
.y32{bottom:585.899467pt;}
.y55{bottom:587.232800pt;}
.y153{bottom:587.899467pt;}
.y16f{bottom:591.024800pt;}
.y70{bottom:595.232800pt;}
.yb5{bottom:595.891467pt;}
.yf7{bottom:596.358133pt;}
.yd7{bottom:599.232800pt;}
.y94{bottom:600.966133pt;}
.y31{bottom:602.566133pt;}
.y54{bottom:603.899467pt;}
.y16e{bottom:607.691467pt;}
.y152{bottom:608.566133pt;}
.y6f{bottom:611.899467pt;}
.yb4{bottom:612.558133pt;}
.yf6{bottom:613.024800pt;}
.yd6{bottom:615.899467pt;}
.y93{bottom:617.899467pt;}
.y30{bottom:619.232800pt;}
.y53{bottom:620.566133pt;}
.y16d{bottom:624.358133pt;}
.y151{bottom:625.232800pt;}
.y6e{bottom:628.566133pt;}
.yb3{bottom:629.224800pt;}
.yf5{bottom:629.691467pt;}
.yb{bottom:631.024800pt;}
.yd5{bottom:632.566133pt;}
.y92{bottom:634.832800pt;}
.y2f{bottom:635.899467pt;}
.y52{bottom:637.232800pt;}
.y6d{bottom:645.232800pt;}
.yb2{bottom:645.891467pt;}
.y150{bottom:645.899467pt;}
.yf4{bottom:646.358133pt;}
.y16c{bottom:649.024800pt;}
.yd4{bottom:649.232800pt;}
.ya{bottom:651.024800pt;}
.y91{bottom:651.766133pt;}
.y2e{bottom:652.566133pt;}
.y51{bottom:653.899467pt;}
.y121{bottom:661.899467pt;}
.yb1{bottom:662.558133pt;}
.y14f{bottom:662.566133pt;}
.yf3{bottom:663.024800pt;}
.yd3{bottom:665.899467pt;}
.y90{bottom:668.699467pt;}
.y2d{bottom:669.232800pt;}
.y6c{bottom:669.899467pt;}
.y50{bottom:670.566133pt;}
.y16b{bottom:677.691467pt;}
.y120{bottom:678.566133pt;}
.yb0{bottom:679.224800pt;}
.y14e{bottom:679.232800pt;}
.yf2{bottom:679.691467pt;}
.yd2{bottom:682.566133pt;}
.y8f{bottom:685.632800pt;}
.y2c{bottom:685.899467pt;}
.y4f{bottom:687.232800pt;}
.y16a{bottom:694.358133pt;}
.y11f{bottom:695.232800pt;}
.yaf{bottom:695.891467pt;}
.y14d{bottom:695.899467pt;}
.yf1{bottom:696.358133pt;}
.yd1{bottom:699.232800pt;}
.y2b{bottom:702.566133pt;}
.y4e{bottom:703.899467pt;}
.y11e{bottom:711.899467pt;}
.yae{bottom:712.558133pt;}
.yf0{bottom:713.024800pt;}
.y14c{bottom:716.566133pt;}
.y8e{bottom:719.499467pt;}
.y2a{bottom:720.566133pt;}
.yd0{bottom:723.899467pt;}
.yad{bottom:729.224800pt;}
.yef{bottom:729.691467pt;}
.y5{bottom:732.443467pt;}
.y14b{bottom:733.232800pt;}
.y8d{bottom:736.432800pt;}
.y11d{bottom:736.566133pt;}
.y29{bottom:737.232800pt;}
.y9{bottom:737.691467pt;}
.yac{bottom:745.891467pt;}
.yee{bottom:746.358133pt;}
.y8c{bottom:753.366133pt;}
.y28{bottom:753.899467pt;}
.y8{bottom:754.358133pt;}
.y4{bottom:760.300800pt;}
.yab{bottom:762.558133pt;}
.yed{bottom:763.024800pt;}
.y8b{bottom:770.299467pt;}
.y27{bottom:770.566133pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.yaa{bottom:787.224800pt;}
.y26{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y25{bottom:820.263467pt;}
.hb{height:25.781625pt;}
.hd{height:37.125000pt;}
.h3{height:39.632812pt;}
.h9{height:41.593750pt;}
.hc{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.ha{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x6{left:81.259200pt;}
.x7{left:92.353867pt;}
.x8{left:94.151200pt;}
.xb{left:96.377867pt;}
.xd{left:98.593867pt;}
.xa{left:119.055200pt;}
.x9{left:126.613867pt;}
.xe{left:198.292533pt;}
.xf{left:287.056533pt;}
.x2{left:384.885867pt;}
.x5{left:394.097867pt;}
.x3{left:417.417867pt;}
.xc{left:434.216533pt;}
.x4{left:454.612533pt;}
.x1{left:530.444533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  