
    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_a59863b5222b86bc4c76ba07.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d90683cf7cf4e61cbac721b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_970cccae2a8d29406fa4e678.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_88f6f470f67a281eafbd9140.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_30d6714a5729262814affce0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-3.426000px;}
.ls21{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.696000px;}
.ls20{letter-spacing:-0.576600px;}
.ls11{letter-spacing:-0.544800px;}
.ls5{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.371400px;}
.ls24{letter-spacing:-0.326400px;}
.ls6{letter-spacing:-0.310800px;}
.ls1f{letter-spacing:-0.301200px;}
.ls28{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.226200px;}
.ls29{letter-spacing:-0.214800px;}
.ls27{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls1a{letter-spacing:-0.069600px;}
.ls2f{letter-spacing:-0.064800px;}
.ls13{letter-spacing:-0.058320px;}
.ls1d{letter-spacing:-0.041040px;}
.ls25{letter-spacing:-0.001440px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028800px;}
.ls3{letter-spacing:0.038880px;}
.ls8{letter-spacing:0.055440px;}
.ls1c{letter-spacing:0.060480px;}
.ls16{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.066000px;}
.ls17{letter-spacing:0.075000px;}
.ls1e{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.174240px;}
.ls1b{letter-spacing:0.175200px;}
.ls10{letter-spacing:0.186600px;}
.ls9{letter-spacing:0.210000px;}
.ls22{letter-spacing:0.306000px;}
.ls26{letter-spacing:0.309000px;}
.lsd{letter-spacing:0.313800px;}
.ls1{letter-spacing:0.417000px;}
.ls23{letter-spacing:0.433440px;}
.ls14{letter-spacing:0.479400px;}
.ls2a{letter-spacing:0.479520px;}
.lsa{letter-spacing:0.493800px;}
.ls2e{letter-spacing:0.654000px;}
.ls2c{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.894240px;}
.ls0{letter-spacing:1.054560px;}
.ls2d{letter-spacing:12.186720px;}
.ls2b{letter-spacing:42.426720px;}
.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;}
}
.ws5{word-spacing:-21.697200px;}
.ws6{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws7{word-spacing:-14.999040px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.159760px;}
.ws17{word-spacing:-13.814760px;}
.ws1a{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.692360px;}
.ws11{word-spacing:-13.680960px;}
.wse{word-spacing:-13.580760px;}
.ws8{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.504320px;}
.ws12{word-spacing:-13.464720px;}
.wsd{word-spacing:-13.447440px;}
.ws1b{word-spacing:-13.440960px;}
.ws10{word-spacing:-13.436160px;}
.ws18{word-spacing:-13.290960px;}
.ws13{word-spacing:-13.204560px;}
.wsc{word-spacing:-13.134360px;}
.ws14{word-spacing:-12.929160px;}
.ws9{word-spacing:-12.809760px;}
.ws15{word-spacing:-12.785760px;}
.wsf{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._1f{margin-left:-532.558560px;}
._21{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-299.841120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._14{margin-left:-232.410240px;}
._19{margin-left:-222.937200px;}
._18{margin-left:-219.434640px;}
._11{margin-left:-202.146240px;}
._1a{margin-left:-199.946880px;}
._23{margin-left:-192.608640px;}
._22{margin-left:-188.893440px;}
._10{margin-left:-171.054720px;}
._28{margin-left:-168.582240px;}
._f{margin-left:-165.490560px;}
._25{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._27{margin-left:-142.858800px;}
._12{margin-left:-137.987040px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-116.242560px;}
._26{margin-left:-110.054880px;}
._1e{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._15{margin-left:-82.131840px;}
._17{margin-left:-66.703680px;}
._16{margin-left:-49.583280px;}
._24{margin-left:-33.796560px;}
._1b{margin-left:-30.741360px;}
._3f{margin-left:-7.599000px;}
._2d{margin-left:-5.544000px;}
._29{margin-left:-4.152120px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._20{width:1.082160px;}
._32{width:2.119680px;}
._2c{width:3.152640px;}
._2e{width:4.212960px;}
._31{width:5.273040px;}
._34{width:6.636960px;}
._33{width:8.470080px;}
._37{width:10.262880px;}
._35{width:11.995920px;}
._2f{width:14.678160px;}
._30{width:15.866160px;}
._36{width:17.099520px;}
._38{width:18.704880px;}
._39{width:20.183040px;}
._42{width:22.489440px;}
._2a{width:36.365040px;}
._2b{width:38.249040px;}
._40{width:42.348240px;}
._41{width:44.370960px;}
._3a{width:53.127360px;}
._3c{width:109.264800px;}
._3d{width:110.301120px;}
._3b{width:152.013600px;}
._3e{width:220.033440px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs3{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:6.660000px;}
.yc5{bottom:17.100000px;}
.yb9{bottom:17.280000px;}
.yba{bottom:27.720000px;}
.y6{bottom:61.560000px;}
.y9f{bottom:91.260000px;}
.y31{bottom:91.980000px;}
.y100{bottom:99.900000px;}
.ycd{bottom:100.440000px;}
.yb5{bottom:106.920000px;}
.y4d{bottom:111.240000px;}
.y9e{bottom:112.320000px;}
.y30{bottom:113.040000px;}
.yb4{bottom:127.980000px;}
.ycc{bottom:128.880000px;}
.y77{bottom:130.500000px;}
.y4c{bottom:132.300000px;}
.y9d{bottom:133.380000px;}
.y2f{bottom:134.100000px;}
.yb3{bottom:149.040000px;}
.ycb{bottom:149.940000px;}
.y76{bottom:151.560000px;}
.y4b{bottom:153.390000px;}
.y9c{bottom:154.470000px;}
.y2e{bottom:155.190000px;}
.yb2{bottom:170.130000px;}
.yca{bottom:171.030000px;}
.y75{bottom:172.650000px;}
.y4a{bottom:174.450000px;}
.y9b{bottom:175.530000px;}
.y2d{bottom:176.250000px;}
.yff{bottom:178.590000px;}
.yb1{bottom:191.190000px;}
.yc9{bottom:192.090000px;}
.y74{bottom:193.710000px;}
.y49{bottom:195.510000px;}
.y9a{bottom:196.590000px;}
.y2c{bottom:197.310000px;}
.yfe{bottom:199.650000px;}
.yb0{bottom:212.250000px;}
.yc8{bottom:213.150000px;}
.y73{bottom:214.770000px;}
.y48{bottom:216.570000px;}
.y99{bottom:217.650000px;}
.y2b{bottom:218.370000px;}
.yfd{bottom:220.710000px;}
.yc7{bottom:228.270000px;}
.yaf{bottom:233.310000px;}
.y72{bottom:235.830000px;}
.y47{bottom:237.630000px;}
.y98{bottom:238.710000px;}
.y2a{bottom:239.430000px;}
.yfc{bottom:241.770000px;}
.yc6{bottom:250.050000px;}
.yae{bottom:254.370000px;}
.y71{bottom:256.890000px;}
.y46{bottom:258.690000px;}
.y97{bottom:259.770000px;}
.y29{bottom:260.490000px;}
.yfb{bottom:262.830000px;}
.yc4{bottom:272.010000px;}
.yad{bottom:275.430000px;}
.y70{bottom:277.950000px;}
.y45{bottom:279.750000px;}
.y96{bottom:280.830000px;}
.y28{bottom:281.550000px;}
.yfa{bottom:283.890000px;}
.yac{bottom:296.490000px;}
.y6f{bottom:299.010000px;}
.y44{bottom:300.810000px;}
.y95{bottom:301.890000px;}
.y27{bottom:302.610000px;}
.yf9{bottom:304.950000px;}
.yc3{bottom:314.850000px;}
.yab{bottom:317.550000px;}
.y6e{bottom:320.070000px;}
.y43{bottom:321.870000px;}
.y94{bottom:322.950000px;}
.y26{bottom:323.670000px;}
.yf8{bottom:326.010000px;}
.yaa{bottom:338.610000px;}
.y6d{bottom:341.130000px;}
.y42{bottom:342.930000px;}
.yc2{bottom:343.290000px;}
.y93{bottom:344.010000px;}
.y25{bottom:344.730000px;}
.yf7{bottom:347.070000px;}
.ya9{bottom:359.670000px;}
.y41{bottom:360.030000px;}
.y6c{bottom:362.190000px;}
.yc1{bottom:364.350000px;}
.y92{bottom:365.070000px;}
.y24{bottom:365.790000px;}
.yf6{bottom:368.130000px;}
.ya8{bottom:376.590000px;}
.yc0{bottom:385.410000px;}
.y91{bottom:386.130000px;}
.y23{bottom:386.850000px;}
.yf5{bottom:389.190000px;}
.y6b{bottom:401.295000px;}
.ybf{bottom:406.515000px;}
.y90{bottom:407.235000px;}
.y22{bottom:407.955000px;}
.yf4{bottom:410.295000px;}
.y6a{bottom:422.355000px;}
.ybe{bottom:427.575000px;}
.y8f{bottom:428.295000px;}
.y21{bottom:429.015000px;}
.yf3{bottom:431.355000px;}
.ybd{bottom:442.695000px;}
.y69{bottom:443.415000px;}
.y8e{bottom:449.355000px;}
.y20{bottom:450.075000px;}
.yf2{bottom:452.415000px;}
.y68{bottom:464.475000px;}
.y8d{bottom:470.415000px;}
.y1f{bottom:473.475000px;}
.y67{bottom:485.535000px;}
.ybc{bottom:486.255000px;}
.y8c{bottom:491.475000px;}
.yf1{bottom:494.535000px;}
.y1e{bottom:503.355000px;}
.y66{bottom:506.595000px;}
.yb8{bottom:508.035000px;}
.y8b{bottom:512.535000px;}
.yf0{bottom:515.595000px;}
.y1d{bottom:524.415000px;}
.y65{bottom:527.655000px;}
.y8a{bottom:533.595000px;}
.yef{bottom:536.655000px;}
.y1c{bottom:545.475000px;}
.y64{bottom:548.715000px;}
.y89{bottom:554.655000px;}
.yb7{bottom:557.715000px;}
.y1b{bottom:566.535000px;}
.y63{bottom:569.775000px;}
.y88{bottom:575.715000px;}
.yb6{bottom:578.775000px;}
.y1a{bottom:587.595000px;}
.y62{bottom:590.835000px;}
.y87{bottom:596.775000px;}
.yee{bottom:599.835000px;}
.y19{bottom:608.655000px;}
.y61{bottom:611.895000px;}
.y86{bottom:617.835000px;}
.yed{bottom:620.895000px;}
.y18{bottom:629.715000px;}
.y60{bottom:632.775000px;}
.y85{bottom:638.895000px;}
.yec{bottom:641.775000px;}
.y17{bottom:650.805000px;}
.y5f{bottom:653.865000px;}
.y84{bottom:659.805000px;}
.ye3{bottom:659.985000px;}
.yeb{bottom:662.865000px;}
.y16{bottom:671.865000px;}
.y5e{bottom:674.925000px;}
.y83{bottom:680.865000px;}
.ye2{bottom:681.045000px;}
.yea{bottom:683.925000px;}
.y15{bottom:692.925000px;}
.y5d{bottom:695.985000px;}
.y82{bottom:701.925000px;}
.ye1{bottom:702.105000px;}
.ye9{bottom:704.985000px;}
.y14{bottom:713.985000px;}
.y5c{bottom:717.045000px;}
.y81{bottom:722.985000px;}
.ye0{bottom:723.165000px;}
.ye8{bottom:726.045000px;}
.y13{bottom:735.045000px;}
.y5b{bottom:738.105000px;}
.y80{bottom:744.045000px;}
.ydf{bottom:744.225000px;}
.ye7{bottom:747.105000px;}
.y12{bottom:756.105000px;}
.y5a{bottom:759.165000px;}
.y7f{bottom:765.105000px;}
.yde{bottom:765.285000px;}
.ye6{bottom:768.165000px;}
.y11{bottom:777.165000px;}
.y59{bottom:780.225000px;}
.y7e{bottom:786.165000px;}
.ydd{bottom:786.345000px;}
.ye5{bottom:789.225000px;}
.y10{bottom:798.225000px;}
.y7d{bottom:807.225000px;}
.ydc{bottom:807.405000px;}
.y58{bottom:810.285000px;}
.yf{bottom:819.285000px;}
.y7c{bottom:828.285000px;}
.ydb{bottom:828.465000px;}
.y57{bottom:831.345000px;}
.ye{bottom:840.345000px;}
.y7b{bottom:849.345000px;}
.yda{bottom:849.525000px;}
.y56{bottom:852.405000px;}
.yd{bottom:861.405000px;}
.y7a{bottom:870.405000px;}
.y55{bottom:873.465000px;}
.y40{bottom:882.465000px;}
.yc{bottom:884.625000px;}
.yd9{bottom:888.585000px;}
.y79{bottom:891.465000px;}
.y54{bottom:894.525000px;}
.y3f{bottom:903.570000px;}
.yb{bottom:905.730000px;}
.yd8{bottom:909.690000px;}
.y78{bottom:912.570000px;}
.y53{bottom:915.630000px;}
.ya7{bottom:924.630000px;}
.ya{bottom:927.690000px;}
.yd7{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.y52{bottom:936.690000px;}
.ya6{bottom:945.690000px;}
.y9{bottom:950.010000px;}
.yd6{bottom:951.810000px;}
.y3d{bottom:954.690000px;}
.y51{bottom:957.750000px;}
.ya5{bottom:966.750000px;}
.yd5{bottom:972.870000px;}
.y8{bottom:975.210000px;}
.y3c{bottom:975.750000px;}
.y50{bottom:978.810000px;}
.ya4{bottom:987.810000px;}
.yd4{bottom:993.930000px;}
.y3b{bottom:996.810000px;}
.y4f{bottom:999.870000px;}
.y7{bottom:1008.870000px;}
.yd3{bottom:1014.990000px;}
.y3a{bottom:1017.870000px;}
.y4e{bottom:1020.930000px;}
.ya3{bottom:1029.930000px;}
.yd2{bottom:1036.050000px;}
.y39{bottom:1038.930000px;}
.ye4{bottom:1041.990000px;}
.y5{bottom:1049.190000px;}
.ya2{bottom:1050.990000px;}
.yd1{bottom:1057.110000px;}
.y38{bottom:1059.990000px;}
.ya1{bottom:1072.050000px;}
.yd0{bottom:1072.230000px;}
.y37{bottom:1081.050000px;}
.y4{bottom:1081.410000px;}
.ya0{bottom:1093.110000px;}
.y36{bottom:1102.110000px;}
.y3{bottom:1113.630000px;}
.ycf{bottom:1115.070000px;}
.y35{bottom:1123.170000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1145.670000px;}
.yce{bottom:1157.940000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h9{height:21.060000px;}
.h8{height:42.120000px;}
.ha{height:42.156000px;}
.h7{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:174.450000px;}
.w5{width:174.600000px;}
.w3{width:174.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x6{left:53.999987px;}
.x9{left:56.339987px;}
.x8{left:60.659987px;}
.x13{left:80.999987px;}
.x10{left:96.336000px;}
.x14{left:108.035987px;}
.xb{left:137.736000px;}
.x5{left:159.689987px;}
.x3{left:271.514987px;}
.xd{left:313.095000px;}
.xa{left:337.214987px;}
.x2{left:350.534987px;}
.x4{left:418.214987px;}
.x11{left:446.865000px;}
.x1{left:478.544987px;}
.xe{left:488.445000px;}
.x12{left:622.185000px;}
.xf{left:663.810000px;}
.x7{left:797.549987px;}
.x15{left:839.339987px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-3.045333pt;}
.ls21{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.618667pt;}
.ls20{letter-spacing:-0.512533pt;}
.ls11{letter-spacing:-0.484267pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.330133pt;}
.ls24{letter-spacing:-0.290133pt;}
.ls6{letter-spacing:-0.276267pt;}
.ls1f{letter-spacing:-0.267733pt;}
.ls28{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls29{letter-spacing:-0.190933pt;}
.ls27{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls1a{letter-spacing:-0.061867pt;}
.ls2f{letter-spacing:-0.057600pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls1d{letter-spacing:-0.036480pt;}
.ls25{letter-spacing:-0.001280pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.025600pt;}
.ls3{letter-spacing:0.034560pt;}
.ls8{letter-spacing:0.049280pt;}
.ls1c{letter-spacing:0.053760pt;}
.ls16{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.058667pt;}
.ls17{letter-spacing:0.066667pt;}
.ls1e{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.154880pt;}
.ls1b{letter-spacing:0.155733pt;}
.ls10{letter-spacing:0.165867pt;}
.ls9{letter-spacing:0.186667pt;}
.ls22{letter-spacing:0.272000pt;}
.ls26{letter-spacing:0.274667pt;}
.lsd{letter-spacing:0.278933pt;}
.ls1{letter-spacing:0.370667pt;}
.ls23{letter-spacing:0.385280pt;}
.ls14{letter-spacing:0.426133pt;}
.ls2a{letter-spacing:0.426240pt;}
.lsa{letter-spacing:0.438933pt;}
.ls2e{letter-spacing:0.581333pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.794880pt;}
.ls0{letter-spacing:0.937387pt;}
.ls2d{letter-spacing:10.832640pt;}
.ls2b{letter-spacing:37.712640pt;}
.ws5{word-spacing:-19.286400pt;}
.ws6{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws7{word-spacing:-13.332480pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.586453pt;}
.ws17{word-spacing:-12.279787pt;}
.ws1a{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.170987pt;}
.ws11{word-spacing:-12.160853pt;}
.wse{word-spacing:-12.071787pt;}
.ws8{word-spacing:-12.005120pt;}
.ws16{word-spacing:-12.003840pt;}
.ws12{word-spacing:-11.968640pt;}
.wsd{word-spacing:-11.953280pt;}
.ws1b{word-spacing:-11.947520pt;}
.ws10{word-spacing:-11.943253pt;}
.ws18{word-spacing:-11.814187pt;}
.ws13{word-spacing:-11.737387pt;}
.wsc{word-spacing:-11.674987pt;}
.ws14{word-spacing:-11.492587pt;}
.ws9{word-spacing:-11.386453pt;}
.ws15{word-spacing:-11.365120pt;}
.wsf{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._1f{margin-left:-473.385387pt;}
._21{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-266.525440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._14{margin-left:-206.586880pt;}
._19{margin-left:-198.166400pt;}
._18{margin-left:-195.053013pt;}
._11{margin-left:-179.685547pt;}
._1a{margin-left:-177.730560pt;}
._23{margin-left:-171.207680pt;}
._22{margin-left:-167.905280pt;}
._10{margin-left:-152.048640pt;}
._28{margin-left:-149.850880pt;}
._f{margin-left:-147.102720pt;}
._25{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._27{margin-left:-126.985600pt;}
._12{margin-left:-122.655147pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-103.326720pt;}
._26{margin-left:-97.826560pt;}
._1e{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._15{margin-left:-73.006080pt;}
._17{margin-left:-59.292160pt;}
._16{margin-left:-44.074027pt;}
._24{margin-left:-30.041387pt;}
._1b{margin-left:-27.325653pt;}
._3f{margin-left:-6.754667pt;}
._2d{margin-left:-4.928000pt;}
._29{margin-left:-3.690773pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._20{width:0.961920pt;}
._32{width:1.884160pt;}
._2c{width:2.802347pt;}
._2e{width:3.744853pt;}
._31{width:4.687147pt;}
._34{width:5.899520pt;}
._33{width:7.528960pt;}
._37{width:9.122560pt;}
._35{width:10.663040pt;}
._2f{width:13.047253pt;}
._30{width:14.103253pt;}
._36{width:15.199573pt;}
._38{width:16.626560pt;}
._39{width:17.940480pt;}
._42{width:19.990613pt;}
._2a{width:32.324480pt;}
._2b{width:33.999147pt;}
._40{width:37.642880pt;}
._41{width:39.440853pt;}
._3a{width:47.224320pt;}
._3c{width:97.124267pt;}
._3d{width:98.045440pt;}
._3b{width:135.123200pt;}
._3e{width:195.585280pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:5.920000pt;}
.yc5{bottom:15.200000pt;}
.yb9{bottom:15.360000pt;}
.yba{bottom:24.640000pt;}
.y6{bottom:54.720000pt;}
.y9f{bottom:81.120000pt;}
.y31{bottom:81.760000pt;}
.y100{bottom:88.800000pt;}
.ycd{bottom:89.280000pt;}
.yb5{bottom:95.040000pt;}
.y4d{bottom:98.880000pt;}
.y9e{bottom:99.840000pt;}
.y30{bottom:100.480000pt;}
.yb4{bottom:113.760000pt;}
.ycc{bottom:114.560000pt;}
.y77{bottom:116.000000pt;}
.y4c{bottom:117.600000pt;}
.y9d{bottom:118.560000pt;}
.y2f{bottom:119.200000pt;}
.yb3{bottom:132.480000pt;}
.ycb{bottom:133.280000pt;}
.y76{bottom:134.720000pt;}
.y4b{bottom:136.346667pt;}
.y9c{bottom:137.306667pt;}
.y2e{bottom:137.946667pt;}
.yb2{bottom:151.226667pt;}
.yca{bottom:152.026667pt;}
.y75{bottom:153.466667pt;}
.y4a{bottom:155.066667pt;}
.y9b{bottom:156.026667pt;}
.y2d{bottom:156.666667pt;}
.yff{bottom:158.746667pt;}
.yb1{bottom:169.946667pt;}
.yc9{bottom:170.746667pt;}
.y74{bottom:172.186667pt;}
.y49{bottom:173.786667pt;}
.y9a{bottom:174.746667pt;}
.y2c{bottom:175.386667pt;}
.yfe{bottom:177.466667pt;}
.yb0{bottom:188.666667pt;}
.yc8{bottom:189.466667pt;}
.y73{bottom:190.906667pt;}
.y48{bottom:192.506667pt;}
.y99{bottom:193.466667pt;}
.y2b{bottom:194.106667pt;}
.yfd{bottom:196.186667pt;}
.yc7{bottom:202.906667pt;}
.yaf{bottom:207.386667pt;}
.y72{bottom:209.626667pt;}
.y47{bottom:211.226667pt;}
.y98{bottom:212.186667pt;}
.y2a{bottom:212.826667pt;}
.yfc{bottom:214.906667pt;}
.yc6{bottom:222.266667pt;}
.yae{bottom:226.106667pt;}
.y71{bottom:228.346667pt;}
.y46{bottom:229.946667pt;}
.y97{bottom:230.906667pt;}
.y29{bottom:231.546667pt;}
.yfb{bottom:233.626667pt;}
.yc4{bottom:241.786667pt;}
.yad{bottom:244.826667pt;}
.y70{bottom:247.066667pt;}
.y45{bottom:248.666667pt;}
.y96{bottom:249.626667pt;}
.y28{bottom:250.266667pt;}
.yfa{bottom:252.346667pt;}
.yac{bottom:263.546667pt;}
.y6f{bottom:265.786667pt;}
.y44{bottom:267.386667pt;}
.y95{bottom:268.346667pt;}
.y27{bottom:268.986667pt;}
.yf9{bottom:271.066667pt;}
.yc3{bottom:279.866667pt;}
.yab{bottom:282.266667pt;}
.y6e{bottom:284.506667pt;}
.y43{bottom:286.106667pt;}
.y94{bottom:287.066667pt;}
.y26{bottom:287.706667pt;}
.yf8{bottom:289.786667pt;}
.yaa{bottom:300.986667pt;}
.y6d{bottom:303.226667pt;}
.y42{bottom:304.826667pt;}
.yc2{bottom:305.146667pt;}
.y93{bottom:305.786667pt;}
.y25{bottom:306.426667pt;}
.yf7{bottom:308.506667pt;}
.ya9{bottom:319.706667pt;}
.y41{bottom:320.026667pt;}
.y6c{bottom:321.946667pt;}
.yc1{bottom:323.866667pt;}
.y92{bottom:324.506667pt;}
.y24{bottom:325.146667pt;}
.yf6{bottom:327.226667pt;}
.ya8{bottom:334.746667pt;}
.yc0{bottom:342.586667pt;}
.y91{bottom:343.226667pt;}
.y23{bottom:343.866667pt;}
.yf5{bottom:345.946667pt;}
.y6b{bottom:356.706667pt;}
.ybf{bottom:361.346667pt;}
.y90{bottom:361.986667pt;}
.y22{bottom:362.626667pt;}
.yf4{bottom:364.706667pt;}
.y6a{bottom:375.426667pt;}
.ybe{bottom:380.066667pt;}
.y8f{bottom:380.706667pt;}
.y21{bottom:381.346667pt;}
.yf3{bottom:383.426667pt;}
.ybd{bottom:393.506667pt;}
.y69{bottom:394.146667pt;}
.y8e{bottom:399.426667pt;}
.y20{bottom:400.066667pt;}
.yf2{bottom:402.146667pt;}
.y68{bottom:412.866667pt;}
.y8d{bottom:418.146667pt;}
.y1f{bottom:420.866667pt;}
.y67{bottom:431.586667pt;}
.ybc{bottom:432.226667pt;}
.y8c{bottom:436.866667pt;}
.yf1{bottom:439.586667pt;}
.y1e{bottom:447.426667pt;}
.y66{bottom:450.306667pt;}
.yb8{bottom:451.586667pt;}
.y8b{bottom:455.586667pt;}
.yf0{bottom:458.306667pt;}
.y1d{bottom:466.146667pt;}
.y65{bottom:469.026667pt;}
.y8a{bottom:474.306667pt;}
.yef{bottom:477.026667pt;}
.y1c{bottom:484.866667pt;}
.y64{bottom:487.746667pt;}
.y89{bottom:493.026667pt;}
.yb7{bottom:495.746667pt;}
.y1b{bottom:503.586667pt;}
.y63{bottom:506.466667pt;}
.y88{bottom:511.746667pt;}
.yb6{bottom:514.466667pt;}
.y1a{bottom:522.306667pt;}
.y62{bottom:525.186667pt;}
.y87{bottom:530.466667pt;}
.yee{bottom:533.186667pt;}
.y19{bottom:541.026667pt;}
.y61{bottom:543.906667pt;}
.y86{bottom:549.186667pt;}
.yed{bottom:551.906667pt;}
.y18{bottom:559.746667pt;}
.y60{bottom:562.466667pt;}
.y85{bottom:567.906667pt;}
.yec{bottom:570.466667pt;}
.y17{bottom:578.493333pt;}
.y5f{bottom:581.213333pt;}
.y84{bottom:586.493333pt;}
.ye3{bottom:586.653333pt;}
.yeb{bottom:589.213333pt;}
.y16{bottom:597.213333pt;}
.y5e{bottom:599.933333pt;}
.y83{bottom:605.213333pt;}
.ye2{bottom:605.373333pt;}
.yea{bottom:607.933333pt;}
.y15{bottom:615.933333pt;}
.y5d{bottom:618.653333pt;}
.y82{bottom:623.933333pt;}
.ye1{bottom:624.093333pt;}
.ye9{bottom:626.653333pt;}
.y14{bottom:634.653333pt;}
.y5c{bottom:637.373333pt;}
.y81{bottom:642.653333pt;}
.ye0{bottom:642.813333pt;}
.ye8{bottom:645.373333pt;}
.y13{bottom:653.373333pt;}
.y5b{bottom:656.093333pt;}
.y80{bottom:661.373333pt;}
.ydf{bottom:661.533333pt;}
.ye7{bottom:664.093333pt;}
.y12{bottom:672.093333pt;}
.y5a{bottom:674.813333pt;}
.y7f{bottom:680.093333pt;}
.yde{bottom:680.253333pt;}
.ye6{bottom:682.813333pt;}
.y11{bottom:690.813333pt;}
.y59{bottom:693.533333pt;}
.y7e{bottom:698.813333pt;}
.ydd{bottom:698.973333pt;}
.ye5{bottom:701.533333pt;}
.y10{bottom:709.533333pt;}
.y7d{bottom:717.533333pt;}
.ydc{bottom:717.693333pt;}
.y58{bottom:720.253333pt;}
.yf{bottom:728.253333pt;}
.y7c{bottom:736.253333pt;}
.ydb{bottom:736.413333pt;}
.y57{bottom:738.973333pt;}
.ye{bottom:746.973333pt;}
.y7b{bottom:754.973333pt;}
.yda{bottom:755.133333pt;}
.y56{bottom:757.693333pt;}
.yd{bottom:765.693333pt;}
.y7a{bottom:773.693333pt;}
.y55{bottom:776.413333pt;}
.y40{bottom:784.413333pt;}
.yc{bottom:786.333333pt;}
.yd9{bottom:789.853333pt;}
.y79{bottom:792.413333pt;}
.y54{bottom:795.133333pt;}
.y3f{bottom:803.173333pt;}
.yb{bottom:805.093333pt;}
.yd8{bottom:808.613333pt;}
.y78{bottom:811.173333pt;}
.y53{bottom:813.893333pt;}
.ya7{bottom:821.893333pt;}
.ya{bottom:824.613333pt;}
.yd7{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.y52{bottom:832.613333pt;}
.ya6{bottom:840.613333pt;}
.y9{bottom:844.453333pt;}
.yd6{bottom:846.053333pt;}
.y3d{bottom:848.613333pt;}
.y51{bottom:851.333333pt;}
.ya5{bottom:859.333333pt;}
.yd5{bottom:864.773333pt;}
.y8{bottom:866.853333pt;}
.y3c{bottom:867.333333pt;}
.y50{bottom:870.053333pt;}
.ya4{bottom:878.053333pt;}
.yd4{bottom:883.493333pt;}
.y3b{bottom:886.053333pt;}
.y4f{bottom:888.773333pt;}
.y7{bottom:896.773333pt;}
.yd3{bottom:902.213333pt;}
.y3a{bottom:904.773333pt;}
.y4e{bottom:907.493333pt;}
.ya3{bottom:915.493333pt;}
.yd2{bottom:920.933333pt;}
.y39{bottom:923.493333pt;}
.ye4{bottom:926.213333pt;}
.y5{bottom:932.613333pt;}
.ya2{bottom:934.213333pt;}
.yd1{bottom:939.653333pt;}
.y38{bottom:942.213333pt;}
.ya1{bottom:952.933333pt;}
.yd0{bottom:953.093333pt;}
.y37{bottom:960.933333pt;}
.y4{bottom:961.253333pt;}
.ya0{bottom:971.653333pt;}
.y36{bottom:979.653333pt;}
.y3{bottom:989.893333pt;}
.ycf{bottom:991.173333pt;}
.y35{bottom:998.373333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1018.373333pt;}
.yce{bottom:1029.280000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h9{height:18.720000pt;}
.h8{height:37.440000pt;}
.ha{height:37.472000pt;}
.h7{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:155.066667pt;}
.w5{width:155.200000pt;}
.w3{width:155.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x6{left:47.999988pt;}
.x9{left:50.079988pt;}
.x8{left:53.919988pt;}
.x13{left:71.999988pt;}
.x10{left:85.632000pt;}
.x14{left:96.031988pt;}
.xb{left:122.432000pt;}
.x5{left:141.946655pt;}
.x3{left:241.346655pt;}
.xd{left:278.306667pt;}
.xa{left:299.746655pt;}
.x2{left:311.586655pt;}
.x4{left:371.746655pt;}
.x11{left:397.213333pt;}
.x1{left:425.373322pt;}
.xe{left:434.173333pt;}
.x12{left:553.053333pt;}
.xf{left:590.053333pt;}
.x7{left:708.933322pt;}
.x15{left:746.079988pt;}
}




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