
    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_7086238b9155460c29a530fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_15d8e1961a61022883010740.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_694484162bf5abe701b4bf73.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_2e75745083c53d60f8392d47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_63509d5b8ab4a1c7d8ac8fca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_73842321e74ba2339f0d77bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_2eff158741b5be88acacf174.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_87af0def7d64ff584347f33a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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:ffa;src:url('chunks/assets/font_12aec79f1da0604bf399ecbf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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:ffb;src:url('chunks/assets/font_8f7bee71c2d2839ec3a437a4.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.021282px;}
.ls5{letter-spacing:0.233352px;}
.ls1{letter-spacing:0.237796px;}
.ls2{letter-spacing:0.297773px;}
.ls4{letter-spacing:68.017704px;}
.ls3{letter-spacing:132.855932px;}
.ls0{letter-spacing:1490.136185px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(58,123,34),0 0.015em rgb(58,123,34),0.015em 0 rgb(58,123,34),0 -0.015em  rgb(58,123,34);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(58,123,34);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-45.885778px;}
.ws4{word-spacing:-32.418587px;}
.ws9{word-spacing:-18.021275px;}
.wsa{word-spacing:-18.021231px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws2{word-spacing:-16.271993px;}
.ws1{word-spacing:-15.839994px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws7{word-spacing:0.000000px;}
._2d{margin-left:-5.077312px;}
._2{margin-left:-4.007526px;}
._3{margin-left:-2.603649px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._8{width:2.028797px;}
._f{width:3.412398px;}
._13{width:5.380802px;}
._14{width:6.923268px;}
._19{width:8.416285px;}
._6{width:10.254020px;}
._5{width:11.697345px;}
._7{width:13.652362px;}
._18{width:14.853110px;}
._a{width:15.962995px;}
._b{width:17.025390px;}
._c{width:18.270562px;}
._9{width:19.654910px;}
._e{width:20.734113px;}
._1a{width:21.887033px;}
._d{width:23.104399px;}
._1b{width:24.647607px;}
._1c{width:26.017990px;}
._1d{width:28.326884px;}
._2c{width:29.427586px;}
._2b{width:31.706879px;}
._17{width:33.704110px;}
._10{width:35.211866px;}
._11{width:36.229023px;}
._12{width:38.164814px;}
._29{width:39.630518px;}
._15{width:40.809045px;}
._16{width:42.282023px;}
._21{width:75.509790px;}
._20{width:101.439083px;}
._1f{width:111.930197px;}
._25{width:115.403564px;}
._28{width:136.258315px;}
._26{width:174.930255px;}
._2a{width:193.982454px;}
._27{width:224.483439px;}
._22{width:239.387907px;}
._4{width:255.322698px;}
._1e{width:263.291415px;}
._24{width:329.284160px;}
._23{width:415.769894px;}
.fcd{color:rgb(146,208,80);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(14,40,65);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(70,120,134);}
.fc9{color:rgb(0,32,96);}
.fc7{color:rgb(112,48,160);}
.fc8{color:rgb(58,123,34);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:63.359975px;}
.fs1{font-size:71.999971px;}
.fs6{font-size:81.359967px;}
.fs3{font-size:84.239966px;}
.fs5{font-size:107.999957px;}
.y6{bottom:-10.979990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y19{bottom:2.878988px;}
.yb1{bottom:3.959251px;}
.yb3{bottom:3.959259px;}
.yb5{bottom:3.959268px;}
.yb7{bottom:3.959276px;}
.yb9{bottom:3.959285px;}
.ybb{bottom:3.959294px;}
.yb{bottom:4.860038px;}
.yc{bottom:33.240287px;}
.ya{bottom:49.620240px;}
.y8{bottom:54.480278px;}
.y9{bottom:55.920278px;}
.y17{bottom:130.259948px;}
.y6d{bottom:134.039946px;}
.yd5{bottom:134.399946px;}
.yef{bottom:143.219943px;}
.y6c{bottom:154.739938px;}
.yd4{bottom:155.099938px;}
.ybe{bottom:161.579935px;}
.yee{bottom:163.919934px;}
.y6b{bottom:175.439930px;}
.yd3{bottom:175.799930px;}
.y16{bottom:182.279927px;}
.yed{bottom:184.619926px;}
.y92{bottom:185.519926px;}
.y6a{bottom:196.139922px;}
.yd2{bottom:196.499921px;}
.ybd{bottom:202.979919px;}
.y91{bottom:206.219918px;}
.y69{bottom:216.839913px;}
.yd1{bottom:217.199913px;}
.ybc{bottom:223.679911px;}
.y41{bottom:224.399910px;}
.yec{bottom:226.379909px;}
.y90{bottom:226.919909px;}
.y68{bottom:237.539905px;}
.yd0{bottom:237.899905px;}
.ya8{bottom:242.399903px;}
.y40{bottom:245.999902px;}
.yeb{bottom:247.079901px;}
.yba{bottom:262.200600px;}
.ya7{bottom:263.099895px;}
.yea{bottom:267.779893px;}
.y3f{bottom:267.959893px;}
.y8f{bottom:268.679893px;}
.y67{bottom:279.299888px;}
.ycf{bottom:281.459887px;}
.yb8{bottom:283.620600px;}
.ya6{bottom:283.799886px;}
.y8e{bottom:289.379884px;}
.y66{bottom:299.999880px;}
.y3e{bottom:300.899880px;}
.y2c{bottom:301.979879px;}
.ya5{bottom:304.499878px;}
.yb6{bottom:305.040600px;}
.ye9{bottom:309.359876px;}
.y8d{bottom:310.079876px;}
.y65{bottom:320.699872px;}
.ya4{bottom:325.199870px;}
.yb4{bottom:326.460600px;}
.ye8{bottom:330.059868px;}
.yce{bottom:331.679867px;}
.y64{bottom:341.399863px;}
.y46{bottom:344.459862px;}
.yb2{bottom:348.060600px;}
.y8c{bottom:351.659859px;}
.ycd{bottom:352.379859px;}
.y45{bottom:361.739855px;}
.ya3{bottom:367.319853px;}
.yb0{bottom:369.480600px;}
.ye7{bottom:371.819851px;}
.y8b{bottom:372.359851px;}
.ycc{bottom:373.079851px;}
.yaf{bottom:373.439851px;}
.y44{bottom:378.839848px;}
.y63{bottom:382.979847px;}
.ye6{bottom:392.519843px;}
.y8a{bottom:393.059843px;}
.ycb{bottom:393.779842px;}
.y43{bottom:396.119842px;}
.ya2{bottom:411.239836px;}
.ye5{bottom:413.219835px;}
.y42{bottom:414.119834px;}
.yca{bottom:414.479834px;}
.yae{bottom:415.919834px;}
.y62{bottom:424.739830px;}
.y2b{bottom:425.639830px;}
.ya1{bottom:431.939827px;}
.y89{bottom:434.819826px;}
.y61{bottom:445.439822px;}
.ya0{bottom:452.639819px;}
.ye4{bottom:454.979818px;}
.y88{bottom:455.519818px;}
.yc9{bottom:456.059818px;}
.yad{bottom:457.499817px;}
.y60{bottom:466.139814px;}
.y9f{bottom:473.339811px;}
.ye3{bottom:475.679810px;}
.y3d{bottom:475.859810px;}
.y87{bottom:476.219810px;}
.yc8{bottom:476.759809px;}
.y5f{bottom:486.839805px;}
.y3c{bottom:493.139803px;}
.y9e{bottom:494.039802px;}
.yc7{bottom:497.459801px;}
.yac{bottom:499.619800px;}
.y2a{bottom:511.859795px;}
.ye2{bottom:517.259793px;}
.y86{bottom:517.979793px;}
.yc6{bottom:518.159793px;}
.y5e{bottom:530.399788px;}
.y3b{bottom:531.479787px;}
.ye1{bottom:537.959785px;}
.y85{bottom:538.679785px;}
.yc5{bottom:538.859784px;}
.yab{bottom:543.539783px;}
.y3a{bottom:548.759780px;}
.y29{bottom:555.599778px;}
.ye0{bottom:558.659777px;}
.y84{bottom:559.379776px;}
.yc4{bottom:559.559776px;}
.yaa{bottom:564.239774px;}
.y39{bottom:565.859774px;}
.y9d{bottom:570.719772px;}
.y28{bottom:570.899772px;}
.y83{bottom:580.079768px;}
.y5d{bottom:580.619768px;}
.y38{bottom:583.139767px;}
.y27{bottom:586.199766px;}
.yfd{bottom:589.799764px;}
.y26{bottom:600.239760px;}
.y37{bottom:600.419760px;}
.y82{bottom:600.779760px;}
.y5c{bottom:601.319759px;}
.ya9{bottom:601.859759px;}
.y36{bottom:617.699753px;}
.ydf{bottom:621.119752px;}
.y81{bottom:621.479751px;}
.y5b{bottom:622.019751px;}
.y9c{bottom:626.519749px;}
.yfc{bottom:631.379747px;}
.y35{bottom:634.979746px;}
.yde{bottom:641.819743px;}
.y25{bottom:642.719743px;}
.yfb{bottom:652.079739px;}
.y34{bottom:652.259739px;}
.y80{bottom:663.059735px;}
.y5a{bottom:663.419735px;}
.y33{bottom:669.359732px;}
.yfa{bottom:672.779731px;}
.y9b{bottom:680.339728px;}
.ydd{bottom:683.579727px;}
.y7f{bottom:683.759726px;}
.y59{bottom:684.119726px;}
.y24{bottom:685.379726px;}
.y32{bottom:686.639725px;}
.y31{bottom:703.919718px;}
.ydc{bottom:704.279718px;}
.y7e{bottom:704.459718px;}
.y58{bottom:704.819718px;}
.yf9{bottom:714.539714px;}
.y30{bottom:721.199712px;}
.yc3{bottom:725.519710px;}
.y23{bottom:727.859709px;}
.yf8{bottom:735.239706px;}
.y9a{bottom:736.139706px;}
.y2f{bottom:738.479705px;}
.y22{bottom:743.339703px;}
.ydb{bottom:745.859702px;}
.yc2{bottom:746.219702px;}
.y57{bottom:746.579701px;}
.y7d{bottom:748.019701px;}
.y2e{bottom:755.579698px;}
.yda{bottom:766.559693px;}
.y56{bottom:767.279693px;}
.y21{bottom:769.799692px;}
.y2d{bottom:772.859691px;}
.yf7{bottom:776.999689px;}
.yd9{bottom:787.259685px;}
.y55{bottom:787.979685px;}
.y99{bottom:789.959684px;}
.yf6{bottom:797.699681px;}
.y7c{bottom:798.239681px;}
.y20{bottom:803.099679px;}
.y54{bottom:808.679677px;}
.y7b{bottom:818.939672px;}
.y15{bottom:828.659669px;}
.y53{bottom:829.379668px;}
.yd8{bottom:830.819668px;}
.yf5{bottom:839.279664px;}
.y7a{bottom:839.639664px;}
.y98{bottom:845.759662px;}
.y14{bottom:846.659661px;}
.y52{bottom:849.899660px;}
.yf4{bottom:859.979656px;}
.y79{bottom:860.339656px;}
.y13{bottom:864.839654px;}
.yc1{bottom:870.599652px;}
.yf3{bottom:880.679648px;}
.y78{bottom:881.039648px;}
.y12{bottom:882.839647px;}
.y97{bottom:888.239645px;}
.yc0{bottom:891.299643px;}
.y51{bottom:891.659643px;}
.y11{bottom:901.019640px;}
.y77{bottom:901.739639px;}
.ybf{bottom:911.999635px;}
.y50{bottom:912.359635px;}
.y10{bottom:919.199632px;}
.yf2{bottom:922.439631px;}
.yd7{bottom:922.799631px;}
.y96{bottom:929.819628px;}
.y4f{bottom:933.059627px;}
.yf{bottom:937.739625px;}
.yf1{bottom:943.139623px;}
.y76{bottom:943.499623px;}
.y95{bottom:950.519620px;}
.y4e{bottom:953.759618px;}
.yf0{bottom:963.839614px;}
.y75{bottom:964.199614px;}
.y4d{bottom:974.459610px;}
.ye{bottom:980.039608px;}
.y74{bottom:984.899606px;}
.y94{bottom:992.639603px;}
.y4c{bottom:995.159602px;}
.yd{bottom:1004.159598px;}
.y73{bottom:1005.599598px;}
.y4b{bottom:1015.859594px;}
.y18{bottom:1026.120600px;}
.y72{bottom:1026.299589px;}
.y1e{bottom:1031.699587px;}
.y4a{bottom:1036.559585px;}
.y93{bottom:1038.539585px;}
.y71{bottom:1046.999581px;}
.y1d{bottom:1052.759579px;}
.y49{bottom:1057.259577px;}
.yd6{bottom:1067.699573px;}
.y1c{bottom:1071.119572px;}
.y48{bottom:1077.959569px;}
.y70{bottom:1088.579565px;}
.y1b{bottom:1089.479564px;}
.y1f{bottom:1104.959558px;}
.y1a{bottom:1107.659557px;}
.y6f{bottom:1109.279556px;}
.y47{bottom:1121.519551px;}
.y6e{bottom:1129.979548px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1182.179527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:6.120000px;}
.hb{height:19.980000px;}
.h15{height:20.160000px;}
.h14{height:20.520000px;}
.h6{height:21.960000px;}
.he{height:36.624009px;}
.h4{height:36.703110px;}
.hd{height:39.339828px;}
.hc{height:40.851546px;}
.h1{height:41.522679px;}
.h5{height:42.894123px;}
.h11{height:43.536076px;}
.h9{height:43.993107px;}
.h8{height:48.796855px;}
.hf{height:49.218730px;}
.h12{height:49.992168px;}
.h10{height:50.027324px;}
.h2{height:51.679667px;}
.h13{height:55.140447px;}
.h7{height:57.092321px;}
.ha{height:73.195283px;}
.h0{height:1263.000000px;}
.w4{width:1.260000px;}
.w3{width:5.580000px;}
.wd{width:5.940000px;}
.wa{width:6.120000px;}
.w5{width:7.740000px;}
.w7{width:9.000000px;}
.w2{width:10.620000px;}
.w9{width:24.840000px;}
.wc{width:28.080000px;}
.w8{width:31.500000px;}
.w12{width:59.040000px;}
.wb{width:59.940000px;}
.w11{width:68.040000px;}
.w10{width:79.740000px;}
.we{width:108.180000px;}
.w14{width:108.900000px;}
.wf{width:114.480000px;}
.w6{width:116.460000px;}
.w13{width:128.520000px;}
.w15{width:153.360000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1c{left:61.019976px;}
.x4{left:62.639975px;}
.x1a{left:71.099972px;}
.x19{left:73.619971px;}
.x16{left:79.559968px;}
.x17{left:84.959966px;}
.x1e{left:86.039966px;}
.x5{left:88.739965px;}
.x18{left:91.979994px;}
.x1{left:107.999957px;}
.xb{left:111.959955px;}
.x26{left:116.459459px;}
.x1b{left:127.799949px;}
.x1d{left:133.919946px;}
.xe{left:138.779830px;}
.x8{left:145.439942px;}
.x33{left:150.480000px;}
.x39{left:175.500000px;}
.x35{left:196.020000px;}
.x9{left:201.060032px;}
.x1f{left:211.679925px;}
.x20{left:212.759915px;}
.x3b{left:225.000000px;}
.x2c{left:232.920000px;}
.x10{left:235.440000px;}
.x21{left:241.739895px;}
.x11{left:258.119897px;}
.x22{left:262.799895px;}
.x25{left:266.579893px;}
.x2d{left:274.860000px;}
.x14{left:277.019889px;}
.x2{left:302.579879px;}
.x2e{left:306.360000px;}
.xa{left:325.259870px;}
.xd{left:351.711673px;}
.xf{left:360.531501px;}
.x13{left:386.099846px;}
.x12{left:402.119869px;}
.xc{left:414.711686px;}
.x6{left:420.479832px;}
.x28{left:429.480000px;}
.x29{left:445.679822px;}
.x2f{left:477.180000px;}
.x24{left:548.099781px;}
.x2a{left:606.960000px;}
.x2b{left:623.159751px;}
.x30{left:648.000000px;}
.x31{left:654.120000px;}
.x15{left:658.619461px;}
.x3{left:666.179734px;}
.x23{left:687.239725px;}
.x36{left:691.200000px;}
.x37{left:697.140000px;}
.x32{left:714.060000px;}
.x34{left:737.640000px;}
.x3a{left:751.680000px;}
.x38{left:765.180000px;}
.x3c{left:776.520000px;}
.x27{left:784.799686px;}
.x7{left:824.220000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.018917pt;}
.ls5{letter-spacing:0.207424pt;}
.ls1{letter-spacing:0.211375pt;}
.ls2{letter-spacing:0.264687pt;}
.ls4{letter-spacing:60.460181pt;}
.ls3{letter-spacing:118.094162pt;}
.ls0{letter-spacing:1324.565498pt;}
.ws0{word-spacing:-40.787358pt;}
.ws4{word-spacing:-28.816521pt;}
.ws9{word-spacing:-16.018911pt;}
.wsa{word-spacing:-16.018872pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws2{word-spacing:-14.463994pt;}
.ws1{word-spacing:-14.079994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws7{word-spacing:0.000000pt;}
._2d{margin-left:-4.513166pt;}
._2{margin-left:-3.562245pt;}
._3{margin-left:-2.314354pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._8{width:1.803375pt;}
._f{width:3.033243pt;}
._13{width:4.782935pt;}
._14{width:6.154016pt;}
._19{width:7.481142pt;}
._6{width:9.114685pt;}
._5{width:10.397640pt;}
._7{width:12.135433pt;}
._18{width:13.202765pt;}
._a{width:14.189329pt;}
._b{width:15.133680pt;}
._c{width:16.240500pt;}
._9{width:17.471032pt;}
._e{width:18.430322pt;}
._1a{width:19.455140pt;}
._d{width:20.537244pt;}
._1b{width:21.908984pt;}
._1c{width:23.127102pt;}
._1d{width:25.179453pt;}
._2c{width:26.157854pt;}
._2b{width:28.183892pt;}
._17{width:29.959209pt;}
._10{width:31.299437pt;}
._11{width:32.203576pt;}
._12{width:33.924279pt;}
._29{width:35.227127pt;}
._15{width:36.274707pt;}
._16{width:37.584020pt;}
._21{width:67.119813pt;}
._20{width:90.168073pt;}
._1f{width:99.493509pt;}
._25{width:102.580946pt;}
._28{width:121.118503pt;}
._26{width:155.493560pt;}
._2a{width:172.428848pt;}
._27{width:199.540835pt;}
._22{width:212.789251pt;}
._4{width:226.953509pt;}
._1e{width:234.036813pt;}
._24{width:292.697031pt;}
._23{width:369.573239pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:56.319977pt;}
.fs1{font-size:63.999974pt;}
.fs6{font-size:72.319971pt;}
.fs3{font-size:74.879970pt;}
.fs5{font-size:95.999962pt;}
.y6{bottom:-9.759991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y19{bottom:2.559101pt;}
.yb1{bottom:3.519334pt;}
.yb3{bottom:3.519342pt;}
.yb5{bottom:3.519349pt;}
.yb7{bottom:3.519357pt;}
.yb9{bottom:3.519364pt;}
.ybb{bottom:3.519372pt;}
.yb{bottom:4.320034pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:44.106880pt;}
.y8{bottom:48.426914pt;}
.y9{bottom:49.706913pt;}
.y17{bottom:115.786620pt;}
.y6d{bottom:119.146619pt;}
.yd5{bottom:119.466619pt;}
.yef{bottom:127.306616pt;}
.y6c{bottom:137.546612pt;}
.yd4{bottom:137.866612pt;}
.ybe{bottom:143.626609pt;}
.yee{bottom:145.706608pt;}
.y6b{bottom:155.946604pt;}
.yd3{bottom:156.266604pt;}
.y16{bottom:162.026602pt;}
.yed{bottom:164.106601pt;}
.y92{bottom:164.906601pt;}
.y6a{bottom:174.346597pt;}
.yd2{bottom:174.666597pt;}
.ybd{bottom:180.426594pt;}
.y91{bottom:183.306593pt;}
.y69{bottom:192.746590pt;}
.yd1{bottom:193.066589pt;}
.ybc{bottom:198.826587pt;}
.y41{bottom:199.466587pt;}
.yec{bottom:201.226586pt;}
.y90{bottom:201.706586pt;}
.y68{bottom:211.146582pt;}
.yd0{bottom:211.466582pt;}
.ya8{bottom:215.466580pt;}
.y40{bottom:218.666579pt;}
.yeb{bottom:219.626579pt;}
.yba{bottom:233.067200pt;}
.ya7{bottom:233.866573pt;}
.yea{bottom:238.026571pt;}
.y3f{bottom:238.186571pt;}
.y8f{bottom:238.826571pt;}
.y67{bottom:248.266567pt;}
.ycf{bottom:250.186567pt;}
.yb8{bottom:252.107200pt;}
.ya6{bottom:252.266566pt;}
.y8e{bottom:257.226564pt;}
.y66{bottom:266.666560pt;}
.y3e{bottom:267.466560pt;}
.y2c{bottom:268.426559pt;}
.ya5{bottom:270.666558pt;}
.yb6{bottom:271.147200pt;}
.ye9{bottom:274.986557pt;}
.y8d{bottom:275.626556pt;}
.y65{bottom:285.066553pt;}
.ya4{bottom:289.066551pt;}
.yb4{bottom:290.187200pt;}
.ye8{bottom:293.386549pt;}
.yce{bottom:294.826549pt;}
.y64{bottom:303.466545pt;}
.y46{bottom:306.186544pt;}
.yb2{bottom:309.387200pt;}
.y8c{bottom:312.586542pt;}
.ycd{bottom:313.226541pt;}
.y45{bottom:321.546538pt;}
.ya3{bottom:326.506536pt;}
.yb0{bottom:328.427200pt;}
.ye7{bottom:330.506534pt;}
.y8b{bottom:330.986534pt;}
.ycc{bottom:331.626534pt;}
.yaf{bottom:331.946534pt;}
.y44{bottom:336.746532pt;}
.y63{bottom:340.426530pt;}
.ye6{bottom:348.906527pt;}
.y8a{bottom:349.386527pt;}
.ycb{bottom:350.026527pt;}
.y43{bottom:352.106526pt;}
.ya2{bottom:365.546520pt;}
.ye5{bottom:367.306520pt;}
.y42{bottom:368.106519pt;}
.yca{bottom:368.426519pt;}
.yae{bottom:369.706519pt;}
.y62{bottom:377.546516pt;}
.y2b{bottom:378.346515pt;}
.ya1{bottom:383.946513pt;}
.y89{bottom:386.506512pt;}
.y61{bottom:395.946508pt;}
.ya0{bottom:402.346506pt;}
.ye4{bottom:404.426505pt;}
.y88{bottom:404.906505pt;}
.yc9{bottom:405.386505pt;}
.yad{bottom:406.666504pt;}
.y60{bottom:414.346501pt;}
.y9f{bottom:420.746498pt;}
.ye3{bottom:422.826498pt;}
.y3d{bottom:422.986497pt;}
.y87{bottom:423.306497pt;}
.yc8{bottom:423.786497pt;}
.y5f{bottom:432.746494pt;}
.y3c{bottom:438.346491pt;}
.y9e{bottom:439.146491pt;}
.yc7{bottom:442.186490pt;}
.yac{bottom:444.106489pt;}
.y2a{bottom:454.986485pt;}
.ye2{bottom:459.786483pt;}
.y86{bottom:460.426482pt;}
.yc6{bottom:460.586482pt;}
.y5e{bottom:471.466478pt;}
.y3b{bottom:472.426478pt;}
.ye1{bottom:478.186475pt;}
.y85{bottom:478.826475pt;}
.yc5{bottom:478.986475pt;}
.yab{bottom:483.146473pt;}
.y3a{bottom:487.786472pt;}
.y29{bottom:493.866469pt;}
.ye0{bottom:496.586468pt;}
.y84{bottom:497.226468pt;}
.yc4{bottom:497.386468pt;}
.yaa{bottom:501.546466pt;}
.y39{bottom:502.986465pt;}
.y9d{bottom:507.306464pt;}
.y28{bottom:507.466464pt;}
.y83{bottom:515.626460pt;}
.y5d{bottom:516.106460pt;}
.y38{bottom:518.346459pt;}
.y27{bottom:521.066458pt;}
.yfd{bottom:524.266457pt;}
.y26{bottom:533.546453pt;}
.y37{bottom:533.706453pt;}
.y82{bottom:534.026453pt;}
.y5c{bottom:534.506453pt;}
.ya9{bottom:534.986453pt;}
.y36{bottom:549.066447pt;}
.ydf{bottom:552.106446pt;}
.y81{bottom:552.426446pt;}
.y5b{bottom:552.906446pt;}
.y9c{bottom:556.906444pt;}
.yfc{bottom:561.226442pt;}
.y35{bottom:564.426441pt;}
.yde{bottom:570.506438pt;}
.y25{bottom:571.306438pt;}
.yfb{bottom:579.626435pt;}
.y34{bottom:579.786435pt;}
.y80{bottom:589.386431pt;}
.y5a{bottom:589.706431pt;}
.y33{bottom:594.986429pt;}
.yfa{bottom:598.026427pt;}
.y9b{bottom:604.746425pt;}
.ydd{bottom:607.626424pt;}
.y7f{bottom:607.786424pt;}
.y59{bottom:608.106423pt;}
.y24{bottom:609.226423pt;}
.y32{bottom:610.346423pt;}
.y31{bottom:625.706416pt;}
.ydc{bottom:626.026416pt;}
.y7e{bottom:626.186416pt;}
.y58{bottom:626.506416pt;}
.yf9{bottom:635.146413pt;}
.y30{bottom:641.066410pt;}
.yc3{bottom:644.906409pt;}
.y23{bottom:646.986408pt;}
.yf8{bottom:653.546405pt;}
.y9a{bottom:654.346405pt;}
.y2f{bottom:656.426404pt;}
.y22{bottom:660.746402pt;}
.ydb{bottom:662.986401pt;}
.yc2{bottom:663.306401pt;}
.y57{bottom:663.626401pt;}
.y7d{bottom:664.906401pt;}
.y2e{bottom:671.626398pt;}
.yda{bottom:681.386394pt;}
.y56{bottom:682.026394pt;}
.y21{bottom:684.266393pt;}
.y2d{bottom:686.986392pt;}
.yf7{bottom:690.666390pt;}
.yd9{bottom:699.786387pt;}
.y55{bottom:700.426386pt;}
.y99{bottom:702.186386pt;}
.yf6{bottom:709.066383pt;}
.y7c{bottom:709.546383pt;}
.y20{bottom:713.866381pt;}
.y54{bottom:718.826379pt;}
.y7b{bottom:727.946375pt;}
.y15{bottom:736.586372pt;}
.y53{bottom:737.226372pt;}
.yd8{bottom:738.506371pt;}
.yf5{bottom:746.026368pt;}
.y7a{bottom:746.346368pt;}
.y98{bottom:751.786366pt;}
.y14{bottom:752.586366pt;}
.y52{bottom:755.466364pt;}
.yf4{bottom:764.426361pt;}
.y79{bottom:764.746361pt;}
.y13{bottom:768.746359pt;}
.yc1{bottom:773.866357pt;}
.yf3{bottom:782.826354pt;}
.y78{bottom:783.146353pt;}
.y12{bottom:784.746353pt;}
.y97{bottom:789.546351pt;}
.yc0{bottom:792.266350pt;}
.y51{bottom:792.586350pt;}
.y11{bottom:800.906346pt;}
.y77{bottom:801.546346pt;}
.ybf{bottom:810.666342pt;}
.y50{bottom:810.986342pt;}
.y10{bottom:817.066340pt;}
.yf2{bottom:819.946339pt;}
.yd7{bottom:820.266339pt;}
.y96{bottom:826.506336pt;}
.y4f{bottom:829.386335pt;}
.yf{bottom:833.546333pt;}
.yf1{bottom:838.346331pt;}
.y76{bottom:838.666331pt;}
.y95{bottom:844.906329pt;}
.y4e{bottom:847.786328pt;}
.yf0{bottom:856.746324pt;}
.y75{bottom:857.066324pt;}
.y4d{bottom:866.186320pt;}
.ye{bottom:871.146318pt;}
.y74{bottom:875.466316pt;}
.y94{bottom:882.346314pt;}
.y4c{bottom:884.586313pt;}
.yd{bottom:892.586310pt;}
.y73{bottom:893.866309pt;}
.y4b{bottom:902.986305pt;}
.y18{bottom:912.107200pt;}
.y72{bottom:912.266302pt;}
.y1e{bottom:917.066300pt;}
.y4a{bottom:921.386298pt;}
.y93{bottom:923.146297pt;}
.y71{bottom:930.666294pt;}
.y1d{bottom:935.786292pt;}
.y49{bottom:939.786291pt;}
.yd6{bottom:949.066287pt;}
.y1c{bottom:952.106286pt;}
.y48{bottom:958.186283pt;}
.y70{bottom:967.626280pt;}
.y1b{bottom:968.426279pt;}
.y1f{bottom:982.186274pt;}
.y1a{bottom:984.586273pt;}
.y6f{bottom:986.026272pt;}
.y47{bottom:996.906268pt;}
.y6e{bottom:1004.426265pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1050.826246pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.440000pt;}
.hb{height:17.760000pt;}
.h15{height:17.920000pt;}
.h14{height:18.240000pt;}
.h6{height:19.520000pt;}
.he{height:32.554674pt;}
.h4{height:32.624987pt;}
.hd{height:34.968736pt;}
.hc{height:36.312485pt;}
.h1{height:36.909048pt;}
.h5{height:38.128110pt;}
.h11{height:38.698735pt;}
.h9{height:39.104984pt;}
.h8{height:43.374983pt;}
.hf{height:43.749982pt;}
.h12{height:44.437482pt;}
.h10{height:44.468732pt;}
.h2{height:45.937482pt;}
.h13{height:49.013730pt;}
.h7{height:50.748730pt;}
.ha{height:65.062474pt;}
.h0{height:1122.666667pt;}
.w4{width:1.120000pt;}
.w3{width:4.960000pt;}
.wd{width:5.280000pt;}
.wa{width:5.440000pt;}
.w5{width:6.880000pt;}
.w7{width:8.000000pt;}
.w2{width:9.440000pt;}
.w9{width:22.080000pt;}
.wc{width:24.960000pt;}
.w8{width:28.000000pt;}
.w12{width:52.480000pt;}
.wb{width:53.280000pt;}
.w11{width:60.480000pt;}
.w10{width:70.880000pt;}
.we{width:96.160000pt;}
.w14{width:96.800000pt;}
.wf{width:101.760000pt;}
.w6{width:103.520000pt;}
.w13{width:114.240000pt;}
.w15{width:136.320000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1c{left:54.239978pt;}
.x4{left:55.679978pt;}
.x1a{left:63.199975pt;}
.x19{left:65.439974pt;}
.x16{left:70.719972pt;}
.x17{left:75.519970pt;}
.x1e{left:76.479969pt;}
.x5{left:78.879968pt;}
.x18{left:81.759995pt;}
.x1{left:95.999962pt;}
.xb{left:99.519960pt;}
.x26{left:103.519519pt;}
.x1b{left:113.599955pt;}
.x1d{left:119.039952pt;}
.xe{left:123.359849pt;}
.x8{left:129.279948pt;}
.x33{left:133.760000pt;}
.x39{left:156.000000pt;}
.x35{left:174.240000pt;}
.x9{left:178.720029pt;}
.x1f{left:188.159934pt;}
.x20{left:189.119924pt;}
.x3b{left:200.000000pt;}
.x2c{left:207.040000pt;}
.x10{left:209.280000pt;}
.x21{left:214.879907pt;}
.x11{left:229.439908pt;}
.x22{left:233.599907pt;}
.x25{left:236.959905pt;}
.x2d{left:244.320000pt;}
.x14{left:246.239902pt;}
.x2{left:268.959892pt;}
.x2e{left:272.320000pt;}
.xa{left:289.119884pt;}
.xd{left:312.632598pt;}
.xf{left:320.472445pt;}
.x13{left:343.199863pt;}
.x12{left:357.439883pt;}
.xc{left:368.632610pt;}
.x6{left:373.759850pt;}
.x28{left:381.760000pt;}
.x29{left:396.159842pt;}
.x2f{left:424.160000pt;}
.x24{left:487.199805pt;}
.x2a{left:539.520000pt;}
.x2b{left:553.919778pt;}
.x30{left:576.000000pt;}
.x31{left:581.440000pt;}
.x15{left:585.439521pt;}
.x3{left:592.159763pt;}
.x23{left:610.879756pt;}
.x36{left:614.400000pt;}
.x37{left:619.680000pt;}
.x32{left:634.720000pt;}
.x34{left:655.680000pt;}
.x3a{left:668.160000pt;}
.x38{left:680.160000pt;}
.x3c{left:690.240000pt;}
.x27{left:697.599721pt;}
.x7{left:732.640000pt;}
}




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