
    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_e2b9921df13b2d5e7ed0a3cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_d0d401eafeeda5ae8531264f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_a5a639043a28967ab85b6856.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_112eb2991ddac33bdb0f0469.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_a390d40a1b4da699aeadd4bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_d59d777b2799c04636cb8447.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_228d780004ad00313a949cfb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.546000px;}
.ls20{letter-spacing:-0.424800px;}
.ls8{letter-spacing:-0.240600px;}
.ls1f{letter-spacing:-0.234000px;}
.ls9{letter-spacing:-0.149400px;}
.ls11{letter-spacing:-0.131400px;}
.ls3{letter-spacing:-0.076200px;}
.ls4{letter-spacing:-0.064800px;}
.ls12{letter-spacing:-0.058320px;}
.ls13{letter-spacing:-0.036000px;}
.ls1e{letter-spacing:-0.024480px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.040320px;}
.lsd{letter-spacing:0.100800px;}
.lsc{letter-spacing:0.174240px;}
.ls1c{letter-spacing:0.213000px;}
.ls5{letter-spacing:0.274800px;}
.ls2{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.417000px;}
.ls1d{letter-spacing:0.648000px;}
.ls7{letter-spacing:1.026000px;}
.ls19{letter-spacing:1.686240px;}
.ls1{letter-spacing:2.334240px;}
.ls1a{letter-spacing:2.406240px;}
.ls17{letter-spacing:25.446240px;}
.ls14{letter-spacing:68.064000px;}
.ls10{letter-spacing:68.494560px;}
.ls1b{letter-spacing:84.486240px;}
.lsa{letter-spacing:94.665600px;}
.lsb{letter-spacing:94.716000px;}
.ls18{letter-spacing:98.286240px;}
.lsf{letter-spacing:111.600000px;}
.ls16{letter-spacing:388.697760px;}
.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;}
}
.ws18{word-spacing:-59.718240px;}
.ws13{word-spacing:-38.561760px;}
.ws12{word-spacing:-38.126760px;}
.ws17{word-spacing:-37.913760px;}
.ws14{word-spacing:-37.889280px;}
.ws15{word-spacing:-37.679760px;}
.ws16{word-spacing:-37.488960px;}
.wsa{word-spacing:-25.742304px;}
.ws3{word-spacing:-25.709760px;}
.ws2{word-spacing:-25.633560px;}
.ws9{word-spacing:-25.592904px;}
.ws11{word-spacing:-24.372000px;}
.wse{word-spacing:-19.038240px;}
.ws7{word-spacing:-14.531760px;}
.ws6{word-spacing:-13.922760px;}
.ws1{word-spacing:-13.811760px;}
.ws5{word-spacing:-13.780560px;}
.wsc{word-spacing:-13.606560px;}
.wsd{word-spacing:-13.578624px;}
.wsb{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.447440px;}
.ws4{word-spacing:-13.440960px;}
.wsf{word-spacing:-13.406904px;}
.ws8{word-spacing:-13.265160px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-1196.598000px;}
._1d{margin-left:-16.839600px;}
._15{margin-left:-14.276736px;}
._2{margin-left:-4.536000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.512000px;}
._3{width:1.068000px;}
._c{width:2.118240px;}
._14{width:3.131040px;}
._5{width:5.158800px;}
._a{width:6.930720px;}
._9{width:9.168480px;}
._e{width:10.260720px;}
._1f{width:18.171360px;}
._b{width:20.610720px;}
._12{width:22.565280px;}
._16{width:24.999360px;}
._17{width:26.160960px;}
._1a{width:41.807520px;}
._1b{width:43.212000px;}
._10{width:48.931920px;}
._7{width:59.987520px;}
._8{width:61.333920px;}
._6{width:62.871840px;}
._1c{width:84.119760px;}
._1e{width:85.247040px;}
._f{width:89.730720px;}
._d{width:96.930720px;}
._18{width:98.109120px;}
._19{width:99.455520px;}
._13{width:164.415360px;}
._11{width:321.711120px;}
._20{width:388.553760px;}
.fc4{color:rgb(57,112,80);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fsf{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs7{font-size:113.760000px;}
.fs8{font-size:113.904000px;}
.fs12{font-size:120.240000px;}
.fs10{font-size:144.000000px;}
.fs11{font-size:144.144000px;}
.fs13{font-size:167.760000px;}
.fsc{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs0{font-size:216.000000px;}
.fs1{font-size:216.144000px;}
.fs3{font-size:239.904000px;}
.fs14{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:13.605000px;}
.yb0{bottom:13.755000px;}
.y45{bottom:21.855000px;}
.y88{bottom:21.960000px;}
.y5c{bottom:31.605000px;}
.y9e{bottom:31.650000px;}
.y79{bottom:33.120000px;}
.yaa{bottom:33.270000px;}
.y4d{bottom:33.945000px;}
.y8f{bottom:33.990000px;}
.y9a{bottom:34.230000px;}
.y58{bottom:34.305000px;}
.y98{bottom:34.530000px;}
.y56{bottom:34.665000px;}
.ya4{bottom:36.000000px;}
.y54{bottom:37.365000px;}
.y96{bottom:37.410000px;}
.y62{bottom:43.920000px;}
.y49{bottom:45.075000px;}
.y61{bottom:56.445000px;}
.ya3{bottom:56.550000px;}
.y5e{bottom:56.805000px;}
.ya0{bottom:56.850000px;}
.y60{bottom:74.625000px;}
.ya2{bottom:74.730000px;}
.y7a{bottom:89.025000px;}
.y4b{bottom:96.555000px;}
.yab{bottom:99.900000px;}
.y9c{bottom:101.910000px;}
.y5a{bottom:101.985000px;}
.yc3{bottom:133.200000px;}
.ybe{bottom:134.928000px;}
.y90{bottom:138.060000px;}
.y7b{bottom:144.975000px;}
.y8d{bottom:146.955000px;}
.y52{bottom:161.715000px;}
.yb5{bottom:162.210000px;}
.y84{bottom:163.290000px;}
.yac{bottom:166.500000px;}
.ya8{bottom:176.040000px;}
.y47{bottom:183.495000px;}
.yb2{bottom:188.670000px;}
.y51{bottom:188.715000px;}
.yb4{bottom:189.360000px;}
.y81{bottom:190.080000px;}
.y83{bottom:190.440000px;}
.y8a{bottom:194.220000px;}
.y78{bottom:198.540000px;}
.ya1{bottom:199.080000px;}
.y7c{bottom:200.910000px;}
.ya7{bottom:201.240000px;}
.y65{bottom:201.570000px;}
.ybd{bottom:202.650000px;}
.yd4{bottom:203.550000px;}
.y5f{bottom:207.000000px;}
.ya9{bottom:209.340000px;}
.y50{bottom:215.715000px;}
.yb3{bottom:216.510000px;}
.y82{bottom:217.545000px;}
.y59{bottom:223.380000px;}
.y3b{bottom:224.850000px;}
.y9b{bottom:226.260000px;}
.y64{bottom:226.770000px;}
.yd3{bottom:230.655000px;}
.y4e{bottom:232.560000px;}
.yad{bottom:233.130000px;}
.y63{bottom:237.525000px;}
.ya5{bottom:237.630000px;}
.yc4{bottom:238.755000px;}
.yd9{bottom:241.350000px;}
.y6{bottom:242.610000px;}
.y4f{bottom:242.715000px;}
.yd0{bottom:243.570000px;}
.y9f{bottom:244.080000px;}
.y5d{bottom:246.600000px;}
.ybc{bottom:253.050000px;}
.yf{bottom:255.420000px;}
.y42{bottom:256.830000px;}
.yd2{bottom:257.790000px;}
.yc5{bottom:262.515000px;}
.y6e{bottom:263.700000px;}
.y5{bottom:264.210000px;}
.y9d{bottom:269.280000px;}
.y34{bottom:269.745000px;}
.y5b{bottom:271.800000px;}
.yd1{bottom:284.940000px;}
.yc6{bottom:286.230000px;}
.y33{bottom:286.305000px;}
.y41{bottom:289.230000px;}
.y94{bottom:289.590000px;}
.y57{bottom:291.060000px;}
.y99{bottom:293.940000px;}
.y3a{bottom:294.015000px;}
.y75{bottom:296.250000px;}
.yae{bottom:299.775000px;}
.y32{bottom:302.910000px;}
.ybb{bottom:303.450000px;}
.y53{bottom:309.960000px;}
.yc7{bottom:309.990000px;}
.y55{bottom:312.660000px;}
.y7d{bottom:312.765000px;}
.y93{bottom:316.590000px;}
.y95{bottom:318.060000px;}
.yd8{bottom:320.550000px;}
.y97{bottom:320.940000px;}
.y31{bottom:325.770000px;}
.y6d{bottom:329.790000px;}
.yc8{bottom:333.720000px;}
.y21{bottom:341.130000px;}
.y30{bottom:342.150000px;}
.y92{bottom:343.590000px;}
.y4{bottom:353.310000px;}
.yba{bottom:353.880000px;}
.yc9{bottom:357.480000px;}
.y20{bottom:357.690000px;}
.y2f{bottom:358.710000px;}
.y74{bottom:360.720000px;}
.y39{bottom:363.135000px;}
.y2b{bottom:363.345000px;}
.yaf{bottom:366.375000px;}
.ya{bottom:367.815000px;}
.y7e{bottom:368.670000px;}
.y46{bottom:368.820000px;}
.y91{bottom:370.590000px;}
.yc2{bottom:371.265000px;}
.y6c{bottom:372.990000px;}
.y2e{bottom:375.090000px;}
.y89{bottom:375.120000px;}
.y1f{bottom:380.595000px;}
.y2a{bottom:381.165000px;}
.yca{bottom:381.240000px;}
.y2d{bottom:391.650000px;}
.y9{bottom:394.275000px;}
.y8c{bottom:395.100000px;}
.ycf{bottom:396.180000px;}
.y1e{bottom:396.975000px;}
.y29{bottom:397.725000px;}
.yd7{bottom:399.780000px;}
.y73{bottom:403.920000px;}
.yb9{bottom:404.280000px;}
.ycb{bottom:404.970000px;}
.y80{bottom:407.520000px;}
.y1d{bottom:413.535000px;}
.y28{bottom:414.105000px;}
.y6b{bottom:416.190000px;}
.yb1{bottom:417.420000px;}
.y3{bottom:418.110000px;}
.y86{bottom:418.470000px;}
.y8{bottom:420.555000px;}
.ycc{bottom:428.730000px;}
.y69{bottom:429.405000px;}
.y27{bottom:430.710000px;}
.y38{bottom:432.285000px;}
.y4a{bottom:433.800000px;}
.y1c{bottom:436.395000px;}
.y25{bottom:436.785000px;}
.y2c{bottom:437.250000px;}
.yc1{bottom:440.430000px;}
.ye{bottom:442.470000px;}
.y72{bottom:447.120000px;}
.y85{bottom:450.870000px;}
.ycd{bottom:452.445000px;}
.y1b{bottom:452.955000px;}
.y24{bottom:453.165000px;}
.yb8{bottom:454.680000px;}
.yd{bottom:459.030000px;}
.y6a{bottom:459.435000px;}
.y1a{bottom:469.335000px;}
.y23{bottom:469.725000px;}
.y4c{bottom:474.480000px;}
.yce{bottom:476.205000px;}
.y26{bottom:476.280000px;}
.yd6{bottom:478.980000px;}
.y8e{bottom:480.780000px;}
.y16{bottom:481.890000px;}
.y40{bottom:482.865000px;}
.y2{bottom:482.940000px;}
.y48{bottom:485.280000px;}
.y71{bottom:491.940000px;}
.y19{bottom:492.195000px;}
.y68{bottom:495.465000px;}
.y8b{bottom:496.980000px;}
.y15{bottom:498.270000px;}
.y37{bottom:501.405000px;}
.yb7{bottom:506.550000px;}
.y18{bottom:508.755000px;}
.yc0{bottom:509.550000px;}
.y14{bottom:514.875000px;}
.y3f{bottom:515.265000px;}
.y22{bottom:515.340000px;}
.y77{bottom:523.545000px;}
.y44{bottom:530.460000px;}
.y13{bottom:531.255000px;}
.y67{bottom:538.665000px;}
.y70{bottom:543.810000px;}
.y87{bottom:547.380000px;}
.y3e{bottom:547.665000px;}
.y1{bottom:547.740000px;}
.y12{bottom:547.815000px;}
.y17{bottom:554.370000px;}
.yd5{bottom:558.210000px;}
.yc{bottom:563.250000px;}
.ybf{bottom:567.180000px;}
.y36{bottom:570.525000px;}
.yb6{bottom:575.670000px;}
.yb{bottom:579.810000px;}
.y3d{bottom:580.065000px;}
.y66{bottom:581.910000px;}
.y6f{bottom:587.010000px;}
.y76{bottom:592.710000px;}
.y11{bottom:593.430000px;}
.y43{bottom:601.200000px;}
.ya6{bottom:611.355000px;}
.y3c{bottom:612.510000px;}
.y35{bottom:687.885000px;}
.y7{bottom:689.865000px;}
.y10{bottom:698.040000px;}
.h26{height:27.900000px;}
.h32{height:28.080000px;}
.ha{height:29.689453px;}
.h1f{height:43.390195px;}
.h6{height:49.284492px;}
.hb{height:49.403250px;}
.h10{height:54.360000px;}
.h15{height:61.423863px;}
.h11{height:62.211094px;}
.h21{height:69.473320px;}
.h1c{height:73.980000px;}
.h3{height:74.223633px;}
.h28{height:78.416016px;}
.h16{height:78.480000px;}
.h3a{height:78.520570px;}
.h5{height:78.973945px;}
.h1a{height:79.200000px;}
.h2f{height:79.740000px;}
.h19{height:79.920000px;}
.h18{height:85.500000px;}
.he{height:89.068359px;}
.hf{height:89.187117px;}
.h8{height:93.818672px;}
.h9{height:93.937430px;}
.h24{height:99.162773px;}
.h13{height:100.800000px;}
.h22{height:118.757812px;}
.h23{height:118.876570px;}
.h1d{height:124.380000px;}
.h37{height:138.352852px;}
.h1e{height:141.660000px;}
.h30{height:141.840000px;}
.hd{height:158.541680px;}
.hc{height:158.660438px;}
.h36{height:176.580000px;}
.h2b{height:177.660000px;}
.h1{height:178.136719px;}
.h2{height:178.255477px;}
.h4{height:197.850516px;}
.h14{height:203.580000px;}
.h35{height:203.760000px;}
.h2a{height:204.840000px;}
.h1b{height:214.560000px;}
.h33{height:216.720000px;}
.h3e{height:217.800000px;}
.h3f{height:217.920586px;}
.h7{height:218.039344px;}
.h27{height:218.160000px;}
.h34{height:230.760000px;}
.h29{height:231.840000px;}
.h3d{height:244.980000px;}
.h39{height:271.620000px;}
.h3c{height:272.160000px;}
.h3b{height:299.160000px;}
.h2d{height:304.380000px;}
.h12{height:377.640000px;}
.h2c{height:398.880000px;}
.h31{height:433.800000px;}
.h25{height:436.140000px;}
.h17{height:445.140000px;}
.h20{height:485.820000px;}
.h38{height:543.600000px;}
.h2e{height:671.940000px;}
.h0{height:810.000000px;}
.w9{width:53.820000px;}
.w4{width:68.400000px;}
.w5{width:68.580000px;}
.w6{width:75.960000px;}
.w8{width:80.820000px;}
.wf{width:81.000000px;}
.wa{width:83.700000px;}
.wb{width:123.840000px;}
.w1{width:124.560000px;}
.we{width:150.660000px;}
.w7{width:238.320000px;}
.w11{width:478.800000px;}
.w3{width:620.460000px;}
.wc{width:661.680000px;}
.w2{width:666.180000px;}
.wd{width:816.480000px;}
.w10{width:908.640000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x22{left:8.064000px;}
.x2e{left:9.900000px;}
.x34{left:16.485000px;}
.x2d{left:17.490000px;}
.x3b{left:24.984000px;}
.x2c{left:32.655000px;}
.x24{left:35.205000px;}
.x1d{left:64.800000px;}
.x20{left:66.024000px;}
.x43{left:85.680000px;}
.x21{left:89.280000px;}
.x28{left:91.548000px;}
.x7{left:93.168000px;}
.x1c{left:94.212000px;}
.x11{left:95.436000px;}
.x40{left:100.044000px;}
.x26{left:105.300000px;}
.x27{left:106.524000px;}
.x37{left:114.840000px;}
.x25{left:117.072000px;}
.x45{left:118.950000px;}
.x2{left:120.168000px;}
.x3a{left:123.300000px;}
.x39{left:125.568000px;}
.x44{left:130.395000px;}
.x29{left:132.048000px;}
.x2a{left:145.548000px;}
.x13{left:155.490000px;}
.x12{left:159.555000px;}
.x3{left:168.945000px;}
.x1{left:188.025000px;}
.x5{left:206.895000px;}
.x23{left:213.840000px;}
.x2b{left:216.720000px;}
.x4{left:220.605000px;}
.x4a{left:236.445000px;}
.x38{left:238.500000px;}
.xf{left:248.550000px;}
.x10{left:277.530000px;}
.x2f{left:279.720000px;}
.x3c{left:293.940000px;}
.x46{left:300.600000px;}
.x15{left:304.230000px;}
.x14{left:308.310000px;}
.x6{left:341.895000px;}
.x30{left:365.760000px;}
.x1f{left:372.240000px;}
.x48{left:384.990000px;}
.x3f{left:399.210000px;}
.x8{left:407.775000px;}
.xa{left:418.215000px;}
.xb{left:426.990000px;}
.x9{left:447.015000px;}
.x31{left:451.800000px;}
.x17{left:452.985000px;}
.x16{left:457.050000px;}
.x1e{left:499.860000px;}
.x36{left:502.950000px;}
.xe{left:517.470000px;}
.x32{left:538.020000px;}
.x49{left:549.720000px;}
.x41{left:569.340000px;}
.xc{left:589.755000px;}
.xd{left:596.775000px;}
.x19{left:601.815000px;}
.x18{left:605.880000px;}
.x3d{left:607.320000px;}
.x42{left:609.840000px;}
.x33{left:620.280000px;}
.x35{left:747.540000px;}
.x1b{left:750.570000px;}
.x1a{left:754.635000px;}
.x3e{left:849.960000px;}
.x47{left:919.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.485333pt;}
.ls20{letter-spacing:-0.377600pt;}
.ls8{letter-spacing:-0.213867pt;}
.ls1f{letter-spacing:-0.208000pt;}
.ls9{letter-spacing:-0.132800pt;}
.ls11{letter-spacing:-0.116800pt;}
.ls3{letter-spacing:-0.067733pt;}
.ls4{letter-spacing:-0.057600pt;}
.ls12{letter-spacing:-0.051840pt;}
.ls13{letter-spacing:-0.032000pt;}
.ls1e{letter-spacing:-0.021760pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.035840pt;}
.lsd{letter-spacing:0.089600pt;}
.lsc{letter-spacing:0.154880pt;}
.ls1c{letter-spacing:0.189333pt;}
.ls5{letter-spacing:0.244267pt;}
.ls2{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.370667pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.912000pt;}
.ls19{letter-spacing:1.498880pt;}
.ls1{letter-spacing:2.074880pt;}
.ls1a{letter-spacing:2.138880pt;}
.ls17{letter-spacing:22.618880pt;}
.ls14{letter-spacing:60.501333pt;}
.ls10{letter-spacing:60.884053pt;}
.ls1b{letter-spacing:75.098880pt;}
.lsa{letter-spacing:84.147200pt;}
.lsb{letter-spacing:84.192000pt;}
.ls18{letter-spacing:87.365547pt;}
.lsf{letter-spacing:99.200000pt;}
.ls16{letter-spacing:345.509120pt;}
.ws18{word-spacing:-53.082880pt;}
.ws13{word-spacing:-34.277120pt;}
.ws12{word-spacing:-33.890453pt;}
.ws17{word-spacing:-33.701120pt;}
.ws14{word-spacing:-33.679360pt;}
.ws15{word-spacing:-33.493120pt;}
.ws16{word-spacing:-33.323520pt;}
.wsa{word-spacing:-22.882048pt;}
.ws3{word-spacing:-22.853120pt;}
.ws2{word-spacing:-22.785387pt;}
.ws9{word-spacing:-22.749248pt;}
.ws11{word-spacing:-21.664000pt;}
.wse{word-spacing:-16.922880pt;}
.ws7{word-spacing:-12.917120pt;}
.ws6{word-spacing:-12.375787pt;}
.ws1{word-spacing:-12.277120pt;}
.ws5{word-spacing:-12.249387pt;}
.wsc{word-spacing:-12.094720pt;}
.wsd{word-spacing:-12.069888pt;}
.wsb{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.953280pt;}
.ws4{word-spacing:-11.947520pt;}
.wsf{word-spacing:-11.917248pt;}
.ws8{word-spacing:-11.791253pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-1063.642667pt;}
._1d{margin-left:-14.968533pt;}
._15{margin-left:-12.690432pt;}
._2{margin-left:-4.032000pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.344000pt;}
._3{width:0.949333pt;}
._c{width:1.882880pt;}
._14{width:2.783147pt;}
._5{width:4.585600pt;}
._a{width:6.160640pt;}
._9{width:8.149760pt;}
._e{width:9.120640pt;}
._1f{width:16.152320pt;}
._b{width:18.320640pt;}
._12{width:20.058027pt;}
._16{width:22.221653pt;}
._17{width:23.254187pt;}
._1a{width:37.162240pt;}
._1b{width:38.410667pt;}
._10{width:43.495040pt;}
._7{width:53.322240pt;}
._8{width:54.519040pt;}
._6{width:55.886080pt;}
._1c{width:74.773120pt;}
._1e{width:75.775147pt;}
._f{width:79.760640pt;}
._d{width:86.160640pt;}
._18{width:87.208107pt;}
._19{width:88.404907pt;}
._13{width:146.146987pt;}
._11{width:285.965440pt;}
._20{width:345.381120pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fsf{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs7{font-size:101.120000pt;}
.fs8{font-size:101.248000pt;}
.fs12{font-size:106.880000pt;}
.fs10{font-size:128.000000pt;}
.fs11{font-size:128.128000pt;}
.fs13{font-size:149.120000pt;}
.fsc{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs0{font-size:192.000000pt;}
.fs1{font-size:192.128000pt;}
.fs3{font-size:213.248000pt;}
.fs14{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:12.093333pt;}
.yb0{bottom:12.226667pt;}
.y45{bottom:19.426667pt;}
.y88{bottom:19.520000pt;}
.y5c{bottom:28.093333pt;}
.y9e{bottom:28.133333pt;}
.y79{bottom:29.440000pt;}
.yaa{bottom:29.573333pt;}
.y4d{bottom:30.173333pt;}
.y8f{bottom:30.213333pt;}
.y9a{bottom:30.426667pt;}
.y58{bottom:30.493333pt;}
.y98{bottom:30.693333pt;}
.y56{bottom:30.813333pt;}
.ya4{bottom:32.000000pt;}
.y54{bottom:33.213333pt;}
.y96{bottom:33.253333pt;}
.y62{bottom:39.040000pt;}
.y49{bottom:40.066667pt;}
.y61{bottom:50.173333pt;}
.ya3{bottom:50.266667pt;}
.y5e{bottom:50.493333pt;}
.ya0{bottom:50.533333pt;}
.y60{bottom:66.333333pt;}
.ya2{bottom:66.426667pt;}
.y7a{bottom:79.133333pt;}
.y4b{bottom:85.826667pt;}
.yab{bottom:88.800000pt;}
.y9c{bottom:90.586667pt;}
.y5a{bottom:90.653333pt;}
.yc3{bottom:118.400000pt;}
.ybe{bottom:119.936000pt;}
.y90{bottom:122.720000pt;}
.y7b{bottom:128.866667pt;}
.y8d{bottom:130.626667pt;}
.y52{bottom:143.746667pt;}
.yb5{bottom:144.186667pt;}
.y84{bottom:145.146667pt;}
.yac{bottom:148.000000pt;}
.ya8{bottom:156.480000pt;}
.y47{bottom:163.106667pt;}
.yb2{bottom:167.706667pt;}
.y51{bottom:167.746667pt;}
.yb4{bottom:168.320000pt;}
.y81{bottom:168.960000pt;}
.y83{bottom:169.280000pt;}
.y8a{bottom:172.640000pt;}
.y78{bottom:176.480000pt;}
.ya1{bottom:176.960000pt;}
.y7c{bottom:178.586667pt;}
.ya7{bottom:178.880000pt;}
.y65{bottom:179.173333pt;}
.ybd{bottom:180.133333pt;}
.yd4{bottom:180.933333pt;}
.y5f{bottom:184.000000pt;}
.ya9{bottom:186.080000pt;}
.y50{bottom:191.746667pt;}
.yb3{bottom:192.453333pt;}
.y82{bottom:193.373333pt;}
.y59{bottom:198.560000pt;}
.y3b{bottom:199.866667pt;}
.y9b{bottom:201.120000pt;}
.y64{bottom:201.573333pt;}
.yd3{bottom:205.026667pt;}
.y4e{bottom:206.720000pt;}
.yad{bottom:207.226667pt;}
.y63{bottom:211.133333pt;}
.ya5{bottom:211.226667pt;}
.yc4{bottom:212.226667pt;}
.yd9{bottom:214.533333pt;}
.y6{bottom:215.653333pt;}
.y4f{bottom:215.746667pt;}
.yd0{bottom:216.506667pt;}
.y9f{bottom:216.960000pt;}
.y5d{bottom:219.200000pt;}
.ybc{bottom:224.933333pt;}
.yf{bottom:227.040000pt;}
.y42{bottom:228.293333pt;}
.yd2{bottom:229.146667pt;}
.yc5{bottom:233.346667pt;}
.y6e{bottom:234.400000pt;}
.y5{bottom:234.853333pt;}
.y9d{bottom:239.360000pt;}
.y34{bottom:239.773333pt;}
.y5b{bottom:241.600000pt;}
.yd1{bottom:253.280000pt;}
.yc6{bottom:254.426667pt;}
.y33{bottom:254.493333pt;}
.y41{bottom:257.093333pt;}
.y94{bottom:257.413333pt;}
.y57{bottom:258.720000pt;}
.y99{bottom:261.280000pt;}
.y3a{bottom:261.346667pt;}
.y75{bottom:263.333333pt;}
.yae{bottom:266.466667pt;}
.y32{bottom:269.253333pt;}
.ybb{bottom:269.733333pt;}
.y53{bottom:275.520000pt;}
.yc7{bottom:275.546667pt;}
.y55{bottom:277.920000pt;}
.y7d{bottom:278.013333pt;}
.y93{bottom:281.413333pt;}
.y95{bottom:282.720000pt;}
.yd8{bottom:284.933333pt;}
.y97{bottom:285.280000pt;}
.y31{bottom:289.573333pt;}
.y6d{bottom:293.146667pt;}
.yc8{bottom:296.640000pt;}
.y21{bottom:303.226667pt;}
.y30{bottom:304.133333pt;}
.y92{bottom:305.413333pt;}
.y4{bottom:314.053333pt;}
.yba{bottom:314.560000pt;}
.yc9{bottom:317.760000pt;}
.y20{bottom:317.946667pt;}
.y2f{bottom:318.853333pt;}
.y74{bottom:320.640000pt;}
.y39{bottom:322.786667pt;}
.y2b{bottom:322.973333pt;}
.yaf{bottom:325.666667pt;}
.ya{bottom:326.946667pt;}
.y7e{bottom:327.706667pt;}
.y46{bottom:327.840000pt;}
.y91{bottom:329.413333pt;}
.yc2{bottom:330.013333pt;}
.y6c{bottom:331.546667pt;}
.y2e{bottom:333.413333pt;}
.y89{bottom:333.440000pt;}
.y1f{bottom:338.306667pt;}
.y2a{bottom:338.813333pt;}
.yca{bottom:338.880000pt;}
.y2d{bottom:348.133333pt;}
.y9{bottom:350.466667pt;}
.y8c{bottom:351.200000pt;}
.ycf{bottom:352.160000pt;}
.y1e{bottom:352.866667pt;}
.y29{bottom:353.533333pt;}
.yd7{bottom:355.360000pt;}
.y73{bottom:359.040000pt;}
.yb9{bottom:359.360000pt;}
.ycb{bottom:359.973333pt;}
.y80{bottom:362.240000pt;}
.y1d{bottom:367.586667pt;}
.y28{bottom:368.093333pt;}
.y6b{bottom:369.946667pt;}
.yb1{bottom:371.040000pt;}
.y3{bottom:371.653333pt;}
.y86{bottom:371.973333pt;}
.y8{bottom:373.826667pt;}
.ycc{bottom:381.093333pt;}
.y69{bottom:381.693333pt;}
.y27{bottom:382.853333pt;}
.y38{bottom:384.253333pt;}
.y4a{bottom:385.600000pt;}
.y1c{bottom:387.906667pt;}
.y25{bottom:388.253333pt;}
.y2c{bottom:388.666667pt;}
.yc1{bottom:391.493333pt;}
.ye{bottom:393.306667pt;}
.y72{bottom:397.440000pt;}
.y85{bottom:400.773333pt;}
.ycd{bottom:402.173333pt;}
.y1b{bottom:402.626667pt;}
.y24{bottom:402.813333pt;}
.yb8{bottom:404.160000pt;}
.yd{bottom:408.026667pt;}
.y6a{bottom:408.386667pt;}
.y1a{bottom:417.186667pt;}
.y23{bottom:417.533333pt;}
.y4c{bottom:421.760000pt;}
.yce{bottom:423.293333pt;}
.y26{bottom:423.360000pt;}
.yd6{bottom:425.760000pt;}
.y8e{bottom:427.360000pt;}
.y16{bottom:428.346667pt;}
.y40{bottom:429.213333pt;}
.y2{bottom:429.280000pt;}
.y48{bottom:431.360000pt;}
.y71{bottom:437.280000pt;}
.y19{bottom:437.506667pt;}
.y68{bottom:440.413333pt;}
.y8b{bottom:441.760000pt;}
.y15{bottom:442.906667pt;}
.y37{bottom:445.693333pt;}
.yb7{bottom:450.266667pt;}
.y18{bottom:452.226667pt;}
.yc0{bottom:452.933333pt;}
.y14{bottom:457.666667pt;}
.y3f{bottom:458.013333pt;}
.y22{bottom:458.080000pt;}
.y77{bottom:465.373333pt;}
.y44{bottom:471.520000pt;}
.y13{bottom:472.226667pt;}
.y67{bottom:478.813333pt;}
.y70{bottom:483.386667pt;}
.y87{bottom:486.560000pt;}
.y3e{bottom:486.813333pt;}
.y1{bottom:486.880000pt;}
.y12{bottom:486.946667pt;}
.y17{bottom:492.773333pt;}
.yd5{bottom:496.186667pt;}
.yc{bottom:500.666667pt;}
.ybf{bottom:504.160000pt;}
.y36{bottom:507.133333pt;}
.yb6{bottom:511.706667pt;}
.yb{bottom:515.386667pt;}
.y3d{bottom:515.613333pt;}
.y66{bottom:517.253333pt;}
.y6f{bottom:521.786667pt;}
.y76{bottom:526.853333pt;}
.y11{bottom:527.493333pt;}
.y43{bottom:534.400000pt;}
.ya6{bottom:543.426667pt;}
.y3c{bottom:544.453333pt;}
.y35{bottom:611.453333pt;}
.y7{bottom:613.213333pt;}
.y10{bottom:620.480000pt;}
.h26{height:24.800000pt;}
.h32{height:24.960000pt;}
.ha{height:26.390625pt;}
.h1f{height:38.569063pt;}
.h6{height:43.808438pt;}
.hb{height:43.914000pt;}
.h10{height:48.320000pt;}
.h15{height:54.598989pt;}
.h11{height:55.298750pt;}
.h21{height:61.754062pt;}
.h1c{height:65.760000pt;}
.h3{height:65.976562pt;}
.h28{height:69.703125pt;}
.h16{height:69.760000pt;}
.h3a{height:69.796062pt;}
.h5{height:70.199062pt;}
.h1a{height:70.400000pt;}
.h2f{height:70.880000pt;}
.h19{height:71.040000pt;}
.h18{height:76.000000pt;}
.he{height:79.171875pt;}
.hf{height:79.277438pt;}
.h8{height:83.394375pt;}
.h9{height:83.499938pt;}
.h24{height:88.144687pt;}
.h13{height:89.600000pt;}
.h22{height:105.562500pt;}
.h23{height:105.668063pt;}
.h1d{height:110.560000pt;}
.h37{height:122.980312pt;}
.h1e{height:125.920000pt;}
.h30{height:126.080000pt;}
.hd{height:140.925938pt;}
.hc{height:141.031500pt;}
.h36{height:156.960000pt;}
.h2b{height:157.920000pt;}
.h1{height:158.343750pt;}
.h2{height:158.449312pt;}
.h4{height:175.867125pt;}
.h14{height:180.960000pt;}
.h35{height:181.120000pt;}
.h2a{height:182.080000pt;}
.h1b{height:190.720000pt;}
.h33{height:192.640000pt;}
.h3e{height:193.600000pt;}
.h3f{height:193.707188pt;}
.h7{height:193.812750pt;}
.h27{height:193.920000pt;}
.h34{height:205.120000pt;}
.h29{height:206.080000pt;}
.h3d{height:217.760000pt;}
.h39{height:241.440000pt;}
.h3c{height:241.920000pt;}
.h3b{height:265.920000pt;}
.h2d{height:270.560000pt;}
.h12{height:335.680000pt;}
.h2c{height:354.560000pt;}
.h31{height:385.600000pt;}
.h25{height:387.680000pt;}
.h17{height:395.680000pt;}
.h20{height:431.840000pt;}
.h38{height:483.200000pt;}
.h2e{height:597.280000pt;}
.h0{height:720.000000pt;}
.w9{width:47.840000pt;}
.w4{width:60.800000pt;}
.w5{width:60.960000pt;}
.w6{width:67.520000pt;}
.w8{width:71.840000pt;}
.wf{width:72.000000pt;}
.wa{width:74.400000pt;}
.wb{width:110.080000pt;}
.w1{width:110.720000pt;}
.we{width:133.920000pt;}
.w7{width:211.840000pt;}
.w11{width:425.600000pt;}
.w3{width:551.520000pt;}
.wc{width:588.160000pt;}
.w2{width:592.160000pt;}
.wd{width:725.760000pt;}
.w10{width:807.680000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.168000pt;}
.x2e{left:8.800000pt;}
.x34{left:14.653333pt;}
.x2d{left:15.546667pt;}
.x3b{left:22.208000pt;}
.x2c{left:29.026667pt;}
.x24{left:31.293333pt;}
.x1d{left:57.600000pt;}
.x20{left:58.688000pt;}
.x43{left:76.160000pt;}
.x21{left:79.360000pt;}
.x28{left:81.376000pt;}
.x7{left:82.816000pt;}
.x1c{left:83.744000pt;}
.x11{left:84.832000pt;}
.x40{left:88.928000pt;}
.x26{left:93.600000pt;}
.x27{left:94.688000pt;}
.x37{left:102.080000pt;}
.x25{left:104.064000pt;}
.x45{left:105.733333pt;}
.x2{left:106.816000pt;}
.x3a{left:109.600000pt;}
.x39{left:111.616000pt;}
.x44{left:115.906667pt;}
.x29{left:117.376000pt;}
.x2a{left:129.376000pt;}
.x13{left:138.213333pt;}
.x12{left:141.826667pt;}
.x3{left:150.173333pt;}
.x1{left:167.133333pt;}
.x5{left:183.906667pt;}
.x23{left:190.080000pt;}
.x2b{left:192.640000pt;}
.x4{left:196.093333pt;}
.x4a{left:210.173333pt;}
.x38{left:212.000000pt;}
.xf{left:220.933333pt;}
.x10{left:246.693333pt;}
.x2f{left:248.640000pt;}
.x3c{left:261.280000pt;}
.x46{left:267.200000pt;}
.x15{left:270.426667pt;}
.x14{left:274.053333pt;}
.x6{left:303.906667pt;}
.x30{left:325.120000pt;}
.x1f{left:330.880000pt;}
.x48{left:342.213333pt;}
.x3f{left:354.853333pt;}
.x8{left:362.466667pt;}
.xa{left:371.746667pt;}
.xb{left:379.546667pt;}
.x9{left:397.346667pt;}
.x31{left:401.600000pt;}
.x17{left:402.653333pt;}
.x16{left:406.266667pt;}
.x1e{left:444.320000pt;}
.x36{left:447.066667pt;}
.xe{left:459.973333pt;}
.x32{left:478.240000pt;}
.x49{left:488.640000pt;}
.x41{left:506.080000pt;}
.xc{left:524.226667pt;}
.xd{left:530.466667pt;}
.x19{left:534.946667pt;}
.x18{left:538.560000pt;}
.x3d{left:539.840000pt;}
.x42{left:542.080000pt;}
.x33{left:551.360000pt;}
.x35{left:664.480000pt;}
.x1b{left:667.173333pt;}
.x1a{left:670.786667pt;}
.x3e{left:755.520000pt;}
.x47{left:817.440000pt;}
}




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