
    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_f8d1c3f1e836eb9cd138c700.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_367246038da8927d58e34e66.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c1585bfe6d494f29b9bf4c9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_791219fc20577b903f11334c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bad6b23a7ddce3be7f4c5d6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ae03d72d469c854217484049.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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;}
.lse{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.272400px;}
.ls28{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.253200px;}
.ls6{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.132600px;}
.ls19{letter-spacing:-0.106800px;}
.ls2{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.149760px;}
.ls21{letter-spacing:0.156000px;}
.ls12{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.828000px;}
.ls1d{letter-spacing:0.864000px;}
.ls29{letter-spacing:4.320000px;}
.ls8{letter-spacing:5.220000px;}
.ls30{letter-spacing:5.760000px;}
.ls2b{letter-spacing:5.940000px;}
.ls2a{letter-spacing:7.200000px;}
.ls27{letter-spacing:7.380000px;}
.ls1a{letter-spacing:9.540000px;}
.ls2c{letter-spacing:13.680000px;}
.lsc{letter-spacing:18.720000px;}
.ls1e{letter-spacing:18.900000px;}
.ls2d{letter-spacing:24.480000px;}
.ls26{letter-spacing:44.076000px;}
.ls22{letter-spacing:67.836000px;}
.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;}
}
.ws19{word-spacing:-72.000000px;}
.ws12{word-spacing:-18.864000px;}
.ws17{word-spacing:-18.792000px;}
.ws16{word-spacing:-18.720000px;}
.ws18{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsa{word-spacing:-15.768000px;}
.wsb{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.733600px;}
.wse{word-spacing:-14.686800px;}
.ws14{word-spacing:-14.680200px;}
.ws13{word-spacing:-14.580000px;}
.ws1{word-spacing:0.000000px;}
._33{margin-left:-18.930480px;}
._1a{margin-left:-17.406480px;}
._15{margin-left:-16.260000px;}
._16{margin-left:-14.424000px;}
._19{margin-left:-12.636000px;}
._14{margin-left:-11.442480px;}
._1b{margin-left:-10.284000px;}
._17{margin-left:-8.448000px;}
._18{margin-left:-6.660000px;}
._10{margin-left:-4.968000px;}
._c{margin-left:-3.384000px;}
._f{margin-left:-2.088000px;}
._2{margin-left:-1.080000px;}
._0{width:1.374480px;}
._1{width:2.694720px;}
._9{width:3.960000px;}
._a{width:5.446800px;}
._11{width:6.552000px;}
._34{width:7.553520px;}
._27{width:8.568000px;}
._12{width:9.720000px;}
._13{width:10.937520px;}
._d{width:12.024000px;}
._e{width:13.320000px;}
._8{width:14.340000px;}
._7{width:15.840000px;}
._b{width:16.913520px;}
._3b{width:17.946480px;}
._28{width:19.008000px;}
._29{width:20.052000px;}
._35{width:21.096000px;}
._2f{width:22.968000px;}
._38{width:24.099120px;}
._2c{width:25.272000px;}
._30{width:26.496000px;}
._31{width:27.792000px;}
._32{width:29.448000px;}
._2a{width:30.816000px;}
._2b{width:31.836000px;}
._3d{width:33.511440px;}
._3c{width:34.840080px;}
._3e{width:36.447600px;}
._39{width:37.512000px;}
._3a{width:38.736000px;}
._4f{width:40.392000px;}
._20{width:42.384000px;}
._4b{width:43.744320px;}
._4c{width:44.913360px;}
._24{width:46.344000px;}
._4d{width:47.544000px;}
._45{width:49.003200px;}
._46{width:50.019120px;}
._60{width:51.644880px;}
._4e{width:52.992000px;}
._1e{width:54.768000px;}
._52{width:58.680000px;}
._4a{width:66.931200px;}
._49{width:68.783760px;}
._5d{width:69.852240px;}
._5a{width:71.064000px;}
._2e{width:77.283120px;}
._2d{width:78.405120px;}
._1d{width:80.400000px;}
._25{width:98.688000px;}
._23{width:101.784000px;}
._57{width:103.788000px;}
._59{width:108.900000px;}
._5{width:119.964000px;}
._5f{width:121.824000px;}
._48{width:123.798480px;}
._47{width:125.281200px;}
._1f{width:126.408000px;}
._3{width:129.504000px;}
._5e{width:131.400000px;}
._37{width:148.353600px;}
._36{width:149.579280px;}
._1c{width:155.496000px;}
._54{width:171.432000px;}
._55{width:172.512000px;}
._42{width:181.013040px;}
._22{width:191.496000px;}
._4{width:194.580000px;}
._21{width:195.600000px;}
._56{width:214.488000px;}
._51{width:287.352000px;}
._5b{width:304.200000px;}
._43{width:336.448800px;}
._44{width:337.854480px;}
._41{width:369.974160px;}
._40{width:371.169360px;}
._5c{width:401.184000px;}
._53{width:734.904000px;}
._26{width:846.696000px;}
._6{width:891.516000px;}
._3f{width:1041.796080px;}
._58{width:1663.704000px;}
._50{width:1859.832000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:57.420000px;}
.y1b{bottom:76.680000px;}
.y4d{bottom:109.476000px;}
.ya3{bottom:110.196000px;}
.y1a{bottom:113.436000px;}
.y4c{bottom:114.696000px;}
.y3d{bottom:115.236000px;}
.ya2{bottom:115.416000px;}
.yad{bottom:121.356000px;}
.y4b{bottom:126.576000px;}
.y72{bottom:127.296000px;}
.ya1{bottom:128.376000px;}
.y4a{bottom:131.796000px;}
.y71{bottom:132.516000px;}
.ya0{bottom:133.596000px;}
.yac{bottom:138.636000px;}
.y49{bottom:143.856000px;}
.y70{bottom:144.936000px;}
.y5a{bottom:145.116000px;}
.yce{bottom:145.656000px;}
.y9f{bottom:146.016000px;}
.y3c{bottom:146.196000px;}
.y48{bottom:149.076000px;}
.y6f{bottom:150.150000px;}
.y9e{bottom:151.230000px;}
.yab{bottom:155.910000px;}
.y19{bottom:156.450000px;}
.y47{bottom:161.130000px;}
.y83{bottom:161.850000px;}
.y6e{bottom:162.210000px;}
.y5e{bottom:162.390000px;}
.y9d{bottom:163.290000px;}
.y75{bottom:166.350000px;}
.y82{bottom:167.070000px;}
.y6d{bottom:167.430000px;}
.y9c{bottom:168.510000px;}
.yaa{bottom:173.190000px;}
.ycd{bottom:176.790000px;}
.y3b{bottom:177.330000px;}
.y46{bottom:178.410000px;}
.y7d{bottom:179.130000px;}
.y6c{bottom:179.490000px;}
.y9b{bottom:180.570000px;}
.y57{bottom:183.630000px;}
.y7c{bottom:184.350000px;}
.y6b{bottom:184.710000px;}
.y9a{bottom:185.790000px;}
.ya9{bottom:190.470000px;}
.y45{bottom:195.690000px;}
.y7b{bottom:196.770000px;}
.y5c{bottom:196.950000px;}
.y6a{bottom:198.030000px;}
.y99{bottom:199.110000px;}
.y18{bottom:199.470000px;}
.y66{bottom:200.910000px;}
.y7a{bottom:201.990000px;}
.ya8{bottom:207.570000px;}
.ycc{bottom:207.750000px;}
.y3a{bottom:208.290000px;}
.ya7{bottom:212.790000px;}
.y44{bottom:212.970000px;}
.y79{bottom:213.870000px;}
.yaf{bottom:214.230000px;}
.y85{bottom:215.130000px;}
.y43{bottom:218.190000px;}
.y78{bottom:219.090000px;}
.ya6{bottom:224.850000px;}
.y56{bottom:230.070000px;}
.y8d{bottom:230.790000px;}
.y81{bottom:231.150000px;}
.y42{bottom:231.330000px;}
.y77{bottom:232.410000px;}
.y90{bottom:235.290000px;}
.y8c{bottom:236.010000px;}
.y80{bottom:236.370000px;}
.ycb{bottom:238.890000px;}
.y39{bottom:239.430000px;}
.y17{bottom:242.490000px;}
.ya5{bottom:243.390000px;}
.y69{bottom:246.270000px;}
.y55{bottom:247.350000px;}
.y8b{bottom:248.430000px;}
.y8f{bottom:248.610000px;}
.y7f{bottom:249.690000px;}
.y54{bottom:252.570000px;}
.y8a{bottom:253.650000px;}
.y53{bottom:264.630000px;}
.y97{bottom:265.350000px;}
.y89{bottom:265.710000px;}
.y74{bottom:265.890000px;}
.y52{bottom:269.850000px;}
.y38{bottom:270.390000px;}
.y96{bottom:270.570000px;}
.y88{bottom:270.930000px;}
.y65{bottom:281.910000px;}
.y95{bottom:282.990000px;}
.y51{bottom:283.170000px;}
.y87{bottom:284.250000px;}
.y16{bottom:285.510000px;}
.y64{bottom:287.130000px;}
.y94{bottom:300.270000px;}
.y63{bottom:300.450000px;}
.yca{bottom:300.810000px;}
.y37{bottom:301.350000px;}
.y93{bottom:305.490000px;}
.y41{bottom:308.190000px;}
.y92{bottom:318.630000px;}
.y15{bottom:328.710000px;}
.yc9{bottom:331.950000px;}
.y36{bottom:332.490000px;}
.yc8{bottom:362.910000px;}
.y35{bottom:363.450000px;}
.y73{bottom:370.335000px;}
.y14{bottom:371.775000px;}
.yc7{bottom:394.095000px;}
.y34{bottom:394.635000px;}
.y5d{bottom:401.475000px;}
.y13{bottom:414.795000px;}
.yc6{bottom:425.055000px;}
.y33{bottom:425.595000px;}
.y86{bottom:432.435000px;}
.yc5{bottom:456.195000px;}
.y32{bottom:456.735000px;}
.y12{bottom:457.815000px;}
.y84{bottom:463.575000px;}
.yc4{bottom:487.155000px;}
.y31{bottom:487.695000px;}
.y40{bottom:494.535000px;}
.y11{bottom:500.835000px;}
.yc3{bottom:518.295000px;}
.y30{bottom:518.835000px;}
.y62{bottom:525.675000px;}
.y10{bottom:543.855000px;}
.yc2{bottom:549.255000px;}
.y2f{bottom:549.795000px;}
.y98{bottom:556.635000px;}
.yc1{bottom:580.395000px;}
.y2e{bottom:580.935000px;}
.yf{bottom:587.055000px;}
.y50{bottom:587.775000px;}
.yc0{bottom:611.355000px;}
.y2d{bottom:611.895000px;}
.ye{bottom:618.015000px;}
.y61{bottom:618.735000px;}
.ybf{bottom:642.525000px;}
.y2c{bottom:643.065000px;}
.yd{bottom:649.005000px;}
.y4f{bottom:649.905000px;}
.ybe{bottom:673.485000px;}
.y2b{bottom:674.025000px;}
.y68{bottom:680.865000px;}
.yc{bottom:692.205000px;}
.ybd{bottom:704.625000px;}
.y2a{bottom:705.165000px;}
.y3f{bottom:712.005000px;}
.yb{bottom:732.705000px;}
.ybc{bottom:735.585000px;}
.y29{bottom:736.125000px;}
.y60{bottom:742.965000px;}
.ybb{bottom:766.725000px;}
.y28{bottom:767.265000px;}
.ya{bottom:770.505000px;}
.y8e{bottom:774.105000px;}
.yba{bottom:797.685000px;}
.y27{bottom:798.225000px;}
.y5f{bottom:805.065000px;}
.y9{bottom:808.485000px;}
.yb9{bottom:828.825000px;}
.y26{bottom:829.365000px;}
.y4e{bottom:836.205000px;}
.y8{bottom:846.285000px;}
.yb8{bottom:859.785000px;}
.y25{bottom:860.325000px;}
.y67{bottom:867.165000px;}
.y7{bottom:884.310000px;}
.yb7{bottom:890.970000px;}
.y24{bottom:891.510000px;}
.y3e{bottom:898.350000px;}
.yb6{bottom:921.930000px;}
.y23{bottom:922.470000px;}
.y6{bottom:924.630000px;}
.y59{bottom:929.310000px;}
.yb5{bottom:953.070000px;}
.y22{bottom:953.610000px;}
.ya4{bottom:960.450000px;}
.y5{bottom:967.650000px;}
.yb4{bottom:984.030000px;}
.y21{bottom:984.570000px;}
.y91{bottom:991.410000px;}
.y4{bottom:1010.670000px;}
.yb3{bottom:1015.170000px;}
.y20{bottom:1015.710000px;}
.y76{bottom:1022.550000px;}
.yb2{bottom:1046.130000px;}
.y1f{bottom:1046.670000px;}
.yae{bottom:1053.510000px;}
.y3{bottom:1053.690000px;}
.yb1{bottom:1077.270000px;}
.y1e{bottom:1077.810000px;}
.y7e{bottom:1084.650000px;}
.y2{bottom:1096.710000px;}
.yb0{bottom:1108.230000px;}
.y1d{bottom:1108.770000px;}
.y58{bottom:1115.610000px;}
.y1{bottom:1139.910000px;}
.y5b{bottom:1146.780000px;}
.h8{height:38.158594px;}
.hd{height:38.671172px;}
.h7{height:47.344922px;}
.ha{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:59.439023px;}
.h3{height:60.226875px;}
.hc{height:64.546875px;}
.h4{height:65.010937px;}
.h5{height:65.884219px;}
.he{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:127.655987px;}
.xbc{left:129.455987px;}
.x19{left:132.515987px;}
.x26{left:137.375987px;}
.x91{left:142.955987px;}
.xae{left:145.295987px;}
.x7{left:146.915987px;}
.xab{left:155.549987px;}
.x8{left:159.149987px;}
.x80{left:163.649973px;}
.x47{left:165.629973px;}
.xa7{left:170.849987px;}
.x81{left:175.889987px;}
.x48{left:177.869987px;}
.x16{left:179.669973px;}
.xe{left:180.749987px;}
.xa2{left:182.009987px;}
.xbb{left:183.989987px;}
.x17{left:185.789987px;}
.x66{left:187.589973px;}
.xd{left:191.549987px;}
.x34{left:192.629973px;}
.x4{left:198.029987px;}
.x67{left:199.829987px;}
.x90{left:202.709973px;}
.x77{left:203.789987px;}
.x35{left:204.869987px;}
.x1a{left:206.669973px;}
.x12{left:210.629973px;}
.x3c{left:211.709973px;}
.x1b{left:212.789987px;}
.xa6{left:213.869987px;}
.x82{left:215.669973px;}
.x13{left:216.749987px;}
.xb7{left:219.809987px;}
.x1{left:221.249987px;}
.x3d{left:223.949987px;}
.x89{left:226.649973px;}
.x83{left:227.909987px;}
.x86{left:232.589973px;}
.x8d{left:233.849987px;}
.x55{left:236.729973px;}
.x8a{left:238.889987px;}
.xac{left:240.509987px;}
.xad{left:243.749987px;}
.x87{left:244.829987px;}
.x6c{left:246.089973px;}
.x4b{left:248.069973px;}
.xba{left:250.769987px;}
.x93{left:253.109973px;}
.x5c{left:254.189973px;}
.x6d{left:258.329987px;}
.x4c{left:260.309987px;}
.x7a{left:262.649987px;}
.x94{left:265.349987px;}
.x5d{left:266.474987px;}
.x72{left:269.894987px;}
.x51{left:274.214973px;}
.x9b{left:280.694973px;}
.xb9{left:284.114987px;}
.x52{left:286.454987px;}
.xaa{left:294.194987px;}
.x2f{left:297.074973px;}
.x1c{left:298.334973px;}
.x10{left:300.674973px;}
.x1d{left:304.454987px;}
.x11{left:306.794987px;}
.xb1{left:307.874987px;}
.x30{left:309.314987px;}
.xb6{left:310.934987px;}
.xa4{left:314.174987px;}
.xb8{left:317.234987px;}
.x21{left:319.574973px;}
.xb5{left:320.654987px;}
.xaf{left:322.454987px;}
.xbe{left:324.254987px;}
.x22{left:325.694987px;}
.x40{left:328.574973px;}
.x57{left:329.654973px;}
.x3e{left:332.534973px;}
.xa9{left:333.794987px;}
.x6a{left:338.654973px;}
.x6{left:341.534987px;}
.x18{left:343.694987px;}
.x3f{left:344.774987px;}
.x9{left:346.754987px;}
.x6b{left:350.894987px;}
.x3{left:352.694987px;}
.xb3{left:353.774987px;}
.xa5{left:356.114987px;}
.xbd{left:358.274987px;}
.xb2{left:360.254987px;}
.x63{left:365.474987px;}
.x5{left:366.554987px;}
.xb4{left:375.194987px;}
.x2b{left:376.634973px;}
.xc0{left:378.974987px;}
.x99{left:380.234973px;}
.xf{left:387.434987px;}
.x2c{left:388.874987px;}
.x2d{left:390.134973px;}
.x9a{left:392.474987px;}
.xb0{left:393.734987px;}
.x7f{left:396.074973px;}
.x2a{left:398.774987px;}
.xa8{left:400.034987px;}
.x2e{left:402.374987px;}
.x43{left:406.154973px;}
.x20{left:407.414973px;}
.x64{left:409.574973px;}
.x14{left:413.534973px;}
.x75{left:414.614973px;}
.x44{left:418.394987px;}
.x15{left:419.654987px;}
.x65{left:421.814987px;}
.x7b{left:423.614973px;}
.x76{left:426.854987px;}
.x8c{left:429.734973px;}
.xbf{left:434.054987px;}
.x7c{left:435.854987px;}
.x29{left:438.194987px;}
.xc{left:442.334987px;}
.x2{left:446.474987px;}
.x92{left:447.944987px;}
.x56{left:450.464987px;}
.x70{left:459.104973px;}
.x9d{left:461.444987px;}
.x71{left:471.344987px;}
.x78{left:476.564973px;}
.xa3{left:478.544987px;}
.x79{left:488.804987px;}
.x3a{left:497.624973px;}
.x3b{left:509.864987px;}
.x49{left:526.784973px;}
.x60{left:537.944973px;}
.x4a{left:539.024987px;}
.x25{left:542.084973px;}
.xb{left:545.504987px;}
.x1e{left:548.024973px;}
.x61{left:550.184987px;}
.x1f{left:554.144987px;}
.x6e{left:559.724973px;}
.x5a{left:565.124973px;}
.x6f{left:571.964987px;}
.x5b{left:577.364987px;}
.x5e{left:587.624973px;}
.x36{left:589.784973px;}
.x58{left:593.024973px;}
.x5f{left:599.864987px;}
.x37{left:602.024987px;}
.x59{left:605.264987px;}
.x53{left:607.064973px;}
.x45{left:612.104973px;}
.xa0{left:613.904973px;}
.x54{left:619.304987px;}
.x46{left:624.344987px;}
.x38{left:626.144973px;}
.x84{left:630.149973px;}
.x85{left:631.229973px;}
.xa1{left:632.309987px;}
.x23{left:635.009973px;}
.x39{left:638.429987px;}
.x7d{left:642.569973px;}
.x9c{left:644.189987px;}
.x24{left:647.249987px;}
.x7e{left:654.809987px;}
.x32{left:657.689973px;}
.x97{left:663.989973px;}
.x33{left:669.929987px;}
.x98{left:676.229987px;}
.x31{left:691.169973px;}
.x62{left:692.969973px;}
.x8b{left:694.049973px;}
.x68{left:701.789973px;}
.x27{left:703.589973px;}
.x4d{left:705.569973px;}
.x8e{left:707.549973px;}
.x69{left:714.029987px;}
.x28{left:715.829987px;}
.x4e{left:717.809987px;}
.x8f{left:719.789987px;}
.x9e{left:728.609973px;}
.x4f{left:731.129973px;}
.x88{left:736.709973px;}
.x50{left:743.369987px;}
.x41{left:745.349973px;}
.x9f{left:746.969987px;}
.x73{left:748.949973px;}
.x95{left:753.269973px;}
.x42{left:757.589987px;}
.x74{left:761.189987px;}
.x96{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.242133pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.225067pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.117867pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.133120pt;}
.ls21{letter-spacing:0.138667pt;}
.ls12{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.736000pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls29{letter-spacing:3.840000pt;}
.ls8{letter-spacing:4.640000pt;}
.ls30{letter-spacing:5.120000pt;}
.ls2b{letter-spacing:5.280000pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls27{letter-spacing:6.560000pt;}
.ls1a{letter-spacing:8.480000pt;}
.ls2c{letter-spacing:12.160000pt;}
.lsc{letter-spacing:16.640000pt;}
.ls1e{letter-spacing:16.800000pt;}
.ls2d{letter-spacing:21.760000pt;}
.ls26{letter-spacing:39.178667pt;}
.ls22{letter-spacing:60.298667pt;}
.ws19{word-spacing:-64.000000pt;}
.ws12{word-spacing:-16.768000pt;}
.ws17{word-spacing:-16.704000pt;}
.ws16{word-spacing:-16.640000pt;}
.ws18{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.016000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.054933pt;}
.ws14{word-spacing:-13.049067pt;}
.ws13{word-spacing:-12.960000pt;}
.ws1{word-spacing:0.000000pt;}
._33{margin-left:-16.827093pt;}
._1a{margin-left:-15.472427pt;}
._15{margin-left:-14.453333pt;}
._16{margin-left:-12.821333pt;}
._19{margin-left:-11.232000pt;}
._14{margin-left:-10.171093pt;}
._1b{margin-left:-9.141333pt;}
._17{margin-left:-7.509333pt;}
._18{margin-left:-5.920000pt;}
._10{margin-left:-4.416000pt;}
._c{margin-left:-3.008000pt;}
._f{margin-left:-1.856000pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.221760pt;}
._1{width:2.395307pt;}
._9{width:3.520000pt;}
._a{width:4.841600pt;}
._11{width:5.824000pt;}
._34{width:6.714240pt;}
._27{width:7.616000pt;}
._12{width:8.640000pt;}
._13{width:9.722240pt;}
._d{width:10.688000pt;}
._e{width:11.840000pt;}
._8{width:12.746667pt;}
._7{width:14.080000pt;}
._b{width:15.034240pt;}
._3b{width:15.952427pt;}
._28{width:16.896000pt;}
._29{width:17.824000pt;}
._35{width:18.752000pt;}
._2f{width:20.416000pt;}
._38{width:21.421440pt;}
._2c{width:22.464000pt;}
._30{width:23.552000pt;}
._31{width:24.704000pt;}
._32{width:26.176000pt;}
._2a{width:27.392000pt;}
._2b{width:28.298667pt;}
._3d{width:29.787947pt;}
._3c{width:30.968960pt;}
._3e{width:32.397867pt;}
._39{width:33.344000pt;}
._3a{width:34.432000pt;}
._4f{width:35.904000pt;}
._20{width:37.674667pt;}
._4b{width:38.883840pt;}
._4c{width:39.922987pt;}
._24{width:41.194667pt;}
._4d{width:42.261333pt;}
._45{width:43.558400pt;}
._46{width:44.461440pt;}
._60{width:45.906560pt;}
._4e{width:47.104000pt;}
._1e{width:48.682667pt;}
._52{width:52.160000pt;}
._4a{width:59.494400pt;}
._49{width:61.141120pt;}
._5d{width:62.090880pt;}
._5a{width:63.168000pt;}
._2e{width:68.696107pt;}
._2d{width:69.693440pt;}
._1d{width:71.466667pt;}
._25{width:87.722667pt;}
._23{width:90.474667pt;}
._57{width:92.256000pt;}
._59{width:96.800000pt;}
._5{width:106.634667pt;}
._5f{width:108.288000pt;}
._48{width:110.043093pt;}
._47{width:111.361067pt;}
._1f{width:112.362667pt;}
._3{width:115.114667pt;}
._5e{width:116.800000pt;}
._37{width:131.869867pt;}
._36{width:132.959360pt;}
._1c{width:138.218667pt;}
._54{width:152.384000pt;}
._55{width:153.344000pt;}
._42{width:160.900480pt;}
._22{width:170.218667pt;}
._4{width:172.960000pt;}
._21{width:173.866667pt;}
._56{width:190.656000pt;}
._51{width:255.424000pt;}
._5b{width:270.400000pt;}
._43{width:299.065600pt;}
._44{width:300.315093pt;}
._41{width:328.865920pt;}
._40{width:329.928320pt;}
._5c{width:356.608000pt;}
._53{width:653.248000pt;}
._26{width:752.618667pt;}
._6{width:792.458667pt;}
._3f{width:926.040960pt;}
._58{width:1478.848000pt;}
._50{width:1653.184000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:51.040000pt;}
.y1b{bottom:68.160000pt;}
.y4d{bottom:97.312000pt;}
.ya3{bottom:97.952000pt;}
.y1a{bottom:100.832000pt;}
.y4c{bottom:101.952000pt;}
.y3d{bottom:102.432000pt;}
.ya2{bottom:102.592000pt;}
.yad{bottom:107.872000pt;}
.y4b{bottom:112.512000pt;}
.y72{bottom:113.152000pt;}
.ya1{bottom:114.112000pt;}
.y4a{bottom:117.152000pt;}
.y71{bottom:117.792000pt;}
.ya0{bottom:118.752000pt;}
.yac{bottom:123.232000pt;}
.y49{bottom:127.872000pt;}
.y70{bottom:128.832000pt;}
.y5a{bottom:128.992000pt;}
.yce{bottom:129.472000pt;}
.y9f{bottom:129.792000pt;}
.y3c{bottom:129.952000pt;}
.y48{bottom:132.512000pt;}
.y6f{bottom:133.466667pt;}
.y9e{bottom:134.426667pt;}
.yab{bottom:138.586667pt;}
.y19{bottom:139.066667pt;}
.y47{bottom:143.226667pt;}
.y83{bottom:143.866667pt;}
.y6e{bottom:144.186667pt;}
.y5e{bottom:144.346667pt;}
.y9d{bottom:145.146667pt;}
.y75{bottom:147.866667pt;}
.y82{bottom:148.506667pt;}
.y6d{bottom:148.826667pt;}
.y9c{bottom:149.786667pt;}
.yaa{bottom:153.946667pt;}
.ycd{bottom:157.146667pt;}
.y3b{bottom:157.626667pt;}
.y46{bottom:158.586667pt;}
.y7d{bottom:159.226667pt;}
.y6c{bottom:159.546667pt;}
.y9b{bottom:160.506667pt;}
.y57{bottom:163.226667pt;}
.y7c{bottom:163.866667pt;}
.y6b{bottom:164.186667pt;}
.y9a{bottom:165.146667pt;}
.ya9{bottom:169.306667pt;}
.y45{bottom:173.946667pt;}
.y7b{bottom:174.906667pt;}
.y5c{bottom:175.066667pt;}
.y6a{bottom:176.026667pt;}
.y99{bottom:176.986667pt;}
.y18{bottom:177.306667pt;}
.y66{bottom:178.586667pt;}
.y7a{bottom:179.546667pt;}
.ya8{bottom:184.506667pt;}
.ycc{bottom:184.666667pt;}
.y3a{bottom:185.146667pt;}
.ya7{bottom:189.146667pt;}
.y44{bottom:189.306667pt;}
.y79{bottom:190.106667pt;}
.yaf{bottom:190.426667pt;}
.y85{bottom:191.226667pt;}
.y43{bottom:193.946667pt;}
.y78{bottom:194.746667pt;}
.ya6{bottom:199.866667pt;}
.y56{bottom:204.506667pt;}
.y8d{bottom:205.146667pt;}
.y81{bottom:205.466667pt;}
.y42{bottom:205.626667pt;}
.y77{bottom:206.586667pt;}
.y90{bottom:209.146667pt;}
.y8c{bottom:209.786667pt;}
.y80{bottom:210.106667pt;}
.ycb{bottom:212.346667pt;}
.y39{bottom:212.826667pt;}
.y17{bottom:215.546667pt;}
.ya5{bottom:216.346667pt;}
.y69{bottom:218.906667pt;}
.y55{bottom:219.866667pt;}
.y8b{bottom:220.826667pt;}
.y8f{bottom:220.986667pt;}
.y7f{bottom:221.946667pt;}
.y54{bottom:224.506667pt;}
.y8a{bottom:225.466667pt;}
.y53{bottom:235.226667pt;}
.y97{bottom:235.866667pt;}
.y89{bottom:236.186667pt;}
.y74{bottom:236.346667pt;}
.y52{bottom:239.866667pt;}
.y38{bottom:240.346667pt;}
.y96{bottom:240.506667pt;}
.y88{bottom:240.826667pt;}
.y65{bottom:250.586667pt;}
.y95{bottom:251.546667pt;}
.y51{bottom:251.706667pt;}
.y87{bottom:252.666667pt;}
.y16{bottom:253.786667pt;}
.y64{bottom:255.226667pt;}
.y94{bottom:266.906667pt;}
.y63{bottom:267.066667pt;}
.yca{bottom:267.386667pt;}
.y37{bottom:267.866667pt;}
.y93{bottom:271.546667pt;}
.y41{bottom:273.946667pt;}
.y92{bottom:283.226667pt;}
.y15{bottom:292.186667pt;}
.yc9{bottom:295.066667pt;}
.y36{bottom:295.546667pt;}
.yc8{bottom:322.586667pt;}
.y35{bottom:323.066667pt;}
.y73{bottom:329.186667pt;}
.y14{bottom:330.466667pt;}
.yc7{bottom:350.306667pt;}
.y34{bottom:350.786667pt;}
.y5d{bottom:356.866667pt;}
.y13{bottom:368.706667pt;}
.yc6{bottom:377.826667pt;}
.y33{bottom:378.306667pt;}
.y86{bottom:384.386667pt;}
.yc5{bottom:405.506667pt;}
.y32{bottom:405.986667pt;}
.y12{bottom:406.946667pt;}
.y84{bottom:412.066667pt;}
.yc4{bottom:433.026667pt;}
.y31{bottom:433.506667pt;}
.y40{bottom:439.586667pt;}
.y11{bottom:445.186667pt;}
.yc3{bottom:460.706667pt;}
.y30{bottom:461.186667pt;}
.y62{bottom:467.266667pt;}
.y10{bottom:483.426667pt;}
.yc2{bottom:488.226667pt;}
.y2f{bottom:488.706667pt;}
.y98{bottom:494.786667pt;}
.yc1{bottom:515.906667pt;}
.y2e{bottom:516.386667pt;}
.yf{bottom:521.826667pt;}
.y50{bottom:522.466667pt;}
.yc0{bottom:543.426667pt;}
.y2d{bottom:543.906667pt;}
.ye{bottom:549.346667pt;}
.y61{bottom:549.986667pt;}
.ybf{bottom:571.133333pt;}
.y2c{bottom:571.613333pt;}
.yd{bottom:576.893333pt;}
.y4f{bottom:577.693333pt;}
.ybe{bottom:598.653333pt;}
.y2b{bottom:599.133333pt;}
.y68{bottom:605.213333pt;}
.yc{bottom:615.293333pt;}
.ybd{bottom:626.333333pt;}
.y2a{bottom:626.813333pt;}
.y3f{bottom:632.893333pt;}
.yb{bottom:651.293333pt;}
.ybc{bottom:653.853333pt;}
.y29{bottom:654.333333pt;}
.y60{bottom:660.413333pt;}
.ybb{bottom:681.533333pt;}
.y28{bottom:682.013333pt;}
.ya{bottom:684.893333pt;}
.y8e{bottom:688.093333pt;}
.yba{bottom:709.053333pt;}
.y27{bottom:709.533333pt;}
.y5f{bottom:715.613333pt;}
.y9{bottom:718.653333pt;}
.yb9{bottom:736.733333pt;}
.y26{bottom:737.213333pt;}
.y4e{bottom:743.293333pt;}
.y8{bottom:752.253333pt;}
.yb8{bottom:764.253333pt;}
.y25{bottom:764.733333pt;}
.y67{bottom:770.813333pt;}
.y7{bottom:786.053333pt;}
.yb7{bottom:791.973333pt;}
.y24{bottom:792.453333pt;}
.y3e{bottom:798.533333pt;}
.yb6{bottom:819.493333pt;}
.y23{bottom:819.973333pt;}
.y6{bottom:821.893333pt;}
.y59{bottom:826.053333pt;}
.yb5{bottom:847.173333pt;}
.y22{bottom:847.653333pt;}
.ya4{bottom:853.733333pt;}
.y5{bottom:860.133333pt;}
.yb4{bottom:874.693333pt;}
.y21{bottom:875.173333pt;}
.y91{bottom:881.253333pt;}
.y4{bottom:898.373333pt;}
.yb3{bottom:902.373333pt;}
.y20{bottom:902.853333pt;}
.y76{bottom:908.933333pt;}
.yb2{bottom:929.893333pt;}
.y1f{bottom:930.373333pt;}
.yae{bottom:936.453333pt;}
.y3{bottom:936.613333pt;}
.yb1{bottom:957.573333pt;}
.y1e{bottom:958.053333pt;}
.y7e{bottom:964.133333pt;}
.y2{bottom:974.853333pt;}
.yb0{bottom:985.093333pt;}
.y1d{bottom:985.573333pt;}
.y58{bottom:991.653333pt;}
.y1{bottom:1013.253333pt;}
.y5b{bottom:1019.360000pt;}
.h8{height:33.918750pt;}
.hd{height:34.374375pt;}
.h7{height:42.084375pt;}
.ha{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:52.834688pt;}
.h3{height:53.535000pt;}
.hc{height:57.375000pt;}
.h4{height:57.787500pt;}
.h5{height:58.563750pt;}
.he{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:113.471988pt;}
.xbc{left:115.071988pt;}
.x19{left:117.791988pt;}
.x26{left:122.111988pt;}
.x91{left:127.071988pt;}
.xae{left:129.151988pt;}
.x7{left:130.591988pt;}
.xab{left:138.266655pt;}
.x8{left:141.466655pt;}
.x80{left:145.466643pt;}
.x47{left:147.226643pt;}
.xa7{left:151.866655pt;}
.x81{left:156.346655pt;}
.x48{left:158.106655pt;}
.x16{left:159.706643pt;}
.xe{left:160.666655pt;}
.xa2{left:161.786655pt;}
.xbb{left:163.546655pt;}
.x17{left:165.146655pt;}
.x66{left:166.746643pt;}
.xd{left:170.266655pt;}
.x34{left:171.226643pt;}
.x4{left:176.026655pt;}
.x67{left:177.626655pt;}
.x90{left:180.186643pt;}
.x77{left:181.146655pt;}
.x35{left:182.106655pt;}
.x1a{left:183.706643pt;}
.x12{left:187.226643pt;}
.x3c{left:188.186643pt;}
.x1b{left:189.146655pt;}
.xa6{left:190.106655pt;}
.x82{left:191.706643pt;}
.x13{left:192.666655pt;}
.xb7{left:195.386655pt;}
.x1{left:196.666655pt;}
.x3d{left:199.066655pt;}
.x89{left:201.466643pt;}
.x83{left:202.586655pt;}
.x86{left:206.746643pt;}
.x8d{left:207.866655pt;}
.x55{left:210.426643pt;}
.x8a{left:212.346655pt;}
.xac{left:213.786655pt;}
.xad{left:216.666655pt;}
.x87{left:217.626655pt;}
.x6c{left:218.746643pt;}
.x4b{left:220.506643pt;}
.xba{left:222.906655pt;}
.x93{left:224.986643pt;}
.x5c{left:225.946643pt;}
.x6d{left:229.626655pt;}
.x4c{left:231.386655pt;}
.x7a{left:233.466655pt;}
.x94{left:235.866655pt;}
.x5d{left:236.866655pt;}
.x72{left:239.906655pt;}
.x51{left:243.746643pt;}
.x9b{left:249.506643pt;}
.xb9{left:252.546655pt;}
.x52{left:254.626655pt;}
.xaa{left:261.506655pt;}
.x2f{left:264.066643pt;}
.x1c{left:265.186643pt;}
.x10{left:267.266643pt;}
.x1d{left:270.626655pt;}
.x11{left:272.706655pt;}
.xb1{left:273.666655pt;}
.x30{left:274.946655pt;}
.xb6{left:276.386655pt;}
.xa4{left:279.266655pt;}
.xb8{left:281.986655pt;}
.x21{left:284.066643pt;}
.xb5{left:285.026655pt;}
.xaf{left:286.626655pt;}
.xbe{left:288.226655pt;}
.x22{left:289.506655pt;}
.x40{left:292.066643pt;}
.x57{left:293.026643pt;}
.x3e{left:295.586643pt;}
.xa9{left:296.706655pt;}
.x6a{left:301.026643pt;}
.x6{left:303.586655pt;}
.x18{left:305.506655pt;}
.x3f{left:306.466655pt;}
.x9{left:308.226655pt;}
.x6b{left:311.906655pt;}
.x3{left:313.506655pt;}
.xb3{left:314.466655pt;}
.xa5{left:316.546655pt;}
.xbd{left:318.466655pt;}
.xb2{left:320.226655pt;}
.x63{left:324.866655pt;}
.x5{left:325.826655pt;}
.xb4{left:333.506655pt;}
.x2b{left:334.786643pt;}
.xc0{left:336.866655pt;}
.x99{left:337.986643pt;}
.xf{left:344.386655pt;}
.x2c{left:345.666655pt;}
.x2d{left:346.786643pt;}
.x9a{left:348.866655pt;}
.xb0{left:349.986655pt;}
.x7f{left:352.066643pt;}
.x2a{left:354.466655pt;}
.xa8{left:355.586655pt;}
.x2e{left:357.666655pt;}
.x43{left:361.026643pt;}
.x20{left:362.146643pt;}
.x64{left:364.066643pt;}
.x14{left:367.586643pt;}
.x75{left:368.546643pt;}
.x44{left:371.906655pt;}
.x15{left:373.026655pt;}
.x65{left:374.946655pt;}
.x7b{left:376.546643pt;}
.x76{left:379.426655pt;}
.x8c{left:381.986643pt;}
.xbf{left:385.826655pt;}
.x7c{left:387.426655pt;}
.x29{left:389.506655pt;}
.xc{left:393.186655pt;}
.x2{left:396.866655pt;}
.x92{left:398.173322pt;}
.x56{left:400.413322pt;}
.x70{left:408.093310pt;}
.x9d{left:410.173322pt;}
.x71{left:418.973322pt;}
.x78{left:423.613310pt;}
.xa3{left:425.373322pt;}
.x79{left:434.493322pt;}
.x3a{left:442.333310pt;}
.x3b{left:453.213322pt;}
.x49{left:468.253310pt;}
.x60{left:478.173310pt;}
.x4a{left:479.133322pt;}
.x25{left:481.853310pt;}
.xb{left:484.893322pt;}
.x1e{left:487.133310pt;}
.x61{left:489.053322pt;}
.x1f{left:492.573322pt;}
.x6e{left:497.533310pt;}
.x5a{left:502.333310pt;}
.x6f{left:508.413322pt;}
.x5b{left:513.213322pt;}
.x5e{left:522.333310pt;}
.x36{left:524.253310pt;}
.x58{left:527.133310pt;}
.x5f{left:533.213322pt;}
.x37{left:535.133322pt;}
.x59{left:538.013322pt;}
.x53{left:539.613310pt;}
.x45{left:544.093310pt;}
.xa0{left:545.693310pt;}
.x54{left:550.493322pt;}
.x46{left:554.973322pt;}
.x38{left:556.573310pt;}
.x84{left:560.133310pt;}
.x85{left:561.093310pt;}
.xa1{left:562.053322pt;}
.x23{left:564.453310pt;}
.x39{left:567.493322pt;}
.x7d{left:571.173310pt;}
.x9c{left:572.613322pt;}
.x24{left:575.333322pt;}
.x7e{left:582.053322pt;}
.x32{left:584.613310pt;}
.x97{left:590.213310pt;}
.x33{left:595.493322pt;}
.x98{left:601.093322pt;}
.x31{left:614.373310pt;}
.x62{left:615.973310pt;}
.x8b{left:616.933310pt;}
.x68{left:623.813310pt;}
.x27{left:625.413310pt;}
.x4d{left:627.173310pt;}
.x8e{left:628.933310pt;}
.x69{left:634.693322pt;}
.x28{left:636.293322pt;}
.x4e{left:638.053322pt;}
.x8f{left:639.813322pt;}
.x9e{left:647.653310pt;}
.x4f{left:649.893310pt;}
.x88{left:654.853310pt;}
.x50{left:660.773322pt;}
.x41{left:662.533310pt;}
.x9f{left:663.973322pt;}
.x73{left:665.733310pt;}
.x95{left:669.573310pt;}
.x42{left:673.413322pt;}
.x74{left:676.613322pt;}
.x96{left:680.453322pt;}
}




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