
    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_8282ed9baf5410bed490a5bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_15ea9795dd72a70b644addae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_a2ecdca222db2f0cbd8f2d08.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e066c004514d0612e2e30a34.woff2')format("woff");}.ff4{font-family:ff4;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360600px;}
.v1{vertical-align:33.120000px;}
.ls3{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.242064px;}
.ls10{letter-spacing:0.253872px;}
.ls6{letter-spacing:0.299940px;}
.ls11{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.318816px;}
.ls8{letter-spacing:0.478224px;}
.ls9{letter-spacing:0.516840px;}
.ls14{letter-spacing:0.524880px;}
.lsd{letter-spacing:0.543168px;}
.lse{letter-spacing:0.578592px;}
.ls5{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.602640px;}
.lsb{letter-spacing:0.673920px;}
.lsc{letter-spacing:0.702576px;}
.ls12{letter-spacing:0.725760px;}
.ls1{letter-spacing:4.869000px;}
.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;}
}
.ws2{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.985600px;}
.ws4{word-spacing:-15.462576px;}
.ws5{word-spacing:-15.238224px;}
.ws6{word-spacing:-15.013872px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-1.008000px;}
._5{width:1.584000px;}
._6{width:3.492000px;}
._4{width:5.378400px;}
._1{width:7.207200px;}
._8{width:8.233080px;}
._f{width:9.234120px;}
._11{width:10.244640px;}
._7{width:11.296800px;}
._a{width:12.957420px;}
._3{width:14.241600px;}
._c{width:15.753600px;}
._d{width:16.891200px;}
._14{width:19.475580px;}
._13{width:20.851980px;}
._9{width:22.492800px;}
._17{width:23.839200px;}
._18{width:25.509600px;}
._b{width:26.546400px;}
._12{width:27.979200px;}
._10{width:29.517660px;}
._15{width:30.777480px;}
._19{width:31.991700px;}
._2{width:33.127200px;}
._1a{width:34.200000px;}
._16{width:43.963200px;}
._1b{width:47.685600px;}
._0{width:64.648800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:47.520000px;}
.fs3{font-size:59.040000px;}
.fs1{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yef{bottom:3.240000px;}
.yec{bottom:3.600000px;}
.yb3{bottom:3.959850px;}
.yb6{bottom:3.960000px;}
.yba{bottom:4.320000px;}
.y103{bottom:4.320150px;}
.yb2{bottom:7.199850px;}
.yb5{bottom:7.200000px;}
.yce{bottom:7.560000px;}
.yea{bottom:10.439850px;}
.yf1{bottom:12.240000px;}
.y1{bottom:12.734985px;}
.y102{bottom:14.760000px;}
.ybe{bottom:16.199850px;}
.yb8{bottom:16.200000px;}
.yee{bottom:21.240000px;}
.y100{bottom:24.840000px;}
.yad{bottom:119.565075px;}
.y120{bottom:120.645075px;}
.ye8{bottom:122.805075px;}
.y59{bottom:124.245075px;}
.y87{bottom:128.925075px;}
.y2c{bottom:131.085075px;}
.yac{bottom:140.445015px;}
.y58{bottom:144.765015px;}
.yfd{bottom:147.645015px;}
.y146{bottom:148.005015px;}
.y11f{bottom:150.885015px;}
.ye7{bottom:152.685015px;}
.y16e{bottom:153.045015px;}
.y86{bottom:154.125015px;}
.y2b{bottom:156.285015px;}
.yab{bottom:160.965015px;}
.y145{bottom:168.525015px;}
.y57{bottom:170.325015px;}
.y16d{bottom:173.565015px;}
.y85{bottom:179.325015px;}
.y2a{bottom:180.765015px;}
.yaa{bottom:181.845015px;}
.ye6{bottom:182.565015px;}
.y144{bottom:189.405015px;}
.yfc{bottom:192.645015px;}
.y16c{bottom:194.445015px;}
.y56{bottom:195.525015px;}
.ya9{bottom:202.365015px;}
.y84{bottom:204.525015px;}
.y29{bottom:205.605015px;}
.y143{bottom:209.925015px;}
.y11e{bottom:210.645015px;}
.ye5{bottom:212.805015px;}
.y16b{bottom:214.965015px;}
.y55{bottom:216.045015px;}
.yfb{bottom:223.245015px;}
.ya8{bottom:227.925015px;}
.y83{bottom:229.725015px;}
.y28{bottom:230.085015px;}
.y142{bottom:230.805015px;}
.y16a{bottom:235.845015px;}
.y54{bottom:236.565015px;}
.ye4{bottom:242.685015px;}
.y82{bottom:250.245015px;}
.y141{bottom:251.325015px;}
.ya7{bottom:253.125015px;}
.y27{bottom:254.925015px;}
.y11d{bottom:255.645015px;}
.y169{bottom:256.365015px;}
.y53{bottom:262.125015px;}
.y81{bottom:270.765015px;}
.y140{bottom:272.205015px;}
.ye3{bottom:272.565015px;}
.ya6{bottom:273.645015px;}
.y168{bottom:277.245015px;}
.y26{bottom:279.405015px;}
.y11c{bottom:285.885015px;}
.y52{bottom:287.325015px;}
.y80{bottom:291.645015px;}
.y13f{bottom:292.725015px;}
.ya5{bottom:294.165015px;}
.y167{bottom:297.765015px;}
.ye2{bottom:302.805015px;}
.y25{bottom:304.605015px;}
.y51{bottom:307.845015px;}
.y13e{bottom:313.605015px;}
.ya4{bottom:315.045015px;}
.y11b{bottom:315.765015px;}
.y7f{bottom:317.205015px;}
.y166{bottom:318.645015px;}
.y50{bottom:328.365015px;}
.y24{bottom:329.805015px;}
.ye1{bottom:332.685015px;}
.y13d{bottom:334.125015px;}
.ya3{bottom:335.565015px;}
.y165{bottom:339.165015px;}
.y7e{bottom:342.405015px;}
.y11a{bottom:345.645015px;}
.y4f{bottom:349.245015px;}
.y23{bottom:355.005015px;}
.ya2{bottom:356.445015px;}
.y164{bottom:360.045015px;}
.y7d{bottom:362.565015px;}
.y4e{bottom:369.765015px;}
.y13c{bottom:375.525015px;}
.y119{bottom:375.885015px;}
.ya1{bottom:376.965015px;}
.y22{bottom:380.205015px;}
.y163{bottom:380.565015px;}
.y7c{bottom:383.445015px;}
.y4d{bottom:390.645015px;}
.y13b{bottom:396.405015px;}
.ye0{bottom:397.125165px;}
.ya0{bottom:397.845015px;}
.y21{bottom:400.365015px;}
.y162{bottom:401.445015px;}
.y7b{bottom:403.965015px;}
.y118{bottom:405.765015px;}
.y4c{bottom:411.165015px;}
.y13a{bottom:416.925015px;}
.y9f{bottom:418.365015px;}
.y20{bottom:421.245015px;}
.y161{bottom:421.965015px;}
.y7a{bottom:424.845015px;}
.yf3{bottom:430.020000px;}
.y4b{bottom:432.045165px;}
.y117{bottom:435.645015px;}
.y139{bottom:437.805015px;}
.y9e{bottom:439.245015px;}
.y160{bottom:442.845015px;}
.y79{bottom:445.365015px;}
.y1f{bottom:446.805015px;}
.y4a{bottom:452.565015px;}
.y138{bottom:458.325015px;}
.y15f{bottom:463.365015px;}
.y9d{bottom:464.805015px;}
.y116{bottom:465.885015px;}
.yf2{bottom:466.020000px;}
.y78{bottom:466.245015px;}
.y1e{bottom:472.005015px;}
.y49{bottom:473.445015px;}
.y137{bottom:479.205015px;}
.y15e{bottom:484.245015px;}
.y77{bottom:486.765015px;}
.y9c{bottom:490.005015px;}
.y1d{bottom:492.165015px;}
.y48{bottom:493.965015px;}
.y136{bottom:499.725015px;}
.yf0{bottom:502.020000px;}
.y15d{bottom:504.765015px;}
.y76{bottom:507.645015px;}
.y115{bottom:510.885015px;}
.y1c{bottom:513.045165px;}
.y47{bottom:514.845015px;}
.y9b{bottom:515.205015px;}
.y135{bottom:520.605015px;}
.y15c{bottom:525.645015px;}
.y75{bottom:528.165015px;}
.y1b{bottom:533.565015px;}
.y46{bottom:535.365015px;}
.yc9{bottom:538.245015px;}
.yed{bottom:538.740000px;}
.y9a{bottom:540.405015px;}
.y114{bottom:540.765015px;}
.y134{bottom:541.125015px;}
.y15b{bottom:546.165015px;}
.y74{bottom:553.725015px;}
.y1a{bottom:554.445015px;}
.y45{bottom:556.245015px;}
.y99{bottom:560.565015px;}
.yc8{bottom:562.005015px;}
.y15a{bottom:567.045015px;}
.y113{bottom:570.645015px;}
.y19{bottom:574.965015px;}
.yeb{bottom:576.180000px;}
.ye9{bottom:576.180150px;}
.y73{bottom:578.925015px;}
.y98{bottom:581.445015px;}
.y44{bottom:581.805015px;}
.y133{bottom:582.525015px;}
.yc7{bottom:585.765015px;}
.y159{bottom:587.565015px;}
.y18{bottom:595.845015px;}
.y72{bottom:599.445015px;}
.y112{bottom:600.885015px;}
.y97{bottom:601.965015px;}
.y132{bottom:603.405015px;}
.y43{bottom:607.005015px;}
.y158{bottom:608.445015px;}
.yc6{bottom:609.525015px;}
.ydf{bottom:612.405015px;}
.y17{bottom:616.365015px;}
.y71{bottom:619.965015px;}
.y96{bottom:622.845015px;}
.y131{bottom:623.925015px;}
.y42{bottom:627.165015px;}
.y157{bottom:628.965015px;}
.y111{bottom:630.765015px;}
.yc5{bottom:633.645015px;}
.yde{bottom:635.805015px;}
.y16{bottom:637.245015px;}
.y70{bottom:640.845015px;}
.y130{bottom:644.805015px;}
.y41{bottom:648.045015px;}
.y95{bottom:648.405015px;}
.y156{bottom:649.845015px;}
.y170{bottom:651.285015px;}
.yc4{bottom:657.405015px;}
.y6f{bottom:661.365015px;}
.y15{bottom:662.805015px;}
.y40{bottom:668.565015px;}
.y155{bottom:670.365015px;}
.y94{bottom:673.605015px;}
.ydd{bottom:675.045015px;}
.y110{bottom:675.765015px;}
.y16f{bottom:676.485015px;}
.y12f{bottom:680.445015px;}
.yc3{bottom:681.165015px;}
.y6e{bottom:682.245015px;}
.yfa{bottom:682.965015px;}
.y14{bottom:688.005015px;}
.y3f{bottom:689.445015px;}
.y154{bottom:691.245015px;}
.ydc{bottom:698.445015px;}
.y93{bottom:698.805015px;}
.y12e{bottom:700.965015px;}
.yf9{bottom:702.045015px;}
.y6d{bottom:702.765015px;}
.yc2{bottom:704.925015px;}
.y10f{bottom:705.645015px;}
.y13{bottom:708.165015px;}
.y3e{bottom:709.965015px;}
.y153{bottom:711.765015px;}
.y92{bottom:718.965015px;}
.y12d{bottom:721.845015px;}
.ydb{bottom:722.205015px;}
.y6c{bottom:723.645015px;}
.yf8{bottom:725.445015px;}
.yc1{bottom:728.685015px;}
.y12{bottom:729.045015px;}
.y3d{bottom:730.845015px;}
.y152{bottom:732.645015px;}
.y10e{bottom:735.885015px;}
.y91{bottom:739.845015px;}
.y12c{bottom:742.365015px;}
.y6b{bottom:744.165015px;}
.yda{bottom:745.965015px;}
.y11{bottom:749.565015px;}
.y3c{bottom:751.365015px;}
.y151{bottom:753.165015px;}
.y106{bottom:754.740000px;}
.y105{bottom:754.740150px;}
.y90{bottom:760.365015px;}
.y12b{bottom:763.245015px;}
.y6a{bottom:765.045015px;}
.y10d{bottom:765.765165px;}
.yc0{bottom:767.925015px;}
.yd9{bottom:769.725015px;}
.y10{bottom:770.445165px;}
.y3b{bottom:772.245015px;}
.y150{bottom:774.045015px;}
.y8f{bottom:781.245015px;}
.y12a{bottom:783.765165px;}
.y69{bottom:785.565015px;}
.yf{bottom:790.965015px;}
.y3a{bottom:792.765165px;}
.yd8{bottom:793.485015px;}
.y14f{bottom:794.565015px;}
.y104{bottom:796.140000px;}
.y8e{bottom:801.765165px;}
.y129{bottom:804.645015px;}
.y68{bottom:806.445165px;}
.y10c{bottom:810.765165px;}
.ye{bottom:811.845015px;}
.y14e{bottom:815.445165px;}
.y39{bottom:818.325015px;}
.y8d{bottom:822.645015px;}
.y67{bottom:826.965015px;}
.ybd{bottom:828.180150px;}
.y128{bottom:830.205015px;}
.yd7{bottom:832.725015px;}
.y14d{bottom:835.965015px;}
.yd{bottom:837.405015px;}
.y101{bottom:837.540000px;}
.y10b{bottom:840.645015px;}
.y8c{bottom:843.165015px;}
.y38{bottom:843.525015px;}
.y66{bottom:847.845015px;}
.ybf{bottom:851.940000px;}
.y127{bottom:855.405015px;}
.y14c{bottom:856.845015px;}
.yd6{bottom:857.925015px;}
.yc{bottom:862.605165px;}
.y37{bottom:864.045015px;}
.y65{bottom:868.365015px;}
.y10a{bottom:870.885015px;}
.ybb{bottom:876.060000px;}
.y14b{bottom:877.365015px;}
.yff{bottom:879.660000px;}
.y126{bottom:880.605165px;}
.y36{bottom:884.565015px;}
.yb{bottom:887.805015px;}
.y64{bottom:889.245015px;}
.yd5{bottom:892.980000px;}
.yd3{bottom:892.980150px;}
.y14a{bottom:898.245015px;}
.ybc{bottom:900.180150px;}
.y109{bottom:900.765015px;}
.y35{bottom:905.445165px;}
.y63{bottom:909.765015px;}
.y8b{bottom:910.125165px;}
.ya{bottom:913.005015px;}
.y125{bottom:915.885015px;}
.yd4{bottom:916.740000px;}
.y149{bottom:918.765015px;}
.yfe{bottom:922.860150px;}
.yb7{bottom:923.940000px;}
.y34{bottom:925.965015px;}
.y62{bottom:930.645015px;}
.y8a{bottom:935.325015px;}
.y9{bottom:938.205015px;}
.y148{bottom:939.645015px;}
.yd1{bottom:940.860150px;}
.y124{bottom:945.765015px;}
.y33{bottom:946.845015px;}
.yb9{bottom:948.060000px;}
.yf7{bottom:952.245015px;}
.y61{bottom:956.205015px;}
.y8{bottom:958.365015px;}
.y147{bottom:960.165015px;}
.y89{bottom:960.525015px;}
.y108{bottom:960.885015px;}
.yd2{bottom:964.980000px;}
.y32{bottom:967.365015px;}
.yb4{bottom:973.620000px;}
.y123{bottom:975.645015px;}
.y88{bottom:981.045015px;}
.y60{bottom:981.405015px;}
.y7{bottom:983.925015px;}
.ycf{bottom:988.740000px;}
.yf6{bottom:990.765015px;}
.y31{bottom:992.925015px;}
.yb1{bottom:999.180150px;}
.y5f{bottom:1001.565015px;}
.y6{bottom:1004.445165px;}
.y122{bottom:1005.885015px;}
.yd0{bottom:1012.860150px;}
.y30{bottom:1013.445165px;}
.yf5{bottom:1020.645015px;}
.y5e{bottom:1022.445165px;}
.y5{bottom:1030.005015px;}
.y2f{bottom:1033.965015px;}
.yb0{bottom:1034.325015px;}
.y121{bottom:1035.765015px;}
.ycd{bottom:1038.420000px;}
.y5d{bottom:1042.965015px;}
.y107{bottom:1050.885015px;}
.y2e{bottom:1054.845015px;}
.y4{bottom:1055.205015px;}
.yaf{bottom:1059.525015px;}
.y5c{bottom:1063.845015px;}
.ycc{bottom:1063.980000px;}
.ycb{bottom:1063.980150px;}
.yf4{bottom:1065.645015px;}
.y3{bottom:1080.405015px;}
.y5b{bottom:1084.365015px;}
.yae{bottom:1084.725015px;}
.yca{bottom:1095.885015px;}
.y2{bottom:1100.925015px;}
.y5a{bottom:1105.245015px;}
.y2d{bottom:1105.605015px;}
.h9{height:23.759955px;}
.h8{height:23.760045px;}
.h10{height:24.119940px;}
.h12{height:24.119985px;}
.hb{height:24.120030px;}
.h13{height:36.000000px;}
.h14{height:41.022422px;}
.h17{height:41.399865px;}
.h18{height:41.399925px;}
.h16{height:41.399970px;}
.h5{height:43.189453px;}
.hf{height:45.024609px;}
.he{height:47.879880px;}
.hc{height:47.879970px;}
.ha{height:48.239955px;}
.h6{height:49.992188px;}
.h4{height:50.027344px;}
.h11{height:52.438359px;}
.h15{height:54.375366px;}
.h3{height:63.949219px;}
.h7{height:66.138047px;}
.hd{height:66.138647px;}
.h2{height:1237.365000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:16.560015px;}
.wd{width:16.919955px;}
.w7{width:34.199985px;}
.w5{width:61.200000px;}
.w1a{width:64.079970px;}
.w15{width:64.079985px;}
.w10{width:65.160000px;}
.wb{width:86.759970px;}
.w14{width:92.880000px;}
.wf{width:105.840000px;}
.w12{width:112.320000px;}
.w11{width:112.679940px;}
.w13{width:112.680000px;}
.wa{width:116.279985px;}
.w6{width:116.280000px;}
.w4{width:118.439985px;}
.w18{width:125.639970px;}
.w16{width:127.440015px;}
.we{width:132.839955px;}
.w19{width:138.239940px;}
.w17{width:138.239985px;}
.wc{width:139.319985px;}
.w9{width:150.480000px;}
.w3{width:867.464850px;}
.w2{width:867.465000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.920000px;}
.x1{left:12.735001px;}
.x2c{left:14.287650px;}
.x2e{left:15.918000px;}
.xa{left:16.920000px;}
.xe{left:18.793500px;}
.x2d{left:19.972650px;}
.x10{left:21.801300px;}
.x31{left:23.252850px;}
.x1c{left:25.368150px;}
.x19{left:26.871000px;}
.x2f{left:28.353150px;}
.x18{left:30.133200px;}
.x23{left:32.444850px;}
.x30{left:34.502850px;}
.x8{left:36.222300px;}
.x2a{left:39.679650px;}
.x1b{left:44.841000px;}
.xd{left:53.322150px;}
.x26{left:97.335015px;}
.x2{left:115.559999px;}
.x1d{left:129.735030px;}
.x3{left:168.734988px;}
.x11{left:190.034848px;}
.x12{left:194.535000px;}
.x24{left:196.559988px;}
.x4{left:198.855000px;}
.x32{left:222.734976px;}
.x1e{left:235.575000px;}
.x27{left:254.295000px;}
.x13{left:281.295000px;}
.x1f{left:300.735000px;}
.x6{left:317.295000px;}
.x14{left:342.495000px;}
.x7{left:378.495000px;}
.x28{left:381.735000px;}
.x20{left:413.415000px;}
.x15{left:481.815000px;}
.x9{left:494.775000px;}
.x16{left:516.015000px;}
.x29{left:519.975000px;}
.x21{left:525.735000px;}
.xb{left:528.975000px;}
.x17{left:532.935000px;}
.xc{left:545.535000px;}
.x22{left:638.415000px;}
.xf{left:661.815000px;}
.x1a{left:665.775000px;}
.x2b{left:670.455000px;}
.x25{left:678.179688px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320533pt;}
.v1{vertical-align:29.440000pt;}
.ls3{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.215168pt;}
.ls10{letter-spacing:0.225664pt;}
.ls6{letter-spacing:0.266613pt;}
.ls11{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.283392pt;}
.ls8{letter-spacing:0.425088pt;}
.ls9{letter-spacing:0.459413pt;}
.ls14{letter-spacing:0.466560pt;}
.lsd{letter-spacing:0.482816pt;}
.lse{letter-spacing:0.514304pt;}
.ls5{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.535680pt;}
.lsb{letter-spacing:0.599040pt;}
.lsc{letter-spacing:0.624512pt;}
.ls12{letter-spacing:0.645120pt;}
.ls1{letter-spacing:4.328000pt;}
.ws2{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.987200pt;}
.ws4{word-spacing:-13.744512pt;}
.ws5{word-spacing:-13.545088pt;}
.ws6{word-spacing:-13.345664pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-0.896000pt;}
._5{width:1.408000pt;}
._6{width:3.104000pt;}
._4{width:4.780800pt;}
._1{width:6.406400pt;}
._8{width:7.318293pt;}
._f{width:8.208107pt;}
._11{width:9.106347pt;}
._7{width:10.041600pt;}
._a{width:11.517707pt;}
._3{width:12.659200pt;}
._c{width:14.003200pt;}
._d{width:15.014400pt;}
._14{width:17.311627pt;}
._13{width:18.535093pt;}
._9{width:19.993600pt;}
._17{width:21.190400pt;}
._18{width:22.675200pt;}
._b{width:23.596800pt;}
._12{width:24.870400pt;}
._10{width:26.237920pt;}
._15{width:27.357760pt;}
._19{width:28.437067pt;}
._2{width:29.446400pt;}
._1a{width:30.400000pt;}
._16{width:39.078400pt;}
._1b{width:42.387200pt;}
._0{width:57.465600pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:52.480000pt;}
.fs1{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:2.880000pt;}
.yec{bottom:3.200000pt;}
.yb3{bottom:3.519867pt;}
.yb6{bottom:3.520000pt;}
.yba{bottom:3.840000pt;}
.y103{bottom:3.840133pt;}
.yb2{bottom:6.399867pt;}
.yb5{bottom:6.400000pt;}
.yce{bottom:6.720000pt;}
.yea{bottom:9.279867pt;}
.yf1{bottom:10.880000pt;}
.y1{bottom:11.319987pt;}
.y102{bottom:13.120000pt;}
.ybe{bottom:14.399867pt;}
.yb8{bottom:14.400000pt;}
.yee{bottom:18.880000pt;}
.y100{bottom:22.080000pt;}
.yad{bottom:106.280067pt;}
.y120{bottom:107.240067pt;}
.ye8{bottom:109.160067pt;}
.y59{bottom:110.440067pt;}
.y87{bottom:114.600067pt;}
.y2c{bottom:116.520067pt;}
.yac{bottom:124.840013pt;}
.y58{bottom:128.680013pt;}
.yfd{bottom:131.240013pt;}
.y146{bottom:131.560013pt;}
.y11f{bottom:134.120013pt;}
.ye7{bottom:135.720013pt;}
.y16e{bottom:136.040013pt;}
.y86{bottom:137.000013pt;}
.y2b{bottom:138.920013pt;}
.yab{bottom:143.080013pt;}
.y145{bottom:149.800013pt;}
.y57{bottom:151.400013pt;}
.y16d{bottom:154.280013pt;}
.y85{bottom:159.400013pt;}
.y2a{bottom:160.680013pt;}
.yaa{bottom:161.640013pt;}
.ye6{bottom:162.280013pt;}
.y144{bottom:168.360013pt;}
.yfc{bottom:171.240013pt;}
.y16c{bottom:172.840013pt;}
.y56{bottom:173.800013pt;}
.ya9{bottom:179.880013pt;}
.y84{bottom:181.800013pt;}
.y29{bottom:182.760013pt;}
.y143{bottom:186.600013pt;}
.y11e{bottom:187.240013pt;}
.ye5{bottom:189.160013pt;}
.y16b{bottom:191.080013pt;}
.y55{bottom:192.040013pt;}
.yfb{bottom:198.440013pt;}
.ya8{bottom:202.600013pt;}
.y83{bottom:204.200013pt;}
.y28{bottom:204.520013pt;}
.y142{bottom:205.160013pt;}
.y16a{bottom:209.640013pt;}
.y54{bottom:210.280013pt;}
.ye4{bottom:215.720013pt;}
.y82{bottom:222.440013pt;}
.y141{bottom:223.400013pt;}
.ya7{bottom:225.000013pt;}
.y27{bottom:226.600013pt;}
.y11d{bottom:227.240013pt;}
.y169{bottom:227.880013pt;}
.y53{bottom:233.000013pt;}
.y81{bottom:240.680013pt;}
.y140{bottom:241.960013pt;}
.ye3{bottom:242.280013pt;}
.ya6{bottom:243.240013pt;}
.y168{bottom:246.440013pt;}
.y26{bottom:248.360013pt;}
.y11c{bottom:254.120013pt;}
.y52{bottom:255.400013pt;}
.y80{bottom:259.240013pt;}
.y13f{bottom:260.200013pt;}
.ya5{bottom:261.480013pt;}
.y167{bottom:264.680013pt;}
.ye2{bottom:269.160013pt;}
.y25{bottom:270.760013pt;}
.y51{bottom:273.640013pt;}
.y13e{bottom:278.760013pt;}
.ya4{bottom:280.040013pt;}
.y11b{bottom:280.680013pt;}
.y7f{bottom:281.960013pt;}
.y166{bottom:283.240013pt;}
.y50{bottom:291.880013pt;}
.y24{bottom:293.160013pt;}
.ye1{bottom:295.720013pt;}
.y13d{bottom:297.000013pt;}
.ya3{bottom:298.280013pt;}
.y165{bottom:301.480013pt;}
.y7e{bottom:304.360013pt;}
.y11a{bottom:307.240013pt;}
.y4f{bottom:310.440013pt;}
.y23{bottom:315.560013pt;}
.ya2{bottom:316.840013pt;}
.y164{bottom:320.040013pt;}
.y7d{bottom:322.280013pt;}
.y4e{bottom:328.680013pt;}
.y13c{bottom:333.800013pt;}
.y119{bottom:334.120013pt;}
.ya1{bottom:335.080013pt;}
.y22{bottom:337.960013pt;}
.y163{bottom:338.280013pt;}
.y7c{bottom:340.840013pt;}
.y4d{bottom:347.240013pt;}
.y13b{bottom:352.360013pt;}
.ye0{bottom:353.000147pt;}
.ya0{bottom:353.640013pt;}
.y21{bottom:355.880013pt;}
.y162{bottom:356.840013pt;}
.y7b{bottom:359.080013pt;}
.y118{bottom:360.680013pt;}
.y4c{bottom:365.480013pt;}
.y13a{bottom:370.600013pt;}
.y9f{bottom:371.880013pt;}
.y20{bottom:374.440013pt;}
.y161{bottom:375.080013pt;}
.y7a{bottom:377.640013pt;}
.yf3{bottom:382.240000pt;}
.y4b{bottom:384.040147pt;}
.y117{bottom:387.240013pt;}
.y139{bottom:389.160013pt;}
.y9e{bottom:390.440013pt;}
.y160{bottom:393.640013pt;}
.y79{bottom:395.880013pt;}
.y1f{bottom:397.160013pt;}
.y4a{bottom:402.280013pt;}
.y138{bottom:407.400013pt;}
.y15f{bottom:411.880013pt;}
.y9d{bottom:413.160013pt;}
.y116{bottom:414.120013pt;}
.yf2{bottom:414.240000pt;}
.y78{bottom:414.440013pt;}
.y1e{bottom:419.560013pt;}
.y49{bottom:420.840013pt;}
.y137{bottom:425.960013pt;}
.y15e{bottom:430.440013pt;}
.y77{bottom:432.680013pt;}
.y9c{bottom:435.560013pt;}
.y1d{bottom:437.480013pt;}
.y48{bottom:439.080013pt;}
.y136{bottom:444.200013pt;}
.yf0{bottom:446.240000pt;}
.y15d{bottom:448.680013pt;}
.y76{bottom:451.240013pt;}
.y115{bottom:454.120013pt;}
.y1c{bottom:456.040147pt;}
.y47{bottom:457.640013pt;}
.y9b{bottom:457.960013pt;}
.y135{bottom:462.760013pt;}
.y15c{bottom:467.240013pt;}
.y75{bottom:469.480013pt;}
.y1b{bottom:474.280013pt;}
.y46{bottom:475.880013pt;}
.yc9{bottom:478.440013pt;}
.yed{bottom:478.880000pt;}
.y9a{bottom:480.360013pt;}
.y114{bottom:480.680013pt;}
.y134{bottom:481.000013pt;}
.y15b{bottom:485.480013pt;}
.y74{bottom:492.200013pt;}
.y1a{bottom:492.840013pt;}
.y45{bottom:494.440013pt;}
.y99{bottom:498.280013pt;}
.yc8{bottom:499.560013pt;}
.y15a{bottom:504.040013pt;}
.y113{bottom:507.240013pt;}
.y19{bottom:511.080013pt;}
.yeb{bottom:512.160000pt;}
.ye9{bottom:512.160133pt;}
.y73{bottom:514.600013pt;}
.y98{bottom:516.840013pt;}
.y44{bottom:517.160013pt;}
.y133{bottom:517.800013pt;}
.yc7{bottom:520.680013pt;}
.y159{bottom:522.280013pt;}
.y18{bottom:529.640013pt;}
.y72{bottom:532.840013pt;}
.y112{bottom:534.120013pt;}
.y97{bottom:535.080013pt;}
.y132{bottom:536.360013pt;}
.y43{bottom:539.560013pt;}
.y158{bottom:540.840013pt;}
.yc6{bottom:541.800013pt;}
.ydf{bottom:544.360013pt;}
.y17{bottom:547.880013pt;}
.y71{bottom:551.080013pt;}
.y96{bottom:553.640013pt;}
.y131{bottom:554.600013pt;}
.y42{bottom:557.480013pt;}
.y157{bottom:559.080013pt;}
.y111{bottom:560.680013pt;}
.yc5{bottom:563.240013pt;}
.yde{bottom:565.160013pt;}
.y16{bottom:566.440013pt;}
.y70{bottom:569.640013pt;}
.y130{bottom:573.160013pt;}
.y41{bottom:576.040013pt;}
.y95{bottom:576.360013pt;}
.y156{bottom:577.640013pt;}
.y170{bottom:578.920013pt;}
.yc4{bottom:584.360013pt;}
.y6f{bottom:587.880013pt;}
.y15{bottom:589.160013pt;}
.y40{bottom:594.280013pt;}
.y155{bottom:595.880013pt;}
.y94{bottom:598.760013pt;}
.ydd{bottom:600.040013pt;}
.y110{bottom:600.680013pt;}
.y16f{bottom:601.320013pt;}
.y12f{bottom:604.840013pt;}
.yc3{bottom:605.480013pt;}
.y6e{bottom:606.440013pt;}
.yfa{bottom:607.080013pt;}
.y14{bottom:611.560013pt;}
.y3f{bottom:612.840013pt;}
.y154{bottom:614.440013pt;}
.ydc{bottom:620.840013pt;}
.y93{bottom:621.160013pt;}
.y12e{bottom:623.080013pt;}
.yf9{bottom:624.040013pt;}
.y6d{bottom:624.680013pt;}
.yc2{bottom:626.600013pt;}
.y10f{bottom:627.240013pt;}
.y13{bottom:629.480013pt;}
.y3e{bottom:631.080013pt;}
.y153{bottom:632.680013pt;}
.y92{bottom:639.080013pt;}
.y12d{bottom:641.640013pt;}
.ydb{bottom:641.960013pt;}
.y6c{bottom:643.240013pt;}
.yf8{bottom:644.840013pt;}
.yc1{bottom:647.720013pt;}
.y12{bottom:648.040013pt;}
.y3d{bottom:649.640013pt;}
.y152{bottom:651.240013pt;}
.y10e{bottom:654.120013pt;}
.y91{bottom:657.640013pt;}
.y12c{bottom:659.880013pt;}
.y6b{bottom:661.480013pt;}
.yda{bottom:663.080013pt;}
.y11{bottom:666.280013pt;}
.y3c{bottom:667.880013pt;}
.y151{bottom:669.480013pt;}
.y106{bottom:670.880000pt;}
.y105{bottom:670.880133pt;}
.y90{bottom:675.880013pt;}
.y12b{bottom:678.440013pt;}
.y6a{bottom:680.040013pt;}
.y10d{bottom:680.680147pt;}
.yc0{bottom:682.600013pt;}
.yd9{bottom:684.200013pt;}
.y10{bottom:684.840147pt;}
.y3b{bottom:686.440013pt;}
.y150{bottom:688.040013pt;}
.y8f{bottom:694.440013pt;}
.y12a{bottom:696.680147pt;}
.y69{bottom:698.280013pt;}
.yf{bottom:703.080013pt;}
.y3a{bottom:704.680147pt;}
.yd8{bottom:705.320013pt;}
.y14f{bottom:706.280013pt;}
.y104{bottom:707.680000pt;}
.y8e{bottom:712.680147pt;}
.y129{bottom:715.240013pt;}
.y68{bottom:716.840147pt;}
.y10c{bottom:720.680147pt;}
.ye{bottom:721.640013pt;}
.y14e{bottom:724.840147pt;}
.y39{bottom:727.400013pt;}
.y8d{bottom:731.240013pt;}
.y67{bottom:735.080013pt;}
.ybd{bottom:736.160133pt;}
.y128{bottom:737.960013pt;}
.yd7{bottom:740.200013pt;}
.y14d{bottom:743.080013pt;}
.yd{bottom:744.360013pt;}
.y101{bottom:744.480000pt;}
.y10b{bottom:747.240013pt;}
.y8c{bottom:749.480013pt;}
.y38{bottom:749.800013pt;}
.y66{bottom:753.640013pt;}
.ybf{bottom:757.280000pt;}
.y127{bottom:760.360013pt;}
.y14c{bottom:761.640013pt;}
.yd6{bottom:762.600013pt;}
.yc{bottom:766.760147pt;}
.y37{bottom:768.040013pt;}
.y65{bottom:771.880013pt;}
.y10a{bottom:774.120013pt;}
.ybb{bottom:778.720000pt;}
.y14b{bottom:779.880013pt;}
.yff{bottom:781.920000pt;}
.y126{bottom:782.760147pt;}
.y36{bottom:786.280013pt;}
.yb{bottom:789.160013pt;}
.y64{bottom:790.440013pt;}
.yd5{bottom:793.760000pt;}
.yd3{bottom:793.760133pt;}
.y14a{bottom:798.440013pt;}
.ybc{bottom:800.160133pt;}
.y109{bottom:800.680013pt;}
.y35{bottom:804.840147pt;}
.y63{bottom:808.680013pt;}
.y8b{bottom:809.000147pt;}
.ya{bottom:811.560013pt;}
.y125{bottom:814.120013pt;}
.yd4{bottom:814.880000pt;}
.y149{bottom:816.680013pt;}
.yfe{bottom:820.320133pt;}
.yb7{bottom:821.280000pt;}
.y34{bottom:823.080013pt;}
.y62{bottom:827.240013pt;}
.y8a{bottom:831.400013pt;}
.y9{bottom:833.960013pt;}
.y148{bottom:835.240013pt;}
.yd1{bottom:836.320133pt;}
.y124{bottom:840.680013pt;}
.y33{bottom:841.640013pt;}
.yb9{bottom:842.720000pt;}
.yf7{bottom:846.440013pt;}
.y61{bottom:849.960013pt;}
.y8{bottom:851.880013pt;}
.y147{bottom:853.480013pt;}
.y89{bottom:853.800013pt;}
.y108{bottom:854.120013pt;}
.yd2{bottom:857.760000pt;}
.y32{bottom:859.880013pt;}
.yb4{bottom:865.440000pt;}
.y123{bottom:867.240013pt;}
.y88{bottom:872.040013pt;}
.y60{bottom:872.360013pt;}
.y7{bottom:874.600013pt;}
.ycf{bottom:878.880000pt;}
.yf6{bottom:880.680013pt;}
.y31{bottom:882.600013pt;}
.yb1{bottom:888.160133pt;}
.y5f{bottom:890.280013pt;}
.y6{bottom:892.840147pt;}
.y122{bottom:894.120013pt;}
.yd0{bottom:900.320133pt;}
.y30{bottom:900.840147pt;}
.yf5{bottom:907.240013pt;}
.y5e{bottom:908.840147pt;}
.y5{bottom:915.560013pt;}
.y2f{bottom:919.080013pt;}
.yb0{bottom:919.400013pt;}
.y121{bottom:920.680013pt;}
.ycd{bottom:923.040000pt;}
.y5d{bottom:927.080013pt;}
.y107{bottom:934.120013pt;}
.y2e{bottom:937.640013pt;}
.y4{bottom:937.960013pt;}
.yaf{bottom:941.800013pt;}
.y5c{bottom:945.640013pt;}
.ycc{bottom:945.760000pt;}
.ycb{bottom:945.760133pt;}
.yf4{bottom:947.240013pt;}
.y3{bottom:960.360013pt;}
.y5b{bottom:963.880013pt;}
.yae{bottom:964.200013pt;}
.yca{bottom:974.120013pt;}
.y2{bottom:978.600013pt;}
.y5a{bottom:982.440013pt;}
.y2d{bottom:982.760013pt;}
.h9{height:21.119960pt;}
.h8{height:21.120040pt;}
.h10{height:21.439947pt;}
.h12{height:21.439987pt;}
.hb{height:21.440027pt;}
.h13{height:32.000000pt;}
.h14{height:36.464375pt;}
.h17{height:36.799880pt;}
.h18{height:36.799933pt;}
.h16{height:36.799973pt;}
.h5{height:38.390625pt;}
.hf{height:40.021875pt;}
.he{height:42.559893pt;}
.hc{height:42.559973pt;}
.ha{height:42.879960pt;}
.h6{height:44.437500pt;}
.h4{height:44.468750pt;}
.h11{height:46.611875pt;}
.h15{height:48.333658pt;}
.h3{height:56.843750pt;}
.h7{height:58.789375pt;}
.hd{height:58.789908pt;}
.h2{height:1099.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:14.720013pt;}
.wd{width:15.039960pt;}
.w7{width:30.399987pt;}
.w5{width:54.400000pt;}
.w1a{width:56.959973pt;}
.w15{width:56.959987pt;}
.w10{width:57.920000pt;}
.wb{width:77.119973pt;}
.w14{width:82.560000pt;}
.wf{width:94.080000pt;}
.w12{width:99.840000pt;}
.w11{width:100.159947pt;}
.w13{width:100.160000pt;}
.wa{width:103.359987pt;}
.w6{width:103.360000pt;}
.w4{width:105.279987pt;}
.w18{width:111.679973pt;}
.w16{width:113.280013pt;}
.we{width:118.079960pt;}
.w19{width:122.879947pt;}
.w17{width:122.879987pt;}
.wc{width:123.839987pt;}
.w9{width:133.760000pt;}
.w3{width:771.079867pt;}
.w2{width:771.080000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.040000pt;}
.x1{left:11.320001pt;}
.x2c{left:12.700133pt;}
.x2e{left:14.149333pt;}
.xa{left:15.040000pt;}
.xe{left:16.705333pt;}
.x2d{left:17.753467pt;}
.x10{left:19.378933pt;}
.x31{left:20.669200pt;}
.x1c{left:22.549467pt;}
.x19{left:23.885333pt;}
.x2f{left:25.202800pt;}
.x18{left:26.785067pt;}
.x23{left:28.839867pt;}
.x30{left:30.669200pt;}
.x8{left:32.197600pt;}
.x2a{left:35.270800pt;}
.x1b{left:39.858667pt;}
.xd{left:47.397467pt;}
.x26{left:86.520013pt;}
.x2{left:102.719999pt;}
.x1d{left:115.320027pt;}
.x3{left:149.986656pt;}
.x11{left:168.919865pt;}
.x12{left:172.920000pt;}
.x24{left:174.719989pt;}
.x4{left:176.760000pt;}
.x32{left:197.986645pt;}
.x1e{left:209.400000pt;}
.x27{left:226.040000pt;}
.x13{left:250.040000pt;}
.x1f{left:267.320000pt;}
.x6{left:282.040000pt;}
.x14{left:304.440000pt;}
.x7{left:336.440000pt;}
.x28{left:339.320000pt;}
.x20{left:367.480000pt;}
.x15{left:428.280000pt;}
.x9{left:439.800000pt;}
.x16{left:458.680000pt;}
.x29{left:462.200000pt;}
.x21{left:467.320000pt;}
.xb{left:470.200000pt;}
.x17{left:473.720000pt;}
.xc{left:484.920000pt;}
.x22{left:567.480000pt;}
.xf{left:588.280000pt;}
.x1a{left:591.800000pt;}
.x2b{left:595.960000pt;}
.x25{left:602.826389pt;}
}




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