
    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_df00d5cde0cf8d5464024754.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_58fededc2cd75eb93fedb974.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf10ad2c14953756e513bb07.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.211426;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_fbbdb9822d925bae173193c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_edc2e0ab5f77c7258e6a1809.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.057617;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1129d0ca1ccd7779ea18a2e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.211426;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_7ea8daccb40e472995d3749d.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_660513e1f37b1830b9c2bde0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e29013cdcef7bab95b29caa1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ae5ccf863a5133e56c4f2b3e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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:-27.600000px;}
.v3{vertical-align:-15.600000px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.000000px;}
.v2{vertical-align:15.600000px;}
.ls16{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-1.140000px;}
.ls1c{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.075000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.150000px;}
.ls1b{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.750000px;}
.ls13{letter-spacing:1.800000px;}
.ls12{letter-spacing:3.000000px;}
.lsf{letter-spacing:4.200000px;}
.ls14{letter-spacing:7.800000px;}
.lsc{letter-spacing:23.400000px;}
.ls17{letter-spacing:45.660000px;}
.ls7{letter-spacing:45.720000px;}
.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;}
}
.wsc{word-spacing:-60.000000px;}
.ws7{word-spacing:-15.540000px;}
.wsf{word-spacing:-15.420000px;}
.wse{word-spacing:-15.360000px;}
.ws6{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.820000px;}
.wsd{word-spacing:-14.640000px;}
.ws10{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.900000px;}
.ws2{word-spacing:-12.000000px;}
.ws3{word-spacing:-10.500000px;}
.ws4{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
.wsb{word-spacing:101.280000px;}
.wsa{word-spacing:115.620000px;}
.ws9{word-spacing:116.100000px;}
._14{margin-left:-4.410000px;}
._6{margin-left:-2.640000px;}
._1{margin-left:-1.020000px;}
._0{width:1.080000px;}
._2{width:2.106000px;}
._d{width:3.300000px;}
._c{width:4.500000px;}
._b{width:5.580000px;}
._10{width:6.660000px;}
._8{width:8.340000px;}
._7{width:9.360000px;}
._f{width:10.500000px;}
._e{width:11.760000px;}
._a{width:12.960000px;}
._13{width:13.980000px;}
._9{width:16.200000px;}
._17{width:17.220000px;}
._11{width:18.420000px;}
._15{width:20.040000px;}
._16{width:21.210000px;}
._1b{width:22.620000px;}
._1c{width:24.030000px;}
._12{width:25.680000px;}
._18{width:26.940000px;}
._1d{width:28.620000px;}
._1a{width:34.500000px;}
._19{width:35.700000px;}
._1f{width:75.780000px;}
._23{width:86.550000px;}
._1e{width:90.240000px;}
._24{width:122.880000px;}
._20{width:146.220000px;}
._5{width:391.920000px;}
._3{width:418.326000px;}
._4{width:480.696000px;}
._22{width:612.870000px;}
._21{width:1576.950000px;}
.fc3{color:rgb(0,120,212);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.000000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:60.150000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:4.485000px;}
.y5a{bottom:4.500000px;}
.y56{bottom:4.515000px;}
.y93{bottom:4.545000px;}
.ya9{bottom:4.785000px;}
.y58{bottom:4.800000px;}
.ybb{bottom:4.815000px;}
.ya4{bottom:4.830000px;}
.y6e{bottom:4.845000px;}
.y5c{bottom:5.100000px;}
.y102{bottom:5.115000px;}
.y61{bottom:7.500000px;}
.y12b{bottom:13.537500px;}
.y6c{bottom:14.700000px;}
.y91{bottom:14.745000px;}
.y129{bottom:15.645000px;}
.y9b{bottom:24.600000px;}
.y6a{bottom:24.900000px;}
.ya3{bottom:24.930000px;}
.y13d{bottom:24.937500px;}
.y92{bottom:24.945000px;}
.yff{bottom:25.230000px;}
.yfe{bottom:25.530000px;}
.y2d{bottom:30.037500px;}
.ya{bottom:30.337500px;}
.y95{bottom:45.000000px;}
.y9e{bottom:45.030000px;}
.yb1{bottom:45.037500px;}
.ya8{bottom:45.285000px;}
.yad{bottom:45.300000px;}
.ya2{bottom:45.330000px;}
.y97{bottom:45.345000px;}
.y2c{bottom:46.237500px;}
.y9{bottom:50.137500px;}
.y54{bottom:50.737500px;}
.y12c{bottom:64.050000px;}
.y8{bottom:64.537500px;}
.yab{bottom:65.130000px;}
.ya7{bottom:65.400000px;}
.ya1{bottom:65.430000px;}
.yb0{bottom:65.437500px;}
.y9d{bottom:65.445000px;}
.yd6{bottom:68.437500px;}
.y119{bottom:71.737500px;}
.y140{bottom:75.037500px;}
.yfa{bottom:75.637500px;}
.y8d{bottom:77.137500px;}
.y52{bottom:78.037500px;}
.y7{bottom:78.637500px;}
.y67{bottom:84.637500px;}
.ya6{bottom:85.500000px;}
.yaa{bottom:85.530000px;}
.yaf{bottom:85.537500px;}
.y9c{bottom:85.545000px;}
.ya0{bottom:85.830000px;}
.yac{bottom:85.845000px;}
.yd5{bottom:88.837500px;}
.y118{bottom:92.137500px;}
.y6{bottom:93.337500px;}
.y9a{bottom:93.637500px;}
.y12a{bottom:94.800000px;}
.y13f{bottom:95.137500px;}
.yf9{bottom:95.737500px;}
.y124{bottom:96.037500px;}
.y8c{bottom:97.537500px;}
.y51{bottom:98.137500px;}
.y66{bottom:105.037500px;}
.yd4{bottom:108.937500px;}
.y5{bottom:109.537500px;}
.y13e{bottom:111.637500px;}
.y117{bottom:112.237500px;}
.yae{bottom:113.737500px;}
.yf8{bottom:116.137500px;}
.y8b{bottom:117.637500px;}
.y127{bottom:118.020000px;}
.y50{bottom:118.237500px;}
.y12d{bottom:121.200000px;}
.y65{bottom:125.137500px;}
.yd3{bottom:129.337500px;}
.y13c{bottom:131.737500px;}
.y116{bottom:132.637500px;}
.y4{bottom:132.937500px;}
.yf7{bottom:136.237500px;}
.y8a{bottom:137.737500px;}
.y4f{bottom:138.637500px;}
.y64{bottom:145.575000px;}
.yd2{bottom:149.475000px;}
.y115{bottom:152.775000px;}
.y99{bottom:154.275000px;}
.yf6{bottom:156.675000px;}
.y2a{bottom:157.875000px;}
.y89{bottom:158.175000px;}
.y4e{bottom:158.775000px;}
.y63{bottom:165.675000px;}
.yd1{bottom:169.575000px;}
.y13b{bottom:172.275000px;}
.y114{bottom:173.175000px;}
.yf5{bottom:176.775000px;}
.y128{bottom:177.450000px;}
.y29{bottom:177.975000px;}
.y88{bottom:178.275000px;}
.y12e{bottom:178.350000px;}
.y126{bottom:178.650000px;}
.y4d{bottom:179.175000px;}
.y62{bottom:186.075000px;}
.yd0{bottom:189.975000px;}
.y13a{bottom:192.675000px;}
.y113{bottom:193.275000px;}
.yf4{bottom:197.175000px;}
.y28{bottom:198.375000px;}
.y87{bottom:198.675000px;}
.y4c{bottom:199.275000px;}
.y60{bottom:206.175000px;}
.ycf{bottom:210.075000px;}
.y139{bottom:212.775000px;}
.y112{bottom:213.675000px;}
.y98{bottom:214.875000px;}
.yf3{bottom:217.275000px;}
.y27{bottom:218.475000px;}
.y86{bottom:218.775000px;}
.y4b{bottom:219.675000px;}
.yce{bottom:230.475000px;}
.y5f{bottom:232.275000px;}
.y138{bottom:233.175000px;}
.y111{bottom:233.775000px;}
.yf2{bottom:237.375000px;}
.y123{bottom:237.675000px;}
.y26{bottom:238.875000px;}
.y85{bottom:239.175000px;}
.y4a{bottom:239.775000px;}
.ycd{bottom:246.675000px;}
.y5e{bottom:252.675000px;}
.y137{bottom:253.275000px;}
.y110{bottom:253.875000px;}
.y96{bottom:255.375000px;}
.yf1{bottom:257.775000px;}
.y25{bottom:258.975000px;}
.y84{bottom:259.275000px;}
.y49{bottom:260.175000px;}
.ycc{bottom:267.105000px;}
.y5d{bottom:272.820000px;}
.y136{bottom:273.720000px;}
.y10f{bottom:274.320000px;}
.yf0{bottom:277.920000px;}
.y122{bottom:278.220000px;}
.y24{bottom:279.420000px;}
.y83{bottom:279.720000px;}
.y48{bottom:280.320000px;}
.ycb{bottom:287.505000px;}
.y5b{bottom:293.220000px;}
.y135{bottom:293.820000px;}
.y10e{bottom:294.420000px;}
.yef{bottom:298.320000px;}
.y23{bottom:299.505000px;}
.y82{bottom:299.820000px;}
.y47{bottom:300.720000px;}
.yca{bottom:307.905000px;}
.y134{bottom:314.220000px;}
.y59{bottom:314.820000px;}
.y94{bottom:316.320000px;}
.yee{bottom:318.420000px;}
.y144{bottom:319.005000px;}
.y22{bottom:319.920000px;}
.y81{bottom:320.220000px;}
.y46{bottom:320.820000px;}
.yc9{bottom:328.320000px;}
.y133{bottom:334.320000px;}
.y57{bottom:334.905000px;}
.y10d{bottom:334.920000px;}
.y143{bottom:338.520000px;}
.yed{bottom:338.820000px;}
.y21{bottom:340.005000px;}
.y80{bottom:340.320000px;}
.y45{bottom:341.220000px;}
.yc8{bottom:348.405000px;}
.y132{bottom:354.405000px;}
.y10c{bottom:355.320000px;}
.y55{bottom:355.905000px;}
.yec{bottom:358.920000px;}
.y142{bottom:359.220000px;}
.y20{bottom:360.420000px;}
.y44{bottom:361.320000px;}
.yc7{bottom:368.820000px;}
.y131{bottom:374.820000px;}
.y121{bottom:375.405000px;}
.y10b{bottom:375.420000px;}
.y90{bottom:376.905000px;}
.yeb{bottom:379.320000px;}
.y141{bottom:379.905000px;}
.y1f{bottom:380.505000px;}
.y7f{bottom:380.820000px;}
.y43{bottom:381.450000px;}
.yc6{bottom:390.150000px;}
.y130{bottom:394.950000px;}
.y120{bottom:395.550000px;}
.y10a{bottom:395.850000px;}
.yea{bottom:399.450000px;}
.y1e{bottom:400.650000px;}
.y7e{bottom:400.950000px;}
.y42{bottom:401.850000px;}
.yc5{bottom:410.550000px;}
.y109{bottom:412.050000px;}
.y11f{bottom:415.950000px;}
.y12f{bottom:416.550000px;}
.y8f{bottom:417.450000px;}
.ye9{bottom:419.850000px;}
.y1d{bottom:421.050000px;}
.y7d{bottom:421.350000px;}
.y41{bottom:421.950000px;}
.yc4{bottom:430.950000px;}
.y108{bottom:432.450000px;}
.y11e{bottom:436.050000px;}
.ye8{bottom:439.950000px;}
.y1c{bottom:441.150000px;}
.y7c{bottom:441.450000px;}
.y40{bottom:442.350000px;}
.yc3{bottom:451.050000px;}
.y107{bottom:452.850000px;}
.y11d{bottom:456.450000px;}
.y8e{bottom:457.950000px;}
.ye7{bottom:460.050000px;}
.y1b{bottom:461.550000px;}
.y7b{bottom:461.850000px;}
.y3f{bottom:462.450000px;}
.yc2{bottom:471.450000px;}
.y106{bottom:473.550000px;}
.y11c{bottom:476.550000px;}
.ye6{bottom:480.450000px;}
.y125{bottom:480.600000px;}
.y1a{bottom:481.650000px;}
.y7a{bottom:481.950000px;}
.y3e{bottom:482.850000px;}
.yc1{bottom:491.850000px;}
.y105{bottom:493.950000px;}
.y11b{bottom:496.950000px;}
.ye5{bottom:500.550000px;}
.y19{bottom:502.095000px;}
.y79{bottom:502.380000px;}
.y3d{bottom:502.995000px;}
.yc0{bottom:513.195000px;}
.y104{bottom:514.695000px;}
.y11a{bottom:517.980000px;}
.ya5{bottom:518.595000px;}
.ye4{bottom:520.995000px;}
.y18{bottom:522.195000px;}
.y78{bottom:522.495000px;}
.y3c{bottom:523.380000px;}
.ybf{bottom:533.595000px;}
.y103{bottom:535.095000px;}
.ye3{bottom:541.080000px;}
.y17{bottom:542.595000px;}
.y77{bottom:542.880000px;}
.y3b{bottom:543.495000px;}
.ybe{bottom:553.980000px;}
.y101{bottom:556.080000px;}
.ye2{bottom:561.495000px;}
.y16{bottom:562.695000px;}
.y76{bottom:562.995000px;}
.y3a{bottom:563.880000px;}
.ybd{bottom:574.095000px;}
.y100{bottom:576.780000px;}
.ye1{bottom:581.580000px;}
.y15{bottom:583.095000px;}
.y39{bottom:583.995000px;}
.ybc{bottom:594.480000px;}
.yfd{bottom:597.195000px;}
.ye0{bottom:601.995000px;}
.y14{bottom:603.195000px;}
.y75{bottom:603.495000px;}
.y38{bottom:604.095000px;}
.yba{bottom:615.780000px;}
.ydf{bottom:618.195000px;}
.y9f{bottom:619.695000px;}
.y74{bottom:623.625000px;}
.y37{bottom:624.525000px;}
.y13{bottom:625.425000px;}
.yb9{bottom:636.225000px;}
.yfc{bottom:638.325000px;}
.yde{bottom:638.625000px;}
.y12{bottom:641.625000px;}
.y73{bottom:644.025000px;}
.y36{bottom:644.625000px;}
.yb8{bottom:656.625000px;}
.ydd{bottom:658.725000px;}
.yfb{bottom:659.325000px;}
.y11{bottom:659.625000px;}
.y72{bottom:664.125000px;}
.y35{bottom:665.025000px;}
.y10{bottom:676.125000px;}
.yb7{bottom:676.725000px;}
.ydc{bottom:679.125000px;}
.y71{bottom:684.525000px;}
.y34{bottom:685.125000px;}
.yf{bottom:696.225000px;}
.yb6{bottom:698.025000px;}
.ydb{bottom:699.225000px;}
.y70{bottom:704.625000px;}
.y33{bottom:705.525000px;}
.ye{bottom:717.225000px;}
.yb5{bottom:719.025000px;}
.yda{bottom:719.625000px;}
.y6f{bottom:721.125000px;}
.y32{bottom:725.625000px;}
.yb4{bottom:739.425000px;}
.yd9{bottom:739.725000px;}
.y6d{bottom:741.225000px;}
.yd{bottom:741.525000px;}
.y31{bottom:746.070000px;}
.yb3{bottom:759.870000px;}
.yd8{bottom:760.155000px;}
.y69{bottom:761.670000px;}
.yc{bottom:765.870000px;}
.y30{bottom:766.155000px;}
.yb2{bottom:780.870000px;}
.yd7{bottom:781.170000px;}
.y2f{bottom:786.570000px;}
.yb{bottom:789.570000px;}
.y68{bottom:802.155000px;}
.y2e{bottom:806.670000px;}
.y3{bottom:813.570000px;}
.y53{bottom:830.955000px;}
.y2{bottom:831.570000px;}
.y1{bottom:849.570000px;}
.y2b{bottom:851.370000px;}
.hf{height:20.100000px;}
.h13{height:20.137500px;}
.h1f{height:20.385000px;}
.h11{height:20.400000px;}
.h15{height:20.437500px;}
.h21{height:20.700000px;}
.h22{height:20.737500px;}
.h26{height:21.000000px;}
.h12{height:21.600000px;}
.hb{height:23.179688px;}
.h14{height:26.100000px;}
.h3{height:33.328125px;}
.ha{height:33.486328px;}
.hc{height:35.179688px;}
.h5{height:39.067383px;}
.h2{height:39.577148px;}
.h16{height:40.485000px;}
.h17{height:40.500000px;}
.h18{height:40.537500px;}
.h20{height:41.137500px;}
.h1{height:43.974609px;}
.h10{height:44.179688px;}
.h24{height:44.290137px;}
.h4{height:44.648438px;}
.he{height:45.826172px;}
.hd{height:46.552734px;}
.h7{height:48.597656px;}
.h6{height:49.992188px;}
.h8{height:53.015625px;}
.h9{height:55.810547px;}
.h19{height:60.600000px;}
.h1b{height:60.637500px;}
.h1a{height:60.937500px;}
.h1e{height:101.100000px;}
.h1c{height:101.137500px;}
.h1d{height:101.437500px;}
.h25{height:228.300000px;}
.h23{height:229.500000px;}
.h0{height:918.000000px;}
.w1a{width:78.037500px;}
.w11{width:108.637500px;}
.w5{width:111.337500px;}
.w3{width:111.637500px;}
.w4{width:116.437500px;}
.w6{width:116.737500px;}
.w14{width:117.337500px;}
.w12{width:126.375000px;}
.w1b{width:147.037500px;}
.w19{width:147.075000px;}
.wb{width:149.175000px;}
.w15{width:183.075000px;}
.we{width:196.275000px;}
.wf{width:196.575000px;}
.wc{width:196.875000px;}
.w18{width:216.375000px;}
.w7{width:243.375000px;}
.wa{width:243.975000px;}
.w13{width:283.905000px;}
.wd{width:345.750000px;}
.w9{width:350.550000px;}
.w8{width:350.580000px;}
.w2{width:360.750000px;}
.w10{width:362.250000px;}
.w17{width:441.000000px;}
.w16{width:460.800000px;}
.w1{width:701.999990px;}
.w0{width:702.000000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x40{left:9.900000px;}
.x32{left:12.300000px;}
.x49{left:15.885000px;}
.x30{left:18.300000px;}
.x14{left:19.800000px;}
.x37{left:22.800000px;}
.x48{left:25.800000px;}
.x3f{left:36.705000px;}
.x1f{left:38.730000px;}
.x39{left:40.845000px;}
.x33{left:42.885000px;}
.x17{left:44.745000px;}
.x1b{left:46.830000px;}
.x16{left:48.000000px;}
.x34{left:49.530000px;}
.x18{left:51.900000px;}
.x1{left:54.037490px;}
.x35{left:55.230000px;}
.x7{left:60.337490px;}
.x2d{left:62.130000px;}
.x21{left:63.330000px;}
.x28{left:66.930000px;}
.x29{left:70.830000px;}
.x25{left:74.430000px;}
.x6{left:76.837490px;}
.x3a{left:78.345000px;}
.x2e{left:81.030000px;}
.x27{left:84.930000px;}
.x23{left:87.030000px;}
.x2a{left:88.830000px;}
.x22{left:90.630000px;}
.x2b{left:94.530000px;}
.x26{left:98.130000px;}
.xc{left:108.037490px;}
.x10{left:113.437490px;}
.x4d{left:121.537490px;}
.x44{left:123.337490px;}
.x4c{left:126.937490px;}
.x3b{left:129.000000px;}
.x3e{left:132.600000px;}
.x9{left:147.974990px;}
.x43{left:156.374990px;}
.x24{left:165.375000px;}
.x3d{left:171.405000px;}
.xa{left:173.474990px;}
.xb{left:179.474990px;}
.x11{left:210.374990px;}
.x3c{left:221.220000px;}
.x2{left:244.019990px;}
.x2c{left:250.320000px;}
.x1e{left:253.619990px;}
.x8{left:256.904990px;}
.x4a{left:268.919990px;}
.x45{left:275.820000px;}
.xf{left:293.219990px;}
.x1d{left:297.420000px;}
.x1c{left:302.820000px;}
.x4b{left:305.849990px;}
.x36{left:337.950000px;}
.x5{left:348.449990px;}
.x42{left:353.849990px;}
.x4{left:355.349990px;}
.x41{left:380.849990px;}
.x19{left:414.780000px;}
.x13{left:420.195000px;}
.x2f{left:421.695000px;}
.x46{left:422.895000px;}
.x20{left:447.195000px;}
.x38{left:455.280000px;}
.x47{left:500.925000px;}
.x1a{left:526.125000px;}
.x31{left:530.625000px;}
.x15{left:531.825000px;}
.xd{left:636.254990px;}
.x3{left:642.869990px;}
.xe{left:648.254990px;}
@media print{
.v1{vertical-align:-24.533333pt;}
.v3{vertical-align:-13.866667pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.666667pt;}
.v2{vertical-align:13.866667pt;}
.ls16{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-1.013333pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.066667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.133333pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.666667pt;}
.ls13{letter-spacing:1.600000pt;}
.ls12{letter-spacing:2.666667pt;}
.lsf{letter-spacing:3.733333pt;}
.ls14{letter-spacing:6.933333pt;}
.lsc{letter-spacing:20.800000pt;}
.ls17{letter-spacing:40.586667pt;}
.ls7{letter-spacing:40.640000pt;}
.wsc{word-spacing:-53.333333pt;}
.ws7{word-spacing:-13.813333pt;}
.wsf{word-spacing:-13.706667pt;}
.wse{word-spacing:-13.653333pt;}
.ws6{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.173333pt;}
.wsd{word-spacing:-13.013333pt;}
.ws10{word-spacing:-12.480000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.466667pt;}
.ws2{word-spacing:-10.666667pt;}
.ws3{word-spacing:-9.333333pt;}
.ws4{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
.wsb{word-spacing:90.026667pt;}
.wsa{word-spacing:102.773333pt;}
.ws9{word-spacing:103.200000pt;}
._14{margin-left:-3.920000pt;}
._6{margin-left:-2.346667pt;}
._1{margin-left:-0.906667pt;}
._0{width:0.960000pt;}
._2{width:1.872000pt;}
._d{width:2.933333pt;}
._c{width:4.000000pt;}
._b{width:4.960000pt;}
._10{width:5.920000pt;}
._8{width:7.413333pt;}
._7{width:8.320000pt;}
._f{width:9.333333pt;}
._e{width:10.453333pt;}
._a{width:11.520000pt;}
._13{width:12.426667pt;}
._9{width:14.400000pt;}
._17{width:15.306667pt;}
._11{width:16.373333pt;}
._15{width:17.813333pt;}
._16{width:18.853333pt;}
._1b{width:20.106667pt;}
._1c{width:21.360000pt;}
._12{width:22.826667pt;}
._18{width:23.946667pt;}
._1d{width:25.440000pt;}
._1a{width:30.666667pt;}
._19{width:31.733333pt;}
._1f{width:67.360000pt;}
._23{width:76.933333pt;}
._1e{width:80.213333pt;}
._24{width:109.226667pt;}
._20{width:129.973333pt;}
._5{width:348.373333pt;}
._3{width:371.845333pt;}
._4{width:427.285333pt;}
._22{width:544.773333pt;}
._21{width:1401.733333pt;}
.fs7{font-size:26.666667pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:53.466667pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:3.986667pt;}
.y5a{bottom:4.000000pt;}
.y56{bottom:4.013333pt;}
.y93{bottom:4.040000pt;}
.ya9{bottom:4.253333pt;}
.y58{bottom:4.266667pt;}
.ybb{bottom:4.280000pt;}
.ya4{bottom:4.293333pt;}
.y6e{bottom:4.306667pt;}
.y5c{bottom:4.533333pt;}
.y102{bottom:4.546667pt;}
.y61{bottom:6.666667pt;}
.y12b{bottom:12.033333pt;}
.y6c{bottom:13.066667pt;}
.y91{bottom:13.106667pt;}
.y129{bottom:13.906667pt;}
.y9b{bottom:21.866667pt;}
.y6a{bottom:22.133333pt;}
.ya3{bottom:22.160000pt;}
.y13d{bottom:22.166667pt;}
.y92{bottom:22.173333pt;}
.yff{bottom:22.426667pt;}
.yfe{bottom:22.693333pt;}
.y2d{bottom:26.700000pt;}
.ya{bottom:26.966667pt;}
.y95{bottom:40.000000pt;}
.y9e{bottom:40.026667pt;}
.yb1{bottom:40.033333pt;}
.ya8{bottom:40.253333pt;}
.yad{bottom:40.266667pt;}
.ya2{bottom:40.293333pt;}
.y97{bottom:40.306667pt;}
.y2c{bottom:41.100000pt;}
.y9{bottom:44.566667pt;}
.y54{bottom:45.100000pt;}
.y12c{bottom:56.933333pt;}
.y8{bottom:57.366667pt;}
.yab{bottom:57.893333pt;}
.ya7{bottom:58.133333pt;}
.ya1{bottom:58.160000pt;}
.yb0{bottom:58.166667pt;}
.y9d{bottom:58.173333pt;}
.yd6{bottom:60.833333pt;}
.y119{bottom:63.766667pt;}
.y140{bottom:66.700000pt;}
.yfa{bottom:67.233333pt;}
.y8d{bottom:68.566667pt;}
.y52{bottom:69.366667pt;}
.y7{bottom:69.900000pt;}
.y67{bottom:75.233333pt;}
.ya6{bottom:76.000000pt;}
.yaa{bottom:76.026667pt;}
.yaf{bottom:76.033333pt;}
.y9c{bottom:76.040000pt;}
.ya0{bottom:76.293333pt;}
.yac{bottom:76.306667pt;}
.yd5{bottom:78.966667pt;}
.y118{bottom:81.900000pt;}
.y6{bottom:82.966667pt;}
.y9a{bottom:83.233333pt;}
.y12a{bottom:84.266667pt;}
.y13f{bottom:84.566667pt;}
.yf9{bottom:85.100000pt;}
.y124{bottom:85.366667pt;}
.y8c{bottom:86.700000pt;}
.y51{bottom:87.233333pt;}
.y66{bottom:93.366667pt;}
.yd4{bottom:96.833333pt;}
.y5{bottom:97.366667pt;}
.y13e{bottom:99.233333pt;}
.y117{bottom:99.766667pt;}
.yae{bottom:101.100000pt;}
.yf8{bottom:103.233333pt;}
.y8b{bottom:104.566667pt;}
.y127{bottom:104.906667pt;}
.y50{bottom:105.100000pt;}
.y12d{bottom:107.733333pt;}
.y65{bottom:111.233333pt;}
.yd3{bottom:114.966667pt;}
.y13c{bottom:117.100000pt;}
.y116{bottom:117.900000pt;}
.y4{bottom:118.166667pt;}
.yf7{bottom:121.100000pt;}
.y8a{bottom:122.433333pt;}
.y4f{bottom:123.233333pt;}
.y64{bottom:129.400000pt;}
.yd2{bottom:132.866667pt;}
.y115{bottom:135.800000pt;}
.y99{bottom:137.133333pt;}
.yf6{bottom:139.266667pt;}
.y2a{bottom:140.333333pt;}
.y89{bottom:140.600000pt;}
.y4e{bottom:141.133333pt;}
.y63{bottom:147.266667pt;}
.yd1{bottom:150.733333pt;}
.y13b{bottom:153.133333pt;}
.y114{bottom:153.933333pt;}
.yf5{bottom:157.133333pt;}
.y128{bottom:157.733333pt;}
.y29{bottom:158.200000pt;}
.y88{bottom:158.466667pt;}
.y12e{bottom:158.533333pt;}
.y126{bottom:158.800000pt;}
.y4d{bottom:159.266667pt;}
.y62{bottom:165.400000pt;}
.yd0{bottom:168.866667pt;}
.y13a{bottom:171.266667pt;}
.y113{bottom:171.800000pt;}
.yf4{bottom:175.266667pt;}
.y28{bottom:176.333333pt;}
.y87{bottom:176.600000pt;}
.y4c{bottom:177.133333pt;}
.y60{bottom:183.266667pt;}
.ycf{bottom:186.733333pt;}
.y139{bottom:189.133333pt;}
.y112{bottom:189.933333pt;}
.y98{bottom:191.000000pt;}
.yf3{bottom:193.133333pt;}
.y27{bottom:194.200000pt;}
.y86{bottom:194.466667pt;}
.y4b{bottom:195.266667pt;}
.yce{bottom:204.866667pt;}
.y5f{bottom:206.466667pt;}
.y138{bottom:207.266667pt;}
.y111{bottom:207.800000pt;}
.yf2{bottom:211.000000pt;}
.y123{bottom:211.266667pt;}
.y26{bottom:212.333333pt;}
.y85{bottom:212.600000pt;}
.y4a{bottom:213.133333pt;}
.ycd{bottom:219.266667pt;}
.y5e{bottom:224.600000pt;}
.y137{bottom:225.133333pt;}
.y110{bottom:225.666667pt;}
.y96{bottom:227.000000pt;}
.yf1{bottom:229.133333pt;}
.y25{bottom:230.200000pt;}
.y84{bottom:230.466667pt;}
.y49{bottom:231.266667pt;}
.ycc{bottom:237.426667pt;}
.y5d{bottom:242.506667pt;}
.y136{bottom:243.306667pt;}
.y10f{bottom:243.840000pt;}
.yf0{bottom:247.040000pt;}
.y122{bottom:247.306667pt;}
.y24{bottom:248.373333pt;}
.y83{bottom:248.640000pt;}
.y48{bottom:249.173333pt;}
.ycb{bottom:255.560000pt;}
.y5b{bottom:260.640000pt;}
.y135{bottom:261.173333pt;}
.y10e{bottom:261.706667pt;}
.yef{bottom:265.173333pt;}
.y23{bottom:266.226667pt;}
.y82{bottom:266.506667pt;}
.y47{bottom:267.306667pt;}
.yca{bottom:273.693333pt;}
.y134{bottom:279.306667pt;}
.y59{bottom:279.840000pt;}
.y94{bottom:281.173333pt;}
.yee{bottom:283.040000pt;}
.y144{bottom:283.560000pt;}
.y22{bottom:284.373333pt;}
.y81{bottom:284.640000pt;}
.y46{bottom:285.173333pt;}
.yc9{bottom:291.840000pt;}
.y133{bottom:297.173333pt;}
.y57{bottom:297.693333pt;}
.y10d{bottom:297.706667pt;}
.y143{bottom:300.906667pt;}
.yed{bottom:301.173333pt;}
.y21{bottom:302.226667pt;}
.y80{bottom:302.506667pt;}
.y45{bottom:303.306667pt;}
.yc8{bottom:309.693333pt;}
.y132{bottom:315.026667pt;}
.y10c{bottom:315.840000pt;}
.y55{bottom:316.360000pt;}
.yec{bottom:319.040000pt;}
.y142{bottom:319.306667pt;}
.y20{bottom:320.373333pt;}
.y44{bottom:321.173333pt;}
.yc7{bottom:327.840000pt;}
.y131{bottom:333.173333pt;}
.y121{bottom:333.693333pt;}
.y10b{bottom:333.706667pt;}
.y90{bottom:335.026667pt;}
.yeb{bottom:337.173333pt;}
.y141{bottom:337.693333pt;}
.y1f{bottom:338.226667pt;}
.y7f{bottom:338.506667pt;}
.y43{bottom:339.066667pt;}
.yc6{bottom:346.800000pt;}
.y130{bottom:351.066667pt;}
.y120{bottom:351.600000pt;}
.y10a{bottom:351.866667pt;}
.yea{bottom:355.066667pt;}
.y1e{bottom:356.133333pt;}
.y7e{bottom:356.400000pt;}
.y42{bottom:357.200000pt;}
.yc5{bottom:364.933333pt;}
.y109{bottom:366.266667pt;}
.y11f{bottom:369.733333pt;}
.y12f{bottom:370.266667pt;}
.y8f{bottom:371.066667pt;}
.ye9{bottom:373.200000pt;}
.y1d{bottom:374.266667pt;}
.y7d{bottom:374.533333pt;}
.y41{bottom:375.066667pt;}
.yc4{bottom:383.066667pt;}
.y108{bottom:384.400000pt;}
.y11e{bottom:387.600000pt;}
.ye8{bottom:391.066667pt;}
.y1c{bottom:392.133333pt;}
.y7c{bottom:392.400000pt;}
.y40{bottom:393.200000pt;}
.yc3{bottom:400.933333pt;}
.y107{bottom:402.533333pt;}
.y11d{bottom:405.733333pt;}
.y8e{bottom:407.066667pt;}
.ye7{bottom:408.933333pt;}
.y1b{bottom:410.266667pt;}
.y7b{bottom:410.533333pt;}
.y3f{bottom:411.066667pt;}
.yc2{bottom:419.066667pt;}
.y106{bottom:420.933333pt;}
.y11c{bottom:423.600000pt;}
.ye6{bottom:427.066667pt;}
.y125{bottom:427.200000pt;}
.y1a{bottom:428.133333pt;}
.y7a{bottom:428.400000pt;}
.y3e{bottom:429.200000pt;}
.yc1{bottom:437.200000pt;}
.y105{bottom:439.066667pt;}
.y11b{bottom:441.733333pt;}
.ye5{bottom:444.933333pt;}
.y19{bottom:446.306667pt;}
.y79{bottom:446.560000pt;}
.y3d{bottom:447.106667pt;}
.yc0{bottom:456.173333pt;}
.y104{bottom:457.506667pt;}
.y11a{bottom:460.426667pt;}
.ya5{bottom:460.973333pt;}
.ye4{bottom:463.106667pt;}
.y18{bottom:464.173333pt;}
.y78{bottom:464.440000pt;}
.y3c{bottom:465.226667pt;}
.ybf{bottom:474.306667pt;}
.y103{bottom:475.640000pt;}
.ye3{bottom:480.960000pt;}
.y17{bottom:482.306667pt;}
.y77{bottom:482.560000pt;}
.y3b{bottom:483.106667pt;}
.ybe{bottom:492.426667pt;}
.y101{bottom:494.293333pt;}
.ye2{bottom:499.106667pt;}
.y16{bottom:500.173333pt;}
.y76{bottom:500.440000pt;}
.y3a{bottom:501.226667pt;}
.ybd{bottom:510.306667pt;}
.y100{bottom:512.693333pt;}
.ye1{bottom:516.960000pt;}
.y15{bottom:518.306667pt;}
.y39{bottom:519.106667pt;}
.ybc{bottom:528.426667pt;}
.yfd{bottom:530.840000pt;}
.ye0{bottom:535.106667pt;}
.y14{bottom:536.173333pt;}
.y75{bottom:536.440000pt;}
.y38{bottom:536.973333pt;}
.yba{bottom:547.360000pt;}
.ydf{bottom:549.506667pt;}
.y9f{bottom:550.840000pt;}
.y74{bottom:554.333333pt;}
.y37{bottom:555.133333pt;}
.y13{bottom:555.933333pt;}
.yb9{bottom:565.533333pt;}
.yfc{bottom:567.400000pt;}
.yde{bottom:567.666667pt;}
.y12{bottom:570.333333pt;}
.y73{bottom:572.466667pt;}
.y36{bottom:573.000000pt;}
.yb8{bottom:583.666667pt;}
.ydd{bottom:585.533333pt;}
.yfb{bottom:586.066667pt;}
.y11{bottom:586.333333pt;}
.y72{bottom:590.333333pt;}
.y35{bottom:591.133333pt;}
.y10{bottom:601.000000pt;}
.yb7{bottom:601.533333pt;}
.ydc{bottom:603.666667pt;}
.y71{bottom:608.466667pt;}
.y34{bottom:609.000000pt;}
.yf{bottom:618.866667pt;}
.yb6{bottom:620.466667pt;}
.ydb{bottom:621.533333pt;}
.y70{bottom:626.333333pt;}
.y33{bottom:627.133333pt;}
.ye{bottom:637.533333pt;}
.yb5{bottom:639.133333pt;}
.yda{bottom:639.666667pt;}
.y6f{bottom:641.000000pt;}
.y32{bottom:645.000000pt;}
.yb4{bottom:657.266667pt;}
.yd9{bottom:657.533333pt;}
.y6d{bottom:658.866667pt;}
.yd{bottom:659.133333pt;}
.y31{bottom:663.173333pt;}
.yb3{bottom:675.440000pt;}
.yd8{bottom:675.693333pt;}
.y69{bottom:677.040000pt;}
.yc{bottom:680.773333pt;}
.y30{bottom:681.026667pt;}
.yb2{bottom:694.106667pt;}
.yd7{bottom:694.373333pt;}
.y2f{bottom:699.173333pt;}
.yb{bottom:701.840000pt;}
.y68{bottom:713.026667pt;}
.y2e{bottom:717.040000pt;}
.y3{bottom:723.173333pt;}
.y53{bottom:738.626667pt;}
.y2{bottom:739.173333pt;}
.y1{bottom:755.173333pt;}
.y2b{bottom:756.773333pt;}
.hf{height:17.866667pt;}
.h13{height:17.900000pt;}
.h1f{height:18.120000pt;}
.h11{height:18.133333pt;}
.h15{height:18.166667pt;}
.h21{height:18.400000pt;}
.h22{height:18.433333pt;}
.h26{height:18.666667pt;}
.h12{height:19.200000pt;}
.hb{height:20.604167pt;}
.h14{height:23.200000pt;}
.h3{height:29.625000pt;}
.ha{height:29.765625pt;}
.hc{height:31.270833pt;}
.h5{height:34.726562pt;}
.h2{height:35.179688pt;}
.h16{height:35.986667pt;}
.h17{height:36.000000pt;}
.h18{height:36.033333pt;}
.h20{height:36.566667pt;}
.h1{height:39.088542pt;}
.h10{height:39.270833pt;}
.h24{height:39.369010pt;}
.h4{height:39.687500pt;}
.he{height:40.734375pt;}
.hd{height:41.380208pt;}
.h7{height:43.197917pt;}
.h6{height:44.437500pt;}
.h8{height:47.125000pt;}
.h9{height:49.609375pt;}
.h19{height:53.866667pt;}
.h1b{height:53.900000pt;}
.h1a{height:54.166667pt;}
.h1e{height:89.866667pt;}
.h1c{height:89.900000pt;}
.h1d{height:90.166667pt;}
.h25{height:202.933333pt;}
.h23{height:204.000000pt;}
.h0{height:816.000000pt;}
.w1a{width:69.366667pt;}
.w11{width:96.566667pt;}
.w5{width:98.966667pt;}
.w3{width:99.233333pt;}
.w4{width:103.500000pt;}
.w6{width:103.766667pt;}
.w14{width:104.300000pt;}
.w12{width:112.333333pt;}
.w1b{width:130.700000pt;}
.w19{width:130.733333pt;}
.wb{width:132.600000pt;}
.w15{width:162.733333pt;}
.we{width:174.466667pt;}
.wf{width:174.733333pt;}
.wc{width:175.000000pt;}
.w18{width:192.333333pt;}
.w7{width:216.333333pt;}
.wa{width:216.866667pt;}
.w13{width:252.360000pt;}
.wd{width:307.333333pt;}
.w9{width:311.600000pt;}
.w8{width:311.626667pt;}
.w2{width:320.666667pt;}
.w10{width:322.000000pt;}
.w17{width:392.000000pt;}
.w16{width:409.600000pt;}
.w1{width:623.999991pt;}
.w0{width:624.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x40{left:8.800000pt;}
.x32{left:10.933333pt;}
.x49{left:14.120000pt;}
.x30{left:16.266667pt;}
.x14{left:17.600000pt;}
.x37{left:20.266667pt;}
.x48{left:22.933333pt;}
.x3f{left:32.626667pt;}
.x1f{left:34.426667pt;}
.x39{left:36.306667pt;}
.x33{left:38.120000pt;}
.x17{left:39.773333pt;}
.x1b{left:41.626667pt;}
.x16{left:42.666667pt;}
.x34{left:44.026667pt;}
.x18{left:46.133333pt;}
.x1{left:48.033324pt;}
.x35{left:49.093333pt;}
.x7{left:53.633324pt;}
.x2d{left:55.226667pt;}
.x21{left:56.293333pt;}
.x28{left:59.493333pt;}
.x29{left:62.960000pt;}
.x25{left:66.160000pt;}
.x6{left:68.299991pt;}
.x3a{left:69.640000pt;}
.x2e{left:72.026667pt;}
.x27{left:75.493333pt;}
.x23{left:77.360000pt;}
.x2a{left:78.960000pt;}
.x22{left:80.560000pt;}
.x2b{left:84.026667pt;}
.x26{left:87.226667pt;}
.xc{left:96.033324pt;}
.x10{left:100.833324pt;}
.x4d{left:108.033324pt;}
.x44{left:109.633324pt;}
.x4c{left:112.833324pt;}
.x3b{left:114.666667pt;}
.x3e{left:117.866667pt;}
.x9{left:131.533324pt;}
.x43{left:138.999991pt;}
.x24{left:147.000000pt;}
.x3d{left:152.360000pt;}
.xa{left:154.199991pt;}
.xb{left:159.533324pt;}
.x11{left:186.999991pt;}
.x3c{left:196.640000pt;}
.x2{left:216.906657pt;}
.x2c{left:222.506667pt;}
.x1e{left:225.439991pt;}
.x8{left:228.359991pt;}
.x4a{left:239.039991pt;}
.x45{left:245.173333pt;}
.xf{left:260.639991pt;}
.x1d{left:264.373333pt;}
.x1c{left:269.173333pt;}
.x4b{left:271.866657pt;}
.x36{left:300.400000pt;}
.x5{left:309.733324pt;}
.x42{left:314.533324pt;}
.x4{left:315.866657pt;}
.x41{left:338.533324pt;}
.x19{left:368.693333pt;}
.x13{left:373.506667pt;}
.x2f{left:374.840000pt;}
.x46{left:375.906667pt;}
.x20{left:397.506667pt;}
.x38{left:404.693333pt;}
.x47{left:445.266667pt;}
.x1a{left:467.666667pt;}
.x31{left:471.666667pt;}
.x15{left:472.733333pt;}
.xd{left:565.559991pt;}
.x3{left:571.439991pt;}
.xe{left:576.226657pt;}
}




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