
    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_dce67ac2d181293a182e8e19.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a7fab1950fd70ffd461cb422.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_50f29eec27ca92790ebb7f2f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_abf5b185bc3e1ace960ff937.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_f6b8e5286bc896e20756217a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_44395fdac94eaf4c06c38624.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.206640px;}
.lsf{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.lse{letter-spacing:21.546720px;}
.ls8{letter-spacing:46.002720px;}
.lsd{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.146400px;}
.ws4{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.328000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._26{margin-left:-8.197440px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._11{width:2.351280px;}
._2{width:4.245600px;}
._8{width:5.776080px;}
._6{width:7.709040px;}
._7{width:9.023760px;}
._a{width:10.211280px;}
._d{width:11.336160px;}
._b{width:12.350160px;}
._10{width:13.677360px;}
._c{width:15.984960px;}
._f{width:17.270640px;}
._e{width:18.824400px;}
._20{width:19.892400px;}
._9{width:20.968080px;}
._15{width:22.631520px;}
._14{width:24.143040px;}
._27{width:25.200480px;}
._13{width:26.243520px;}
._12{width:27.575760px;}
._1b{width:29.341440px;}
._1a{width:30.537360px;}
._19{width:31.792320px;}
._18{width:32.867280px;}
._16{width:34.301520px;}
._23{width:35.318400px;}
._1f{width:36.452880px;}
._17{width:38.604240px;}
._1e{width:40.038480px;}
._1d{width:46.672560px;}
._1c{width:56.951280px;}
._22{width:64.244160px;}
._21{width:65.257200px;}
._5{width:85.656000px;}
._24{width:193.854240px;}
._25{width:201.060000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y137{bottom:4.680000px;}
.yf4{bottom:16.560000px;}
.yf9{bottom:16.590000px;}
.y101{bottom:16.605000px;}
.yfe{bottom:16.740000px;}
.y138{bottom:19.980000px;}
.y136{bottom:23.214000px;}
.y11e{bottom:25.920000px;}
.y123{bottom:35.094000px;}
.ya{bottom:35.100000px;}
.yf8{bottom:35.130000px;}
.y100{bottom:35.145000px;}
.yf6{bottom:35.280000px;}
.y120{bottom:44.460000px;}
.y9{bottom:50.580000px;}
.y122{bottom:53.634000px;}
.y125{bottom:53.640000px;}
.yfc{bottom:53.820000px;}
.y117{bottom:53.850000px;}
.y10f{bottom:53.865000px;}
.y10b{bottom:72.360000px;}
.y116{bottom:72.390000px;}
.y10e{bottom:72.405000px;}
.y112{bottom:72.540000px;}
.y115{bottom:91.110000px;}
.y10d{bottom:91.125000px;}
.y114{bottom:109.650000px;}
.y3e{bottom:112.176000px;}
.y14f{bottom:112.536000px;}
.y108{bottom:113.616000px;}
.yb5{bottom:114.696000px;}
.y121{bottom:115.056000px;}
.y8b{bottom:115.236000px;}
.ye3{bottom:116.496000px;}
.ycc{bottom:118.836000px;}
.y75{bottom:120.456000px;}
.y135{bottom:129.276000px;}
.y3d{bottom:129.456000px;}
.y14e{bottom:129.816000px;}
.y107{bottom:130.896000px;}
.yb4{bottom:131.976000px;}
.y8a{bottom:132.336000px;}
.ye2{bottom:133.776000px;}
.ycb{bottom:137.376000px;}
.y74{bottom:137.736000px;}
.yf3{bottom:141.516000px;}
.y3c{bottom:146.736000px;}
.y14d{bottom:146.916000px;}
.yb3{bottom:149.256000px;}
.y89{bottom:149.616000px;}
.ye1{bottom:151.050000px;}
.yde{bottom:153.210000px;}
.y154{bottom:154.290000px;}
.y73{bottom:155.010000px;}
.yca{bottom:156.090000px;}
.yf2{bottom:158.790000px;}
.y3b{bottom:164.010000px;}
.y14c{bottom:164.190000px;}
.yc0{bottom:165.630000px;}
.y106{bottom:166.170000px;}
.yb2{bottom:166.350000px;}
.y88{bottom:166.890000px;}
.y134{bottom:167.250000px;}
.ye0{bottom:168.330000px;}
.ydd{bottom:170.490000px;}
.y153{bottom:171.570000px;}
.y72{bottom:172.290000px;}
.yc9{bottom:174.630000px;}
.yf1{bottom:175.890000px;}
.y3a{bottom:181.290000px;}
.y14b{bottom:181.470000px;}
.ybf{bottom:182.910000px;}
.ydf{bottom:183.090000px;}
.yb1{bottom:183.630000px;}
.y87{bottom:184.170000px;}
.ydc{bottom:187.770000px;}
.y152{bottom:188.670000px;}
.y71{bottom:189.570000px;}
.yf0{bottom:193.170000px;}
.yc8{bottom:193.350000px;}
.y39{bottom:198.390000px;}
.y14a{bottom:198.750000px;}
.ybe{bottom:200.190000px;}
.yb0{bottom:200.910000px;}
.y86{bottom:201.450000px;}
.ydb{bottom:205.050000px;}
.y151{bottom:205.950000px;}
.y70{bottom:206.670000px;}
.yc7{bottom:211.890000px;}
.y38{bottom:215.670000px;}
.y149{bottom:216.030000px;}
.ybd{bottom:217.470000px;}
.yaf{bottom:218.190000px;}
.y85{bottom:218.550000px;}
.yda{bottom:222.330000px;}
.yef{bottom:222.510000px;}
.y150{bottom:223.230000px;}
.y6f{bottom:223.950000px;}
.yc6{bottom:230.430000px;}
.y37{bottom:232.950000px;}
.ybc{bottom:234.750000px;}
.yae{bottom:235.470000px;}
.y84{bottom:235.830000px;}
.y105{bottom:236.550000px;}
.yd9{bottom:239.430000px;}
.yee{bottom:239.790000px;}
.y6e{bottom:241.230000px;}
.y148{bottom:245.190000px;}
.yc5{bottom:249.150000px;}
.y36{bottom:250.230000px;}
.ybb{bottom:251.850000px;}
.y11f{bottom:252.210000px;}
.yad{bottom:252.750000px;}
.y83{bottom:253.110000px;}
.yd8{bottom:256.710000px;}
.yed{bottom:256.890000px;}
.y6d{bottom:258.510000px;}
.y147{bottom:259.950000px;}
.y82{bottom:267.150000px;}
.y35{bottom:267.510000px;}
.yba{bottom:269.130000px;}
.yac{bottom:269.850000px;}
.y104{bottom:271.830000px;}
.yd7{bottom:273.990000px;}
.yec{bottom:274.170000px;}
.y6c{bottom:275.790000px;}
.yc4{bottom:279.750000px;}
.y34{bottom:284.610000px;}
.yb9{bottom:286.410000px;}
.yab{bottom:287.130000px;}
.y103{bottom:289.110000px;}
.yd6{bottom:291.270000px;}
.yeb{bottom:291.450000px;}
.y6b{bottom:292.890000px;}
.yc3{bottom:297.030000px;}
.y33{bottom:301.890000px;}
.yb8{bottom:303.690000px;}
.yaa{bottom:304.410000px;}
.y102{bottom:306.390000px;}
.yd5{bottom:308.550000px;}
.yd3{bottom:309.450000px;}
.y146{bottom:309.990000px;}
.y6a{bottom:310.170000px;}
.yc2{bottom:314.310000px;}
.ya9{bottom:318.450000px;}
.y32{bottom:319.170000px;}
.yea{bottom:320.610000px;}
.yb7{bottom:320.970000px;}
.yff{bottom:321.150000px;}
.yd4{bottom:323.310000px;}
.y69{bottom:327.450000px;}
.yd2{bottom:327.990000px;}
.yc1{bottom:329.070000px;}
.yb6{bottom:335.010000px;}
.y31{bottom:336.495000px;}
.ye9{bottom:337.935000px;}
.y11d{bottom:339.375000px;}
.y145{bottom:341.355000px;}
.ya8{bottom:341.715000px;}
.y68{bottom:344.775000px;}
.yd1{bottom:346.575000px;}
.y133{bottom:351.075000px;}
.y30{bottom:353.775000px;}
.ye8{bottom:355.215000px;}
.y67{bottom:362.055000px;}
.yd0{bottom:365.295000px;}
.y2f{bottom:371.055000px;}
.ye7{bottom:372.495000px;}
.y66{bottom:379.335000px;}
.y132{bottom:380.235000px;}
.y11c{bottom:389.415000px;}
.y2e{bottom:392.115000px;}
.y131{bottom:395.175000px;}
.ycf{bottom:395.895000px;}
.y65{bottom:396.435000px;}
.ya7{bottom:400.215000px;}
.ye6{bottom:401.655000px;}
.yfd{bottom:402.555000px;}
.y144{bottom:409.935000px;}
.y2d{bottom:410.835000px;}
.yce{bottom:413.175000px;}
.y64{bottom:413.715000px;}
.ya6{bottom:417.495000px;}
.ye5{bottom:418.935000px;}
.ycd{bottom:427.935000px;}
.y2c{bottom:429.375000px;}
.y63{bottom:430.995000px;}
.ya5{bottom:434.775000px;}
.y11b{bottom:436.035000px;}
.ye4{bottom:436.215000px;}
.y130{bottom:445.035000px;}
.y2b{bottom:448.095000px;}
.y62{bottom:448.275000px;}
.ya4{bottom:452.055000px;}
.y11a{bottom:465.195000px;}
.y61{bottom:465.555000px;}
.y2a{bottom:466.635000px;}
.ya3{bottom:469.335000px;}
.yfb{bottom:471.135000px;}
.y12f{bottom:476.535000px;}
.y143{bottom:478.515000px;}
.y119{bottom:479.955000px;}
.y60{bottom:482.835000px;}
.y29{bottom:485.175000px;}
.ya2{bottom:486.435000px;}
.y5f{bottom:499.935000px;}
.ya1{bottom:503.715000px;}
.y28{bottom:503.895000px;}
.y5e{bottom:517.215000px;}
.ya0{bottom:520.995000px;}
.y27{bottom:522.435000px;}
.y118{bottom:529.995000px;}
.y5d{bottom:534.495000px;}
.yfa{bottom:539.715000px;}
.y26{bottom:541.155000px;}
.y12e{bottom:545.115000px;}
.y142{bottom:547.095000px;}
.y9f{bottom:550.155000px;}
.y5c{bottom:551.775000px;}
.y25{bottom:559.695000px;}
.y113{bottom:561.315000px;}
.y9e{bottom:567.435000px;}
.y5b{bottom:569.055000px;}
.y24{bottom:578.415000px;}
.y5a{bottom:586.155000px;}
.yf7{bottom:589.755000px;}
.y81{bottom:594.435000px;}
.y9d{bottom:596.775000px;}
.y23{bottom:596.955000px;}
.y59{bottom:603.435000px;}
.y80{bottom:611.565000px;}
.y12d{bottom:613.725000px;}
.y9c{bottom:614.085000px;}
.y22{bottom:615.525000px;}
.y141{bottom:615.705000px;}
.y58{bottom:620.745000px;}
.y7f{bottom:628.845000px;}
.y9b{bottom:631.185000px;}
.y21{bottom:634.245000px;}
.y57{bottom:638.025000px;}
.yf5{bottom:639.645000px;}
.y7e{bottom:646.125000px;}
.y9a{bottom:648.465000px;}
.y20{bottom:652.785000px;}
.y56{bottom:655.305000px;}
.y7d{bottom:663.405000px;}
.y99{bottom:665.745000px;}
.y1f{bottom:671.505000px;}
.y55{bottom:672.585000px;}
.y7c{bottom:680.685000px;}
.y12c{bottom:682.305000px;}
.y98{bottom:683.025000px;}
.y140{bottom:684.465000px;}
.y111{bottom:685.725000px;}
.y54{bottom:689.685000px;}
.y1e{bottom:690.045000px;}
.y7b{bottom:697.785000px;}
.y53{bottom:706.965000px;}
.y1d{bottom:708.585000px;}
.y97{bottom:712.185000px;}
.y7a{bottom:715.065000px;}
.y13f{bottom:719.025000px;}
.y52{bottom:724.245000px;}
.y1c{bottom:727.305000px;}
.y96{bottom:729.465000px;}
.y79{bottom:732.345000px;}
.y13e{bottom:736.305000px;}
.y51{bottom:741.525000px;}
.y1b{bottom:745.845000px;}
.y95{bottom:746.745000px;}
.y78{bottom:749.625000px;}
.y12b{bottom:750.885000px;}
.y13d{bottom:753.405000px;}
.y50{bottom:758.805000px;}
.y94{bottom:764.025000px;}
.y1a{bottom:764.565000px;}
.y77{bottom:766.905000px;}
.y110{bottom:773.025000px;}
.y4f{bottom:776.085000px;}
.y76{bottom:780.945000px;}
.y93{bottom:781.305000px;}
.y13c{bottom:782.745000px;}
.y19{bottom:782.925000px;}
.y4e{bottom:793.185000px;}
.y13b{bottom:797.505000px;}
.y92{bottom:798.585000px;}
.y18{bottom:800.565000px;}
.y4d{bottom:810.465000px;}
.y91{bottom:815.685000px;}
.y12a{bottom:819.465000px;}
.y17{bottom:819.645000px;}
.y4c{bottom:827.745000px;}
.y90{bottom:832.965000px;}
.y16{bottom:838.545000px;}
.y10c{bottom:841.605000px;}
.y4b{bottom:845.025000px;}
.y13a{bottom:847.545000px;}
.y8f{bottom:850.245000px;}
.y15{bottom:857.445000px;}
.y4a{bottom:862.305000px;}
.y129{bottom:866.085000px;}
.y8e{bottom:867.525000px;}
.y14{bottom:876.570000px;}
.y139{bottom:878.910000px;}
.y49{bottom:879.630000px;}
.y8d{bottom:884.850000px;}
.y13{bottom:895.470000px;}
.y48{bottom:896.730000px;}
.y128{bottom:901.230000px;}
.y8c{bottom:901.950000px;}
.y47{bottom:914.010000px;}
.y12{bottom:914.550000px;}
.y127{bottom:916.170000px;}
.y46{bottom:931.290000px;}
.y11{bottom:933.450000px;}
.y10a{bottom:947.490000px;}
.y45{bottom:948.570000px;}
.y10{bottom:952.350000px;}
.y44{bottom:965.850000px;}
.y126{bottom:966.030000px;}
.yf{bottom:971.430000px;}
.y43{bottom:982.950000px;}
.ye{bottom:990.330000px;}
.y124{bottom:997.530000px;}
.y42{bottom:1000.230000px;}
.yd{bottom:1009.410000px;}
.y41{bottom:1017.510000px;}
.yc{bottom:1028.670000px;}
.y109{bottom:1034.610000px;}
.y40{bottom:1034.790000px;}
.yb{bottom:1049.370000px;}
.y3f{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:30.600000px;}
.h1a{height:30.636000px;}
.h11{height:30.780000px;}
.h19{height:37.260000px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h8{height:46.736719px;}
.h6{height:48.410156px;}
.hb{height:48.496641px;}
.hf{height:49.140000px;}
.he{height:49.176000px;}
.hd{height:49.320000px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h2{height:53.573906px;}
.h3{height:59.383125px;}
.h7{height:65.884219px;}
.h17{height:67.680000px;}
.h10{height:67.860000px;}
.h18{height:67.896000px;}
.h12{height:86.400000px;}
.h16{height:86.436000px;}
.h14{height:86.580000px;}
.h13{height:105.156000px;}
.h15{height:123.696000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:127.440000px;}
.w5{width:140.976000px;}
.w3{width:374.835000px;}
.w6{width:644.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:7.734000px;}
.x28{left:24.705000px;}
.x2c{left:26.145000px;}
.x29{left:34.734000px;}
.x2d{left:43.065000px;}
.x26{left:45.180000px;}
.x2b{left:50.400000px;}
.x2a{left:61.734000px;}
.x1{left:108.035987px;}
.x9{left:117.395987px;}
.x2{left:123.155987px;}
.x12{left:135.035987px;}
.x7{left:141.335987px;}
.x23{left:144.576000px;}
.x24{left:154.839000px;}
.x4{left:157.169987px;}
.x2e{left:160.779000px;}
.x13{left:162.029987px;}
.x18{left:207.389987px;}
.xd{left:232.949987px;}
.x1b{left:246.809987px;}
.x1d{left:256.169987px;}
.xf{left:261.749987px;}
.x33{left:312.194987px;}
.x32{left:317.954987px;}
.x21{left:326.774987px;}
.x30{left:328.394987px;}
.x31{left:332.534987px;}
.x22{left:346.394987px;}
.x1f{left:353.774987px;}
.x35{left:362.414987px;}
.xa{left:365.834987px;}
.x8{left:380.234987px;}
.x14{left:384.374987px;}
.x10{left:386.534987px;}
.xc{left:390.314987px;}
.xe{left:392.654987px;}
.x6{left:396.434987px;}
.x34{left:400.754987px;}
.x11{left:403.094987px;}
.x5{left:412.274987px;}
.xb{left:446.474987px;}
.x1c{left:503.384987px;}
.x3{left:518.504987px;}
.x25{left:520.305000px;}
.x19{left:549.464987px;}
.x1a{left:581.324987px;}
.x27{left:648.465000px;}
.x15{left:657.149987px;}
.x16{left:711.149987px;}
.x17{left:761.729987px;}
.x20{left:775.409987px;}
.x1e{left:794.489987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.183680pt;}
.lsf{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.lse{letter-spacing:19.152640pt;}
.ls8{letter-spacing:40.891307pt;}
.lsd{letter-spacing:40.912640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws3{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.736000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._26{margin-left:-7.286613pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._11{width:2.090027pt;}
._2{width:3.773867pt;}
._8{width:5.134293pt;}
._6{width:6.852480pt;}
._7{width:8.021120pt;}
._a{width:9.076693pt;}
._d{width:10.076587pt;}
._b{width:10.977920pt;}
._10{width:12.157653pt;}
._c{width:14.208853pt;}
._f{width:15.351680pt;}
._e{width:16.732800pt;}
._20{width:17.682133pt;}
._9{width:18.638293pt;}
._15{width:20.116907pt;}
._14{width:21.460480pt;}
._27{width:22.400427pt;}
._13{width:23.327573pt;}
._12{width:24.511787pt;}
._1b{width:26.081280pt;}
._1a{width:27.144320pt;}
._19{width:28.259840pt;}
._18{width:29.215360pt;}
._16{width:30.490240pt;}
._23{width:31.394133pt;}
._1f{width:32.402560pt;}
._17{width:34.314880pt;}
._1e{width:35.589760pt;}
._1d{width:41.486720pt;}
._1c{width:50.623360pt;}
._22{width:57.105920pt;}
._21{width:58.006400pt;}
._5{width:76.138667pt;}
._24{width:172.314880pt;}
._25{width:178.720000pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:4.160000pt;}
.yf4{bottom:14.720000pt;}
.yf9{bottom:14.746667pt;}
.y101{bottom:14.760000pt;}
.yfe{bottom:14.880000pt;}
.y138{bottom:17.760000pt;}
.y136{bottom:20.634667pt;}
.y11e{bottom:23.040000pt;}
.y123{bottom:31.194667pt;}
.ya{bottom:31.200000pt;}
.yf8{bottom:31.226667pt;}
.y100{bottom:31.240000pt;}
.yf6{bottom:31.360000pt;}
.y120{bottom:39.520000pt;}
.y9{bottom:44.960000pt;}
.y122{bottom:47.674667pt;}
.y125{bottom:47.680000pt;}
.yfc{bottom:47.840000pt;}
.y117{bottom:47.866667pt;}
.y10f{bottom:47.880000pt;}
.y10b{bottom:64.320000pt;}
.y116{bottom:64.346667pt;}
.y10e{bottom:64.360000pt;}
.y112{bottom:64.480000pt;}
.y115{bottom:80.986667pt;}
.y10d{bottom:81.000000pt;}
.y114{bottom:97.466667pt;}
.y3e{bottom:99.712000pt;}
.y14f{bottom:100.032000pt;}
.y108{bottom:100.992000pt;}
.yb5{bottom:101.952000pt;}
.y121{bottom:102.272000pt;}
.y8b{bottom:102.432000pt;}
.ye3{bottom:103.552000pt;}
.ycc{bottom:105.632000pt;}
.y75{bottom:107.072000pt;}
.y135{bottom:114.912000pt;}
.y3d{bottom:115.072000pt;}
.y14e{bottom:115.392000pt;}
.y107{bottom:116.352000pt;}
.yb4{bottom:117.312000pt;}
.y8a{bottom:117.632000pt;}
.ye2{bottom:118.912000pt;}
.ycb{bottom:122.112000pt;}
.y74{bottom:122.432000pt;}
.yf3{bottom:125.792000pt;}
.y3c{bottom:130.432000pt;}
.y14d{bottom:130.592000pt;}
.yb3{bottom:132.672000pt;}
.y89{bottom:132.992000pt;}
.ye1{bottom:134.266667pt;}
.yde{bottom:136.186667pt;}
.y154{bottom:137.146667pt;}
.y73{bottom:137.786667pt;}
.yca{bottom:138.746667pt;}
.yf2{bottom:141.146667pt;}
.y3b{bottom:145.786667pt;}
.y14c{bottom:145.946667pt;}
.yc0{bottom:147.226667pt;}
.y106{bottom:147.706667pt;}
.yb2{bottom:147.866667pt;}
.y88{bottom:148.346667pt;}
.y134{bottom:148.666667pt;}
.ye0{bottom:149.626667pt;}
.ydd{bottom:151.546667pt;}
.y153{bottom:152.506667pt;}
.y72{bottom:153.146667pt;}
.yc9{bottom:155.226667pt;}
.yf1{bottom:156.346667pt;}
.y3a{bottom:161.146667pt;}
.y14b{bottom:161.306667pt;}
.ybf{bottom:162.586667pt;}
.ydf{bottom:162.746667pt;}
.yb1{bottom:163.226667pt;}
.y87{bottom:163.706667pt;}
.ydc{bottom:166.906667pt;}
.y152{bottom:167.706667pt;}
.y71{bottom:168.506667pt;}
.yf0{bottom:171.706667pt;}
.yc8{bottom:171.866667pt;}
.y39{bottom:176.346667pt;}
.y14a{bottom:176.666667pt;}
.ybe{bottom:177.946667pt;}
.yb0{bottom:178.586667pt;}
.y86{bottom:179.066667pt;}
.ydb{bottom:182.266667pt;}
.y151{bottom:183.066667pt;}
.y70{bottom:183.706667pt;}
.yc7{bottom:188.346667pt;}
.y38{bottom:191.706667pt;}
.y149{bottom:192.026667pt;}
.ybd{bottom:193.306667pt;}
.yaf{bottom:193.946667pt;}
.y85{bottom:194.266667pt;}
.yda{bottom:197.626667pt;}
.yef{bottom:197.786667pt;}
.y150{bottom:198.426667pt;}
.y6f{bottom:199.066667pt;}
.yc6{bottom:204.826667pt;}
.y37{bottom:207.066667pt;}
.ybc{bottom:208.666667pt;}
.yae{bottom:209.306667pt;}
.y84{bottom:209.626667pt;}
.y105{bottom:210.266667pt;}
.yd9{bottom:212.826667pt;}
.yee{bottom:213.146667pt;}
.y6e{bottom:214.426667pt;}
.y148{bottom:217.946667pt;}
.yc5{bottom:221.466667pt;}
.y36{bottom:222.426667pt;}
.ybb{bottom:223.866667pt;}
.y11f{bottom:224.186667pt;}
.yad{bottom:224.666667pt;}
.y83{bottom:224.986667pt;}
.yd8{bottom:228.186667pt;}
.yed{bottom:228.346667pt;}
.y6d{bottom:229.786667pt;}
.y147{bottom:231.066667pt;}
.y82{bottom:237.466667pt;}
.y35{bottom:237.786667pt;}
.yba{bottom:239.226667pt;}
.yac{bottom:239.866667pt;}
.y104{bottom:241.626667pt;}
.yd7{bottom:243.546667pt;}
.yec{bottom:243.706667pt;}
.y6c{bottom:245.146667pt;}
.yc4{bottom:248.666667pt;}
.y34{bottom:252.986667pt;}
.yb9{bottom:254.586667pt;}
.yab{bottom:255.226667pt;}
.y103{bottom:256.986667pt;}
.yd6{bottom:258.906667pt;}
.yeb{bottom:259.066667pt;}
.y6b{bottom:260.346667pt;}
.yc3{bottom:264.026667pt;}
.y33{bottom:268.346667pt;}
.yb8{bottom:269.946667pt;}
.yaa{bottom:270.586667pt;}
.y102{bottom:272.346667pt;}
.yd5{bottom:274.266667pt;}
.yd3{bottom:275.066667pt;}
.y146{bottom:275.546667pt;}
.y6a{bottom:275.706667pt;}
.yc2{bottom:279.386667pt;}
.ya9{bottom:283.066667pt;}
.y32{bottom:283.706667pt;}
.yea{bottom:284.986667pt;}
.yb7{bottom:285.306667pt;}
.yff{bottom:285.466667pt;}
.yd4{bottom:287.386667pt;}
.y69{bottom:291.066667pt;}
.yd2{bottom:291.546667pt;}
.yc1{bottom:292.506667pt;}
.yb6{bottom:297.786667pt;}
.y31{bottom:299.106667pt;}
.ye9{bottom:300.386667pt;}
.y11d{bottom:301.666667pt;}
.y145{bottom:303.426667pt;}
.ya8{bottom:303.746667pt;}
.y68{bottom:306.466667pt;}
.yd1{bottom:308.066667pt;}
.y133{bottom:312.066667pt;}
.y30{bottom:314.466667pt;}
.ye8{bottom:315.746667pt;}
.y67{bottom:321.826667pt;}
.yd0{bottom:324.706667pt;}
.y2f{bottom:329.826667pt;}
.ye7{bottom:331.106667pt;}
.y66{bottom:337.186667pt;}
.y132{bottom:337.986667pt;}
.y11c{bottom:346.146667pt;}
.y2e{bottom:348.546667pt;}
.y131{bottom:351.266667pt;}
.ycf{bottom:351.906667pt;}
.y65{bottom:352.386667pt;}
.ya7{bottom:355.746667pt;}
.ye6{bottom:357.026667pt;}
.yfd{bottom:357.826667pt;}
.y144{bottom:364.386667pt;}
.y2d{bottom:365.186667pt;}
.yce{bottom:367.266667pt;}
.y64{bottom:367.746667pt;}
.ya6{bottom:371.106667pt;}
.ye5{bottom:372.386667pt;}
.ycd{bottom:380.386667pt;}
.y2c{bottom:381.666667pt;}
.y63{bottom:383.106667pt;}
.ya5{bottom:386.466667pt;}
.y11b{bottom:387.586667pt;}
.ye4{bottom:387.746667pt;}
.y130{bottom:395.586667pt;}
.y2b{bottom:398.306667pt;}
.y62{bottom:398.466667pt;}
.ya4{bottom:401.826667pt;}
.y11a{bottom:413.506667pt;}
.y61{bottom:413.826667pt;}
.y2a{bottom:414.786667pt;}
.ya3{bottom:417.186667pt;}
.yfb{bottom:418.786667pt;}
.y12f{bottom:423.586667pt;}
.y143{bottom:425.346667pt;}
.y119{bottom:426.626667pt;}
.y60{bottom:429.186667pt;}
.y29{bottom:431.266667pt;}
.ya2{bottom:432.386667pt;}
.y5f{bottom:444.386667pt;}
.ya1{bottom:447.746667pt;}
.y28{bottom:447.906667pt;}
.y5e{bottom:459.746667pt;}
.ya0{bottom:463.106667pt;}
.y27{bottom:464.386667pt;}
.y118{bottom:471.106667pt;}
.y5d{bottom:475.106667pt;}
.yfa{bottom:479.746667pt;}
.y26{bottom:481.026667pt;}
.y12e{bottom:484.546667pt;}
.y142{bottom:486.306667pt;}
.y9f{bottom:489.026667pt;}
.y5c{bottom:490.466667pt;}
.y25{bottom:497.506667pt;}
.y113{bottom:498.946667pt;}
.y9e{bottom:504.386667pt;}
.y5b{bottom:505.826667pt;}
.y24{bottom:514.146667pt;}
.y5a{bottom:521.026667pt;}
.yf7{bottom:524.226667pt;}
.y81{bottom:528.386667pt;}
.y9d{bottom:530.466667pt;}
.y23{bottom:530.626667pt;}
.y59{bottom:536.386667pt;}
.y80{bottom:543.613333pt;}
.y12d{bottom:545.533333pt;}
.y9c{bottom:545.853333pt;}
.y22{bottom:547.133333pt;}
.y141{bottom:547.293333pt;}
.y58{bottom:551.773333pt;}
.y7f{bottom:558.973333pt;}
.y9b{bottom:561.053333pt;}
.y21{bottom:563.773333pt;}
.y57{bottom:567.133333pt;}
.yf5{bottom:568.573333pt;}
.y7e{bottom:574.333333pt;}
.y9a{bottom:576.413333pt;}
.y20{bottom:580.253333pt;}
.y56{bottom:582.493333pt;}
.y7d{bottom:589.693333pt;}
.y99{bottom:591.773333pt;}
.y1f{bottom:596.893333pt;}
.y55{bottom:597.853333pt;}
.y7c{bottom:605.053333pt;}
.y12c{bottom:606.493333pt;}
.y98{bottom:607.133333pt;}
.y140{bottom:608.413333pt;}
.y111{bottom:609.533333pt;}
.y54{bottom:613.053333pt;}
.y1e{bottom:613.373333pt;}
.y7b{bottom:620.253333pt;}
.y53{bottom:628.413333pt;}
.y1d{bottom:629.853333pt;}
.y97{bottom:633.053333pt;}
.y7a{bottom:635.613333pt;}
.y13f{bottom:639.133333pt;}
.y52{bottom:643.773333pt;}
.y1c{bottom:646.493333pt;}
.y96{bottom:648.413333pt;}
.y79{bottom:650.973333pt;}
.y13e{bottom:654.493333pt;}
.y51{bottom:659.133333pt;}
.y1b{bottom:662.973333pt;}
.y95{bottom:663.773333pt;}
.y78{bottom:666.333333pt;}
.y12b{bottom:667.453333pt;}
.y13d{bottom:669.693333pt;}
.y50{bottom:674.493333pt;}
.y94{bottom:679.133333pt;}
.y1a{bottom:679.613333pt;}
.y77{bottom:681.693333pt;}
.y110{bottom:687.133333pt;}
.y4f{bottom:689.853333pt;}
.y76{bottom:694.173333pt;}
.y93{bottom:694.493333pt;}
.y13c{bottom:695.773333pt;}
.y19{bottom:695.933333pt;}
.y4e{bottom:705.053333pt;}
.y13b{bottom:708.893333pt;}
.y92{bottom:709.853333pt;}
.y18{bottom:711.613333pt;}
.y4d{bottom:720.413333pt;}
.y91{bottom:725.053333pt;}
.y12a{bottom:728.413333pt;}
.y17{bottom:728.573333pt;}
.y4c{bottom:735.773333pt;}
.y90{bottom:740.413333pt;}
.y16{bottom:745.373333pt;}
.y10c{bottom:748.093333pt;}
.y4b{bottom:751.133333pt;}
.y13a{bottom:753.373333pt;}
.y8f{bottom:755.773333pt;}
.y15{bottom:762.173333pt;}
.y4a{bottom:766.493333pt;}
.y129{bottom:769.853333pt;}
.y8e{bottom:771.133333pt;}
.y14{bottom:779.173333pt;}
.y139{bottom:781.253333pt;}
.y49{bottom:781.893333pt;}
.y8d{bottom:786.533333pt;}
.y13{bottom:795.973333pt;}
.y48{bottom:797.093333pt;}
.y128{bottom:801.093333pt;}
.y8c{bottom:801.733333pt;}
.y47{bottom:812.453333pt;}
.y12{bottom:812.933333pt;}
.y127{bottom:814.373333pt;}
.y46{bottom:827.813333pt;}
.y11{bottom:829.733333pt;}
.y10a{bottom:842.213333pt;}
.y45{bottom:843.173333pt;}
.y10{bottom:846.533333pt;}
.y44{bottom:858.533333pt;}
.y126{bottom:858.693333pt;}
.yf{bottom:863.493333pt;}
.y43{bottom:873.733333pt;}
.ye{bottom:880.293333pt;}
.y124{bottom:886.693333pt;}
.y42{bottom:889.093333pt;}
.yd{bottom:897.253333pt;}
.y41{bottom:904.453333pt;}
.yc{bottom:914.373333pt;}
.y109{bottom:919.653333pt;}
.y40{bottom:919.813333pt;}
.yb{bottom:932.773333pt;}
.y3f{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:27.200000pt;}
.h1a{height:27.232000pt;}
.h11{height:27.360000pt;}
.h19{height:33.120000pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h8{height:41.543750pt;}
.h6{height:43.031250pt;}
.hb{height:43.108125pt;}
.hf{height:43.680000pt;}
.he{height:43.712000pt;}
.hd{height:43.840000pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h2{height:47.621250pt;}
.h3{height:52.785000pt;}
.h7{height:58.563750pt;}
.h17{height:60.160000pt;}
.h10{height:60.320000pt;}
.h18{height:60.352000pt;}
.h12{height:76.800000pt;}
.h16{height:76.832000pt;}
.h14{height:76.960000pt;}
.h13{height:93.472000pt;}
.h15{height:109.952000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:113.280000pt;}
.w5{width:125.312000pt;}
.w3{width:333.186667pt;}
.w6{width:573.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.874667pt;}
.x28{left:21.960000pt;}
.x2c{left:23.240000pt;}
.x29{left:30.874667pt;}
.x2d{left:38.280000pt;}
.x26{left:40.160000pt;}
.x2b{left:44.800000pt;}
.x2a{left:54.874667pt;}
.x1{left:96.031988pt;}
.x9{left:104.351988pt;}
.x2{left:109.471988pt;}
.x12{left:120.031988pt;}
.x7{left:125.631988pt;}
.x23{left:128.512000pt;}
.x24{left:137.634667pt;}
.x4{left:139.706655pt;}
.x2e{left:142.914667pt;}
.x13{left:144.026655pt;}
.x18{left:184.346655pt;}
.xd{left:207.066655pt;}
.x1b{left:219.386655pt;}
.x1d{left:227.706655pt;}
.xf{left:232.666655pt;}
.x33{left:277.506655pt;}
.x32{left:282.626655pt;}
.x21{left:290.466655pt;}
.x30{left:291.906655pt;}
.x31{left:295.586655pt;}
.x22{left:307.906655pt;}
.x1f{left:314.466655pt;}
.x35{left:322.146655pt;}
.xa{left:325.186655pt;}
.x8{left:337.986655pt;}
.x14{left:341.666655pt;}
.x10{left:343.586655pt;}
.xc{left:346.946655pt;}
.xe{left:349.026655pt;}
.x6{left:352.386655pt;}
.x34{left:356.226655pt;}
.x11{left:358.306655pt;}
.x5{left:366.466655pt;}
.xb{left:396.866655pt;}
.x1c{left:447.453322pt;}
.x3{left:460.893322pt;}
.x25{left:462.493333pt;}
.x19{left:488.413322pt;}
.x1a{left:516.733322pt;}
.x27{left:576.413333pt;}
.x15{left:584.133322pt;}
.x16{left:632.133322pt;}
.x17{left:677.093322pt;}
.x20{left:689.253322pt;}
.x1e{left:706.213322pt;}
}




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