
    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_52fb1de549cb87a65c5ac286.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd673e18215f56c80a90b173.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.063477;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_23315fee7ea72cccc762f356.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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;}
.m4{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.019787px;}
.ls0{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.189300px;}
.ls3{letter-spacing:0.375684px;}
.ls8{letter-spacing:0.378514px;}
.ls5{letter-spacing:0.378602px;}
.ls6{letter-spacing:5.232418px;}
.ls4{letter-spacing:8.622717px;}
.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;}
}
.ws4{word-spacing:-16.579781px;}
.ws0{word-spacing:-16.559993px;}
.ws7{word-spacing:-15.318596px;}
.ws8{word-spacing:-15.318508px;}
.ws5{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.499995px;}
.ws6{word-spacing:-12.059995px;}
.ws1{word-spacing:-10.439996px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-16.559993px;}
._18{margin-left:-2.409866px;}
._a{margin-left:-1.338111px;}
._2{width:1.042397px;}
._d{width:3.024517px;}
._12{width:4.167912px;}
._11{width:5.457497px;}
._e{width:7.334019px;}
._f{width:8.504287px;}
._10{width:9.609869px;}
._c{width:10.708953px;}
._b{width:11.958213px;}
._16{width:13.052279px;}
._15{width:14.334766px;}
._14{width:15.386567px;}
._17{width:18.119710px;}
._19{width:19.283550px;}
._1a{width:21.157750px;}
._1b{width:23.496477px;}
._9{width:96.184099px;}
._1{width:228.744067px;}
._6{width:267.647667px;}
._5{width:278.168284px;}
._3{width:444.873278px;}
._8{width:479.454720px;}
._7{width:535.551243px;}
._4{width:581.284057px;}
._0{width:2061.881175px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.999986px;}
.fs1{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs5{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.959320px;}
.y2{bottom:195.780600px;}
.y1{bottom:199.739920px;}
.y2b{bottom:226.199910px;}
.y73{bottom:227.639909px;}
.y84{bottom:227.819909px;}
.yc6{bottom:228.359909px;}
.y54{bottom:229.619908px;}
.y9f{bottom:232.139907px;}
.y2a{bottom:241.139904px;}
.y9e{bottom:245.459902px;}
.y29{bottom:247.079901px;}
.y72{bottom:247.439901px;}
.yed{bottom:247.619901px;}
.y83{bottom:247.979901px;}
.yc5{bottom:248.159901px;}
.y53{bottom:249.419900px;}
.y28{bottom:259.139896px;}
.y110{bottom:260.399896px;}
.y9d{bottom:265.259894px;}
.y117{bottom:267.239893px;}
.yec{bottom:267.419893px;}
.y82{bottom:267.959893px;}
.yc4{bottom:268.139893px;}
.y52{bottom:269.219892px;}
.y71{bottom:271.739891px;}
.y27{bottom:274.259890px;}
.y132{bottom:277.139889px;}
.y10f{bottom:281.819887px;}
.y9b{bottom:285.059886px;}
.y116{bottom:287.039885px;}
.yeb{bottom:287.219885px;}
.yc3{bottom:287.759885px;}
.y81{bottom:287.939885px;}
.y51{bottom:289.019884px;}
.y26{bottom:289.199884px;}
.y70{bottom:291.539883px;}
.y9c{bottom:292.619883px;}
.y131{bottom:295.319882px;}
.y10e{bottom:301.619879px;}
.y25{bottom:304.139878px;}
.y9a{bottom:305.039878px;}
.y115{bottom:306.839877px;}
.yea{bottom:307.199877px;}
.yc2{bottom:307.559877px;}
.y80{bottom:307.919877px;}
.y50{bottom:308.819876px;}
.y6f{bottom:311.339875px;}
.y130{bottom:316.199874px;}
.y24{bottom:319.259872px;}
.y10d{bottom:321.419871px;}
.y99{bottom:324.839870px;}
.y114{bottom:326.639869px;}
.ye9{bottom:326.999869px;}
.yc1{bottom:327.179869px;}
.y7f{bottom:328.079869px;}
.y4f{bottom:328.619869px;}
.y6e{bottom:331.139868px;}
.y23{bottom:334.199866px;}
.y12f{bottom:337.079865px;}
.y10c{bottom:341.219864px;}
.y98{bottom:344.819862px;}
.y113{bottom:346.439861px;}
.yc0{bottom:346.799861px;}
.ye8{bottom:346.979861px;}
.y7e{bottom:348.059861px;}
.y4e{bottom:348.419861px;}
.y6d{bottom:350.939860px;}
.y22{bottom:353.459859px;}
.y12e{bottom:355.079858px;}
.y10b{bottom:361.199856px;}
.y97{bottom:364.619854px;}
.y112{bottom:366.239854px;}
.ybf{bottom:366.419853px;}
.ye7{bottom:366.779853px;}
.y7d{bottom:368.039853px;}
.y4d{bottom:368.219853px;}
.y6c{bottom:370.739852px;}
.y12d{bottom:373.079851px;}
.y21{bottom:377.939849px;}
.y10a{bottom:381.179848px;}
.y96{bottom:384.599846px;}
.ybe{bottom:386.039846px;}
.ye6{bottom:386.759845px;}
.y4c{bottom:388.019845px;}
.y6b{bottom:390.539844px;}
.y12c{bottom:391.259843px;}
.y20{bottom:398.099841px;}
.y109{bottom:401.159840px;}
.y95{bottom:404.399838px;}
.ybd{bottom:405.659838px;}
.y111{bottom:405.839838px;}
.ye5{bottom:406.559837px;}
.y4b{bottom:407.819837px;}
.y7c{bottom:408.179837px;}
.y6a{bottom:410.339836px;}
.y12b{bottom:412.139835px;}
.y1f{bottom:418.079833px;}
.y108{bottom:420.959832px;}
.y94{bottom:424.199830px;}
.ye4{bottom:426.359829px;}
.y4a{bottom:427.619829px;}
.y7b{bottom:428.159829px;}
.ybc{bottom:429.959828px;}
.y69{bottom:430.139828px;}
.y12a{bottom:430.319828px;}
.y1e{bottom:438.239825px;}
.y107{bottom:440.939824px;}
.y93{bottom:444.179822px;}
.ye3{bottom:446.339821px;}
.y49{bottom:447.419821px;}
.y7a{bottom:448.139821px;}
.ybb{bottom:449.579820px;}
.y68{bottom:449.939820px;}
.y129{bottom:451.199820px;}
.y1d{bottom:458.399817px;}
.y106{bottom:460.919816px;}
.y92{bottom:463.979814px;}
.ye2{bottom:466.139814px;}
.y48{bottom:467.219813px;}
.y79{bottom:468.119813px;}
.yba{bottom:469.199812px;}
.y67{bottom:469.739812px;}
.y1c{bottom:478.379809px;}
.y105{bottom:480.899808px;}
.y91{bottom:483.959806px;}
.ye1{bottom:486.119806px;}
.y47{bottom:487.019805px;}
.y128{bottom:487.199805px;}
.y78{bottom:488.279805px;}
.yb9{bottom:488.819804px;}
.y66{bottom:489.539804px;}
.y1b{bottom:498.539801px;}
.y104{bottom:500.879800px;}
.y90{bottom:503.759798px;}
.y127{bottom:505.199798px;}
.ye0{bottom:505.919798px;}
.y46{bottom:506.819797px;}
.y77{bottom:508.259797px;}
.yb8{bottom:508.439797px;}
.y65{bottom:509.339796px;}
.y1a{bottom:518.699793px;}
.y103{bottom:520.859792px;}
.y8f{bottom:523.559791px;}
.ydf{bottom:525.719790px;}
.y126{bottom:526.079790px;}
.y45{bottom:526.619789px;}
.yb7{bottom:528.059789px;}
.y76{bottom:528.239789px;}
.y64{bottom:529.139788px;}
.y19{bottom:538.679785px;}
.y102{bottom:540.659784px;}
.y8e{bottom:543.539783px;}
.y125{bottom:544.079782px;}
.yde{bottom:545.699782px;}
.y44{bottom:546.599781px;}
.yb6{bottom:547.859781px;}
.y75{bottom:548.219781px;}
.y63{bottom:548.939780px;}
.y18{bottom:558.839776px;}
.y101{bottom:560.639776px;}
.y124{bottom:562.259775px;}
.y8d{bottom:563.339775px;}
.ydd{bottom:565.499774px;}
.y43{bottom:566.579773px;}
.yb5{bottom:567.479773px;}
.y74{bottom:568.379773px;}
.y62{bottom:568.739773px;}
.y100{bottom:580.619768px;}
.y123{bottom:583.139767px;}
.y8c{bottom:583.319767px;}
.y17{bottom:583.499767px;}
.ydc{bottom:585.479766px;}
.y42{bottom:586.559765px;}
.yb4{bottom:587.099765px;}
.y61{bottom:588.539765px;}
.yff{bottom:600.599760px;}
.y122{bottom:601.319759px;}
.y8b{bottom:603.119759px;}
.y16{bottom:603.479759px;}
.ydb{bottom:605.279758px;}
.y41{bottom:606.359757px;}
.yb3{bottom:606.719757px;}
.y60{bottom:608.339757px;}
.yfe{bottom:620.579752px;}
.y121{bottom:622.199751px;}
.y8a{bottom:623.099751px;}
.y15{bottom:623.639751px;}
.yda{bottom:625.259750px;}
.y40{bottom:626.339749px;}
.y5f{bottom:628.139749px;}
.yfd{bottom:640.559744px;}
.y89{bottom:642.899743px;}
.y120{bottom:643.079743px;}
.y13{bottom:643.799742px;}
.yd9{bottom:645.059742px;}
.yb2{bottom:645.959742px;}
.y3f{bottom:646.319741px;}
.y5e{bottom:647.939741px;}
.y14{bottom:651.359739px;}
.yfc{bottom:660.359736px;}
.y11f{bottom:661.259735px;}
.y88{bottom:662.699735px;}
.y12{bottom:663.779734px;}
.yd8{bottom:664.859734px;}
.yb1{bottom:665.759734px;}
.y3e{bottom:666.299733px;}
.y5d{bottom:667.739733px;}
.yfb{bottom:680.339728px;}
.y11e{bottom:682.139727px;}
.y87{bottom:682.679727px;}
.y11{bottom:683.939726px;}
.yd7{bottom:684.839726px;}
.yb0{bottom:685.379726px;}
.y3d{bottom:686.279725px;}
.y5c{bottom:687.539725px;}
.y11d{bottom:700.319720px;}
.y86{bottom:702.479719px;}
.y10{bottom:704.099718px;}
.yd6{bottom:704.639718px;}
.yfa{bottom:704.819718px;}
.y3c{bottom:706.259717px;}
.y5b{bottom:707.339717px;}
.yaf{bottom:709.499716px;}
.y11c{bottom:721.199712px;}
.y85{bottom:722.459711px;}
.yf{bottom:724.079710px;}
.yd5{bottom:724.619710px;}
.yf9{bottom:724.799710px;}
.y3b{bottom:726.059710px;}
.y5a{bottom:727.139709px;}
.yae{bottom:729.119708px;}
.y11b{bottom:739.199704px;}
.ye{bottom:744.239702px;}
.yd4{bottom:744.599702px;}
.yf7{bottom:744.779702px;}
.y3a{bottom:746.039702px;}
.y59{bottom:746.939701px;}
.yad{bottom:748.739701px;}
.yf8{bottom:752.339699px;}
.y11a{bottom:760.079696px;}
.yd{bottom:764.399694px;}
.yd3{bottom:764.579694px;}
.yf6{bottom:764.759694px;}
.y39{bottom:766.019694px;}
.y58{bottom:766.739693px;}
.yac{bottom:768.359693px;}
.y119{bottom:778.259689px;}
.yc{bottom:784.379686px;}
.yd2{bottom:784.559686px;}
.y38{bottom:785.999686px;}
.y57{bottom:786.539685px;}
.yab{bottom:788.159685px;}
.yd1{bottom:804.359678px;}
.yb{bottom:804.539678px;}
.y37{bottom:805.979678px;}
.y56{bottom:806.339677px;}
.yaa{bottom:807.779677px;}
.y118{bottom:814.619674px;}
.yd0{bottom:824.339670px;}
.yf5{bottom:824.519670px;}
.ya{bottom:824.699670px;}
.y36{bottom:825.959670px;}
.y55{bottom:826.139670px;}
.ya9{bottom:827.399669px;}
.ycf{bottom:844.319662px;}
.yf4{bottom:844.499662px;}
.y9{bottom:844.679662px;}
.y35{bottom:845.939662px;}
.ya8{bottom:847.019661px;}
.yce{bottom:864.299654px;}
.yf3{bottom:864.479654px;}
.y34{bottom:865.739654px;}
.ya7{bottom:866.639653px;}
.ycd{bottom:884.279646px;}
.yf2{bottom:884.459646px;}
.y33{bottom:885.539646px;}
.ya6{bottom:886.259645px;}
.ycc{bottom:904.259638px;}
.y8{bottom:904.619638px;}
.y32{bottom:905.339638px;}
.ya5{bottom:906.059638px;}
.ycb{bottom:924.059630px;}
.yf1{bottom:924.239630px;}
.y31{bottom:925.139630px;}
.ya4{bottom:925.679630px;}
.yca{bottom:944.039622px;}
.yf0{bottom:944.219622px;}
.y30{bottom:944.939622px;}
.ya3{bottom:945.299622px;}
.yc9{bottom:964.019614px;}
.yef{bottom:964.199614px;}
.y2f{bottom:964.739614px;}
.ya2{bottom:964.919614px;}
.yc8{bottom:983.999606px;}
.yee{bottom:984.179606px;}
.y2e{bottom:984.539606px;}
.y7{bottom:991.199604px;}
.y6{bottom:1003.259599px;}
.yc7{bottom:1003.979598px;}
.ya1{bottom:1004.159598px;}
.y2d{bottom:1004.339598px;}
.y5{bottom:1015.319594px;}
.ya0{bottom:1023.959590px;}
.y2c{bottom:1024.139590px;}
.y4{bottom:1027.559589px;}
.h2{height:18.720000px;}
.ha{height:31.587878px;}
.h6{height:36.641938px;}
.h3{height:37.090532px;}
.hc{height:42.327757px;}
.h9{height:47.381817px;}
.h8{height:47.513653px;}
.hb{height:52.435877px;}
.hd{height:52.581776px;}
.h1{height:58.121696px;}
.h7{height:58.283414px;}
.h5{height:58.833258px;}
.h4{height:69.065129px;}
.h0{height:1263.000000px;}
.w1{width:0.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:178.559929px;}
.x2e{left:186.119926px;}
.x1a{left:188.819924px;}
.x59{left:192.239923px;}
.x11{left:195.120000px;}
.x4{left:199.799920px;}
.x7{left:204.299918px;}
.x54{left:211.139916px;}
.x55{left:220.319912px;}
.x2f{left:221.399911px;}
.x4b{left:223.019911px;}
.x39{left:227.159909px;}
.x40{left:231.299907px;}
.x3a{left:235.439906px;}
.x4c{left:236.519905px;}
.x30{left:237.959905px;}
.x41{left:240.659904px;}
.x4f{left:247.679901px;}
.x12{left:249.299900px;}
.x1b{left:251.099900px;}
.x13{left:253.619899px;}
.x4d{left:257.939897px;}
.x5a{left:259.919896px;}
.x14{left:262.799895px;}
.x56{left:263.879894px;}
.x61{left:265.139894px;}
.x31{left:268.919892px;}
.x62{left:270.359892px;}
.x44{left:274.499890px;}
.x24{left:277.919889px;}
.x25{left:283.139887px;}
.x50{left:284.219886px;}
.x57{left:285.299886px;}
.x49{left:288.719885px;}
.x3b{left:291.599883px;}
.x45{left:292.859883px;}
.x18{left:295.019882px;}
.x1c{left:296.099882px;}
.x4e{left:297.899881px;}
.x3c{left:302.579879px;}
.x63{left:304.379878px;}
.x1d{left:308.159877px;}
.x15{left:317.159873px;}
.x65{left:320.579872px;}
.x42{left:323.279871px;}
.x43{left:327.059869px;}
.x16{left:329.219868px;}
.x46{left:331.379867px;}
.x4a{left:334.619866px;}
.x47{left:336.419865px;}
.x51{left:342.719863px;}
.x19{left:345.059862px;}
.x52{left:347.759861px;}
.x64{left:348.839860px;}
.x3d{left:352.079859px;}
.x5b{left:356.572357px;}
.x66{left:364.859854px;}
.x67{left:368.279853px;}
.x58{left:371.699851px;}
.x28{left:373.139851px;}
.x48{left:376.199850px;}
.x3{left:377.819849px;}
.x17{left:379.259848px;}
.x53{left:387.539845px;}
.x5c{left:388.979844px;}
.x3e{left:396.359841px;}
.x3f{left:401.212340px;}
.x8{left:413.279835px;}
.x5{left:419.399832px;}
.x6{left:424.619830px;}
.x9{left:443.699823px;}
.x32{left:450.359820px;}
.xa{left:455.759818px;}
.x33{left:460.439816px;}
.x1e{left:483.479807px;}
.xb{left:488.159805px;}
.x34{left:492.479803px;}
.x29{left:506.879797px;}
.x2a{left:543.959782px;}
.x1f{left:546.119782px;}
.x22{left:552.599779px;}
.x20{left:558.179777px;}
.x2b{left:560.519776px;}
.x35{left:582.839213px;}
.x21{left:587.159765px;}
.x2c{left:591.479763px;}
.x36{left:594.719762px;}
.x5d{left:596.159762px;}
.xc{left:601.019760px;}
.x26{left:605.519758px;}
.x23{left:615.959754px;}
.xd{left:637.739745px;}
.xe{left:642.959743px;}
.x5e{left:654.839738px;}
.x27{left:656.639737px;}
.x37{left:664.199734px;}
.x5f{left:665.453734px;}
.x38{left:669.419732px;}
.xf{left:671.939731px;}
.x2d{left:677.699729px;}
.x10{left:679.499728px;}
.x60{left:706.859717px;}
.x2{left:714.420000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017589pt;}
.ls0{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.168267pt;}
.ls3{letter-spacing:0.333941pt;}
.ls8{letter-spacing:0.336457pt;}
.ls5{letter-spacing:0.336535pt;}
.ls6{letter-spacing:4.651038pt;}
.ls4{letter-spacing:7.664637pt;}
.ws4{word-spacing:-14.737583pt;}
.ws0{word-spacing:-14.719994pt;}
.ws7{word-spacing:-13.616529pt;}
.ws8{word-spacing:-13.616451pt;}
.ws5{word-spacing:-13.279995pt;}
.ws3{word-spacing:-11.999995pt;}
.ws6{word-spacing:-10.719996pt;}
.ws1{word-spacing:-9.279996pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-14.719994pt;}
._18{margin-left:-2.142103pt;}
._a{margin-left:-1.189432pt;}
._2{width:0.926575pt;}
._d{width:2.688459pt;}
._12{width:3.704811pt;}
._11{width:4.851108pt;}
._e{width:6.519128pt;}
._f{width:7.559366pt;}
._10{width:8.542106pt;}
._c{width:9.519069pt;}
._b{width:10.629522pt;}
._16{width:11.602025pt;}
._15{width:12.742014pt;}
._14{width:13.676948pt;}
._17{width:16.106409pt;}
._19{width:17.140933pt;}
._1a{width:18.806889pt;}
._1b{width:20.885757pt;}
._9{width:85.496977pt;}
._1{width:203.328059pt;}
._6{width:237.909038pt;}
._5{width:247.260697pt;}
._3{width:395.442914pt;}
._8{width:426.181974pt;}
._7{width:476.045549pt;}
._4{width:516.696940pt;}
._0{width:1832.783267pt;}
.fs4{font-size:31.999987pt;}
.fs1{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs5{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.519396pt;}
.y2{bottom:174.027200pt;}
.y1{bottom:177.546596pt;}
.y2b{bottom:201.066586pt;}
.y73{bottom:202.346586pt;}
.y84{bottom:202.506586pt;}
.yc6{bottom:202.986585pt;}
.y54{bottom:204.106585pt;}
.y9f{bottom:206.346584pt;}
.y2a{bottom:214.346581pt;}
.y9e{bottom:218.186579pt;}
.y29{bottom:219.626579pt;}
.y72{bottom:219.946579pt;}
.yed{bottom:220.106579pt;}
.y83{bottom:220.426578pt;}
.yc5{bottom:220.586578pt;}
.y53{bottom:221.706578pt;}
.y28{bottom:230.346575pt;}
.y110{bottom:231.466574pt;}
.y9d{bottom:235.786572pt;}
.y117{bottom:237.546572pt;}
.yec{bottom:237.706572pt;}
.y82{bottom:238.186571pt;}
.yc4{bottom:238.346571pt;}
.y52{bottom:239.306571pt;}
.y71{bottom:241.546570pt;}
.y27{bottom:243.786569pt;}
.y132{bottom:246.346568pt;}
.y10f{bottom:250.506566pt;}
.y9b{bottom:253.386565pt;}
.y116{bottom:255.146565pt;}
.yeb{bottom:255.306565pt;}
.yc3{bottom:255.786564pt;}
.y81{bottom:255.946564pt;}
.y51{bottom:256.906564pt;}
.y26{bottom:257.066564pt;}
.y70{bottom:259.146563pt;}
.y9c{bottom:260.106563pt;}
.y131{bottom:262.506562pt;}
.y10e{bottom:268.106559pt;}
.y25{bottom:270.346559pt;}
.y9a{bottom:271.146558pt;}
.y115{bottom:272.746558pt;}
.yea{bottom:273.066557pt;}
.yc2{bottom:273.386557pt;}
.y80{bottom:273.706557pt;}
.y50{bottom:274.506557pt;}
.y6f{bottom:276.746556pt;}
.y130{bottom:281.066554pt;}
.y24{bottom:283.786553pt;}
.y10d{bottom:285.706552pt;}
.y99{bottom:288.746551pt;}
.y114{bottom:290.346551pt;}
.ye9{bottom:290.666550pt;}
.yc1{bottom:290.826550pt;}
.y7f{bottom:291.626550pt;}
.y4f{bottom:292.106550pt;}
.y6e{bottom:294.346549pt;}
.y23{bottom:297.066548pt;}
.y12f{bottom:299.626547pt;}
.y10c{bottom:303.306545pt;}
.y98{bottom:306.506544pt;}
.y113{bottom:307.946543pt;}
.yc0{bottom:308.266543pt;}
.ye8{bottom:308.426543pt;}
.y7e{bottom:309.386543pt;}
.y4e{bottom:309.706543pt;}
.y6d{bottom:311.946542pt;}
.y22{bottom:314.186541pt;}
.y12e{bottom:315.626540pt;}
.y10b{bottom:321.066538pt;}
.y97{bottom:324.106537pt;}
.y112{bottom:325.546536pt;}
.ybf{bottom:325.706536pt;}
.ye7{bottom:326.026536pt;}
.y7d{bottom:327.146536pt;}
.y4d{bottom:327.306536pt;}
.y6c{bottom:329.546535pt;}
.y12d{bottom:331.626534pt;}
.y21{bottom:335.946532pt;}
.y10a{bottom:338.826531pt;}
.y96{bottom:341.866530pt;}
.ybe{bottom:343.146529pt;}
.ye6{bottom:343.786529pt;}
.y4c{bottom:344.906529pt;}
.y6b{bottom:347.146528pt;}
.y12c{bottom:347.786528pt;}
.y20{bottom:353.866525pt;}
.y109{bottom:356.586524pt;}
.y95{bottom:359.466523pt;}
.ybd{bottom:360.586522pt;}
.y111{bottom:360.746522pt;}
.ye5{bottom:361.386522pt;}
.y4b{bottom:362.506522pt;}
.y7c{bottom:362.826522pt;}
.y6a{bottom:364.746521pt;}
.y12b{bottom:366.346520pt;}
.y1f{bottom:371.626518pt;}
.y108{bottom:374.186517pt;}
.y94{bottom:377.066516pt;}
.ye4{bottom:378.986515pt;}
.y4a{bottom:380.106515pt;}
.y7b{bottom:380.586514pt;}
.ybc{bottom:382.186514pt;}
.y69{bottom:382.346514pt;}
.y12a{bottom:382.506514pt;}
.y1e{bottom:389.546511pt;}
.y107{bottom:391.946510pt;}
.y93{bottom:394.826509pt;}
.ye3{bottom:396.746508pt;}
.y49{bottom:397.706508pt;}
.y7a{bottom:398.346507pt;}
.ybb{bottom:399.626507pt;}
.y68{bottom:399.946507pt;}
.y129{bottom:401.066506pt;}
.y1d{bottom:407.466504pt;}
.y106{bottom:409.706503pt;}
.y92{bottom:412.426502pt;}
.ye2{bottom:414.346501pt;}
.y48{bottom:415.306501pt;}
.y79{bottom:416.106500pt;}
.yba{bottom:417.066500pt;}
.y67{bottom:417.546500pt;}
.y1c{bottom:425.226497pt;}
.y105{bottom:427.466496pt;}
.y91{bottom:430.186495pt;}
.ye1{bottom:432.106494pt;}
.y47{bottom:432.906494pt;}
.y128{bottom:433.066493pt;}
.y78{bottom:434.026493pt;}
.yb9{bottom:434.506493pt;}
.y66{bottom:435.146493pt;}
.y1b{bottom:443.146489pt;}
.y104{bottom:445.226489pt;}
.y90{bottom:447.786488pt;}
.y127{bottom:449.066487pt;}
.ye0{bottom:449.706487pt;}
.y46{bottom:450.506486pt;}
.y77{bottom:451.786486pt;}
.yb8{bottom:451.946486pt;}
.y65{bottom:452.746486pt;}
.y1a{bottom:461.066482pt;}
.y103{bottom:462.986481pt;}
.y8f{bottom:465.386481pt;}
.ydf{bottom:467.306480pt;}
.y126{bottom:467.626480pt;}
.y45{bottom:468.106479pt;}
.yb7{bottom:469.386479pt;}
.y76{bottom:469.546479pt;}
.y64{bottom:470.346479pt;}
.y19{bottom:478.826475pt;}
.y102{bottom:480.586474pt;}
.y8e{bottom:483.146473pt;}
.y125{bottom:483.626473pt;}
.yde{bottom:485.066473pt;}
.y44{bottom:485.866472pt;}
.yb6{bottom:486.986472pt;}
.y75{bottom:487.306472pt;}
.y63{bottom:487.946471pt;}
.y18{bottom:496.746468pt;}
.y101{bottom:498.346467pt;}
.y124{bottom:499.786467pt;}
.y8d{bottom:500.746466pt;}
.ydd{bottom:502.666466pt;}
.y43{bottom:503.626465pt;}
.yb5{bottom:504.426465pt;}
.y74{bottom:505.226465pt;}
.y62{bottom:505.546464pt;}
.y100{bottom:516.106460pt;}
.y123{bottom:518.346459pt;}
.y8c{bottom:518.506459pt;}
.y17{bottom:518.666459pt;}
.ydc{bottom:520.426458pt;}
.y42{bottom:521.386458pt;}
.yb4{bottom:521.866458pt;}
.y61{bottom:523.146457pt;}
.yff{bottom:533.866453pt;}
.y122{bottom:534.506453pt;}
.y8b{bottom:536.106452pt;}
.y16{bottom:536.426452pt;}
.ydb{bottom:538.026451pt;}
.y41{bottom:538.986451pt;}
.yb3{bottom:539.306451pt;}
.y60{bottom:540.746450pt;}
.yfe{bottom:551.626446pt;}
.y121{bottom:553.066445pt;}
.y8a{bottom:553.866445pt;}
.y15{bottom:554.346445pt;}
.yda{bottom:555.786444pt;}
.y40{bottom:556.746444pt;}
.y5f{bottom:558.346443pt;}
.yfd{bottom:569.386439pt;}
.y89{bottom:571.466438pt;}
.y120{bottom:571.626438pt;}
.y13{bottom:572.266438pt;}
.yd9{bottom:573.386437pt;}
.yb2{bottom:574.186437pt;}
.y3f{bottom:574.506437pt;}
.y5e{bottom:575.946436pt;}
.y14{bottom:578.986435pt;}
.yfc{bottom:586.986432pt;}
.y11f{bottom:587.786432pt;}
.y88{bottom:589.066431pt;}
.y12{bottom:590.026431pt;}
.yd8{bottom:590.986430pt;}
.yb1{bottom:591.786430pt;}
.y3e{bottom:592.266430pt;}
.y5d{bottom:593.546429pt;}
.yfb{bottom:604.746425pt;}
.y11e{bottom:606.346424pt;}
.y87{bottom:606.826424pt;}
.y11{bottom:607.946423pt;}
.yd7{bottom:608.746423pt;}
.yb0{bottom:609.226423pt;}
.y3d{bottom:610.026423pt;}
.y5c{bottom:611.146422pt;}
.y11d{bottom:622.506418pt;}
.y86{bottom:624.426417pt;}
.y10{bottom:625.866416pt;}
.yd6{bottom:626.346416pt;}
.yfa{bottom:626.506416pt;}
.y3c{bottom:627.786416pt;}
.y5b{bottom:628.746415pt;}
.yaf{bottom:630.666414pt;}
.y11c{bottom:641.066410pt;}
.y85{bottom:642.186410pt;}
.yf{bottom:643.626409pt;}
.yd5{bottom:644.106409pt;}
.yf9{bottom:644.266409pt;}
.y3b{bottom:645.386409pt;}
.y5a{bottom:646.346408pt;}
.yae{bottom:648.106407pt;}
.y11b{bottom:657.066404pt;}
.ye{bottom:661.546402pt;}
.yd4{bottom:661.866402pt;}
.yf7{bottom:662.026402pt;}
.y3a{bottom:663.146401pt;}
.y59{bottom:663.946401pt;}
.yad{bottom:665.546400pt;}
.yf8{bottom:668.746399pt;}
.y11a{bottom:675.626396pt;}
.yd{bottom:679.466395pt;}
.yd3{bottom:679.626395pt;}
.yf6{bottom:679.786395pt;}
.y39{bottom:680.906394pt;}
.y58{bottom:681.546394pt;}
.yac{bottom:682.986393pt;}
.y119{bottom:691.786390pt;}
.yc{bottom:697.226388pt;}
.yd2{bottom:697.386388pt;}
.y38{bottom:698.666387pt;}
.y57{bottom:699.146387pt;}
.yab{bottom:700.586386pt;}
.yd1{bottom:714.986381pt;}
.yb{bottom:715.146381pt;}
.y37{bottom:716.426380pt;}
.y56{bottom:716.746380pt;}
.yaa{bottom:718.026379pt;}
.y118{bottom:724.106377pt;}
.yd0{bottom:732.746374pt;}
.yf5{bottom:732.906374pt;}
.ya{bottom:733.066373pt;}
.y36{bottom:734.186373pt;}
.y55{bottom:734.346373pt;}
.ya9{bottom:735.466372pt;}
.ycf{bottom:750.506366pt;}
.yf4{bottom:750.666366pt;}
.y9{bottom:750.826366pt;}
.y35{bottom:751.946366pt;}
.ya8{bottom:752.906366pt;}
.yce{bottom:768.266359pt;}
.yf3{bottom:768.426359pt;}
.y34{bottom:769.546359pt;}
.ya7{bottom:770.346359pt;}
.ycd{bottom:786.026352pt;}
.yf2{bottom:786.186352pt;}
.y33{bottom:787.146352pt;}
.ya6{bottom:787.786352pt;}
.ycc{bottom:803.786345pt;}
.y8{bottom:804.106345pt;}
.y32{bottom:804.746345pt;}
.ya5{bottom:805.386345pt;}
.ycb{bottom:821.386338pt;}
.yf1{bottom:821.546338pt;}
.y31{bottom:822.346338pt;}
.ya4{bottom:822.826338pt;}
.yca{bottom:839.146331pt;}
.yf0{bottom:839.306331pt;}
.y30{bottom:839.946331pt;}
.ya3{bottom:840.266331pt;}
.yc9{bottom:856.906324pt;}
.yef{bottom:857.066324pt;}
.y2f{bottom:857.546324pt;}
.ya2{bottom:857.706324pt;}
.yc8{bottom:874.666317pt;}
.yee{bottom:874.826317pt;}
.y2e{bottom:875.146317pt;}
.y7{bottom:881.066314pt;}
.y6{bottom:891.786310pt;}
.yc7{bottom:892.426310pt;}
.ya1{bottom:892.586310pt;}
.y2d{bottom:892.746310pt;}
.y5{bottom:902.506306pt;}
.ya0{bottom:910.186303pt;}
.y2c{bottom:910.346303pt;}
.y4{bottom:913.386301pt;}
.h2{height:16.640000pt;}
.ha{height:28.078114pt;}
.h6{height:32.570612pt;}
.h3{height:32.969362pt;}
.hc{height:37.624672pt;}
.h9{height:42.117171pt;}
.h8{height:42.234358pt;}
.hb{height:46.609669pt;}
.hd{height:46.739356pt;}
.h1{height:51.663729pt;}
.h7{height:51.807479pt;}
.h5{height:52.296229pt;}
.h4{height:61.391225pt;}
.h0{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:158.719937pt;}
.x2e{left:165.439934pt;}
.x1a{left:167.839933pt;}
.x59{left:170.879932pt;}
.x11{left:173.440000pt;}
.x4{left:177.599929pt;}
.x7{left:181.599927pt;}
.x54{left:187.679925pt;}
.x55{left:195.839922pt;}
.x2f{left:196.799921pt;}
.x4b{left:198.239921pt;}
.x39{left:201.919919pt;}
.x40{left:205.599918pt;}
.x3a{left:209.279916pt;}
.x4c{left:210.239916pt;}
.x30{left:211.519915pt;}
.x41{left:213.919914pt;}
.x4f{left:220.159912pt;}
.x12{left:221.599911pt;}
.x1b{left:223.199911pt;}
.x13{left:225.439910pt;}
.x4d{left:229.279908pt;}
.x5a{left:231.039908pt;}
.x14{left:233.599907pt;}
.x56{left:234.559906pt;}
.x61{left:235.679906pt;}
.x31{left:239.039904pt;}
.x62{left:240.319904pt;}
.x44{left:243.999902pt;}
.x24{left:247.039901pt;}
.x25{left:251.679899pt;}
.x50{left:252.639899pt;}
.x57{left:253.599899pt;}
.x49{left:256.639897pt;}
.x3b{left:259.199896pt;}
.x45{left:260.319896pt;}
.x18{left:262.239895pt;}
.x1c{left:263.199895pt;}
.x4e{left:264.799894pt;}
.x3c{left:268.959892pt;}
.x63{left:270.559892pt;}
.x1d{left:273.919890pt;}
.x15{left:281.919887pt;}
.x65{left:284.959886pt;}
.x42{left:287.359885pt;}
.x43{left:290.719884pt;}
.x16{left:292.639883pt;}
.x46{left:294.559882pt;}
.x4a{left:297.439881pt;}
.x47{left:299.039880pt;}
.x51{left:304.639878pt;}
.x19{left:306.719877pt;}
.x52{left:309.119876pt;}
.x64{left:310.079876pt;}
.x3d{left:312.959875pt;}
.x5b{left:316.953207pt;}
.x66{left:324.319870pt;}
.x67{left:327.359869pt;}
.x58{left:330.399868pt;}
.x28{left:331.679867pt;}
.x48{left:334.399866pt;}
.x3{left:335.839866pt;}
.x17{left:337.119865pt;}
.x53{left:344.479862pt;}
.x5c{left:345.759862pt;}
.x3e{left:352.319859pt;}
.x3f{left:356.633191pt;}
.x8{left:367.359853pt;}
.x5{left:372.799851pt;}
.x6{left:377.439849pt;}
.x9{left:394.399842pt;}
.x32{left:400.319840pt;}
.xa{left:405.119838pt;}
.x33{left:409.279836pt;}
.x1e{left:429.759828pt;}
.xb{left:433.919826pt;}
.x34{left:437.759825pt;}
.x29{left:450.559820pt;}
.x2a{left:483.519807pt;}
.x1f{left:485.439806pt;}
.x22{left:491.199804pt;}
.x20{left:496.159802pt;}
.x2b{left:498.239801pt;}
.x35{left:518.079301pt;}
.x21{left:521.919791pt;}
.x2c{left:525.759790pt;}
.x36{left:528.639789pt;}
.x5d{left:529.919788pt;}
.xc{left:534.239786pt;}
.x26{left:538.239785pt;}
.x23{left:547.519781pt;}
.xd{left:566.879773pt;}
.xe{left:571.519771pt;}
.x5e{left:582.079767pt;}
.x27{left:583.679767pt;}
.x37{left:590.399764pt;}
.x5f{left:591.514430pt;}
.x38{left:595.039762pt;}
.xf{left:597.279761pt;}
.x2d{left:602.399759pt;}
.x10{left:603.999758pt;}
.x60{left:628.319749pt;}
.x2{left:635.040000pt;}
}




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