
    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_7f6a54a6911ef14ee6c096e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_93d9d2ca5a14a53835ea400a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_bce5b3629190d508225c92d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_bb9fac181a377852ff71132b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:38.159985px;}
.v1{vertical-align:75.599970px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.155880px;}
.ls2{letter-spacing:7.360137px;}
.ls4{letter-spacing:26.091170px;}
.ls3{letter-spacing:1683.964606px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-20.015992px;}
.ws2{word-spacing:-18.414713px;}
.ws0{word-spacing:0.000000px;}
._2a{margin-left:-2.423171px;}
._2{margin-left:-1.227841px;}
._1{width:1.081336px;}
._22{width:2.086306px;}
._12{width:3.106217px;}
._10{width:4.404125px;}
._d{width:5.687616px;}
._a{width:6.776978px;}
._8{width:8.167807px;}
._7{width:9.534517px;}
._f{width:10.656908px;}
._14{width:11.835113px;}
._16{width:12.837837px;}
._15{width:14.628207px;}
._6{width:15.974904px;}
._5{width:17.142903px;}
._13{width:18.985053px;}
._20{width:21.033430px;}
._11{width:22.735563px;}
._b{width:23.957662px;}
._9{width:25.079046px;}
._3{width:26.522397px;}
._4{width:27.632434px;}
._c{width:28.993836px;}
._28{width:30.043464px;}
._1c{width:31.659096px;}
._26{width:33.211679px;}
._0{width:34.240490px;}
._1a{width:35.302437px;}
._19{width:36.354329px;}
._47{width:37.672588px;}
._24{width:38.794382px;}
._21{width:39.819629px;}
._e{width:41.042393px;}
._25{width:42.268717px;}
._1b{width:43.366610px;}
._1d{width:44.781006px;}
._39{width:46.617398px;}
._17{width:48.767086px;}
._18{width:49.929018px;}
._56{width:55.211814px;}
._29{width:56.514462px;}
._1f{width:58.531634px;}
._1e{width:60.087205px;}
._23{width:62.419092px;}
._27{width:69.526644px;}
._33{width:136.476936px;}
._53{width:143.115491px;}
._46{width:162.958935px;}
._44{width:168.260338px;}
._4a{width:173.044633px;}
._50{width:175.200084px;}
._48{width:184.106525px;}
._3b{width:199.788392px;}
._3c{width:205.464463px;}
._4c{width:209.874091px;}
._2c{width:211.228003px;}
._30{width:229.326121px;}
._31{width:239.324351px;}
._42{width:242.293921px;}
._2d{width:258.055690px;}
._35{width:294.972564px;}
._43{width:317.976951px;}
._4f{width:333.419032px;}
._3f{width:363.339248px;}
._3e{width:417.336776px;}
._40{width:429.578472px;}
._41{width:476.290115px;}
._34{width:673.435071px;}
._37{width:697.556027px;}
._49{width:711.347170px;}
._45{width:730.071660px;}
._3a{width:812.411471px;}
._32{width:817.795132px;}
._2f{width:844.673784px;}
._3d{width:883.515775px;}
._36{width:952.070480px;}
._54{width:1008.269600px;}
._38{width:1093.837964px;}
._2b{width:1127.769761px;}
._51{width:1170.358815px;}
._52{width:1231.661509px;}
._4b{width:1291.909645px;}
._4d{width:1339.801146px;}
._2e{width:1397.791601px;}
._55{width:1570.346493px;}
._4e{width:1611.018316px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.ye8{bottom:3.599044px;}
.yec{bottom:3.599057px;}
.yf1{bottom:3.599074px;}
.yf5{bottom:3.599087px;}
.yf9{bottom:3.599101px;}
.yfe{bottom:3.599117px;}
.ya8{bottom:3.599283px;}
.yac{bottom:3.599301px;}
.yaf{bottom:3.599310px;}
.ye5{bottom:3.779035px;}
.yc0{bottom:3.779182px;}
.ya2{bottom:3.779237px;}
.y2{bottom:58.080277px;}
.y1{bottom:79.320268px;}
.y79{bottom:113.699955px;}
.y99{bottom:117.659953px;}
.y89{bottom:126.659949px;}
.y111{bottom:130.439948px;}
.y142{bottom:131.879947px;}
.yd0{bottom:135.479946px;}
.y6a{bottom:140.699944px;}
.y78{bottom:144.659942px;}
.yb2{bottom:147.900241px;}
.y21{bottom:148.799940px;}
.y40{bottom:153.659939px;}
.y141{bottom:155.639938px;}
.y88{bottom:157.799937px;}
.y12e{bottom:160.859936px;}
.y110{bottom:161.399935px;}
.y55{bottom:162.659935px;}
.ycf{bottom:166.619933px;}
.ye1{bottom:167.519933px;}
.y69{bottom:171.659931px;}
.yba{bottom:175.799930px;}
.y140{bottom:179.579928px;}
.y98{bottom:179.759928px;}
.yb1{bottom:180.839928px;}
.y77{bottom:184.799926px;}
.y20{bottom:188.759924px;}
.y12d{bottom:191.819923px;}
.y10f{bottom:192.539923px;}
.y3f{bottom:193.799922px;}
.yce{bottom:197.579921px;}
.ydf{bottom:197.759921px;}
.y68{bottom:202.799919px;}
.yb0{bottom:203.339919px;}
.y97{bottom:210.899916px;}
.yb9{bottom:215.759914px;}
.yde{bottom:216.659913px;}
.y13f{bottom:218.279913px;}
.y87{bottom:219.899912px;}
.yae{bottom:222.420600px;}
.y12c{bottom:222.959911px;}
.y10e{bottom:223.499911px;}
.y3e{bottom:224.759910px;}
.yad{bottom:226.019910px;}
.ycd{bottom:228.719909px;}
.y1f{bottom:228.899908px;}
.ye0{bottom:231.419907px;}
.y67{bottom:233.759906px;}
.ydd{bottom:235.739906px;}
.y96{bottom:241.859903px;}
.y13e{bottom:242.039903px;}
.yab{bottom:244.920600px;}
.yb8{bottom:246.899901px;}
.yaa{bottom:248.519901px;}
.y12b{bottom:253.919898px;}
.ydc{bottom:255.359898px;}
.y54{bottom:255.899898px;}
.y1e{bottom:259.859896px;}
.ycc{bottom:261.479895px;}
.y10d{bottom:263.639895px;}
.y3d{bottom:264.899894px;}
.y13d{bottom:265.799894px;}
.ya9{bottom:271.199892px;}
.y95{bottom:272.999891px;}
.ydb{bottom:274.439890px;}
.yb7{bottom:277.859889px;}
.y12a{bottom:285.059886px;}
.y53{bottom:286.859885px;}
.y13c{bottom:289.559884px;}
.ya7{bottom:290.100600px;}
.y1d{bottom:290.999884px;}
.ycb{bottom:291.359883px;}
.ya6{bottom:293.699883px;}
.y10c{bottom:294.599882px;}
.y76{bottom:295.859882px;}
.yda{bottom:298.379881px;}
.y3c{bottom:304.859878px;}
.yb6{bottom:308.999876px;}
.yca{bottom:310.259876px;}
.y94{bottom:312.959875px;}
.y129{bottom:316.019874px;}
.ya5{bottom:316.199874px;}
.yd9{bottom:317.279873px;}
.y52{bottom:317.999873px;}
.y1c{bottom:321.959871px;}
.y10b{bottom:325.739870px;}
.y75{bottom:326.999869px;}
.y13b{bottom:328.619869px;}
.yc9{bottom:333.659867px;}
.y3b{bottom:335.999866px;}
.ya4{bottom:338.879864px;}
.yb5{bottom:339.959864px;}
.yd8{bottom:341.399863px;}
.y93{bottom:344.099862px;}
.y128{bottom:347.159861px;}
.y51{bottom:348.959860px;}
.y13a{bottom:352.379859px;}
.y1b{bottom:353.099859px;}
.y10a{bottom:356.699857px;}
.yc8{bottom:357.239857px;}
.y74{bottom:357.959857px;}
.yd7{bottom:360.299856px;}
.ya3{bottom:361.379855px;}
.y3a{bottom:366.959853px;}
.y139{bottom:375.959850px;}
.y127{bottom:378.119849px;}
.y50{bottom:380.099848px;}
.yc7{bottom:380.639848px;}
.y1a{bottom:384.059846px;}
.yd6{bottom:384.419846px;}
.y109{bottom:387.839845px;}
.y73{bottom:389.099844px;}
.y39{bottom:398.099841px;}
.ya1{bottom:402.960600px;}
.yd5{bottom:403.319839px;}
.yc6{bottom:404.219838px;}
.ya0{bottom:406.559837px;}
.y4f{bottom:411.059836px;}
.y138{bottom:415.019834px;}
.y19{bottom:415.199834px;}
.y126{bottom:418.079833px;}
.y108{bottom:418.799832px;}
.y72{bottom:420.059832px;}
.y92{bottom:424.199830px;}
.yd4{bottom:427.259829px;}
.yc5{bottom:427.619829px;}
.y38{bottom:429.059828px;}
.y9f{bottom:438.599825px;}
.y4e{bottom:442.199823px;}
.y18{bottom:446.159822px;}
.y125{bottom:449.219820px;}
.y107{bottom:449.939820px;}
.yc4{bottom:451.019820px;}
.y71{bottom:451.199820px;}
.y91{bottom:455.159818px;}
.y37{bottom:460.199816px;}
.y158{bottom:461.279815px;}
.y137{bottom:462.359815px;}
.y9e{bottom:462.539815px;}
.y4d{bottom:473.159811px;}
.yc3{bottom:474.599810px;}
.y17{bottom:477.299809px;}
.yd3{bottom:478.739809px;}
.y106{bottom:480.899808px;}
.y157{bottom:485.219806px;}
.y136{bottom:486.119806px;}
.y90{bottom:486.299805px;}
.y124{bottom:489.179804px;}
.y36{bottom:491.159804px;}
.y9d{bottom:495.299802px;}
.yc2{bottom:497.999801px;}
.yd2{bottom:502.499799px;}
.y4c{bottom:504.299798px;}
.y16{bottom:508.259797px;}
.yb4{bottom:513.299795px;}
.y123{bottom:520.319792px;}
.y105{bottom:521.039792px;}
.yc1{bottom:521.579791px;}
.y35{bottom:522.299791px;}
.y156{bottom:523.739791px;}
.y135{bottom:525.179790px;}
.y8f{bottom:526.259789px;}
.y4b{bottom:535.259786px;}
.y15{bottom:539.399784px;}
.ybf{bottom:541.380600px;}
.yb3{bottom:544.259782px;}
.ybe{bottom:544.979782px;}
.y155{bottom:547.679781px;}
.y134{bottom:548.759780px;}
.y34{bottom:553.259779px;}
.y104{bottom:553.799778px;}
.y122{bottom:560.279776px;}
.y8e{bottom:566.399773px;}
.y14{bottom:570.359772px;}
.ybd{bottom:571.799771px;}
.y133{bottom:572.519771px;}
.y4a{bottom:575.399770px;}
.y86{bottom:579.359768px;}
.y33{bottom:584.399766px;}
.y103{bottom:586.559765px;}
.y121{bottom:591.419763px;}
.y66{bottom:593.399763px;}
.ybc{bottom:595.559762px;}
.y9c{bottom:597.359761px;}
.y13{bottom:601.499759px;}
.y49{bottom:606.359757px;}
.y102{bottom:610.319756px;}
.y132{bottom:611.399755px;}
.y32{bottom:615.359754px;}
.y85{bottom:619.499752px;}
.y120{bottom:622.379751px;}
.y65{bottom:624.359750px;}
.y9b{bottom:628.499749px;}
.y12{bottom:632.459747px;}
.y154{bottom:634.079746px;}
.y101{bottom:634.259746px;}
.y131{bottom:635.339746px;}
.y48{bottom:637.499745px;}
.y31{bottom:646.499741px;}
.y11f{bottom:653.519739px;}
.y64{bottom:655.499738px;}
.y130{bottom:659.099736px;}
.y84{bottom:659.459736px;}
.y11{bottom:663.599735px;}
.y100{bottom:667.019733px;}
.y47{bottom:668.459733px;}
.y153{bottom:669.719732px;}
.y30{bottom:677.459729px;}
.y63{bottom:686.459725px;}
.y83{bottom:690.599724px;}
.y152{bottom:690.779724px;}
.y11e{bottom:693.479723px;}
.y10{bottom:694.559722px;}
.yfc{bottom:696.719721px;}
.y12f{bottom:697.799721px;}
.y46{bottom:699.599720px;}
.yfd{bottom:702.660600px;}
.yff{bottom:706.259717px;}
.y2f{bottom:708.599717px;}
.yfb{bottom:715.799714px;}
.y62{bottom:717.599713px;}
.y82{bottom:721.559711px;}
.y11d{bottom:724.619710px;}
.yf{bottom:725.699710px;}
.y151{bottom:729.119708px;}
.y45{bottom:730.559708px;}
.yf7{bottom:739.199704px;}
.y2e{bottom:739.559704px;}
.yf8{bottom:745.140600px;}
.y61{bottom:748.559701px;}
.yfa{bottom:748.739701px;}
.y81{bottom:752.699699px;}
.y150{bottom:753.059699px;}
.y11c{bottom:755.579698px;}
.ye{bottom:756.659697px;}
.yf6{bottom:758.279697px;}
.y44{bottom:761.699695px;}
.y2d{bottom:770.699692px;}
.y14f{bottom:776.999689px;}
.yf4{bottom:778.080600px;}
.y60{bottom:779.699688px;}
.yf3{bottom:781.679687px;}
.y80{bottom:783.659687px;}
.y11b{bottom:786.719685px;}
.yd{bottom:787.799685px;}
.y43{bottom:792.659683px;}
.y2c{bottom:801.659679px;}
.yef{bottom:805.079678px;}
.y5f{bottom:810.659676px;}
.yf0{bottom:811.020600px;}
.yf2{bottom:814.619674px;}
.y7f{bottom:814.799674px;}
.y14e{bottom:815.699674px;}
.y11a{bottom:817.679673px;}
.yc{bottom:818.759672px;}
.yd1{bottom:819.659672px;}
.y42{bottom:823.799670px;}
.yee{bottom:824.159670px;}
.y2b{bottom:832.799667px;}
.y14d{bottom:839.639664px;}
.y70{bottom:841.799663px;}
.y7e{bottom:845.759662px;}
.yea{bottom:847.559661px;}
.y119{bottom:848.819660px;}
.y5e{bottom:850.799660px;}
.yeb{bottom:853.500600px;}
.y8d{bottom:854.759658px;}
.yed{bottom:857.099657px;}
.yb{bottom:858.899656px;}
.y14c{bottom:863.219655px;}
.y2a{bottom:863.759654px;}
.ye9{bottom:866.639653px;}
.y6f{bottom:872.759651px;}
.y7d{bottom:876.899649px;}
.y118{bottom:879.779648px;}
.y5d{bottom:881.759647px;}
.y8c{bottom:886.079646px;}
.ye7{bottom:886.440600px;}
.ye6{bottom:890.039644px;}
.y29{bottom:894.899642px;}
.ya{bottom:898.859640px;}
.y14b{bottom:902.099639px;}
.y6e{bottom:903.899638px;}
.y7c{bottom:907.859637px;}
.ye4{bottom:909.840600px;}
.y5c{bottom:912.899635px;}
.y8b{bottom:917.039633px;}
.y117{bottom:919.919632px;}
.y28{bottom:925.859630px;}
.y14a{bottom:926.039630px;}
.y6d{bottom:934.859626px;}
.y9{bottom:938.999624px;}
.ye3{bottom:940.439624px;}
.y5b{bottom:943.859622px;}
.y7b{bottom:947.999621px;}
.y116{bottom:950.879620px;}
.y27{bottom:956.999617px;}
.ye2{bottom:964.199614px;}
.y149{bottom:964.739614px;}
.y9a{bottom:965.999614px;}
.y5a{bottom:974.999610px;}
.y6c{bottom:975.179610px;}
.y8{bottom:978.959608px;}
.y115{bottom:982.019607px;}
.y26{bottom:987.959605px;}
.y148{bottom:988.499605px;}
.y8a{bottom:996.959601px;}
.y59{bottom:1005.959598px;}
.y6b{bottom:1006.139598px;}
.y7{bottom:1010.099596px;}
.y25{bottom:1019.099592px;}
.y114{bottom:1021.979591px;}
.y147{bottom:1027.199589px;}
.y7a{bottom:1028.099589px;}
.y58{bottom:1037.099585px;}
.y6{bottom:1050.059580px;}
.y146{bottom:1051.139580px;}
.y113{bottom:1053.119579px;}
.ybb{bottom:1059.059576px;}
.y57{bottom:1068.059573px;}
.y145{bottom:1074.899570px;}
.y5{bottom:1081.199568px;}
.y112{bottom:1084.079566px;}
.y24{bottom:1090.199564px;}
.y56{bottom:1099.199560px;}
.y41{bottom:1112.159555px;}
.y144{bottom:1113.779554px;}
.y4{bottom:1121.159552px;}
.y23{bottom:1130.159548px;}
.y143{bottom:1137.359545px;}
.y3{bottom:1152.299539px;}
.y22{bottom:1161.299535px;}
.h5{height:18.540000px;}
.h4{height:18.900000px;}
.h1{height:50.308574px;}
.h3{height:69.086222px;}
.h7{height:69.806222px;}
.h2{height:75.093720px;}
.h9{height:107.246207px;}
.h6{height:144.686192px;}
.h8{height:145.406192px;}
.h0{height:1263.000000px;}
.wc{width:2.520000px;}
.wb{width:2.700000px;}
.wa{width:3.600000px;}
.w4{width:4.500000px;}
.w7{width:5.220000px;}
.w8{width:5.580000px;}
.w2{width:6.120000px;}
.w6{width:7.560000px;}
.w9{width:9.180000px;}
.w1{width:46.800000px;}
.w3{width:51.300000px;}
.w5{width:58.680000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620093px;}
.x6{left:133.739903px;}
.x1b{left:137.699945px;}
.x1c{left:141.839943px;}
.xf{left:144.359942px;}
.x3{left:170.099932px;}
.x7{left:176.219930px;}
.x14{left:180.179928px;}
.x8{left:183.959926px;}
.x4{left:287.100864px;}
.x10{left:521.460000px;}
.x9{left:537.660000px;}
.x15{left:552.240000px;}
.x11{left:554.399778px;}
.x5{left:581.220363px;}
.xa{left:584.460000px;}
.x16{left:599.040000px;}
.xb{left:609.120000px;}
.x17{left:615.960000px;}
.x1d{left:620.640000px;}
.x1e{left:629.820000px;}
.x12{left:634.679746px;}
.x1f{left:653.400000px;}
.xc{left:660.420000px;}
.x20{left:662.580000px;}
.x18{left:667.260000px;}
.xd{left:673.020000px;}
.x21{left:685.440000px;}
.x19{left:690.300000px;}
.x22{left:694.620000px;}
.x23{left:717.300000px;}
.x24{left:726.480000px;}
.xe{left:731.700000px;}
.x13{left:746.099702px;}
.x1a{left:748.980000px;}
.x1{left:755.459698px;}
.x25{left:758.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:33.919986pt;}
.v1{vertical-align:67.199973pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.138560pt;}
.ls2{letter-spacing:6.542344pt;}
.ls4{letter-spacing:23.192151pt;}
.ls3{letter-spacing:1496.857428pt;}
.ws1{word-spacing:-17.791993pt;}
.ws2{word-spacing:-16.368633pt;}
.ws0{word-spacing:0.000000pt;}
._2a{margin-left:-2.153930pt;}
._2{margin-left:-1.091414pt;}
._1{width:0.961187pt;}
._22{width:1.854494pt;}
._12{width:2.761082pt;}
._10{width:3.914778pt;}
._d{width:5.055658pt;}
._a{width:6.023980pt;}
._8{width:7.260273pt;}
._7{width:8.475126pt;}
._f{width:9.472807pt;}
._14{width:10.520100pt;}
._16{width:11.411411pt;}
._15{width:13.002851pt;}
._6{width:14.199915pt;}
._5{width:15.238136pt;}
._13{width:16.875603pt;}
._20{width:18.696382pt;}
._11{width:20.209390pt;}
._b{width:21.295699pt;}
._9{width:22.292485pt;}
._3{width:23.575464pt;}
._4{width:24.562164pt;}
._c{width:25.772299pt;}
._28{width:26.705301pt;}
._1c{width:28.141419pt;}
._26{width:29.521492pt;}
._0{width:30.435991pt;}
._1a{width:31.379944pt;}
._19{width:32.314959pt;}
._47{width:33.486745pt;}
._24{width:34.483895pt;}
._21{width:35.395226pt;}
._e{width:36.482127pt;}
._25{width:37.572193pt;}
._1b{width:38.548097pt;}
._1d{width:39.805339pt;}
._39{width:41.437687pt;}
._17{width:43.348521pt;}
._18{width:44.381350pt;}
._56{width:49.077168pt;}
._29{width:50.235078pt;}
._1f{width:52.028119pt;}
._1e{width:53.410849pt;}
._23{width:55.483637pt;}
._27{width:61.801461pt;}
._33{width:121.312832pt;}
._53{width:127.213769pt;}
._46{width:144.852386pt;}
._44{width:149.564745pt;}
._4a{width:153.817452pt;}
._50{width:155.733408pt;}
._48{width:163.650244pt;}
._3b{width:177.589682pt;}
._3c{width:182.635079pt;}
._4c{width:186.554747pt;}
._2c{width:187.758225pt;}
._30{width:203.845441pt;}
._31{width:212.732756pt;}
._42{width:215.372374pt;}
._2d{width:229.382836pt;}
._35{width:262.197834pt;}
._43{width:282.646179pt;}
._4f{width:296.372472pt;}
._3f{width:322.968221pt;}
._3e{width:370.966023pt;}
._40{width:381.847531pt;}
._41{width:423.368991pt;}
._34{width:598.608952pt;}
._37{width:620.049802pt;}
._49{width:632.308596pt;}
._45{width:648.952587pt;}
._3a{width:722.143529pt;}
._32{width:726.929006pt;}
._2f{width:750.821141pt;}
._3d{width:785.347356pt;}
._36{width:846.284871pt;}
._54{width:896.239644pt;}
._38{width:972.300413pt;}
._2b{width:1002.462009pt;}
._51{width:1040.318947pt;}
._52{width:1094.810230pt;}
._4b{width:1148.364129pt;}
._4d{width:1190.934352pt;}
._2e{width:1242.481423pt;}
._55{width:1395.863550pt;}
._4e{width:1432.016281pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:3.199150pt;}
.yec{bottom:3.199162pt;}
.yf1{bottom:3.199177pt;}
.yf5{bottom:3.199189pt;}
.yf9{bottom:3.199200pt;}
.yfe{bottom:3.199216pt;}
.ya8{bottom:3.199362pt;}
.yac{bottom:3.199378pt;}
.yaf{bottom:3.199386pt;}
.ye5{bottom:3.359142pt;}
.yc0{bottom:3.359273pt;}
.ya2{bottom:3.359322pt;}
.y2{bottom:51.626913pt;}
.y1{bottom:70.506905pt;}
.y79{bottom:101.066626pt;}
.y99{bottom:104.586625pt;}
.y89{bottom:112.586622pt;}
.y111{bottom:115.946620pt;}
.y142{bottom:117.226620pt;}
.yd0{bottom:120.426618pt;}
.y6a{bottom:125.066617pt;}
.y78{bottom:128.586615pt;}
.yb2{bottom:131.466881pt;}
.y21{bottom:132.266614pt;}
.y40{bottom:136.586612pt;}
.y141{bottom:138.346611pt;}
.y88{bottom:140.266611pt;}
.y12e{bottom:142.986609pt;}
.y110{bottom:143.466609pt;}
.y55{bottom:144.586609pt;}
.ycf{bottom:148.106607pt;}
.ye1{bottom:148.906607pt;}
.y69{bottom:152.586606pt;}
.yba{bottom:156.266604pt;}
.y140{bottom:159.626603pt;}
.y98{bottom:159.786603pt;}
.yb1{bottom:160.746602pt;}
.y77{bottom:164.266601pt;}
.y20{bottom:167.786600pt;}
.y12d{bottom:170.506598pt;}
.y10f{bottom:171.146598pt;}
.y3f{bottom:172.266598pt;}
.yce{bottom:175.626596pt;}
.ydf{bottom:175.786596pt;}
.y68{bottom:180.266595pt;}
.yb0{bottom:180.746594pt;}
.y97{bottom:187.466592pt;}
.yb9{bottom:191.786590pt;}
.yde{bottom:192.586590pt;}
.y13f{bottom:194.026589pt;}
.y87{bottom:195.466588pt;}
.yae{bottom:197.707200pt;}
.y12c{bottom:198.186587pt;}
.y10e{bottom:198.666587pt;}
.y3e{bottom:199.786587pt;}
.yad{bottom:200.906586pt;}
.ycd{bottom:203.306585pt;}
.y1f{bottom:203.466585pt;}
.ye0{bottom:205.706584pt;}
.y67{bottom:207.786584pt;}
.ydd{bottom:209.546583pt;}
.y96{bottom:214.986581pt;}
.y13e{bottom:215.146581pt;}
.yab{bottom:217.707200pt;}
.yb8{bottom:219.466579pt;}
.yaa{bottom:220.906578pt;}
.y12b{bottom:225.706576pt;}
.ydc{bottom:226.986576pt;}
.y54{bottom:227.466576pt;}
.y1e{bottom:230.986574pt;}
.ycc{bottom:232.426574pt;}
.y10d{bottom:234.346573pt;}
.y3d{bottom:235.466572pt;}
.y13d{bottom:236.266572pt;}
.ya9{bottom:241.066570pt;}
.y95{bottom:242.666570pt;}
.ydb{bottom:243.946569pt;}
.yb7{bottom:246.986568pt;}
.y12a{bottom:253.386565pt;}
.y53{bottom:254.986565pt;}
.y13c{bottom:257.386564pt;}
.ya7{bottom:257.867200pt;}
.y1d{bottom:258.666563pt;}
.ycb{bottom:258.986563pt;}
.ya6{bottom:261.066562pt;}
.y10c{bottom:261.866562pt;}
.y76{bottom:262.986561pt;}
.yda{bottom:265.226561pt;}
.y3c{bottom:270.986558pt;}
.yb6{bottom:274.666557pt;}
.yca{bottom:275.786556pt;}
.y94{bottom:278.186555pt;}
.y129{bottom:280.906554pt;}
.ya5{bottom:281.066554pt;}
.yd9{bottom:282.026554pt;}
.y52{bottom:282.666554pt;}
.y1c{bottom:286.186552pt;}
.y10b{bottom:289.546551pt;}
.y75{bottom:290.666550pt;}
.y13b{bottom:292.106550pt;}
.yc9{bottom:296.586548pt;}
.y3b{bottom:298.666547pt;}
.ya4{bottom:301.226546pt;}
.yb5{bottom:302.186546pt;}
.yd8{bottom:303.466545pt;}
.y93{bottom:305.866544pt;}
.y128{bottom:308.586543pt;}
.y51{bottom:310.186543pt;}
.y13a{bottom:313.226541pt;}
.y1b{bottom:313.866541pt;}
.y10a{bottom:317.066540pt;}
.yc8{bottom:317.546540pt;}
.y74{bottom:318.186539pt;}
.yd7{bottom:320.266539pt;}
.ya3{bottom:321.226538pt;}
.y3a{bottom:326.186536pt;}
.y139{bottom:334.186533pt;}
.y127{bottom:336.106532pt;}
.y50{bottom:337.866532pt;}
.yc7{bottom:338.346531pt;}
.y1a{bottom:341.386530pt;}
.yd6{bottom:341.706530pt;}
.y109{bottom:344.746529pt;}
.y73{bottom:345.866528pt;}
.y39{bottom:353.866525pt;}
.ya1{bottom:358.187200pt;}
.yd5{bottom:358.506523pt;}
.yc6{bottom:359.306523pt;}
.ya0{bottom:361.386522pt;}
.y4f{bottom:365.386521pt;}
.y138{bottom:368.906519pt;}
.y19{bottom:369.066519pt;}
.y126{bottom:371.626518pt;}
.y108{bottom:372.266518pt;}
.y72{bottom:373.386517pt;}
.y92{bottom:377.066516pt;}
.yd4{bottom:379.786515pt;}
.yc5{bottom:380.106515pt;}
.y38{bottom:381.386514pt;}
.y9f{bottom:389.866511pt;}
.y4e{bottom:393.066509pt;}
.y18{bottom:396.586508pt;}
.y125{bottom:399.306507pt;}
.y107{bottom:399.946507pt;}
.yc4{bottom:400.906506pt;}
.y71{bottom:401.066506pt;}
.y91{bottom:404.586505pt;}
.y37{bottom:409.066503pt;}
.y158{bottom:410.026503pt;}
.y137{bottom:410.986502pt;}
.y9e{bottom:411.146502pt;}
.y4d{bottom:420.586498pt;}
.yc3{bottom:421.866498pt;}
.y17{bottom:424.266497pt;}
.yd3{bottom:425.546496pt;}
.y106{bottom:427.466496pt;}
.y157{bottom:431.306494pt;}
.y136{bottom:432.106494pt;}
.y90{bottom:432.266494pt;}
.y124{bottom:434.826493pt;}
.y36{bottom:436.586492pt;}
.y9d{bottom:440.266491pt;}
.yc2{bottom:442.666490pt;}
.yd2{bottom:446.666488pt;}
.y4c{bottom:448.266487pt;}
.y16{bottom:451.786486pt;}
.yb4{bottom:456.266484pt;}
.y123{bottom:462.506482pt;}
.y105{bottom:463.146481pt;}
.yc1{bottom:463.626481pt;}
.y35{bottom:464.266481pt;}
.y156{bottom:465.546480pt;}
.y135{bottom:466.826480pt;}
.y8f{bottom:467.786480pt;}
.y4b{bottom:475.786476pt;}
.y15{bottom:479.466475pt;}
.ybf{bottom:481.227200pt;}
.yb3{bottom:483.786473pt;}
.ybe{bottom:484.426473pt;}
.y155{bottom:486.826472pt;}
.y134{bottom:487.786472pt;}
.y34{bottom:491.786470pt;}
.y104{bottom:492.266470pt;}
.y122{bottom:498.026467pt;}
.y8e{bottom:503.466465pt;}
.y14{bottom:506.986464pt;}
.ybd{bottom:508.266463pt;}
.y133{bottom:508.906463pt;}
.y4a{bottom:511.466462pt;}
.y86{bottom:514.986461pt;}
.y33{bottom:519.466459pt;}
.y103{bottom:521.386458pt;}
.y121{bottom:525.706456pt;}
.y66{bottom:527.466456pt;}
.ybc{bottom:529.386455pt;}
.y9c{bottom:530.986454pt;}
.y13{bottom:534.666453pt;}
.y49{bottom:538.986451pt;}
.y102{bottom:542.506450pt;}
.y132{bottom:543.466449pt;}
.y32{bottom:546.986448pt;}
.y85{bottom:550.666446pt;}
.y120{bottom:553.226445pt;}
.y65{bottom:554.986445pt;}
.y9b{bottom:558.666443pt;}
.y12{bottom:562.186442pt;}
.y154{bottom:563.626441pt;}
.y101{bottom:563.786441pt;}
.y131{bottom:564.746441pt;}
.y48{bottom:566.666440pt;}
.y31{bottom:574.666437pt;}
.y11f{bottom:580.906434pt;}
.y64{bottom:582.666434pt;}
.y130{bottom:585.866432pt;}
.y84{bottom:586.186432pt;}
.y11{bottom:589.866431pt;}
.y100{bottom:592.906430pt;}
.y47{bottom:594.186429pt;}
.y153{bottom:595.306429pt;}
.y30{bottom:602.186426pt;}
.y63{bottom:610.186423pt;}
.y83{bottom:613.866421pt;}
.y152{bottom:614.026421pt;}
.y11e{bottom:616.426420pt;}
.y10{bottom:617.386420pt;}
.yfc{bottom:619.306419pt;}
.y12f{bottom:620.266419pt;}
.y46{bottom:621.866418pt;}
.yfd{bottom:624.587200pt;}
.yff{bottom:627.786416pt;}
.y2f{bottom:629.866415pt;}
.yfb{bottom:636.266412pt;}
.y62{bottom:637.866412pt;}
.y82{bottom:641.386410pt;}
.y11d{bottom:644.106409pt;}
.yf{bottom:645.066409pt;}
.y151{bottom:648.106407pt;}
.y45{bottom:649.386407pt;}
.yf7{bottom:657.066404pt;}
.y2e{bottom:657.386404pt;}
.yf8{bottom:662.347200pt;}
.y61{bottom:665.386401pt;}
.yfa{bottom:665.546400pt;}
.y81{bottom:669.066399pt;}
.y150{bottom:669.386399pt;}
.y11c{bottom:671.626398pt;}
.ye{bottom:672.586398pt;}
.yf6{bottom:674.026397pt;}
.y44{bottom:677.066396pt;}
.y2d{bottom:685.066393pt;}
.y14f{bottom:690.666390pt;}
.yf4{bottom:691.627200pt;}
.y60{bottom:693.066389pt;}
.yf3{bottom:694.826389pt;}
.y80{bottom:696.586388pt;}
.y11b{bottom:699.306387pt;}
.yd{bottom:700.266387pt;}
.y43{bottom:704.586385pt;}
.y2c{bottom:712.586382pt;}
.yef{bottom:715.626380pt;}
.y5f{bottom:720.586378pt;}
.yf0{bottom:720.907200pt;}
.yf2{bottom:724.106377pt;}
.y7f{bottom:724.266377pt;}
.y14e{bottom:725.066377pt;}
.y11a{bottom:726.826376pt;}
.yc{bottom:727.786376pt;}
.yd1{bottom:728.586375pt;}
.y42{bottom:732.266374pt;}
.yee{bottom:732.586374pt;}
.y2b{bottom:740.266371pt;}
.y14d{bottom:746.346368pt;}
.y70{bottom:748.266367pt;}
.y7e{bottom:751.786366pt;}
.yea{bottom:753.386365pt;}
.y119{bottom:754.506365pt;}
.y5e{bottom:756.266364pt;}
.yeb{bottom:758.667200pt;}
.y8d{bottom:759.786363pt;}
.yed{bottom:761.866362pt;}
.yb{bottom:763.466361pt;}
.y14c{bottom:767.306360pt;}
.y2a{bottom:767.786360pt;}
.ye9{bottom:770.346359pt;}
.y6f{bottom:775.786356pt;}
.y7d{bottom:779.466355pt;}
.y118{bottom:782.026354pt;}
.y5d{bottom:783.786353pt;}
.y8c{bottom:787.626352pt;}
.ye7{bottom:787.947200pt;}
.ye6{bottom:791.146350pt;}
.y29{bottom:795.466348pt;}
.ya{bottom:798.986347pt;}
.y14b{bottom:801.866346pt;}
.y6e{bottom:803.466345pt;}
.y7c{bottom:806.986344pt;}
.ye4{bottom:808.747200pt;}
.y5c{bottom:811.466342pt;}
.y8b{bottom:815.146341pt;}
.y117{bottom:817.706340pt;}
.y28{bottom:822.986337pt;}
.y14a{bottom:823.146337pt;}
.y6d{bottom:830.986334pt;}
.y9{bottom:834.666333pt;}
.ye3{bottom:835.946332pt;}
.y5b{bottom:838.986331pt;}
.y7b{bottom:842.666330pt;}
.y116{bottom:845.226329pt;}
.y27{bottom:850.666326pt;}
.ye2{bottom:857.066324pt;}
.y149{bottom:857.546324pt;}
.y9a{bottom:858.666323pt;}
.y5a{bottom:866.666320pt;}
.y6c{bottom:866.826320pt;}
.y8{bottom:870.186319pt;}
.y115{bottom:872.906318pt;}
.y26{bottom:878.186315pt;}
.y148{bottom:878.666315pt;}
.y8a{bottom:886.186312pt;}
.y59{bottom:894.186309pt;}
.y6b{bottom:894.346309pt;}
.y7{bottom:897.866308pt;}
.y25{bottom:905.866304pt;}
.y114{bottom:908.426303pt;}
.y147{bottom:913.066301pt;}
.y7a{bottom:913.866301pt;}
.y58{bottom:921.866298pt;}
.y6{bottom:933.386293pt;}
.y146{bottom:934.346293pt;}
.y113{bottom:936.106292pt;}
.ybb{bottom:941.386290pt;}
.y57{bottom:949.386287pt;}
.y145{bottom:955.466284pt;}
.y5{bottom:961.066282pt;}
.y112{bottom:963.626281pt;}
.y24{bottom:969.066279pt;}
.y56{bottom:977.066276pt;}
.y41{bottom:988.586271pt;}
.y144{bottom:990.026271pt;}
.y4{bottom:996.586268pt;}
.y23{bottom:1004.586265pt;}
.y143{bottom:1010.986262pt;}
.y3{bottom:1024.266257pt;}
.y22{bottom:1032.266254pt;}
.h5{height:16.480000pt;}
.h4{height:16.800000pt;}
.h1{height:44.718732pt;}
.h3{height:61.409975pt;}
.h7{height:62.049975pt;}
.h2{height:66.749973pt;}
.h9{height:95.329962pt;}
.h6{height:128.609949pt;}
.h8{height:129.249948pt;}
.h0{height:1122.666667pt;}
.wc{width:2.240000pt;}
.wb{width:2.400000pt;}
.wa{width:3.200000pt;}
.w4{width:4.000000pt;}
.w7{width:4.640000pt;}
.w8{width:4.960000pt;}
.w2{width:5.440000pt;}
.w6{width:6.720000pt;}
.w9{width:8.160000pt;}
.w1{width:41.600000pt;}
.w3{width:45.600000pt;}
.w5{width:52.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440083pt;}
.x6{left:118.879914pt;}
.x1b{left:122.399951pt;}
.x1c{left:126.079950pt;}
.xf{left:128.319949pt;}
.x3{left:151.199940pt;}
.x7{left:156.639937pt;}
.x14{left:160.159936pt;}
.x8{left:163.519935pt;}
.x4{left:255.200768pt;}
.x10{left:463.520000pt;}
.x9{left:477.920000pt;}
.x15{left:490.880000pt;}
.x11{left:492.799803pt;}
.x5{left:516.640323pt;}
.xa{left:519.520000pt;}
.x16{left:532.480000pt;}
.xb{left:541.440000pt;}
.x17{left:547.520000pt;}
.x1d{left:551.680000pt;}
.x1e{left:559.840000pt;}
.x12{left:564.159774pt;}
.x1f{left:580.800000pt;}
.xc{left:587.040000pt;}
.x20{left:588.960000pt;}
.x18{left:593.120000pt;}
.xd{left:598.240000pt;}
.x21{left:609.280000pt;}
.x19{left:613.600000pt;}
.x22{left:617.440000pt;}
.x23{left:637.600000pt;}
.x24{left:645.760000pt;}
.xe{left:650.400000pt;}
.x13{left:663.199735pt;}
.x1a{left:665.760000pt;}
.x1{left:671.519731pt;}
.x25{left:674.080000pt;}
}




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