
    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_a0c3b97c5c34956b87f80aef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_458e028a11f5bc8ef169395c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_d9ae76646a9c27f64b9d867b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_033bf4f5c99c2320721f3404.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_b1e7c9e5aa4cbd06bac9ac88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_ee0f76f964c0226ea2243abb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d92f4cf3592f227f5ddf7ee5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v2{vertical-align:-27.359802px;}
.v3{vertical-align:-5.760135px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760135px;}
.v1{vertical-align:27.359802px;}
.v5{vertical-align:41.039982px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.142459px;}
.ls8{letter-spacing:0.142464px;}
.lsa{letter-spacing:0.142531px;}
.ls10{letter-spacing:0.142599px;}
.lse{letter-spacing:0.142603px;}
.ls19{letter-spacing:0.149082px;}
.lsf{letter-spacing:0.199669px;}
.ls9{letter-spacing:0.199804px;}
.lsd{letter-spacing:0.199871px;}
.lsb{letter-spacing:0.199876px;}
.ls6{letter-spacing:0.199943px;}
.ls4{letter-spacing:0.215300px;}
.ls11{letter-spacing:0.286523px;}
.ls15{letter-spacing:0.286528px;}
.ls16{letter-spacing:0.359041px;}
.ls12{letter-spacing:0.359078px;}
.lsc{letter-spacing:0.359109px;}
.ls5{letter-spacing:2.159373px;}
.ls3{letter-spacing:10.799432px;}
.ls2{letter-spacing:22.319288px;}
.ls14{letter-spacing:22.319423px;}
.ls13{letter-spacing:27.359126px;}
.ls18{letter-spacing:34.055251px;}
.ls1{letter-spacing:46.079414px;}
.ls17{letter-spacing:54.215264px;}
.ls1a{letter-spacing:845.999288px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000676px;}
.ws3{word-spacing:-12.060450px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._d{margin-left:-16.560622px;}
._3{margin-left:-5.298661px;}
._2{margin-left:-3.792266px;}
._9{margin-left:-2.642495px;}
._1{margin-left:-1.119084px;}
._0{width:1.295997px;}
._5{width:2.502937px;}
._4{width:3.687326px;}
._a{width:4.748522px;}
._b{width:5.841834px;}
._8{width:7.287461px;}
._10{width:8.465662px;}
._11{width:9.501263px;}
._13{width:10.805927px;}
._12{width:12.414841px;}
._15{width:13.692046px;}
._16{width:14.996021px;}
._14{width:16.004851px;}
._23{width:19.042465px;}
._7{width:20.221791px;}
._6{width:21.309144px;}
._17{width:22.448812px;}
._24{width:24.570360px;}
._19{width:25.982007px;}
._1a{width:27.464021px;}
._2b{width:29.456367px;}
._1f{width:31.032655px;}
._20{width:32.050204px;}
._21{width:33.096316px;}
._22{width:34.543297px;}
._2a{width:36.114119px;}
._1e{width:37.632664px;}
._1b{width:39.598956px;}
._27{width:41.717129px;}
._53{width:43.353222px;}
._54{width:44.372812px;}
._25{width:45.937038px;}
._26{width:47.136354px;}
._18{width:48.708913px;}
._e{width:50.586963px;}
._f{width:52.111958px;}
._1c{width:57.292496px;}
._1d{width:58.418923px;}
._43{width:76.817149px;}
._2c{width:79.164213px;}
._29{width:104.559792px;}
._28{width:106.207364px;}
._3e{width:114.322084px;}
._35{width:119.295532px;}
._34{width:120.954609px;}
._2d{width:126.496991px;}
._2e{width:127.790581px;}
._36{width:137.432050px;}
._37{width:138.954609px;}
._38{width:155.296884px;}
._3d{width:156.438542px;}
._33{width:159.114663px;}
._45{width:167.170947px;}
._4c{width:171.419098px;}
._3c{width:177.252390px;}
._2f{width:179.122057px;}
._32{width:180.133674px;}
._44{width:183.566320px;}
._42{width:185.172300px;}
._40{width:186.968279px;}
._49{width:190.066626px;}
._c{width:194.407302px;}
._4b{width:195.901270px;}
._3b{width:198.133674px;}
._41{width:220.453773px;}
._47{width:234.782555px;}
._39{width:249.180603px;}
._3f{width:250.845609px;}
._30{width:270.285919px;}
._31{width:285.180603px;}
._4e{width:289.935730px;}
._51{width:307.935730px;}
._4f{width:323.556900px;}
._46{width:330.475952px;}
._52{width:347.537158px;}
._4a{width:436.441103px;}
._3a{width:478.285713px;}
._48{width:710.091151px;}
._50{width:984.524504px;}
._4d{width:1020.525856px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y8a{bottom:2.879997px;}
.y84{bottom:2.879998px;}
.y5{bottom:3.240005px;}
.yca{bottom:3.959953px;}
.y96{bottom:3.959996px;}
.y91{bottom:3.959997px;}
.y86{bottom:3.960021px;}
.y8c{bottom:3.960022px;}
.yd8{bottom:4.319995px;}
.yc5{bottom:4.320030px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.yd0{bottom:104.760132px;}
.y71{bottom:106.020127px;}
.y3d{bottom:109.440033px;}
.y8b{bottom:111.420043px;}
.y8d{bottom:115.380066px;}
.y88{bottom:116.820099px;}
.y89{bottom:120.780052px;}
.ycf{bottom:125.460091px;}
.y70{bottom:126.720085px;}
.y3c{bottom:130.140060px;}
.y85{bottom:136.440033px;}
.y87{bottom:140.400055px;}
.y82{bottom:141.840088px;}
.ycd{bottom:142.920043px;}
.y83{bottom:145.800041px;}
.yce{bottom:146.880066px;}
.y6f{bottom:147.420043px;}
.ycc{bottom:148.320099px;}
.y3b{bottom:150.840088px;}
.yf2{bottom:161.100083px;}
.y81{bottom:163.260064px;}
.yc9{bottom:165.600083px;}
.y6e{bottom:168.120072px;}
.ycb{bottom:169.560036px;}
.yc8{bottom:171.000068px;}
.y3a{bottom:171.540047px;}
.yf1{bottom:181.440033px;}
.y80{bottom:183.960091px;}
.y6d{bottom:188.820099px;}
.y39{bottom:192.240074px;}
.yc7{bottom:196.920043px;}
.yf0{bottom:202.500068px;}
.yf9{bottom:203.400055px;}
.y7f{bottom:204.660049px;}
.y6c{bottom:209.520058px;}
.y38{bottom:212.940033px;}
.yc6{bottom:217.620072px;}
.yef{bottom:223.200096px;}
.y7e{bottom:225.360077px;}
.y6b{bottom:230.220085px;}
.y37{bottom:233.640060px;}
.yc4{bottom:234.000068px;}
.yc3{bottom:238.320099px;}
.yf8{bottom:241.380066px;}
.yee{bottom:243.900055px;}
.y7d{bottom:246.420043px;}
.y6a{bottom:250.920043px;}
.y36{bottom:254.340088px;}
.yc2{bottom:259.020058px;}
.yed{bottom:264.240074px;}
.yf7{bottom:265.140060px;}
.y7c{bottom:267.120072px;}
.y69{bottom:271.620072px;}
.y35{bottom:275.040047px;}
.yc1{bottom:280.080093px;}
.yec{bottom:285.300041px;}
.y7b{bottom:288.180039px;}
.yf6{bottom:289.080093px;}
.y68{bottom:292.320099px;}
.y34{bottom:295.740074px;}
.yc0{bottom:300.780052px;}
.yeb{bottom:306.000068px;}
.y7a{bottom:308.880066px;}
.yf5{bottom:312.840088px;}
.y67{bottom:313.020058px;}
.y33{bottom:316.440033px;}
.ybf{bottom:321.840088px;}
.yea{bottom:326.700096px;}
.y79{bottom:329.580093px;}
.y66{bottom:333.720085px;}
.y32{bottom:337.140060px;}
.ybe{bottom:342.540047px;}
.ye9{bottom:347.400055px;}
.y78{bottom:351.720085px;}
.y65{bottom:354.420043px;}
.y31{bottom:357.840088px;}
.ybd{bottom:363.240074px;}
.ye8{bottom:368.100083px;}
.y77{bottom:372.420043px;}
.y64{bottom:375.120072px;}
.y30{bottom:378.540047px;}
.ybc{bottom:383.760064px;}
.ye7{bottom:388.800041px;}
.y76{bottom:393.120072px;}
.y63{bottom:395.820099px;}
.y2f{bottom:399.240074px;}
.ybb{bottom:405.900055px;}
.ye6{bottom:409.500068px;}
.y75{bottom:413.820099px;}
.y62{bottom:416.520058px;}
.y2e{bottom:419.940033px;}
.yba{bottom:426.600083px;}
.ye5{bottom:430.200096px;}
.y74{bottom:434.520058px;}
.y61{bottom:437.220085px;}
.y2d{bottom:440.640060px;}
.yb9{bottom:447.300041px;}
.ye4{bottom:450.900055px;}
.y73{bottom:455.040047px;}
.y60{bottom:457.920043px;}
.y2c{bottom:461.340088px;}
.yb8{bottom:468.000068px;}
.ye3{bottom:471.600083px;}
.y72{bottom:477.180039px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:482.040047px;}
.yb7{bottom:490.140060px;}
.ye2{bottom:492.300041px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:502.740074px;}
.yb6{bottom:510.840088px;}
.ye1{bottom:513.000068px;}
.y5d{bottom:520.020058px;}
.y29{bottom:523.440033px;}
.yb5{bottom:531.540047px;}
.ye0{bottom:533.700096px;}
.y5c{bottom:540.720085px;}
.y28{bottom:544.140060px;}
.yb4{bottom:552.240074px;}
.ydf{bottom:554.400055px;}
.y5b{bottom:561.420043px;}
.y27{bottom:564.840088px;}
.yb3{bottom:572.940033px;}
.yde{bottom:575.820099px;}
.y5a{bottom:582.120072px;}
.y26{bottom:585.540047px;}
.yb2{bottom:593.640060px;}
.ydd{bottom:597.600083px;}
.y59{bottom:602.820099px;}
.y25{bottom:606.240074px;}
.yb1{bottom:614.340088px;}
.ydc{bottom:619.200096px;}
.y58{bottom:623.520058px;}
.y24{bottom:626.940033px;}
.yb0{bottom:635.040047px;}
.ydb{bottom:639.900055px;}
.y57{bottom:644.220085px;}
.y23{bottom:647.640060px;}
.yaf{bottom:655.740074px;}
.yda{bottom:661.500068px;}
.y56{bottom:664.920043px;}
.y22{bottom:668.340088px;}
.yae{bottom:676.440033px;}
.yd9{bottom:682.200096px;}
.y55{bottom:685.620072px;}
.y21{bottom:689.040081px;}
.yad{bottom:697.140060px;}
.yd7{bottom:699.840054px;}
.yd6{bottom:704.160049px;}
.y54{bottom:706.320065px;}
.y20{bottom:709.740074px;}
.yac{bottom:717.840054px;}
.yd5{bottom:726.300076px;}
.y53{bottom:727.020058px;}
.y1f{bottom:730.440067px;}
.yab{bottom:738.540081px;}
.yd3{bottom:747.000068px;}
.y52{bottom:747.720051px;}
.y1e{bottom:751.140060px;}
.yaa{bottom:759.240074px;}
.yd4{bottom:767.700061px;}
.y51{bottom:768.420078px;}
.y1d{bottom:771.840054px;}
.ya9{bottom:779.940067px;}
.yd2{bottom:788.760064px;}
.y50{bottom:789.120072px;}
.y1c{bottom:792.540081px;}
.ya8{bottom:800.640060px;}
.yd1{bottom:809.460056px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:812.880066px;}
.ya7{bottom:821.340054px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:833.220051px;}
.ya6{bottom:842.040081px;}
.y19{bottom:850.500068px;}
.y4d{bottom:851.220051px;}
.ya5{bottom:862.740074px;}
.y18{bottom:867.780052px;}
.y4c{bottom:871.920078px;}
.ya4{bottom:883.260064px;}
.y17{bottom:885.420078px;}
.y4b{bottom:892.620072px;}
.ya3{bottom:905.400055px;}
.y16{bottom:906.480079px;}
.y4a{bottom:913.320065px;}
.ya2{bottom:926.100083px;}
.y15{bottom:927.180073px;}
.y49{bottom:934.020058px;}
.ya1{bottom:946.800076px;}
.y14{bottom:947.880066px;}
.y48{bottom:954.720051px;}
.ya0{bottom:967.500068px;}
.y13{bottom:968.220051px;}
.y47{bottom:975.420061px;}
.y9f{bottom:988.200061px;}
.y12{bottom:988.920061px;}
.y46{bottom:996.120072px;}
.y11{bottom:1009.620072px;}
.y9e{bottom:1010.340070px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1030.320065px;}
.y9d{bottom:1031.040064px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1051.020058px;}
.y9c{bottom:1051.740074px;}
.yf4{bottom:1057.860060px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1071.720068px;}
.y9b{bottom:1072.440067px;}
.yf3{bottom:1078.560070px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1092.240074px;}
.y99{bottom:1093.860060px;}
.y9a{bottom:1097.820065px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1112.940067px;}
.y98{bottom:1115.280069px;}
.y40{bottom:1120.320065px;}
.y95{bottom:1132.740066px;}
.yb{bottom:1136.159694px;}
.y97{bottom:1136.700061px;}
.y93{bottom:1138.140069px;}
.y3f{bottom:1141.020066px;}
.y94{bottom:1142.100065px;}
.y90{bottom:1155.420069px;}
.y92{bottom:1159.380066px;}
.ya{bottom:1160.461384px;}
.y8e{bottom:1160.820065px;}
.y3e{bottom:1161.720068px;}
.y8f{bottom:1164.780069px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h14{height:12.239997px;}
.h17{height:12.239998px;}
.he{height:12.240006px;}
.h3{height:14.579955px;}
.h1c{height:20.519990px;}
.h1d{height:20.520024px;}
.h15{height:21.599997px;}
.hf{height:21.600013px;}
.h12{height:21.600015px;}
.h6{height:33.825793px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.h10{height:47.990084px;}
.h2{height:50.486271px;}
.h9{height:51.998047px;}
.h20{height:52.419938px;}
.h16{height:56.246267px;}
.h18{height:56.246303px;}
.h13{height:56.246402px;}
.h11{height:56.246406px;}
.ha{height:59.345979px;}
.hc{height:61.185595px;}
.h1a{height:61.185730px;}
.h1b{height:61.185735px;}
.h19{height:61.185802px;}
.hd{height:61.185870px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.h21{height:65.886904px;}
.h1e{height:91.526253px;}
.h1f{height:92.246127px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w8{width:0.540012px;}
.wa{width:4.680004px;}
.w4{width:5.399987px;}
.w5{width:6.840002px;}
.w3{width:7.019989px;}
.w6{width:9.899985px;}
.w9{width:9.900020px;}
.w7{width:9.900021px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:69.659998px;}
.x1{left:84.959997px;}
.x8{left:91.080819px;}
.x20{left:101.700002px;}
.xd{left:106.200002px;}
.x46{left:111.959997px;}
.xb{left:115.920001px;}
.x36{left:117.000000px;}
.x14{left:124.739997px;}
.x29{left:127.439999px;}
.x2b{left:133.019998px;}
.x15{left:134.459997px;}
.x21{left:135.719999px;}
.x12{left:138.060001px;}
.x22{left:142.560001px;}
.x27{left:144.719999px;}
.x28{left:151.560001px;}
.x3b{left:154.800007px;}
.x3a{left:178.020006px;}
.x2a{left:180.719999px;}
.xc{left:217.620002px;}
.x2c{left:248.580008px;}
.x2e{left:268.379998px;}
.x17{left:278.099997px;}
.x16{left:286.199993px;}
.xe{left:289.620002px;}
.x18{left:313.199993px;}
.x3d{left:324.899987px;}
.x3c{left:331.920010px;}
.x9{left:341.999120px;}
.x44{left:353.339985px;}
.x2d{left:364.139992px;}
.x30{left:376.560001px;}
.x32{left:390.420010px;}
.x1a{left:394.379998px;}
.x31{left:396.540012px;}
.x1b{left:400.680005px;}
.x1c{left:408.600014px;}
.x2f{left:414.360008px;}
.x19{left:426.600014px;}
.x2{left:432.899987px;}
.x3e{left:442.079990px;}
.x23{left:443.879998px;}
.xa{left:446.399987px;}
.x24{left:453.779983px;}
.x3f{left:459.720017px;}
.x45{left:472.860008px;}
.x11{left:500.399987px;}
.x34{left:516.959988px;}
.x33{left:518.939999px;}
.x10{left:522.360008px;}
.x1d{left:529.199993px;}
.x1e{left:531.180005px;}
.x39{left:555.839985px;}
.x40{left:559.439999px;}
.x37{left:564.839985px;}
.x25{left:570.060001px;}
.x38{left:574.740006px;}
.x26{left:579.960023px;}
.xf{left:649.980011px;}
.x35{left:660.960023px;}
.x1f{left:666.360008px;}
.x42{left:712.799973px;}
.x13{left:724.500000px;}
.x41{left:727.379998px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v2{vertical-align:-24.319824pt;}
.v3{vertical-align:-5.120120pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120120pt;}
.v1{vertical-align:24.319824pt;}
.v5{vertical-align:36.479984pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.126631pt;}
.ls8{letter-spacing:0.126635pt;}
.lsa{letter-spacing:0.126695pt;}
.ls10{letter-spacing:0.126755pt;}
.lse{letter-spacing:0.126759pt;}
.ls19{letter-spacing:0.132518pt;}
.lsf{letter-spacing:0.177483pt;}
.ls9{letter-spacing:0.177603pt;}
.lsd{letter-spacing:0.177663pt;}
.lsb{letter-spacing:0.177667pt;}
.ls6{letter-spacing:0.177727pt;}
.ls4{letter-spacing:0.191378pt;}
.ls11{letter-spacing:0.254687pt;}
.ls15{letter-spacing:0.254691pt;}
.ls16{letter-spacing:0.319148pt;}
.ls12{letter-spacing:0.319180pt;}
.lsc{letter-spacing:0.319208pt;}
.ls5{letter-spacing:1.919443pt;}
.ls3{letter-spacing:9.599495pt;}
.ls2{letter-spacing:19.839367pt;}
.ls14{letter-spacing:19.839487pt;}
.ls13{letter-spacing:24.319223pt;}
.ls18{letter-spacing:30.271334pt;}
.ls1{letter-spacing:40.959479pt;}
.ls17{letter-spacing:48.191346pt;}
.ls1a{letter-spacing:751.999367pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-10.720400pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._d{margin-left:-14.720553pt;}
._3{margin-left:-4.709921pt;}
._2{margin-left:-3.370903pt;}
._9{margin-left:-2.348885pt;}
._1{margin-left:-0.994741pt;}
._0{width:1.151997pt;}
._5{width:2.224833pt;}
._4{width:3.277623pt;}
._a{width:4.220908pt;}
._b{width:5.192741pt;}
._8{width:6.477743pt;}
._10{width:7.525033pt;}
._11{width:8.445567pt;}
._13{width:9.605268pt;}
._12{width:11.035415pt;}
._15{width:12.170707pt;}
._16{width:13.329797pt;}
._14{width:14.226534pt;}
._23{width:16.926636pt;}
._7{width:17.974925pt;}
._6{width:18.941461pt;}
._17{width:19.954500pt;}
._24{width:21.840320pt;}
._19{width:23.095117pt;}
._1a{width:24.412463pt;}
._2b{width:26.183437pt;}
._1f{width:27.584582pt;}
._20{width:28.489070pt;}
._21{width:29.418948pt;}
._22{width:30.705153pt;}
._2a{width:32.101439pt;}
._1e{width:33.451256pt;}
._1b{width:35.199072pt;}
._27{width:37.081893pt;}
._53{width:38.536198pt;}
._54{width:39.442500pt;}
._25{width:40.832923pt;}
._26{width:41.898981pt;}
._18{width:43.296812pt;}
._e{width:44.966189pt;}
._f{width:46.321740pt;}
._1c{width:50.926663pt;}
._1d{width:51.927932pt;}
._43{width:68.281911pt;}
._2c{width:70.368189pt;}
._29{width:92.942037pt;}
._28{width:94.406546pt;}
._3e{width:101.619631pt;}
._35{width:106.040473pt;}
._34{width:107.515208pt;}
._2d{width:112.441770pt;}
._2e{width:113.591628pt;}
._36{width:122.161822pt;}
._37{width:123.515208pt;}
._38{width:138.041675pt;}
._3d{width:139.056482pt;}
._33{width:141.435256pt;}
._45{width:148.596398pt;}
._4c{width:152.372531pt;}
._3c{width:157.557680pt;}
._2f{width:159.219607pt;}
._32{width:160.118822pt;}
._44{width:163.170062pt;}
._42{width:164.597600pt;}
._40{width:166.194026pt;}
._49{width:168.948112pt;}
._c{width:172.806491pt;}
._4b{width:174.134462pt;}
._3b{width:176.118822pt;}
._41{width:195.958910pt;}
._47{width:208.695604pt;}
._39{width:221.493869pt;}
._3f{width:222.973874pt;}
._30{width:240.254150pt;}
._31{width:253.493869pt;}
._4e{width:257.720649pt;}
._51{width:273.720649pt;}
._4f{width:287.606133pt;}
._46{width:293.756402pt;}
._52{width:308.921919pt;}
._4a{width:387.947647pt;}
._3a{width:425.142856pt;}
._48{width:631.192134pt;}
._50{width:875.132892pt;}
._4d{width:907.134094pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y8a{bottom:2.559997pt;}
.y84{bottom:2.559998pt;}
.y5{bottom:2.880004pt;}
.yca{bottom:3.519958pt;}
.y96{bottom:3.519996pt;}
.y91{bottom:3.519997pt;}
.y86{bottom:3.520019pt;}
.y8c{bottom:3.520020pt;}
.yd8{bottom:3.839996pt;}
.yc5{bottom:3.840027pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.yd0{bottom:93.120118pt;}
.y71{bottom:94.240113pt;}
.y3d{bottom:97.280030pt;}
.y8b{bottom:99.040039pt;}
.y8d{bottom:102.560059pt;}
.y88{bottom:103.840088pt;}
.y89{bottom:107.360047pt;}
.ycf{bottom:111.520081pt;}
.y70{bottom:112.640076pt;}
.y3c{bottom:115.680054pt;}
.y85{bottom:121.280030pt;}
.y87{bottom:124.800049pt;}
.y82{bottom:126.080079pt;}
.ycd{bottom:127.040039pt;}
.y83{bottom:129.600037pt;}
.yce{bottom:130.560059pt;}
.y6f{bottom:131.040039pt;}
.ycc{bottom:131.840088pt;}
.y3b{bottom:134.080079pt;}
.yf2{bottom:143.200074pt;}
.y81{bottom:145.120057pt;}
.yc9{bottom:147.200074pt;}
.y6e{bottom:149.440064pt;}
.ycb{bottom:150.720032pt;}
.yc8{bottom:152.000061pt;}
.y3a{bottom:152.480042pt;}
.yf1{bottom:161.280030pt;}
.y80{bottom:163.520081pt;}
.y6d{bottom:167.840088pt;}
.y39{bottom:170.880066pt;}
.yc7{bottom:175.040039pt;}
.yf0{bottom:180.000061pt;}
.yf9{bottom:180.800049pt;}
.y7f{bottom:181.920044pt;}
.y6c{bottom:186.240052pt;}
.y38{bottom:189.280030pt;}
.yc6{bottom:193.440064pt;}
.yef{bottom:198.400086pt;}
.y7e{bottom:200.320069pt;}
.y6b{bottom:204.640076pt;}
.y37{bottom:207.680054pt;}
.yc4{bottom:208.000061pt;}
.yc3{bottom:211.840088pt;}
.yf8{bottom:214.560059pt;}
.yee{bottom:216.800049pt;}
.y7d{bottom:219.040039pt;}
.y6a{bottom:223.040039pt;}
.y36{bottom:226.080079pt;}
.yc2{bottom:230.240052pt;}
.yed{bottom:234.880066pt;}
.yf7{bottom:235.680054pt;}
.y7c{bottom:237.440064pt;}
.y69{bottom:241.440064pt;}
.y35{bottom:244.480042pt;}
.yc1{bottom:248.960083pt;}
.yec{bottom:253.600037pt;}
.y7b{bottom:256.160035pt;}
.yf6{bottom:256.960083pt;}
.y68{bottom:259.840088pt;}
.y34{bottom:262.880066pt;}
.yc0{bottom:267.360047pt;}
.yeb{bottom:272.000061pt;}
.y7a{bottom:274.560059pt;}
.yf5{bottom:278.080079pt;}
.y67{bottom:278.240052pt;}
.y33{bottom:281.280030pt;}
.ybf{bottom:286.080079pt;}
.yea{bottom:290.400086pt;}
.y79{bottom:292.960083pt;}
.y66{bottom:296.640076pt;}
.y32{bottom:299.680054pt;}
.ybe{bottom:304.480042pt;}
.ye9{bottom:308.800049pt;}
.y78{bottom:312.640076pt;}
.y65{bottom:315.040039pt;}
.y31{bottom:318.080079pt;}
.ybd{bottom:322.880066pt;}
.ye8{bottom:327.200074pt;}
.y77{bottom:331.040039pt;}
.y64{bottom:333.440064pt;}
.y30{bottom:336.480042pt;}
.ybc{bottom:341.120057pt;}
.ye7{bottom:345.600037pt;}
.y76{bottom:349.440064pt;}
.y63{bottom:351.840088pt;}
.y2f{bottom:354.880066pt;}
.ybb{bottom:360.800049pt;}
.ye6{bottom:364.000061pt;}
.y75{bottom:367.840088pt;}
.y62{bottom:370.240052pt;}
.y2e{bottom:373.280030pt;}
.yba{bottom:379.200074pt;}
.ye5{bottom:382.400086pt;}
.y74{bottom:386.240052pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:391.680054pt;}
.yb9{bottom:397.600037pt;}
.ye4{bottom:400.800049pt;}
.y73{bottom:404.480042pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:410.080079pt;}
.yb8{bottom:416.000061pt;}
.ye3{bottom:419.200074pt;}
.y72{bottom:424.160035pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:428.480042pt;}
.yb7{bottom:435.680054pt;}
.ye2{bottom:437.600037pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:446.880066pt;}
.yb6{bottom:454.080079pt;}
.ye1{bottom:456.000061pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:465.280030pt;}
.yb5{bottom:472.480042pt;}
.ye0{bottom:474.400086pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:483.680054pt;}
.yb4{bottom:490.880066pt;}
.ydf{bottom:492.800049pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:502.080079pt;}
.yb3{bottom:509.280030pt;}
.yde{bottom:511.840088pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:520.480042pt;}
.yb2{bottom:527.680054pt;}
.ydd{bottom:531.200074pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:538.880066pt;}
.yb1{bottom:546.080079pt;}
.ydc{bottom:550.400086pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:557.280030pt;}
.yb0{bottom:564.480042pt;}
.ydb{bottom:568.800049pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:575.680054pt;}
.yaf{bottom:582.880066pt;}
.yda{bottom:588.000061pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:594.080079pt;}
.yae{bottom:601.280030pt;}
.yd9{bottom:606.400086pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:612.480072pt;}
.yad{bottom:619.680054pt;}
.yd7{bottom:622.080048pt;}
.yd6{bottom:625.920044pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:630.880066pt;}
.yac{bottom:638.080048pt;}
.yd5{bottom:645.600068pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:649.280060pt;}
.yab{bottom:656.480072pt;}
.yd3{bottom:664.000061pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:667.680054pt;}
.yaa{bottom:674.880066pt;}
.yd4{bottom:682.400055pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:686.080048pt;}
.ya9{bottom:693.280060pt;}
.yd2{bottom:701.120057pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:704.480072pt;}
.ya8{bottom:711.680054pt;}
.yd1{bottom:719.520050pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:722.560059pt;}
.ya7{bottom:730.080048pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:740.640046pt;}
.ya6{bottom:748.480072pt;}
.y19{bottom:756.000061pt;}
.y4d{bottom:756.640046pt;}
.ya5{bottom:766.880066pt;}
.y18{bottom:771.360047pt;}
.y4c{bottom:775.040070pt;}
.ya4{bottom:785.120057pt;}
.y17{bottom:787.040070pt;}
.y4b{bottom:793.440064pt;}
.ya3{bottom:804.800049pt;}
.y16{bottom:805.760071pt;}
.y4a{bottom:811.840058pt;}
.ya2{bottom:823.200074pt;}
.y15{bottom:824.160065pt;}
.y49{bottom:830.240052pt;}
.ya1{bottom:841.600068pt;}
.y14{bottom:842.560059pt;}
.y48{bottom:848.640046pt;}
.ya0{bottom:860.000061pt;}
.y13{bottom:860.640046pt;}
.y47{bottom:867.040055pt;}
.y9f{bottom:878.400055pt;}
.y12{bottom:879.040055pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:897.440064pt;}
.y9e{bottom:898.080063pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:915.840058pt;}
.y9d{bottom:916.480057pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:934.240052pt;}
.y9c{bottom:934.880066pt;}
.yf4{bottom:940.320054pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:952.640061pt;}
.y9b{bottom:953.280060pt;}
.yf3{bottom:958.720063pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:970.880066pt;}
.y99{bottom:972.320054pt;}
.y9a{bottom:975.840058pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:989.280060pt;}
.y98{bottom:991.360062pt;}
.y40{bottom:995.840058pt;}
.y95{bottom:1006.880059pt;}
.yb{bottom:1009.919728pt;}
.y97{bottom:1010.400055pt;}
.y93{bottom:1011.680062pt;}
.y3f{bottom:1014.240059pt;}
.y94{bottom:1015.200058pt;}
.y90{bottom:1027.040062pt;}
.y92{bottom:1030.560059pt;}
.ya{bottom:1031.521230pt;}
.y8e{bottom:1031.840058pt;}
.y3e{bottom:1032.640061pt;}
.y8f{bottom:1035.360062pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h14{height:10.879997pt;}
.h17{height:10.879998pt;}
.he{height:10.880005pt;}
.h3{height:12.959960pt;}
.h1c{height:18.239991pt;}
.h1d{height:18.240021pt;}
.h15{height:19.199997pt;}
.hf{height:19.200012pt;}
.h12{height:19.200013pt;}
.h6{height:30.067372pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.h10{height:42.657852pt;}
.h2{height:44.876686pt;}
.h9{height:46.220486pt;}
.h20{height:46.595500pt;}
.h16{height:49.996682pt;}
.h18{height:49.996714pt;}
.h13{height:49.996802pt;}
.h11{height:49.996806pt;}
.ha{height:52.751981pt;}
.hc{height:54.387196pt;}
.h1a{height:54.387316pt;}
.h1b{height:54.387320pt;}
.h19{height:54.387380pt;}
.hd{height:54.387440pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.h21{height:58.566137pt;}
.h1e{height:81.356670pt;}
.h1f{height:81.996558pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w8{width:0.480011pt;}
.wa{width:4.160004pt;}
.w4{width:4.799988pt;}
.w5{width:6.080002pt;}
.w3{width:6.239990pt;}
.w6{width:8.799987pt;}
.w9{width:8.800018pt;}
.w7{width:8.800019pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:61.919998pt;}
.x1{left:75.519997pt;}
.x8{left:80.960728pt;}
.x20{left:90.400002pt;}
.xd{left:94.400002pt;}
.x46{left:99.519997pt;}
.xb{left:103.040001pt;}
.x36{left:104.000000pt;}
.x14{left:110.879997pt;}
.x29{left:113.279999pt;}
.x2b{left:118.239998pt;}
.x15{left:119.519997pt;}
.x21{left:120.639999pt;}
.x12{left:122.720001pt;}
.x22{left:126.720001pt;}
.x27{left:128.639999pt;}
.x28{left:134.720001pt;}
.x3b{left:137.600006pt;}
.x3a{left:158.240005pt;}
.x2a{left:160.639999pt;}
.xc{left:193.440002pt;}
.x2c{left:220.960007pt;}
.x2e{left:238.559998pt;}
.x17{left:247.199997pt;}
.x16{left:254.399994pt;}
.xe{left:257.440002pt;}
.x18{left:278.399994pt;}
.x3d{left:288.799988pt;}
.x3c{left:295.040009pt;}
.x9{left:303.999218pt;}
.x44{left:314.079987pt;}
.x2d{left:323.679993pt;}
.x30{left:334.720001pt;}
.x32{left:347.040009pt;}
.x1a{left:350.559998pt;}
.x31{left:352.480011pt;}
.x1b{left:356.160004pt;}
.x1c{left:363.200012pt;}
.x2f{left:368.320007pt;}
.x19{left:379.200012pt;}
.x2{left:384.799988pt;}
.x3e{left:392.959991pt;}
.x23{left:394.559998pt;}
.xa{left:396.799988pt;}
.x24{left:403.359985pt;}
.x3f{left:408.640015pt;}
.x45{left:420.320007pt;}
.x11{left:444.799988pt;}
.x34{left:459.519989pt;}
.x33{left:461.279999pt;}
.x10{left:464.320007pt;}
.x1d{left:470.399994pt;}
.x1e{left:472.160004pt;}
.x39{left:494.079987pt;}
.x40{left:497.279999pt;}
.x37{left:502.079987pt;}
.x25{left:506.720001pt;}
.x38{left:510.880005pt;}
.x26{left:515.520020pt;}
.xf{left:577.760010pt;}
.x35{left:587.520020pt;}
.x1f{left:592.320007pt;}
.x42{left:633.599976pt;}
.x13{left:644.000000pt;}
.x41{left:646.559998pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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