
    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_d4a92f388046804b3047adf6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e0d79d678912d6ba462ac1d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_db9da3f8394ed8d3e72deb7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_fc2f9f0171a064f8e985c6a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.208008;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_4264a8bdb73683015705336a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_d1ce35e65a4b70a074585349.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ee84c384fa49df1e61eacedf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_59e016af1beb753625963757.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_72d3e67f9da8fa93097d744e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:29.880000px;}
.v4{vertical-align:35.280000px;}
.ls21{letter-spacing:-0.298800px;}
.lsf{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.151800px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.067200px;}
.ls22{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.063600px;}
.lsa{letter-spacing:-0.015000px;}
.ls19{letter-spacing:-0.013320px;}
.ls26{letter-spacing:-0.009000px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.006480px;}
.ls15{letter-spacing:0.039240px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.050760px;}
.ls1d{letter-spacing:0.054360px;}
.ls16{letter-spacing:0.056160px;}
.ls13{letter-spacing:0.061200px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.097800px;}
.ls18{letter-spacing:0.115800px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls23{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.366480px;}
.ls1f{letter-spacing:0.414360px;}
.ls20{letter-spacing:0.534360px;}
.ls17{letter-spacing:9.421200px;}
.ls14{letter-spacing:9.781200px;}
.ls25{letter-spacing:48.446640px;}
.ls24{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws16{word-spacing:-47.880000px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws1b{word-spacing:-13.424400px;}
.ws9{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.324200px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws1c{word-spacing:-13.217400px;}
.ws14{word-spacing:-13.213080px;}
.ws3{word-spacing:-13.211400px;}
.wsc{word-spacing:-13.162800px;}
.ws1a{word-spacing:-13.161600px;}
.ws4{word-spacing:-13.159200px;}
.ws8{word-spacing:-13.039800px;}
.ws19{word-spacing:-12.927600px;}
.ws17{word-spacing:-10.584360px;}
.ws18{word-spacing:-10.533600px;}
.ws15{word-spacing:-10.381800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-9.305640px;}
.wsf{word-spacing:-9.266400px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws10{word-spacing:19.625760px;}
.ws12{word-spacing:20.941560px;}
.ws11{word-spacing:21.301560px;}
._1a{margin-left:-4.396120px;}
._d{margin-left:-3.158400px;}
._16{margin-left:-2.133962px;}
._0{margin-left:-1.110000px;}
._4{width:1.077528px;}
._3{width:2.112108px;}
._11{width:3.426600px;}
._c{width:4.449000px;}
._12{width:5.804038px;}
._a{width:6.849240px;}
._b{width:7.854188px;}
._15{width:9.193920px;}
._5{width:10.220400px;}
._13{width:11.422800px;}
._14{width:14.729400px;}
._6{width:16.653000px;}
._7{width:18.253681px;}
._e{width:20.206919px;}
._1c{width:21.763440px;}
._18{width:23.867640px;}
._19{width:25.099802px;}
._10{width:27.040920px;}
._f{width:29.007360px;}
._17{width:30.065762px;}
._8{width:31.683000px;}
._9{width:32.696236px;}
._2{width:46.638035px;}
._1{width:47.727636px;}
._1b{width:166.728720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:7.830000px;}
.yf2{bottom:7.860000px;}
.ye4{bottom:20.160000px;}
.ye0{bottom:25.470000px;}
.yea{bottom:29.880000px;}
.yf1{bottom:29.910000px;}
.ye2{bottom:29.970000px;}
.ydf{bottom:47.520000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yec{bottom:79.380000px;}
.yef{bottom:79.410000px;}
.y1{bottom:101.640000px;}
.y15e{bottom:116.940000px;}
.y58{bottom:122.880000px;}
.ye5{bottom:126.300000px;}
.y71{bottom:126.930000px;}
.ybb{bottom:129.810000px;}
.y112{bottom:132.690000px;}
.y15d{bottom:134.490000px;}
.yb2{bottom:137.820000px;}
.y93{bottom:139.980000px;}
.y57{bottom:140.430000px;}
.y186{bottom:142.320000px;}
.y131{bottom:143.220000px;}
.y70{bottom:144.480000px;}
.ye8{bottom:146.340000px;}
.y111{bottom:150.330000px;}
.yb1{bottom:155.370000px;}
.y92{bottom:157.530000px;}
.y56{bottom:158.070000px;}
.y185{bottom:159.870000px;}
.y130{bottom:160.860000px;}
.y15c{bottom:161.130000px;}
.yba{bottom:162.030000px;}
.y28{bottom:162.120000px;}
.y110{bottom:167.880000px;}
.yb0{bottom:172.920000px;}
.y91{bottom:175.080000px;}
.yed{bottom:175.710000px;}
.y12f{bottom:178.410000px;}
.y15b{bottom:178.680000px;}
.y27{bottom:179.760000px;}
.y10f{bottom:185.430000px;}
.y184{bottom:186.510000px;}
.y6f{bottom:188.670000px;}
.yaf{bottom:190.560000px;}
.y55{bottom:193.620000px;}
.y12e{bottom:196.050000px;}
.y26{bottom:197.310000px;}
.y90{bottom:201.720000px;}
.y183{bottom:204.060000px;}
.y15a{bottom:205.320000px;}
.yae{bottom:208.110000px;}
.y54{bottom:211.260000px;}
.y10e{bottom:212.070000px;}
.y12d{bottom:213.600000px;}
.y25{bottom:214.860000px;}
.y159{bottom:222.870000px;}
.y6e{bottom:224.220000px;}
.ye7{bottom:225.120000px;}
.yad{bottom:225.750000px;}
.y53{bottom:228.810000px;}
.y182{bottom:230.610000px;}
.y24{bottom:232.500000px;}
.y105{bottom:234.030000px;}
.y8f{bottom:237.270000px;}
.y158{bottom:240.420000px;}
.y6d{bottom:241.860000px;}
.yac{bottom:243.300000px;}
.ye6{bottom:245.160000px;}
.y10d{bottom:247.620000px;}
.y181{bottom:248.250000px;}
.y12c{bottom:249.150000px;}
.y23{bottom:250.050000px;}
.y104{bottom:251.580000px;}
.y52{bottom:255.360000px;}
.yab{bottom:260.850000px;}
.y12b{bottom:266.790000px;}
.y157{bottom:267.060000px;}
.y22{bottom:267.690000px;}
.y103{bottom:269.220000px;}
.y8e{bottom:270.120000px;}
.y6c{bottom:274.620000px;}
.y180{bottom:274.800000px;}
.y8d{bottom:277.680000px;}
.yaa{bottom:278.490000px;}
.y10c{bottom:279.840000px;}
.y6b{bottom:282.180000px;}
.y12a{bottom:284.340000px;}
.y156{bottom:284.610000px;}
.y21{bottom:285.240000px;}
.y102{bottom:286.770000px;}
.y51{bottom:287.940000px;}
.yeb{bottom:292.170000px;}
.ya9{bottom:296.040000px;}
.y17f{bottom:301.440000px;}
.y129{bottom:301.980000px;}
.y155{bottom:302.250000px;}
.y20{bottom:302.790000px;}
.y101{bottom:313.410000px;}
.ya8{bottom:313.680000px;}
.y8c{bottom:317.820000px;}
.y17e{bottom:318.990000px;}
.y128{bottom:319.530000px;}
.y6a{bottom:322.410000px;}
.y50{bottom:323.580000px;}
.y154{bottom:328.800000px;}
.y1f{bottom:329.700000px;}
.y127{bottom:337.080000px;}
.y4f{bottom:341.130000px;}
.ye9{bottom:341.580000px;}
.ycd{bottom:343.200000px;}
.y17d{bottom:345.540000px;}
.y153{bottom:346.350000px;}
.ya7{bottom:348.510000px;}
.y100{bottom:348.960000px;}
.y8b{bottom:353.370000px;}
.y126{bottom:354.720000px;}
.y69{bottom:357.960000px;}
.ycc{bottom:360.750000px;}
.y17c{bottom:363.180000px;}
.ya6{bottom:363.270000px;}
.yff{bottom:366.510000px;}
.y4e{bottom:367.770000px;}
.y8a{bottom:371.010000px;}
.y125{bottom:372.270000px;}
.y152{bottom:372.990000px;}
.y68{bottom:375.510000px;}
.y1e{bottom:378.030000px;}
.ycb{bottom:378.390000px;}
.yfe{bottom:384.150000px;}
.y89{bottom:388.560000px;}
.y17b{bottom:389.730000px;}
.y151{bottom:390.540000px;}
.yde{bottom:390.990000px;}
.y67{bottom:393.150000px;}
.y1d{bottom:395.940000px;}
.ya5{bottom:396.660000px;}
.yfd{bottom:401.700000px;}
.y4d{bottom:403.680000px;}
.y88{bottom:406.110000px;}
.y17a{bottom:407.370000px;}
.y124{bottom:407.910000px;}
.y66{bottom:410.700000px;}
.yca{bottom:413.940000px;}
.y150{bottom:417.090000px;}
.yfc{bottom:419.250000px;}
.y87{bottom:423.750000px;}
.y123{bottom:425.460000px;}
.y65{bottom:428.250000px;}
.ya4{bottom:428.880000px;}
.ye3{bottom:430.680000px;}
.yc9{bottom:431.490000px;}
.y1c{bottom:432.930000px;}
.y179{bottom:433.920000px;}
.y14f{bottom:434.730000px;}
.yfb{bottom:436.890000px;}
.y86{bottom:441.300000px;}
.y122{bottom:443.010000px;}
.y1b{bottom:450.480000px;}
.y178{bottom:451.470000px;}
.y4c{bottom:451.920000px;}
.y64{bottom:454.890000px;}
.yc8{bottom:458.130000px;}
.y121{bottom:460.650000px;}
.y14e{bottom:461.280000px;}
.yfa{bottom:463.440000px;}
.y85{bottom:467.940000px;}
.y1a{bottom:468.120000px;}
.y177{bottom:469.110000px;}
.y4b{bottom:469.470000px;}
.y120{bottom:478.230000px;}
.y14d{bottom:478.950000px;}
.ydd{bottom:479.400000px;}
.y19{bottom:485.700000px;}
.y4a{bottom:487.140000px;}
.y63{bottom:490.470000px;}
.yc7{bottom:493.710000px;}
.y176{bottom:495.690000px;}
.y11f{bottom:495.780000px;}
.yf9{bottom:499.110000px;}
.y18{bottom:503.340000px;}
.y84{bottom:503.520000px;}
.y49{bottom:504.690000px;}
.yb9{bottom:505.140000px;}
.y14c{bottom:505.860000px;}
.y62{bottom:508.110000px;}
.y175{bottom:513.330000px;}
.y11e{bottom:513.420000px;}
.ydc{bottom:514.950000px;}
.y17{bottom:520.890000px;}
.y83{bottom:521.070000px;}
.yb8{bottom:522.780000px;}
.y61{bottom:525.660000px;}
.yc6{bottom:525.930000px;}
.y174{bottom:530.880000px;}
.yf8{bottom:531.330000px;}
.ydb{bottom:532.590000px;}
.y16{bottom:538.440000px;}
.y82{bottom:538.710000px;}
.y48{bottom:540.330000px;}
.y60{bottom:543.210000px;}
.y11d{bottom:548.970000px;}
.yda{bottom:550.140000px;}
.y14b{bottom:554.100000px;}
.yb7{bottom:555.000000px;}
.y15{bottom:556.080000px;}
.y81{bottom:556.260000px;}
.y173{bottom:557.430000px;}
.y47{bottom:557.880000px;}
.y5f{bottom:560.850000px;}
.y11c{bottom:566.610000px;}
.yd9{bottom:567.690000px;}
.y14{bottom:573.630000px;}
.y80{bottom:573.900000px;}
.y172{bottom:575.070000px;}
.y46{bottom:575.430000px;}
.y14a{bottom:581.010000px;}
.y11b{bottom:584.160000px;}
.yd8{bottom:585.330000px;}
.y5e{bottom:587.400000px;}
.y13{bottom:591.270000px;}
.y45{bottom:593.070000px;}
.y7f{bottom:600.450000px;}
.y171{bottom:601.620000px;}
.y11a{bottom:601.710000px;}
.yd7{bottom:602.880000px;}
.y12{bottom:608.820000px;}
.y149{bottom:618.000000px;}
.y170{bottom:619.260000px;}
.y119{bottom:619.350000px;}
.yd6{bottom:620.430000px;}
.y5d{bottom:623.040000px;}
.y11{bottom:626.370000px;}
.y44{bottom:628.620000px;}
.y148{bottom:635.640000px;}
.y7e{bottom:636.000000px;}
.y118{bottom:636.900000px;}
.yd5{bottom:638.070000px;}
.y10{bottom:644.010000px;}
.y10b{bottom:645.540000px;}
.y16f{bottom:645.810000px;}
.y43{bottom:646.260000px;}
.y117{bottom:654.540000px;}
.y5c{bottom:655.260000px;}
.yf{bottom:661.560000px;}
.y10a{bottom:663.090000px;}
.y16e{bottom:663.360000px;}
.y42{bottom:663.810000px;}
.yd4{bottom:664.620000px;}
.y7d{bottom:668.850000px;}
.y147{bottom:671.190000px;}
.y116{bottom:672.090000px;}
.y7c{bottom:676.410000px;}
.ye{bottom:679.200000px;}
.y109{bottom:680.640000px;}
.y16d{bottom:681.000000px;}
.y41{bottom:681.360000px;}
.y146{bottom:688.830000px;}
.y115{bottom:689.640000px;}
.yd{bottom:696.750000px;}
.y108{bottom:698.280000px;}
.y40{bottom:699.000000px;}
.yd3{bottom:699.540000px;}
.y114{bottom:707.280000px;}
.y16c{bottom:707.550000px;}
.yd2{bottom:713.580000px;}
.yc{bottom:714.300000px;}
.y107{bottom:715.830000px;}
.y7b{bottom:716.550000px;}
.y145{bottom:724.380000px;}
.y113{bottom:724.830000px;}
.y16b{bottom:725.190000px;}
.yd1{bottom:727.620000px;}
.y3f{bottom:734.550000px;}
.ya3{bottom:738.330000px;}
.yb{bottom:741.210000px;}
.y144{bottom:741.930000px;}
.y106{bottom:742.470000px;}
.y16a{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.ya2{bottom:755.880000px;}
.yd0{bottom:760.470000px;}
.y143{bottom:768.840000px;}
.y169{bottom:769.290000px;}
.y3d{bottom:769.740000px;}
.ya1{bottom:773.520000px;}
.ycf{bottom:778.020000px;}
.yc5{bottom:781.350000px;}
.y3c{bottom:787.290000px;}
.ya{bottom:789.540000px;}
.ya0{bottom:791.070000px;}
.y168{bottom:795.930000px;}
.yc4{bottom:798.900000px;}
.y3b{bottom:804.930000px;}
.y142{bottom:806.190000px;}
.y9f{bottom:808.620000px;}
.yce{bottom:810.240000px;}
.y7a{bottom:813.930000px;}
.y3a{bottom:822.480000px;}
.y9{bottom:825.360000px;}
.y9e{bottom:826.260000px;}
.yc3{bottom:834.450000px;}
.yb6{bottom:837.330000px;}
.y39{bottom:840.030000px;}
.y189{bottom:849.030000px;}
.y79{bottom:849.480000px;}
.yc2{bottom:852.090000px;}
.y9d{bottom:852.810000px;}
.y141{bottom:854.520000px;}
.yb5{bottom:854.970000px;}
.y8{bottom:861.360000px;}
.y167{bottom:866.670000px;}
.y78{bottom:867.030000px;}
.yc1{bottom:869.640000px;}
.y140{bottom:872.070000px;}
.y38{bottom:875.670000px;}
.y166{bottom:884.220000px;}
.y77{bottom:884.670000px;}
.yc0{bottom:887.280000px;}
.y9c{bottom:888.720000px;}
.y13f{bottom:889.620000px;}
.yb4{bottom:890.520000px;}
.y37{bottom:893.220000px;}
.yf7{bottom:896.910000px;}
.y7{bottom:901.140000px;}
.y165{bottom:901.860000px;}
.y76{bottom:902.220000px;}
.ybf{bottom:904.830000px;}
.y13e{bottom:907.260000px;}
.y36{bottom:910.860000px;}
.yf6{bottom:914.460000px;}
.y6{bottom:919.140000px;}
.y75{bottom:919.860000px;}
.yb3{bottom:922.740000px;}
.y13d{bottom:924.810000px;}
.y35{bottom:928.410000px;}
.ybe{bottom:931.380000px;}
.yf5{bottom:932.100000px;}
.y9b{bottom:936.960000px;}
.y74{bottom:937.410000px;}
.y13c{bottom:942.450000px;}
.y164{bottom:945.960000px;}
.yf4{bottom:949.650000px;}
.y5{bottom:951.450000px;}
.y9a{bottom:954.600000px;}
.y73{bottom:954.960000px;}
.y13b{bottom:960.000000px;}
.y163{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y99{bottom:972.150000px;}
.y72{bottom:972.600000px;}
.yf3{bottom:976.200000px;}
.y13a{bottom:977.550000px;}
.y33{bottom:981.600000px;}
.y4{bottom:989.700000px;}
.y98{bottom:989.790000px;}
.y162{bottom:990.150000px;}
.y139{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.ybd{bottom:999.600000px;}
.yee{bottom:1006.260000px;}
.y97{bottom:1007.340000px;}
.y161{bottom:1007.790000px;}
.y138{bottom:1012.770000px;}
.y3{bottom:1014.390000px;}
.y188{bottom:1016.820000px;}
.ybc{bottom:1017.180000px;}
.y96{bottom:1024.920000px;}
.y137{bottom:1030.320000px;}
.y5b{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y136{bottom:1047.960000px;}
.y95{bottom:1051.560000px;}
.y5a{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.yf0{bottom:1055.700000px;}
.y187{bottom:1060.920000px;}
.y135{bottom:1065.510000px;}
.y59{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y160{bottom:1078.560000px;}
.y134{bottom:1083.150000px;}
.y94{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y15f{bottom:1096.110000px;}
.y133{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y132{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h2{height:32.566289px;}
.h6{height:35.782383px;}
.h12{height:38.880000px;}
.h3{height:44.538574px;}
.he{height:47.389043px;}
.h15{height:48.600000px;}
.h19{height:48.630000px;}
.h17{height:48.690000px;}
.h10{height:50.902383px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.hb{height:59.973223px;}
.h1a{height:61.793886px;}
.ha{height:62.585859px;}
.h5{height:65.204473px;}
.hf{height:66.240000px;}
.h9{height:68.582109px;}
.hc{height:76.968105px;}
.h4{height:83.019902px;}
.hd{height:96.663691px;}
.h16{height:98.100000px;}
.h18{height:98.130000px;}
.h14{height:165.060000px;}
.h13{height:263.880000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:53.400000px;}
.w9{width:68.760000px;}
.w7{width:81.270000px;}
.w8{width:92.340000px;}
.w4{width:107.010000px;}
.wb{width:108.000000px;}
.wc{width:122.970000px;}
.w6{width:174.330000px;}
.w3{width:231.690000px;}
.w5{width:240.420000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x1{left:68.040000px;}
.x14{left:70.919987px;}
.xb{left:76.679987px;}
.x22{left:78.659987px;}
.xe{left:82.979987px;}
.x5{left:84.059987px;}
.x13{left:94.769987px;}
.x10{left:98.369987px;}
.x21{left:100.619987px;}
.x6{left:117.179987px;}
.x23{left:122.039987px;}
.x20{left:131.129987px;}
.x1b{left:138.330000px;}
.xa{left:158.759987px;}
.x1e{left:172.649987px;}
.x1c{left:192.450000px;}
.x2{left:231.149987px;}
.x7{left:235.469987px;}
.x8{left:246.899987px;}
.x15{left:260.579987px;}
.x18{left:301.170000px;}
.xc{left:353.549987px;}
.x11{left:408.449987px;}
.x16{left:433.739987px;}
.x19{left:650.130000px;}
.x9{left:681.809987px;}
.x1f{left:704.309987px;}
.x1d{left:718.889987px;}
.x4{left:725.639987px;}
.x1a{left:732.120000px;}
.x12{left:766.139987px;}
.xd{left:787.559987px;}
.x3{left:808.619987px;}
.xf{left:815.099987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:26.560000pt;}
.v4{vertical-align:31.360000pt;}
.ls21{letter-spacing:-0.265600pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.134933pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.059733pt;}
.ls22{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.056533pt;}
.lsa{letter-spacing:-0.013333pt;}
.ls19{letter-spacing:-0.011840pt;}
.ls26{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.005760pt;}
.ls15{letter-spacing:0.034880pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.045120pt;}
.ls1d{letter-spacing:0.048320pt;}
.ls16{letter-spacing:0.049920pt;}
.ls13{letter-spacing:0.054400pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.086933pt;}
.ls18{letter-spacing:0.102933pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls23{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.325760pt;}
.ls1f{letter-spacing:0.368320pt;}
.ls20{letter-spacing:0.474987pt;}
.ls17{letter-spacing:8.374400pt;}
.ls14{letter-spacing:8.694400pt;}
.ls25{letter-spacing:43.063680pt;}
.ls24{letter-spacing:72.503680pt;}
.ws16{word-spacing:-42.560000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws1b{word-spacing:-11.932800pt;}
.ws9{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.843733pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1c{word-spacing:-11.748800pt;}
.ws14{word-spacing:-11.744960pt;}
.ws3{word-spacing:-11.743467pt;}
.wsc{word-spacing:-11.700267pt;}
.ws1a{word-spacing:-11.699200pt;}
.ws4{word-spacing:-11.697067pt;}
.ws8{word-spacing:-11.590933pt;}
.ws19{word-spacing:-11.491200pt;}
.ws17{word-spacing:-9.408320pt;}
.ws18{word-spacing:-9.363200pt;}
.ws15{word-spacing:-9.228267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-8.271680pt;}
.wsf{word-spacing:-8.236800pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws10{word-spacing:17.445120pt;}
.ws12{word-spacing:18.614720pt;}
.ws11{word-spacing:18.934720pt;}
._1a{margin-left:-3.907662pt;}
._d{margin-left:-2.807466pt;}
._16{margin-left:-1.896855pt;}
._0{margin-left:-0.986667pt;}
._4{width:0.957802pt;}
._3{width:1.877430pt;}
._11{width:3.045866pt;}
._c{width:3.954667pt;}
._12{width:5.159145pt;}
._a{width:6.088214pt;}
._b{width:6.981500pt;}
._15{width:8.172373pt;}
._5{width:9.084800pt;}
._13{width:10.153600pt;}
._14{width:13.092800pt;}
._6{width:14.802666pt;}
._7{width:16.225494pt;}
._e{width:17.961706pt;}
._1c{width:19.345280pt;}
._18{width:21.215680pt;}
._19{width:22.310935pt;}
._10{width:24.036374pt;}
._f{width:25.784320pt;}
._17{width:26.725122pt;}
._8{width:28.162666pt;}
._9{width:29.063321pt;}
._2{width:41.456031pt;}
._1{width:42.424565pt;}
._1b{width:148.203307pt;}
.fs8{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:6.960000pt;}
.yf2{bottom:6.986667pt;}
.ye4{bottom:17.920000pt;}
.ye0{bottom:22.640000pt;}
.yea{bottom:26.560000pt;}
.yf1{bottom:26.586667pt;}
.ye2{bottom:26.640000pt;}
.ydf{bottom:42.240000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yec{bottom:70.560000pt;}
.yef{bottom:70.586667pt;}
.y1{bottom:90.346667pt;}
.y15e{bottom:103.946667pt;}
.y58{bottom:109.226667pt;}
.ye5{bottom:112.266667pt;}
.y71{bottom:112.826667pt;}
.ybb{bottom:115.386667pt;}
.y112{bottom:117.946667pt;}
.y15d{bottom:119.546667pt;}
.yb2{bottom:122.506667pt;}
.y93{bottom:124.426667pt;}
.y57{bottom:124.826667pt;}
.y186{bottom:126.506667pt;}
.y131{bottom:127.306667pt;}
.y70{bottom:128.426667pt;}
.ye8{bottom:130.080000pt;}
.y111{bottom:133.626667pt;}
.yb1{bottom:138.106667pt;}
.y92{bottom:140.026667pt;}
.y56{bottom:140.506667pt;}
.y185{bottom:142.106667pt;}
.y130{bottom:142.986667pt;}
.y15c{bottom:143.226667pt;}
.yba{bottom:144.026667pt;}
.y28{bottom:144.106667pt;}
.y110{bottom:149.226667pt;}
.yb0{bottom:153.706667pt;}
.y91{bottom:155.626667pt;}
.yed{bottom:156.186667pt;}
.y12f{bottom:158.586667pt;}
.y15b{bottom:158.826667pt;}
.y27{bottom:159.786667pt;}
.y10f{bottom:164.826667pt;}
.y184{bottom:165.786667pt;}
.y6f{bottom:167.706667pt;}
.yaf{bottom:169.386667pt;}
.y55{bottom:172.106667pt;}
.y12e{bottom:174.266667pt;}
.y26{bottom:175.386667pt;}
.y90{bottom:179.306667pt;}
.y183{bottom:181.386667pt;}
.y15a{bottom:182.506667pt;}
.yae{bottom:184.986667pt;}
.y54{bottom:187.786667pt;}
.y10e{bottom:188.506667pt;}
.y12d{bottom:189.866667pt;}
.y25{bottom:190.986667pt;}
.y159{bottom:198.106667pt;}
.y6e{bottom:199.306667pt;}
.ye7{bottom:200.106667pt;}
.yad{bottom:200.666667pt;}
.y53{bottom:203.386667pt;}
.y182{bottom:204.986667pt;}
.y24{bottom:206.666667pt;}
.y105{bottom:208.026667pt;}
.y8f{bottom:210.906667pt;}
.y158{bottom:213.706667pt;}
.y6d{bottom:214.986667pt;}
.yac{bottom:216.266667pt;}
.ye6{bottom:217.920000pt;}
.y10d{bottom:220.106667pt;}
.y181{bottom:220.666667pt;}
.y12c{bottom:221.466667pt;}
.y23{bottom:222.266667pt;}
.y104{bottom:223.626667pt;}
.y52{bottom:226.986667pt;}
.yab{bottom:231.866667pt;}
.y12b{bottom:237.146667pt;}
.y157{bottom:237.386667pt;}
.y22{bottom:237.946667pt;}
.y103{bottom:239.306667pt;}
.y8e{bottom:240.106667pt;}
.y6c{bottom:244.106667pt;}
.y180{bottom:244.266667pt;}
.y8d{bottom:246.826667pt;}
.yaa{bottom:247.546667pt;}
.y10c{bottom:248.746667pt;}
.y6b{bottom:250.826667pt;}
.y12a{bottom:252.746667pt;}
.y156{bottom:252.986667pt;}
.y21{bottom:253.546667pt;}
.y102{bottom:254.906667pt;}
.y51{bottom:255.946667pt;}
.yeb{bottom:259.706667pt;}
.ya9{bottom:263.146667pt;}
.y17f{bottom:267.946667pt;}
.y129{bottom:268.426667pt;}
.y155{bottom:268.666667pt;}
.y20{bottom:269.146667pt;}
.y101{bottom:278.586667pt;}
.ya8{bottom:278.826667pt;}
.y8c{bottom:282.506667pt;}
.y17e{bottom:283.546667pt;}
.y128{bottom:284.026667pt;}
.y6a{bottom:286.586667pt;}
.y50{bottom:287.626667pt;}
.y154{bottom:292.266667pt;}
.y1f{bottom:293.066667pt;}
.y127{bottom:299.626667pt;}
.y4f{bottom:303.226667pt;}
.ye9{bottom:303.626667pt;}
.ycd{bottom:305.066667pt;}
.y17d{bottom:307.146667pt;}
.y153{bottom:307.866667pt;}
.ya7{bottom:309.786667pt;}
.y100{bottom:310.186667pt;}
.y8b{bottom:314.106667pt;}
.y126{bottom:315.306667pt;}
.y69{bottom:318.186667pt;}
.ycc{bottom:320.666667pt;}
.y17c{bottom:322.826667pt;}
.ya6{bottom:322.906667pt;}
.yff{bottom:325.786667pt;}
.y4e{bottom:326.906667pt;}
.y8a{bottom:329.786667pt;}
.y125{bottom:330.906667pt;}
.y152{bottom:331.546667pt;}
.y68{bottom:333.786667pt;}
.y1e{bottom:336.026667pt;}
.ycb{bottom:336.346667pt;}
.yfe{bottom:341.466667pt;}
.y89{bottom:345.386667pt;}
.y17b{bottom:346.426667pt;}
.y151{bottom:347.146667pt;}
.yde{bottom:347.546667pt;}
.y67{bottom:349.466667pt;}
.y1d{bottom:351.946667pt;}
.ya5{bottom:352.586667pt;}
.yfd{bottom:357.066667pt;}
.y4d{bottom:358.826667pt;}
.y88{bottom:360.986667pt;}
.y17a{bottom:362.106667pt;}
.y124{bottom:362.586667pt;}
.y66{bottom:365.066667pt;}
.yca{bottom:367.946667pt;}
.y150{bottom:370.746667pt;}
.yfc{bottom:372.666667pt;}
.y87{bottom:376.666667pt;}
.y123{bottom:378.186667pt;}
.y65{bottom:380.666667pt;}
.ya4{bottom:381.226667pt;}
.ye3{bottom:382.826667pt;}
.yc9{bottom:383.546667pt;}
.y1c{bottom:384.826667pt;}
.y179{bottom:385.706667pt;}
.y14f{bottom:386.426667pt;}
.yfb{bottom:388.346667pt;}
.y86{bottom:392.266667pt;}
.y122{bottom:393.786667pt;}
.y1b{bottom:400.426667pt;}
.y178{bottom:401.306667pt;}
.y4c{bottom:401.706667pt;}
.y64{bottom:404.346667pt;}
.yc8{bottom:407.226667pt;}
.y121{bottom:409.466667pt;}
.y14e{bottom:410.026667pt;}
.yfa{bottom:411.946667pt;}
.y85{bottom:415.946667pt;}
.y1a{bottom:416.106667pt;}
.y177{bottom:416.986667pt;}
.y4b{bottom:417.306667pt;}
.y120{bottom:425.093333pt;}
.y14d{bottom:425.733333pt;}
.ydd{bottom:426.133333pt;}
.y19{bottom:431.733333pt;}
.y4a{bottom:433.013333pt;}
.y63{bottom:435.973333pt;}
.yc7{bottom:438.853333pt;}
.y176{bottom:440.613333pt;}
.y11f{bottom:440.693333pt;}
.yf9{bottom:443.653333pt;}
.y18{bottom:447.413333pt;}
.y84{bottom:447.573333pt;}
.y49{bottom:448.613333pt;}
.yb9{bottom:449.013333pt;}
.y14c{bottom:449.653333pt;}
.y62{bottom:451.653333pt;}
.y175{bottom:456.293333pt;}
.y11e{bottom:456.373333pt;}
.ydc{bottom:457.733333pt;}
.y17{bottom:463.013333pt;}
.y83{bottom:463.173333pt;}
.yb8{bottom:464.693333pt;}
.y61{bottom:467.253333pt;}
.yc6{bottom:467.493333pt;}
.y174{bottom:471.893333pt;}
.yf8{bottom:472.293333pt;}
.ydb{bottom:473.413333pt;}
.y16{bottom:478.613333pt;}
.y82{bottom:478.853333pt;}
.y48{bottom:480.293333pt;}
.y60{bottom:482.853333pt;}
.y11d{bottom:487.973333pt;}
.yda{bottom:489.013333pt;}
.y14b{bottom:492.533333pt;}
.yb7{bottom:493.333333pt;}
.y15{bottom:494.293333pt;}
.y81{bottom:494.453333pt;}
.y173{bottom:495.493333pt;}
.y47{bottom:495.893333pt;}
.y5f{bottom:498.533333pt;}
.y11c{bottom:503.653333pt;}
.yd9{bottom:504.613333pt;}
.y14{bottom:509.893333pt;}
.y80{bottom:510.133333pt;}
.y172{bottom:511.173333pt;}
.y46{bottom:511.493333pt;}
.y14a{bottom:516.453333pt;}
.y11b{bottom:519.253333pt;}
.yd8{bottom:520.293333pt;}
.y5e{bottom:522.133333pt;}
.y13{bottom:525.573333pt;}
.y45{bottom:527.173333pt;}
.y7f{bottom:533.733333pt;}
.y171{bottom:534.773333pt;}
.y11a{bottom:534.853333pt;}
.yd7{bottom:535.893333pt;}
.y12{bottom:541.173333pt;}
.y149{bottom:549.333333pt;}
.y170{bottom:550.453333pt;}
.y119{bottom:550.533333pt;}
.yd6{bottom:551.493333pt;}
.y5d{bottom:553.813333pt;}
.y11{bottom:556.773333pt;}
.y44{bottom:558.773333pt;}
.y148{bottom:565.013333pt;}
.y7e{bottom:565.333333pt;}
.y118{bottom:566.133333pt;}
.yd5{bottom:567.173333pt;}
.y10{bottom:572.453333pt;}
.y10b{bottom:573.813333pt;}
.y16f{bottom:574.053333pt;}
.y43{bottom:574.453333pt;}
.y117{bottom:581.813333pt;}
.y5c{bottom:582.453333pt;}
.yf{bottom:588.053333pt;}
.y10a{bottom:589.413333pt;}
.y16e{bottom:589.653333pt;}
.y42{bottom:590.053333pt;}
.yd4{bottom:590.773333pt;}
.y7d{bottom:594.533333pt;}
.y147{bottom:596.613333pt;}
.y116{bottom:597.413333pt;}
.y7c{bottom:601.253333pt;}
.ye{bottom:603.733333pt;}
.y109{bottom:605.013333pt;}
.y16d{bottom:605.333333pt;}
.y41{bottom:605.653333pt;}
.y146{bottom:612.293333pt;}
.y115{bottom:613.013333pt;}
.yd{bottom:619.333333pt;}
.y108{bottom:620.693333pt;}
.y40{bottom:621.333333pt;}
.yd3{bottom:621.813333pt;}
.y114{bottom:628.693333pt;}
.y16c{bottom:628.933333pt;}
.yd2{bottom:634.293333pt;}
.yc{bottom:634.933333pt;}
.y107{bottom:636.293333pt;}
.y7b{bottom:636.933333pt;}
.y145{bottom:643.893333pt;}
.y113{bottom:644.293333pt;}
.y16b{bottom:644.613333pt;}
.yd1{bottom:646.773333pt;}
.y3f{bottom:652.933333pt;}
.ya3{bottom:656.293333pt;}
.yb{bottom:658.853333pt;}
.y144{bottom:659.493333pt;}
.y106{bottom:659.973333pt;}
.y16a{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.ya2{bottom:671.893333pt;}
.yd0{bottom:675.973333pt;}
.y143{bottom:683.413333pt;}
.y169{bottom:683.813333pt;}
.y3d{bottom:684.213333pt;}
.ya1{bottom:687.573333pt;}
.ycf{bottom:691.573333pt;}
.yc5{bottom:694.533333pt;}
.y3c{bottom:699.813333pt;}
.ya{bottom:701.813333pt;}
.ya0{bottom:703.173333pt;}
.y168{bottom:707.493333pt;}
.yc4{bottom:710.133333pt;}
.y3b{bottom:715.493333pt;}
.y142{bottom:716.613333pt;}
.y9f{bottom:718.773333pt;}
.yce{bottom:720.213333pt;}
.y7a{bottom:723.493333pt;}
.y3a{bottom:731.093333pt;}
.y9{bottom:733.653333pt;}
.y9e{bottom:734.453333pt;}
.yc3{bottom:741.733333pt;}
.yb6{bottom:744.293333pt;}
.y39{bottom:746.693333pt;}
.y189{bottom:754.693333pt;}
.y79{bottom:755.093333pt;}
.yc2{bottom:757.413333pt;}
.y9d{bottom:758.053333pt;}
.y141{bottom:759.573333pt;}
.yb5{bottom:759.973333pt;}
.y8{bottom:765.653333pt;}
.y167{bottom:770.373333pt;}
.y78{bottom:770.693333pt;}
.yc1{bottom:773.013333pt;}
.y140{bottom:775.173333pt;}
.y38{bottom:778.373333pt;}
.y166{bottom:785.973333pt;}
.y77{bottom:786.373333pt;}
.yc0{bottom:788.693333pt;}
.y9c{bottom:789.973333pt;}
.y13f{bottom:790.773333pt;}
.yb4{bottom:791.573333pt;}
.y37{bottom:793.973333pt;}
.yf7{bottom:797.253333pt;}
.y7{bottom:801.013333pt;}
.y165{bottom:801.653333pt;}
.y76{bottom:801.973333pt;}
.ybf{bottom:804.293333pt;}
.y13e{bottom:806.453333pt;}
.y36{bottom:809.653333pt;}
.yf6{bottom:812.853333pt;}
.y6{bottom:817.013333pt;}
.y75{bottom:817.653333pt;}
.yb3{bottom:820.213333pt;}
.y13d{bottom:822.053333pt;}
.y35{bottom:825.253333pt;}
.ybe{bottom:827.893333pt;}
.yf5{bottom:828.533333pt;}
.y9b{bottom:832.853333pt;}
.y74{bottom:833.253333pt;}
.y13c{bottom:837.733333pt;}
.y164{bottom:840.853333pt;}
.yf4{bottom:844.133333pt;}
.y5{bottom:845.733333pt;}
.y9a{bottom:848.533333pt;}
.y73{bottom:848.853333pt;}
.y13b{bottom:853.333333pt;}
.y163{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y99{bottom:864.133333pt;}
.y72{bottom:864.533333pt;}
.yf3{bottom:867.733333pt;}
.y13a{bottom:868.933333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:879.733333pt;}
.y98{bottom:879.813333pt;}
.y162{bottom:880.133333pt;}
.y139{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.ybd{bottom:888.533333pt;}
.yee{bottom:894.453333pt;}
.y97{bottom:895.413333pt;}
.y161{bottom:895.813333pt;}
.y138{bottom:900.240000pt;}
.y3{bottom:901.680000pt;}
.y188{bottom:903.840000pt;}
.ybc{bottom:904.160000pt;}
.y96{bottom:911.040000pt;}
.y137{bottom:915.840000pt;}
.y5b{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y136{bottom:931.520000pt;}
.y95{bottom:934.720000pt;}
.y5a{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.yf0{bottom:938.400000pt;}
.y187{bottom:943.040000pt;}
.y135{bottom:947.120000pt;}
.y59{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y160{bottom:958.720000pt;}
.y134{bottom:962.800000pt;}
.y94{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y15f{bottom:974.320000pt;}
.y133{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y132{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h2{height:28.947812pt;}
.h6{height:31.806563pt;}
.h12{height:34.560000pt;}
.h3{height:39.589844pt;}
.he{height:42.123594pt;}
.h15{height:43.200000pt;}
.h19{height:43.226667pt;}
.h17{height:43.280000pt;}
.h10{height:45.246562pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.hb{height:53.309531pt;}
.h1a{height:54.927899pt;}
.ha{height:55.631875pt;}
.h5{height:57.959531pt;}
.hf{height:58.880000pt;}
.h9{height:60.961875pt;}
.hc{height:68.416094pt;}
.h4{height:73.795469pt;}
.hd{height:85.923281pt;}
.h16{height:87.200000pt;}
.h18{height:87.226667pt;}
.h14{height:146.720000pt;}
.h13{height:234.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:47.466667pt;}
.w9{width:61.120000pt;}
.w7{width:72.240000pt;}
.w8{width:82.080000pt;}
.w4{width:95.120000pt;}
.wb{width:96.000000pt;}
.wc{width:109.306667pt;}
.w6{width:154.960000pt;}
.w3{width:205.946667pt;}
.w5{width:213.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x1{left:60.480000pt;}
.x14{left:63.039988pt;}
.xb{left:68.159988pt;}
.x22{left:69.919988pt;}
.xe{left:73.759988pt;}
.x5{left:74.719988pt;}
.x13{left:84.239988pt;}
.x10{left:87.439988pt;}
.x21{left:89.439988pt;}
.x6{left:104.159988pt;}
.x23{left:108.479988pt;}
.x20{left:116.559988pt;}
.x1b{left:122.960000pt;}
.xa{left:141.119988pt;}
.x1e{left:153.466655pt;}
.x1c{left:171.066667pt;}
.x2{left:205.466655pt;}
.x7{left:209.306655pt;}
.x8{left:219.466655pt;}
.x15{left:231.626655pt;}
.x18{left:267.706667pt;}
.xc{left:314.266655pt;}
.x11{left:363.066655pt;}
.x16{left:385.546655pt;}
.x19{left:577.893333pt;}
.x9{left:606.053322pt;}
.x1f{left:626.053322pt;}
.x1d{left:639.013322pt;}
.x4{left:645.013322pt;}
.x1a{left:650.773333pt;}
.x12{left:681.013322pt;}
.xd{left:700.053322pt;}
.x3{left:718.773322pt;}
.xf{left:724.533322pt;}
}




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