
    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_a50e4126a43c2d95bfde11e9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ffe162e0ee2163679c851d95.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_56516e4fdebdc938b96843ce.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_b4feb020e884746ba36338c3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1da43c44f6c576fd88f79ba1.woff')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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.332000px;}
.lsa{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.460200px;}
.ls15{letter-spacing:-0.414600px;}
.ls27{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.109200px;}
.ls2b{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls25{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.900000px;}
.ls35{letter-spacing:1.620000px;}
.ls1a{letter-spacing:5.220000px;}
.lse{letter-spacing:5.760000px;}
.ls28{letter-spacing:5.940000px;}
.ls2a{letter-spacing:6.660000px;}
.ls29{letter-spacing:7.380000px;}
.ls26{letter-spacing:8.100000px;}
.ls1d{letter-spacing:9.540000px;}
.ls2{letter-spacing:10.944000px;}
.ls2c{letter-spacing:10.980000px;}
.ls2d{letter-spacing:13.140000px;}
.ls1c{letter-spacing:18.180000px;}
.ls2f{letter-spacing:26.100000px;}
.ls3{letter-spacing:26.945280px;}
.ls1e{letter-spacing:28.260000px;}
.ls33{letter-spacing:46.980000px;}
.ls31{letter-spacing:50.580000px;}
.ls21{letter-spacing:64.980000px;}
.ls18{letter-spacing:68.681280px;}
.ls24{letter-spacing:70.020000px;}
.ls34{letter-spacing:77.220000px;}
.ls2e{letter-spacing:93.060000px;}
.ls20{letter-spacing:97.560000px;}
.ls32{letter-spacing:106.740000px;}
.ls23{letter-spacing:149.400000px;}
.ls1f{letter-spacing:163.620000px;}
.ls36{letter-spacing:167.400000px;}
.ls22{letter-spacing:183.960000px;}
.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;}
}
.ws2{word-spacing:-21.060000px;}
.wsf{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.865400px;}
.ws13{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.297800px;}
.ws10{word-spacing:-16.254600px;}
.ws14{word-spacing:-16.145400px;}
.ws16{word-spacing:-15.948000px;}
.ws12{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.228000px;}
.ws1a{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.479800px;}
.ws4{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.520000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1.347840px;}
._0{width:1.254960px;}
._3{width:2.793120px;}
._5{width:4.440000px;}
._c{width:5.448000px;}
._a{width:7.416000px;}
._b{width:8.580000px;}
._11{width:9.631680px;}
._19{width:10.671000px;}
._8{width:11.736000px;}
._9{width:12.857040px;}
._10{width:14.736000px;}
._d{width:16.776000px;}
._1c{width:18.085440px;}
._e{width:19.512000px;}
._f{width:20.955120px;}
._12{width:21.991680px;}
._13{width:23.316480px;}
._6{width:24.480000px;}
._7{width:25.817040px;}
._1d{width:27.688320px;}
._1a{width:29.476800px;}
._1b{width:30.564480px;}
._35{width:31.570800px;}
._1e{width:33.162240px;}
._1f{width:34.226400px;}
._28{width:38.664720px;}
._29{width:40.335360px;}
._17{width:44.973360px;}
._39{width:46.732320px;}
._3a{width:48.100800px;}
._36{width:49.899600px;}
._37{width:50.975280px;}
._20{width:53.246160px;}
._21{width:54.252480px;}
._26{width:60.596640px;}
._27{width:62.034240px;}
._2d{width:63.943200px;}
._2e{width:65.437200px;}
._15{width:67.409280px;}
._31{width:69.739920px;}
._32{width:71.171040px;}
._18{width:77.927040px;}
._33{width:92.807280px;}
._34{width:93.816240px;}
._2b{width:96.392880px;}
._2a{width:97.647840px;}
._2c{width:99.245280px;}
._16{width:101.293200px;}
._38{width:106.432560px;}
._22{width:111.870720px;}
._23{width:113.426880px;}
._3b{width:121.253040px;}
._3c{width:122.754000px;}
._30{width:150.296400px;}
._24{width:163.383840px;}
._25{width:166.125840px;}
._3d{width:167.686560px;}
._1{width:168.835200px;}
._2f{width:183.941280px;}
._14{width:239.279040px;}
._2{width:899.640000px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(0,0,204);}
.fc1{color:rgb(4,98,194);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y5d{bottom:3.270000px;}
.y49{bottom:3.960000px;}
.y59{bottom:6.660000px;}
.y57{bottom:7.560000px;}
.y17d{bottom:8.640000px;}
.y50{bottom:9.180000px;}
.y62{bottom:9.540000px;}
.y64{bottom:10.440000px;}
.y72{bottom:10.485000px;}
.y69{bottom:10.620000px;}
.y45{bottom:20.520000px;}
.y48{bottom:21.240000px;}
.y5b{bottom:21.270000px;}
.y56{bottom:24.660000px;}
.y5{bottom:25.740000px;}
.y17c{bottom:25.920000px;}
.y60{bottom:41.400000px;}
.y17b{bottom:43.200000px;}
.y4{bottom:51.660000px;}
.y5f{bottom:58.680000px;}
.y17a{bottom:60.300000px;}
.y3{bottom:68.940000px;}
.y179{bottom:77.580000px;}
.y4d{bottom:87.840000px;}
.y67{bottom:94.320000px;}
.y2{bottom:98.496000px;}
.y4c{bottom:105.120000px;}
.y178{bottom:109.800000px;}
.y66{bottom:111.600000px;}
.y95{bottom:118.296000px;}
.y3a{bottom:119.736000px;}
.yc6{bottom:119.916000px;}
.y55{bottom:120.996000px;}
.y168{bottom:122.616000px;}
.y177{bottom:127.080000px;}
.yf7{bottom:128.556000px;}
.yef{bottom:133.416000px;}
.y94{bottom:137.376000px;}
.y39{bottom:138.636000px;}
.yc5{bottom:138.996000px;}
.y167{bottom:139.896000px;}
.y58{bottom:142.416000px;}
.y176{bottom:144.360000px;}
.y6f{bottom:144.945000px;}
.yf6{bottom:149.076000px;}
.y12e{bottom:151.950000px;}
.yee{bottom:152.490000px;}
.y93{bottom:156.270000px;}
.y166{bottom:157.170000px;}
.y38{bottom:157.710000px;}
.yc4{bottom:157.890000px;}
.y54{bottom:160.410000px;}
.y175{bottom:161.685000px;}
.y6e{bottom:162.225000px;}
.yf5{bottom:167.970000px;}
.y12d{bottom:169.230000px;}
.yed{bottom:171.390000px;}
.y165{bottom:174.450000px;}
.y92{bottom:175.350000px;}
.y37{bottom:176.610000px;}
.yc3{bottom:176.970000px;}
.y174{bottom:178.965000px;}
.y12c{bottom:186.510000px;}
.yf4{bottom:186.870000px;}
.yec{bottom:190.470000px;}
.y164{bottom:191.730000px;}
.y91{bottom:194.250000px;}
.y36{bottom:195.510000px;}
.y4b{bottom:195.690000px;}
.yc2{bottom:195.870000px;}
.y12b{bottom:203.790000px;}
.yf3{bottom:205.950000px;}
.y163{bottom:209.010000px;}
.yeb{bottom:209.370000px;}
.y173{bottom:211.185000px;}
.y90{bottom:213.150000px;}
.y53{bottom:213.690000px;}
.y35{bottom:214.590000px;}
.yc1{bottom:214.770000px;}
.y12a{bottom:221.070000px;}
.yf2{bottom:224.850000px;}
.y162{bottom:226.110000px;}
.yea{bottom:228.270000px;}
.y172{bottom:228.465000px;}
.y52{bottom:231.690000px;}
.y34{bottom:232.230000px;}
.yc0{bottom:233.850000px;}
.y129{bottom:238.350000px;}
.y161{bottom:243.390000px;}
.yf1{bottom:243.930000px;}
.y33{bottom:245.550000px;}
.y171{bottom:245.565000px;}
.ye9{bottom:247.350000px;}
.y51{bottom:249.690000px;}
.y8f{bottom:251.130000px;}
.ybf{bottom:252.750000px;}
.y128{bottom:255.450000px;}
.y160{bottom:260.670000px;}
.y170{bottom:262.845000px;}
.yf0{bottom:263.190000px;}
.y32{bottom:264.630000px;}
.ye8{bottom:266.250000px;}
.y8e{bottom:270.210000px;}
.ybe{bottom:271.830000px;}
.y127{bottom:272.730000px;}
.y4f{bottom:273.630000px;}
.y15f{bottom:277.950000px;}
.y16f{bottom:280.125000px;}
.y31{bottom:283.890000px;}
.ye7{bottom:285.330000px;}
.y8d{bottom:289.110000px;}
.y126{bottom:290.010000px;}
.ybd{bottom:290.730000px;}
.y15e{bottom:295.230000px;}
.y16e{bottom:297.405000px;}
.y4e{bottom:297.570000px;}
.y30{bottom:303.510000px;}
.ye6{bottom:304.230000px;}
.y125{bottom:307.290000px;}
.y8c{bottom:308.190000px;}
.ybc{bottom:309.630000px;}
.y15d{bottom:312.510000px;}
.y16d{bottom:314.685000px;}
.y47{bottom:315.570000px;}
.y2f{bottom:319.710000px;}
.ye5{bottom:323.130000px;}
.y124{bottom:324.570000px;}
.y8b{bottom:327.090000px;}
.ybb{bottom:328.710000px;}
.y15c{bottom:329.610000px;}
.y4a{bottom:333.570000px;}
.y2e{bottom:338.790000px;}
.y123{bottom:341.670000px;}
.ye4{bottom:342.210000px;}
.y8a{bottom:346.035000px;}
.y15b{bottom:346.935000px;}
.yba{bottom:347.655000px;}
.y44{bottom:351.615000px;}
.y2d{bottom:357.735000px;}
.y122{bottom:358.995000px;}
.ye3{bottom:361.155000px;}
.y15a{bottom:364.215000px;}
.y89{bottom:365.115000px;}
.yb9{bottom:366.735000px;}
.y121{bottom:376.275000px;}
.y2c{bottom:376.815000px;}
.ye2{bottom:380.235000px;}
.y159{bottom:381.495000px;}
.y88{bottom:384.015000px;}
.yb8{bottom:385.635000px;}
.y43{bottom:390.855000px;}
.y120{bottom:393.555000px;}
.y2b{bottom:395.715000px;}
.y158{bottom:398.775000px;}
.ye1{bottom:399.135000px;}
.y87{bottom:403.095000px;}
.yb7{bottom:404.715000px;}
.y11f{bottom:410.835000px;}
.y42{bottom:411.555000px;}
.y2a{bottom:414.615000px;}
.y157{bottom:416.055000px;}
.ye0{bottom:418.215000px;}
.y86{bottom:421.995000px;}
.yb6{bottom:423.615000px;}
.y11e{bottom:428.115000px;}
.y41{bottom:432.255000px;}
.y156{bottom:433.155000px;}
.y29{bottom:433.695000px;}
.ydf{bottom:437.115000px;}
.y85{bottom:440.895000px;}
.y11d{bottom:445.215000px;}
.yb5{bottom:446.835000px;}
.y155{bottom:450.435000px;}
.y28{bottom:452.595000px;}
.yde{bottom:456.015000px;}
.y84{bottom:459.975000px;}
.y11c{bottom:462.495000px;}
.yb4{bottom:466.095000px;}
.y154{bottom:467.715000px;}
.y27{bottom:471.675000px;}
.ydd{bottom:475.095000px;}
.y83{bottom:478.875000px;}
.y11b{bottom:479.775000px;}
.yb3{bottom:484.995000px;}
.y26{bottom:490.575000px;}
.ydc{bottom:493.995000px;}
.y11a{bottom:497.055000px;}
.y82{bottom:497.955000px;}
.y153{bottom:502.275000px;}
.yb2{bottom:504.075000px;}
.y25{bottom:509.475000px;}
.ydb{bottom:513.075000px;}
.y119{bottom:514.335000px;}
.y81{bottom:517.215000px;}
.y152{bottom:519.375000px;}
.yb1{bottom:522.975000px;}
.y24{bottom:528.555000px;}
.y118{bottom:531.615000px;}
.yda{bottom:531.975000px;}
.y151{bottom:536.655000px;}
.y80{bottom:537.915000px;}
.yb0{bottom:541.875000px;}
.y23{bottom:547.815000px;}
.y117{bottom:548.715000px;}
.yd9{bottom:550.875000px;}
.y150{bottom:553.935000px;}
.y7f{bottom:558.615000px;}
.yaf{bottom:560.955000px;}
.y116{bottom:565.995000px;}
.y22{bottom:566.895000px;}
.yd8{bottom:569.955000px;}
.y14f{bottom:571.215000px;}
.y7e{bottom:579.315000px;}
.y21{bottom:582.195000px;}
.y115{bottom:583.275000px;}
.yae{bottom:584.175000px;}
.y14e{bottom:588.495000px;}
.yd7{bottom:588.855000px;}
.y20{bottom:594.615000px;}
.y7d{bottom:600.015000px;}
.y114{bottom:600.555000px;}
.yad{bottom:603.435000px;}
.y14d{bottom:605.775000px;}
.yd6{bottom:607.965000px;}
.y1f{bottom:615.345000px;}
.y113{bottom:617.865000px;}
.y7c{bottom:620.745000px;}
.yac{bottom:622.365000px;}
.y14c{bottom:622.905000px;}
.yd5{bottom:626.865000px;}
.y1e{bottom:634.425000px;}
.y112{bottom:634.965000px;}
.y14b{bottom:640.185000px;}
.yab{bottom:641.265000px;}
.y7b{bottom:641.445000px;}
.yd4{bottom:645.765000px;}
.y1d{bottom:648.105000px;}
.y111{bottom:652.245000px;}
.y14a{bottom:657.465000px;}
.yaa{bottom:660.345000px;}
.y7a{bottom:662.145000px;}
.yd3{bottom:664.845000px;}
.y1c{bottom:668.805000px;}
.y110{bottom:669.525000px;}
.y149{bottom:674.745000px;}
.y16b{bottom:678.525000px;}
.ya9{bottom:679.245000px;}
.y79{bottom:682.845000px;}
.yd2{bottom:683.745000px;}
.y10f{bottom:686.805000px;}
.y1b{bottom:689.505000px;}
.y148{bottom:692.025000px;}
.ya8{bottom:698.325000px;}
.y16a{bottom:699.225000px;}
.yd1{bottom:702.825000px;}
.y78{bottom:703.545000px;}
.y10e{bottom:704.085000px;}
.y147{bottom:709.305000px;}
.y1a{bottom:710.205000px;}
.ya7{bottom:717.225000px;}
.y10d{bottom:721.365000px;}
.yd0{bottom:721.725000px;}
.y77{bottom:724.245000px;}
.y146{bottom:726.405000px;}
.y16c{bottom:728.565000px;}
.y19{bottom:730.905000px;}
.ya6{bottom:736.125000px;}
.y10c{bottom:738.465000px;}
.ycf{bottom:740.625000px;}
.y6d{bottom:741.705000px;}
.y145{bottom:743.685000px;}
.y18{bottom:751.605000px;}
.ya5{bottom:755.205000px;}
.y10b{bottom:755.745000px;}
.yce{bottom:759.705000px;}
.y144{bottom:760.965000px;}
.y76{bottom:766.905000px;}
.y17{bottom:772.305000px;}
.y10a{bottom:773.025000px;}
.ya4{bottom:774.105000px;}
.y143{bottom:778.245000px;}
.ycd{bottom:778.605000px;}
.y109{bottom:790.305000px;}
.y75{bottom:792.285000px;}
.y16{bottom:793.005000px;}
.ya3{bottom:793.185000px;}
.y142{bottom:795.525000px;}
.ycc{bottom:797.685000px;}
.y108{bottom:807.585000px;}
.ya2{bottom:812.085000px;}
.y141{bottom:812.625000px;}
.y15{bottom:813.705000px;}
.ycb{bottom:816.585000px;}
.y74{bottom:817.485000px;}
.y107{bottom:824.865000px;}
.y140{bottom:829.905000px;}
.ya1{bottom:830.985000px;}
.y14{bottom:834.405000px;}
.yca{bottom:835.485000px;}
.y106{bottom:841.965000px;}
.y73{bottom:842.685000px;}
.y13f{bottom:847.185000px;}
.ya0{bottom:850.065000px;}
.yc9{bottom:854.565000px;}
.y13{bottom:855.105000px;}
.y105{bottom:859.245000px;}
.y13e{bottom:864.465000px;}
.y71{bottom:868.065000px;}
.y9f{bottom:868.965000px;}
.yc8{bottom:873.510000px;}
.y12{bottom:875.850000px;}
.y104{bottom:877.290000px;}
.y13d{bottom:881.790000px;}
.y9e{bottom:892.410000px;}
.yc7{bottom:892.590000px;}
.y70{bottom:893.310000px;}
.y11{bottom:896.550000px;}
.y103{bottom:897.990000px;}
.y13c{bottom:899.070000px;}
.y9d{bottom:911.490000px;}
.y13b{bottom:916.170000px;}
.y10{bottom:917.250000px;}
.y102{bottom:918.330000px;}
.y65{bottom:918.690000px;}
.y9c{bottom:930.570000px;}
.y13a{bottom:933.450000px;}
.yf{bottom:935.250000px;}
.y101{bottom:937.590000px;}
.y6c{bottom:943.890000px;}
.ye{bottom:946.590000px;}
.y9b{bottom:949.470000px;}
.y139{bottom:950.730000px;}
.y100{bottom:958.290000px;}
.yd{bottom:959.010000px;}
.y138{bottom:968.010000px;}
.y9a{bottom:968.370000px;}
.y6b{bottom:969.090000px;}
.yff{bottom:978.810000px;}
.y137{bottom:985.290000px;}
.y99{bottom:987.450000px;}
.y6a{bottom:994.470000px;}
.yc{bottom:995.550000px;}
.yfe{bottom:997.710000px;}
.y136{bottom:1002.570000px;}
.y98{bottom:1006.350000px;}
.yb{bottom:1016.250000px;}
.yfd{bottom:1016.970000px;}
.y68{bottom:1019.670000px;}
.y97{bottom:1025.430000px;}
.ya{bottom:1030.110000px;}
.y135{bottom:1036.950000px;}
.yfc{bottom:1037.670000px;}
.y96{bottom:1044.330000px;}
.y5e{bottom:1045.050000px;}
.y40{bottom:1051.350000px;}
.y134{bottom:1054.230000px;}
.y9{bottom:1057.650000px;}
.yfb{bottom:1058.190000px;}
.y3f{bottom:1063.230000px;}
.y63{bottom:1070.250000px;}
.y133{bottom:1071.510000px;}
.yfa{bottom:1077.450000px;}
.y8{bottom:1080.510000px;}
.y3e{bottom:1082.310000px;}
.y169{bottom:1086.090000px;}
.y132{bottom:1088.790000px;}
.y61{bottom:1094.190000px;}
.yf9{bottom:1098.150000px;}
.y3d{bottom:1101.210000px;}
.y131{bottom:1106.070000px;}
.y7{bottom:1110.750000px;}
.y5a{bottom:1118.490000px;}
.y3c{bottom:1120.290000px;}
.y130{bottom:1123.170000px;}
.y6{bottom:1134.870000px;}
.y5c{bottom:1136.490000px;}
.yf8{bottom:1137.750000px;}
.y3b{bottom:1139.220000px;}
.y12f{bottom:1140.480000px;}
.y1{bottom:1194.480000px;}
.h9{height:16.764258px;}
.h14{height:17.280000px;}
.h13{height:17.316000px;}
.h18{height:20.700000px;}
.h1b{height:23.040000px;}
.h16{height:23.220000px;}
.h1a{height:23.580000px;}
.h1c{height:24.480000px;}
.h20{height:24.516000px;}
.h1e{height:24.660000px;}
.h8{height:25.400391px;}
.hb{height:29.464453px;}
.hf{height:32.273438px;}
.h10{height:34.560000px;}
.h12{height:35.316000px;}
.ha{height:37.437188px;}
.h17{height:38.700000px;}
.h7{height:39.760312px;}
.h11{height:42.164648px;}
.h5{height:43.246406px;}
.h22{height:48.224531px;}
.he{height:48.410156px;}
.h23{height:50.800781px;}
.hc{height:52.417969px;}
.h2{height:53.573906px;}
.h21{height:55.735313px;}
.h6{height:59.343750px;}
.hd{height:59.383125px;}
.h3{height:59.436914px;}
.h4{height:64.546875px;}
.h19{height:72.720000px;}
.h15{height:119.160000px;}
.h1d{height:125.640000px;}
.h1f{height:176.070000px;}
.h24{height:328.710000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:39.240000px;}
.w5{width:126.360000px;}
.w4{width:126.756000px;}
.w6{width:384.915000px;}
.w7{width:685.185000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x16{left:10.800000px;}
.x15{left:103.716000px;}
.x1{left:108.035987px;}
.x12{left:129.275987px;}
.xc{left:135.035987px;}
.xb{left:140.075987px;}
.x4{left:145.475987px;}
.xf{left:148.536000px;}
.x6{left:154.829987px;}
.x13{left:162.029987px;}
.x8{left:191.549987px;}
.xd{left:196.229987px;}
.x9{left:208.649987px;}
.xa{left:266.114987px;}
.x10{left:276.015000px;}
.x3{left:322.274987px;}
.x7{left:347.834987px;}
.x5{left:348.914987px;}
.x11{left:403.275000px;}
.x14{left:460.184987px;}
.x2{left:785.309987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.184000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.409067pt;}
.ls15{letter-spacing:-0.368533pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.097067pt;}
.ls2b{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls25{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:4.640000pt;}
.lse{letter-spacing:5.120000pt;}
.ls28{letter-spacing:5.280000pt;}
.ls2a{letter-spacing:5.920000pt;}
.ls29{letter-spacing:6.560000pt;}
.ls26{letter-spacing:7.200000pt;}
.ls1d{letter-spacing:8.480000pt;}
.ls2{letter-spacing:9.728000pt;}
.ls2c{letter-spacing:9.760000pt;}
.ls2d{letter-spacing:11.680000pt;}
.ls1c{letter-spacing:16.160000pt;}
.ls2f{letter-spacing:23.200000pt;}
.ls3{letter-spacing:23.951360pt;}
.ls1e{letter-spacing:25.120000pt;}
.ls33{letter-spacing:41.760000pt;}
.ls31{letter-spacing:44.960000pt;}
.ls21{letter-spacing:57.760000pt;}
.ls18{letter-spacing:61.050027pt;}
.ls24{letter-spacing:62.240000pt;}
.ls34{letter-spacing:68.640000pt;}
.ls2e{letter-spacing:82.720000pt;}
.ls20{letter-spacing:86.720000pt;}
.ls32{letter-spacing:94.880000pt;}
.ls23{letter-spacing:132.800000pt;}
.ls1f{letter-spacing:145.440000pt;}
.ls36{letter-spacing:148.800000pt;}
.ls22{letter-spacing:163.520000pt;}
.ws2{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws13{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.486933pt;}
.ws10{word-spacing:-14.448533pt;}
.ws14{word-spacing:-14.351467pt;}
.ws16{word-spacing:-14.176000pt;}
.ws12{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.536000pt;}
.ws1a{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.870933pt;}
.ws4{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.240000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._3{width:2.482773pt;}
._5{width:3.946667pt;}
._c{width:4.842667pt;}
._a{width:6.592000pt;}
._b{width:7.626667pt;}
._11{width:8.561493pt;}
._19{width:9.485333pt;}
._8{width:10.432000pt;}
._9{width:11.428480pt;}
._10{width:13.098667pt;}
._d{width:14.912000pt;}
._1c{width:16.075947pt;}
._e{width:17.344000pt;}
._f{width:18.626773pt;}
._12{width:19.548160pt;}
._13{width:20.725760pt;}
._6{width:21.760000pt;}
._7{width:22.948480pt;}
._1d{width:24.611840pt;}
._1a{width:26.201600pt;}
._1b{width:27.168427pt;}
._35{width:28.062933pt;}
._1e{width:29.477547pt;}
._1f{width:30.423467pt;}
._28{width:34.368640pt;}
._29{width:35.853653pt;}
._17{width:39.976320pt;}
._39{width:41.539840pt;}
._3a{width:42.756267pt;}
._36{width:44.355200pt;}
._37{width:45.311360pt;}
._20{width:47.329920pt;}
._21{width:48.224427pt;}
._26{width:53.863680pt;}
._27{width:55.141547pt;}
._2d{width:56.838400pt;}
._2e{width:58.166400pt;}
._15{width:59.919360pt;}
._31{width:61.991040pt;}
._32{width:63.263147pt;}
._18{width:69.268480pt;}
._33{width:82.495360pt;}
._34{width:83.392213pt;}
._2b{width:85.682560pt;}
._2a{width:86.798080pt;}
._2c{width:88.218027pt;}
._16{width:90.038400pt;}
._38{width:94.606720pt;}
._22{width:99.440640pt;}
._23{width:100.823893pt;}
._3b{width:107.780480pt;}
._3c{width:109.114667pt;}
._30{width:133.596800pt;}
._24{width:145.230080pt;}
._25{width:147.667413pt;}
._3d{width:149.054720pt;}
._1{width:150.075733pt;}
._2f{width:163.503360pt;}
._14{width:212.692480pt;}
._2{width:799.680000pt;}
.fs5{font-size:21.120000pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y5d{bottom:2.906667pt;}
.y49{bottom:3.520000pt;}
.y59{bottom:5.920000pt;}
.y57{bottom:6.720000pt;}
.y17d{bottom:7.680000pt;}
.y50{bottom:8.160000pt;}
.y62{bottom:8.480000pt;}
.y64{bottom:9.280000pt;}
.y72{bottom:9.320000pt;}
.y69{bottom:9.440000pt;}
.y45{bottom:18.240000pt;}
.y48{bottom:18.880000pt;}
.y5b{bottom:18.906667pt;}
.y56{bottom:21.920000pt;}
.y5{bottom:22.880000pt;}
.y17c{bottom:23.040000pt;}
.y60{bottom:36.800000pt;}
.y17b{bottom:38.400000pt;}
.y4{bottom:45.920000pt;}
.y5f{bottom:52.160000pt;}
.y17a{bottom:53.600000pt;}
.y3{bottom:61.280000pt;}
.y179{bottom:68.960000pt;}
.y4d{bottom:78.080000pt;}
.y67{bottom:83.840000pt;}
.y2{bottom:87.552000pt;}
.y4c{bottom:93.440000pt;}
.y178{bottom:97.600000pt;}
.y66{bottom:99.200000pt;}
.y95{bottom:105.152000pt;}
.y3a{bottom:106.432000pt;}
.yc6{bottom:106.592000pt;}
.y55{bottom:107.552000pt;}
.y168{bottom:108.992000pt;}
.y177{bottom:112.960000pt;}
.yf7{bottom:114.272000pt;}
.yef{bottom:118.592000pt;}
.y94{bottom:122.112000pt;}
.y39{bottom:123.232000pt;}
.yc5{bottom:123.552000pt;}
.y167{bottom:124.352000pt;}
.y58{bottom:126.592000pt;}
.y176{bottom:128.320000pt;}
.y6f{bottom:128.840000pt;}
.yf6{bottom:132.512000pt;}
.y12e{bottom:135.066667pt;}
.yee{bottom:135.546667pt;}
.y93{bottom:138.906667pt;}
.y166{bottom:139.706667pt;}
.y38{bottom:140.186667pt;}
.yc4{bottom:140.346667pt;}
.y54{bottom:142.586667pt;}
.y175{bottom:143.720000pt;}
.y6e{bottom:144.200000pt;}
.yf5{bottom:149.306667pt;}
.y12d{bottom:150.426667pt;}
.yed{bottom:152.346667pt;}
.y165{bottom:155.066667pt;}
.y92{bottom:155.866667pt;}
.y37{bottom:156.986667pt;}
.yc3{bottom:157.306667pt;}
.y174{bottom:159.080000pt;}
.y12c{bottom:165.786667pt;}
.yf4{bottom:166.106667pt;}
.yec{bottom:169.306667pt;}
.y164{bottom:170.426667pt;}
.y91{bottom:172.666667pt;}
.y36{bottom:173.786667pt;}
.y4b{bottom:173.946667pt;}
.yc2{bottom:174.106667pt;}
.y12b{bottom:181.146667pt;}
.yf3{bottom:183.066667pt;}
.y163{bottom:185.786667pt;}
.yeb{bottom:186.106667pt;}
.y173{bottom:187.720000pt;}
.y90{bottom:189.466667pt;}
.y53{bottom:189.946667pt;}
.y35{bottom:190.746667pt;}
.yc1{bottom:190.906667pt;}
.y12a{bottom:196.506667pt;}
.yf2{bottom:199.866667pt;}
.y162{bottom:200.986667pt;}
.yea{bottom:202.906667pt;}
.y172{bottom:203.080000pt;}
.y52{bottom:205.946667pt;}
.y34{bottom:206.426667pt;}
.yc0{bottom:207.866667pt;}
.y129{bottom:211.866667pt;}
.y161{bottom:216.346667pt;}
.yf1{bottom:216.826667pt;}
.y33{bottom:218.266667pt;}
.y171{bottom:218.280000pt;}
.ye9{bottom:219.866667pt;}
.y51{bottom:221.946667pt;}
.y8f{bottom:223.226667pt;}
.ybf{bottom:224.666667pt;}
.y128{bottom:227.066667pt;}
.y160{bottom:231.706667pt;}
.y170{bottom:233.640000pt;}
.yf0{bottom:233.946667pt;}
.y32{bottom:235.226667pt;}
.ye8{bottom:236.666667pt;}
.y8e{bottom:240.186667pt;}
.ybe{bottom:241.626667pt;}
.y127{bottom:242.426667pt;}
.y4f{bottom:243.226667pt;}
.y15f{bottom:247.066667pt;}
.y16f{bottom:249.000000pt;}
.y31{bottom:252.346667pt;}
.ye7{bottom:253.626667pt;}
.y8d{bottom:256.986667pt;}
.y126{bottom:257.786667pt;}
.ybd{bottom:258.426667pt;}
.y15e{bottom:262.426667pt;}
.y16e{bottom:264.360000pt;}
.y4e{bottom:264.506667pt;}
.y30{bottom:269.786667pt;}
.ye6{bottom:270.426667pt;}
.y125{bottom:273.146667pt;}
.y8c{bottom:273.946667pt;}
.ybc{bottom:275.226667pt;}
.y15d{bottom:277.786667pt;}
.y16d{bottom:279.720000pt;}
.y47{bottom:280.506667pt;}
.y2f{bottom:284.186667pt;}
.ye5{bottom:287.226667pt;}
.y124{bottom:288.506667pt;}
.y8b{bottom:290.746667pt;}
.ybb{bottom:292.186667pt;}
.y15c{bottom:292.986667pt;}
.y4a{bottom:296.506667pt;}
.y2e{bottom:301.146667pt;}
.y123{bottom:303.706667pt;}
.ye4{bottom:304.186667pt;}
.y8a{bottom:307.586667pt;}
.y15b{bottom:308.386667pt;}
.yba{bottom:309.026667pt;}
.y44{bottom:312.546667pt;}
.y2d{bottom:317.986667pt;}
.y122{bottom:319.106667pt;}
.ye3{bottom:321.026667pt;}
.y15a{bottom:323.746667pt;}
.y89{bottom:324.546667pt;}
.yb9{bottom:325.986667pt;}
.y121{bottom:334.466667pt;}
.y2c{bottom:334.946667pt;}
.ye2{bottom:337.986667pt;}
.y159{bottom:339.106667pt;}
.y88{bottom:341.346667pt;}
.yb8{bottom:342.786667pt;}
.y43{bottom:347.426667pt;}
.y120{bottom:349.826667pt;}
.y2b{bottom:351.746667pt;}
.y158{bottom:354.466667pt;}
.ye1{bottom:354.786667pt;}
.y87{bottom:358.306667pt;}
.yb7{bottom:359.746667pt;}
.y11f{bottom:365.186667pt;}
.y42{bottom:365.826667pt;}
.y2a{bottom:368.546667pt;}
.y157{bottom:369.826667pt;}
.ye0{bottom:371.746667pt;}
.y86{bottom:375.106667pt;}
.yb6{bottom:376.546667pt;}
.y11e{bottom:380.546667pt;}
.y41{bottom:384.226667pt;}
.y156{bottom:385.026667pt;}
.y29{bottom:385.506667pt;}
.ydf{bottom:388.546667pt;}
.y85{bottom:391.906667pt;}
.y11d{bottom:395.746667pt;}
.yb5{bottom:397.186667pt;}
.y155{bottom:400.386667pt;}
.y28{bottom:402.306667pt;}
.yde{bottom:405.346667pt;}
.y84{bottom:408.866667pt;}
.y11c{bottom:411.106667pt;}
.yb4{bottom:414.306667pt;}
.y154{bottom:415.746667pt;}
.y27{bottom:419.266667pt;}
.ydd{bottom:422.306667pt;}
.y83{bottom:425.666667pt;}
.y11b{bottom:426.466667pt;}
.yb3{bottom:431.106667pt;}
.y26{bottom:436.066667pt;}
.ydc{bottom:439.106667pt;}
.y11a{bottom:441.826667pt;}
.y82{bottom:442.626667pt;}
.y153{bottom:446.466667pt;}
.yb2{bottom:448.066667pt;}
.y25{bottom:452.866667pt;}
.ydb{bottom:456.066667pt;}
.y119{bottom:457.186667pt;}
.y81{bottom:459.746667pt;}
.y152{bottom:461.666667pt;}
.yb1{bottom:464.866667pt;}
.y24{bottom:469.826667pt;}
.y118{bottom:472.546667pt;}
.yda{bottom:472.866667pt;}
.y151{bottom:477.026667pt;}
.y80{bottom:478.146667pt;}
.yb0{bottom:481.666667pt;}
.y23{bottom:486.946667pt;}
.y117{bottom:487.746667pt;}
.yd9{bottom:489.666667pt;}
.y150{bottom:492.386667pt;}
.y7f{bottom:496.546667pt;}
.yaf{bottom:498.626667pt;}
.y116{bottom:503.106667pt;}
.y22{bottom:503.906667pt;}
.yd8{bottom:506.626667pt;}
.y14f{bottom:507.746667pt;}
.y7e{bottom:514.946667pt;}
.y21{bottom:517.506667pt;}
.y115{bottom:518.466667pt;}
.yae{bottom:519.266667pt;}
.y14e{bottom:523.106667pt;}
.yd7{bottom:523.426667pt;}
.y20{bottom:528.546667pt;}
.y7d{bottom:533.346667pt;}
.y114{bottom:533.826667pt;}
.yad{bottom:536.386667pt;}
.y14d{bottom:538.466667pt;}
.yd6{bottom:540.413333pt;}
.y1f{bottom:546.973333pt;}
.y113{bottom:549.213333pt;}
.y7c{bottom:551.773333pt;}
.yac{bottom:553.213333pt;}
.y14c{bottom:553.693333pt;}
.yd5{bottom:557.213333pt;}
.y1e{bottom:563.933333pt;}
.y112{bottom:564.413333pt;}
.y14b{bottom:569.053333pt;}
.yab{bottom:570.013333pt;}
.y7b{bottom:570.173333pt;}
.yd4{bottom:574.013333pt;}
.y1d{bottom:576.093333pt;}
.y111{bottom:579.773333pt;}
.y14a{bottom:584.413333pt;}
.yaa{bottom:586.973333pt;}
.y7a{bottom:588.573333pt;}
.yd3{bottom:590.973333pt;}
.y1c{bottom:594.493333pt;}
.y110{bottom:595.133333pt;}
.y149{bottom:599.773333pt;}
.y16b{bottom:603.133333pt;}
.ya9{bottom:603.773333pt;}
.y79{bottom:606.973333pt;}
.yd2{bottom:607.773333pt;}
.y10f{bottom:610.493333pt;}
.y1b{bottom:612.893333pt;}
.y148{bottom:615.133333pt;}
.ya8{bottom:620.733333pt;}
.y16a{bottom:621.533333pt;}
.yd1{bottom:624.733333pt;}
.y78{bottom:625.373333pt;}
.y10e{bottom:625.853333pt;}
.y147{bottom:630.493333pt;}
.y1a{bottom:631.293333pt;}
.ya7{bottom:637.533333pt;}
.y10d{bottom:641.213333pt;}
.yd0{bottom:641.533333pt;}
.y77{bottom:643.773333pt;}
.y146{bottom:645.693333pt;}
.y16c{bottom:647.613333pt;}
.y19{bottom:649.693333pt;}
.ya6{bottom:654.333333pt;}
.y10c{bottom:656.413333pt;}
.ycf{bottom:658.333333pt;}
.y6d{bottom:659.293333pt;}
.y145{bottom:661.053333pt;}
.y18{bottom:668.093333pt;}
.ya5{bottom:671.293333pt;}
.y10b{bottom:671.773333pt;}
.yce{bottom:675.293333pt;}
.y144{bottom:676.413333pt;}
.y76{bottom:681.693333pt;}
.y17{bottom:686.493333pt;}
.y10a{bottom:687.133333pt;}
.ya4{bottom:688.093333pt;}
.y143{bottom:691.773333pt;}
.ycd{bottom:692.093333pt;}
.y109{bottom:702.493333pt;}
.y75{bottom:704.253333pt;}
.y16{bottom:704.893333pt;}
.ya3{bottom:705.053333pt;}
.y142{bottom:707.133333pt;}
.ycc{bottom:709.053333pt;}
.y108{bottom:717.853333pt;}
.ya2{bottom:721.853333pt;}
.y141{bottom:722.333333pt;}
.y15{bottom:723.293333pt;}
.ycb{bottom:725.853333pt;}
.y74{bottom:726.653333pt;}
.y107{bottom:733.213333pt;}
.y140{bottom:737.693333pt;}
.ya1{bottom:738.653333pt;}
.y14{bottom:741.693333pt;}
.yca{bottom:742.653333pt;}
.y106{bottom:748.413333pt;}
.y73{bottom:749.053333pt;}
.y13f{bottom:753.053333pt;}
.ya0{bottom:755.613333pt;}
.yc9{bottom:759.613333pt;}
.y13{bottom:760.093333pt;}
.y105{bottom:763.773333pt;}
.y13e{bottom:768.413333pt;}
.y71{bottom:771.613333pt;}
.y9f{bottom:772.413333pt;}
.yc8{bottom:776.453333pt;}
.y12{bottom:778.533333pt;}
.y104{bottom:779.813333pt;}
.y13d{bottom:783.813333pt;}
.y9e{bottom:793.253333pt;}
.yc7{bottom:793.413333pt;}
.y70{bottom:794.053333pt;}
.y11{bottom:796.933333pt;}
.y103{bottom:798.213333pt;}
.y13c{bottom:799.173333pt;}
.y9d{bottom:810.213333pt;}
.y13b{bottom:814.373333pt;}
.y10{bottom:815.333333pt;}
.y102{bottom:816.293333pt;}
.y65{bottom:816.613333pt;}
.y9c{bottom:827.173333pt;}
.y13a{bottom:829.733333pt;}
.yf{bottom:831.333333pt;}
.y101{bottom:833.413333pt;}
.y6c{bottom:839.013333pt;}
.ye{bottom:841.413333pt;}
.y9b{bottom:843.973333pt;}
.y139{bottom:845.093333pt;}
.y100{bottom:851.813333pt;}
.yd{bottom:852.453333pt;}
.y138{bottom:860.453333pt;}
.y9a{bottom:860.773333pt;}
.y6b{bottom:861.413333pt;}
.yff{bottom:870.053333pt;}
.y137{bottom:875.813333pt;}
.y99{bottom:877.733333pt;}
.y6a{bottom:883.973333pt;}
.yc{bottom:884.933333pt;}
.yfe{bottom:886.853333pt;}
.y136{bottom:891.173333pt;}
.y98{bottom:894.533333pt;}
.yb{bottom:903.333333pt;}
.yfd{bottom:903.973333pt;}
.y68{bottom:906.373333pt;}
.y97{bottom:911.493333pt;}
.ya{bottom:915.653333pt;}
.y135{bottom:921.733333pt;}
.yfc{bottom:922.373333pt;}
.y96{bottom:928.293333pt;}
.y5e{bottom:928.933333pt;}
.y40{bottom:934.533333pt;}
.y134{bottom:937.093333pt;}
.y9{bottom:940.133333pt;}
.yfb{bottom:940.613333pt;}
.y3f{bottom:945.093333pt;}
.y63{bottom:951.333333pt;}
.y133{bottom:952.453333pt;}
.yfa{bottom:957.733333pt;}
.y8{bottom:960.453333pt;}
.y3e{bottom:962.053333pt;}
.y169{bottom:965.413333pt;}
.y132{bottom:967.813333pt;}
.y61{bottom:972.613333pt;}
.yf9{bottom:976.133333pt;}
.y3d{bottom:978.853333pt;}
.y131{bottom:983.173333pt;}
.y7{bottom:987.333333pt;}
.y5a{bottom:994.213333pt;}
.y3c{bottom:995.813333pt;}
.y130{bottom:998.373333pt;}
.y6{bottom:1008.773333pt;}
.y5c{bottom:1010.213333pt;}
.yf8{bottom:1011.333333pt;}
.y3b{bottom:1012.640000pt;}
.y12f{bottom:1013.760000pt;}
.y1{bottom:1061.760000pt;}
.h9{height:14.901562pt;}
.h14{height:15.360000pt;}
.h13{height:15.392000pt;}
.h18{height:18.400000pt;}
.h1b{height:20.480000pt;}
.h16{height:20.640000pt;}
.h1a{height:20.960000pt;}
.h1c{height:21.760000pt;}
.h20{height:21.792000pt;}
.h1e{height:21.920000pt;}
.h8{height:22.578125pt;}
.hb{height:26.190625pt;}
.hf{height:28.687500pt;}
.h10{height:30.720000pt;}
.h12{height:31.392000pt;}
.ha{height:33.277500pt;}
.h17{height:34.400000pt;}
.h7{height:35.342500pt;}
.h11{height:37.479688pt;}
.h5{height:38.441250pt;}
.h22{height:42.866250pt;}
.he{height:43.031250pt;}
.h23{height:45.156250pt;}
.hc{height:46.593750pt;}
.h2{height:47.621250pt;}
.h21{height:49.542500pt;}
.h6{height:52.750000pt;}
.hd{height:52.785000pt;}
.h3{height:52.832812pt;}
.h4{height:57.375000pt;}
.h19{height:64.640000pt;}
.h15{height:105.920000pt;}
.h1d{height:111.680000pt;}
.h1f{height:156.506667pt;}
.h24{height:292.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:34.880000pt;}
.w5{width:112.320000pt;}
.w4{width:112.672000pt;}
.w6{width:342.146667pt;}
.w7{width:609.053333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x16{left:9.600000pt;}
.x15{left:92.192000pt;}
.x1{left:96.031988pt;}
.x12{left:114.911988pt;}
.xc{left:120.031988pt;}
.xb{left:124.511988pt;}
.x4{left:129.311988pt;}
.xf{left:132.032000pt;}
.x6{left:137.626655pt;}
.x13{left:144.026655pt;}
.x8{left:170.266655pt;}
.xd{left:174.426655pt;}
.x9{left:185.466655pt;}
.xa{left:236.546655pt;}
.x10{left:245.346667pt;}
.x3{left:286.466655pt;}
.x7{left:309.186655pt;}
.x5{left:310.146655pt;}
.x11{left:358.466667pt;}
.x14{left:409.053322pt;}
.x2{left:698.053322pt;}
}




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