
    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_e9a4322facbcc1c651ccb515.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_7ea2b84b36f0d2a496038794.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_0ec5c393e2eac91ebe24bc3c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c1f2351c4a888e95c7964ac9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_8d3953c718818c998246c2a2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_8e20b8fd0b6e68c576ff746d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_54fbd19f1f627a56e94761a3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9a61bab9871db54f7c1216c4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_46c4a1a54231545dd9e139e5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.022320px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.lsb{letter-spacing:34.865280px;}
.ls11{letter-spacing:39.881280px;}
.lsd{letter-spacing:39.905280px;}
.lsc{letter-spacing:59.345280px;}
.ls10{letter-spacing:64.002720px;}
.lse{letter-spacing:65.825280px;}
.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;}
}
.wsd{word-spacing:-66.240000px;}
.wse{word-spacing:-59.760000px;}
.ws6{word-spacing:-19.440000px;}
.wsa{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws9{word-spacing:-10.980000px;}
.ws1{word-spacing:-10.924560px;}
.ws0{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._18{margin-left:-5.036400px;}
._b{margin-left:-3.746640px;}
._4{margin-left:-2.464080px;}
._0{margin-left:-1.192320px;}
._3{width:1.219440px;}
._8{width:2.467920px;}
._7{width:4.284960px;}
._5{width:5.796720px;}
._6{width:6.870720px;}
._a{width:8.461680px;}
._9{width:9.681120px;}
._11{width:10.955520px;}
._16{width:12.473520px;}
._17{width:13.579200px;}
._12{width:15.301440px;}
._10{width:18.017280px;}
._f{width:19.978320px;}
._e{width:21.077520px;}
._d{width:22.521600px;}
._15{width:24.575040px;}
._14{width:25.634880px;}
._31{width:28.681920px;}
._3d{width:29.808000px;}
._1f{width:31.728960px;}
._20{width:32.987520px;}
._2b{width:36.034560px;}
._39{width:37.094400px;}
._25{width:38.220480px;}
._36{width:39.479040px;}
._1d{width:41.532480px;}
._2f{width:43.983360px;}
._26{width:45.175680px;}
._27{width:48.156480px;}
._35{width:50.673600px;}
._21{width:55.972800px;}
._29{width:58.622400px;}
._37{width:60.344640px;}
._1c{width:62.729280px;}
._13{width:66.420000px;}
._1a{width:74.321280px;}
._3b{width:79.289280px;}
._3a{width:80.826000px;}
._2d{width:85.383360px;}
._3c{width:90.152640px;}
._19{width:99.624960px;}
._34{width:113.734080px;}
._2a{width:121.815360px;}
._23{width:129.432960px;}
._2c{width:136.851840px;}
._33{width:144.138240px;}
._32{width:145.463040px;}
._2e{width:154.869120px;}
._30{width:158.512320px;}
._c{width:167.463120px;}
._24{width:169.574400px;}
._22{width:176.860800px;}
._1e{width:206.668800px;}
._1b{width:210.312000px;}
._38{width:223.228800px;}
._28{width:235.483200px;}
._2{width:299.820000px;}
._1{width:1099.706880px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.600000px;}
.ya2{bottom:3.780000px;}
.y2{bottom:10.440000px;}
.yad{bottom:22.500000px;}
.ya1{bottom:22.680000px;}
.yaa{bottom:22.710000px;}
.ya6{bottom:41.580000px;}
.yb7{bottom:41.610000px;}
.yb0{bottom:41.760000px;}
.yac{bottom:60.480000px;}
.yb6{bottom:60.510000px;}
.yb2{bottom:60.525000px;}
.ya5{bottom:60.660000px;}
.yf5{bottom:60.690000px;}
.y4{bottom:65.700000px;}
.ya4{bottom:79.560000px;}
.yed{bottom:79.590000px;}
.y76{bottom:111.996000px;}
.y106{bottom:112.176000px;}
.yeb{bottom:112.536000px;}
.yc6{bottom:122.076000px;}
.y9f{bottom:123.876000px;}
.ya8{bottom:125.136000px;}
.y3e{bottom:130.176000px;}
.y75{bottom:131.076000px;}
.yc5{bottom:140.976000px;}
.y9e{bottom:142.956000px;}
.y3d{bottom:149.256000px;}
.y74{bottom:149.976000px;}
.yea{bottom:154.830000px;}
.yc4{bottom:160.050000px;}
.y9d{bottom:161.850000px;}
.ya3{bottom:163.830000px;}
.y3c{bottom:168.150000px;}
.y73{bottom:169.050000px;}
.ye9{bottom:173.910000px;}
.yc3{bottom:178.950000px;}
.y9c{bottom:180.930000px;}
.y3b{bottom:187.050000px;}
.y72{bottom:187.950000px;}
.ye8{bottom:192.810000px;}
.yc2{bottom:197.850000px;}
.y105{bottom:198.750000px;}
.y9b{bottom:199.830000px;}
.y3a{bottom:206.130000px;}
.y71{bottom:206.850000px;}
.ye7{bottom:211.710000px;}
.yc1{bottom:216.930000px;}
.y104{bottom:217.650000px;}
.y9a{bottom:218.730000px;}
.y39{bottom:225.030000px;}
.y70{bottom:225.930000px;}
.ye6{bottom:230.790000px;}
.yc0{bottom:235.830000px;}
.y103{bottom:236.550000px;}
.y99{bottom:237.810000px;}
.y38{bottom:244.110000px;}
.y6f{bottom:244.830000px;}
.ye5{bottom:249.690000px;}
.ybf{bottom:254.910000px;}
.y102{bottom:255.630000px;}
.y98{bottom:256.710000px;}
.ya0{bottom:259.410000px;}
.y37{bottom:263.010000px;}
.y6e{bottom:263.910000px;}
.ye4{bottom:268.770000px;}
.ybe{bottom:273.810000px;}
.y101{bottom:274.530000px;}
.y97{bottom:275.790000px;}
.y36{bottom:281.910000px;}
.y6d{bottom:282.810000px;}
.ye3{bottom:287.670000px;}
.ybd{bottom:292.710000px;}
.y100{bottom:293.610000px;}
.y96{bottom:294.690000px;}
.y35{bottom:300.990000px;}
.y6c{bottom:301.710000px;}
.ye2{bottom:306.570000px;}
.ybc{bottom:311.790000px;}
.yff{bottom:312.510000px;}
.y95{bottom:313.590000px;}
.y34{bottom:319.890000px;}
.y6b{bottom:320.790000px;}
.ye1{bottom:325.650000px;}
.ybb{bottom:330.690000px;}
.yfe{bottom:331.410000px;}
.y94{bottom:332.670000px;}
.y33{bottom:339.015000px;}
.y6a{bottom:339.735000px;}
.ye0{bottom:344.595000px;}
.yba{bottom:346.755000px;}
.yfd{bottom:350.535000px;}
.y93{bottom:351.615000px;}
.y32{bottom:357.915000px;}
.y69{bottom:358.815000px;}
.ydf{bottom:363.675000px;}
.yfc{bottom:369.435000px;}
.y92{bottom:370.695000px;}
.y31{bottom:376.815000px;}
.y68{bottom:377.715000px;}
.yde{bottom:382.575000px;}
.yfb{bottom:388.515000px;}
.y91{bottom:389.595000px;}
.y30{bottom:395.895000px;}
.y67{bottom:396.795000px;}
.ydd{bottom:401.475000px;}
.yb9{bottom:404.535000px;}
.yfa{bottom:407.415000px;}
.y90{bottom:408.495000px;}
.y2f{bottom:414.795000px;}
.y66{bottom:415.695000px;}
.ydc{bottom:420.555000px;}
.yf9{bottom:426.495000px;}
.y8f{bottom:427.575000px;}
.y2e{bottom:433.875000px;}
.y65{bottom:434.595000px;}
.ydb{bottom:439.455000px;}
.yf8{bottom:445.395000px;}
.y8e{bottom:446.475000px;}
.y2d{bottom:452.775000px;}
.y64{bottom:453.675000px;}
.yda{bottom:458.535000px;}
.yf7{bottom:461.415000px;}
.y8d{bottom:465.555000px;}
.y2c{bottom:471.315000px;}
.y63{bottom:472.575000px;}
.yd9{bottom:477.435000px;}
.yb8{bottom:481.215000px;}
.y8c{bottom:484.455000px;}
.y62{bottom:491.655000px;}
.y2b{bottom:492.015000px;}
.yd8{bottom:496.515000px;}
.y8b{bottom:503.355000px;}
.y2a{bottom:506.595000px;}
.y61{bottom:510.555000px;}
.yd7{bottom:515.415000px;}
.yf6{bottom:519.015000px;}
.y8a{bottom:522.435000px;}
.y29{bottom:523.875000px;}
.y60{bottom:529.455000px;}
.yd6{bottom:534.315000px;}
.y28{bottom:541.155000px;}
.y89{bottom:541.335000px;}
.y5f{bottom:548.535000px;}
.yd5{bottom:553.395000px;}
.y27{bottom:558.435000px;}
.y88{bottom:560.415000px;}
.y5e{bottom:567.435000px;}
.yd4{bottom:572.295000px;}
.y26{bottom:575.715000px;}
.yb5{bottom:576.795000px;}
.y87{bottom:579.315000px;}
.y5d{bottom:586.515000px;}
.yd3{bottom:591.375000px;}
.y25{bottom:592.995000px;}
.yf4{bottom:595.695000px;}
.y86{bottom:598.395000px;}
.y5c{bottom:605.445000px;}
.y24{bottom:610.125000px;}
.yd2{bottom:610.305000px;}
.y85{bottom:617.325000px;}
.y5b{bottom:624.345000px;}
.y23{bottom:627.405000px;}
.yd1{bottom:629.205000px;}
.y84{bottom:636.225000px;}
.y5a{bottom:643.425000px;}
.y22{bottom:644.685000px;}
.yd0{bottom:648.285000px;}
.yb4{bottom:653.505000px;}
.y83{bottom:655.125000px;}
.y21{bottom:661.965000px;}
.y59{bottom:662.325000px;}
.ycf{bottom:667.185000px;}
.yf3{bottom:672.405000px;}
.y82{bottom:675.465000px;}
.y20{bottom:679.245000px;}
.y58{bottom:681.405000px;}
.yce{bottom:686.265000px;}
.y81{bottom:694.365000px;}
.y1f{bottom:696.345000px;}
.y57{bottom:700.305000px;}
.ycd{bottom:705.165000px;}
.y1e{bottom:713.625000px;}
.y80{bottom:714.525000px;}
.y56{bottom:719.205000px;}
.ycc{bottom:724.065000px;}
.yf2{bottom:730.005000px;}
.y1d{bottom:730.905000px;}
.y7f{bottom:733.425000px;}
.y55{bottom:738.285000px;}
.ycb{bottom:743.145000px;}
.y1c{bottom:748.185000px;}
.yb3{bottom:749.085000px;}
.y7e{bottom:753.765000px;}
.y54{bottom:757.185000px;}
.yca{bottom:762.045000px;}
.y1b{bottom:765.465000px;}
.y7d{bottom:772.665000px;}
.y53{bottom:776.265000px;}
.yc9{bottom:781.125000px;}
.y1a{bottom:782.745000px;}
.y7c{bottom:791.565000px;}
.y52{bottom:795.165000px;}
.y19{bottom:799.845000px;}
.yc8{bottom:800.025000px;}
.yf1{bottom:806.685000px;}
.y7b{bottom:811.725000px;}
.y51{bottom:814.065000px;}
.y18{bottom:817.125000px;}
.yc7{bottom:818.925000px;}
.yb1{bottom:825.765000px;}
.y7a{bottom:830.805000px;}
.y50{bottom:833.145000px;}
.y17{bottom:834.405000px;}
.y79{bottom:849.705000px;}
.y16{bottom:851.685000px;}
.y4f{bottom:852.045000px;}
.y15{bottom:868.965000px;}
.y78{bottom:869.865000px;}
.y4e{bottom:871.170000px;}
.yf0{bottom:883.410000px;}
.y14{bottom:886.290000px;}
.y77{bottom:888.810000px;}
.y4d{bottom:890.070000px;}
.yaf{bottom:902.310000px;}
.y13{bottom:903.390000px;}
.y4c{bottom:909.150000px;}
.y12{bottom:920.670000px;}
.y4b{bottom:928.050000px;}
.y11{bottom:938.310000px;}
.yef{bottom:941.010000px;}
.y4a{bottom:946.950000px;}
.y10{bottom:956.850000px;}
.y49{bottom:966.030000px;}
.yf{bottom:974.130000px;}
.yae{bottom:978.990000px;}
.y48{bottom:984.930000px;}
.ye{bottom:991.770000px;}
.yee{bottom:998.790000px;}
.y47{bottom:1004.010000px;}
.yd{bottom:1010.850000px;}
.y46{bottom:1022.910000px;}
.yc{bottom:1030.290000px;}
.yab{bottom:1036.770000px;}
.y45{bottom:1041.810000px;}
.yb{bottom:1052.610000px;}
.y44{bottom:1060.890000px;}
.ya{bottom:1073.490000px;}
.yec{bottom:1075.470000px;}
.y43{bottom:1079.790000px;}
.y9{bottom:1088.070000px;}
.y42{bottom:1098.870000px;}
.y8{bottom:1105.350000px;}
.y41{bottom:1117.770000px;}
.y7{bottom:1122.450000px;}
.ya9{bottom:1132.350000px;}
.y40{bottom:1136.670000px;}
.y6{bottom:1139.760000px;}
.y3f{bottom:1155.780000px;}
.y5{bottom:1157.040000px;}
.y3{bottom:1175.580000px;}
.y1{bottom:1191.240000px;}
.h2{height:29.160000px;}
.h8{height:34.036523px;}
.h13{height:37.980000px;}
.h15{height:38.016000px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:43.156758px;}
.h7{height:46.251562px;}
.ha{height:46.736719px;}
.he{height:47.836406px;}
.h5{height:47.980898px;}
.hd{height:48.027656px;}
.h11{height:48.224531px;}
.h10{height:49.255313px;}
.hb{height:53.224453px;}
.h3{height:53.237812px;}
.h12{height:54.596250px;}
.h9{height:54.864844px;}
.h16{height:56.880000px;}
.h1a{height:57.060000px;}
.h4{height:65.884219px;}
.h19{height:75.780000px;}
.h18{height:75.816000px;}
.h17{height:75.960000px;}
.h1c{height:75.996000px;}
.h14{height:94.860000px;}
.h1b{height:94.896000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.100000px;}
.wb{width:64.080000px;}
.w5{width:66.060000px;}
.wd{width:88.776000px;}
.we{width:91.260000px;}
.w7{width:92.880000px;}
.wf{width:94.896000px;}
.w8{width:102.816000px;}
.wa{width:102.960000px;}
.w10{width:112.500000px;}
.w9{width:119.916000px;}
.w6{width:144.756000px;}
.wc{width:220.530000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x22{left:9.360000px;}
.x24{left:12.420000px;}
.x4{left:17.100000px;}
.x1c{left:21.780000px;}
.x27{left:23.580000px;}
.x26{left:27.180000px;}
.x20{left:28.620000px;}
.x1e{left:73.440000px;}
.x1{left:108.036000px;}
.x1b{left:113.075987px;}
.x6{left:126.035987px;}
.xd{left:135.035987px;}
.xe{left:144.935987px;}
.x15{left:150.509987px;}
.xf{left:155.549987px;}
.xc{left:161.129987px;}
.x12{left:165.989987px;}
.x3{left:170.130000px;}
.x13{left:171.929987px;}
.x1d{left:173.550000px;}
.x14{left:182.549987px;}
.x10{left:189.029987px;}
.x11{left:216.029987px;}
.x16{left:218.010000px;}
.x9{left:219.449987px;}
.x7{left:248.429987px;}
.xa{left:268.229987px;}
.x8{left:288.974987px;}
.x17{left:363.495000px;}
.x1f{left:394.815000px;}
.xb{left:420.554987px;}
.x5{left:446.474987px;}
.x18{left:457.275000px;}
.x21{left:484.305000px;}
.x19{left:560.805000px;}
.x23{left:576.285000px;}
.x25{left:671.910000px;}
.x1a{left:681.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.019840pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.lsb{letter-spacing:30.991360pt;}
.ls11{letter-spacing:35.450027pt;}
.lsd{letter-spacing:35.471360pt;}
.lsc{letter-spacing:52.751360pt;}
.ls10{letter-spacing:56.891307pt;}
.lse{letter-spacing:58.511360pt;}
.wsd{word-spacing:-58.880000pt;}
.wse{word-spacing:-53.120000pt;}
.ws6{word-spacing:-17.280000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws9{word-spacing:-9.760000pt;}
.ws1{word-spacing:-9.710720pt;}
.ws0{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._18{margin-left:-4.476800pt;}
._b{margin-left:-3.330347pt;}
._4{margin-left:-2.190293pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.083947pt;}
._8{width:2.193707pt;}
._7{width:3.808853pt;}
._5{width:5.152640pt;}
._6{width:6.107307pt;}
._a{width:7.521493pt;}
._9{width:8.605440pt;}
._11{width:9.738240pt;}
._16{width:11.087573pt;}
._17{width:12.070400pt;}
._12{width:13.601280pt;}
._10{width:16.015360pt;}
._f{width:17.758507pt;}
._e{width:18.735573pt;}
._d{width:20.019200pt;}
._15{width:21.844480pt;}
._14{width:22.786560pt;}
._31{width:25.495040pt;}
._3d{width:26.496000pt;}
._1f{width:28.203520pt;}
._20{width:29.322240pt;}
._2b{width:32.030720pt;}
._39{width:32.972800pt;}
._25{width:33.973760pt;}
._36{width:35.092480pt;}
._1d{width:36.917760pt;}
._2f{width:39.096320pt;}
._26{width:40.156160pt;}
._27{width:42.805760pt;}
._35{width:45.043200pt;}
._21{width:49.753600pt;}
._29{width:52.108800pt;}
._37{width:53.639680pt;}
._1c{width:55.759360pt;}
._13{width:59.040000pt;}
._1a{width:66.063360pt;}
._3b{width:70.479360pt;}
._3a{width:71.845333pt;}
._2d{width:75.896320pt;}
._3c{width:80.135680pt;}
._19{width:88.555520pt;}
._34{width:101.096960pt;}
._2a{width:108.280320pt;}
._23{width:115.051520pt;}
._2c{width:121.646080pt;}
._33{width:128.122880pt;}
._32{width:129.300480pt;}
._2e{width:137.661440pt;}
._30{width:140.899840pt;}
._c{width:148.856107pt;}
._24{width:150.732800pt;}
._22{width:157.209600pt;}
._1e{width:183.705600pt;}
._1b{width:186.944000pt;}
._38{width:198.425600pt;}
._28{width:209.318400pt;}
._2{width:266.506667pt;}
._1{width:977.517227pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:3.200000pt;}
.ya2{bottom:3.360000pt;}
.y2{bottom:9.280000pt;}
.yad{bottom:20.000000pt;}
.ya1{bottom:20.160000pt;}
.yaa{bottom:20.186667pt;}
.ya6{bottom:36.960000pt;}
.yb7{bottom:36.986667pt;}
.yb0{bottom:37.120000pt;}
.yac{bottom:53.760000pt;}
.yb6{bottom:53.786667pt;}
.yb2{bottom:53.800000pt;}
.ya5{bottom:53.920000pt;}
.yf5{bottom:53.946667pt;}
.y4{bottom:58.400000pt;}
.ya4{bottom:70.720000pt;}
.yed{bottom:70.746667pt;}
.y76{bottom:99.552000pt;}
.y106{bottom:99.712000pt;}
.yeb{bottom:100.032000pt;}
.yc6{bottom:108.512000pt;}
.y9f{bottom:110.112000pt;}
.ya8{bottom:111.232000pt;}
.y3e{bottom:115.712000pt;}
.y75{bottom:116.512000pt;}
.yc5{bottom:125.312000pt;}
.y9e{bottom:127.072000pt;}
.y3d{bottom:132.672000pt;}
.y74{bottom:133.312000pt;}
.yea{bottom:137.626667pt;}
.yc4{bottom:142.266667pt;}
.y9d{bottom:143.866667pt;}
.ya3{bottom:145.626667pt;}
.y3c{bottom:149.466667pt;}
.y73{bottom:150.266667pt;}
.ye9{bottom:154.586667pt;}
.yc3{bottom:159.066667pt;}
.y9c{bottom:160.826667pt;}
.y3b{bottom:166.266667pt;}
.y72{bottom:167.066667pt;}
.ye8{bottom:171.386667pt;}
.yc2{bottom:175.866667pt;}
.y105{bottom:176.666667pt;}
.y9b{bottom:177.626667pt;}
.y3a{bottom:183.226667pt;}
.y71{bottom:183.866667pt;}
.ye7{bottom:188.186667pt;}
.yc1{bottom:192.826667pt;}
.y104{bottom:193.466667pt;}
.y9a{bottom:194.426667pt;}
.y39{bottom:200.026667pt;}
.y70{bottom:200.826667pt;}
.ye6{bottom:205.146667pt;}
.yc0{bottom:209.626667pt;}
.y103{bottom:210.266667pt;}
.y99{bottom:211.386667pt;}
.y38{bottom:216.986667pt;}
.y6f{bottom:217.626667pt;}
.ye5{bottom:221.946667pt;}
.ybf{bottom:226.586667pt;}
.y102{bottom:227.226667pt;}
.y98{bottom:228.186667pt;}
.ya0{bottom:230.586667pt;}
.y37{bottom:233.786667pt;}
.y6e{bottom:234.586667pt;}
.ye4{bottom:238.906667pt;}
.ybe{bottom:243.386667pt;}
.y101{bottom:244.026667pt;}
.y97{bottom:245.146667pt;}
.y36{bottom:250.586667pt;}
.y6d{bottom:251.386667pt;}
.ye3{bottom:255.706667pt;}
.ybd{bottom:260.186667pt;}
.y100{bottom:260.986667pt;}
.y96{bottom:261.946667pt;}
.y35{bottom:267.546667pt;}
.y6c{bottom:268.186667pt;}
.ye2{bottom:272.506667pt;}
.ybc{bottom:277.146667pt;}
.yff{bottom:277.786667pt;}
.y95{bottom:278.746667pt;}
.y34{bottom:284.346667pt;}
.y6b{bottom:285.146667pt;}
.ye1{bottom:289.466667pt;}
.ybb{bottom:293.946667pt;}
.yfe{bottom:294.586667pt;}
.y94{bottom:295.706667pt;}
.y33{bottom:301.346667pt;}
.y6a{bottom:301.986667pt;}
.ye0{bottom:306.306667pt;}
.yba{bottom:308.226667pt;}
.yfd{bottom:311.586667pt;}
.y93{bottom:312.546667pt;}
.y32{bottom:318.146667pt;}
.y69{bottom:318.946667pt;}
.ydf{bottom:323.266667pt;}
.yfc{bottom:328.386667pt;}
.y92{bottom:329.506667pt;}
.y31{bottom:334.946667pt;}
.y68{bottom:335.746667pt;}
.yde{bottom:340.066667pt;}
.yfb{bottom:345.346667pt;}
.y91{bottom:346.306667pt;}
.y30{bottom:351.906667pt;}
.y67{bottom:352.706667pt;}
.ydd{bottom:356.866667pt;}
.yb9{bottom:359.586667pt;}
.yfa{bottom:362.146667pt;}
.y90{bottom:363.106667pt;}
.y2f{bottom:368.706667pt;}
.y66{bottom:369.506667pt;}
.ydc{bottom:373.826667pt;}
.yf9{bottom:379.106667pt;}
.y8f{bottom:380.066667pt;}
.y2e{bottom:385.666667pt;}
.y65{bottom:386.306667pt;}
.ydb{bottom:390.626667pt;}
.yf8{bottom:395.906667pt;}
.y8e{bottom:396.866667pt;}
.y2d{bottom:402.466667pt;}
.y64{bottom:403.266667pt;}
.yda{bottom:407.586667pt;}
.yf7{bottom:410.146667pt;}
.y8d{bottom:413.826667pt;}
.y2c{bottom:418.946667pt;}
.y63{bottom:420.066667pt;}
.yd9{bottom:424.386667pt;}
.yb8{bottom:427.746667pt;}
.y8c{bottom:430.626667pt;}
.y62{bottom:437.026667pt;}
.y2b{bottom:437.346667pt;}
.yd8{bottom:441.346667pt;}
.y8b{bottom:447.426667pt;}
.y2a{bottom:450.306667pt;}
.y61{bottom:453.826667pt;}
.yd7{bottom:458.146667pt;}
.yf6{bottom:461.346667pt;}
.y8a{bottom:464.386667pt;}
.y29{bottom:465.666667pt;}
.y60{bottom:470.626667pt;}
.yd6{bottom:474.946667pt;}
.y28{bottom:481.026667pt;}
.y89{bottom:481.186667pt;}
.y5f{bottom:487.586667pt;}
.yd5{bottom:491.906667pt;}
.y27{bottom:496.386667pt;}
.y88{bottom:498.146667pt;}
.y5e{bottom:504.386667pt;}
.yd4{bottom:508.706667pt;}
.y26{bottom:511.746667pt;}
.yb5{bottom:512.706667pt;}
.y87{bottom:514.946667pt;}
.y5d{bottom:521.346667pt;}
.yd3{bottom:525.666667pt;}
.y25{bottom:527.106667pt;}
.yf4{bottom:529.506667pt;}
.y86{bottom:531.906667pt;}
.y5c{bottom:538.173333pt;}
.y24{bottom:542.333333pt;}
.yd2{bottom:542.493333pt;}
.y85{bottom:548.733333pt;}
.y5b{bottom:554.973333pt;}
.y23{bottom:557.693333pt;}
.yd1{bottom:559.293333pt;}
.y84{bottom:565.533333pt;}
.y5a{bottom:571.933333pt;}
.y22{bottom:573.053333pt;}
.yd0{bottom:576.253333pt;}
.yb4{bottom:580.893333pt;}
.y83{bottom:582.333333pt;}
.y21{bottom:588.413333pt;}
.y59{bottom:588.733333pt;}
.ycf{bottom:593.053333pt;}
.yf3{bottom:597.693333pt;}
.y82{bottom:600.413333pt;}
.y20{bottom:603.773333pt;}
.y58{bottom:605.693333pt;}
.yce{bottom:610.013333pt;}
.y81{bottom:617.213333pt;}
.y1f{bottom:618.973333pt;}
.y57{bottom:622.493333pt;}
.ycd{bottom:626.813333pt;}
.y1e{bottom:634.333333pt;}
.y80{bottom:635.133333pt;}
.y56{bottom:639.293333pt;}
.ycc{bottom:643.613333pt;}
.yf2{bottom:648.893333pt;}
.y1d{bottom:649.693333pt;}
.y7f{bottom:651.933333pt;}
.y55{bottom:656.253333pt;}
.ycb{bottom:660.573333pt;}
.y1c{bottom:665.053333pt;}
.yb3{bottom:665.853333pt;}
.y7e{bottom:670.013333pt;}
.y54{bottom:673.053333pt;}
.yca{bottom:677.373333pt;}
.y1b{bottom:680.413333pt;}
.y7d{bottom:686.813333pt;}
.y53{bottom:690.013333pt;}
.yc9{bottom:694.333333pt;}
.y1a{bottom:695.773333pt;}
.y7c{bottom:703.613333pt;}
.y52{bottom:706.813333pt;}
.y19{bottom:710.973333pt;}
.yc8{bottom:711.133333pt;}
.yf1{bottom:717.053333pt;}
.y7b{bottom:721.533333pt;}
.y51{bottom:723.613333pt;}
.y18{bottom:726.333333pt;}
.yc7{bottom:727.933333pt;}
.yb1{bottom:734.013333pt;}
.y7a{bottom:738.493333pt;}
.y50{bottom:740.573333pt;}
.y17{bottom:741.693333pt;}
.y79{bottom:755.293333pt;}
.y16{bottom:757.053333pt;}
.y4f{bottom:757.373333pt;}
.y15{bottom:772.413333pt;}
.y78{bottom:773.213333pt;}
.y4e{bottom:774.373333pt;}
.yf0{bottom:785.253333pt;}
.y14{bottom:787.813333pt;}
.y77{bottom:790.053333pt;}
.y4d{bottom:791.173333pt;}
.yaf{bottom:802.053333pt;}
.y13{bottom:803.013333pt;}
.y4c{bottom:808.133333pt;}
.y12{bottom:818.373333pt;}
.y4b{bottom:824.933333pt;}
.y11{bottom:834.053333pt;}
.yef{bottom:836.453333pt;}
.y4a{bottom:841.733333pt;}
.y10{bottom:850.533333pt;}
.y49{bottom:858.693333pt;}
.yf{bottom:865.893333pt;}
.yae{bottom:870.213333pt;}
.y48{bottom:875.493333pt;}
.ye{bottom:881.573333pt;}
.yee{bottom:887.813333pt;}
.y47{bottom:892.453333pt;}
.yd{bottom:898.533333pt;}
.y46{bottom:909.253333pt;}
.yc{bottom:915.813333pt;}
.yab{bottom:921.573333pt;}
.y45{bottom:926.053333pt;}
.yb{bottom:935.653333pt;}
.y44{bottom:943.013333pt;}
.ya{bottom:954.213333pt;}
.yec{bottom:955.973333pt;}
.y43{bottom:959.813333pt;}
.y9{bottom:967.173333pt;}
.y42{bottom:976.773333pt;}
.y8{bottom:982.533333pt;}
.y41{bottom:993.573333pt;}
.y7{bottom:997.733333pt;}
.ya9{bottom:1006.533333pt;}
.y40{bottom:1010.373333pt;}
.y6{bottom:1013.120000pt;}
.y3f{bottom:1027.360000pt;}
.y5{bottom:1028.480000pt;}
.y3{bottom:1044.960000pt;}
.y1{bottom:1058.880000pt;}
.h2{height:25.920000pt;}
.h8{height:30.254687pt;}
.h13{height:33.760000pt;}
.h15{height:33.792000pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:38.361562pt;}
.h7{height:41.112500pt;}
.ha{height:41.543750pt;}
.he{height:42.521250pt;}
.h5{height:42.649687pt;}
.hd{height:42.691250pt;}
.h11{height:42.866250pt;}
.h10{height:43.782500pt;}
.hb{height:47.310625pt;}
.h3{height:47.322500pt;}
.h12{height:48.530000pt;}
.h9{height:48.768750pt;}
.h16{height:50.560000pt;}
.h1a{height:50.720000pt;}
.h4{height:58.563750pt;}
.h19{height:67.360000pt;}
.h18{height:67.392000pt;}
.h17{height:67.520000pt;}
.h1c{height:67.552000pt;}
.h14{height:84.320000pt;}
.h1b{height:84.352000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.200000pt;}
.wb{width:56.960000pt;}
.w5{width:58.720000pt;}
.wd{width:78.912000pt;}
.we{width:81.120000pt;}
.w7{width:82.560000pt;}
.wf{width:84.352000pt;}
.w8{width:91.392000pt;}
.wa{width:91.520000pt;}
.w10{width:100.000000pt;}
.w9{width:106.592000pt;}
.w6{width:128.672000pt;}
.wc{width:196.026667pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x22{left:8.320000pt;}
.x24{left:11.040000pt;}
.x4{left:15.200000pt;}
.x1c{left:19.360000pt;}
.x27{left:20.960000pt;}
.x26{left:24.160000pt;}
.x20{left:25.440000pt;}
.x1e{left:65.280000pt;}
.x1{left:96.032000pt;}
.x1b{left:100.511988pt;}
.x6{left:112.031988pt;}
.xd{left:120.031988pt;}
.xe{left:128.831988pt;}
.x15{left:133.786655pt;}
.xf{left:138.266655pt;}
.xc{left:143.226655pt;}
.x12{left:147.546655pt;}
.x3{left:151.226667pt;}
.x13{left:152.826655pt;}
.x1d{left:154.266667pt;}
.x14{left:162.266655pt;}
.x10{left:168.026655pt;}
.x11{left:192.026655pt;}
.x16{left:193.786667pt;}
.x9{left:195.066655pt;}
.x7{left:220.826655pt;}
.xa{left:238.426655pt;}
.x8{left:256.866655pt;}
.x17{left:323.106667pt;}
.x1f{left:350.946667pt;}
.xb{left:373.826655pt;}
.x5{left:396.866655pt;}
.x18{left:406.466667pt;}
.x21{left:430.493333pt;}
.x19{left:498.493333pt;}
.x23{left:512.253333pt;}
.x25{left:597.253333pt;}
.x1a{left:605.733333pt;}
}




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