
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249752,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.066205px;}
.v2{vertical-align:31.499999px;}
.v1{vertical-align:145.265619px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1470.108794px;}
.ls1{letter-spacing:1855.327217px;}
.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:0.000000px;}
.ws2{word-spacing:39.416302px;}
.ws1{word-spacing:1263.475373px;}
._15{margin-left:-31.267706px;}
._11{margin-left:-17.010593px;}
._e{margin-left:-14.174440px;}
._16{margin-left:-12.960656px;}
._0{margin-left:-10.693218px;}
._10{margin-left:-9.398686px;}
._12{margin-left:-8.368022px;}
._1{margin-left:-7.132270px;}
._5{margin-left:-5.421739px;}
._4{margin-left:-4.201875px;}
._8{margin-left:-3.084908px;}
._3{margin-left:-1.877188px;}
._6{width:1.008292px;}
._f{width:3.887612px;}
._3b{width:38.411528px;}
._3a{width:46.594246px;}
._2{width:125.921589px;}
._a{width:130.733993px;}
._19{width:162.655867px;}
._26{width:194.085576px;}
._1f{width:225.023029px;}
._21{width:233.741779px;}
._d{width:237.679279px;}
._25{width:290.343362px;}
._c{width:315.023071px;}
._2c{width:360.023024px;}
._22{width:364.944944px;}
._28{width:408.890232px;}
._2b{width:424.358981px;}
._3c{width:459.989199px;}
._13{width:465.755029px;}
._2a{width:483.773019px;}
._30{width:515.976187px;}
._14{width:522.548436px;}
._1b{width:540.023061px;}
._23{width:599.999599px;}
._3d{width:628.109100px;}
._1d{width:641.483972px;}
._34{width:707.226134px;}
._2f{width:712.780844px;}
._38{width:750.446597px;}
._b{width:754.335507px;}
._20{width:759.398052px;}
._24{width:760.663632px;}
._32{width:795.749591px;}
._37{width:810.914004px;}
._33{width:826.968384px;}
._35{width:839.953088px;}
._29{width:848.976173px;}
._7{width:855.031956px;}
._36{width:865.265587px;}
._17{width:867.819878px;}
._31{width:891.866752px;}
._18{width:931.663670px;}
._1a{width:935.038625px;}
._1e{width:1022.155831px;}
._1c{width:1041.632415px;}
._2d{width:1199.976159px;}
._2e{width:1443.257354px;}
._39{width:1597.246112px;}
._9{width:1916.023377px;}
._27{width:2042.004816px;}
.fc8{color:rgb(0,0,128);}
.fc6{color:rgb(255,101,132);}
.fc3{color:transparent;}
.fc1{color:rgb(139,116,61);}
.fc7{color:rgb(242,242,242);}
.fc5{color:rgb(204,204,204);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(51,51,51);}
.fs5{font-size:42.435000px;}
.fs6{font-size:48.599999px;}
.fs3{font-size:62.999997px;}
.fsb{font-size:87.164995px;}
.fsa{font-size:89.055001px;}
.fs2{font-size:97.199996px;}
.fs9{font-size:112.499995px;}
.fs4{font-size:120.059995px;}
.fs8{font-size:134.999994px;}
.fsd{font-size:135.809994px;}
.fsc{font-size:135.810003px;}
.fse{font-size:157.499993px;}
.fs10{font-size:161.877518px;}
.fs1{font-size:161.999993px;}
.fs11{font-size:181.799990px;}
.fs7{font-size:251.099985px;}
.fs0{font-size:341.819981px;}
.fsf{font-size:450.009593px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.125049px;}
.yc8{bottom:8.330812px;}
.y9{bottom:16.874999px;}
.yb4{bottom:25.875048px;}
.yab{bottom:38.249998px;}
.yb6{bottom:46.960037px;}
.y11{bottom:55.730695px;}
.yaa{bottom:67.499997px;}
.y10{bottom:93.259985px;}
.y9a{bottom:94.031561px;}
.ya9{bottom:101.249996px;}
.y48{bottom:119.249995px;}
.y12{bottom:122.221927px;}
.y20{bottom:127.124995px;}
.yf{bottom:130.789286px;}
.y3a{bottom:132.749994px;}
.y28{bottom:134.999994px;}
.yca{bottom:140.624994px;}
.y9d{bottom:145.140739px;}
.y66{bottom:146.249994px;}
.y47{bottom:148.499994px;}
.y74{bottom:158.624993px;}
.y39{bottom:161.999993px;}
.y27{bottom:164.249993px;}
.y7a{bottom:170.999993px;}
.y5a{bottom:172.124993px;}
.y46{bottom:177.749993px;}
.y1f{bottom:179.999992px;}
.y14{bottom:181.326387px;}
.yc9{bottom:192.374992px;}
.y9c{bottom:194.167928px;}
.y73{bottom:210.374991px;}
.y4a{bottom:220.499991px;}
.ycd{bottom:222.749991px;}
.y59{bottom:224.999991px;}
.y65{bottom:240.749990px;}
.y9b{bottom:240.900116px;}
.y25{bottom:242.999990px;}
.y85{bottom:247.499990px;}
.y38{bottom:253.124989px;}
.y1d{bottom:263.249989px;}
.yc7{bottom:263.250039px;}
.y6c{bottom:267.749989px;}
.yb{bottom:273.375038px;}
.ycc{bottom:274.499989px;}
.y58{bottom:277.874988px;}
.y72{bottom:285.749988px;}
.y37{bottom:289.124988px;}
.y13{bottom:290.802945px;}
.y3c{bottom:298.124988px;}
.y9f{bottom:300.340050px;}
.ya3{bottom:301.499987px;}
.y64{bottom:302.624987px;}
.ye{bottom:309.646694px;}
.y45{bottom:311.624987px;}
.y1c{bottom:316.124987px;}
.y36{bottom:326.249986px;}
.ycb{bottom:327.374986px;}
.y57{bottom:332.999986px;}
.y8{bottom:335.249986px;}
.y17{bottom:337.499986px;}
.y71{bottom:338.624986px;}
.yb3{bottom:341.999986px;}
.y4b{bottom:342.703111px;}
.y6b{bottom:344.249986px;}
.y84{bottom:348.749985px;}
.y99{bottom:351.000035px;}
.y63{bottom:354.374985px;}
.y1b{bottom:361.124985px;}
.y35{bottom:362.249985px;}
.y22{bottom:364.499985px;}
.y3d{bottom:369.685531px;}
.y91{bottom:383.624984px;}
.y56{bottom:385.874984px;}
.y70{bottom:391.499984px;}
.yb2{bottom:394.874984px;}
.y6a{bottom:397.124983px;}
.y34{bottom:399.374983px;}
.ybd{bottom:401.624983px;}
.y44{bottom:417.374983px;}
.y26{bottom:424.177722px;}
.y97{bottom:435.374982px;}
.ya2{bottom:436.499982px;}
.y33{bottom:437.624982px;}
.yb5{bottom:438.009141px;}
.y6f{bottom:444.374981px;}
.y7{bottom:446.624981px;}
.yd{bottom:447.090054px;}
.y69{bottom:448.874981px;}
.y83{bottom:449.999981px;}
.y8f{bottom:457.874981px;}
.y43{bottom:470.249980px;}
.y6{bottom:475.874980px;}
.yc6{bottom:479.249980px;}
.yc{bottom:484.900599px;}
.y23{bottom:488.249980px;}
.y55{bottom:490.499980px;}
.y1e{bottom:492.749979px;}
.y6e{bottom:496.124979px;}
.yb1{bottom:500.624979px;}
.y9e{bottom:501.938126px;}
.y5{bottom:505.124979px;}
.y8e{bottom:510.749979px;}
.y62{bottom:516.374978px;}
.y18{bottom:518.677718px;}
.y42{bottom:523.124978px;}
.y96{bottom:541.124977px;}
.y32{bottom:542.249977px;}
.y54{bottom:543.374977px;}
.y82{bottom:551.249977px;}
.yb0{bottom:552.374977px;}
.y16{bottom:561.374977px;}
.y8d{bottom:563.624977px;}
.yc5{bottom:566.999976px;}
.y61{bottom:569.249976px;}
.y7e{bottom:570.374976px;}
.ya1{bottom:571.499976px;}
.y41{bottom:574.874976px;}
.y31{bottom:586.124976px;}
.y95{bottom:593.999975px;}
.y53{bottom:596.249975px;}
.yc4{bottom:610.874975px;}
.y8c{bottom:616.499974px;}
.y60{bottom:622.124974px;}
.y40{bottom:627.749974px;}
.y30{bottom:629.999974px;}
.y4{bottom:643.499973px;}
.y94{bottom:646.874973px;}
.y52{bottom:649.124973px;}
.ybc{bottom:650.249973px;}
.y81{bottom:652.499973px;}
.yc3{bottom:654.749973px;}
.yaf{bottom:658.124973px;}
.y8b{bottom:669.374972px;}
.y2f{bottom:673.874972px;}
.y3f{bottom:680.624972px;}
.y67{bottom:696.374971px;}
.y93{bottom:698.624971px;}
.y51{bottom:700.874971px;}
.ybb{bottom:703.124971px;}
.yae{bottom:710.999970px;}
.y2e{bottom:717.749970px;}
.y8a{bottom:721.124970px;}
.y3{bottom:733.499969px;}
.y90{bottom:740.249969px;}
.yc2{bottom:742.499969px;}
.y80{bottom:752.624969px;}
.y50{bottom:753.749969px;}
.yba{bottom:755.999968px;}
.y2d{bottom:761.624968px;}
.y5f{bottom:782.999967px;}
.y92{bottom:785.249967px;}
.yc1{bottom:786.374967px;}
.y88{bottom:799.874967px;}
.y7d{bottom:800.999967px;}
.y2c{bottom:805.499966px;}
.y4f{bottom:806.624966px;}
.y89{bottom:807.749966px;}
.yb9{bottom:808.874966px;}
.yad{bottom:815.624966px;}
.yc0{bottom:830.249965px;}
.y7c{bottom:833.624965px;}
.y2{bottom:835.874965px;}
.ya0{bottom:842.624965px;}
.y79{bottom:844.874965px;}
.y2b{bottom:849.374965px;}
.y87{bottom:852.749964px;}
.y4e{bottom:859.499964px;}
.yb8{bottom:860.624964px;}
.ya8{bottom:872.999964px;}
.ybf{bottom:874.124964px;}
.y15{bottom:876.374963px;}
.y7f{bottom:887.624963px;}
.y5e{bottom:888.749963px;}
.y2a{bottom:893.249963px;}
.ya{bottom:896.624963px;}
.y78{bottom:897.749963px;}
.yac{bottom:902.249962px;}
.y3b{bottom:908.999962px;}
.ya7{bottom:913.499962px;}
.y7b{bottom:920.249962px;}
.y86{bottom:939.374961px;}
.y98{bottom:940.499961px;}
.y5d{bottom:941.624961px;}
.y4d{bottom:946.124961px;}
.y77{bottom:950.624960px;}
.ya6{bottom:964.124960px;}
.yb7{bottom:966.374960px;}
.y29{bottom:973.124959px;}
.y49{bottom:985.499959px;}
.y1a{bottom:992.249959px;}
.y5c{bottom:993.374959px;}
.y76{bottom:1002.374958px;}
.y24{bottom:1013.624958px;}
.ybe{bottom:1014.749958px;}
.ya5{bottom:1015.874958px;}
.y3e{bottom:1025.999957px;}
.y6d{bottom:1032.749957px;}
.y4c{bottom:1048.499956px;}
.y68{bottom:1061.999956px;}
.y19{bottom:1078.874955px;}
.y5b{bottom:1085.624955px;}
.y75{bottom:1088.999955px;}
.ya4{bottom:1101.374954px;}
.y21{bottom:1106.999954px;}
.h8{height:40.313250px;}
.ha{height:46.169999px;}
.h5{height:59.849998px;}
.h11{height:82.806746px;}
.hf{height:84.602251px;}
.h18{height:89.999996px;}
.h4{height:92.339996px;}
.he{height:106.874996px;}
.h7{height:114.056995px;}
.hd{height:128.249995px;}
.h13{height:129.979780px;}
.h12{height:130.085708px;}
.h14{height:149.624994px;}
.h17{height:153.783642px;}
.h3{height:153.899994px;}
.h10{height:153.971994px;}
.h19{height:172.709990px;}
.hb{height:185.399992px;}
.hc{height:238.544986px;}
.h9{height:259.322614px;}
.h2{height:324.728982px;}
.h16{height:427.509113px;}
.h6{height:562.499977px;}
.h15{height:1138.499953px;}
.h1{height:1186.874951px;}
.h0{height:1188.000000px;}
.w4{width:222.749991px;}
.w3{width:582.749976px;}
.w2{width:618.749974px;}
.w1{width:1583.999934px;}
.w0{width:1584.000000px;}
.x8f{left:-22.644416px;}
.x0{left:0.000000px;}
.x83{left:33.781334px;}
.x98{left:63.401859px;}
.x72{left:76.359372px;}
.x55{left:77.378903px;}
.x84{left:81.219751px;}
.x16{left:84.374996px;}
.x26{left:88.874996px;}
.x11{left:94.899324px;}
.x30{left:105.749996px;}
.x4f{left:107.490230px;}
.x54{left:110.109370px;}
.x4d{left:111.339839px;}
.x3d{left:112.499995px;}
.x29{left:116.999995px;}
.x5b{left:127.406245px;}
.xc{left:136.748362px;}
.x24{left:139.499994px;}
.x53{left:143.999994px;}
.xb{left:145.669179px;}
.x27{left:155.249994px;}
.x3f{left:157.499993px;}
.x42{left:168.855462px;}
.x6e{left:173.021477px;}
.x13{left:179.859798px;}
.x92{left:184.886711px;}
.x4c{left:191.988273px;}
.x6d{left:201.093742px;}
.x4b{left:206.982419px;}
.x88{left:214.119137px;}
.x5f{left:220.429678px;}
.x86{left:227.249991px;}
.x73{left:228.867178px;}
.x1{left:229.921865px;}
.x7b{left:234.953789px;}
.x19{left:240.574209px;}
.x75{left:247.769217px;}
.x7c{left:248.883780px;}
.xd{left:256.494537px;}
.x85{left:257.695302px;}
.x76{left:263.509681px;}
.x7f{left:264.613019px;}
.x71{left:270.791010px;}
.x80{left:277.499326px;}
.x46{left:280.705072px;}
.x3e{left:284.378894px;}
.x48{left:287.999988px;}
.x81{left:289.746642px;}
.x77{left:293.968226px;}
.x7d{left:294.986742px;}
.x43{left:303.662102px;}
.x78{left:305.480712px;}
.x63{left:308.408196px;}
.x4{left:311.326165px;}
.x79{left:312.895855px;}
.xf{left:316.815413px;}
.x7a{left:318.178175px;}
.x10{left:322.908969px;}
.x82{left:324.188296px;}
.x89{left:328.447258px;}
.xe{left:330.337124px;}
.x51{left:333.527330px;}
.x7e{left:336.180343px;}
.x1a{left:337.658195px;}
.x57{left:342.281236px;}
.x2{left:354.779288px;}
.x18{left:363.427725px;}
.x25{left:364.851547px;}
.x49{left:372.164047px;}
.x1f{left:376.277328px;}
.x61{left:380.970693px;}
.x36{left:386.367171px;}
.x41{left:388.634755px;}
.x21{left:396.404286px;}
.x4a{left:406.740223px;}
.x1d{left:410.800764px;}
.x23{left:417.796858px;}
.x5a{left:420.503889px;}
.x1c{left:424.388660px;}
.x38{left:435.955066px;}
.x3{left:440.384753px;}
.x37{left:442.019513px;}
.x6b{left:445.236315px;}
.x45{left:450.105450px;}
.x67{left:455.554669px;}
.x8d{left:466.119127px;}
.x28{left:467.455064px;}
.x34{left:473.677720px;}
.x5d{left:478.318345px;}
.x35{left:480.656230px;}
.xa{left:482.624980px;}
.x5c{left:486.773417px;}
.x12{left:488.365548px;}
.x65{left:495.263657px;}
.x8b{left:498.744125px;}
.x64{left:512.595687px;}
.x56{left:530.947249px;}
.x8e{left:533.953103px;}
.x20{left:549.052717px;}
.x31{left:558.615217px;}
.x22{left:564.908185px;}
.x95{left:570.480445px;}
.x5{left:575.560529px;}
.x33{left:581.660132px;}
.x32{left:588.164038px;}
.x47{left:597.216778px;}
.x58{left:599.624975px;}
.x68{left:603.158184px;}
.x93{left:609.415996px;}
.x44{left:615.796849px;}
.x6c{left:619.769505px;}
.x2a{left:626.642558px;}
.x15{left:628.839818px;}
.x7{left:631.511692px;}
.x69{left:641.759745px;}
.x6a{left:643.165994px;}
.x5e{left:645.626932px;}
.x94{left:653.449192px;}
.x2c{left:654.767556px;}
.x4e{left:660.603494px;}
.x9{left:667.775368px;}
.x66{left:674.314431px;}
.x1e{left:682.031222px;}
.x2b{left:693.017555px;}
.x87{left:700.646461px;}
.x62{left:704.039033px;}
.x52{left:705.902314px;}
.x14{left:719.578095px;}
.x3b{left:729.931616px;}
.x74{left:772.874968px;}
.x99{left:777.357395px;}
.x8a{left:808.206998px;}
.x96{left:811.107394px;}
.x50{left:818.349581px;}
.x59{left:819.949185px;}
.x9a{left:832.482393px;}
.x91{left:845.837146px;}
.x6{left:847.142548px;}
.x1b{left:852.574183px;}
.x97{left:857.232392px;}
.x70{left:916.646452px;}
.x8c{left:925.505826px;}
.x2d{left:1040.519488px;}
.x2f{left:1068.644487px;}
.x2e{left:1106.894485px;}
.x6f{left:1140.978474px;}
.x60{left:1158.064410px;}
.x90{left:1169.960207px;}
.x3a{left:1538.718686px;}
.x40{left:1539.878842px;}
.x17{left:1547.472592px;}
.x39{left:1551.849550px;}
.x3c{left:1553.009707px;}
.x8{left:1560.603456px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.947737pt;}
.v2{vertical-align:27.999999pt;}
.v1{vertical-align:129.124995pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1306.763372pt;}
.ls1{letter-spacing:1649.179749pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:35.036713pt;}
.ws1{word-spacing:1123.089220pt;}
._15{margin-left:-27.793516pt;}
._11{margin-left:-15.120527pt;}
._e{margin-left:-12.599502pt;}
._16{margin-left:-11.520583pt;}
._0{margin-left:-9.505082pt;}
._10{margin-left:-8.354388pt;}
._12{margin-left:-7.438242pt;}
._1{margin-left:-6.339796pt;}
._5{margin-left:-4.819323pt;}
._4{margin-left:-3.735000pt;}
._8{margin-left:-2.742140pt;}
._3{margin-left:-1.668612pt;}
._6{width:0.896260pt;}
._f{width:3.455655pt;}
._3b{width:34.143581pt;}
._3a{width:41.417107pt;}
._2{width:111.930301pt;}
._a{width:116.207994pt;}
._19{width:144.582993pt;}
._26{width:172.520512pt;}
._1f{width:200.020471pt;}
._21{width:207.770470pt;}
._d{width:211.270470pt;}
._25{width:258.082988pt;}
._c{width:280.020507pt;}
._2c{width:320.020466pt;}
._22{width:324.395505pt;}
._28{width:363.457984pt;}
._2b{width:377.207983pt;}
._3c{width:408.879288pt;}
._13{width:414.004470pt;}
._2a{width:430.020461pt;}
._30{width:458.645500pt;}
._14{width:464.487499pt;}
._1b{width:480.020499pt;}
._23{width:533.332977pt;}
._3d{width:558.319200pt;}
._1d{width:570.207975pt;}
._34{width:628.645453pt;}
._2f{width:633.582972pt;}
._38{width:667.063642pt;}
._b{width:670.520451pt;}
._20{width:675.020491pt;}
._24{width:676.145451pt;}
._32{width:707.332969pt;}
._37{width:720.812448pt;}
._33{width:735.083008pt;}
._35{width:746.624967pt;}
._29{width:754.645487pt;}
._7{width:760.028406pt;}
._36{width:769.124966pt;}
._17{width:771.395447pt;}
._31{width:792.770446pt;}
._18{width:828.145484pt;}
._1a{width:831.145444pt;}
._1e{width:908.582961pt;}
._1c{width:925.895480pt;}
._2d{width:1066.645474pt;}
._2e{width:1282.895425pt;}
._39{width:1419.774322pt;}
._9{width:1703.131890pt;}
._27{width:1815.115392pt;}
.fs5{font-size:37.720000pt;}
.fs6{font-size:43.199999pt;}
.fs3{font-size:55.999998pt;}
.fsb{font-size:77.479996pt;}
.fsa{font-size:79.160001pt;}
.fs2{font-size:86.399996pt;}
.fs9{font-size:99.999996pt;}
.fs4{font-size:106.719996pt;}
.fs8{font-size:119.999995pt;}
.fsd{font-size:120.719995pt;}
.fsc{font-size:120.720003pt;}
.fse{font-size:139.999994pt;}
.fs10{font-size:143.891127pt;}
.fs1{font-size:143.999994pt;}
.fs11{font-size:161.599991pt;}
.fs7{font-size:223.199987pt;}
.fs0{font-size:303.839983pt;}
.fsf{font-size:400.008527pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.000044pt;}
.yc8{bottom:7.405166pt;}
.y9{bottom:14.999999pt;}
.yb4{bottom:23.000043pt;}
.yab{bottom:33.999999pt;}
.yb6{bottom:41.742255pt;}
.y11{bottom:49.538396pt;}
.yaa{bottom:59.999997pt;}
.y10{bottom:82.897764pt;}
.y9a{bottom:83.583610pt;}
.ya9{bottom:89.999996pt;}
.y48{bottom:105.999996pt;}
.y12{bottom:108.641712pt;}
.y20{bottom:112.999995pt;}
.yf{bottom:116.257143pt;}
.y3a{bottom:117.999995pt;}
.y28{bottom:119.999995pt;}
.yca{bottom:124.999995pt;}
.y9d{bottom:129.013991pt;}
.y66{bottom:129.999995pt;}
.y47{bottom:131.999994pt;}
.y74{bottom:140.999994pt;}
.y39{bottom:143.999994pt;}
.y27{bottom:145.999994pt;}
.y7a{bottom:151.999994pt;}
.y5a{bottom:152.999994pt;}
.y46{bottom:157.999993pt;}
.y1f{bottom:159.999993pt;}
.y14{bottom:161.179011pt;}
.yc9{bottom:170.999993pt;}
.y9c{bottom:172.593714pt;}
.y73{bottom:186.999992pt;}
.y4a{bottom:195.999992pt;}
.ycd{bottom:197.999992pt;}
.y59{bottom:199.999992pt;}
.y65{bottom:213.999991pt;}
.y9b{bottom:214.133437pt;}
.y25{bottom:215.999991pt;}
.y85{bottom:219.999991pt;}
.y38{bottom:224.999991pt;}
.y1d{bottom:233.999990pt;}
.yc7{bottom:234.000034pt;}
.y6c{bottom:237.999990pt;}
.yb{bottom:243.000034pt;}
.ycc{bottom:243.999990pt;}
.y58{bottom:246.999990pt;}
.y72{bottom:253.999989pt;}
.y37{bottom:256.999989pt;}
.y13{bottom:258.491507pt;}
.y3c{bottom:264.999989pt;}
.y9f{bottom:266.968933pt;}
.ya3{bottom:267.999989pt;}
.y64{bottom:268.999989pt;}
.ye{bottom:275.241506pt;}
.y45{bottom:276.999988pt;}
.y1c{bottom:280.999988pt;}
.y36{bottom:289.999988pt;}
.ycb{bottom:290.999988pt;}
.y57{bottom:295.999988pt;}
.y8{bottom:297.999988pt;}
.y17{bottom:299.999988pt;}
.y71{bottom:300.999987pt;}
.yb3{bottom:303.999987pt;}
.y4b{bottom:304.624987pt;}
.y6b{bottom:305.999987pt;}
.y84{bottom:309.999987pt;}
.y99{bottom:312.000031pt;}
.y63{bottom:314.999987pt;}
.y1b{bottom:320.999987pt;}
.y35{bottom:321.999987pt;}
.y22{bottom:323.999986pt;}
.y3d{bottom:328.609361pt;}
.y91{bottom:340.999986pt;}
.y56{bottom:342.999986pt;}
.y70{bottom:347.999985pt;}
.yb2{bottom:350.999985pt;}
.y6a{bottom:352.999985pt;}
.y34{bottom:354.999985pt;}
.ybd{bottom:356.999985pt;}
.y44{bottom:370.999985pt;}
.y26{bottom:377.046864pt;}
.y97{bottom:386.999984pt;}
.ya2{bottom:387.999984pt;}
.y33{bottom:388.999984pt;}
.yb5{bottom:389.341458pt;}
.y6f{bottom:394.999984pt;}
.y7{bottom:396.999983pt;}
.yd{bottom:397.413381pt;}
.y69{bottom:398.999983pt;}
.y83{bottom:399.999983pt;}
.y8f{bottom:406.999983pt;}
.y43{bottom:417.999983pt;}
.y6{bottom:422.999982pt;}
.yc6{bottom:425.999982pt;}
.yc{bottom:431.022755pt;}
.y23{bottom:433.999982pt;}
.y55{bottom:435.999982pt;}
.y1e{bottom:437.999982pt;}
.y6e{bottom:440.999982pt;}
.yb1{bottom:444.999981pt;}
.y9e{bottom:446.167223pt;}
.y5{bottom:448.999981pt;}
.y8e{bottom:453.999981pt;}
.y62{bottom:458.999981pt;}
.y18{bottom:461.046861pt;}
.y42{bottom:464.999981pt;}
.y96{bottom:480.999980pt;}
.y32{bottom:481.999980pt;}
.y54{bottom:482.999980pt;}
.y82{bottom:489.999980pt;}
.yb0{bottom:490.999980pt;}
.y16{bottom:498.999979pt;}
.y8d{bottom:500.999979pt;}
.yc5{bottom:503.999979pt;}
.y61{bottom:505.999979pt;}
.y7e{bottom:506.999979pt;}
.ya1{bottom:507.999979pt;}
.y41{bottom:510.999979pt;}
.y31{bottom:520.999978pt;}
.y95{bottom:527.999978pt;}
.y53{bottom:529.999978pt;}
.yc4{bottom:542.999977pt;}
.y8c{bottom:547.999977pt;}
.y60{bottom:552.999977pt;}
.y40{bottom:557.999977pt;}
.y30{bottom:559.999977pt;}
.y4{bottom:571.999976pt;}
.y94{bottom:574.999976pt;}
.y52{bottom:576.999976pt;}
.ybc{bottom:577.999976pt;}
.y81{bottom:579.999976pt;}
.yc3{bottom:581.999976pt;}
.yaf{bottom:584.999976pt;}
.y8b{bottom:594.999975pt;}
.y2f{bottom:598.999975pt;}
.y3f{bottom:604.999975pt;}
.y67{bottom:618.999974pt;}
.y93{bottom:620.999974pt;}
.y51{bottom:622.999974pt;}
.ybb{bottom:624.999974pt;}
.yae{bottom:631.999974pt;}
.y2e{bottom:637.999973pt;}
.y8a{bottom:640.999973pt;}
.y3{bottom:651.999973pt;}
.y90{bottom:657.999973pt;}
.yc2{bottom:659.999972pt;}
.y80{bottom:668.999972pt;}
.y50{bottom:669.999972pt;}
.yba{bottom:671.999972pt;}
.y2d{bottom:676.999972pt;}
.y5f{bottom:695.999971pt;}
.y92{bottom:697.999971pt;}
.yc1{bottom:698.999971pt;}
.y88{bottom:710.999970pt;}
.y7d{bottom:711.999970pt;}
.y2c{bottom:715.999970pt;}
.y4f{bottom:716.999970pt;}
.y89{bottom:717.999970pt;}
.yb9{bottom:718.999970pt;}
.yad{bottom:724.999970pt;}
.yc0{bottom:737.999969pt;}
.y7c{bottom:740.999969pt;}
.y2{bottom:742.999969pt;}
.ya0{bottom:748.999969pt;}
.y79{bottom:750.999969pt;}
.y2b{bottom:754.999969pt;}
.y87{bottom:757.999968pt;}
.y4e{bottom:763.999968pt;}
.yb8{bottom:764.999968pt;}
.ya8{bottom:775.999968pt;}
.ybf{bottom:776.999968pt;}
.y15{bottom:778.999968pt;}
.y7f{bottom:788.999967pt;}
.y5e{bottom:789.999967pt;}
.y2a{bottom:793.999967pt;}
.ya{bottom:796.999967pt;}
.y78{bottom:797.999967pt;}
.yac{bottom:801.999967pt;}
.y3b{bottom:807.999966pt;}
.ya7{bottom:811.999966pt;}
.y7b{bottom:817.999966pt;}
.y86{bottom:834.999965pt;}
.y98{bottom:835.999965pt;}
.y5d{bottom:836.999965pt;}
.y4d{bottom:840.999965pt;}
.y77{bottom:844.999965pt;}
.ya6{bottom:856.999964pt;}
.yb7{bottom:858.999964pt;}
.y29{bottom:864.999964pt;}
.y49{bottom:875.999963pt;}
.y1a{bottom:881.999963pt;}
.y5c{bottom:882.999963pt;}
.y76{bottom:890.999963pt;}
.y24{bottom:900.999962pt;}
.ybe{bottom:901.999962pt;}
.ya5{bottom:902.999962pt;}
.y3e{bottom:911.999962pt;}
.y6d{bottom:917.999962pt;}
.y4c{bottom:931.999961pt;}
.y68{bottom:943.999961pt;}
.y19{bottom:958.999960pt;}
.y5b{bottom:964.999960pt;}
.y75{bottom:967.999960pt;}
.ya4{bottom:978.999959pt;}
.y21{bottom:983.999959pt;}
.h8{height:35.834000pt;}
.ha{height:41.039999pt;}
.h5{height:53.199998pt;}
.h11{height:73.605996pt;}
.hf{height:75.202001pt;}
.h18{height:79.999997pt;}
.h4{height:82.079997pt;}
.he{height:94.999996pt;}
.h7{height:101.383996pt;}
.hd{height:113.999995pt;}
.h13{height:115.537582pt;}
.h12{height:115.631740pt;}
.h14{height:132.999994pt;}
.h17{height:136.696571pt;}
.h3{height:136.799994pt;}
.h10{height:136.863994pt;}
.h19{height:153.519991pt;}
.hb{height:164.799993pt;}
.hc{height:212.039987pt;}
.h9{height:230.508990pt;}
.h2{height:288.647984pt;}
.h16{height:380.008100pt;}
.h6{height:499.999979pt;}
.h15{height:1011.999958pt;}
.h1{height:1054.999956pt;}
.h0{height:1056.000000pt;}
.w4{width:197.999992pt;}
.w3{width:517.999978pt;}
.w2{width:549.999977pt;}
.w1{width:1407.999941pt;}
.w0{width:1408.000000pt;}
.x8f{left:-20.128370pt;}
.x0{left:0.000000pt;}
.x83{left:30.027853pt;}
.x98{left:56.357208pt;}
.x72{left:67.874997pt;}
.x55{left:68.781247pt;}
.x84{left:72.195334pt;}
.x16{left:74.999997pt;}
.x26{left:78.999997pt;}
.x11{left:84.354954pt;}
.x30{left:93.999996pt;}
.x4f{left:95.546871pt;}
.x54{left:97.874996pt;}
.x4d{left:98.968746pt;}
.x3d{left:99.999996pt;}
.x29{left:103.999996pt;}
.x5b{left:113.249995pt;}
.xc{left:121.554099pt;}
.x24{left:123.999995pt;}
.x53{left:127.999995pt;}
.xb{left:129.483715pt;}
.x27{left:137.999994pt;}
.x3f{left:139.999994pt;}
.x42{left:150.093744pt;}
.x6e{left:153.796869pt;}
.x13{left:159.875376pt;}
.x92{left:164.343743pt;}
.x4c{left:170.656243pt;}
.x6d{left:178.749993pt;}
.x4b{left:183.984372pt;}
.x88{left:190.328122pt;}
.x5f{left:195.937492pt;}
.x86{left:201.999992pt;}
.x73{left:203.437492pt;}
.x1{left:204.374991pt;}
.x7b{left:208.847812pt;}
.x19{left:213.843741pt;}
.x75{left:220.239304pt;}
.x7c{left:221.230027pt;}
.xd{left:227.995144pt;}
.x85{left:229.062490pt;}
.x76{left:234.230828pt;}
.x7f{left:235.211572pt;}
.x71{left:240.703120pt;}
.x80{left:246.666067pt;}
.x46{left:249.515620pt;}
.x3e{left:252.781239pt;}
.x48{left:255.999989pt;}
.x81{left:257.552571pt;}
.x77{left:261.305089pt;}
.x7d{left:262.210437pt;}
.x43{left:269.921869pt;}
.x78{left:271.538411pt;}
.x63{left:274.140619pt;}
.x4{left:276.734368pt;}
.x79{left:278.129648pt;}
.xf{left:281.613700pt;}
.x7a{left:282.825045pt;}
.x10{left:287.030195pt;}
.x82{left:288.167374pt;}
.x89{left:291.953118pt;}
.xe{left:293.633000pt;}
.x51{left:296.468738pt;}
.x7e{left:298.826971pt;}
.x1a{left:300.140617pt;}
.x57{left:304.249987pt;}
.x2{left:315.359367pt;}
.x18{left:323.046867pt;}
.x25{left:324.312486pt;}
.x49{left:330.812486pt;}
.x1f{left:334.468736pt;}
.x61{left:338.640616pt;}
.x36{left:343.437486pt;}
.x41{left:345.453116pt;}
.x21{left:352.359365pt;}
.x4a{left:361.546865pt;}
.x1d{left:365.156235pt;}
.x23{left:371.374985pt;}
.x5a{left:373.781234pt;}
.x1c{left:377.234364pt;}
.x38{left:387.515614pt;}
.x3{left:391.453114pt;}
.x37{left:392.906234pt;}
.x6b{left:395.765614pt;}
.x45{left:400.093733pt;}
.x67{left:404.937483pt;}
.x8d{left:414.328113pt;}
.x28{left:415.515613pt;}
.x34{left:421.046862pt;}
.x5d{left:425.171862pt;}
.x35{left:427.249982pt;}
.xa{left:428.999982pt;}
.x5c{left:432.687482pt;}
.x12{left:434.102709pt;}
.x65{left:440.234362pt;}
.x8b{left:443.328112pt;}
.x64{left:455.640611pt;}
.x56{left:471.953110pt;}
.x8e{left:474.624980pt;}
.x20{left:488.046860pt;}
.x31{left:496.546859pt;}
.x22{left:502.140609pt;}
.x95{left:507.093729pt;}
.x5{left:511.609359pt;}
.x33{left:517.031228pt;}
.x32{left:522.812478pt;}
.x47{left:530.859358pt;}
.x58{left:532.999978pt;}
.x68{left:536.140608pt;}
.x93{left:541.703107pt;}
.x44{left:547.374977pt;}
.x6c{left:550.906227pt;}
.x2a{left:557.015607pt;}
.x15{left:558.968727pt;}
.x7{left:561.343727pt;}
.x69{left:570.453106pt;}
.x6a{left:571.703106pt;}
.x5e{left:573.890606pt;}
.x94{left:580.843726pt;}
.x2c{left:582.015606pt;}
.x4e{left:587.203106pt;}
.x9{left:593.578105pt;}
.x66{left:599.390605pt;}
.x1e{left:606.249975pt;}
.x2b{left:616.015604pt;}
.x87{left:622.796854pt;}
.x62{left:625.812474pt;}
.x52{left:627.468724pt;}
.x14{left:639.624973pt;}
.x3b{left:648.828103pt;}
.x74{left:686.999971pt;}
.x99{left:690.984351pt;}
.x8a{left:718.406220pt;}
.x96{left:720.984350pt;}
.x50{left:727.421850pt;}
.x59{left:728.843720pt;}
.x9a{left:739.984349pt;}
.x91{left:751.855241pt;}
.x6{left:753.015599pt;}
.x1b{left:757.843718pt;}
.x97{left:761.984348pt;}
.x70{left:814.796846pt;}
.x8c{left:822.671846pt;}
.x2d{left:924.906211pt;}
.x2f{left:949.906210pt;}
.x2e{left:983.906209pt;}
.x6f{left:1014.203088pt;}
.x60{left:1029.390587pt;}
.x90{left:1039.964629pt;}
.x3a{left:1367.749943pt;}
.x40{left:1368.781193pt;}
.x17{left:1375.531193pt;}
.x39{left:1379.421823pt;}
.x3c{left:1380.453072pt;}
.x8{left:1387.203072pt;}
}




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