
    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_56b74f00b538b296711ff5db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f1618ac6a0ab3157d9af35b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_2edb44a9af6028a16b1c390d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_4ed19721dcea40c7f1808040.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_8ae4957c488beaf94da94ed2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_278ca1447671e149582bf61e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_936d1c7f3a4e488525407f6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_cf493d14e9aae5536c574bd1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_316ded677e862595e2c4261d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-27.000000px;}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.413400px;}
.ls19{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.270000px;}
.ls28{letter-spacing:-0.220200px;}
.ls18{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.153600px;}
.ls14{letter-spacing:-0.139200px;}
.ls15{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.013320px;}
.lsc{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.066720px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078600px;}
.ls3{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.192000px;}
.ls20{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.264000px;}
.ls25{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.720000px;}
.ls1e{letter-spacing:1.530000px;}
.ls22{letter-spacing:2.160000px;}
.ls1f{letter-spacing:2.700000px;}
.ls23{letter-spacing:3.330000px;}
.lsb{letter-spacing:6.120000px;}
.ls10{letter-spacing:6.840000px;}
.ls1d{letter-spacing:9.000000px;}
.ls1a{letter-spacing:9.720000px;}
.ls11{letter-spacing:11.970000px;}
.ls1b{letter-spacing:13.320000px;}
.ls21{letter-spacing:15.480000px;}
.ls13{letter-spacing:16.920000px;}
.ls9{letter-spacing:23.580000px;}
.ls24{letter-spacing:24.480000px;}
.ls2a{letter-spacing:43.920000px;}
.ls26{letter-spacing:109.920000px;}
.ls29{letter-spacing:762.240000px;}
.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;}
}
.wse{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.640000px;}
.ws14{word-spacing:-16.470000px;}
.ws7{word-spacing:-15.210000px;}
.ws8{word-spacing:-15.083280px;}
.wsb{word-spacing:-15.043320px;}
.ws2{word-spacing:-15.030000px;}
.ws9{word-spacing:-14.976720px;}
.ws6{word-spacing:-14.967480px;}
.wsc{word-spacing:-14.876400px;}
.ws3{word-spacing:-14.850000px;}
.ws15{word-spacing:-14.809800px;}
.wsa{word-spacing:-14.616600px;}
.ws1{word-spacing:-14.220000px;}
.ws4{word-spacing:-12.204000px;}
.ws11{word-spacing:-11.970000px;}
.ws5{word-spacing:0.000000px;}
._1d{margin-left:-5.182560px;}
._f{margin-left:-3.942000px;}
._8{margin-left:-2.754000px;}
._2{margin-left:-1.153440px;}
._3{width:1.756920px;}
._5{width:2.817840px;}
._4{width:3.954480px;}
._b{width:5.207040px;}
._c{width:6.456960px;}
._7{width:8.155440px;}
._6{width:9.282000px;}
._d{width:10.590000px;}
._19{width:11.825880px;}
._1e{width:13.176000px;}
._11{width:15.120000px;}
._10{width:16.128000px;}
._2f{width:17.434800px;}
._a{width:18.829080px;}
._9{width:19.872000px;}
._1c{width:21.024000px;}
._22{width:22.320000px;}
._25{width:23.467440px;}
._13{width:25.416000px;}
._12{width:26.424000px;}
._17{width:27.432000px;}
._26{width:28.820760px;}
._16{width:30.024000px;}
._15{width:31.104000px;}
._1f{width:32.688000px;}
._2e{width:33.784920px;}
._24{width:34.848000px;}
._21{width:36.836520px;}
._20{width:37.872000px;}
._30{width:39.456000px;}
._2b{width:40.680000px;}
._2d{width:42.864000px;}
._2c{width:43.968000px;}
._35{width:45.141240px;}
._14{width:46.152000px;}
._36{width:47.520000px;}
._27{width:52.344000px;}
._23{width:53.568000px;}
._1a{width:54.949680px;}
._2a{width:56.952000px;}
._39{width:58.105440px;}
._38{width:59.256000px;}
._29{width:62.352000px;}
._28{width:63.504000px;}
._31{width:69.558840px;}
._32{width:70.607760px;}
._34{width:76.676520px;}
._33{width:77.760000px;}
._37{width:103.320000px;}
._18{width:243.156000px;}
._3b{width:434.016000px;}
._3a{width:535.176000px;}
._e{width:761.403480px;}
._0{width:805.260000px;}
._1b{width:1390.071840px;}
._1{width:1748.340000px;}
.fc3{color:rgb(32,33,34);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(112,112,112);}
.fc4{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y5c{bottom:96.689908px;}
.y8e{bottom:101.909908px;}
.ydb{bottom:105.869908px;}
.y2f{bottom:106.679908px;}
.y5b{bottom:113.969908px;}
.yb7{bottom:114.329908px;}
.y63{bottom:119.189908px;}
.yba{bottom:125.939908px;}
.yda{bottom:126.569908px;}
.y2e{bottom:127.379908px;}
.y5a{bottom:131.159908px;}
.y62{bottom:131.609908px;}
.yb1{bottom:136.379908px;}
.yb6{bottom:139.439908px;}
.yb9{bottom:146.639908px;}
.yd9{bottom:147.269908px;}
.y2d{bottom:148.079908px;}
.y59{bottom:148.439908px;}
.y58{bottom:153.659908px;}
.y61{bottom:160.139908px;}
.y57{bottom:165.719908px;}
.y8a{bottom:166.079908px;}
.yb8{bottom:167.339908px;}
.yd8{bottom:167.969908px;}
.y2c{bottom:168.779908px;}
.y79{bottom:170.939908px;}
.y60{bottom:180.839908px;}
.y56{bottom:182.909908px;}
.y82{bottom:188.129908px;}
.yd7{bottom:188.669908px;}
.y2b{bottom:189.479908px;}
.y55{bottom:200.189908px;}
.yb0{bottom:200.549908px;}
.y5f{bottom:201.539908px;}
.y54{bottom:205.409908px;}
.yd6{bottom:209.369908px;}
.y2a{bottom:215.939908px;}
.y78{bottom:217.469908px;}
.y53{bottom:217.829908px;}
.y5e{bottom:222.239908px;}
.y86{bottom:222.689908px;}
.yd5{bottom:230.069908px;}
.y29{bottom:232.409908px;}
.y7f{bottom:234.659908px;}
.y85{bottom:235.019908px;}
.y77{bottom:239.879908px;}
.y52{bottom:242.939908px;}
.y28{bottom:248.879908px;}
.yd4{bottom:250.769908px;}
.y76{bottom:251.939908px;}
.y81{bottom:252.299908px;}
.ya6{bottom:257.159908px;}
.y51{bottom:263.639908px;}
.y27{bottom:265.349908px;}
.y75{bottom:269.219908px;}
.ya5{bottom:269.579908px;}
.yb3{bottom:270.389908px;}
.yad{bottom:270.929908px;}
.yd3{bottom:271.469908px;}
.y90{bottom:274.439908px;}
.y26{bottom:281.909908px;}
.y50{bottom:284.339908px;}
.y74{bottom:286.409908px;}
.y8f{bottom:286.769908px;}
.yac{bottom:288.119908px;}
.yb5{bottom:291.089908px;}
.y7e{bottom:291.629908px;}
.y25{bottom:298.379908px;}
.y73{bottom:303.689908px;}
.y88{bottom:304.049908px;}
.y4e{bottom:305.039908px;}
.yab{bottom:305.399908px;}
.yd2{bottom:305.669908px;}
.y72{bottom:308.909908px;}
.yaa{bottom:310.619908px;}
.y4f{bottom:311.789908px;}
.y24{bottom:314.849908px;}
.y71{bottom:320.969908px;}
.ya3{bottom:322.769908px;}
.ya9{bottom:323.039908px;}
.y4d{bottom:325.739908px;}
.yd1{bottom:326.369908px;}
.ya4{bottom:329.519908px;}
.y23{bottom:331.319908px;}
.yb2{bottom:332.489908px;}
.y70{bottom:338.159908px;}
.y7d{bottom:338.519908px;}
.ya2{bottom:343.469908px;}
.y4c{bottom:346.439908px;}
.y22{bottom:347.789908px;}
.ya7{bottom:353.189908px;}
.y6f{bottom:355.439908px;}
.ya1{bottom:364.169908px;}
.y21{bottom:364.259908px;}
.y4b{bottom:367.139908px;}
.yd0{bottom:368.039908px;}
.y6e{bottom:372.719908px;}
.y7c{bottom:373.889908px;}
.y20{bottom:380.729908px;}
.ya0{bottom:384.869908px;}
.y4a{bottom:387.839908px;}
.ycf{bottom:388.739908px;}
.y6d{bottom:389.909908px;}
.y6c{bottom:395.129908px;}
.y1f{bottom:397.199908px;}
.y9e{bottom:405.569908px;}
.y6b{bottom:407.189908px;}
.y49{bottom:408.539908px;}
.yce{bottom:409.439908px;}
.y9f{bottom:412.319908px;}
.y6a{bottom:412.409908px;}
.y1e{bottom:413.669908px;}
.y84{bottom:415.289908px;}
.y69{bottom:424.469908px;}
.y9d{bottom:426.269908px;}
.y48{bottom:429.239908px;}
.y68{bottom:429.689908px;}
.y1d{bottom:430.139908px;}
.yaf{bottom:435.989908px;}
.y67{bottom:442.019908px;}
.ycd{bottom:443.639908px;}
.y1c{bottom:446.699908px;}
.y9c{bottom:446.969908px;}
.y47{bottom:449.969908px;}
.ya8{bottom:456.719908px;}
.y1b{bottom:463.199908px;}
.ycc{bottom:464.369908px;}
.y9b{bottom:467.699908px;}
.y46{bottom:470.669908px;}
.y8d{bottom:477.419908px;}
.y1a{bottom:479.669908px;}
.ycb{bottom:485.069908px;}
.y9a{bottom:488.399908px;}
.y45{bottom:491.369908px;}
.y19{bottom:496.139908px;}
.y66{bottom:498.119908px;}
.y99{bottom:509.099908px;}
.y44{bottom:512.069908px;}
.y18{bottom:512.609908px;}
.y7b{bottom:518.819908px;}
.yca{bottom:519.269908px;}
.y17{bottom:529.079908px;}
.y97{bottom:529.799908px;}
.y43{bottom:532.769908px;}
.y98{bottom:536.549908px;}
.yae{bottom:539.519908px;}
.yc9{bottom:539.969908px;}
.y16{bottom:545.549908px;}
.y96{bottom:550.499908px;}
.y42{bottom:553.469908px;}
.y65{bottom:560.219908px;}
.yc8{bottom:560.669908px;}
.y15{bottom:562.019908px;}
.y95{bottom:571.109908px;}
.y41{bottom:574.169908px;}
.y14{bottom:578.489908px;}
.yc7{bottom:581.369908px;}
.y94{bottom:591.809908px;}
.y40{bottom:594.869908px;}
.y13{bottom:595.229908px;}
.yc6{bottom:602.069908px;}
.y93{bottom:612.509908px;}
.y12{bottom:615.299908px;}
.y3f{bottom:615.569908px;}
.y80{bottom:622.319908px;}
.yc5{bottom:622.769908px;}
.y11{bottom:632.579908px;}
.y92{bottom:633.209908px;}
.y3e{bottom:636.269908px;}
.yb4{bottom:643.019908px;}
.yc4{bottom:643.469908px;}
.y10{bottom:649.859908px;}
.y91{bottom:656.699908px;}
.y3d{bottom:656.969908px;}
.y87{bottom:663.719908px;}
.yc3{bottom:664.169908px;}
.yf{bottom:667.049908px;}
.y3c{bottom:677.669908px;}
.ye{bottom:684.329908px;}
.y5d{bottom:684.419908px;}
.yc2{bottom:684.869908px;}
.y3b{bottom:698.369908px;}
.yd{bottom:701.609908px;}
.y8b{bottom:705.119908px;}
.yc1{bottom:705.569908px;}
.yc{bottom:718.799908px;}
.y3a{bottom:719.069908px;}
.y7a{bottom:725.819908px;}
.yc0{bottom:726.269908px;}
.yb{bottom:736.079908px;}
.y38{bottom:739.769908px;}
.y39{bottom:746.519908px;}
.ybf{bottom:746.969908px;}
.ya{bottom:753.989908px;}
.y37{bottom:760.469908px;}
.y83{bottom:767.219908px;}
.ybe{bottom:767.669908px;}
.y36{bottom:781.169908px;}
.y89{bottom:787.919908px;}
.ybd{bottom:788.369908px;}
.y9{bottom:790.709908px;}
.y35{bottom:801.869908px;}
.ybc{bottom:809.069908px;}
.y8{bottom:820.049908px;}
.y34{bottom:822.569908px;}
.ybb{bottom:829.769908px;}
.y33{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.y64{bottom:850.049908px;}
.y32{bottom:863.999908px;}
.y8c{bottom:870.749908px;}
.y6{bottom:878.669908px;}
.y31{bottom:884.699908px;}
.y30{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.hf{height:38.158594px;}
.h12{height:39.183750px;}
.h13{height:39.709688px;}
.hd{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h10{height:53.896641px;}
.h8{height:55.291992px;}
.h11{height:58.975137px;}
.h7{height:59.004492px;}
.he{height:64.546875px;}
.ha{height:64.657617px;}
.h3{height:65.526152px;}
.hc{height:70.628906px;}
.h6{height:70.664062px;}
.h14{height:71.613281px;}
.hb{height:72.562500px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.x7{left:100.529989px;}
.x17{left:105.419989px;}
.x2{left:127.649989px;}
.x64{left:131.699978px;}
.x65{left:143.759989px;}
.xa{left:147.719978px;}
.xb{left:153.749989px;}
.xe{left:159.059989px;}
.x53{left:165.719978px;}
.x51{left:171.749989px;}
.x5c{left:173.099978px;}
.x23{left:174.179978px;}
.x54{left:177.779989px;}
.x25{left:179.669978px;}
.xc{left:183.179978px;}
.x5d{left:185.159989px;}
.x24{left:186.239989px;}
.xd{left:189.209989px;}
.x3a{left:190.649978px;}
.x26{left:191.729989px;}
.x3b{left:194.699989px;}
.x3{left:202.169978px;}
.x4{left:208.199989px;}
.x4d{left:222.689978px;}
.x4e{left:234.749989px;}
.x1f{left:248.699978px;}
.x20{left:260.759989px;}
.x50{left:267.149978px;}
.x2d{left:278.219978px;}
.x2e{left:290.279989px;}
.x44{left:295.049978px;}
.xf{left:303.599978px;}
.x5a{left:305.039978px;}
.x45{left:307.109989px;}
.x10{left:309.629989px;}
.x18{left:314.219978px;}
.x5b{left:317.129989px;}
.x34{left:321.629978px;}
.x19{left:326.309989px;}
.x57{left:330.629978px;}
.x5{left:332.159978px;}
.x35{left:333.689989px;}
.x6{left:338.189989px;}
.x58{left:342.689989px;}
.x49{left:344.669989px;}
.x68{left:368.609978px;}
.x40{left:373.019978px;}
.x69{left:380.669989px;}
.x27{left:383.549978px;}
.x41{left:385.079989px;}
.x46{left:386.609978px;}
.x11{left:388.499978px;}
.x38{left:391.559978px;}
.x12{left:394.529989px;}
.x28{left:395.609989px;}
.x1a{left:399.659989px;}
.x39{left:403.619989px;}
.x52{left:412.619989px;}
.x1b{left:422.519978px;}
.x32{left:428.099978px;}
.x1c{left:434.579989px;}
.x3e{left:437.009978px;}
.x33{left:440.159989px;}
.x3f{left:449.069989px;}
.x5e{left:455.639978px;}
.x13{left:458.339978px;}
.x21{left:461.579978px;}
.x14{left:464.369989px;}
.x2b{left:465.539978px;}
.x5f{left:467.699989px;}
.x4a{left:469.769989px;}
.x22{left:473.639989px;}
.x31{left:476.159989px;}
.x2c{left:477.599989px;}
.x47{left:484.529978px;}
.x48{left:496.589989px;}
.x66{left:501.629978px;}
.x36{left:504.059978px;}
.x62{left:509.009978px;}
.x2f{left:511.439978px;}
.x67{left:513.689989px;}
.x37{left:516.119989px;}
.x63{left:521.069989px;}
.x30{left:523.499989px;}
.x29{left:526.649978px;}
.x55{left:532.169978px;}
.x2a{left:538.739989px;}
.x56{left:544.229989px;}
.x15{left:547.109978px;}
.x16{left:559.169989px;}
.x3c{left:563.579978px;}
.x1d{left:567.539978px;}
.x3d{left:575.639989px;}
.x1e{left:579.599989px;}
.x59{left:586.979989px;}
.x4f{left:592.019989px;}
.x4b{left:593.999978px;}
.x8{left:595.079978px;}
.x60{left:597.149978px;}
.x9{left:601.109989px;}
.x4c{left:606.059989px;}
.x61{left:609.209989px;}
.x42{left:610.829978px;}
.x43{left:622.889989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-24.000000pt;}
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.367467pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls28{letter-spacing:-0.195733pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls14{letter-spacing:-0.123733pt;}
.ls15{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011840pt;}
.lsc{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.059307pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069867pt;}
.ls3{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.170667pt;}
.ls20{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.234667pt;}
.ls25{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:1.360000pt;}
.ls22{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:2.400000pt;}
.ls23{letter-spacing:2.960000pt;}
.lsb{letter-spacing:5.440000pt;}
.ls10{letter-spacing:6.080000pt;}
.ls1d{letter-spacing:8.000000pt;}
.ls1a{letter-spacing:8.640000pt;}
.ls11{letter-spacing:10.640000pt;}
.ls1b{letter-spacing:11.840000pt;}
.ls21{letter-spacing:13.760000pt;}
.ls13{letter-spacing:15.040000pt;}
.ls9{letter-spacing:20.960000pt;}
.ls24{letter-spacing:21.760000pt;}
.ls2a{letter-spacing:39.040000pt;}
.ls26{letter-spacing:97.706667pt;}
.ls29{letter-spacing:677.546667pt;}
.wse{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.680000pt;}
.ws14{word-spacing:-14.640000pt;}
.ws7{word-spacing:-13.520000pt;}
.ws8{word-spacing:-13.407360pt;}
.wsb{word-spacing:-13.371840pt;}
.ws2{word-spacing:-13.360000pt;}
.ws9{word-spacing:-13.312640pt;}
.ws6{word-spacing:-13.304427pt;}
.wsc{word-spacing:-13.223467pt;}
.ws3{word-spacing:-13.200000pt;}
.ws15{word-spacing:-13.164267pt;}
.wsa{word-spacing:-12.992533pt;}
.ws1{word-spacing:-12.640000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws11{word-spacing:-10.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1d{margin-left:-4.606720pt;}
._f{margin-left:-3.504000pt;}
._8{margin-left:-2.448000pt;}
._2{margin-left:-1.025280pt;}
._3{width:1.561707pt;}
._5{width:2.504747pt;}
._4{width:3.515093pt;}
._b{width:4.628480pt;}
._c{width:5.739520pt;}
._7{width:7.249280pt;}
._6{width:8.250667pt;}
._d{width:9.413333pt;}
._19{width:10.511893pt;}
._1e{width:11.712000pt;}
._11{width:13.440000pt;}
._10{width:14.336000pt;}
._2f{width:15.497600pt;}
._a{width:16.736960pt;}
._9{width:17.664000pt;}
._1c{width:18.688000pt;}
._22{width:19.840000pt;}
._25{width:20.859947pt;}
._13{width:22.592000pt;}
._12{width:23.488000pt;}
._17{width:24.384000pt;}
._26{width:25.618453pt;}
._16{width:26.688000pt;}
._15{width:27.648000pt;}
._1f{width:29.056000pt;}
._2e{width:30.031040pt;}
._24{width:30.976000pt;}
._21{width:32.743573pt;}
._20{width:33.664000pt;}
._30{width:35.072000pt;}
._2b{width:36.160000pt;}
._2d{width:38.101333pt;}
._2c{width:39.082667pt;}
._35{width:40.125547pt;}
._14{width:41.024000pt;}
._36{width:42.240000pt;}
._27{width:46.528000pt;}
._23{width:47.616000pt;}
._1a{width:48.844160pt;}
._2a{width:50.624000pt;}
._39{width:51.649280pt;}
._38{width:52.672000pt;}
._29{width:55.424000pt;}
._28{width:56.448000pt;}
._31{width:61.830080pt;}
._32{width:62.762453pt;}
._34{width:68.156907pt;}
._33{width:69.120000pt;}
._37{width:91.840000pt;}
._18{width:216.138667pt;}
._3b{width:385.792000pt;}
._3a{width:475.712000pt;}
._e{width:676.803093pt;}
._0{width:715.786667pt;}
._1b{width:1235.619413pt;}
._1{width:1554.080000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y5c{bottom:85.946585pt;}
.y8e{bottom:90.586585pt;}
.ydb{bottom:94.106585pt;}
.y2f{bottom:94.826585pt;}
.y5b{bottom:101.306585pt;}
.yb7{bottom:101.626585pt;}
.y63{bottom:105.946585pt;}
.yba{bottom:111.946585pt;}
.yda{bottom:112.506585pt;}
.y2e{bottom:113.226585pt;}
.y5a{bottom:116.586585pt;}
.y62{bottom:116.986585pt;}
.yb1{bottom:121.226585pt;}
.yb6{bottom:123.946585pt;}
.yb9{bottom:130.346585pt;}
.yd9{bottom:130.906585pt;}
.y2d{bottom:131.626585pt;}
.y59{bottom:131.946585pt;}
.y58{bottom:136.586585pt;}
.y61{bottom:142.346585pt;}
.y57{bottom:147.306585pt;}
.y8a{bottom:147.626585pt;}
.yb8{bottom:148.746585pt;}
.yd8{bottom:149.306585pt;}
.y2c{bottom:150.026585pt;}
.y79{bottom:151.946585pt;}
.y60{bottom:160.746585pt;}
.y56{bottom:162.586585pt;}
.y82{bottom:167.226585pt;}
.yd7{bottom:167.706585pt;}
.y2b{bottom:168.426585pt;}
.y55{bottom:177.946585pt;}
.yb0{bottom:178.266585pt;}
.y5f{bottom:179.146585pt;}
.y54{bottom:182.586585pt;}
.yd6{bottom:186.106585pt;}
.y2a{bottom:191.946585pt;}
.y78{bottom:193.306585pt;}
.y53{bottom:193.626585pt;}
.y5e{bottom:197.546585pt;}
.y86{bottom:197.946585pt;}
.yd5{bottom:204.506585pt;}
.y29{bottom:206.586585pt;}
.y7f{bottom:208.586585pt;}
.y85{bottom:208.906585pt;}
.y77{bottom:213.226585pt;}
.y52{bottom:215.946585pt;}
.y28{bottom:221.226585pt;}
.yd4{bottom:222.906585pt;}
.y76{bottom:223.946585pt;}
.y81{bottom:224.266585pt;}
.ya6{bottom:228.586585pt;}
.y51{bottom:234.346585pt;}
.y27{bottom:235.866585pt;}
.y75{bottom:239.306585pt;}
.ya5{bottom:239.626585pt;}
.yb3{bottom:240.346585pt;}
.yad{bottom:240.826585pt;}
.yd3{bottom:241.306585pt;}
.y90{bottom:243.946585pt;}
.y26{bottom:250.586585pt;}
.y50{bottom:252.746585pt;}
.y74{bottom:254.586585pt;}
.y8f{bottom:254.906585pt;}
.yac{bottom:256.106585pt;}
.yb5{bottom:258.746585pt;}
.y7e{bottom:259.226585pt;}
.y25{bottom:265.226585pt;}
.y73{bottom:269.946585pt;}
.y88{bottom:270.266585pt;}
.y4e{bottom:271.146585pt;}
.yab{bottom:271.466585pt;}
.yd2{bottom:271.706585pt;}
.y72{bottom:274.586585pt;}
.yaa{bottom:276.106585pt;}
.y4f{bottom:277.146585pt;}
.y24{bottom:279.866585pt;}
.y71{bottom:285.306585pt;}
.ya3{bottom:286.906585pt;}
.ya9{bottom:287.146585pt;}
.y4d{bottom:289.546585pt;}
.yd1{bottom:290.106585pt;}
.ya4{bottom:292.906585pt;}
.y23{bottom:294.506585pt;}
.yb2{bottom:295.546585pt;}
.y70{bottom:300.586585pt;}
.y7d{bottom:300.906585pt;}
.ya2{bottom:305.306585pt;}
.y4c{bottom:307.946585pt;}
.y22{bottom:309.146585pt;}
.ya7{bottom:313.946585pt;}
.y6f{bottom:315.946585pt;}
.ya1{bottom:323.706585pt;}
.y21{bottom:323.786585pt;}
.y4b{bottom:326.346585pt;}
.yd0{bottom:327.146585pt;}
.y6e{bottom:331.306585pt;}
.y7c{bottom:332.346585pt;}
.y20{bottom:338.426585pt;}
.ya0{bottom:342.106585pt;}
.y4a{bottom:344.746585pt;}
.ycf{bottom:345.546585pt;}
.y6d{bottom:346.586585pt;}
.y6c{bottom:351.226585pt;}
.y1f{bottom:353.066585pt;}
.y9e{bottom:360.506585pt;}
.y6b{bottom:361.946585pt;}
.y49{bottom:363.146585pt;}
.yce{bottom:363.946585pt;}
.y9f{bottom:366.506585pt;}
.y6a{bottom:366.586585pt;}
.y1e{bottom:367.706585pt;}
.y84{bottom:369.146585pt;}
.y69{bottom:377.306585pt;}
.y9d{bottom:378.906585pt;}
.y48{bottom:381.546585pt;}
.y68{bottom:381.946585pt;}
.y1d{bottom:382.346585pt;}
.yaf{bottom:387.546585pt;}
.y67{bottom:392.906585pt;}
.ycd{bottom:394.346585pt;}
.y1c{bottom:397.066585pt;}
.y9c{bottom:397.306585pt;}
.y47{bottom:399.973252pt;}
.ya8{bottom:405.973252pt;}
.y1b{bottom:411.733252pt;}
.ycc{bottom:412.773252pt;}
.y9b{bottom:415.733252pt;}
.y46{bottom:418.373252pt;}
.y8d{bottom:424.373252pt;}
.y1a{bottom:426.373252pt;}
.ycb{bottom:431.173252pt;}
.y9a{bottom:434.133252pt;}
.y45{bottom:436.773252pt;}
.y19{bottom:441.013252pt;}
.y66{bottom:442.773252pt;}
.y99{bottom:452.533252pt;}
.y44{bottom:455.173252pt;}
.y18{bottom:455.653252pt;}
.y7b{bottom:461.173252pt;}
.yca{bottom:461.573252pt;}
.y17{bottom:470.293252pt;}
.y97{bottom:470.933252pt;}
.y43{bottom:473.573252pt;}
.y98{bottom:476.933252pt;}
.yae{bottom:479.573252pt;}
.yc9{bottom:479.973252pt;}
.y16{bottom:484.933252pt;}
.y96{bottom:489.333252pt;}
.y42{bottom:491.973252pt;}
.y65{bottom:497.973252pt;}
.yc8{bottom:498.373252pt;}
.y15{bottom:499.573252pt;}
.y95{bottom:507.653252pt;}
.y41{bottom:510.373252pt;}
.y14{bottom:514.213252pt;}
.yc7{bottom:516.773252pt;}
.y94{bottom:526.053252pt;}
.y40{bottom:528.773252pt;}
.y13{bottom:529.093252pt;}
.yc6{bottom:535.173252pt;}
.y93{bottom:544.453252pt;}
.y12{bottom:546.933252pt;}
.y3f{bottom:547.173252pt;}
.y80{bottom:553.173252pt;}
.yc5{bottom:553.573252pt;}
.y11{bottom:562.293252pt;}
.y92{bottom:562.853252pt;}
.y3e{bottom:565.573252pt;}
.yb4{bottom:571.573252pt;}
.yc4{bottom:571.973252pt;}
.y10{bottom:577.653252pt;}
.y91{bottom:583.733252pt;}
.y3d{bottom:583.973252pt;}
.y87{bottom:589.973252pt;}
.yc3{bottom:590.373252pt;}
.yf{bottom:592.933252pt;}
.y3c{bottom:602.373252pt;}
.ye{bottom:608.293252pt;}
.y5d{bottom:608.373252pt;}
.yc2{bottom:608.773252pt;}
.y3b{bottom:620.773252pt;}
.yd{bottom:623.653252pt;}
.y8b{bottom:626.773252pt;}
.yc1{bottom:627.173252pt;}
.yc{bottom:638.933252pt;}
.y3a{bottom:639.173252pt;}
.y7a{bottom:645.173252pt;}
.yc0{bottom:645.573252pt;}
.yb{bottom:654.293252pt;}
.y38{bottom:657.573252pt;}
.y39{bottom:663.573252pt;}
.ybf{bottom:663.973252pt;}
.ya{bottom:670.213252pt;}
.y37{bottom:675.973252pt;}
.y83{bottom:681.973252pt;}
.ybe{bottom:682.373252pt;}
.y36{bottom:694.373252pt;}
.y89{bottom:700.373252pt;}
.ybd{bottom:700.773252pt;}
.y9{bottom:702.853252pt;}
.y35{bottom:712.773252pt;}
.ybc{bottom:719.173252pt;}
.y8{bottom:728.933252pt;}
.y34{bottom:731.173252pt;}
.ybb{bottom:737.573252pt;}
.y33{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.y64{bottom:755.599919pt;}
.y32{bottom:767.999919pt;}
.y8c{bottom:773.999919pt;}
.y6{bottom:781.039919pt;}
.y31{bottom:786.399919pt;}
.y30{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.hf{height:33.918750pt;}
.h12{height:34.830000pt;}
.h13{height:35.297500pt;}
.hd{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h10{height:47.908125pt;}
.h8{height:49.148438pt;}
.h11{height:52.422344pt;}
.h7{height:52.448437pt;}
.he{height:57.375000pt;}
.ha{height:57.473437pt;}
.h3{height:58.245469pt;}
.hc{height:62.781250pt;}
.h6{height:62.812500pt;}
.h14{height:63.656250pt;}
.hb{height:64.500000pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.x7{left:89.359990pt;}
.x17{left:93.706657pt;}
.x2{left:113.466657pt;}
.x64{left:117.066648pt;}
.x65{left:127.786657pt;}
.xa{left:131.306648pt;}
.xb{left:136.666657pt;}
.xe{left:141.386657pt;}
.x53{left:147.306648pt;}
.x51{left:152.666657pt;}
.x5c{left:153.866648pt;}
.x23{left:154.826648pt;}
.x54{left:158.026657pt;}
.x25{left:159.706648pt;}
.xc{left:162.826648pt;}
.x5d{left:164.586657pt;}
.x24{left:165.546657pt;}
.xd{left:168.186657pt;}
.x3a{left:169.466648pt;}
.x26{left:170.426657pt;}
.x3b{left:173.066657pt;}
.x3{left:179.706648pt;}
.x4{left:185.066657pt;}
.x4d{left:197.946648pt;}
.x4e{left:208.666657pt;}
.x1f{left:221.066648pt;}
.x20{left:231.786657pt;}
.x50{left:237.466648pt;}
.x2d{left:247.306648pt;}
.x2e{left:258.026657pt;}
.x44{left:262.266648pt;}
.xf{left:269.866648pt;}
.x5a{left:271.146648pt;}
.x45{left:272.986657pt;}
.x10{left:275.226657pt;}
.x18{left:279.306648pt;}
.x5b{left:281.893324pt;}
.x34{left:285.893314pt;}
.x19{left:290.053324pt;}
.x57{left:293.893314pt;}
.x5{left:295.253314pt;}
.x35{left:296.613324pt;}
.x6{left:300.613324pt;}
.x58{left:304.613324pt;}
.x49{left:306.373324pt;}
.x68{left:327.653314pt;}
.x40{left:331.573314pt;}
.x69{left:338.373324pt;}
.x27{left:340.933314pt;}
.x41{left:342.293324pt;}
.x46{left:343.653314pt;}
.x11{left:345.333314pt;}
.x38{left:348.053314pt;}
.x12{left:350.693324pt;}
.x28{left:351.653324pt;}
.x1a{left:355.253324pt;}
.x39{left:358.773324pt;}
.x52{left:366.773324pt;}
.x1b{left:375.573314pt;}
.x32{left:380.533314pt;}
.x1c{left:386.293324pt;}
.x3e{left:388.453314pt;}
.x33{left:391.253324pt;}
.x3f{left:399.173324pt;}
.x5e{left:405.013314pt;}
.x13{left:407.413314pt;}
.x21{left:410.293314pt;}
.x14{left:412.773324pt;}
.x2b{left:413.813314pt;}
.x5f{left:415.733324pt;}
.x4a{left:417.573324pt;}
.x22{left:421.013324pt;}
.x31{left:423.253324pt;}
.x2c{left:424.533324pt;}
.x47{left:430.693314pt;}
.x48{left:441.413324pt;}
.x66{left:445.893314pt;}
.x36{left:448.053314pt;}
.x62{left:452.453314pt;}
.x2f{left:454.613314pt;}
.x67{left:456.613324pt;}
.x37{left:458.773324pt;}
.x63{left:463.173324pt;}
.x30{left:465.333324pt;}
.x29{left:468.133314pt;}
.x55{left:473.039981pt;}
.x2a{left:478.879990pt;}
.x56{left:483.759990pt;}
.x15{left:486.319981pt;}
.x16{left:497.039990pt;}
.x3c{left:500.959981pt;}
.x1d{left:504.479981pt;}
.x3d{left:511.679990pt;}
.x1e{left:515.199990pt;}
.x59{left:521.759990pt;}
.x4f{left:526.239990pt;}
.x4b{left:527.999981pt;}
.x8{left:528.959981pt;}
.x60{left:530.799981pt;}
.x9{left:534.319990pt;}
.x4c{left:538.719990pt;}
.x61{left:541.519990pt;}
.x42{left:542.959981pt;}
.x43{left:553.679990pt;}
}




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