
    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_bec4cca7e874d2d1d7914aa9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100000;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_0cd7ecb1d1420adb3973c06f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_3f9e17c582f02bff0976c146.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.176270;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_1b3f01a17177580b0cc8c080.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991211;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_eeb3831060d03c3dc579e8cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009766;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_89199f0bfe29736bf512905f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_937ac9d5b072f7e71f055362.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;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_6dd647b9c9c5450c477eee68.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_e2ab6c5a4550cb8c8830de73.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_68af7cb6917cdfe6fb027404.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_12c58c5df05ee6823b4da469.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-13.896486px;}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-4.877400px;}
.ls1{letter-spacing:-2.310000px;}
.ls1b{letter-spacing:-1.056000px;}
.lsb{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.013200px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.ls2b{letter-spacing:0.006600px;}
.ls10{letter-spacing:0.009000px;}
.lsf{letter-spacing:0.009120px;}
.ls11{letter-spacing:0.009138px;}
.ls12{letter-spacing:0.009180px;}
.ls7{letter-spacing:0.009600px;}
.lse{letter-spacing:0.009900px;}
.ls6{letter-spacing:0.010020px;}
.ls3{letter-spacing:0.010056px;}
.ls5{letter-spacing:0.010080px;}
.ls4{letter-spacing:0.010200px;}
.ls27{letter-spacing:0.012600px;}
.ls17{letter-spacing:0.012900px;}
.ls8{letter-spacing:0.013200px;}
.ls15{letter-spacing:0.198000px;}
.ls2c{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.745800px;}
.ls20{letter-spacing:0.805200px;}
.ls1d{letter-spacing:0.818400px;}
.ls1e{letter-spacing:0.825000px;}
.ls18{letter-spacing:1.227600px;}
.ls22{letter-spacing:2.356200px;}
.ls26{letter-spacing:2.557200px;}
.ls24{letter-spacing:2.557620px;}
.ls25{letter-spacing:2.557800px;}
.ls16{letter-spacing:3.729000px;}
.lsc{letter-spacing:5.154600px;}
.ls28{letter-spacing:5.973000px;}
.ls14{letter-spacing:7.979400px;}
.ls23{letter-spacing:8.296800px;}
.ls1a{letter-spacing:14.150400px;}
.ls21{letter-spacing:14.374860px;}
.ls13{letter-spacing:15.925800px;}
.ls2a{letter-spacing:21.231600px;}
.lsd{letter-spacing:28.974000px;}
.ls1f{letter-spacing:33.421800px;}
.ls19{letter-spacing:33.632400px;}
.ls2{letter-spacing:201.084000px;}
.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;}
}
.ws0{word-spacing:-23.400000px;}
.wsb{word-spacing:-18.856200px;}
.ws9{word-spacing:-17.727600px;}
.ws6{word-spacing:-16.513200px;}
.wsc{word-spacing:-16.506600px;}
.ws1{word-spacing:-16.500000px;}
.ws5{word-spacing:-16.486800px;}
.ws7{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.944000px;}
.wsa{word-spacing:-11.622600px;}
.ws4{word-spacing:-0.079200px;}
.ws3{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
._1a{margin-left:-28.976160px;}
._1e{margin-left:-16.123920px;}
._1c{margin-left:-7.335000px;}
._7{margin-left:-5.391840px;}
._2{margin-left:-4.176000px;}
._0{margin-left:-2.736000px;}
._1{margin-left:-1.440000px;}
._6{width:1.338960px;}
._3{width:2.664000px;}
._4{width:3.672000px;}
._5{width:4.709400px;}
._9{width:5.962800px;}
._a{width:7.142400px;}
._8{width:8.540400px;}
._f{width:10.269600px;}
._10{width:11.317800px;}
._b{width:12.376200px;}
._c{width:13.745400px;}
._12{width:14.924400px;}
._1f{width:16.452720px;}
._17{width:17.753640px;}
._18{width:18.969120px;}
._14{width:19.971600px;}
._e{width:21.605400px;}
._d{width:22.665600px;}
._11{width:24.631200px;}
._1d{width:25.845600px;}
._13{width:27.086400px;}
._15{width:28.109400px;}
._1b{width:29.663280px;}
._21{width:30.972840px;}
._16{width:32.808600px;}
._19{width:34.052760px;}
._20{width:35.137200px;}
._22{width:36.235200px;}
.fc5{color:rgb(0,0,238);}
.fc4{color:rgb(33,37,41);}
.fc2{color:rgb(46,52,54);}
.fc1{color:rgb(0,29,53);}
.fc3{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:40.000002px;}
.fs3{font-size:44.000004px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yca{bottom:9.114075px;}
.y1b{bottom:11.550030px;}
.y39{bottom:12.496575px;}
.y11e{bottom:13.576170px;}
.y9a{bottom:15.320070px;}
.y68{bottom:18.035520px;}
.y6c{bottom:21.509655px;}
.y6b{bottom:21.509656px;}
.y69{bottom:21.509670px;}
.yf7{bottom:22.580565px;}
.yc9{bottom:30.114090px;}
.y38{bottom:34.036425px;}
.y11d{bottom:34.576125px;}
.y99{bottom:36.859875px;}
.y19{bottom:38.341845px;}
.yf6{bottom:42.080625px;}
.yc8{bottom:51.114090px;}
.y37{bottom:55.576125px;}
.y1a{bottom:56.354505px;}
.y98{bottom:57.859875px;}
.y18{bottom:59.341845px;}
.yf5{bottom:61.580625px;}
.y139{bottom:64.435200px;}
.yc7{bottom:72.114090px;}
.y36{bottom:76.576125px;}
.y97{bottom:78.859875px;}
.y17{bottom:80.341845px;}
.yf4{bottom:81.080625px;}
.y138{bottom:85.435200px;}
.y66{bottom:89.196195px;}
.yc6{bottom:93.114090px;}
.y35{bottom:97.576125px;}
.y96{bottom:100.399725px;}
.yf3{bottom:100.580625px;}
.y16{bottom:101.341845px;}
.y137{bottom:106.435200px;}
.y65{bottom:110.196195px;}
.y6a{bottom:113.683680px;}
.yc5{bottom:114.114090px;}
.y34{bottom:118.160175px;}
.y11c{bottom:118.576125px;}
.yf2{bottom:120.080625px;}
.y95{bottom:121.939425px;}
.y15{bottom:122.341845px;}
.y9b{bottom:125.078160px;}
.y11f{bottom:125.738070px;}
.y1c{bottom:127.275975px;}
.y136{bottom:127.435200px;}
.y1{bottom:127.559055px;}
.y64{bottom:131.196195px;}
.y67{bottom:134.683680px;}
.yc4{bottom:135.114090px;}
.y33{bottom:137.660175px;}
.y11b{bottom:139.576125px;}
.y94{bottom:142.939425px;}
.y14{bottom:143.341845px;}
.y135{bottom:148.435200px;}
.y63{bottom:152.735895px;}
.yc3{bottom:156.188790px;}
.y32{bottom:157.160175px;}
.yf1{bottom:159.496575px;}
.y13{bottom:164.341845px;}
.y93{bottom:164.479275px;}
.y134{bottom:169.435200px;}
.y62{bottom:174.275745px;}
.yc2{bottom:175.688790px;}
.y31{bottom:176.660175px;}
.yf0{bottom:180.496575px;}
.y11a{bottom:181.576125px;}
.y92{bottom:186.018975px;}
.y133{bottom:190.435200px;}
.yc1{bottom:195.188790px;}
.y61{bottom:195.275745px;}
.y30{bottom:196.160175px;}
.yef{bottom:201.496575px;}
.y12{bottom:206.341845px;}
.y91{bottom:207.018975px;}
.yc0{bottom:214.688790px;}
.y2f{bottom:215.660175px;}
.y60{bottom:216.275745px;}
.yee{bottom:222.496575px;}
.y11{bottom:227.341845px;}
.y90{bottom:228.018975px;}
.ybf{bottom:234.188790px;}
.y2e{bottom:235.160175px;}
.y5f{bottom:237.275745px;}
.yed{bottom:243.496575px;}
.y10{bottom:248.341845px;}
.y8f{bottom:249.018975px;}
.ybe{bottom:254.179440px;}
.y2d{bottom:254.660175px;}
.y5e{bottom:258.815595px;}
.yec{bottom:264.496575px;}
.y119{bottom:265.576125px;}
.yf{bottom:269.341845px;}
.y8e{bottom:270.558825px;}
.y5d{bottom:280.355295px;}
.yeb{bottom:285.496575px;}
.y118{bottom:286.576125px;}
.y8d{bottom:292.098675px;}
.ybd{bottom:293.595540px;}
.y2c{bottom:294.076125px;}
.y5c{bottom:301.355295px;}
.yea{bottom:306.496575px;}
.y117{bottom:307.576125px;}
.ye{bottom:311.341845px;}
.y8c{bottom:313.098675px;}
.ybc{bottom:314.595540px;}
.y2b{bottom:315.076125px;}
.y5b{bottom:322.895145px;}
.ye9{bottom:327.496575px;}
.y116{bottom:328.576125px;}
.yd{bottom:332.341845px;}
.y8b{bottom:334.098675px;}
.y2a{bottom:336.076125px;}
.ybb{bottom:336.135240px;}
.y5a{bottom:343.895145px;}
.ye8{bottom:348.496575px;}
.y115{bottom:349.576125px;}
.yc{bottom:353.341845px;}
.y8a{bottom:355.638375px;}
.y29{bottom:357.076125px;}
.yba{bottom:357.675090px;}
.y58{bottom:364.479195px;}
.y59{bottom:367.953195px;}
.ye7{bottom:369.496575px;}
.y114{bottom:370.576125px;}
.yb{bottom:374.341845px;}
.y89{bottom:377.178225px;}
.y28{bottom:378.076125px;}
.yb9{bottom:379.214940px;}
.y57{bottom:383.979195px;}
.ye6{bottom:390.496575px;}
.y113{bottom:391.576125px;}
.ya{bottom:395.341845px;}
.y88{bottom:398.178225px;}
.y27{bottom:399.076125px;}
.yb8{bottom:400.214940px;}
.y56{bottom:403.479195px;}
.ye5{bottom:411.080625px;}
.y112{bottom:412.576125px;}
.y9{bottom:416.341845px;}
.y87{bottom:419.178225px;}
.y26{bottom:420.076125px;}
.yb7{bottom:421.214940px;}
.y55{bottom:422.979195px;}
.ye4{bottom:430.580625px;}
.y111{bottom:433.160175px;}
.y8{bottom:437.341845px;}
.y86{bottom:440.718075px;}
.y25{bottom:441.076125px;}
.yb6{bottom:442.214940px;}
.y54{bottom:442.479195px;}
.ye3{bottom:450.080625px;}
.y110{bottom:452.660175px;}
.y7{bottom:458.341845px;}
.y24{bottom:462.076125px;}
.y85{bottom:462.257775px;}
.yb5{bottom:463.214940px;}
.ye2{bottom:469.580625px;}
.y10f{bottom:472.160175px;}
.y53{bottom:482.434995px;}
.y23{bottom:483.076125px;}
.y84{bottom:483.257775px;}
.yb4{bottom:484.214940px;}
.ye1{bottom:489.080625px;}
.y10e{bottom:491.660175px;}
.y52{bottom:503.434995px;}
.y22{bottom:504.076125px;}
.y83{bottom:504.257775px;}
.yb3{bottom:505.214940px;}
.ye0{bottom:508.580625px;}
.y10d{bottom:511.160175px;}
.y51{bottom:524.434995px;}
.y82{bottom:525.257775px;}
.yb2{bottom:526.915890px;}
.ydf{bottom:528.080625px;}
.y10c{bottom:530.660175px;}
.y50{bottom:545.434995px;}
.y81{bottom:546.257775px;}
.yde{bottom:547.580625px;}
.yb1{bottom:548.455590px;}
.y10b{bottom:550.160175px;}
.y4f{bottom:566.434995px;}
.ydd{bottom:567.080625px;}
.y80{bottom:567.257775px;}
.y10a{bottom:569.660175px;}
.yb0{bottom:569.995440px;}
.y6{bottom:582.841845px;}
.ydc{bottom:586.580625px;}
.y4e{bottom:587.434995px;}
.y7f{bottom:588.257775px;}
.y109{bottom:589.160175px;}
.yaf{bottom:590.995440px;}
.y5{bottom:603.841845px;}
.ydb{bottom:606.080625px;}
.y4d{bottom:608.434995px;}
.y7e{bottom:609.257775px;}
.yae{bottom:611.995440px;}
.y21{bottom:614.660175px;}
.y4{bottom:624.841845px;}
.yda{bottom:625.580625px;}
.y108{bottom:628.576125px;}
.y4c{bottom:629.974695px;}
.y7d{bottom:630.257775px;}
.yad{bottom:632.995440px;}
.y20{bottom:634.160175px;}
.y131{bottom:636.114030px;}
.yd9{bottom:645.080625px;}
.y107{bottom:649.576125px;}
.y4b{bottom:650.974695px;}
.y7c{bottom:651.257775px;}
.y1f{bottom:653.660175px;}
.yac{bottom:654.535140px;}
.y130{bottom:657.114030px;}
.y106{bottom:670.576125px;}
.y7b{bottom:672.257775px;}
.y4a{bottom:672.514545px;}
.y1e{bottom:673.160175px;}
.yab{bottom:675.535140px;}
.y12f{bottom:678.114030px;}
.yd8{bottom:685.036425px;}
.y105{bottom:691.576125px;}
.y7a{bottom:693.257775px;}
.y49{bottom:693.514545px;}
.yaa{bottom:697.074990px;}
.y12e{bottom:699.114030px;}
.yd7{bottom:706.576125px;}
.y104{bottom:712.160175px;}
.y79{bottom:714.257775px;}
.y48{bottom:714.514545px;}
.ya9{bottom:718.074990px;}
.y12d{bottom:720.114030px;}
.yd6{bottom:727.576125px;}
.y103{bottom:731.660175px;}
.y47{bottom:735.514545px;}
.y78{bottom:735.797625px;}
.ya8{bottom:739.074990px;}
.y12c{bottom:741.114030px;}
.yd5{bottom:748.576125px;}
.y102{bottom:751.160175px;}
.y3{bottom:754.365795px;}
.y46{bottom:756.514545px;}
.y77{bottom:757.337325px;}
.ya7{bottom:760.074990px;}
.y12b{bottom:762.114030px;}
.yd4{bottom:769.576125px;}
.y101{bottom:770.660175px;}
.y2{bottom:775.365795px;}
.y45{bottom:777.514545px;}
.y76{bottom:778.877175px;}
.ya6{bottom:781.614840px;}
.y12a{bottom:783.114030px;}
.yd3{bottom:790.160175px;}
.y44{bottom:799.054245px;}
.y75{bottom:800.417025px;}
.ya5{bottom:803.154540px;}
.y129{bottom:804.114030px;}
.yd2{bottom:809.660175px;}
.y43{bottom:820.594095px;}
.y74{bottom:821.417025px;}
.ya4{bottom:824.154540px;}
.y128{bottom:825.114030px;}
.yd1{bottom:829.160175px;}
.y100{bottom:829.576125px;}
.y42{bottom:842.133945px;}
.y73{bottom:842.956725px;}
.ya3{bottom:845.694390px;}
.y127{bottom:846.114030px;}
.yd0{bottom:848.660175px;}
.yff{bottom:850.576125px;}
.y40{bottom:863.673645px;}
.y72{bottom:863.956725px;}
.ya2{bottom:866.694390px;}
.y126{bottom:867.114030px;}
.y41{bottom:867.495195px;}
.y132{bottom:867.666900px;}
.ycf{bottom:868.160175px;}
.yfe{bottom:871.576125px;}
.y71{bottom:884.956725px;}
.y3f{bottom:885.213495px;}
.ya1{bottom:887.694390px;}
.y125{bottom:888.114030px;}
.yfd{bottom:892.576125px;}
.y70{bottom:905.956725px;}
.y3e{bottom:906.213495px;}
.yce{bottom:907.576125px;}
.y124{bottom:909.114030px;}
.ya0{bottom:909.234240px;}
.yfc{bottom:913.576125px;}
.y6f{bottom:927.496575px;}
.y3d{bottom:927.753345px;}
.ycd{bottom:928.576125px;}
.y123{bottom:930.114030px;}
.y9f{bottom:930.234240px;}
.yfb{bottom:934.160175px;}
.y6e{bottom:949.036425px;}
.y3c{bottom:949.293045px;}
.ycc{bottom:949.576125px;}
.y122{bottom:951.114030px;}
.y9e{bottom:951.773940px;}
.yfa{bottom:953.660175px;}
.y6d{bottom:970.036425px;}
.y3b{bottom:970.293045px;}
.ycb{bottom:970.576125px;}
.y121{bottom:972.114030px;}
.y9d{bottom:972.773940px;}
.yf9{bottom:973.160175px;}
.y3a{bottom:991.293045px;}
.y1d{bottom:991.576125px;}
.yf8{bottom:992.660175px;}
.y120{bottom:993.114030px;}
.y9c{bottom:993.773940px;}
.h7{height:27.750015px;}
.hd{height:35.957033px;}
.he{height:37.500735px;}
.hc{height:39.552738px;}
.hf{height:40.039061px;}
.ha{height:43.974609px;}
.h5{height:43.989258px;}
.h13{height:48.243164px;}
.h6{height:48.372070px;}
.hb{height:53.935547px;}
.h8{height:56.100000px;}
.h4{height:59.329102px;}
.h3{height:61.200000px;}
.h15{height:265.359000px;}
.h12{height:1012.125300px;}
.h2{height:1012.254750px;}
.h9{height:1012.537950px;}
.h10{height:1012.878300px;}
.h14{height:1014.075750px;}
.h11{height:1014.735750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:516.366000px;}
.w11{width:518.857500px;}
.we{width:518.956500px;}
.wb{width:519.237000px;}
.wa{width:519.303000px;}
.w10{width:519.847500px;}
.wd{width:519.913500px;}
.w3{width:520.012500px;}
.w5{width:520.161000px;}
.w12{width:548.262600px;}
.w7{width:561.013350px;}
.wf{width:561.838350px;}
.w9{width:562.905900px;}
.w6{width:572.993700px;}
.wc{width:573.001800px;}
.w2{width:573.588300px;}
.w4{width:577.008450px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:5.035350px;}
.xa{left:6.745350px;}
.x13{left:9.125299px;}
.x15{left:26.331600px;}
.x2{left:37.750650px;}
.x11{left:59.071650px;}
.xf{left:60.745350px;}
.x3{left:67.936650px;}
.x9{left:163.333350px;}
.x1{left:165.043350px;}
.x16{left:172.328700px;}
.x8{left:186.453750px;}
.x14{left:188.277000px;}
.xc{left:273.006450px;}
.xb{left:320.723850px;}
.x5{left:371.053050px;}
.xd{left:398.682750px;}
.xe{left:431.026500px;}
.x12{left:440.707500px;}
.x4{left:457.541100px;}
.x6{left:479.390700px;}
.x10{left:552.334200px;}
@media print{
.v1{vertical-align:-12.352432pt;}
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-4.335467pt;}
.ls1{letter-spacing:-2.053333pt;}
.ls1b{letter-spacing:-0.938667pt;}
.lsb{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.011733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.ls2b{letter-spacing:0.005867pt;}
.ls10{letter-spacing:0.008000pt;}
.lsf{letter-spacing:0.008107pt;}
.ls11{letter-spacing:0.008123pt;}
.ls12{letter-spacing:0.008160pt;}
.ls7{letter-spacing:0.008533pt;}
.lse{letter-spacing:0.008800pt;}
.ls6{letter-spacing:0.008907pt;}
.ls3{letter-spacing:0.008939pt;}
.ls5{letter-spacing:0.008960pt;}
.ls4{letter-spacing:0.009067pt;}
.ls27{letter-spacing:0.011200pt;}
.ls17{letter-spacing:0.011467pt;}
.ls8{letter-spacing:0.011733pt;}
.ls15{letter-spacing:0.176000pt;}
.ls2c{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.662933pt;}
.ls20{letter-spacing:0.715733pt;}
.ls1d{letter-spacing:0.727467pt;}
.ls1e{letter-spacing:0.733333pt;}
.ls18{letter-spacing:1.091200pt;}
.ls22{letter-spacing:2.094400pt;}
.ls26{letter-spacing:2.273067pt;}
.ls24{letter-spacing:2.273440pt;}
.ls25{letter-spacing:2.273600pt;}
.ls16{letter-spacing:3.314667pt;}
.lsc{letter-spacing:4.581867pt;}
.ls28{letter-spacing:5.309333pt;}
.ls14{letter-spacing:7.092800pt;}
.ls23{letter-spacing:7.374933pt;}
.ls1a{letter-spacing:12.578133pt;}
.ls21{letter-spacing:12.777653pt;}
.ls13{letter-spacing:14.156267pt;}
.ls2a{letter-spacing:18.872533pt;}
.lsd{letter-spacing:25.754667pt;}
.ls1f{letter-spacing:29.708267pt;}
.ls19{letter-spacing:29.895467pt;}
.ls2{letter-spacing:178.741333pt;}
.ws0{word-spacing:-20.800000pt;}
.wsb{word-spacing:-16.761067pt;}
.ws9{word-spacing:-15.757867pt;}
.ws6{word-spacing:-14.678400pt;}
.wsc{word-spacing:-14.672533pt;}
.ws1{word-spacing:-14.666667pt;}
.ws5{word-spacing:-14.654933pt;}
.ws7{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.394667pt;}
.wsa{word-spacing:-10.331200pt;}
.ws4{word-spacing:-0.070400pt;}
.ws3{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
._1a{margin-left:-25.756587pt;}
._1e{margin-left:-14.332373pt;}
._1c{margin-left:-6.520000pt;}
._7{margin-left:-4.792747pt;}
._2{margin-left:-3.712000pt;}
._0{margin-left:-2.432000pt;}
._1{margin-left:-1.280000pt;}
._6{width:1.190187pt;}
._3{width:2.368000pt;}
._4{width:3.264000pt;}
._5{width:4.186133pt;}
._9{width:5.300267pt;}
._a{width:6.348800pt;}
._8{width:7.591467pt;}
._f{width:9.128533pt;}
._10{width:10.060267pt;}
._b{width:11.001067pt;}
._c{width:12.218133pt;}
._12{width:13.266133pt;}
._1f{width:14.624640pt;}
._17{width:15.781013pt;}
._18{width:16.861440pt;}
._14{width:17.752533pt;}
._e{width:19.204800pt;}
._d{width:20.147200pt;}
._11{width:21.894400pt;}
._1d{width:22.973867pt;}
._13{width:24.076800pt;}
._15{width:24.986133pt;}
._1b{width:26.367360pt;}
._21{width:27.531413pt;}
._16{width:29.163200pt;}
._19{width:30.269120pt;}
._20{width:31.233067pt;}
._22{width:32.209067pt;}
.fs4{font-size:35.555557pt;}
.fs3{font-size:39.111115pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:8.101400pt;}
.y1b{bottom:10.266693pt;}
.y39{bottom:11.108067pt;}
.y11e{bottom:12.067707pt;}
.y9a{bottom:13.617840pt;}
.y68{bottom:16.031573pt;}
.y6c{bottom:19.119693pt;}
.y6b{bottom:19.119695pt;}
.y69{bottom:19.119707pt;}
.yf7{bottom:20.071613pt;}
.yc9{bottom:26.768080pt;}
.y38{bottom:30.254600pt;}
.y11d{bottom:30.734333pt;}
.y99{bottom:32.764333pt;}
.y19{bottom:34.081640pt;}
.yf6{bottom:37.405000pt;}
.yc8{bottom:45.434747pt;}
.y37{bottom:49.401000pt;}
.y1a{bottom:50.092893pt;}
.y98{bottom:51.431000pt;}
.y18{bottom:52.748307pt;}
.yf5{bottom:54.738333pt;}
.y139{bottom:57.275733pt;}
.yc7{bottom:64.101413pt;}
.y36{bottom:68.067667pt;}
.y97{bottom:70.097667pt;}
.y17{bottom:71.414973pt;}
.yf4{bottom:72.071667pt;}
.y138{bottom:75.942400pt;}
.y66{bottom:79.285507pt;}
.yc6{bottom:82.768080pt;}
.y35{bottom:86.734333pt;}
.y96{bottom:89.244200pt;}
.yf3{bottom:89.405000pt;}
.y16{bottom:90.081640pt;}
.y137{bottom:94.609067pt;}
.y65{bottom:97.952173pt;}
.y6a{bottom:101.052160pt;}
.yc5{bottom:101.434747pt;}
.y34{bottom:105.031267pt;}
.y11c{bottom:105.401000pt;}
.yf2{bottom:106.738333pt;}
.y95{bottom:108.390600pt;}
.y15{bottom:108.748307pt;}
.y9b{bottom:111.180587pt;}
.y11f{bottom:111.767173pt;}
.y1c{bottom:113.134200pt;}
.y136{bottom:113.275733pt;}
.y1{bottom:113.385827pt;}
.y64{bottom:116.618840pt;}
.y67{bottom:119.718827pt;}
.yc4{bottom:120.101413pt;}
.y33{bottom:122.364600pt;}
.y11b{bottom:124.067667pt;}
.y94{bottom:127.057267pt;}
.y14{bottom:127.414973pt;}
.y135{bottom:131.942400pt;}
.y63{bottom:135.765240pt;}
.yc3{bottom:138.834480pt;}
.y32{bottom:139.697933pt;}
.yf1{bottom:141.774733pt;}
.y13{bottom:146.081640pt;}
.y93{bottom:146.203800pt;}
.y134{bottom:150.609067pt;}
.y62{bottom:154.911773pt;}
.yc2{bottom:156.167813pt;}
.y31{bottom:157.031267pt;}
.yf0{bottom:160.441400pt;}
.y11a{bottom:161.401000pt;}
.y92{bottom:165.350200pt;}
.y133{bottom:169.275733pt;}
.yc1{bottom:173.501147pt;}
.y61{bottom:173.578440pt;}
.y30{bottom:174.364600pt;}
.yef{bottom:179.108067pt;}
.y12{bottom:183.414973pt;}
.y91{bottom:184.016867pt;}
.yc0{bottom:190.834480pt;}
.y2f{bottom:191.697933pt;}
.y60{bottom:192.245107pt;}
.yee{bottom:197.774733pt;}
.y11{bottom:202.081640pt;}
.y90{bottom:202.683533pt;}
.ybf{bottom:208.167813pt;}
.y2e{bottom:209.031267pt;}
.y5f{bottom:210.911773pt;}
.yed{bottom:216.441400pt;}
.y10{bottom:220.748307pt;}
.y8f{bottom:221.350200pt;}
.ybe{bottom:225.937280pt;}
.y2d{bottom:226.364600pt;}
.y5e{bottom:230.058307pt;}
.yec{bottom:235.108067pt;}
.y119{bottom:236.067667pt;}
.yf{bottom:239.414973pt;}
.y8e{bottom:240.496733pt;}
.y5d{bottom:249.204707pt;}
.yeb{bottom:253.774733pt;}
.y118{bottom:254.734333pt;}
.y8d{bottom:259.643267pt;}
.ybd{bottom:260.973813pt;}
.y2c{bottom:261.401000pt;}
.y5c{bottom:267.871373pt;}
.yea{bottom:272.441400pt;}
.y117{bottom:273.401000pt;}
.ye{bottom:276.748307pt;}
.y8c{bottom:278.309933pt;}
.ybc{bottom:279.640480pt;}
.y2b{bottom:280.067667pt;}
.y5b{bottom:287.017907pt;}
.ye9{bottom:291.108067pt;}
.y116{bottom:292.067667pt;}
.yd{bottom:295.414973pt;}
.y8b{bottom:296.976600pt;}
.y2a{bottom:298.734333pt;}
.ybb{bottom:298.786880pt;}
.y5a{bottom:305.684573pt;}
.ye8{bottom:309.774733pt;}
.y115{bottom:310.734333pt;}
.yc{bottom:314.081640pt;}
.y8a{bottom:316.123000pt;}
.y29{bottom:317.401000pt;}
.yba{bottom:317.933413pt;}
.y58{bottom:323.981507pt;}
.y59{bottom:327.069507pt;}
.ye7{bottom:328.441400pt;}
.y114{bottom:329.401000pt;}
.yb{bottom:332.748307pt;}
.y89{bottom:335.269533pt;}
.y28{bottom:336.067667pt;}
.yb9{bottom:337.079947pt;}
.y57{bottom:341.314840pt;}
.ye6{bottom:347.108067pt;}
.y113{bottom:348.067667pt;}
.ya{bottom:351.414973pt;}
.y88{bottom:353.936200pt;}
.y27{bottom:354.734333pt;}
.yb8{bottom:355.746613pt;}
.y56{bottom:358.648173pt;}
.ye5{bottom:365.405000pt;}
.y112{bottom:366.734333pt;}
.y9{bottom:370.081640pt;}
.y87{bottom:372.602867pt;}
.y26{bottom:373.401000pt;}
.yb7{bottom:374.413280pt;}
.y55{bottom:375.981507pt;}
.ye4{bottom:382.738333pt;}
.y111{bottom:385.031267pt;}
.y8{bottom:388.748307pt;}
.y86{bottom:391.749400pt;}
.y25{bottom:392.067667pt;}
.yb6{bottom:393.079947pt;}
.y54{bottom:393.314840pt;}
.ye3{bottom:400.071667pt;}
.y110{bottom:402.364600pt;}
.y7{bottom:407.414973pt;}
.y24{bottom:410.734333pt;}
.y85{bottom:410.895800pt;}
.yb5{bottom:411.746613pt;}
.ye2{bottom:417.405000pt;}
.y10f{bottom:419.697933pt;}
.y53{bottom:428.831107pt;}
.y23{bottom:429.401000pt;}
.y84{bottom:429.562467pt;}
.yb4{bottom:430.413280pt;}
.ye1{bottom:434.738333pt;}
.y10e{bottom:437.031267pt;}
.y52{bottom:447.497773pt;}
.y22{bottom:448.067667pt;}
.y83{bottom:448.229133pt;}
.yb3{bottom:449.079947pt;}
.ye0{bottom:452.071667pt;}
.y10d{bottom:454.364600pt;}
.y51{bottom:466.164440pt;}
.y82{bottom:466.895800pt;}
.yb2{bottom:468.369680pt;}
.ydf{bottom:469.405000pt;}
.y10c{bottom:471.697933pt;}
.y50{bottom:484.831107pt;}
.y81{bottom:485.562467pt;}
.yde{bottom:486.738333pt;}
.yb1{bottom:487.516080pt;}
.y10b{bottom:489.031267pt;}
.y4f{bottom:503.497773pt;}
.ydd{bottom:504.071667pt;}
.y80{bottom:504.229133pt;}
.y10a{bottom:506.364600pt;}
.yb0{bottom:506.662613pt;}
.y6{bottom:518.081640pt;}
.ydc{bottom:521.405000pt;}
.y4e{bottom:522.164440pt;}
.y7f{bottom:522.895800pt;}
.y109{bottom:523.697933pt;}
.yaf{bottom:525.329280pt;}
.y5{bottom:536.748307pt;}
.ydb{bottom:538.738333pt;}
.y4d{bottom:540.831107pt;}
.y7e{bottom:541.562467pt;}
.yae{bottom:543.995947pt;}
.y21{bottom:546.364600pt;}
.y4{bottom:555.414973pt;}
.yda{bottom:556.071667pt;}
.y108{bottom:558.734333pt;}
.y4c{bottom:559.977507pt;}
.y7d{bottom:560.229133pt;}
.yad{bottom:562.662613pt;}
.y20{bottom:563.697933pt;}
.y131{bottom:565.434693pt;}
.yd9{bottom:573.405000pt;}
.y107{bottom:577.401000pt;}
.y4b{bottom:578.644173pt;}
.y7c{bottom:578.895800pt;}
.y1f{bottom:581.031267pt;}
.yac{bottom:581.809013pt;}
.y130{bottom:584.101360pt;}
.y106{bottom:596.067667pt;}
.y7b{bottom:597.562467pt;}
.y4a{bottom:597.790707pt;}
.y1e{bottom:598.364600pt;}
.yab{bottom:600.475680pt;}
.y12f{bottom:602.768027pt;}
.yd8{bottom:608.921267pt;}
.y105{bottom:614.734333pt;}
.y7a{bottom:616.229133pt;}
.y49{bottom:616.457373pt;}
.yaa{bottom:619.622213pt;}
.y12e{bottom:621.434693pt;}
.yd7{bottom:628.067667pt;}
.y104{bottom:633.031267pt;}
.y79{bottom:634.895800pt;}
.y48{bottom:635.124040pt;}
.ya9{bottom:638.288880pt;}
.y12d{bottom:640.101360pt;}
.yd6{bottom:646.734333pt;}
.y103{bottom:650.364600pt;}
.y47{bottom:653.790707pt;}
.y78{bottom:654.042333pt;}
.ya8{bottom:656.955547pt;}
.y12c{bottom:658.768027pt;}
.yd5{bottom:665.401000pt;}
.y102{bottom:667.697933pt;}
.y3{bottom:670.547373pt;}
.y46{bottom:672.457373pt;}
.y77{bottom:673.188733pt;}
.ya7{bottom:675.622213pt;}
.y12b{bottom:677.434693pt;}
.yd4{bottom:684.067667pt;}
.y101{bottom:685.031267pt;}
.y2{bottom:689.214040pt;}
.y45{bottom:691.124040pt;}
.y76{bottom:692.335267pt;}
.ya6{bottom:694.768747pt;}
.y12a{bottom:696.101360pt;}
.yd3{bottom:702.364600pt;}
.y44{bottom:710.270440pt;}
.y75{bottom:711.481800pt;}
.ya5{bottom:713.915147pt;}
.y129{bottom:714.768027pt;}
.yd2{bottom:719.697933pt;}
.y43{bottom:729.416973pt;}
.y74{bottom:730.148467pt;}
.ya4{bottom:732.581813pt;}
.y128{bottom:733.434693pt;}
.yd1{bottom:737.031267pt;}
.y100{bottom:737.401000pt;}
.y42{bottom:748.563507pt;}
.y73{bottom:749.294867pt;}
.ya3{bottom:751.728347pt;}
.y127{bottom:752.101360pt;}
.yd0{bottom:754.364600pt;}
.yff{bottom:756.067667pt;}
.y40{bottom:767.709907pt;}
.y72{bottom:767.961533pt;}
.ya2{bottom:770.395013pt;}
.y126{bottom:770.768027pt;}
.y41{bottom:771.106840pt;}
.y132{bottom:771.259467pt;}
.ycf{bottom:771.697933pt;}
.yfe{bottom:774.734333pt;}
.y71{bottom:786.628200pt;}
.y3f{bottom:786.856440pt;}
.ya1{bottom:789.061680pt;}
.y125{bottom:789.434693pt;}
.yfd{bottom:793.401000pt;}
.y70{bottom:805.294867pt;}
.y3e{bottom:805.523107pt;}
.yce{bottom:806.734333pt;}
.y124{bottom:808.101360pt;}
.ya0{bottom:808.208213pt;}
.yfc{bottom:812.067667pt;}
.y6f{bottom:824.441400pt;}
.y3d{bottom:824.669640pt;}
.ycd{bottom:825.401000pt;}
.y123{bottom:826.768027pt;}
.y9f{bottom:826.874880pt;}
.yfb{bottom:830.364600pt;}
.y6e{bottom:843.587933pt;}
.y3c{bottom:843.816040pt;}
.ycc{bottom:844.067667pt;}
.y122{bottom:845.434693pt;}
.y9e{bottom:846.021280pt;}
.yfa{bottom:847.697933pt;}
.y6d{bottom:862.254600pt;}
.y3b{bottom:862.482707pt;}
.ycb{bottom:862.734333pt;}
.y121{bottom:864.101360pt;}
.y9d{bottom:864.687947pt;}
.yf9{bottom:865.031267pt;}
.y3a{bottom:881.149373pt;}
.y1d{bottom:881.401000pt;}
.yf8{bottom:882.364600pt;}
.y120{bottom:882.768027pt;}
.y9c{bottom:883.354613pt;}
.h7{height:24.666680pt;}
.hd{height:31.961807pt;}
.he{height:33.333987pt;}
.hc{height:35.157989pt;}
.hf{height:35.590276pt;}
.ha{height:39.088542pt;}
.h5{height:39.101562pt;}
.h13{height:42.882812pt;}
.h6{height:42.997396pt;}
.hb{height:47.942708pt;}
.h8{height:49.866667pt;}
.h4{height:52.736979pt;}
.h3{height:54.400000pt;}
.h15{height:235.874667pt;}
.h12{height:899.666933pt;}
.h2{height:899.782000pt;}
.h9{height:900.033733pt;}
.h10{height:900.336267pt;}
.h14{height:901.400667pt;}
.h11{height:901.987333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:458.992000pt;}
.w11{width:461.206667pt;}
.we{width:461.294667pt;}
.wb{width:461.544000pt;}
.wa{width:461.602667pt;}
.w10{width:462.086667pt;}
.wd{width:462.145333pt;}
.w3{width:462.233333pt;}
.w5{width:462.365333pt;}
.w12{width:487.344533pt;}
.w7{width:498.678533pt;}
.wf{width:499.411867pt;}
.w9{width:500.360800pt;}
.w6{width:509.327733pt;}
.wc{width:509.334933pt;}
.w2{width:509.856267pt;}
.w4{width:512.896400pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:4.475867pt;}
.xa{left:5.995867pt;}
.x13{left:8.111377pt;}
.x15{left:23.405867pt;}
.x2{left:33.556133pt;}
.x11{left:52.508133pt;}
.xf{left:53.995867pt;}
.x3{left:60.388133pt;}
.x9{left:145.185200pt;}
.x1{left:146.705200pt;}
.x16{left:153.181067pt;}
.x8{left:165.736667pt;}
.x14{left:167.357333pt;}
.xc{left:242.672400pt;}
.xb{left:285.087867pt;}
.x5{left:329.824933pt;}
.xd{left:354.384667pt;}
.xe{left:383.134667pt;}
.x12{left:391.740000pt;}
.x4{left:406.703200pt;}
.x6{left:426.125067pt;}
.x10{left:490.963733pt;}
}




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