
    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_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3bf887ffd41f028acc817ef5.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_d2107673dcbdd35f47009e08.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a1e18130a22ad52389665555.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b8d508c99d345509d16839f3.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_70f5f4153f5b0f8be2b5059b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ee6495497f175fcd72cc7159.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0cc2dd3f73265a2c3d0679c6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_594feec2d0ef7775202198b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_9c4516d5d8a26258f7d76055.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952637;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;}
.ls9{letter-spacing:-2.160000px;}
.ls10{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.792000px;}
.lsc{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.440000px;}
.ls13{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.320000px;}
.ls1a{letter-spacing:11.520000px;}
.ls15{letter-spacing:13.680000px;}
.lsf{letter-spacing:15.840000px;}
.ls1f{letter-spacing:17.280000px;}
.lse{letter-spacing:24.456000px;}
.ls16{letter-spacing:26.640000px;}
.ls4{letter-spacing:30.384000px;}
.ls0{letter-spacing:33.984000px;}
.ls3{letter-spacing:194.376000px;}
.ls1b{letter-spacing:197.976000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws3{word-spacing:-17.208000px;}
.ws8{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.226440px;}
.ws9{word-spacing:-14.940000px;}
.wse{word-spacing:-0.077760px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-10.800000px;}
._1d{margin-left:-9.360000px;}
._d{margin-left:-2.160000px;}
._0{margin-left:-1.126080px;}
._1{width:1.534080px;}
._f{width:2.638080px;}
._6{width:3.672000px;}
._7{width:5.328000px;}
._9{width:6.336000px;}
._a{width:7.404000px;}
._14{width:8.976000px;}
._b{width:9.984000px;}
._3{width:11.736000px;}
._4{width:12.960000px;}
._5{width:14.844000px;}
._10{width:16.260000px;}
._8{width:19.176000px;}
._e{width:20.736000px;}
._c{width:22.320000px;}
._16{width:24.192000px;}
._15{width:25.200000px;}
._11{width:26.280000px;}
._12{width:28.152000px;}
._1b{width:29.725920px;}
._1f{width:30.764160px;}
._24{width:31.795200px;}
._25{width:33.054720px;}
._1e{width:34.776000px;}
._19{width:36.624000px;}
._17{width:39.600000px;}
._18{width:40.680000px;}
._13{width:44.784000px;}
._26{width:46.152000px;}
._27{width:47.160000px;}
._1a{width:51.397920px;}
._28{width:86.400000px;}
._23{width:133.200000px;}
._22{width:180.000000px;}
._21{width:190.800000px;}
._2{width:194.376000px;}
._1c{width:197.976000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.600000px;}
.y2{bottom:77.760000px;}
.y28{bottom:109.800000px;}
.y176{bottom:115.560000px;}
.y4a{bottom:116.640000px;}
.y6c{bottom:127.080000px;}
.y14b{bottom:127.800000px;}
.y49{bottom:127.980000px;}
.y27{bottom:129.600000px;}
.y15c{bottom:132.660000px;}
.y6b{bottom:133.920000px;}
.y14a{bottom:134.640000px;}
.y26{bottom:136.440000px;}
.y77{bottom:144.360000px;}
.y6a{bottom:145.260000px;}
.y149{bottom:145.980000px;}
.y175{bottom:146.520000px;}
.y25{bottom:146.880000px;}
.y15f{bottom:148.680000px;}
.y76{bottom:151.200000px;}
.y24{bottom:153.720000px;}
.y174{bottom:160.740000px;}
.ya1{bottom:161.640000px;}
.y75{bottom:162.540000px;}
.y48{bottom:163.620000px;}
.y23{bottom:165.060000px;}
.ya0{bottom:168.480000px;}
.y69{bottom:177.690000px;}
.y9f{bottom:178.950000px;}
.y15e{bottom:179.670000px;}
.ycf{bottom:179.850000px;}
.y161{bottom:180.750000px;}
.y9e{bottom:185.790000px;}
.y173{bottom:191.730000px;}
.y110{bottom:193.710000px;}
.y47{bottom:194.790000px;}
.y22{bottom:196.230000px;}
.ybf{bottom:197.130000px;}
.y9d{bottom:203.070000px;}
.y67{bottom:208.650000px;}
.y73{bottom:209.730000px;}
.y158{bottom:210.810000px;}
.y9c{bottom:213.330000px;}
.yf4{bottom:214.230000px;}
.y68{bottom:216.930000px;}
.y74{bottom:218.010000px;}
.y9b{bottom:220.170000px;}
.y172{bottom:222.870000px;}
.yce{bottom:224.130000px;}
.y10f{bottom:224.670000px;}
.y46{bottom:225.390000px;}
.y150{bottom:225.750000px;}
.y160{bottom:226.830000px;}
.y21{bottom:227.370000px;}
.y9a{bottom:230.610000px;}
.ye2{bottom:231.510000px;}
.y99{bottom:237.450000px;}
.y66{bottom:239.790000px;}
.y72{bottom:240.690000px;}
.y157{bottom:241.770000px;}
.y12f{bottom:247.890000px;}
.y102{bottom:248.070000px;}
.y98{bottom:248.790000px;}
.y171{bottom:253.830000px;}
.y138{bottom:254.730000px;}
.ybe{bottom:255.270000px;}
.y10e{bottom:255.810000px;}
.y14e{bottom:256.710000px;}
.y20{bottom:258.330000px;}
.y148{bottom:262.470000px;}
.y14f{bottom:264.990000px;}
.y12e{bottom:265.170000px;}
.y65{bottom:270.750000px;}
.y45{bottom:271.830000px;}
.y137{bottom:272.010000px;}
.y156{bottom:272.910000px;}
.ye1{bottom:275.970000px;}
.y12d{bottom:282.450000px;}
.y136{bottom:283.350000px;}
.y170{bottom:284.970000px;}
.ybc{bottom:286.230000px;}
.y10d{bottom:286.770000px;}
.y14d{bottom:287.850000px;}
.y97{bottom:288.930000px;}
.y1f{bottom:289.470000px;}
.y147{bottom:293.610000px;}
.ybd{bottom:294.510000px;}
.y12c{bottom:299.550000px;}
.y64{bottom:301.710000px;}
.y44{bottom:302.790000px;}
.y155{bottom:303.870000px;}
.ye0{bottom:306.930000px;}
.yea{bottom:311.070000px;}
.y16f{bottom:315.930000px;}
.y12b{bottom:316.830000px;}
.ybb{bottom:317.370000px;}
.y10c{bottom:317.910000px;}
.y135{bottom:318.810000px;}
.y95{bottom:319.890000px;}
.y1e{bottom:320.430000px;}
.y146{bottom:324.570000px;}
.ycd{bottom:325.650000px;}
.y96{bottom:328.170000px;}
.y63{bottom:332.850000px;}
.y43{bottom:333.930000px;}
.y12a{bottom:334.110000px;}
.y154{bottom:335.010000px;}
.yde{bottom:338.070000px;}
.yf3{bottom:341.130000px;}
.y71{bottom:342.210000px;}
.ydf{bottom:346.350000px;}
.y16e{bottom:347.070000px;}
.yba{bottom:348.330000px;}
.y10b{bottom:348.870000px;}
.y134{bottom:349.950000px;}
.y94{bottom:351.030000px;}
.y129{bottom:351.390000px;}
.y145{bottom:355.710000px;}
.y62{bottom:363.810000px;}
.y42{bottom:364.890000px;}
.y1c{bottom:366.510000px;}
.y128{bottom:368.670000px;}
.ydd{bottom:369.030000px;}
.y1d{bottom:374.790000px;}
.y127{bottom:375.510000px;}
.y16d{bottom:378.030000px;}
.yb9{bottom:379.470000px;}
.y10a{bottom:380.010000px;}
.y153{bottom:380.550000px;}
.y133{bottom:380.910000px;}
.y93{bottom:381.990000px;}
.y144{bottom:386.670000px;}
.y126{bottom:386.850000px;}
.yfe{bottom:387.750000px;}
.yf1{bottom:394.590000px;}
.y61{bottom:394.950000px;}
.y70{bottom:395.670000px;}
.y41{bottom:396.030000px;}
.y1b{bottom:397.470000px;}
.ydc{bottom:400.170000px;}
.ye9{bottom:404.310000px;}
.y16c{bottom:409.170000px;}
.yb8{bottom:410.070000px;}
.ycc{bottom:410.430000px;}
.y109{bottom:410.970000px;}
.y125{bottom:412.050000px;}
.y91{bottom:413.175000px;}
.y92{bottom:421.455000px;}
.y60{bottom:425.955000px;}
.y40{bottom:427.035000px;}
.y1a{bottom:428.655000px;}
.ydb{bottom:431.175000px;}
.y143{bottom:432.795000px;}
.y101{bottom:434.235000px;}
.y14c{bottom:435.315000px;}
.y16b{bottom:440.175000px;}
.yb7{bottom:441.615000px;}
.y6f{bottom:441.795000px;}
.y108{bottom:442.155000px;}
.y124{bottom:443.055000px;}
.y90{bottom:444.135000px;}
.y5f{bottom:457.095000px;}
.y3f{bottom:458.175000px;}
.y19{bottom:459.615000px;}
.y142{bottom:463.755000px;}
.yda{bottom:464.655000px;}
.yf0{bottom:465.375000px;}
.y16a{bottom:471.315000px;}
.yfd{bottom:471.495000px;}
.yb5{bottom:472.575000px;}
.y6e{bottom:472.755000px;}
.y107{bottom:473.115000px;}
.y123{bottom:474.195000px;}
.y8e{bottom:475.275000px;}
.yb6{bottom:480.855000px;}
.y8f{bottom:483.555000px;}
.y5e{bottom:488.055000px;}
.y3e{bottom:489.135000px;}
.y18{bottom:490.755000px;}
.y141{bottom:494.895000px;}
.yef{bottom:496.335000px;}
.yd8{bottom:497.415000px;}
.yfb{bottom:499.935000px;}
.y169{bottom:502.275000px;}
.yb4{bottom:503.715000px;}
.y106{bottom:504.255000px;}
.yd9{bottom:504.975000px;}
.y122{bottom:505.155000px;}
.y8d{bottom:505.875000px;}
.yfc{bottom:507.495000px;}
.y5d{bottom:519.195000px;}
.y3d{bottom:520.275000px;}
.y17{bottom:521.715000px;}
.yd7{bottom:525.855000px;}
.y6d{bottom:527.475000px;}
.yfa{bottom:528.375000px;}
.ye8{bottom:528.555000px;}
.y168{bottom:533.415000px;}
.yb3{bottom:534.675000px;}
.y15b{bottom:535.215000px;}
.y120{bottom:536.295000px;}
.y8c{bottom:537.195000px;}
.y121{bottom:544.575000px;}
.y105{bottom:549.795000px;}
.y5c{bottom:550.155000px;}
.y3c{bottom:551.235000px;}
.y16{bottom:552.855000px;}
.yd6{bottom:554.295000px;}
.yf9{bottom:556.815000px;}
.y167{bottom:564.375000px;}
.yb2{bottom:565.815000px;}
.y15a{bottom:566.355000px;}
.y11e{bottom:567.255000px;}
.y8a{bottom:568.335000px;}
.y13f{bottom:570.855000px;}
.y11f{bottom:575.535000px;}
.y8b{bottom:576.615000px;}
.y140{bottom:578.415000px;}
.y104{bottom:580.935000px;}
.y5b{bottom:581.295000px;}
.y3b{bottom:582.375000px;}
.yd5{bottom:582.735000px;}
.y15{bottom:583.815000px;}
.yf8{bottom:585.255000px;}
.yee{bottom:589.575000px;}
.y152{bottom:590.655000px;}
.y166{bottom:595.515000px;}
.yb1{bottom:596.775000px;}
.y159{bottom:597.315000px;}
.y11d{bottom:598.395000px;}
.y89{bottom:599.295000px;}
.y5a{bottom:612.255000px;}
.ye7{bottom:613.335000px;}
.yf7{bottom:613.695000px;}
.y14{bottom:614.955000px;}
.yed{bottom:620.535000px;}
.y165{bottom:626.475000px;}
.y13e{bottom:627.735000px;}
.yb0{bottom:627.915000px;}
.y3a{bottom:628.275000px;}
.y11c{bottom:629.355000px;}
.y88{bottom:630.435000px;}
.y59{bottom:643.395000px;}
.y15d{bottom:644.115000px;}
.y131{bottom:644.475000px;}
.y13{bottom:645.915000px;}
.yf2{bottom:651.675000px;}
.y132{bottom:652.755000px;}
.y13d{bottom:656.205000px;}
.y164{bottom:657.645000px;}
.yaf{bottom:658.905000px;}
.y39{bottom:659.445000px;}
.y87{bottom:661.425000px;}
.ycb{bottom:667.185000px;}
.y58{bottom:674.385000px;}
.y11a{bottom:675.465000px;}
.y12{bottom:677.085000px;}
.y100{bottom:682.665000px;}
.y11b{bottom:683.745000px;}
.y13c{bottom:684.645000px;}
.y163{bottom:688.605000px;}
.yad{bottom:690.045000px;}
.y37{bottom:690.405000px;}
.y86{bottom:692.565000px;}
.yae{bottom:698.325000px;}
.y38{bottom:698.685000px;}
.y57{bottom:705.525000px;}
.y119{bottom:706.605000px;}
.y13b{bottom:713.085000px;}
.yd4{bottom:713.805000px;}
.y162{bottom:719.745000px;}
.yac{bottom:721.005000px;}
.y36{bottom:721.545000px;}
.y10{bottom:723.165000px;}
.y85{bottom:723.525000px;}
.y11{bottom:731.445000px;}
.y56{bottom:736.485000px;}
.y118{bottom:737.565000px;}
.y13a{bottom:741.525000px;}
.yd3{bottom:744.765000px;}
.yab{bottom:752.145000px;}
.y35{bottom:752.505000px;}
.yf{bottom:754.125000px;}
.y83{bottom:754.665000px;}
.y151{bottom:760.785000px;}
.y84{bottom:762.945000px;}
.yf6{bottom:767.265000px;}
.y55{bottom:767.625000px;}
.y117{bottom:768.705000px;}
.y139{bottom:770.145000px;}
.y103{bottom:775.905000px;}
.yaa{bottom:783.105000px;}
.y34{bottom:783.645000px;}
.ye{bottom:785.265000px;}
.y82{bottom:785.625000px;}
.ye6{bottom:791.925000px;}
.y54{bottom:798.585000px;}
.y116{bottom:799.665000px;}
.ya9{bottom:812.985000px;}
.yca{bottom:814.065000px;}
.y33{bottom:814.605000px;}
.yd{bottom:816.225000px;}
.y81{bottom:816.765000px;}
.y53{bottom:829.725000px;}
.y115{bottom:830.805000px;}
.yd2{bottom:838.005000px;}
.ya7{bottom:841.425000px;}
.yc9{bottom:845.205000px;}
.y32{bottom:845.745000px;}
.y80{bottom:846.645000px;}
.yc{bottom:847.365000px;}
.ya8{bottom:848.985000px;}
.y52{bottom:860.685000px;}
.y114{bottom:861.765000px;}
.yff{bottom:868.965000px;}
.ya6{bottom:869.865000px;}
.y7e{bottom:875.085000px;}
.yc8{bottom:876.165000px;}
.y31{bottom:876.705000px;}
.yb{bottom:878.325000px;}
.y7f{bottom:882.645000px;}
.yd1{bottom:891.465000px;}
.y51{bottom:891.825000px;}
.y113{bottom:892.905000px;}
.ya5{bottom:898.305000px;}
.y7d{bottom:903.570000px;}
.yc7{bottom:907.350000px;}
.y30{bottom:907.890000px;}
.ya{bottom:909.510000px;}
.ye5{bottom:922.470000px;}
.y50{bottom:922.830000px;}
.ya4{bottom:926.970000px;}
.yec{bottom:931.110000px;}
.y7c{bottom:932.010000px;}
.yc6{bottom:937.230000px;}
.y2f{bottom:938.850000px;}
.y9{bottom:940.470000px;}
.y130{bottom:947.130000px;}
.y4f{bottom:953.970000px;}
.ya3{bottom:955.410000px;}
.y7b{bottom:960.450000px;}
.yd0{bottom:962.250000px;}
.yc4{bottom:965.670000px;}
.y2e{bottom:969.990000px;}
.y8{bottom:971.610000px;}
.yc5{bottom:973.230000px;}
.y4e{bottom:984.930000px;}
.y7a{bottom:989.070000px;}
.ye4{bottom:993.210000px;}
.yc3{bottom:994.110000px;}
.y2d{bottom:1000.950000px;}
.y4d{bottom:1016.070000px;}
.y7{bottom:1017.150000px;}
.y79{bottom:1017.510000px;}
.yc2{bottom:1022.550000px;}
.yf5{bottom:1024.350000px;}
.y2c{bottom:1032.090000px;}
.y4c{bottom:1047.030000px;}
.yc1{bottom:1051.170000px;}
.y6{bottom:1053.330000px;}
.ye3{bottom:1055.310000px;}
.y2b{bottom:1063.050000px;}
.y4b{bottom:1078.170000px;}
.yc0{bottom:1079.610000px;}
.yeb{bottom:1086.450000px;}
.y5{bottom:1088.970000px;}
.y112{bottom:1094.190000px;}
.y2a{bottom:1109.130000px;}
.ya2{bottom:1117.410000px;}
.y4{bottom:1137.570000px;}
.y111{bottom:1139.910000px;}
.y29{bottom:1140.270000px;}
.y78{bottom:1148.580000px;}
.y1{bottom:1194.300000px;}
.h8{height:38.158594px;}
.hd{height:40.985156px;}
.h2{height:45.184219px;}
.he{height:47.321367px;}
.h7{height:47.344922px;}
.h9{height:58.651172px;}
.hc{height:59.383125px;}
.hf{height:64.546875px;}
.hb{height:65.010937px;}
.h10{height:70.628906px;}
.h4{height:70.664062px;}
.h11{height:71.824219px;}
.ha{height:72.562500px;}
.h5{height:74.953125px;}
.h3{height:82.676953px;}
.h6{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xc{left:132.516000px;}
.x28{left:137.376000px;}
.x3{left:141.696000px;}
.x6{left:154.650000px;}
.x29{left:164.548125px;}
.x67{left:172.648125px;}
.x77{left:175.708125px;}
.x2a{left:176.790000px;}
.x44{left:178.048125px;}
.xf{left:180.750000px;}
.x3b{left:185.608125px;}
.x78{left:187.950000px;}
.x45{left:190.290000px;}
.x31{left:195.150000px;}
.x35{left:196.588125px;}
.x3c{left:197.850000px;}
.x36{left:208.830000px;}
.x71{left:210.810000px;}
.x1e{left:228.628125px;}
.x1a{left:233.850000px;}
.x1f{left:240.870000px;}
.x75{left:245.730000px;}
.x7{left:250.588125px;}
.x8{left:256.710000px;}
.x85{left:262.648125px;}
.x57{left:264.268125px;}
.x70{left:265.528125px;}
.x3f{left:266.788125px;}
.x32{left:271.513125px;}
.x86{left:274.935000px;}
.x24{left:277.093125px;}
.x33{left:281.955000px;}
.x42{left:283.035000px;}
.x25{left:289.335000px;}
.x64{left:291.673125px;}
.x51{left:294.373125px;}
.x76{left:295.635000px;}
.x65{left:302.115000px;}
.x52{left:306.615000px;}
.x79{left:308.595000px;}
.x58{left:309.673125px;}
.x82{left:320.473125px;}
.x59{left:321.915000px;}
.x9{left:327.673125px;}
.x1d{left:332.173125px;}
.xa{left:333.795000px;}
.x89{left:342.613125px;}
.xb{left:343.695000px;}
.x60{left:346.573125px;}
.x8a{left:354.855000px;}
.x22{left:359.173125px;}
.x5{left:361.515000px;}
.x4{left:366.555000px;}
.x23{left:371.415000px;}
.x4f{left:374.293125px;}
.x62{left:382.573125px;}
.x16{left:385.093125px;}
.x50{left:386.535000px;}
.x17{left:391.215000px;}
.x63{left:394.815000px;}
.x61{left:404.355000px;}
.x40{left:409.033125px;}
.x5e{left:414.433125px;}
.x87{left:415.873125px;}
.x41{left:421.275000px;}
.x5f{left:426.675000px;}
.x88{left:428.115000px;}
.x14{left:433.693125px;}
.x15{left:439.815000px;}
.x8b{left:450.103125px;}
.x7a{left:457.123125px;}
.x8c{left:462.345000px;}
.x6a{left:467.923125px;}
.x7b{left:469.365000px;}
.x3a{left:473.143125px;}
.x5a{left:475.663125px;}
.x6b{left:480.165000px;}
.x34{left:481.603125px;}
.x2e{left:486.103125px;}
.x5b{left:487.905000px;}
.x20{left:493.303125px;}
.x66{left:494.385000px;}
.x2f{left:498.345000px;}
.x21{left:505.545000px;}
.x37{left:511.123125px;}
.x10{left:514.363125px;}
.x80{left:516.703125px;}
.x11{left:520.485000px;}
.x38{left:523.365000px;}
.x43{left:526.425000px;}
.x81{left:528.945000px;}
.x1b{left:532.183125px;}
.x1c{left:537.405000px;}
.x53{left:541.543125px;}
.x6c{left:547.483125px;}
.x54{left:553.785000px;}
.x6d{left:559.725000px;}
.x68{left:561.163125px;}
.x69{left:573.405000px;}
.x72{left:584.923125px;}
.x4b{left:587.623125px;}
.x73{left:597.165000px;}
.x4c{left:599.865000px;}
.x5d{left:611.925000px;}
.x6e{left:615.163125px;}
.x46{left:620.203125px;}
.x18{left:625.963125px;}
.x6f{left:627.405000px;}
.x26{left:629.788125px;}
.x19{left:632.130000px;}
.x27{left:642.030000px;}
.x8d{left:643.830000px;}
.x12{left:651.568125px;}
.x49{left:653.548125px;}
.x13{left:657.690000px;}
.x4a{left:665.790000px;}
.x2b{left:668.308125px;}
.x30{left:669.930000px;}
.x4d{left:675.148125px;}
.x7d{left:676.228125px;}
.x2c{left:678.750000px;}
.x39{left:680.730000px;}
.x4e{left:687.390000px;}
.x7e{left:688.470000px;}
.x5c{left:692.790000px;}
.x55{left:703.768125px;}
.x56{left:716.010000px;}
.x47{left:717.988125px;}
.x83{left:722.128125px;}
.x3d{left:726.808125px;}
.x7c{left:729.150000px;}
.x48{left:730.230000px;}
.x84{left:734.370000px;}
.x74{left:735.988125px;}
.x3e{left:739.050000px;}
.x7f{left:743.190000px;}
.x2d{left:748.948125px;}
.xd{left:755.068125px;}
.x2{left:757.230000px;}
.xe{left:761.190000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.920000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.704000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.800000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls1a{letter-spacing:10.240000pt;}
.ls15{letter-spacing:12.160000pt;}
.lsf{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:15.360000pt;}
.lse{letter-spacing:21.738667pt;}
.ls16{letter-spacing:23.680000pt;}
.ls4{letter-spacing:27.008000pt;}
.ls0{letter-spacing:30.208000pt;}
.ls3{letter-spacing:172.778667pt;}
.ls1b{letter-spacing:175.978667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws3{word-spacing:-15.296000pt;}
.ws8{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.280000pt;}
.wse{word-spacing:-0.069120pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-9.600000pt;}
._1d{margin-left:-8.320000pt;}
._d{margin-left:-1.920000pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.363627pt;}
._f{width:2.344960pt;}
._6{width:3.264000pt;}
._7{width:4.736000pt;}
._9{width:5.632000pt;}
._a{width:6.581333pt;}
._14{width:7.978667pt;}
._b{width:8.874667pt;}
._3{width:10.432000pt;}
._4{width:11.520000pt;}
._5{width:13.194667pt;}
._10{width:14.453333pt;}
._8{width:17.045333pt;}
._e{width:18.432000pt;}
._c{width:19.840000pt;}
._16{width:21.504000pt;}
._15{width:22.400000pt;}
._11{width:23.360000pt;}
._12{width:25.024000pt;}
._1b{width:26.423040pt;}
._1f{width:27.345920pt;}
._24{width:28.262400pt;}
._25{width:29.381973pt;}
._1e{width:30.912000pt;}
._19{width:32.554667pt;}
._17{width:35.200000pt;}
._18{width:36.160000pt;}
._13{width:39.808000pt;}
._26{width:41.024000pt;}
._27{width:41.920000pt;}
._1a{width:45.687040pt;}
._28{width:76.800000pt;}
._23{width:118.400000pt;}
._22{width:160.000000pt;}
._21{width:169.600000pt;}
._2{width:172.778667pt;}
._1c{width:175.978667pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:69.120000pt;}
.y28{bottom:97.600000pt;}
.y176{bottom:102.720000pt;}
.y4a{bottom:103.680000pt;}
.y6c{bottom:112.960000pt;}
.y14b{bottom:113.600000pt;}
.y49{bottom:113.760000pt;}
.y27{bottom:115.200000pt;}
.y15c{bottom:117.920000pt;}
.y6b{bottom:119.040000pt;}
.y14a{bottom:119.680000pt;}
.y26{bottom:121.280000pt;}
.y77{bottom:128.320000pt;}
.y6a{bottom:129.120000pt;}
.y149{bottom:129.760000pt;}
.y175{bottom:130.240000pt;}
.y25{bottom:130.560000pt;}
.y15f{bottom:132.160000pt;}
.y76{bottom:134.400000pt;}
.y24{bottom:136.640000pt;}
.y174{bottom:142.880000pt;}
.ya1{bottom:143.680000pt;}
.y75{bottom:144.480000pt;}
.y48{bottom:145.440000pt;}
.y23{bottom:146.720000pt;}
.ya0{bottom:149.760000pt;}
.y69{bottom:157.946667pt;}
.y9f{bottom:159.066667pt;}
.y15e{bottom:159.706667pt;}
.ycf{bottom:159.866667pt;}
.y161{bottom:160.666667pt;}
.y9e{bottom:165.146667pt;}
.y173{bottom:170.426667pt;}
.y110{bottom:172.186667pt;}
.y47{bottom:173.146667pt;}
.y22{bottom:174.426667pt;}
.ybf{bottom:175.226667pt;}
.y9d{bottom:180.506667pt;}
.y67{bottom:185.466667pt;}
.y73{bottom:186.426667pt;}
.y158{bottom:187.386667pt;}
.y9c{bottom:189.626667pt;}
.yf4{bottom:190.426667pt;}
.y68{bottom:192.826667pt;}
.y74{bottom:193.786667pt;}
.y9b{bottom:195.706667pt;}
.y172{bottom:198.106667pt;}
.yce{bottom:199.226667pt;}
.y10f{bottom:199.706667pt;}
.y46{bottom:200.346667pt;}
.y150{bottom:200.666667pt;}
.y160{bottom:201.626667pt;}
.y21{bottom:202.106667pt;}
.y9a{bottom:204.986667pt;}
.ye2{bottom:205.786667pt;}
.y99{bottom:211.066667pt;}
.y66{bottom:213.146667pt;}
.y72{bottom:213.946667pt;}
.y157{bottom:214.906667pt;}
.y12f{bottom:220.346667pt;}
.y102{bottom:220.506667pt;}
.y98{bottom:221.146667pt;}
.y171{bottom:225.626667pt;}
.y138{bottom:226.426667pt;}
.ybe{bottom:226.906667pt;}
.y10e{bottom:227.386667pt;}
.y14e{bottom:228.186667pt;}
.y20{bottom:229.626667pt;}
.y148{bottom:233.306667pt;}
.y14f{bottom:235.546667pt;}
.y12e{bottom:235.706667pt;}
.y65{bottom:240.666667pt;}
.y45{bottom:241.626667pt;}
.y137{bottom:241.786667pt;}
.y156{bottom:242.586667pt;}
.ye1{bottom:245.306667pt;}
.y12d{bottom:251.066667pt;}
.y136{bottom:251.866667pt;}
.y170{bottom:253.306667pt;}
.ybc{bottom:254.426667pt;}
.y10d{bottom:254.906667pt;}
.y14d{bottom:255.866667pt;}
.y97{bottom:256.826667pt;}
.y1f{bottom:257.306667pt;}
.y147{bottom:260.986667pt;}
.ybd{bottom:261.786667pt;}
.y12c{bottom:266.266667pt;}
.y64{bottom:268.186667pt;}
.y44{bottom:269.146667pt;}
.y155{bottom:270.106667pt;}
.ye0{bottom:272.826667pt;}
.yea{bottom:276.506667pt;}
.y16f{bottom:280.826667pt;}
.y12b{bottom:281.626667pt;}
.ybb{bottom:282.106667pt;}
.y10c{bottom:282.586667pt;}
.y135{bottom:283.386667pt;}
.y95{bottom:284.346667pt;}
.y1e{bottom:284.826667pt;}
.y146{bottom:288.506667pt;}
.ycd{bottom:289.466667pt;}
.y96{bottom:291.706667pt;}
.y63{bottom:295.866667pt;}
.y43{bottom:296.826667pt;}
.y12a{bottom:296.986667pt;}
.y154{bottom:297.786667pt;}
.yde{bottom:300.506667pt;}
.yf3{bottom:303.226667pt;}
.y71{bottom:304.186667pt;}
.ydf{bottom:307.866667pt;}
.y16e{bottom:308.506667pt;}
.yba{bottom:309.626667pt;}
.y10b{bottom:310.106667pt;}
.y134{bottom:311.066667pt;}
.y94{bottom:312.026667pt;}
.y129{bottom:312.346667pt;}
.y145{bottom:316.186667pt;}
.y62{bottom:323.386667pt;}
.y42{bottom:324.346667pt;}
.y1c{bottom:325.786667pt;}
.y128{bottom:327.706667pt;}
.ydd{bottom:328.026667pt;}
.y1d{bottom:333.146667pt;}
.y127{bottom:333.786667pt;}
.y16d{bottom:336.026667pt;}
.yb9{bottom:337.306667pt;}
.y10a{bottom:337.786667pt;}
.y153{bottom:338.266667pt;}
.y133{bottom:338.586667pt;}
.y93{bottom:339.546667pt;}
.y144{bottom:343.706667pt;}
.y126{bottom:343.866667pt;}
.yfe{bottom:344.666667pt;}
.yf1{bottom:350.746667pt;}
.y61{bottom:351.066667pt;}
.y70{bottom:351.706667pt;}
.y41{bottom:352.026667pt;}
.y1b{bottom:353.306667pt;}
.ydc{bottom:355.706667pt;}
.ye9{bottom:359.386667pt;}
.y16c{bottom:363.706667pt;}
.yb8{bottom:364.506667pt;}
.ycc{bottom:364.826667pt;}
.y109{bottom:365.306667pt;}
.y125{bottom:366.266667pt;}
.y91{bottom:367.266667pt;}
.y92{bottom:374.626667pt;}
.y60{bottom:378.626667pt;}
.y40{bottom:379.586667pt;}
.y1a{bottom:381.026667pt;}
.ydb{bottom:383.266667pt;}
.y143{bottom:384.706667pt;}
.y101{bottom:385.986667pt;}
.y14c{bottom:386.946667pt;}
.y16b{bottom:391.266667pt;}
.yb7{bottom:392.546667pt;}
.y6f{bottom:392.706667pt;}
.y108{bottom:393.026667pt;}
.y124{bottom:393.826667pt;}
.y90{bottom:394.786667pt;}
.y5f{bottom:406.306667pt;}
.y3f{bottom:407.266667pt;}
.y19{bottom:408.546667pt;}
.y142{bottom:412.226667pt;}
.yda{bottom:413.026667pt;}
.yf0{bottom:413.666667pt;}
.y16a{bottom:418.946667pt;}
.yfd{bottom:419.106667pt;}
.yb5{bottom:420.066667pt;}
.y6e{bottom:420.226667pt;}
.y107{bottom:420.546667pt;}
.y123{bottom:421.506667pt;}
.y8e{bottom:422.466667pt;}
.yb6{bottom:427.426667pt;}
.y8f{bottom:429.826667pt;}
.y5e{bottom:433.826667pt;}
.y3e{bottom:434.786667pt;}
.y18{bottom:436.226667pt;}
.y141{bottom:439.906667pt;}
.yef{bottom:441.186667pt;}
.yd8{bottom:442.146667pt;}
.yfb{bottom:444.386667pt;}
.y169{bottom:446.466667pt;}
.yb4{bottom:447.746667pt;}
.y106{bottom:448.226667pt;}
.yd9{bottom:448.866667pt;}
.y122{bottom:449.026667pt;}
.y8d{bottom:449.666667pt;}
.yfc{bottom:451.106667pt;}
.y5d{bottom:461.506667pt;}
.y3d{bottom:462.466667pt;}
.y17{bottom:463.746667pt;}
.yd7{bottom:467.426667pt;}
.y6d{bottom:468.866667pt;}
.yfa{bottom:469.666667pt;}
.ye8{bottom:469.826667pt;}
.y168{bottom:474.146667pt;}
.yb3{bottom:475.266667pt;}
.y15b{bottom:475.746667pt;}
.y120{bottom:476.706667pt;}
.y8c{bottom:477.506667pt;}
.y121{bottom:484.066667pt;}
.y105{bottom:488.706667pt;}
.y5c{bottom:489.026667pt;}
.y3c{bottom:489.986667pt;}
.y16{bottom:491.426667pt;}
.yd6{bottom:492.706667pt;}
.yf9{bottom:494.946667pt;}
.y167{bottom:501.666667pt;}
.yb2{bottom:502.946667pt;}
.y15a{bottom:503.426667pt;}
.y11e{bottom:504.226667pt;}
.y8a{bottom:505.186667pt;}
.y13f{bottom:507.426667pt;}
.y11f{bottom:511.586667pt;}
.y8b{bottom:512.546667pt;}
.y140{bottom:514.146667pt;}
.y104{bottom:516.386667pt;}
.y5b{bottom:516.706667pt;}
.y3b{bottom:517.666667pt;}
.yd5{bottom:517.986667pt;}
.y15{bottom:518.946667pt;}
.yf8{bottom:520.226667pt;}
.yee{bottom:524.066667pt;}
.y152{bottom:525.026667pt;}
.y166{bottom:529.346667pt;}
.yb1{bottom:530.466667pt;}
.y159{bottom:530.946667pt;}
.y11d{bottom:531.906667pt;}
.y89{bottom:532.706667pt;}
.y5a{bottom:544.226667pt;}
.ye7{bottom:545.186667pt;}
.yf7{bottom:545.506667pt;}
.y14{bottom:546.626667pt;}
.yed{bottom:551.586667pt;}
.y165{bottom:556.866667pt;}
.y13e{bottom:557.986667pt;}
.yb0{bottom:558.146667pt;}
.y3a{bottom:558.466667pt;}
.y11c{bottom:559.426667pt;}
.y88{bottom:560.386667pt;}
.y59{bottom:571.906667pt;}
.y15d{bottom:572.546667pt;}
.y131{bottom:572.866667pt;}
.y13{bottom:574.146667pt;}
.yf2{bottom:579.266667pt;}
.y132{bottom:580.226667pt;}
.y13d{bottom:583.293333pt;}
.y164{bottom:584.573333pt;}
.yaf{bottom:585.693333pt;}
.y39{bottom:586.173333pt;}
.y87{bottom:587.933333pt;}
.ycb{bottom:593.053333pt;}
.y58{bottom:599.453333pt;}
.y11a{bottom:600.413333pt;}
.y12{bottom:601.853333pt;}
.y100{bottom:606.813333pt;}
.y11b{bottom:607.773333pt;}
.y13c{bottom:608.573333pt;}
.y163{bottom:612.093333pt;}
.yad{bottom:613.373333pt;}
.y37{bottom:613.693333pt;}
.y86{bottom:615.613333pt;}
.yae{bottom:620.733333pt;}
.y38{bottom:621.053333pt;}
.y57{bottom:627.133333pt;}
.y119{bottom:628.093333pt;}
.y13b{bottom:633.853333pt;}
.yd4{bottom:634.493333pt;}
.y162{bottom:639.773333pt;}
.yac{bottom:640.893333pt;}
.y36{bottom:641.373333pt;}
.y10{bottom:642.813333pt;}
.y85{bottom:643.133333pt;}
.y11{bottom:650.173333pt;}
.y56{bottom:654.653333pt;}
.y118{bottom:655.613333pt;}
.y13a{bottom:659.133333pt;}
.yd3{bottom:662.013333pt;}
.yab{bottom:668.573333pt;}
.y35{bottom:668.893333pt;}
.yf{bottom:670.333333pt;}
.y83{bottom:670.813333pt;}
.y151{bottom:676.253333pt;}
.y84{bottom:678.173333pt;}
.yf6{bottom:682.013333pt;}
.y55{bottom:682.333333pt;}
.y117{bottom:683.293333pt;}
.y139{bottom:684.573333pt;}
.y103{bottom:689.693333pt;}
.yaa{bottom:696.093333pt;}
.y34{bottom:696.573333pt;}
.ye{bottom:698.013333pt;}
.y82{bottom:698.333333pt;}
.ye6{bottom:703.933333pt;}
.y54{bottom:709.853333pt;}
.y116{bottom:710.813333pt;}
.ya9{bottom:722.653333pt;}
.yca{bottom:723.613333pt;}
.y33{bottom:724.093333pt;}
.yd{bottom:725.533333pt;}
.y81{bottom:726.013333pt;}
.y53{bottom:737.533333pt;}
.y115{bottom:738.493333pt;}
.yd2{bottom:744.893333pt;}
.ya7{bottom:747.933333pt;}
.yc9{bottom:751.293333pt;}
.y32{bottom:751.773333pt;}
.y80{bottom:752.573333pt;}
.yc{bottom:753.213333pt;}
.ya8{bottom:754.653333pt;}
.y52{bottom:765.053333pt;}
.y114{bottom:766.013333pt;}
.yff{bottom:772.413333pt;}
.ya6{bottom:773.213333pt;}
.y7e{bottom:777.853333pt;}
.yc8{bottom:778.813333pt;}
.y31{bottom:779.293333pt;}
.yb{bottom:780.733333pt;}
.y7f{bottom:784.573333pt;}
.yd1{bottom:792.413333pt;}
.y51{bottom:792.733333pt;}
.y113{bottom:793.693333pt;}
.ya5{bottom:798.493333pt;}
.y7d{bottom:803.173333pt;}
.yc7{bottom:806.533333pt;}
.y30{bottom:807.013333pt;}
.ya{bottom:808.453333pt;}
.ye5{bottom:819.973333pt;}
.y50{bottom:820.293333pt;}
.ya4{bottom:823.973333pt;}
.yec{bottom:827.653333pt;}
.y7c{bottom:828.453333pt;}
.yc6{bottom:833.093333pt;}
.y2f{bottom:834.533333pt;}
.y9{bottom:835.973333pt;}
.y130{bottom:841.893333pt;}
.y4f{bottom:847.973333pt;}
.ya3{bottom:849.253333pt;}
.y7b{bottom:853.733333pt;}
.yd0{bottom:855.333333pt;}
.yc4{bottom:858.373333pt;}
.y2e{bottom:862.213333pt;}
.y8{bottom:863.653333pt;}
.yc5{bottom:865.093333pt;}
.y4e{bottom:875.493333pt;}
.y7a{bottom:879.173333pt;}
.ye4{bottom:882.853333pt;}
.yc3{bottom:883.653333pt;}
.y2d{bottom:889.733333pt;}
.y4d{bottom:903.173333pt;}
.y7{bottom:904.133333pt;}
.y79{bottom:904.453333pt;}
.yc2{bottom:908.933333pt;}
.yf5{bottom:910.533333pt;}
.y2c{bottom:917.413333pt;}
.y4c{bottom:930.693333pt;}
.yc1{bottom:934.373333pt;}
.y6{bottom:936.293333pt;}
.ye3{bottom:938.053333pt;}
.y2b{bottom:944.933333pt;}
.y4b{bottom:958.373333pt;}
.yc0{bottom:959.653333pt;}
.yeb{bottom:965.733333pt;}
.y5{bottom:967.973333pt;}
.y112{bottom:972.613333pt;}
.y2a{bottom:985.893333pt;}
.ya2{bottom:993.253333pt;}
.y4{bottom:1011.173333pt;}
.y111{bottom:1013.253333pt;}
.y29{bottom:1013.573333pt;}
.y78{bottom:1020.960000pt;}
.y1{bottom:1061.600000pt;}
.h8{height:33.918750pt;}
.hd{height:36.431250pt;}
.h2{height:40.163750pt;}
.he{height:42.063437pt;}
.h7{height:42.084375pt;}
.h9{height:52.134375pt;}
.hc{height:52.785000pt;}
.hf{height:57.375000pt;}
.hb{height:57.787500pt;}
.h10{height:62.781250pt;}
.h4{height:62.812500pt;}
.h11{height:63.843750pt;}
.ha{height:64.500000pt;}
.h5{height:66.625000pt;}
.h3{height:73.490625pt;}
.h6{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xc{left:117.792000pt;}
.x28{left:122.112000pt;}
.x3{left:125.952000pt;}
.x6{left:137.466667pt;}
.x29{left:146.265000pt;}
.x67{left:153.465000pt;}
.x77{left:156.185000pt;}
.x2a{left:157.146667pt;}
.x44{left:158.265000pt;}
.xf{left:160.666667pt;}
.x3b{left:164.985000pt;}
.x78{left:167.066667pt;}
.x45{left:169.146667pt;}
.x31{left:173.466667pt;}
.x35{left:174.745000pt;}
.x3c{left:175.866667pt;}
.x36{left:185.626667pt;}
.x71{left:187.386667pt;}
.x1e{left:203.225000pt;}
.x1a{left:207.866667pt;}
.x1f{left:214.106667pt;}
.x75{left:218.426667pt;}
.x7{left:222.745000pt;}
.x8{left:228.186667pt;}
.x85{left:233.465000pt;}
.x57{left:234.905000pt;}
.x70{left:236.025000pt;}
.x3f{left:237.145000pt;}
.x32{left:241.345000pt;}
.x86{left:244.386667pt;}
.x24{left:246.305000pt;}
.x33{left:250.626667pt;}
.x42{left:251.586667pt;}
.x25{left:257.186667pt;}
.x64{left:259.265000pt;}
.x51{left:261.665000pt;}
.x76{left:262.786667pt;}
.x65{left:268.546667pt;}
.x52{left:272.546667pt;}
.x79{left:274.306667pt;}
.x58{left:275.265000pt;}
.x82{left:284.865000pt;}
.x59{left:286.146667pt;}
.x9{left:291.265000pt;}
.x1d{left:295.265000pt;}
.xa{left:296.706667pt;}
.x89{left:304.545000pt;}
.xb{left:305.506667pt;}
.x60{left:308.065000pt;}
.x8a{left:315.426667pt;}
.x22{left:319.265000pt;}
.x5{left:321.346667pt;}
.x4{left:325.826667pt;}
.x23{left:330.146667pt;}
.x4f{left:332.705000pt;}
.x62{left:340.065000pt;}
.x16{left:342.305000pt;}
.x50{left:343.586667pt;}
.x17{left:347.746667pt;}
.x63{left:350.946667pt;}
.x61{left:359.426667pt;}
.x40{left:363.585000pt;}
.x5e{left:368.385000pt;}
.x87{left:369.665000pt;}
.x41{left:374.466667pt;}
.x5f{left:379.266667pt;}
.x88{left:380.546667pt;}
.x14{left:385.505000pt;}
.x15{left:390.946667pt;}
.x8b{left:400.091667pt;}
.x7a{left:406.331667pt;}
.x8c{left:410.973333pt;}
.x6a{left:415.931667pt;}
.x7b{left:417.213333pt;}
.x3a{left:420.571667pt;}
.x5a{left:422.811667pt;}
.x6b{left:426.813333pt;}
.x34{left:428.091667pt;}
.x2e{left:432.091667pt;}
.x5b{left:433.693333pt;}
.x20{left:438.491667pt;}
.x66{left:439.453333pt;}
.x2f{left:442.973333pt;}
.x21{left:449.373333pt;}
.x37{left:454.331667pt;}
.x10{left:457.211667pt;}
.x80{left:459.291667pt;}
.x11{left:462.653333pt;}
.x38{left:465.213333pt;}
.x43{left:467.933333pt;}
.x81{left:470.173333pt;}
.x1b{left:473.051667pt;}
.x1c{left:477.693333pt;}
.x53{left:481.371667pt;}
.x6c{left:486.651667pt;}
.x54{left:492.253333pt;}
.x6d{left:497.533333pt;}
.x68{left:498.811667pt;}
.x69{left:509.693333pt;}
.x72{left:519.931667pt;}
.x4b{left:522.331667pt;}
.x73{left:530.813333pt;}
.x4c{left:533.213333pt;}
.x5d{left:543.933333pt;}
.x6e{left:546.811667pt;}
.x46{left:551.291667pt;}
.x18{left:556.411667pt;}
.x6f{left:557.693333pt;}
.x26{left:559.811667pt;}
.x19{left:561.893333pt;}
.x27{left:570.693333pt;}
.x8d{left:572.293333pt;}
.x12{left:579.171667pt;}
.x49{left:580.931667pt;}
.x13{left:584.613333pt;}
.x4a{left:591.813333pt;}
.x2b{left:594.051667pt;}
.x30{left:595.493333pt;}
.x4d{left:600.131667pt;}
.x7d{left:601.091667pt;}
.x2c{left:603.333333pt;}
.x39{left:605.093333pt;}
.x4e{left:611.013333pt;}
.x7e{left:611.973333pt;}
.x5c{left:615.813333pt;}
.x55{left:625.571667pt;}
.x56{left:636.453333pt;}
.x47{left:638.211667pt;}
.x83{left:641.891667pt;}
.x3d{left:646.051667pt;}
.x7c{left:648.133333pt;}
.x48{left:649.093333pt;}
.x84{left:652.773333pt;}
.x74{left:654.211667pt;}
.x3e{left:656.933333pt;}
.x7f{left:660.613333pt;}
.x2d{left:665.731667pt;}
.xd{left:671.171667pt;}
.x2{left:673.093333pt;}
.xe{left:676.613333pt;}
}




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