
    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_620616bffb83fe91eeef7c8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_1809ba365d8c5ae38454aec2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_521480f896b45abdd88f30e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_d2e2b2bbe55240ee22dcb89d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e34381ed8192c133c7124dbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3e3ce6bc493ad1ed5d759b12.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e71da45fc6c29687c4a35016.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0b44aef508e46b00201cb442.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.363000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_64804de7b3de613596d022a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.304320px;}
.ls0{letter-spacing:20.547162px;}
.ls2{letter-spacing:56.270608px;}
.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:-22.503591px;}
.ws2{word-spacing:-19.795792px;}
.ws3{word-spacing:-15.565794px;}
.ws1{word-spacing:-14.889414px;}
.ws5{word-spacing:-7.806237px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.605664px;}
._0{width:1.245853px;}
._f{width:2.473687px;}
._5{width:3.630759px;}
._9{width:5.211161px;}
._a{width:6.297369px;}
._11{width:7.361513px;}
._2{width:9.083818px;}
._3{width:10.433387px;}
._14{width:11.856995px;}
._13{width:13.106475px;}
._10{width:14.476307px;}
._4{width:15.817143px;}
._12{width:16.968654px;}
._17{width:18.605172px;}
._e{width:21.133807px;}
._d{width:22.436269px;}
._c{width:24.050763px;}
._b{width:25.369090px;}
._1a{width:27.298067px;}
._16{width:28.576166px;}
._15{width:30.012351px;}
._19{width:33.375905px;}
._18{width:47.419528px;}
._6{width:93.875038px;}
._8{width:112.368110px;}
._7{width:128.431327px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.079989px;}
.fs0{font-size:56.174378px;}
.fs5{font-size:59.557656px;}
.fs6{font-size:62.263175px;}
.fs4{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs7{font-size:79.183168px;}
.fs2{font-size:90.014364px;}
.fs1{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.y2{bottom:106.379957px;}
.yc4{bottom:126.179950px;}
.y63{bottom:129.959948px;}
.yb6{bottom:132.479947px;}
.y10c{bottom:133.739947px;}
.yc3{bottom:143.639943px;}
.y62{bottom:147.779941px;}
.y39{bottom:149.219940px;}
.y4d{bottom:149.399940px;}
.yb5{bottom:151.379939px;}
.y10b{bottom:151.559939px;}
.y12f{bottom:152.099939px;}
.yc2{bottom:161.459935px;}
.ye5{bottom:162.539935px;}
.y61{bottom:165.599934px;}
.y38{bottom:167.039933px;}
.y4c{bottom:167.219933px;}
.y12e{bottom:168.479933px;}
.yb4{bottom:168.839932px;}
.y10a{bottom:169.199932px;}
.y2f{bottom:172.799931px;}
.yc1{bottom:179.819928px;}
.ye4{bottom:180.179928px;}
.y60{bottom:183.059927px;}
.y37{bottom:184.499926px;}
.y12d{bottom:184.679926px;}
.y4b{bottom:184.859926px;}
.yb3{bottom:186.659925px;}
.y109{bottom:187.199925px;}
.y2e{bottom:190.619924px;}
.y8e{bottom:192.599923px;}
.yc0{bottom:197.279921px;}
.ye3{bottom:197.999921px;}
.y12c{bottom:200.879920px;}
.y5f{bottom:201.239920px;}
.y36{bottom:202.319919px;}
.y4a{bottom:202.499919px;}
.yb2{bottom:204.839918px;}
.y108{bottom:205.019918px;}
.y2d{bottom:208.439917px;}
.y8d{bottom:210.419916px;}
.y9d{bottom:211.679915px;}
.y5e{bottom:213.659915px;}
.ye2{bottom:215.999914px;}
.y12b{bottom:216.899913px;}
.y49{bottom:220.319912px;}
.y35{bottom:221.219912px;}
.y107{bottom:222.479911px;}
.yb1{bottom:222.659911px;}
.y2c{bottom:226.259909px;}
.y8c{bottom:228.059909px;}
.y9c{bottom:229.499908px;}
.y12a{bottom:233.279907px;}
.ye1{bottom:233.639907px;}
.y48{bottom:238.499905px;}
.yb0{bottom:240.479904px;}
.y106{bottom:240.659904px;}
.y34{bottom:243.899902px;}
.y2b{bottom:244.619902px;}
.y8b{bottom:246.059902px;}
.y9b{bottom:247.319901px;}
.y129{bottom:249.479900px;}
.y47{bottom:250.919900px;}
.ye0{bottom:251.639899px;}
.yaf{bottom:258.479897px;}
.y105{bottom:258.659897px;}
.y2a{bottom:262.259895px;}
.y8a{bottom:264.059894px;}
.y9a{bottom:264.779894px;}
.y128{bottom:265.679894px;}
.y33{bottom:266.039894px;}
.ydf{bottom:269.459892px;}
.yae{bottom:276.119890px;}
.y104{bottom:276.299889px;}
.y29{bottom:280.079888px;}
.y127{bottom:281.879887px;}
.y99{bottom:282.599887px;}
.y89{bottom:282.959887px;}
.y32{bottom:283.679887px;}
.yde{bottom:287.099885px;}
.yad{bottom:293.579883px;}
.y103{bottom:294.119882px;}
.y28{bottom:298.079881px;}
.y126{bottom:298.799880px;}
.y31{bottom:299.699880px;}
.y98{bottom:300.959880px;}
.y88{bottom:301.859879px;}
.ydd{bottom:305.099878px;}
.yac{bottom:311.579875px;}
.y102{bottom:311.759875px;}
.y30{bottom:314.099874px;}
.y27{bottom:315.719874px;}
.y97{bottom:318.599873px;}
.y87{bottom:320.759872px;}
.y125{bottom:321.479871px;}
.ydc{bottom:322.919871px;}
.y101{bottom:329.399868px;}
.yab{bottom:329.579868px;}
.y26{bottom:333.719867px;}
.y96{bottom:336.419865px;}
.y86{bottom:339.659864px;}
.ydb{bottom:340.739864px;}
.y124{bottom:343.439863px;}
.yaa{bottom:347.579861px;}
.y100{bottom:347.759861px;}
.y25{bottom:351.539859px;}
.y95{bottom:354.419858px;}
.y85{bottom:357.479857px;}
.yda{bottom:358.559857px;}
.y123{bottom:361.439855px;}
.ya9{bottom:365.219854px;}
.yff{bottom:365.399854px;}
.y24{bottom:369.179852px;}
.y94{bottom:372.059851px;}
.y84{bottom:375.299850px;}
.yd9{bottom:376.559849px;}
.yfe{bottom:377.819849px;}
.y122{bottom:379.259848px;}
.ya8{bottom:381.419847px;}
.y23{bottom:387.179845px;}
.y93{bottom:389.699844px;}
.y83{bottom:392.759843px;}
.yd8{bottom:394.199842px;}
.y121{bottom:397.079841px;}
.ya7{bottom:397.619841px;}
.yfd{bottom:399.419840px;}
.y22{bottom:404.999838px;}
.y92{bottom:407.519837px;}
.yfc{bottom:407.879837px;}
.y5d{bottom:408.959836px;}
.ya6{bottom:410.219836px;}
.y82{bottom:410.759836px;}
.yd7{bottom:412.019835px;}
.y120{bottom:415.619834px;}
.yfb{bottom:416.339833px;}
.y21{bottom:422.819831px;}
.yfa{bottom:424.799830px;}
.y91{bottom:425.519830px;}
.y5c{bottom:426.779829px;}
.y81{bottom:428.759828px;}
.yd6{bottom:430.019828px;}
.y11f{bottom:438.299825px;}
.y20{bottom:441.359823px;}
.y90{bottom:443.339823px;}
.y5b{bottom:444.599822px;}
.y80{bottom:446.759821px;}
.yd5{bottom:448.919820px;}
.y8f{bottom:455.939818px;}
.y11e{bottom:460.259816px;}
.y5a{bottom:462.059815px;}
.y1f{bottom:464.039814px;}
.y7f{bottom:464.579814px;}
.yd4{bottom:467.819813px;}
.y11d{bottom:478.259809px;}
.y59{bottom:479.879808px;}
.yef{bottom:481.139808px;}
.y7e{bottom:482.219807px;}
.y1e{bottom:485.999806px;}
.yd3{bottom:486.899805px;}
.yee{bottom:489.599804px;}
.y11c{bottom:495.899802px;}
.yed{bottom:498.059801px;}
.y58{bottom:498.239801px;}
.y7d{bottom:500.219800px;}
.yd2{bottom:505.799798px;}
.y1d{bottom:505.979798px;}
.y11b{bottom:513.899794px;}
.y57{bottom:515.879794px;}
.y7c{bottom:519.119792px;}
.yd1{bottom:523.619791px;}
.y1c{bottom:527.759789px;}
.y11a{bottom:531.719787px;}
.y56{bottom:533.699787px;}
.y7b{bottom:537.119785px;}
.yd0{bottom:541.439783px;}
.y119{bottom:549.359780px;}
.y1b{bottom:551.339779px;}
.y55{bottom:551.699779px;}
.yf9{bottom:552.779779px;}
.y7a{bottom:555.839778px;}
.ycf{bottom:558.899776px;}
.yf8{bottom:561.239776px;}
.y118{bottom:567.359773px;}
.y54{bottom:569.339772px;}
.y1a{bottom:569.699772px;}
.y79{bottom:573.839770px;}
.yce{bottom:576.719769px;}
.y117{bottom:585.179766px;}
.y19{bottom:585.899766px;}
.y53{bottom:587.339765px;}
.y78{bottom:592.739763px;}
.ycd{bottom:594.899762px;}
.y18{bottom:602.099759px;}
.y116{bottom:602.999759px;}
.y52{bottom:605.159758px;}
.y77{bottom:611.639755px;}
.ycc{bottom:612.719755px;}
.y17{bottom:618.659753px;}
.y115{bottom:620.819752px;}
.y51{bottom:622.799751px;}
.y76{bottom:629.639748px;}
.ycb{bottom:630.719748px;}
.yec{bottom:635.219746px;}
.y50{bottom:635.399746px;}
.y16{bottom:635.579746px;}
.y114{bottom:638.639745px;}
.yeb{bottom:643.679743px;}
.y75{bottom:648.359741px;}
.ya5{bottom:651.419739px;}
.y15{bottom:654.659738px;}
.y113{bottom:656.459737px;}
.yca{bottom:665.819734px;}
.y74{bottom:666.179734px;}
.ya4{bottom:669.419732px;}
.y112{bottom:674.279730px;}
.y14{bottom:676.079730px;}
.yc9{bottom:683.819726px;}
.y73{bottom:684.179726px;}
.ya3{bottom:686.879725px;}
.y111{bottom:692.279723px;}
.y13{bottom:694.979722px;}
.yf7{bottom:698.399721px;}
.y72{bottom:701.819719px;}
.ya2{bottom:705.059718px;}
.yf6{bottom:706.859717px;}
.y110{bottom:709.919716px;}
.y12{bottom:711.179716px;}
.yf5{bottom:715.319714px;}
.y71{bottom:719.819712px;}
.ya1{bottom:722.879711px;}
.y11{bottom:727.199709px;}
.y10f{bottom:727.739709px;}
.y70{bottom:737.639705px;}
.ya0{bottom:740.699704px;}
.y10{bottom:743.579703px;}
.y142{bottom:745.739702px;}
.y10e{bottom:746.459701px;}
.y6f{bottom:755.279698px;}
.y9f{bottom:756.899697px;}
.yf{bottom:759.779696px;}
.y141{bottom:763.559695px;}
.y10d{bottom:769.139692px;}
.y9e{bottom:769.319692px;}
.yc8{bottom:772.919691px;}
.y6e{bottom:773.279691px;}
.ye{bottom:775.979690px;}
.y140{bottom:781.199688px;}
.yea{bottom:784.979686px;}
.yc7{bottom:790.739684px;}
.y6d{bottom:791.099684px;}
.yd{bottom:792.179683px;}
.ye9{bottom:793.439683px;}
.y13f{bottom:797.399681px;}
.y6c{bottom:808.919676px;}
.yc{bottom:809.099676px;}
.y13e{bottom:813.779674px;}
.y46{bottom:822.419671px;}
.y6b{bottom:826.739669px;}
.yb{bottom:828.179669px;}
.y13d{bottom:829.979668px;}
.y45{bottom:840.059664px;}
.y6a{bottom:844.559662px;}
.y13c{bottom:845.999662px;}
.ya{bottom:849.779660px;}
.yf2{bottom:853.199659px;}
.y44{bottom:858.059657px;}
.yf1{bottom:861.659655px;}
.y13b{bottom:862.199655px;}
.y69{bottom:862.379655px;}
.yf0{bottom:870.119652px;}
.y9{bottom:870.659652px;}
.y43{bottom:875.879650px;}
.y13a{bottom:878.579649px;}
.y68{bottom:879.839648px;}
.y8{bottom:891.719643px;}
.ybf{bottom:893.519643px;}
.y42{bottom:893.699643px;}
.y139{bottom:894.779642px;}
.y67{bottom:897.839641px;}
.y138{bottom:910.979636px;}
.y7{bottom:911.339635px;}
.ybe{bottom:911.519635px;}
.y41{bottom:912.779635px;}
.y66{bottom:915.839634px;}
.y137{bottom:927.179629px;}
.ybd{bottom:929.339628px;}
.ye8{bottom:930.599628px;}
.y40{bottom:931.679627px;}
.y4f{bottom:933.659627px;}
.y6{bottom:935.279626px;}
.ye7{bottom:939.059624px;}
.y136{bottom:944.459622px;}
.ybc{bottom:947.159621px;}
.ye6{bottom:947.519621px;}
.y3f{bottom:950.579620px;}
.y4e{bottom:951.659619px;}
.y135{bottom:961.199616px;}
.ybb{bottom:964.979614px;}
.y5{bottom:966.959613px;}
.y3e{bottom:969.299612px;}
.y134{bottom:977.039609px;}
.yba{bottom:982.979607px;}
.yc6{bottom:986.939605px;}
.y3d{bottom:987.299605px;}
.y133{bottom:993.599603px;}
.y4{bottom:998.639601px;}
.yb9{bottom:1001.879599px;}
.yf4{bottom:1002.419599px;}
.yc5{bottom:1004.759598px;}
.y3c{bottom:1005.119598px;}
.y132{bottom:1009.799596px;}
.yf3{bottom:1010.879596px;}
.yb8{bottom:1020.779592px;}
.y65{bottom:1022.759591px;}
.y3b{bottom:1022.939591px;}
.y131{bottom:1025.999590px;}
.y3{bottom:1030.499588px;}
.yb7{bottom:1039.859584px;}
.y64{bottom:1040.399584px;}
.y3a{bottom:1040.759584px;}
.y130{bottom:1042.379583px;}
.y1{bottom:1073.879570px;}
.he{height:0.000000px;}
.hf{height:20.443000px;}
.h8{height:38.367100px;}
.h9{height:38.479449px;}
.h1{height:38.647972px;}
.h10{height:38.872669px;}
.h7{height:40.796994px;}
.hd{height:42.837064px;}
.hc{height:43.086117px;}
.ha{height:46.137013px;}
.h5{height:46.563821px;}
.h6{height:50.069644px;}
.h4{height:50.288927px;}
.hb{height:54.794752px;}
.h3{height:59.994925px;}
.h2{height:75.330374px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:153.179065px;}
.x3e{left:158.760657px;}
.x12{left:165.239934px;}
.x1a{left:167.939933px;}
.x1b{left:171.899931px;}
.x1d{left:178.559867px;}
.x3b{left:182.339927px;}
.x1{left:184.859926px;}
.x4{left:187.199757px;}
.x1e{left:203.940334px;}
.x5{left:209.519916px;}
.x1c{left:225.899910px;}
.x16{left:229.319948px;}
.x13{left:231.119908px;}
.x14{left:236.879905px;}
.x11{left:259.199896px;}
.x3d{left:261.179896px;}
.x3c{left:265.859894px;}
.xc{left:285.299886px;}
.x6{left:290.879884px;}
.x15{left:304.199878px;}
.x7{left:310.319876px;}
.x3f{left:335.159866px;}
.x40{left:339.479864px;}
.x26{left:354.959858px;}
.x10{left:359.459856px;}
.x2b{left:367.199853px;}
.x19{left:372.419851px;}
.x2d{left:374.759850px;}
.x2e{left:376.016422px;}
.x2f{left:379.979848px;}
.x30{left:382.139847px;}
.x2c{left:384.299846px;}
.x20{left:388.439845px;}
.x23{left:391.679843px;}
.x28{left:392.939798px;}
.x31{left:396.179842px;}
.x35{left:422.279831px;}
.x37{left:425.879830px;}
.x34{left:428.219829px;}
.x32{left:429.659828px;}
.x33{left:430.739828px;}
.x38{left:434.699826px;}
.xd{left:436.319825px;}
.x8{left:438.839824px;}
.x39{left:448.739821px;}
.x3{left:457.739817px;}
.x9{left:460.979816px;}
.xe{left:462.239815px;}
.x36{left:467.279813px;}
.x29{left:526.679789px;}
.x1f{left:533.879786px;}
.x24{left:541.979783px;}
.x3a{left:552.779779px;}
.x18{left:573.479771px;}
.x27{left:586.079766px;}
.xf{left:629.999748px;}
.xa{left:646.739741px;}
.x22{left:663.479735px;}
.xb{left:665.809234px;}
.x21{left:680.219728px;}
.x25{left:732.959707px;}
.x2a{left:748.260047px;}
.x17{left:755.098957px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.270507pt;}
.ls0{letter-spacing:18.264144pt;}
.ls2{letter-spacing:50.018318pt;}
.ws0{word-spacing:-20.003192pt;}
.ws2{word-spacing:-17.596260pt;}
.ws3{word-spacing:-13.836261pt;}
.ws1{word-spacing:-13.235035pt;}
.ws5{word-spacing:-6.938877pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.427257pt;}
._0{width:1.107425pt;}
._f{width:2.198833pt;}
._5{width:3.227341pt;}
._9{width:4.632143pt;}
._a{width:5.597661pt;}
._11{width:6.543567pt;}
._2{width:8.074505pt;}
._3{width:9.274122pt;}
._14{width:10.539551pt;}
._13{width:11.650200pt;}
._10{width:12.867828pt;}
._4{width:14.059683pt;}
._12{width:15.083248pt;}
._17{width:16.537931pt;}
._e{width:18.785606pt;}
._d{width:19.943350pt;}
._c{width:21.378456pt;}
._b{width:22.550302pt;}
._1a{width:24.264949pt;}
._16{width:25.401036pt;}
._15{width:26.677645pt;}
._19{width:29.667471pt;}
._18{width:42.150691pt;}
._6{width:83.444478pt;}
._8{width:99.882764pt;}
._7{width:114.161180pt;}
.fs8{font-size:24.959990pt;}
.fs0{font-size:49.932780pt;}
.fs5{font-size:52.940139pt;}
.fs6{font-size:55.345045pt;}
.fs4{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs7{font-size:70.385039pt;}
.fs2{font-size:80.012768pt;}
.fs1{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:94.559962pt;}
.yc4{bottom:112.159955pt;}
.y63{bottom:115.519954pt;}
.yb6{bottom:117.759953pt;}
.y10c{bottom:118.879952pt;}
.yc3{bottom:127.679949pt;}
.y62{bottom:131.359947pt;}
.y39{bottom:132.639947pt;}
.y4d{bottom:132.799947pt;}
.yb5{bottom:134.559946pt;}
.y10b{bottom:134.719946pt;}
.y12f{bottom:135.199946pt;}
.yc2{bottom:143.519943pt;}
.ye5{bottom:144.479942pt;}
.y61{bottom:147.199941pt;}
.y38{bottom:148.479941pt;}
.y4c{bottom:148.639941pt;}
.y12e{bottom:149.759940pt;}
.yb4{bottom:150.079940pt;}
.y10a{bottom:150.399940pt;}
.y2f{bottom:153.599939pt;}
.yc1{bottom:159.839936pt;}
.ye4{bottom:160.159936pt;}
.y60{bottom:162.719935pt;}
.y37{bottom:163.999934pt;}
.y12d{bottom:164.159934pt;}
.y4b{bottom:164.319934pt;}
.yb3{bottom:165.919934pt;}
.y109{bottom:166.399933pt;}
.y2e{bottom:169.439932pt;}
.y8e{bottom:171.199932pt;}
.yc0{bottom:175.359930pt;}
.ye3{bottom:175.999930pt;}
.y12c{bottom:178.559929pt;}
.y5f{bottom:178.879928pt;}
.y36{bottom:179.839928pt;}
.y4a{bottom:179.999928pt;}
.yb2{bottom:182.079927pt;}
.y108{bottom:182.239927pt;}
.y2d{bottom:185.279926pt;}
.y8d{bottom:187.039925pt;}
.y9d{bottom:188.159925pt;}
.y5e{bottom:189.919924pt;}
.ye2{bottom:191.999923pt;}
.y12b{bottom:192.799923pt;}
.y49{bottom:195.839922pt;}
.y35{bottom:196.639921pt;}
.y107{bottom:197.759921pt;}
.yb1{bottom:197.919921pt;}
.y2c{bottom:201.119920pt;}
.y8c{bottom:202.719919pt;}
.y9c{bottom:203.999918pt;}
.y12a{bottom:207.359917pt;}
.ye1{bottom:207.679917pt;}
.y48{bottom:211.999915pt;}
.yb0{bottom:213.759914pt;}
.y106{bottom:213.919914pt;}
.y34{bottom:216.799913pt;}
.y2b{bottom:217.439913pt;}
.y8b{bottom:218.719913pt;}
.y9b{bottom:219.839912pt;}
.y129{bottom:221.759911pt;}
.y47{bottom:223.039911pt;}
.ye0{bottom:223.679911pt;}
.yaf{bottom:229.759908pt;}
.y105{bottom:229.919908pt;}
.y2a{bottom:233.119907pt;}
.y8a{bottom:234.719906pt;}
.y9a{bottom:235.359906pt;}
.y128{bottom:236.159906pt;}
.y33{bottom:236.479905pt;}
.ydf{bottom:239.519904pt;}
.yae{bottom:245.439902pt;}
.y104{bottom:245.599902pt;}
.y29{bottom:248.959900pt;}
.y127{bottom:250.559900pt;}
.y99{bottom:251.199900pt;}
.y89{bottom:251.519899pt;}
.y32{bottom:252.159899pt;}
.yde{bottom:255.199898pt;}
.yad{bottom:260.959896pt;}
.y103{bottom:261.439895pt;}
.y28{bottom:264.959894pt;}
.y126{bottom:265.599894pt;}
.y31{bottom:266.399893pt;}
.y98{bottom:267.519893pt;}
.y88{bottom:268.319893pt;}
.ydd{bottom:271.199892pt;}
.yac{bottom:276.959889pt;}
.y102{bottom:277.119889pt;}
.y30{bottom:279.199888pt;}
.y27{bottom:280.639888pt;}
.y97{bottom:283.199887pt;}
.y87{bottom:285.119886pt;}
.y125{bottom:285.759886pt;}
.ydc{bottom:287.039885pt;}
.y101{bottom:292.799883pt;}
.yab{bottom:292.959883pt;}
.y26{bottom:296.639881pt;}
.y96{bottom:299.039880pt;}
.y86{bottom:301.919879pt;}
.ydb{bottom:302.879879pt;}
.y124{bottom:305.279878pt;}
.yaa{bottom:308.959876pt;}
.y100{bottom:309.119876pt;}
.y25{bottom:312.479875pt;}
.y95{bottom:315.039874pt;}
.y85{bottom:317.759873pt;}
.yda{bottom:318.719873pt;}
.y123{bottom:321.279871pt;}
.ya9{bottom:324.639870pt;}
.yff{bottom:324.799870pt;}
.y24{bottom:328.159869pt;}
.y94{bottom:330.719868pt;}
.y84{bottom:333.599867pt;}
.yd9{bottom:334.719866pt;}
.yfe{bottom:335.839866pt;}
.y122{bottom:337.119865pt;}
.ya8{bottom:339.039864pt;}
.y23{bottom:344.159862pt;}
.y93{bottom:346.399861pt;}
.y83{bottom:349.119860pt;}
.yd8{bottom:350.399860pt;}
.y121{bottom:352.959859pt;}
.ya7{bottom:353.439859pt;}
.yfd{bottom:355.039858pt;}
.y22{bottom:359.999856pt;}
.y92{bottom:362.239855pt;}
.yfc{bottom:362.559855pt;}
.y5d{bottom:363.519855pt;}
.ya6{bottom:364.639854pt;}
.y82{bottom:365.119854pt;}
.yd7{bottom:366.239854pt;}
.y120{bottom:369.439852pt;}
.yfb{bottom:370.079852pt;}
.y21{bottom:375.839850pt;}
.yfa{bottom:377.599849pt;}
.y91{bottom:378.239849pt;}
.y5c{bottom:379.359848pt;}
.y81{bottom:381.119848pt;}
.yd6{bottom:382.239847pt;}
.y11f{bottom:389.599844pt;}
.y20{bottom:392.319843pt;}
.y90{bottom:394.079842pt;}
.y5b{bottom:395.199842pt;}
.y80{bottom:397.119841pt;}
.yd5{bottom:399.039840pt;}
.y8f{bottom:405.279838pt;}
.y11e{bottom:409.119836pt;}
.y5a{bottom:410.719836pt;}
.y1f{bottom:412.479835pt;}
.y7f{bottom:412.959835pt;}
.yd4{bottom:415.839834pt;}
.y11d{bottom:425.119830pt;}
.y59{bottom:426.559829pt;}
.yef{bottom:427.679829pt;}
.y7e{bottom:428.639829pt;}
.y1e{bottom:431.999827pt;}
.yd3{bottom:432.799827pt;}
.yee{bottom:435.199826pt;}
.y11c{bottom:440.799824pt;}
.yed{bottom:442.719823pt;}
.y58{bottom:442.879823pt;}
.y7d{bottom:444.639822pt;}
.yd2{bottom:449.599820pt;}
.y1d{bottom:449.759820pt;}
.y11b{bottom:456.799817pt;}
.y57{bottom:458.559817pt;}
.y7c{bottom:461.439815pt;}
.yd1{bottom:465.439814pt;}
.y1c{bottom:469.119812pt;}
.y11a{bottom:472.639811pt;}
.y56{bottom:474.399810pt;}
.y7b{bottom:477.439809pt;}
.yd0{bottom:481.279807pt;}
.y119{bottom:488.319805pt;}
.y1b{bottom:490.079804pt;}
.y55{bottom:490.399804pt;}
.yf9{bottom:491.359803pt;}
.y7a{bottom:494.079802pt;}
.ycf{bottom:496.799801pt;}
.yf8{bottom:498.879800pt;}
.y118{bottom:504.319798pt;}
.y54{bottom:506.079798pt;}
.y1a{bottom:506.399797pt;}
.y79{bottom:510.079796pt;}
.yce{bottom:512.639795pt;}
.y117{bottom:520.159792pt;}
.y19{bottom:520.799792pt;}
.y53{bottom:522.079791pt;}
.y78{bottom:526.879789pt;}
.ycd{bottom:528.799788pt;}
.y18{bottom:535.199786pt;}
.y116{bottom:535.999786pt;}
.y52{bottom:537.919785pt;}
.y77{bottom:543.679783pt;}
.ycc{bottom:544.639782pt;}
.y17{bottom:549.919780pt;}
.y115{bottom:551.839779pt;}
.y51{bottom:553.599779pt;}
.y76{bottom:559.679776pt;}
.ycb{bottom:560.639776pt;}
.yec{bottom:564.639774pt;}
.y50{bottom:564.799774pt;}
.y16{bottom:564.959774pt;}
.y114{bottom:567.679773pt;}
.yeb{bottom:572.159771pt;}
.y75{bottom:576.319769pt;}
.ya5{bottom:579.039768pt;}
.y15{bottom:581.919767pt;}
.y113{bottom:583.519767pt;}
.yca{bottom:591.839763pt;}
.y74{bottom:592.159763pt;}
.ya4{bottom:595.039762pt;}
.y112{bottom:599.359760pt;}
.y14{bottom:600.959760pt;}
.yc9{bottom:607.839757pt;}
.y73{bottom:608.159757pt;}
.ya3{bottom:610.559756pt;}
.y111{bottom:615.359754pt;}
.y13{bottom:617.759753pt;}
.yf7{bottom:620.799752pt;}
.y72{bottom:623.839750pt;}
.ya2{bottom:626.719749pt;}
.yf6{bottom:628.319749pt;}
.y110{bottom:631.039748pt;}
.y12{bottom:632.159747pt;}
.yf5{bottom:635.839746pt;}
.y71{bottom:639.839744pt;}
.ya1{bottom:642.559743pt;}
.y11{bottom:646.399741pt;}
.y10f{bottom:646.879741pt;}
.y70{bottom:655.679738pt;}
.ya0{bottom:658.399737pt;}
.y10{bottom:660.959736pt;}
.y142{bottom:662.879735pt;}
.y10e{bottom:663.519735pt;}
.y6f{bottom:671.359731pt;}
.y9f{bottom:672.799731pt;}
.yf{bottom:675.359730pt;}
.y141{bottom:678.719729pt;}
.y10d{bottom:683.679727pt;}
.y9e{bottom:683.839726pt;}
.yc8{bottom:687.039725pt;}
.y6e{bottom:687.359725pt;}
.ye{bottom:689.759724pt;}
.y140{bottom:694.399722pt;}
.yea{bottom:697.759721pt;}
.yc7{bottom:702.879719pt;}
.y6d{bottom:703.199719pt;}
.yd{bottom:704.159718pt;}
.ye9{bottom:705.279718pt;}
.y13f{bottom:708.799716pt;}
.y6c{bottom:719.039712pt;}
.yc{bottom:719.199712pt;}
.y13e{bottom:723.359711pt;}
.y46{bottom:731.039708pt;}
.y6b{bottom:734.879706pt;}
.yb{bottom:736.159706pt;}
.y13d{bottom:737.759705pt;}
.y45{bottom:746.719701pt;}
.y6a{bottom:750.719700pt;}
.y13c{bottom:751.999699pt;}
.ya{bottom:755.359698pt;}
.yf2{bottom:758.399697pt;}
.y44{bottom:762.719695pt;}
.yf1{bottom:765.919694pt;}
.y13b{bottom:766.399693pt;}
.y69{bottom:766.559693pt;}
.yf0{bottom:773.439691pt;}
.y9{bottom:773.919690pt;}
.y43{bottom:778.559689pt;}
.y13a{bottom:780.959688pt;}
.y68{bottom:782.079687pt;}
.y8{bottom:792.639683pt;}
.ybf{bottom:794.239682pt;}
.y42{bottom:794.399682pt;}
.y139{bottom:795.359682pt;}
.y67{bottom:798.079681pt;}
.y138{bottom:809.759676pt;}
.y7{bottom:810.079676pt;}
.ybe{bottom:810.239676pt;}
.y41{bottom:811.359675pt;}
.y66{bottom:814.079674pt;}
.y137{bottom:824.159670pt;}
.ybd{bottom:826.079670pt;}
.ye8{bottom:827.199669pt;}
.y40{bottom:828.159669pt;}
.y4f{bottom:829.919668pt;}
.y6{bottom:831.359667pt;}
.ye7{bottom:834.719666pt;}
.y136{bottom:839.519664pt;}
.ybc{bottom:841.919663pt;}
.ye6{bottom:842.239663pt;}
.y3f{bottom:844.959662pt;}
.y4e{bottom:845.919662pt;}
.y135{bottom:854.399658pt;}
.ybb{bottom:857.759657pt;}
.y5{bottom:859.519656pt;}
.y3e{bottom:861.599655pt;}
.y134{bottom:868.479653pt;}
.yba{bottom:873.759650pt;}
.yc6{bottom:877.279649pt;}
.y3d{bottom:877.599649pt;}
.y133{bottom:883.199647pt;}
.y4{bottom:887.679645pt;}
.yb9{bottom:890.559644pt;}
.yf4{bottom:891.039644pt;}
.yc5{bottom:893.119643pt;}
.y3c{bottom:893.439643pt;}
.y132{bottom:897.599641pt;}
.yf3{bottom:898.559641pt;}
.yb8{bottom:907.359637pt;}
.y65{bottom:909.119636pt;}
.y3b{bottom:909.279636pt;}
.y131{bottom:911.999635pt;}
.y3{bottom:915.999634pt;}
.yb7{bottom:924.319630pt;}
.y64{bottom:924.799630pt;}
.y3a{bottom:925.119630pt;}
.y130{bottom:926.559629pt;}
.y1{bottom:954.559618pt;}
.he{height:0.000000pt;}
.hf{height:18.171555pt;}
.h8{height:34.104089pt;}
.h9{height:34.203954pt;}
.h1{height:34.353753pt;}
.h10{height:34.553484pt;}
.h7{height:36.263995pt;}
.hd{height:38.077391pt;}
.hc{height:38.298771pt;}
.ha{height:41.010678pt;}
.h5{height:41.390063pt;}
.h6{height:44.506350pt;}
.h4{height:44.701269pt;}
.hb{height:48.706447pt;}
.h3{height:53.328822pt;}
.h2{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:136.159169pt;}
.x3e{left:141.120584pt;}
.x12{left:146.879941pt;}
.x1a{left:149.279940pt;}
.x1b{left:152.799939pt;}
.x1d{left:158.719882pt;}
.x3b{left:162.079935pt;}
.x1{left:164.319934pt;}
.x4{left:166.399784pt;}
.x1e{left:181.280297pt;}
.x5{left:186.239926pt;}
.x1c{left:200.799920pt;}
.x16{left:203.839954pt;}
.x13{left:205.439918pt;}
.x14{left:210.559916pt;}
.x11{left:230.399908pt;}
.x3d{left:232.159907pt;}
.x3c{left:236.319905pt;}
.xc{left:253.599899pt;}
.x6{left:258.559897pt;}
.x15{left:270.399892pt;}
.x7{left:275.839890pt;}
.x3f{left:297.919881pt;}
.x40{left:301.759879pt;}
.x26{left:315.519874pt;}
.x10{left:319.519872pt;}
.x2b{left:326.399869pt;}
.x19{left:331.039868pt;}
.x2d{left:333.119867pt;}
.x2e{left:334.236820pt;}
.x2f{left:337.759865pt;}
.x30{left:339.679864pt;}
.x2c{left:341.599863pt;}
.x20{left:345.279862pt;}
.x23{left:348.159861pt;}
.x28{left:349.279820pt;}
.x31{left:352.159859pt;}
.x35{left:375.359850pt;}
.x37{left:378.559849pt;}
.x34{left:380.639848pt;}
.x32{left:381.919847pt;}
.x33{left:382.879847pt;}
.x38{left:386.399845pt;}
.xd{left:387.839845pt;}
.x8{left:390.079844pt;}
.x39{left:398.879840pt;}
.x3{left:406.879837pt;}
.x9{left:409.759836pt;}
.xe{left:410.879836pt;}
.x36{left:415.359834pt;}
.x29{left:468.159813pt;}
.x1f{left:474.559810pt;}
.x24{left:481.759807pt;}
.x3a{left:491.359803pt;}
.x18{left:509.759796pt;}
.x27{left:520.959792pt;}
.xf{left:559.999776pt;}
.xa{left:574.879770pt;}
.x22{left:589.759764pt;}
.xb{left:591.830430pt;}
.x21{left:604.639758pt;}
.x25{left:651.519739pt;}
.x2a{left:665.120042pt;}
.x17{left:671.199073pt;}
}




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