
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_4f6e912b934ca3ab7a269539.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_c746434402223db642250a49.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_34ce2b959dfa7bf4f1870704.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_f6e55e296468ba7bcc593a46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880194px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.180120px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.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:-19.871950px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._f{margin-left:-2.015995px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._4{width:2.519994px;}
._14{width:4.175990px;}
._15{width:6.119985px;}
._7{width:7.847980px;}
._6{width:9.287977px;}
._c{width:11.303972px;}
._b{width:12.527969px;}
._12{width:13.607966px;}
._25{width:15.121637px;}
._22{width:16.703958px;}
._20{width:17.711956px;}
._1f{width:18.719953px;}
._17{width:20.879948px;}
._1e{width:22.548108px;}
._d{width:24.263939px;}
._28{width:25.559936px;}
._10{width:27.503931px;}
._11{width:28.583929px;}
._2a{width:29.735926px;}
._1c{width:31.367892px;}
._16{width:32.999947px;}
._5{width:34.679883px;}
._3{width:35.903916px;}
._a{width:37.727906px;}
._9{width:39.383902px;}
._18{width:41.399897px;}
._32{width:42.839893px;}
._13{width:44.711888px;}
._1a{width:46.151885px;}
._1b{width:47.159882px;}
._3b{width:48.383879px;}
._3d{width:50.903873px;}
._3a{width:52.271869px;}
._2b{width:53.927865px;}
._39{width:55.151862px;}
._2c{width:56.447859px;}
._41{width:57.599856px;}
._31{width:58.895853px;}
._30{width:60.839848px;}
._8{width:61.919845px;}
._21{width:63.863840px;}
._3f{width:65.951835px;}
._24{width:67.319832px;}
._23{width:68.831828px;}
._33{width:71.999820px;}
._26{width:76.031810px;}
._3e{width:78.839803px;}
._2e{width:82.295794px;}
._27{width:83.303792px;}
._34{width:84.959454px;}
._e{width:86.327784px;}
._19{width:87.479781px;}
._37{width:88.487779px;}
._2d{width:89.711776px;}
._1d{width:90.791779px;}
._38{width:91.943770px;}
._3c{width:93.239761px;}
._29{width:95.399762px;}
._2f{width:97.343757px;}
._35{width:99.497050px;}
._36{width:100.578723px;}
._40{width:104.039740px;}
.fc6{color:rgb(0,128,128);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs6{font-size:59.903850px;}
.fs3{font-size:66.239834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y2f{bottom:73.289794px;}
.yb4{bottom:88.949760px;}
.y116{bottom:92.189711px;}
.ye6{bottom:93.089764px;}
.y2e{bottom:95.249762px;}
.y82{bottom:101.909750px;}
.yb3{bottom:111.089719px;}
.y115{bottom:114.149679px;}
.ye5{bottom:115.049730px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.yb2{bottom:133.229677px;}
.y114{bottom:136.289637px;}
.ye4{bottom:137.189599px;}
.y2c{bottom:139.529590px;}
.y7f{bottom:146.009584px;}
.yb1{bottom:155.189554px;}
.y113{bottom:158.429596px;}
.ye3{bottom:159.329558px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.yb0{bottom:177.329513px;}
.y117{bottom:180.389564px;}
.y7c{bottom:181.109532px;}
.ye2{bottom:181.289524px;}
.y2a{bottom:183.629515px;}
.y7b{bottom:195.869444px;}
.yaf{bottom:199.289479px;}
.y112{bottom:202.529432px;}
.ye1{bottom:203.429484px;}
.y29{bottom:205.769475px;}
.y7a{bottom:210.629448px;}
.yae{bottom:221.429439px;}
.y111{bottom:224.489398px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.y78{bottom:242.669345px;}
.yad{bottom:243.569399px;}
.y110{bottom:246.629358px;}
.ye0{bottom:247.529320px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y77{bottom:257.429349px;}
.y72{bottom:264.629313px;}
.yac{bottom:265.529275px;}
.y10f{bottom:268.769318px;}
.ydf{bottom:269.669278px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y71{bottom:279.389317px;}
.y75{bottom:286.769273px;}
.yab{bottom:287.669233px;}
.yb6{bottom:288.389294px;}
.y10e{bottom:290.729284px;}
.yde{bottom:291.629245px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.y74{bottom:302.249244px;}
.yaa{bottom:309.629200px;}
.y10d{bottom:312.869152px;}
.ydd{bottom:313.769205px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.y6f{bottom:326.009134px;}
.ya9{bottom:331.769160px;}
.y6b{bottom:333.389182px;}
.y10c{bottom:335.009111px;}
.ydc{bottom:335.909165px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.y6a{bottom:348.194137px;}
.ya8{bottom:353.954072px;}
.y10b{bottom:357.014122px;}
.ydb{bottom:357.914083px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.ya7{bottom:375.914038px;}
.y10a{bottom:379.153991px;}
.yda{bottom:380.054042px;}
.y21{bottom:382.214041px;}
.y67{bottom:387.433998px;}
.ya6{bottom:398.053997px;}
.y109{bottom:401.113957px;}
.yd9{bottom:402.014010px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y65{bottom:416.953914px;}
.ya5{bottom:420.013965px;}
.y108{bottom:423.253916px;}
.ye8{bottom:424.153878px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y63{bottom:441.433863px;}
.ya4{bottom:442.153833px;}
.y107{bottom:445.393876px;}
.yd8{bottom:446.293836px;}
.y1e{bottom:448.453835px;}
.y62{bottom:456.193867px;}
.ya3{bottom:464.293791px;}
.y106{bottom:467.353842px;}
.yd7{bottom:468.253804px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y105{bottom:489.493710px;}
.yd6{bottom:490.393764px;}
.y1c{bottom:492.553761px;}
.ya2{bottom:508.393719px;}
.y5e{bottom:510.193686px;}
.y104{bottom:511.453678px;}
.yd5{bottom:512.353685px;}
.y1b{bottom:514.693674px;}
.y5d{bottom:524.773652px;}
.ya1{bottom:530.353640px;}
.y103{bottom:533.593638px;}
.yd4{bottom:534.493644px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.ya0{bottom:552.493599px;}
.y5b{bottom:554.473605px;}
.y102{bottom:555.733596px;}
.yd3{bottom:556.633602px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.y9f{bottom:574.633557px;}
.y101{bottom:577.693517px;}
.ye7{bottom:578.593525px;}
.y59{bottom:578.773517px;}
.yd2{bottom:579.313540px;}
.y18{bottom:580.933515px;}
.y58{bottom:593.533474px;}
.y9e{bottom:596.593480px;}
.y100{bottom:599.833476px;}
.yd1{bottom:600.733483px;}
.y17{bottom:602.893482px;}
.y57{bottom:608.323461px;}
.y9d{bottom:618.763422px;}
.yff{bottom:621.823427px;}
.yd0{bottom:622.723434px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y54{bottom:640.363359px;}
.y9c{bottom:640.903381px;}
.yfe{bottom:643.963387px;}
.ycf{bottom:644.863347px;}
.y15{bottom:647.203338px;}
.y53{bottom:654.943324px;}
.y9b{bottom:662.863302px;}
.yfd{bottom:666.103300px;}
.yce{bottom:667.003307px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y51{bottom:684.463286px;}
.y9a{bottom:685.003262px;}
.y55{bottom:685.183254px;}
.yfc{bottom:688.063268px;}
.ycd{bottom:688.963275px;}
.y13{bottom:691.303264px;}
.y4d{bottom:701.383241px;}
.y99{bottom:706.963230px;}
.yfb{bottom:710.203181px;}
.ycc{bottom:711.103188px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.y50{bottom:723.343163px;}
.y98{bottom:729.103143px;}
.y4b{bottom:730.723164px;}
.yfa{bottom:732.163147px;}
.ycb{bottom:733.063155px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.y4a{bottom:745.483121px;}
.y97{bottom:751.243102px;}
.y4e{bottom:752.863077px;}
.yf9{bottom:754.303107px;}
.yca{bottom:755.203068px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.y96{bottom:773.203023px;}
.y48{bottom:775.003037px;}
.yf8{bottom:776.443020px;}
.yc9{bottom:777.343028px;}
.yf{bottom:779.503026px;}
.y95{bottom:795.342983px;}
.y47{bottom:798.402987px;}
.yc8{bottom:799.302994px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.y46{bottom:813.162945px;}
.y94{bottom:817.302949px;}
.y41{bottom:820.542901px;}
.yc7{bottom:821.442907px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.y40{bottom:835.482896px;}
.yb5{bottom:839.442862px;}
.y93{bottom:840.162877px;}
.yf7{bottom:842.502868px;}
.y44{bottom:842.682860px;}
.yc6{bottom:843.402875px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.yf6{bottom:864.642828px;}
.y43{bottom:864.822820px;}
.yc5{bottom:865.542788px;}
.yb{bottom:868.602794px;}
.y92{bottom:872.382813px;}
.y3e{bottom:885.027771px;}
.yf5{bottom:886.827762px;}
.yc4{bottom:887.727746px;}
.ya{bottom:889.887744px;}
.y91{bottom:894.567749px;}
.y3a{bottom:904.827717px;}
.yf4{bottom:908.787706px;}
.yc3{bottom:909.687690px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y90{bottom:916.707684px;}
.y39{bottom:919.587674px;}
.y3c{bottom:926.967654px;}
.yf3{bottom:930.927643px;}
.y118{bottom:931.647635px;}
.yc2{bottom:931.827649px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y8f{bottom:938.667629px;}
.y3b{bottom:941.727611px;}
.y37{bottom:949.107612px;}
.yf2{bottom:953.067602px;}
.yc1{bottom:953.967587px;}
.y7{bottom:956.127584px;}
.y8e{bottom:960.807565px;}
.y36{bottom:963.867571px;}
.yf1{bottom:975.027546px;}
.yc0{bottom:975.927530px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.y8d{bottom:982.767510px;}
.yf0{bottom:997.167483px;}
.ybf{bottom:998.067490px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y8c{bottom:1004.907468px;}
.y33{bottom:1017.867436px;}
.yef{bottom:1019.127427px;}
.ybe{bottom:1020.027433px;}
.y32{bottom:1021.467418px;}
.y8b{bottom:1038.927373px;}
.yee{bottom:1041.267364px;}
.ybd{bottom:1042.167371px;}
.yed{bottom:1063.407322px;}
.ybc{bottom:1064.307306px;}
.y8a{bottom:1073.847294px;}
.yec{bottom:1085.367267px;}
.ybb{bottom:1086.267262px;}
.y89{bottom:1095.807239px;}
.yeb{bottom:1107.507203px;}
.yba{bottom:1108.407199px;}
.y88{bottom:1129.101155px;}
.yea{bottom:1129.461151px;}
.yb9{bottom:1130.361146px;}
.ye9{bottom:1151.637089px;}
.y87{bottom:1151.997098px;}
.yb8{bottom:1152.537096px;}
.yb7{bottom:1156.497086px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.h7{height:36.179910px;}
.h8{height:36.287909px;}
.ha{height:48.774253px;}
.hb{height:53.015492px;}
.h4{height:53.999865px;}
.h5{height:54.107865px;}
.h3{height:59.438875px;}
.hc{height:59.582101px;}
.h9{height:69.654447px;}
.h6{height:80.819810px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x52{left:67.859820px;}
.x53{left:73.259803px;}
.x4b{left:82.079783px;}
.x4f{left:83.879774px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.xb{left:115.775694px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x5{left:180.389539px;}
.x51{left:256.709343px;}
.x50{left:263.369331px;}
.x4c{left:307.154225px;}
.x4e{left:350.534113px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x54{left:487.183782px;}
.x55{left:488.443773px;}
.x4d{left:558.103602px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x56{left:589.963509px;}
.x1e{left:616.963441px;}
.x23{left:627.583440px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560172pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.160106pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ws4{word-spacing:-17.663956pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._f{margin-left:-1.791996pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._4{width:2.239994pt;}
._14{width:3.711991pt;}
._15{width:5.439986pt;}
._7{width:6.975983pt;}
._6{width:8.255979pt;}
._c{width:10.047975pt;}
._b{width:11.135972pt;}
._12{width:12.095970pt;}
._25{width:13.441455pt;}
._22{width:14.847963pt;}
._20{width:15.743961pt;}
._1f{width:16.639958pt;}
._17{width:18.559954pt;}
._1e{width:20.042763pt;}
._d{width:21.567946pt;}
._28{width:22.719943pt;}
._10{width:24.447939pt;}
._11{width:25.407936pt;}
._2a{width:26.431934pt;}
._1c{width:27.882570pt;}
._16{width:29.333287pt;}
._5{width:30.826563pt;}
._3{width:31.914592pt;}
._a{width:33.535916pt;}
._9{width:35.007912pt;}
._18{width:36.799908pt;}
._32{width:38.079905pt;}
._13{width:39.743901pt;}
._1a{width:41.023897pt;}
._1b{width:41.919895pt;}
._3b{width:43.007892pt;}
._3d{width:45.247887pt;}
._3a{width:46.463884pt;}
._2b{width:47.935880pt;}
._39{width:49.023877pt;}
._2c{width:50.175875pt;}
._41{width:51.199872pt;}
._31{width:52.351869pt;}
._30{width:54.079865pt;}
._8{width:55.039862pt;}
._21{width:56.767858pt;}
._3f{width:58.623853pt;}
._24{width:59.839850pt;}
._23{width:61.183847pt;}
._33{width:63.999840pt;}
._26{width:67.583831pt;}
._3e{width:70.079825pt;}
._2e{width:73.151817pt;}
._27{width:74.047815pt;}
._34{width:75.519514pt;}
._e{width:76.735808pt;}
._19{width:77.759806pt;}
._37{width:78.655803pt;}
._2d{width:79.743801pt;}
._1d{width:80.703804pt;}
._38{width:81.727796pt;}
._3c{width:82.879787pt;}
._29{width:84.799788pt;}
._2f{width:86.527784pt;}
._35{width:88.441823pt;}
._36{width:89.403309pt;}
._40{width:92.479769pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs6{font-size:53.247867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y2f{bottom:65.146484pt;}
.yb4{bottom:79.066453pt;}
.y116{bottom:81.946410pt;}
.ye6{bottom:82.746457pt;}
.y2e{bottom:84.666455pt;}
.y82{bottom:90.586444pt;}
.yb3{bottom:98.746417pt;}
.y115{bottom:101.466381pt;}
.ye5{bottom:102.266427pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.yb2{bottom:118.426380pt;}
.y114{bottom:121.146344pt;}
.ye4{bottom:121.946310pt;}
.y2c{bottom:124.026302pt;}
.y7f{bottom:129.786297pt;}
.yb1{bottom:137.946270pt;}
.y113{bottom:140.826308pt;}
.ye3{bottom:141.626274pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.yb0{bottom:157.626234pt;}
.y117{bottom:160.346279pt;}
.y7c{bottom:160.986251pt;}
.ye2{bottom:161.146244pt;}
.y2a{bottom:163.226236pt;}
.y7b{bottom:174.106173pt;}
.yaf{bottom:177.146204pt;}
.y112{bottom:180.026162pt;}
.ye1{bottom:180.826208pt;}
.y29{bottom:182.906200pt;}
.y7a{bottom:187.226176pt;}
.yae{bottom:196.826168pt;}
.y111{bottom:199.546132pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.y78{bottom:215.706085pt;}
.yad{bottom:216.506132pt;}
.y110{bottom:219.226096pt;}
.ye0{bottom:220.026062pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y77{bottom:228.826088pt;}
.y72{bottom:235.226056pt;}
.yac{bottom:236.026022pt;}
.y10f{bottom:238.906060pt;}
.ydf{bottom:239.706025pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y71{bottom:248.346059pt;}
.y75{bottom:254.906020pt;}
.yab{bottom:255.705985pt;}
.yb6{bottom:256.346039pt;}
.y10e{bottom:258.426030pt;}
.yde{bottom:259.225996pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.y74{bottom:268.665995pt;}
.yaa{bottom:275.225956pt;}
.y10d{bottom:278.105913pt;}
.ydd{bottom:278.905960pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.y6f{bottom:289.785897pt;}
.ya9{bottom:294.905920pt;}
.y6b{bottom:296.345939pt;}
.y10c{bottom:297.785877pt;}
.ydc{bottom:298.585924pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.y6a{bottom:309.505900pt;}
.ya8{bottom:314.625841pt;}
.y10b{bottom:317.345887pt;}
.ydb{bottom:318.145851pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.ya7{bottom:334.145811pt;}
.y10a{bottom:337.025769pt;}
.yda{bottom:337.825815pt;}
.y21{bottom:339.745815pt;}
.y67{bottom:344.385776pt;}
.ya6{bottom:353.825775pt;}
.y109{bottom:356.545739pt;}
.yd9{bottom:357.345787pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y65{bottom:370.625701pt;}
.ya5{bottom:373.345747pt;}
.y108{bottom:376.225703pt;}
.ye8{bottom:377.025669pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y63{bottom:392.385656pt;}
.ya4{bottom:393.025629pt;}
.y107{bottom:395.905668pt;}
.yd8{bottom:396.705632pt;}
.y1e{bottom:398.625631pt;}
.y62{bottom:405.505660pt;}
.ya3{bottom:412.705592pt;}
.y106{bottom:415.425637pt;}
.yd7{bottom:416.225603pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y105{bottom:435.105520pt;}
.yd6{bottom:435.905568pt;}
.y1c{bottom:437.825565pt;}
.ya2{bottom:451.905528pt;}
.y5e{bottom:453.505498pt;}
.y104{bottom:454.625491pt;}
.yd5{bottom:455.425497pt;}
.y1b{bottom:457.505488pt;}
.y5d{bottom:466.465469pt;}
.ya1{bottom:471.425457pt;}
.y103{bottom:474.305456pt;}
.yd4{bottom:475.105462pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.ya0{bottom:491.105422pt;}
.y5b{bottom:492.865427pt;}
.y102{bottom:493.985418pt;}
.yd3{bottom:494.785424pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.y9f{bottom:510.785384pt;}
.y101{bottom:513.505348pt;}
.ye7{bottom:514.305356pt;}
.y59{bottom:514.465349pt;}
.yd2{bottom:514.945369pt;}
.y18{bottom:516.385346pt;}
.y58{bottom:527.585310pt;}
.y9e{bottom:530.305316pt;}
.y100{bottom:533.185312pt;}
.yd1{bottom:533.985318pt;}
.y17{bottom:535.905318pt;}
.y57{bottom:540.731966pt;}
.y9d{bottom:550.011930pt;}
.yff{bottom:552.731936pt;}
.yd0{bottom:553.531942pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y54{bottom:569.211874pt;}
.y9c{bottom:569.691894pt;}
.yfe{bottom:572.411900pt;}
.ycf{bottom:573.211864pt;}
.y15{bottom:575.291856pt;}
.y53{bottom:582.171843pt;}
.y9b{bottom:589.211824pt;}
.yfd{bottom:592.091822pt;}
.yce{bottom:592.891828pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y51{bottom:608.411810pt;}
.y9a{bottom:608.891788pt;}
.y55{bottom:609.051781pt;}
.yfc{bottom:611.611794pt;}
.ycd{bottom:612.411800pt;}
.y13{bottom:614.491790pt;}
.y4d{bottom:623.451769pt;}
.y99{bottom:628.411760pt;}
.yfb{bottom:631.291716pt;}
.ycc{bottom:632.091722pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.y50{bottom:642.971701pt;}
.y98{bottom:648.091682pt;}
.y4b{bottom:649.531702pt;}
.yfa{bottom:650.811686pt;}
.ycb{bottom:651.611694pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.y4a{bottom:662.651663pt;}
.y97{bottom:667.771647pt;}
.y4e{bottom:669.211624pt;}
.yf9{bottom:670.491650pt;}
.yca{bottom:671.291616pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.y96{bottom:687.291576pt;}
.y48{bottom:688.891588pt;}
.yf8{bottom:690.171573pt;}
.yc9{bottom:690.971581pt;}
.yf{bottom:692.891578pt;}
.y95{bottom:706.971541pt;}
.y47{bottom:709.691544pt;}
.yc8{bottom:710.491550pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.y46{bottom:722.811506pt;}
.y94{bottom:726.491510pt;}
.y41{bottom:729.371467pt;}
.yc7{bottom:730.171473pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.y40{bottom:742.651463pt;}
.yb5{bottom:746.171433pt;}
.y93{bottom:746.811446pt;}
.yf7{bottom:748.891438pt;}
.y44{bottom:749.051431pt;}
.yc6{bottom:749.691444pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.yf6{bottom:768.571403pt;}
.y43{bottom:768.731396pt;}
.yc5{bottom:769.371367pt;}
.yb{bottom:772.091372pt;}
.y92{bottom:775.451389pt;}
.y3e{bottom:786.691352pt;}
.yf5{bottom:788.291344pt;}
.yc4{bottom:789.091330pt;}
.ya{bottom:791.011328pt;}
.y91{bottom:795.171332pt;}
.y3a{bottom:804.291304pt;}
.yf4{bottom:807.811294pt;}
.yc3{bottom:808.611280pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y90{bottom:814.851275pt;}
.y39{bottom:817.411266pt;}
.y3c{bottom:823.971248pt;}
.yf3{bottom:827.491238pt;}
.y118{bottom:828.131231pt;}
.yc2{bottom:828.291244pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y8f{bottom:834.371226pt;}
.y3b{bottom:837.091210pt;}
.y37{bottom:843.651211pt;}
.yf2{bottom:847.171202pt;}
.yc1{bottom:847.971188pt;}
.y7{bottom:849.891186pt;}
.y8e{bottom:854.051169pt;}
.y36{bottom:856.771174pt;}
.yf1{bottom:866.691152pt;}
.yc0{bottom:867.491138pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.y8d{bottom:873.571120pt;}
.yf0{bottom:886.371096pt;}
.ybf{bottom:887.171102pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y8c{bottom:893.251083pt;}
.y33{bottom:904.771054pt;}
.yef{bottom:905.891046pt;}
.ybe{bottom:906.691052pt;}
.y32{bottom:907.971038pt;}
.y8b{bottom:923.490998pt;}
.yee{bottom:925.570990pt;}
.ybd{bottom:926.370996pt;}
.yed{bottom:945.250953pt;}
.ybc{bottom:946.050939pt;}
.y8a{bottom:954.530928pt;}
.yec{bottom:964.770904pt;}
.ybb{bottom:965.570899pt;}
.y89{bottom:974.050880pt;}
.yeb{bottom:984.450847pt;}
.yba{bottom:985.250844pt;}
.y88{bottom:1003.645471pt;}
.yea{bottom:1003.965467pt;}
.yb9{bottom:1004.765463pt;}
.ye9{bottom:1023.677413pt;}
.y87{bottom:1023.997420pt;}
.yb8{bottom:1024.477419pt;}
.yb7{bottom:1027.997410pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.h7{height:32.159920pt;}
.h8{height:32.255919pt;}
.ha{height:43.354892pt;}
.hb{height:47.124882pt;}
.h4{height:47.999880pt;}
.h5{height:48.095880pt;}
.h3{height:52.834555pt;}
.hc{height:52.961868pt;}
.h9{height:61.915064pt;}
.h6{height:71.839831pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x52{left:60.319840pt;}
.x53{left:65.119825pt;}
.x4b{left:72.959807pt;}
.x4f{left:74.559799pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.xb{left:102.911728pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x5{left:160.346256pt;}
.x51{left:228.186083pt;}
.x50{left:234.106072pt;}
.x4c{left:273.025977pt;}
.x4e{left:311.585878pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x54{left:433.052251pt;}
.x55{left:434.172243pt;}
.x4d{left:496.092090pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x56{left:524.412008pt;}
.x1e{left:548.411948pt;}
.x23{left:557.851947pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
}




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