
    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_627e0a8e607b603b11c4e1c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_cc8e9b154900eb6680ace13f.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_d7fe2bfda3f3e0a280a770a1.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_ae18e9e490415c76baa7ffe4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_0e7700c4a4a139fcf9c2d618.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_fa5f13afa64e6911710b8c23.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;}
.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(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.879928px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560005px;}
.v1{vertical-align:18.720013px;}
.v6{vertical-align:20.879996px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036702px;}
.ls1{letter-spacing:0.036707px;}
.ls3{letter-spacing:0.036774px;}
.ls2{letter-spacing:0.036846px;}
.ls4{letter-spacing:0.208355px;}
.ls8{letter-spacing:4.528382px;}
.ls9{letter-spacing:15.157860px;}
.lsc{letter-spacing:30.277865px;}
.lsd{letter-spacing:30.278000px;}
.ls5{letter-spacing:46.117883px;}
.ls7{letter-spacing:46.117950px;}
.lsb{letter-spacing:60.517869px;}
.lsa{letter-spacing:60.518004px;}
.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;}
}
.ws3{word-spacing:-14.911650px;}
.ws2{word-spacing:-13.474463px;}
.ws0{word-spacing:-12.037163px;}
.ws1{word-spacing:-7.545679px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-1.133289px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._3{width:4.105597px;}
._8{width:5.138853px;}
._2e{width:6.167600px;}
._c{width:7.195875px;}
._e{width:8.723335px;}
._a{width:9.970269px;}
._9{width:11.322835px;}
._4{width:12.494404px;}
._b{width:13.511586px;}
._1e{width:16.482893px;}
._15{width:17.683658px;}
._6{width:18.695858px;}
._7{width:19.898016px;}
._d{width:21.604462px;}
._2c{width:23.290438px;}
._10{width:24.321278px;}
._18{width:25.351669px;}
._5{width:26.430739px;}
._21{width:27.923696px;}
._12{width:29.321574px;}
._1a{width:30.341480px;}
._14{width:31.540309px;}
._24{width:32.784339px;}
._19{width:34.531332px;}
._f{width:35.707882px;}
._3c{width:36.849322px;}
._1c{width:38.037739px;}
._1b{width:39.426869px;}
._16{width:41.022792px;}
._13{width:42.964730px;}
._31{width:44.068425px;}
._2a{width:45.365056px;}
._36{width:46.459720px;}
._29{width:47.532033px;}
._11{width:48.799612px;}
._23{width:50.332644px;}
._22{width:51.413577px;}
._2b{width:52.442104px;}
._25{width:53.660111px;}
._30{width:54.666414px;}
._44{width:55.678088px;}
._34{width:57.238907px;}
._26{width:58.886250px;}
._27{width:59.979011px;}
._3e{width:61.544413px;}
._3b{width:63.671187px;}
._3a{width:64.901470px;}
._35{width:66.873391px;}
._1d{width:68.372783px;}
._2d{width:69.536591px;}
._33{width:71.175635px;}
._43{width:72.268918px;}
._28{width:73.521962px;}
._2f{width:75.698436px;}
._20{width:77.439533px;}
._1f{width:78.930697px;}
._17{width:84.069392px;}
._32{width:85.073831px;}
._39{width:90.501744px;}
._45{width:92.241908px;}
._3d{width:97.809079px;}
._40{width:104.917903px;}
._42{width:108.137494px;}
._3f{width:123.366949px;}
._41{width:131.121007px;}
._46{width:132.621258px;}
._38{width:175.161688px;}
._37{width:814.472065px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs7{font-size:38.806380px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y140{bottom:3.240006px;}
.y16f{bottom:3.599945px;}
.y174{bottom:3.600013px;}
.y9{bottom:35.640061px;}
.y8{bottom:52.919975px;}
.y7{bottom:66.960022px;}
.y36{bottom:87.840019px;}
.yc2{bottom:89.460022px;}
.y6b{bottom:91.620002px;}
.yed{bottom:93.960022px;}
.y133{bottom:94.500000px;}
.y116{bottom:96.120002px;}
.y13f{bottom:97.740006px;}
.y187{bottom:101.159981px;}
.y196{bottom:102.240006px;}
.ydc{bottom:104.399986px;}
.y35{bottom:105.120002px;}
.yc1{bottom:106.740006px;}
.y6a{bottom:108.899986px;}
.yec{bottom:111.240006px;}
.yff{bottom:113.399986px;}
.y97{bottom:115.559967px;}
.y186{bottom:118.440033px;}
.y195{bottom:119.340019px;}
.yb3{bottom:121.679970px;}
.y34{bottom:122.399986px;}
.yc0{bottom:123.840019px;}
.y69{bottom:126.179970px;}
.y132{bottom:126.720017px;}
.yeb{bottom:128.340019px;}
.yfe{bottom:130.679970px;}
.y115{bottom:132.840019px;}
.y185{bottom:135.720017px;}
.y152{bottom:136.259994px;}
.y194{bottom:136.620002px;}
.yb2{bottom:138.960022px;}
.y33{bottom:139.679970px;}
.ybf{bottom:141.120002px;}
.y68{bottom:143.460022px;}
.y131{bottom:144.000000px;}
.yea{bottom:145.620002px;}
.y96{bottom:147.960022px;}
.y114{bottom:150.120002px;}
.y184{bottom:152.820030px;}
.y193{bottom:153.899986px;}
.y100{bottom:156.059967px;}
.yb1{bottom:156.240006px;}
.y32{bottom:156.960022px;}
.ybe{bottom:158.399986px;}
.y67{bottom:160.740006px;}
.y130{bottom:161.279983px;}
.ye9{bottom:162.899986px;}
.y95{bottom:165.240006px;}
.y113{bottom:167.399986px;}
.y151{bottom:169.200027px;}
.y183{bottom:170.100013px;}
.y192{bottom:171.179970px;}
.yb0{bottom:173.340019px;}
.y31{bottom:174.059967px;}
.ybd{bottom:175.679970px;}
.y66{bottom:177.840019px;}
.y12f{bottom:178.559967px;}
.ye8{bottom:180.179970px;}
.y94{bottom:182.340019px;}
.y112{bottom:184.679970px;}
.y15e{bottom:185.220017px;}
.y150{bottom:186.480011px;}
.y182{bottom:187.379998px;}
.y191{bottom:188.460022px;}
.yaf{bottom:190.620002px;}
.y30{bottom:191.340019px;}
.ybc{bottom:192.960022px;}
.y65{bottom:195.120002px;}
.y12e{bottom:195.659981px;}
.ye7{bottom:197.460022px;}
.y93{bottom:199.620002px;}
.y15d{bottom:202.500000px;}
.y181{bottom:204.659981px;}
.y190{bottom:205.740006px;}
.yae{bottom:207.899986px;}
.y2f{bottom:208.620002px;}
.ybb{bottom:210.240006px;}
.y64{bottom:212.399986px;}
.y12d{bottom:212.940033px;}
.ye6{bottom:214.740006px;}
.y14f{bottom:216.360008px;}
.y92{bottom:216.899986px;}
.y180{bottom:221.940033px;}
.y18f{bottom:222.840019px;}
.yad{bottom:225.179970px;}
.y2e{bottom:225.899986px;}
.yba{bottom:227.340019px;}
.y63{bottom:229.679970px;}
.y12c{bottom:230.220017px;}
.ye5{bottom:231.840019px;}
.y15b{bottom:232.019989px;}
.y91{bottom:234.179970px;}
.y17f{bottom:239.220017px;}
.y18e{bottom:240.120002px;}
.yac{bottom:242.460022px;}
.y2d{bottom:243.179970px;}
.yb9{bottom:244.620002px;}
.ye4{bottom:249.120002px;}
.y90{bottom:251.460022px;}
.y17e{bottom:256.320030px;}
.y18d{bottom:257.399986px;}
.yab{bottom:259.740006px;}
.y2c{bottom:260.460022px;}
.y62{bottom:261.899986px;}
.y12b{bottom:262.440033px;}
.yfd{bottom:266.399986px;}
.y8f{bottom:268.559967px;}
.y17d{bottom:273.600013px;}
.y18c{bottom:274.679970px;}
.yaa{bottom:276.840019px;}
.y2b{bottom:277.559967px;}
.y61{bottom:279.179970px;}
.ye3{bottom:281.340019px;}
.yfc{bottom:283.679970px;}
.y111{bottom:285.840019px;}
.y17c{bottom:290.879998px;}
.y18b{bottom:291.960022px;}
.ya9{bottom:294.120002px;}
.y12a{bottom:294.659981px;}
.y2a{bottom:294.840019px;}
.y60{bottom:296.460022px;}
.ye2{bottom:298.620002px;}
.y8e{bottom:300.779983px;}
.yfb{bottom:300.960022px;}
.y110{bottom:303.120002px;}
.y17b{bottom:308.159981px;}
.y18a{bottom:309.240006px;}
.ya8{bottom:311.399986px;}
.y29{bottom:312.120002px;}
.y5f{bottom:313.559967px;}
.ye1{bottom:315.899986px;}
.y8d{bottom:318.059967px;}
.y142{bottom:319.139992px;}
.y10f{bottom:320.399986px;}
.y17a{bottom:325.440033px;}
.y189{bottom:326.340019px;}
.y129{bottom:326.879998px;}
.ya7{bottom:328.679970px;}
.y5e{bottom:330.840019px;}
.y13e{bottom:332.639992px;}
.y8c{bottom:335.340019px;}
.y10e{bottom:337.679970px;}
.y141{bottom:338.940033px;}
.y179{bottom:342.539977px;}
.y188{bottom:343.620002px;}
.ya6{bottom:345.960022px;}
.y28{bottom:346.860008px;}
.y5d{bottom:348.120002px;}
.y13d{bottom:349.919975px;}
.y11a{bottom:350.279983px;}
.y8b{bottom:352.620002px;}
.y10d{bottom:354.960022px;}
.y128{bottom:355.860008px;}
.y178{bottom:359.820030px;}
.ydf{bottom:360.899986px;}
.ya5{bottom:363.059967px;}
.y5c{bottom:365.399986px;}
.y13c{bottom:367.200027px;}
.y119{bottom:367.559967px;}
.y8a{bottom:369.899986px;}
.y10c{bottom:372.059967px;}
.yde{bottom:378.179970px;}
.ya4{bottom:380.340019px;}
.y27{bottom:381.779983px;}
.y5b{bottom:382.679970px;}
.y13b{bottom:384.480011px;}
.y118{bottom:384.840019px;}
.y89{bottom:387.179970px;}
.y177{bottom:392.039977px;}
.ydb{bottom:395.279983px;}
.ydd{bottom:395.460022px;}
.ya3{bottom:397.620002px;}
.y26{bottom:399.059967px;}
.y5a{bottom:399.960022px;}
.y15c{bottom:401.039977px;}
.y117{bottom:402.120002px;}
.y10b{bottom:404.279983px;}
.y88{bottom:404.460022px;}
.y175{bottom:411.659981px;}
.yda{bottom:412.559967px;}
.ya2{bottom:414.899986px;}
.y176{bottom:415.259994px;}
.y25{bottom:416.340019px;}
.y13a{bottom:416.700027px;}
.y59{bottom:417.059967px;}
.y14e{bottom:417.960022px;}
.yfa{bottom:419.399986px;}
.y87{bottom:421.559967px;}
.yd9{bottom:429.840019px;}
.ya1{bottom:432.179970px;}
.y24{bottom:433.620002px;}
.y15a{bottom:434.159981px;}
.y58{bottom:434.340019px;}
.y173{bottom:434.879998px;}
.y14d{bottom:435.240006px;}
.yf9{bottom:436.679970px;}
.y172{bottom:438.480011px;}
.y86{bottom:438.840019px;}
.yd8{bottom:447.120002px;}
.ya0{bottom:449.460022px;}
.y139{bottom:449.639992px;}
.y23{bottom:450.720017px;}
.y57{bottom:451.620002px;}
.y127{bottom:453.240006px;}
.yf8{bottom:453.960022px;}
.y85{bottom:456.120002px;}
.y171{bottom:461.519989px;}
.yd7{bottom:464.399986px;}
.y14c{bottom:464.940033px;}
.y9f{bottom:466.559967px;}
.y138{bottom:466.919975px;}
.y159{bottom:467.100013px;}
.y22{bottom:468.000000px;}
.y56{bottom:468.899986px;}
.y126{bottom:470.519989px;}
.yf7{bottom:471.059967px;}
.y84{bottom:473.399986px;}
.yd6{bottom:481.679970px;}
.y9e{bottom:483.840019px;}
.y158{bottom:484.379998px;}
.y170{bottom:484.740006px;}
.y21{bottom:485.279983px;}
.y55{bottom:486.179970px;}
.y125{bottom:487.799973px;}
.yf6{bottom:488.340019px;}
.y83{bottom:490.679970px;}
.y137{bottom:496.620002px;}
.yd5{bottom:498.960022px;}
.y9d{bottom:501.120002px;}
.y20{bottom:502.559967px;}
.yb8{bottom:503.460022px;}
.y124{bottom:505.080025px;}
.yf5{bottom:505.620002px;}
.y82{bottom:507.960022px;}
.y157{bottom:513.899986px;}
.yd4{bottom:516.059967px;}
.y54{bottom:518.399986px;}
.y1f{bottom:519.840019px;}
.yb7{bottom:520.559967px;}
.y123{bottom:522.360008px;}
.yf4{bottom:522.899986px;}
.y10a{bottom:525.059967px;}
.y16e{bottom:527.580025px;}
.y16d{bottom:531.179970px;}
.yd3{bottom:533.340019px;}
.y53{bottom:535.679970px;}
.y1e{bottom:537.120002px;}
.yb6{bottom:537.840019px;}
.y122{bottom:539.639992px;}
.y81{bottom:540.179970px;}
.yd2{bottom:550.620002px;}
.y52{bottom:552.960022px;}
.y1d{bottom:554.220017px;}
.yb5{bottom:555.120002px;}
.y109{bottom:557.279983px;}
.yf3{bottom:557.460022px;}
.y16c{bottom:564.120002px;}
.yd1{bottom:567.899986px;}
.y51{bottom:570.059967px;}
.y1c{bottom:571.500000px;}
.y121{bottom:571.860008px;}
.y80{bottom:572.399986px;}
.yf2{bottom:574.559967px;}
.y16b{bottom:581.399986px;}
.yd0{bottom:585.179970px;}
.y50{bottom:587.340019px;}
.y1b{bottom:588.779983px;}
.y7f{bottom:589.679970px;}
.yf1{bottom:591.840019px;}
.ycf{bottom:602.460022px;}
.y120{bottom:604.080025px;}
.y4f{bottom:604.620002px;}
.y1a{bottom:606.059967px;}
.y7e{bottom:606.960022px;}
.y108{bottom:609.120002px;}
.y16a{bottom:613.620002px;}
.yce{bottom:619.560001px;}
.y11f{bottom:621.360008px;}
.y4e{bottom:621.899986px;}
.y19{bottom:623.339985px;}
.y7d{bottom:624.060001px;}
.y107{bottom:626.399986px;}
.y169{bottom:630.899986px;}
.ycd{bottom:636.839985px;}
.y11e{bottom:638.639992px;}
.y4d{bottom:639.180004px;}
.y18{bottom:640.620002px;}
.y7c{bottom:641.339985px;}
.y106{bottom:643.680004px;}
.y168{bottom:648.180004px;}
.ycc{bottom:654.120002px;}
.y11d{bottom:655.740006px;}
.y4c{bottom:656.459988px;}
.y17{bottom:657.720017px;}
.y7b{bottom:658.620002px;}
.y105{bottom:660.779983px;}
.y167{bottom:665.459988px;}
.y14b{bottom:666.899986px;}
.ycb{bottom:671.399986px;}
.y4b{bottom:673.560001px;}
.y16{bottom:675.000000px;}
.y7a{bottom:675.899986px;}
.y104{bottom:678.060001px;}
.y166{bottom:682.560001px;}
.y14a{bottom:684.180004px;}
.y11c{bottom:687.959988px;}
.ye0{bottom:688.500000px;}
.yca{bottom:688.680004px;}
.y4a{bottom:690.839985px;}
.y15{bottom:692.279983px;}
.y79{bottom:693.180004px;}
.y103{bottom:695.339985px;}
.y136{bottom:698.399986px;}
.y165{bottom:699.839985px;}
.y149{bottom:701.459988px;}
.yc9{bottom:705.779983px;}
.y49{bottom:708.120002px;}
.y14{bottom:709.560001px;}
.y78{bottom:710.279983px;}
.y135{bottom:715.680004px;}
.y156{bottom:715.860008px;}
.y11b{bottom:716.939999px;}
.y164{bottom:717.120002px;}
.y148{bottom:718.740006px;}
.yc8{bottom:723.060001px;}
.y48{bottom:725.399986px;}
.y77{bottom:727.560001px;}
.y155{bottom:733.139992px;}
.y163{bottom:734.399986px;}
.yc7{bottom:740.339985px;}
.yb4{bottom:742.500000px;}
.y47{bottom:742.680004px;}
.y13{bottom:744.300007px;}
.y76{bottom:744.839985px;}
.y134{bottom:745.560001px;}
.y147{bottom:750.959988px;}
.y162{bottom:751.680004px;}
.yc6{bottom:757.620002px;}
.y46{bottom:759.779983px;}
.y75{bottom:762.120002px;}
.y153{bottom:762.660015px;}
.yc5{bottom:774.899986px;}
.y45{bottom:777.060001px;}
.y12{bottom:779.220017px;}
.y74{bottom:779.399986px;}
.y146{bottom:783.899986px;}
.yc4{bottom:792.180004px;}
.y9c{bottom:794.339985px;}
.yf0{bottom:796.680004px;}
.y145{bottom:801.180004px;}
.y44{bottom:809.279983px;}
.y73{bottom:811.620002px;}
.yef{bottom:813.779983px;}
.y11{bottom:813.959988px;}
.y161{bottom:816.839985px;}
.y43{bottom:826.560001px;}
.y72{bottom:828.899986px;}
.y144{bottom:830.879998px;}
.y102{bottom:831.060001px;}
.y160{bottom:834.120002px;}
.y10{bottom:838.980011px;}
.y42{bottom:843.839985px;}
.yee{bottom:846.000000px;}
.y71{bottom:846.180004px;}
.y101{bottom:848.339985px;}
.y41{bottom:861.120002px;}
.y70{bottom:863.279983px;}
.y15f{bottom:863.819995px;}
.yf{bottom:868.680004px;}
.y40{bottom:878.399987px;}
.y6f{bottom:880.560001px;}
.ye{bottom:893.699993px;}
.y197{bottom:895.500000px;}
.y3f{bottom:895.680004px;}
.y6e{bottom:897.839985px;}
.y3e{bottom:912.780001px;}
.y6d{bottom:915.120002px;}
.yd{bottom:923.400003px;}
.y3d{bottom:930.060001px;}
.y154{bottom:931.500000px;}
.y6c{bottom:932.400003px;}
.y3c{bottom:947.340002px;}
.y9b{bottom:949.680004px;}
.yc{bottom:961.560001px;}
.y3b{bottom:964.620002px;}
.y9a{bottom:966.780001px;}
.y3a{bottom:981.900003px;}
.y99{bottom:984.060001px;}
.yb{bottom:993.599997px;}
.yc3{bottom:999.000000px;}
.y39{bottom:999.180004px;}
.y98{bottom:1001.340002px;}
.y38{bottom:1016.280001px;}
.ya{bottom:1025.280001px;}
.y143{bottom:1032.840002px;}
.y37{bottom:1033.560001px;}
.y6{bottom:1067.219999px;}
.y5{bottom:1079.459997px;}
.y4{bottom:1091.340002px;}
.y3{bottom:1105.379998px;}
.y2{bottom:1119.960843px;}
.y1{bottom:1120.860000px;}
.hd{height:16.559967px;}
.he{height:16.919975px;}
.hf{height:16.920044px;}
.h9{height:27.096252px;}
.h5{height:35.738832px;}
.h3{height:39.794858px;}
.h1{height:41.647772px;}
.h6{height:41.954845px;}
.ha{height:42.084637px;}
.h2{height:42.164290px;}
.hc{height:43.424356px;}
.hb{height:43.599102px;}
.h4{height:44.378823px;}
.h8{height:47.976247px;}
.h7{height:66.737046px;}
.h0{height:1188.000000px;}
.w5{width:1.980011px;}
.w3{width:3.599997px;}
.w9{width:3.960004px;}
.w6{width:6.300007px;}
.w7{width:7.200010px;}
.w4{width:55.620002px;}
.w2{width:56.340002px;}
.w8{width:83.519998px;}
.w1{width:276.480011px;}
.w0{width:918.000000px;}
.x2a{left:-1.080007px;}
.x0{left:0.000000px;}
.x5{left:134.819996px;}
.x32{left:136.980002px;}
.x1a{left:139.680005px;}
.x31{left:146.699993px;}
.xd{left:149.400003px;}
.x30{left:150.659998px;}
.x7{left:153.000000px;}
.xb{left:156.419992px;}
.x20{left:163.800007px;}
.x36{left:175.500000px;}
.xc{left:192.060001px;}
.x8{left:193.319996px;}
.x33{left:215.639992px;}
.x34{left:218.879998px;}
.x29{left:221.580008px;}
.x1f{left:223.020006px;}
.x1b{left:236.159998px;}
.x1{left:246.599997px;}
.xf{left:260.819996px;}
.x1d{left:266.219999px;}
.x2b{left:279.900003px;}
.x2c{left:288.899987px;}
.x2d{left:337.500000px;}
.xe{left:346.680005px;}
.xa{left:352.980011px;}
.x2{left:383.579990px;}
.x2e{left:393.120002px;}
.x9{left:394.199993px;}
.x3{left:399.420010px;}
.x2f{left:404.100014px;}
.x12{left:408.959988px;}
.x10{left:418.139992px;}
.x28{left:420.660015px;}
.x1e{left:428.040012px;}
.x1c{left:432.360008px;}
.x6{left:443.879998px;}
.x13{left:453.959988px;}
.x11{left:458.100014px;}
.x15{left:472.500000px;}
.x24{left:486.899987px;}
.x35{left:498.600014px;}
.x27{left:544.680005px;}
.x22{left:556.019989px;}
.x16{left:559.259994px;}
.x18{left:589.320030px;}
.x25{left:725.759994px;}
.x21{left:734.759994px;}
.x26{left:745.200027px;}
.x23{left:747.179970px;}
.x14{left:748.620002px;}
.x19{left:751.500000px;}
.x17{left:755.100014px;}
.x4{left:783.000000px;}
@media print{
.v7{vertical-align:-18.559936pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720004pt;}
.v1{vertical-align:16.640012pt;}
.v6{vertical-align:18.559996pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032624pt;}
.ls1{letter-spacing:0.032628pt;}
.ls3{letter-spacing:0.032688pt;}
.ls2{letter-spacing:0.032752pt;}
.ls4{letter-spacing:0.185204pt;}
.ls8{letter-spacing:4.025228pt;}
.ls9{letter-spacing:13.473654pt;}
.lsc{letter-spacing:26.913658pt;}
.lsd{letter-spacing:26.913778pt;}
.ls5{letter-spacing:40.993674pt;}
.ls7{letter-spacing:40.993734pt;}
.lsb{letter-spacing:53.793662pt;}
.lsa{letter-spacing:53.793782pt;}
.ws3{word-spacing:-13.254800pt;}
.ws2{word-spacing:-11.977300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws1{word-spacing:-6.707270pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-1.007368pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._3{width:3.649419pt;}
._8{width:4.567870pt;}
._2e{width:5.482311pt;}
._c{width:6.396333pt;}
._e{width:7.754076pt;}
._a{width:8.862461pt;}
._9{width:10.064742pt;}
._4{width:11.106137pt;}
._b{width:12.010299pt;}
._1e{width:14.651460pt;}
._15{width:15.718807pt;}
._6{width:16.618541pt;}
._7{width:17.687125pt;}
._d{width:19.203966pt;}
._2c{width:20.702612pt;}
._10{width:21.618914pt;}
._18{width:22.534817pt;}
._5{width:23.493990pt;}
._21{width:24.821063pt;}
._12{width:26.063621pt;}
._1a{width:26.970204pt;}
._14{width:28.035830pt;}
._24{width:29.141634pt;}
._19{width:30.694517pt;}
._f{width:31.740340pt;}
._3c{width:32.754953pt;}
._1c{width:33.811323pt;}
._1b{width:35.046105pt;}
._16{width:36.464704pt;}
._13{width:38.190871pt;}
._31{width:39.171933pt;}
._2a{width:40.324494pt;}
._36{width:41.297529pt;}
._29{width:42.250696pt;}
._11{width:43.377433pt;}
._23{width:44.740128pt;}
._22{width:45.700958pt;}
._2b{width:46.615204pt;}
._25{width:47.697876pt;}
._30{width:48.592368pt;}
._44{width:49.491634pt;}
._34{width:50.879028pt;}
._26{width:52.343333pt;}
._27{width:53.314677pt;}
._3e{width:54.706145pt;}
._3b{width:56.596610pt;}
._3a{width:57.690195pt;}
._35{width:59.443015pt;}
._1d{width:60.775807pt;}
._2d{width:61.810303pt;}
._33{width:63.267231pt;}
._43{width:64.239038pt;}
._28{width:65.352855pt;}
._2f{width:67.287499pt;}
._20{width:68.835140pt;}
._1f{width:70.160620pt;}
._17{width:74.728348pt;}
._32{width:75.621183pt;}
._39{width:80.445995pt;}
._45{width:81.992807pt;}
._3d{width:86.941404pt;}
._40{width:93.260359pt;}
._42{width:96.122217pt;}
._3f{width:109.659510pt;}
._41{width:116.552006pt;}
._46{width:117.885563pt;}
._38{width:155.699278pt;}
._37{width:723.975169pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs7{font-size:34.494560pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y140{bottom:2.880005pt;}
.y16f{bottom:3.199951pt;}
.y174{bottom:3.200012pt;}
.y9{bottom:31.680054pt;}
.y8{bottom:47.039978pt;}
.y7{bottom:59.520020pt;}
.y36{bottom:78.080017pt;}
.yc2{bottom:79.520020pt;}
.y6b{bottom:81.440002pt;}
.yed{bottom:83.520020pt;}
.y133{bottom:84.000000pt;}
.y116{bottom:85.440002pt;}
.y13f{bottom:86.880005pt;}
.y187{bottom:89.919983pt;}
.y196{bottom:90.880005pt;}
.ydc{bottom:92.799988pt;}
.y35{bottom:93.440002pt;}
.yc1{bottom:94.880005pt;}
.y6a{bottom:96.799988pt;}
.yec{bottom:98.880005pt;}
.yff{bottom:100.799988pt;}
.y97{bottom:102.719971pt;}
.y186{bottom:105.280029pt;}
.y195{bottom:106.080017pt;}
.yb3{bottom:108.159973pt;}
.y34{bottom:108.799988pt;}
.yc0{bottom:110.080017pt;}
.y69{bottom:112.159973pt;}
.y132{bottom:112.640015pt;}
.yeb{bottom:114.080017pt;}
.yfe{bottom:116.159973pt;}
.y115{bottom:118.080017pt;}
.y185{bottom:120.640015pt;}
.y152{bottom:121.119995pt;}
.y194{bottom:121.440002pt;}
.yb2{bottom:123.520020pt;}
.y33{bottom:124.159973pt;}
.ybf{bottom:125.440002pt;}
.y68{bottom:127.520020pt;}
.y131{bottom:128.000000pt;}
.yea{bottom:129.440002pt;}
.y96{bottom:131.520020pt;}
.y114{bottom:133.440002pt;}
.y184{bottom:135.840027pt;}
.y193{bottom:136.799988pt;}
.y100{bottom:138.719971pt;}
.yb1{bottom:138.880005pt;}
.y32{bottom:139.520020pt;}
.ybe{bottom:140.799988pt;}
.y67{bottom:142.880005pt;}
.y130{bottom:143.359985pt;}
.ye9{bottom:144.799988pt;}
.y95{bottom:146.880005pt;}
.y113{bottom:148.799988pt;}
.y151{bottom:150.400024pt;}
.y183{bottom:151.200012pt;}
.y192{bottom:152.159973pt;}
.yb0{bottom:154.080017pt;}
.y31{bottom:154.719971pt;}
.ybd{bottom:156.159973pt;}
.y66{bottom:158.080017pt;}
.y12f{bottom:158.719971pt;}
.ye8{bottom:160.159973pt;}
.y94{bottom:162.080017pt;}
.y112{bottom:164.159973pt;}
.y15e{bottom:164.640015pt;}
.y150{bottom:165.760010pt;}
.y182{bottom:166.559998pt;}
.y191{bottom:167.520020pt;}
.yaf{bottom:169.440002pt;}
.y30{bottom:170.080017pt;}
.ybc{bottom:171.520020pt;}
.y65{bottom:173.440002pt;}
.y12e{bottom:173.919983pt;}
.ye7{bottom:175.520020pt;}
.y93{bottom:177.440002pt;}
.y15d{bottom:180.000000pt;}
.y181{bottom:181.919983pt;}
.y190{bottom:182.880005pt;}
.yae{bottom:184.799988pt;}
.y2f{bottom:185.440002pt;}
.ybb{bottom:186.880005pt;}
.y64{bottom:188.799988pt;}
.y12d{bottom:189.280029pt;}
.ye6{bottom:190.880005pt;}
.y14f{bottom:192.320007pt;}
.y92{bottom:192.799988pt;}
.y180{bottom:197.280029pt;}
.y18f{bottom:198.080017pt;}
.yad{bottom:200.159973pt;}
.y2e{bottom:200.799988pt;}
.yba{bottom:202.080017pt;}
.y63{bottom:204.159973pt;}
.y12c{bottom:204.640015pt;}
.ye5{bottom:206.080017pt;}
.y15b{bottom:206.239990pt;}
.y91{bottom:208.159973pt;}
.y17f{bottom:212.640015pt;}
.y18e{bottom:213.440002pt;}
.yac{bottom:215.520020pt;}
.y2d{bottom:216.159973pt;}
.yb9{bottom:217.440002pt;}
.ye4{bottom:221.440002pt;}
.y90{bottom:223.520020pt;}
.y17e{bottom:227.840027pt;}
.y18d{bottom:228.799988pt;}
.yab{bottom:230.880005pt;}
.y2c{bottom:231.520020pt;}
.y62{bottom:232.799988pt;}
.y12b{bottom:233.280029pt;}
.yfd{bottom:236.799988pt;}
.y8f{bottom:238.719971pt;}
.y17d{bottom:243.200012pt;}
.y18c{bottom:244.159973pt;}
.yaa{bottom:246.080017pt;}
.y2b{bottom:246.719971pt;}
.y61{bottom:248.159973pt;}
.ye3{bottom:250.080017pt;}
.yfc{bottom:252.159973pt;}
.y111{bottom:254.080017pt;}
.y17c{bottom:258.559998pt;}
.y18b{bottom:259.520020pt;}
.ya9{bottom:261.440002pt;}
.y12a{bottom:261.919983pt;}
.y2a{bottom:262.080017pt;}
.y60{bottom:263.520020pt;}
.ye2{bottom:265.440002pt;}
.y8e{bottom:267.359985pt;}
.yfb{bottom:267.520020pt;}
.y110{bottom:269.440002pt;}
.y17b{bottom:273.919983pt;}
.y18a{bottom:274.880005pt;}
.ya8{bottom:276.799988pt;}
.y29{bottom:277.440002pt;}
.y5f{bottom:278.719971pt;}
.ye1{bottom:280.799988pt;}
.y8d{bottom:282.719971pt;}
.y142{bottom:283.679993pt;}
.y10f{bottom:284.799988pt;}
.y17a{bottom:289.280029pt;}
.y189{bottom:290.080017pt;}
.y129{bottom:290.559998pt;}
.ya7{bottom:292.159973pt;}
.y5e{bottom:294.080017pt;}
.y13e{bottom:295.679993pt;}
.y8c{bottom:298.080017pt;}
.y10e{bottom:300.159973pt;}
.y141{bottom:301.280029pt;}
.y179{bottom:304.479980pt;}
.y188{bottom:305.440002pt;}
.ya6{bottom:307.520020pt;}
.y28{bottom:308.320007pt;}
.y5d{bottom:309.440002pt;}
.y13d{bottom:311.039978pt;}
.y11a{bottom:311.359985pt;}
.y8b{bottom:313.440002pt;}
.y10d{bottom:315.520020pt;}
.y128{bottom:316.320007pt;}
.y178{bottom:319.840027pt;}
.ydf{bottom:320.799988pt;}
.ya5{bottom:322.719971pt;}
.y5c{bottom:324.799988pt;}
.y13c{bottom:326.400024pt;}
.y119{bottom:326.719971pt;}
.y8a{bottom:328.799988pt;}
.y10c{bottom:330.719971pt;}
.yde{bottom:336.159973pt;}
.ya4{bottom:338.080017pt;}
.y27{bottom:339.359985pt;}
.y5b{bottom:340.159973pt;}
.y13b{bottom:341.760010pt;}
.y118{bottom:342.080017pt;}
.y89{bottom:344.159973pt;}
.y177{bottom:348.479980pt;}
.ydb{bottom:351.359985pt;}
.ydd{bottom:351.520020pt;}
.ya3{bottom:353.440002pt;}
.y26{bottom:354.719971pt;}
.y5a{bottom:355.520020pt;}
.y15c{bottom:356.479980pt;}
.y117{bottom:357.440002pt;}
.y10b{bottom:359.359985pt;}
.y88{bottom:359.520020pt;}
.y175{bottom:365.919983pt;}
.yda{bottom:366.719971pt;}
.ya2{bottom:368.799988pt;}
.y176{bottom:369.119995pt;}
.y25{bottom:370.080017pt;}
.y13a{bottom:370.400024pt;}
.y59{bottom:370.719971pt;}
.y14e{bottom:371.520020pt;}
.yfa{bottom:372.799988pt;}
.y87{bottom:374.719971pt;}
.yd9{bottom:382.080017pt;}
.ya1{bottom:384.159973pt;}
.y24{bottom:385.440002pt;}
.y15a{bottom:385.919983pt;}
.y58{bottom:386.080017pt;}
.y173{bottom:386.559998pt;}
.y14d{bottom:386.880005pt;}
.yf9{bottom:388.159973pt;}
.y172{bottom:389.760010pt;}
.y86{bottom:390.080017pt;}
.yd8{bottom:397.440002pt;}
.ya0{bottom:399.520020pt;}
.y139{bottom:399.679993pt;}
.y23{bottom:400.640015pt;}
.y57{bottom:401.440002pt;}
.y127{bottom:402.880005pt;}
.yf8{bottom:403.520020pt;}
.y85{bottom:405.440002pt;}
.y171{bottom:410.239990pt;}
.yd7{bottom:412.799988pt;}
.y14c{bottom:413.280029pt;}
.y9f{bottom:414.719971pt;}
.y138{bottom:415.039978pt;}
.y159{bottom:415.200012pt;}
.y22{bottom:416.000000pt;}
.y56{bottom:416.799988pt;}
.y126{bottom:418.239990pt;}
.yf7{bottom:418.719971pt;}
.y84{bottom:420.799988pt;}
.yd6{bottom:428.159973pt;}
.y9e{bottom:430.080017pt;}
.y158{bottom:430.559998pt;}
.y170{bottom:430.880005pt;}
.y21{bottom:431.359985pt;}
.y55{bottom:432.159973pt;}
.y125{bottom:433.599976pt;}
.yf6{bottom:434.080017pt;}
.y83{bottom:436.159973pt;}
.y137{bottom:441.440002pt;}
.yd5{bottom:443.520020pt;}
.y9d{bottom:445.440002pt;}
.y20{bottom:446.719971pt;}
.yb8{bottom:447.520020pt;}
.y124{bottom:448.960022pt;}
.yf5{bottom:449.440002pt;}
.y82{bottom:451.520020pt;}
.y157{bottom:456.799988pt;}
.yd4{bottom:458.719971pt;}
.y54{bottom:460.799988pt;}
.y1f{bottom:462.080017pt;}
.yb7{bottom:462.719971pt;}
.y123{bottom:464.320007pt;}
.yf4{bottom:464.799988pt;}
.y10a{bottom:466.719971pt;}
.y16e{bottom:468.960022pt;}
.y16d{bottom:472.159973pt;}
.yd3{bottom:474.080017pt;}
.y53{bottom:476.159973pt;}
.y1e{bottom:477.440002pt;}
.yb6{bottom:478.080017pt;}
.y122{bottom:479.679993pt;}
.y81{bottom:480.159973pt;}
.yd2{bottom:489.440002pt;}
.y52{bottom:491.520020pt;}
.y1d{bottom:492.640015pt;}
.yb5{bottom:493.440002pt;}
.y109{bottom:495.359985pt;}
.yf3{bottom:495.520020pt;}
.y16c{bottom:501.440002pt;}
.yd1{bottom:504.799988pt;}
.y51{bottom:506.719971pt;}
.y1c{bottom:508.000000pt;}
.y121{bottom:508.320007pt;}
.y80{bottom:508.799988pt;}
.yf2{bottom:510.719971pt;}
.y16b{bottom:516.799988pt;}
.yd0{bottom:520.159973pt;}
.y50{bottom:522.080017pt;}
.y1b{bottom:523.359985pt;}
.y7f{bottom:524.159973pt;}
.yf1{bottom:526.080017pt;}
.ycf{bottom:535.520020pt;}
.y120{bottom:536.960022pt;}
.y4f{bottom:537.440002pt;}
.y1a{bottom:538.719971pt;}
.y7e{bottom:539.520020pt;}
.y108{bottom:541.440002pt;}
.y16a{bottom:545.440002pt;}
.yce{bottom:550.720001pt;}
.y11f{bottom:552.320007pt;}
.y4e{bottom:552.799988pt;}
.y19{bottom:554.079987pt;}
.y7d{bottom:554.720001pt;}
.y107{bottom:556.799988pt;}
.y169{bottom:560.799988pt;}
.ycd{bottom:566.079987pt;}
.y11e{bottom:567.679993pt;}
.y4d{bottom:568.160004pt;}
.y18{bottom:569.440002pt;}
.y7c{bottom:570.079987pt;}
.y106{bottom:572.160004pt;}
.y168{bottom:576.160004pt;}
.ycc{bottom:581.440002pt;}
.y11d{bottom:582.880005pt;}
.y4c{bottom:583.519989pt;}
.y17{bottom:584.640015pt;}
.y7b{bottom:585.440002pt;}
.y105{bottom:587.359985pt;}
.y167{bottom:591.519989pt;}
.y14b{bottom:592.799988pt;}
.ycb{bottom:596.799988pt;}
.y4b{bottom:598.720001pt;}
.y16{bottom:600.000000pt;}
.y7a{bottom:600.799988pt;}
.y104{bottom:602.720001pt;}
.y166{bottom:606.720001pt;}
.y14a{bottom:608.160004pt;}
.y11c{bottom:611.519989pt;}
.ye0{bottom:612.000000pt;}
.yca{bottom:612.160004pt;}
.y4a{bottom:614.079987pt;}
.y15{bottom:615.359985pt;}
.y79{bottom:616.160004pt;}
.y103{bottom:618.079987pt;}
.y136{bottom:620.799988pt;}
.y165{bottom:622.079987pt;}
.y149{bottom:623.519989pt;}
.yc9{bottom:627.359985pt;}
.y49{bottom:629.440002pt;}
.y14{bottom:630.720001pt;}
.y78{bottom:631.359985pt;}
.y135{bottom:636.160004pt;}
.y156{bottom:636.320007pt;}
.y11b{bottom:637.279999pt;}
.y164{bottom:637.440002pt;}
.y148{bottom:638.880005pt;}
.yc8{bottom:642.720001pt;}
.y48{bottom:644.799988pt;}
.y77{bottom:646.720001pt;}
.y155{bottom:651.679993pt;}
.y163{bottom:652.799988pt;}
.yc7{bottom:658.079987pt;}
.yb4{bottom:660.000000pt;}
.y47{bottom:660.160004pt;}
.y13{bottom:661.600006pt;}
.y76{bottom:662.079987pt;}
.y134{bottom:662.720001pt;}
.y147{bottom:667.519989pt;}
.y162{bottom:668.160004pt;}
.yc6{bottom:673.440002pt;}
.y46{bottom:675.359985pt;}
.y75{bottom:677.440002pt;}
.y153{bottom:677.920013pt;}
.yc5{bottom:688.799988pt;}
.y45{bottom:690.720001pt;}
.y12{bottom:692.640015pt;}
.y74{bottom:692.799988pt;}
.y146{bottom:696.799988pt;}
.yc4{bottom:704.160004pt;}
.y9c{bottom:706.079987pt;}
.yf0{bottom:708.160004pt;}
.y145{bottom:712.160004pt;}
.y44{bottom:719.359985pt;}
.y73{bottom:721.440002pt;}
.yef{bottom:723.359985pt;}
.y11{bottom:723.519989pt;}
.y161{bottom:726.079987pt;}
.y43{bottom:734.720001pt;}
.y72{bottom:736.799988pt;}
.y144{bottom:738.559998pt;}
.y102{bottom:738.720001pt;}
.y160{bottom:741.440002pt;}
.y10{bottom:745.760010pt;}
.y42{bottom:750.079987pt;}
.yee{bottom:752.000000pt;}
.y71{bottom:752.160004pt;}
.y101{bottom:754.079987pt;}
.y41{bottom:765.440002pt;}
.y70{bottom:767.359985pt;}
.y15f{bottom:767.839996pt;}
.yf{bottom:772.160004pt;}
.y40{bottom:780.799988pt;}
.y6f{bottom:782.720001pt;}
.ye{bottom:794.399994pt;}
.y197{bottom:796.000000pt;}
.y3f{bottom:796.160004pt;}
.y6e{bottom:798.079987pt;}
.y3e{bottom:811.360001pt;}
.y6d{bottom:813.440002pt;}
.yd{bottom:820.800003pt;}
.y3d{bottom:826.720001pt;}
.y154{bottom:828.000000pt;}
.y6c{bottom:828.800003pt;}
.y3c{bottom:842.080002pt;}
.y9b{bottom:844.160004pt;}
.yc{bottom:854.720001pt;}
.y3b{bottom:857.440002pt;}
.y9a{bottom:859.360001pt;}
.y3a{bottom:872.800003pt;}
.y99{bottom:874.720001pt;}
.yb{bottom:883.199997pt;}
.yc3{bottom:888.000000pt;}
.y39{bottom:888.160004pt;}
.y98{bottom:890.080002pt;}
.y38{bottom:903.360001pt;}
.ya{bottom:911.360001pt;}
.y143{bottom:918.080002pt;}
.y37{bottom:918.720001pt;}
.y6{bottom:948.639999pt;}
.y5{bottom:959.519997pt;}
.y4{bottom:970.080002pt;}
.y3{bottom:982.559998pt;}
.y2{bottom:995.520750pt;}
.y1{bottom:996.320000pt;}
.hd{height:14.719971pt;}
.he{height:15.039978pt;}
.hf{height:15.040039pt;}
.h9{height:24.085557pt;}
.h5{height:31.767850pt;}
.h3{height:35.373208pt;}
.h1{height:37.020242pt;}
.h6{height:37.293196pt;}
.ha{height:37.408566pt;}
.h2{height:37.479369pt;}
.hc{height:38.599427pt;}
.hb{height:38.754757pt;}
.h4{height:39.447842pt;}
.h8{height:42.645553pt;}
.h7{height:59.321818pt;}
.h0{height:1056.000000pt;}
.w5{width:1.760010pt;}
.w3{width:3.199997pt;}
.w9{width:3.520004pt;}
.w6{width:5.600006pt;}
.w7{width:6.400009pt;}
.w4{width:49.440002pt;}
.w2{width:50.080002pt;}
.w8{width:74.239998pt;}
.w1{width:245.760010pt;}
.w0{width:816.000000pt;}
.x2a{left:-0.960006pt;}
.x0{left:0.000000pt;}
.x5{left:119.839996pt;}
.x32{left:121.760002pt;}
.x1a{left:124.160004pt;}
.x31{left:130.399994pt;}
.xd{left:132.800003pt;}
.x30{left:133.919998pt;}
.x7{left:136.000000pt;}
.xb{left:139.039993pt;}
.x20{left:145.600006pt;}
.x36{left:156.000000pt;}
.xc{left:170.720001pt;}
.x8{left:171.839996pt;}
.x33{left:191.679993pt;}
.x34{left:194.559998pt;}
.x29{left:196.960007pt;}
.x1f{left:198.240005pt;}
.x1b{left:209.919998pt;}
.x1{left:219.199997pt;}
.xf{left:231.839996pt;}
.x1d{left:236.639999pt;}
.x2b{left:248.800003pt;}
.x2c{left:256.799988pt;}
.x2d{left:300.000000pt;}
.xe{left:308.160004pt;}
.xa{left:313.760010pt;}
.x2{left:340.959991pt;}
.x2e{left:349.440002pt;}
.x9{left:350.399994pt;}
.x3{left:355.040009pt;}
.x2f{left:359.200012pt;}
.x12{left:363.519989pt;}
.x10{left:371.679993pt;}
.x28{left:373.920013pt;}
.x1e{left:380.480011pt;}
.x1c{left:384.320007pt;}
.x6{left:394.559998pt;}
.x13{left:403.519989pt;}
.x11{left:407.200012pt;}
.x15{left:420.000000pt;}
.x24{left:432.799988pt;}
.x35{left:443.200012pt;}
.x27{left:484.160004pt;}
.x22{left:494.239990pt;}
.x16{left:497.119995pt;}
.x18{left:523.840027pt;}
.x25{left:645.119995pt;}
.x21{left:653.119995pt;}
.x26{left:662.400024pt;}
.x23{left:664.159973pt;}
.x14{left:665.440002pt;}
.x19{left:668.000000pt;}
.x17{left:671.200012pt;}
.x4{left:696.000000pt;}
}




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