
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63c6e844f0ad3178c43220fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_80baaed0edb619dc6cde5cbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c1afc24ce27385851d83c64d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0b14cbf5d21da36fd7051370.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f0c4e3b542a6dad9d03a76e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3831dc93b2af3135c6d0a9f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_d932d003dd17271a65caa6df.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_de61cb9a98882b2aac5daf60.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.093000px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.018360px;}
.lsd{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls14{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.294800px;}
.wsb{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.268160px;}
.ws4{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.208040px;}
.wsc{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.133400px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._f{margin-left:-4.263840px;}
._10{margin-left:-3.216886px;}
._9{margin-left:-2.169000px;}
._0{margin-left:-1.110000px;}
._1{width:1.006728px;}
._3{width:2.524800px;}
._4{width:3.787800px;}
._5{width:5.425872px;}
._e{width:7.296788px;}
._a{width:8.296800px;}
._8{width:9.433801px;}
._7{width:10.673999px;}
._6{width:12.081600px;}
._2{width:14.428800px;}
._d{width:15.691200px;}
._b{width:17.434800px;}
._c{width:18.468840px;}
._13{width:19.719480px;}
._11{width:21.342600px;}
._12{width:22.645200px;}
._15{width:29.037960px;}
._16{width:30.276240px;}
._26{width:32.368800px;}
._1c{width:35.530920px;}
._21{width:41.717520px;}
._1e{width:44.969760px;}
._17{width:46.446840px;}
._20{width:47.640960px;}
._19{width:52.785360px;}
._1a{width:53.807400px;}
._23{width:60.480720px;}
._18{width:61.683120px;}
._1b{width:68.957640px;}
._25{width:80.440560px;}
._24{width:81.490440px;}
._14{width:197.915040px;}
._1f{width:215.951040px;}
._1d{width:239.397840px;}
._22{width:294.648120px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y56{bottom:6.300000px;}
.y5a{bottom:6.390000px;}
.y31{bottom:7.830000px;}
.ye0{bottom:7.860000px;}
.y33{bottom:7.920000px;}
.y11c{bottom:7.950000px;}
.y99{bottom:25.380000px;}
.ydf{bottom:25.410000px;}
.y9b{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y87{bottom:109.380000px;}
.y5d{bottom:111.090000px;}
.y102{bottom:112.800000px;}
.ycb{bottom:116.940000px;}
.yaf{bottom:119.100000px;}
.y127{bottom:123.600000px;}
.yf0{bottom:126.120000px;}
.y101{bottom:130.350000px;}
.y2a{bottom:132.330000px;}
.yca{bottom:134.490000px;}
.y86{bottom:135.210000px;}
.y5c{bottom:135.480000px;}
.y126{bottom:141.240000px;}
.yef{bottom:143.760000px;}
.y147{bottom:145.650000px;}
.y164{bottom:146.100000px;}
.y100{bottom:147.900000px;}
.y29{bottom:149.880000px;}
.yae{bottom:154.650000px;}
.y125{bottom:158.790000px;}
.y5b{bottom:159.780000px;}
.y85{bottom:161.040000px;}
.yee{bottom:161.310000px;}
.y146{bottom:163.200000px;}
.y163{bottom:163.740000px;}
.yff{bottom:165.540000px;}
.y28{bottom:167.520000px;}
.yc9{bottom:170.130000px;}
.y124{bottom:176.430000px;}
.y145{bottom:180.840000px;}
.y59{bottom:184.080000px;}
.y27{bottom:185.070000px;}
.y84{bottom:186.870000px;}
.yc8{bottom:187.680000px;}
.yad{bottom:190.290000px;}
.y162{bottom:190.560000px;}
.yfe{bottom:192.090000px;}
.y123{bottom:193.980000px;}
.yed{bottom:196.860000px;}
.y144{bottom:198.390000px;}
.y26{bottom:202.620000px;}
.yc7{bottom:205.230000px;}
.yac{bottom:207.840000px;}
.y58{bottom:208.470000px;}
.y122{bottom:211.530000px;}
.yec{bottom:214.500000px;}
.y143{bottom:216.030000px;}
.y25{bottom:220.260000px;}
.yc6{bottom:222.870000px;}
.yab{bottom:225.480000px;}
.yfd{bottom:227.730000px;}
.yeb{bottom:232.050000px;}
.y57{bottom:232.770000px;}
.y142{bottom:233.580000px;}
.y83{bottom:234.120000px;}
.y24{bottom:237.810000px;}
.y161{bottom:238.890000px;}
.yc5{bottom:240.420000px;}
.yaa{bottom:243.030000px;}
.y121{bottom:244.560000px;}
.yea{bottom:249.690000px;}
.y23{bottom:255.450000px;}
.y55{bottom:257.160000px;}
.yfc{bottom:259.950000px;}
.ya9{bottom:260.580000px;}
.y82{bottom:260.670000px;}
.y160{bottom:265.800000px;}
.yc4{bottom:267.060000px;}
.y141{bottom:269.130000px;}
.y22{bottom:273.000000px;}
.ye9{bottom:276.240000px;}
.ya8{bottom:278.220000px;}
.y140{bottom:286.770000px;}
.y120{bottom:289.470000px;}
.y21{bottom:290.550000px;}
.y81{bottom:296.220000px;}
.y54{bottom:302.790000px;}
.yc3{bottom:302.970000px;}
.y15f{bottom:303.150000px;}
.y13f{bottom:304.320000px;}
.ya7{bottom:304.770000px;}
.y20{bottom:308.190000px;}
.ye8{bottom:311.790000px;}
.y80{bottom:313.860000px;}
.y13e{bottom:321.870000px;}
.ye7{bottom:329.430000px;}
.y7f{bottom:331.410000px;}
.y11f{bottom:334.380000px;}
.y1f{bottom:335.100000px;}
.y53{bottom:338.430000px;}
.y13d{bottom:339.510000px;}
.ya6{bottom:340.680000px;}
.ye6{bottom:346.980000px;}
.y7e{bottom:349.050000px;}
.yc2{bottom:351.210000px;}
.y15e{bottom:351.390000px;}
.y52{bottom:355.980000px;}
.y13c{bottom:357.060000px;}
.ye5{bottom:364.620000px;}
.yc1{bottom:368.760000px;}
.y15d{bottom:368.940000px;}
.y51{bottom:373.620000px;}
.y7d{bottom:375.600000px;}
.y11e{bottom:379.290000px;}
.ye4{bottom:382.170000px;}
.y1e{bottom:383.340000px;}
.y13b{bottom:383.700000px;}
.yc0{bottom:386.400000px;}
.y15c{bottom:386.580000px;}
.ya5{bottom:389.010000px;}
.y50{bottom:391.170000px;}
.ye3{bottom:399.720000px;}
.y1d{bottom:401.250000px;}
.ybf{bottom:403.950000px;}
.y15b{bottom:404.130000px;}
.ya4{bottom:406.560000px;}
.y4f{bottom:408.720000px;}
.y7c{bottom:411.150000px;}
.y13a{bottom:416.640000px;}
.ye2{bottom:417.360000px;}
.y15a{bottom:421.770000px;}
.y11d{bottom:424.200000px;}
.ya3{bottom:425.010000px;}
.y4e{bottom:426.360000px;}
.y7b{bottom:428.790000px;}
.ybe{bottom:430.500000px;}
.ye1{bottom:434.910000px;}
.y1c{bottom:438.240000px;}
.y159{bottom:439.320000px;}
.ya2{bottom:442.560000px;}
.y4d{bottom:443.910000px;}
.y139{bottom:444.000000px;}
.y7a{bottom:446.340000px;}
.y1b{bottom:455.880000px;}
.y158{bottom:456.870000px;}
.ya1{bottom:461.010000px;}
.y4c{bottom:461.550000px;}
.ybd{bottom:466.140000px;}
.yde{bottom:467.940000px;}
.y11b{bottom:469.110000px;}
.y138{bottom:471.300000px;}
.y1a{bottom:473.460000px;}
.y157{bottom:474.540000px;}
.y172{bottom:478.140000px;}
.ya0{bottom:478.590000px;}
.y4b{bottom:479.130000px;}
.y79{bottom:481.920000px;}
.y19{bottom:491.100000px;}
.y156{bottom:492.090000px;}
.y171{bottom:495.690000px;}
.ybc{bottom:498.390000px;}
.y78{bottom:500.370000px;}
.y18{bottom:508.650000px;}
.y155{bottom:509.730000px;}
.ydd{bottom:512.880000px;}
.y4a{bottom:514.680000px;}
.y9f{bottom:515.040000px;}
.y137{bottom:516.300000px;}
.y11a{bottom:517.830000px;}
.y77{bottom:518.730000px;}
.y170{bottom:522.330000px;}
.y17{bottom:526.200000px;}
.y49{bottom:532.320000px;}
.y76{bottom:537.180000px;}
.y16f{bottom:539.880000px;}
.y9e{bottom:541.590000px;}
.y16{bottom:543.840000px;}
.y119{bottom:544.470000px;}
.y154{bottom:545.280000px;}
.y48{bottom:549.870000px;}
.y16e{bottom:557.430000px;}
.ydc{bottom:557.790000px;}
.y136{bottom:561.210000px;}
.y15{bottom:561.390000px;}
.y153{bottom:562.830000px;}
.y47{bottom:567.510000px;}
.y75{bottom:573.630000px;}
.y9d{bottom:574.530000px;}
.y14{bottom:579.030000px;}
.y118{bottom:580.020000px;}
.y152{bottom:580.470000px;}
.y16d{bottom:584.070000px;}
.y46{bottom:585.060000px;}
.y74{bottom:591.180000px;}
.y13{bottom:596.580000px;}
.y117{bottom:597.660000px;}
.y151{bottom:598.020000px;}
.y16c{bottom:601.620000px;}
.y45{bottom:602.610000px;}
.ydb{bottom:602.700000px;}
.y135{bottom:606.120000px;}
.y12{bottom:614.130000px;}
.y116{bottom:615.210000px;}
.y150{bottom:615.660000px;}
.y73{bottom:617.820000px;}
.y16b{bottom:619.260000px;}
.y9c{bottom:619.440000px;}
.y44{bottom:620.250000px;}
.y11{bottom:631.770000px;}
.y115{bottom:632.760000px;}
.y14f{bottom:633.210000px;}
.y43{bottom:637.800000px;}
.yfb{bottom:645.810000px;}
.yda{bottom:647.610000px;}
.y10{bottom:649.320000px;}
.y114{bottom:650.400000px;}
.y14e{bottom:650.760000px;}
.y72{bottom:653.370000px;}
.y134{bottom:654.810000px;}
.y42{bottom:655.440000px;}
.yfa{bottom:663.360000px;}
.y9a{bottom:664.350000px;}
.yf{bottom:666.960000px;}
.y113{bottom:667.950000px;}
.y14d{bottom:668.400000px;}
.y71{bottom:671.010000px;}
.y41{bottom:672.990000px;}
.yf9{bottom:681.000000px;}
.ye{bottom:684.510000px;}
.y112{bottom:685.590000px;}
.y14c{bottom:685.950000px;}
.y70{bottom:688.560000px;}
.y16a{bottom:690.000000px;}
.y133{bottom:690.360000px;}
.y40{bottom:690.540000px;}
.yd9{bottom:692.520000px;}
.yf8{bottom:698.550000px;}
.yd{bottom:702.060000px;}
.y14b{bottom:703.590000px;}
.y6f{bottom:706.110000px;}
.y169{bottom:707.550000px;}
.y132{bottom:708.000000px;}
.y98{bottom:709.350000px;}
.yf7{bottom:716.190000px;}
.yc{bottom:719.700000px;}
.y111{bottom:721.140000px;}
.y131{bottom:725.550000px;}
.y3f{bottom:726.180000px;}
.y168{bottom:734.190000px;}
.yb{bottom:737.250000px;}
.yd8{bottom:737.430000px;}
.y110{bottom:738.690000px;}
.y6e{bottom:741.750000px;}
.y130{bottom:743.190000px;}
.y3e{bottom:743.730000px;}
.yf6{bottom:751.740000px;}
.y97{bottom:754.260000px;}
.y10f{bottom:756.330000px;}
.y6d{bottom:759.300000px;}
.y12f{bottom:760.740000px;}
.y3d{bottom:761.280000px;}
.ya{bottom:764.160000px;}
.yf5{bottom:769.290000px;}
.y10e{bottom:773.880000px;}
.y6c{bottom:776.850000px;}
.y12e{bottom:778.290000px;}
.y3c{bottom:778.920000px;}
.yd7{bottom:782.340000px;}
.y14a{bottom:783.240000px;}
.yf4{bottom:786.930000px;}
.y10d{bottom:791.520000px;}
.y167{bottom:795.930000px;}
.y3b{bottom:796.470000px;}
.y96{bottom:802.950000px;}
.y6b{bottom:803.490000px;}
.yf3{bottom:804.480000px;}
.y10c{bottom:809.070000px;}
.y9{bottom:812.490000px;}
.y12d{bottom:813.930000px;}
.y3a{bottom:814.110000px;}
.y95{bottom:820.500000px;}
.y166{bottom:822.480000px;}
.yd6{bottom:831.030000px;}
.y12c{bottom:831.480000px;}
.y10b{bottom:835.620000px;}
.y6a{bottom:836.070000px;}
.y165{bottom:840.030000px;}
.y39{bottom:847.050000px;}
.y94{bottom:847.140000px;}
.y8{bottom:848.040000px;}
.y12b{bottom:849.030000px;}
.yd5{bottom:866.670000px;}
.y10a{bottom:871.260000px;}
.y69{bottom:871.620000px;}
.y38{bottom:874.410000px;}
.y93{bottom:882.690000px;}
.y7{bottom:883.860000px;}
.yd4{bottom:884.220000px;}
.y109{bottom:888.810000px;}
.y68{bottom:889.260000px;}
.ybb{bottom:893.220000px;}
.y92{bottom:900.240000px;}
.y37{bottom:901.680000px;}
.yd3{bottom:901.860000px;}
.y108{bottom:906.450000px;}
.y67{bottom:906.810000px;}
.yba{bottom:910.860000px;}
.y91{bottom:918.690000px;}
.yd2{bottom:919.410000px;}
.y6{bottom:923.640000px;}
.y107{bottom:924.000000px;}
.y66{bottom:924.450000px;}
.yb9{bottom:928.410000px;}
.y36{bottom:929.040000px;}
.yd1{bottom:936.960000px;}
.y90{bottom:937.050000px;}
.y149{bottom:937.410000px;}
.y106{bottom:941.550000px;}
.y5{bottom:941.640000px;}
.yb8{bottom:945.960000px;}
.y65{bottom:951.270000px;}
.yd0{bottom:954.600000px;}
.y148{bottom:954.960000px;}
.y35{bottom:956.400000px;}
.yb7{bottom:963.600000px;}
.y12a{bottom:963.960000px;}
.y8f{bottom:964.500000px;}
.y105{bottom:968.460000px;}
.yf2{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y129{bottom:981.600000px;}
.y34{bottom:983.760000px;}
.yb6{bottom:990.150000px;}
.y8e{bottom:997.080000px;}
.y128{bottom:999.150000px;}
.y64{bottom:999.600000px;}
.ycf{bottom:1007.790000px;}
.y32{bottom:1011.060000px;}
.y3{bottom:1012.230000px;}
.y104{bottom:1016.820000px;}
.y63{bottom:1017.180000px;}
.yce{bottom:1025.370000px;}
.yb5{bottom:1025.820000px;}
.y8d{bottom:1032.750000px;}
.y103{bottom:1034.370000px;}
.y62{bottom:1034.820000px;}
.y30{bottom:1038.420000px;}
.ycd{bottom:1042.920000px;}
.yb4{bottom:1043.370000px;}
.y8c{bottom:1050.300000px;}
.yf1{bottom:1051.920000px;}
.y61{bottom:1052.370000px;}
.yb3{bottom:1060.920000px;}
.ycc{bottom:1069.560000px;}
.y60{bottom:1069.920000px;}
.yb2{bottom:1078.560000px;}
.y8b{bottom:1085.850000px;}
.y2f{bottom:1087.110000px;}
.y5f{bottom:1087.560000px;}
.yb1{bottom:1096.110000px;}
.y8a{bottom:1103.400000px;}
.y5e{bottom:1105.110000px;}
.yb0{bottom:1113.750000px;}
.y89{bottom:1121.850000px;}
.y2e{bottom:1122.750000px;}
.y88{bottom:1139.400000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.hd{height:23.580000px;}
.he{height:23.670000px;}
.h13{height:25.110000px;}
.h9{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.h17{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h14{height:44.100000px;}
.h16{height:44.130000px;}
.h15{height:44.190000px;}
.ha{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:59.973223px;}
.h12{height:61.793886px;}
.h10{height:62.585859px;}
.hf{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:105.870000px;}
.w9{width:127.980000px;}
.wf{width:144.030000px;}
.w4{width:156.360000px;}
.wc{width:160.140000px;}
.w12{width:166.440000px;}
.w3{width:168.930000px;}
.wa{width:172.380000px;}
.w7{width:187.140000px;}
.w6{width:202.980000px;}
.we{width:206.550000px;}
.w15{width:212.580000px;}
.w5{width:214.200000px;}
.w13{width:268.470000px;}
.w11{width:285.930000px;}
.w10{width:324.120000px;}
.w8{width:363.630000px;}
.wd{width:387.480000px;}
.wb{width:582.510000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x8{left:95.039987px;}
.x9{left:106.470000px;}
.x18{left:111.239987px;}
.xc{left:122.039987px;}
.x2{left:202.799987px;}
.x13{left:213.600000px;}
.x10{left:229.710000px;}
.x15{left:236.010000px;}
.x7{left:237.630000px;}
.xd{left:241.950000px;}
.x4{left:283.620000px;}
.xa{left:294.330000px;}
.xf{left:299.369987px;}
.x6{left:453.270000px;}
.x16{left:505.200000px;}
.x14{left:538.530000px;}
.x17{left:611.880000px;}
.x11{left:617.910000px;}
.x12{left:641.309987px;}
.xb{left:658.770000px;}
.xe{left:690.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.082667pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.016320pt;}
.lsd{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls14{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.817600pt;}
.wsb{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.793920pt;}
.ws4{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.740480pt;}
.wsc{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.674133pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._f{margin-left:-3.790080pt;}
._10{margin-left:-2.859454pt;}
._9{margin-left:-1.928000pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894869pt;}
._3{width:2.244266pt;}
._4{width:3.366934pt;}
._5{width:4.822997pt;}
._e{width:6.486034pt;}
._a{width:7.374934pt;}
._8{width:8.385601pt;}
._7{width:9.487999pt;}
._6{width:10.739200pt;}
._2{width:12.825600pt;}
._d{width:13.947733pt;}
._b{width:15.497600pt;}
._c{width:16.416747pt;}
._13{width:17.528427pt;}
._11{width:18.971200pt;}
._12{width:20.129067pt;}
._15{width:25.811520pt;}
._16{width:26.912214pt;}
._26{width:28.772266pt;}
._1c{width:31.583040pt;}
._21{width:37.082240pt;}
._1e{width:39.973120pt;}
._17{width:41.286080pt;}
._20{width:42.347520pt;}
._19{width:46.920320pt;}
._1a{width:47.828800pt;}
._23{width:53.760640pt;}
._18{width:54.829440pt;}
._1b{width:61.295680pt;}
._25{width:71.502720pt;}
._24{width:72.435947pt;}
._14{width:175.924480pt;}
._1f{width:191.956480pt;}
._1d{width:212.798080pt;}
._22{width:261.909440pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:5.600000pt;}
.y5a{bottom:5.680000pt;}
.y31{bottom:6.960000pt;}
.ye0{bottom:6.986667pt;}
.y33{bottom:7.040000pt;}
.y11c{bottom:7.066667pt;}
.y99{bottom:22.560000pt;}
.ydf{bottom:22.586667pt;}
.y9b{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y87{bottom:97.226667pt;}
.y5d{bottom:98.746667pt;}
.y102{bottom:100.266667pt;}
.ycb{bottom:103.946667pt;}
.yaf{bottom:105.866667pt;}
.y127{bottom:109.866667pt;}
.yf0{bottom:112.106667pt;}
.y101{bottom:115.866667pt;}
.y2a{bottom:117.626667pt;}
.yca{bottom:119.546667pt;}
.y86{bottom:120.186667pt;}
.y5c{bottom:120.426667pt;}
.y126{bottom:125.546667pt;}
.yef{bottom:127.786667pt;}
.y147{bottom:129.466667pt;}
.y164{bottom:129.866667pt;}
.y100{bottom:131.466667pt;}
.y29{bottom:133.226667pt;}
.yae{bottom:137.466667pt;}
.y125{bottom:141.146667pt;}
.y5b{bottom:142.026667pt;}
.y85{bottom:143.146667pt;}
.yee{bottom:143.386667pt;}
.y146{bottom:145.066667pt;}
.y163{bottom:145.546667pt;}
.yff{bottom:147.146667pt;}
.y28{bottom:148.906667pt;}
.yc9{bottom:151.226667pt;}
.y124{bottom:156.826667pt;}
.y145{bottom:160.746667pt;}
.y59{bottom:163.626667pt;}
.y27{bottom:164.506667pt;}
.y84{bottom:166.106667pt;}
.yc8{bottom:166.826667pt;}
.yad{bottom:169.146667pt;}
.y162{bottom:169.386667pt;}
.yfe{bottom:170.746667pt;}
.y123{bottom:172.426667pt;}
.yed{bottom:174.986667pt;}
.y144{bottom:176.346667pt;}
.y26{bottom:180.106667pt;}
.yc7{bottom:182.426667pt;}
.yac{bottom:184.746667pt;}
.y58{bottom:185.306667pt;}
.y122{bottom:188.026667pt;}
.yec{bottom:190.666667pt;}
.y143{bottom:192.026667pt;}
.y25{bottom:195.786667pt;}
.yc6{bottom:198.106667pt;}
.yab{bottom:200.426667pt;}
.yfd{bottom:202.426667pt;}
.yeb{bottom:206.266667pt;}
.y57{bottom:206.906667pt;}
.y142{bottom:207.626667pt;}
.y83{bottom:208.106667pt;}
.y24{bottom:211.386667pt;}
.y161{bottom:212.346667pt;}
.yc5{bottom:213.706667pt;}
.yaa{bottom:216.026667pt;}
.y121{bottom:217.386667pt;}
.yea{bottom:221.946667pt;}
.y23{bottom:227.066667pt;}
.y55{bottom:228.586667pt;}
.yfc{bottom:231.066667pt;}
.ya9{bottom:231.626667pt;}
.y82{bottom:231.706667pt;}
.y160{bottom:236.266667pt;}
.yc4{bottom:237.386667pt;}
.y141{bottom:239.226667pt;}
.y22{bottom:242.666667pt;}
.ye9{bottom:245.546667pt;}
.ya8{bottom:247.306667pt;}
.y140{bottom:254.906667pt;}
.y120{bottom:257.306667pt;}
.y21{bottom:258.266667pt;}
.y81{bottom:263.306667pt;}
.y54{bottom:269.146667pt;}
.yc3{bottom:269.306667pt;}
.y15f{bottom:269.466667pt;}
.y13f{bottom:270.506667pt;}
.ya7{bottom:270.906667pt;}
.y20{bottom:273.946667pt;}
.ye8{bottom:277.146667pt;}
.y80{bottom:278.986667pt;}
.y13e{bottom:286.106667pt;}
.ye7{bottom:292.826667pt;}
.y7f{bottom:294.586667pt;}
.y11f{bottom:297.226667pt;}
.y1f{bottom:297.866667pt;}
.y53{bottom:300.826667pt;}
.y13d{bottom:301.786667pt;}
.ya6{bottom:302.826667pt;}
.ye6{bottom:308.426667pt;}
.y7e{bottom:310.266667pt;}
.yc2{bottom:312.186667pt;}
.y15e{bottom:312.346667pt;}
.y52{bottom:316.426667pt;}
.y13c{bottom:317.386667pt;}
.ye5{bottom:324.106667pt;}
.yc1{bottom:327.786667pt;}
.y15d{bottom:327.946667pt;}
.y51{bottom:332.106667pt;}
.y7d{bottom:333.866667pt;}
.y11e{bottom:337.146667pt;}
.ye4{bottom:339.706667pt;}
.y1e{bottom:340.746667pt;}
.y13b{bottom:341.066667pt;}
.yc0{bottom:343.466667pt;}
.y15c{bottom:343.626667pt;}
.ya5{bottom:345.786667pt;}
.y50{bottom:347.706667pt;}
.ye3{bottom:355.306667pt;}
.y1d{bottom:356.666667pt;}
.ybf{bottom:359.066667pt;}
.y15b{bottom:359.226667pt;}
.ya4{bottom:361.386667pt;}
.y4f{bottom:363.306667pt;}
.y7c{bottom:365.466667pt;}
.y13a{bottom:370.346667pt;}
.ye2{bottom:370.986667pt;}
.y15a{bottom:374.906667pt;}
.y11d{bottom:377.066667pt;}
.ya3{bottom:377.786667pt;}
.y4e{bottom:378.986667pt;}
.y7b{bottom:381.146667pt;}
.ybe{bottom:382.666667pt;}
.ye1{bottom:386.586667pt;}
.y1c{bottom:389.546667pt;}
.y159{bottom:390.506667pt;}
.ya2{bottom:393.386667pt;}
.y4d{bottom:394.586667pt;}
.y139{bottom:394.666667pt;}
.y7a{bottom:396.746667pt;}
.y1b{bottom:405.226667pt;}
.y158{bottom:406.106667pt;}
.ya1{bottom:409.786667pt;}
.y4c{bottom:410.266667pt;}
.ybd{bottom:414.346667pt;}
.yde{bottom:415.946667pt;}
.y11b{bottom:416.986667pt;}
.y138{bottom:418.933333pt;}
.y1a{bottom:420.853333pt;}
.y157{bottom:421.813333pt;}
.y172{bottom:425.013333pt;}
.ya0{bottom:425.413333pt;}
.y4b{bottom:425.893333pt;}
.y79{bottom:428.373333pt;}
.y19{bottom:436.533333pt;}
.y156{bottom:437.413333pt;}
.y171{bottom:440.613333pt;}
.ybc{bottom:443.013333pt;}
.y78{bottom:444.773333pt;}
.y18{bottom:452.133333pt;}
.y155{bottom:453.093333pt;}
.ydd{bottom:455.893333pt;}
.y4a{bottom:457.493333pt;}
.y9f{bottom:457.813333pt;}
.y137{bottom:458.933333pt;}
.y11a{bottom:460.293333pt;}
.y77{bottom:461.093333pt;}
.y170{bottom:464.293333pt;}
.y17{bottom:467.733333pt;}
.y49{bottom:473.173333pt;}
.y76{bottom:477.493333pt;}
.y16f{bottom:479.893333pt;}
.y9e{bottom:481.413333pt;}
.y16{bottom:483.413333pt;}
.y119{bottom:483.973333pt;}
.y154{bottom:484.693333pt;}
.y48{bottom:488.773333pt;}
.y16e{bottom:495.493333pt;}
.ydc{bottom:495.813333pt;}
.y136{bottom:498.853333pt;}
.y15{bottom:499.013333pt;}
.y153{bottom:500.293333pt;}
.y47{bottom:504.453333pt;}
.y75{bottom:509.893333pt;}
.y9d{bottom:510.693333pt;}
.y14{bottom:514.693333pt;}
.y118{bottom:515.573333pt;}
.y152{bottom:515.973333pt;}
.y16d{bottom:519.173333pt;}
.y46{bottom:520.053333pt;}
.y74{bottom:525.493333pt;}
.y13{bottom:530.293333pt;}
.y117{bottom:531.253333pt;}
.y151{bottom:531.573333pt;}
.y16c{bottom:534.773333pt;}
.y45{bottom:535.653333pt;}
.ydb{bottom:535.733333pt;}
.y135{bottom:538.773333pt;}
.y12{bottom:545.893333pt;}
.y116{bottom:546.853333pt;}
.y150{bottom:547.253333pt;}
.y73{bottom:549.173333pt;}
.y16b{bottom:550.453333pt;}
.y9c{bottom:550.613333pt;}
.y44{bottom:551.333333pt;}
.y11{bottom:561.573333pt;}
.y115{bottom:562.453333pt;}
.y14f{bottom:562.853333pt;}
.y43{bottom:566.933333pt;}
.yfb{bottom:574.053333pt;}
.yda{bottom:575.653333pt;}
.y10{bottom:577.173333pt;}
.y114{bottom:578.133333pt;}
.y14e{bottom:578.453333pt;}
.y72{bottom:580.773333pt;}
.y134{bottom:582.053333pt;}
.y42{bottom:582.613333pt;}
.yfa{bottom:589.653333pt;}
.y9a{bottom:590.533333pt;}
.yf{bottom:592.853333pt;}
.y113{bottom:593.733333pt;}
.y14d{bottom:594.133333pt;}
.y71{bottom:596.453333pt;}
.y41{bottom:598.213333pt;}
.yf9{bottom:605.333333pt;}
.ye{bottom:608.453333pt;}
.y112{bottom:609.413333pt;}
.y14c{bottom:609.733333pt;}
.y70{bottom:612.053333pt;}
.y16a{bottom:613.333333pt;}
.y133{bottom:613.653333pt;}
.y40{bottom:613.813333pt;}
.yd9{bottom:615.573333pt;}
.yf8{bottom:620.933333pt;}
.yd{bottom:624.053333pt;}
.y14b{bottom:625.413333pt;}
.y6f{bottom:627.653333pt;}
.y169{bottom:628.933333pt;}
.y132{bottom:629.333333pt;}
.y98{bottom:630.533333pt;}
.yf7{bottom:636.613333pt;}
.yc{bottom:639.733333pt;}
.y111{bottom:641.013333pt;}
.y131{bottom:644.933333pt;}
.y3f{bottom:645.493333pt;}
.y168{bottom:652.613333pt;}
.yb{bottom:655.333333pt;}
.yd8{bottom:655.493333pt;}
.y110{bottom:656.613333pt;}
.y6e{bottom:659.333333pt;}
.y130{bottom:660.613333pt;}
.y3e{bottom:661.093333pt;}
.yf6{bottom:668.213333pt;}
.y97{bottom:670.453333pt;}
.y10f{bottom:672.293333pt;}
.y6d{bottom:674.933333pt;}
.y12f{bottom:676.213333pt;}
.y3d{bottom:676.693333pt;}
.ya{bottom:679.253333pt;}
.yf5{bottom:683.813333pt;}
.y10e{bottom:687.893333pt;}
.y6c{bottom:690.533333pt;}
.y12e{bottom:691.813333pt;}
.y3c{bottom:692.373333pt;}
.yd7{bottom:695.413333pt;}
.y14a{bottom:696.213333pt;}
.yf4{bottom:699.493333pt;}
.y10d{bottom:703.573333pt;}
.y167{bottom:707.493333pt;}
.y3b{bottom:707.973333pt;}
.y96{bottom:713.733333pt;}
.y6b{bottom:714.213333pt;}
.yf3{bottom:715.093333pt;}
.y10c{bottom:719.173333pt;}
.y9{bottom:722.213333pt;}
.y12d{bottom:723.493333pt;}
.y3a{bottom:723.653333pt;}
.y95{bottom:729.333333pt;}
.y166{bottom:731.093333pt;}
.yd6{bottom:738.693333pt;}
.y12c{bottom:739.093333pt;}
.y10b{bottom:742.773333pt;}
.y6a{bottom:743.173333pt;}
.y165{bottom:746.693333pt;}
.y39{bottom:752.933333pt;}
.y94{bottom:753.013333pt;}
.y8{bottom:753.813333pt;}
.y12b{bottom:754.693333pt;}
.yd5{bottom:770.373333pt;}
.y10a{bottom:774.453333pt;}
.y69{bottom:774.773333pt;}
.y38{bottom:777.253333pt;}
.y93{bottom:784.613333pt;}
.y7{bottom:785.653333pt;}
.yd4{bottom:785.973333pt;}
.y109{bottom:790.053333pt;}
.y68{bottom:790.453333pt;}
.ybb{bottom:793.973333pt;}
.y92{bottom:800.213333pt;}
.y37{bottom:801.493333pt;}
.yd3{bottom:801.653333pt;}
.y108{bottom:805.733333pt;}
.y67{bottom:806.053333pt;}
.yba{bottom:809.653333pt;}
.y91{bottom:816.613333pt;}
.yd2{bottom:817.253333pt;}
.y6{bottom:821.013333pt;}
.y107{bottom:821.333333pt;}
.y66{bottom:821.733333pt;}
.yb9{bottom:825.253333pt;}
.y36{bottom:825.813333pt;}
.yd1{bottom:832.853333pt;}
.y90{bottom:832.933333pt;}
.y149{bottom:833.253333pt;}
.y106{bottom:836.933333pt;}
.y5{bottom:837.013333pt;}
.yb8{bottom:840.853333pt;}
.y65{bottom:845.573333pt;}
.yd0{bottom:848.533333pt;}
.y148{bottom:848.853333pt;}
.y35{bottom:850.133333pt;}
.yb7{bottom:856.533333pt;}
.y12a{bottom:856.853333pt;}
.y8f{bottom:857.333333pt;}
.y105{bottom:860.853333pt;}
.yf2{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y129{bottom:872.533333pt;}
.y34{bottom:874.453333pt;}
.yb6{bottom:880.133333pt;}
.y8e{bottom:886.293333pt;}
.y128{bottom:888.133333pt;}
.y64{bottom:888.533333pt;}
.ycf{bottom:895.813333pt;}
.y32{bottom:898.720000pt;}
.y3{bottom:899.760000pt;}
.y104{bottom:903.840000pt;}
.y63{bottom:904.160000pt;}
.yce{bottom:911.440000pt;}
.yb5{bottom:911.840000pt;}
.y8d{bottom:918.000000pt;}
.y103{bottom:919.440000pt;}
.y62{bottom:919.840000pt;}
.y30{bottom:923.040000pt;}
.ycd{bottom:927.040000pt;}
.yb4{bottom:927.440000pt;}
.y8c{bottom:933.600000pt;}
.yf1{bottom:935.040000pt;}
.y61{bottom:935.440000pt;}
.yb3{bottom:943.040000pt;}
.ycc{bottom:950.720000pt;}
.y60{bottom:951.040000pt;}
.yb2{bottom:958.720000pt;}
.y8b{bottom:965.200000pt;}
.y2f{bottom:966.320000pt;}
.y5f{bottom:966.720000pt;}
.yb1{bottom:974.320000pt;}
.y8a{bottom:980.800000pt;}
.y5e{bottom:982.320000pt;}
.yb0{bottom:990.000000pt;}
.y89{bottom:997.200000pt;}
.y2e{bottom:998.000000pt;}
.y88{bottom:1012.800000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.hd{height:20.960000pt;}
.he{height:21.040000pt;}
.h13{height:22.320000pt;}
.h9{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.h17{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h14{height:39.200000pt;}
.h16{height:39.226667pt;}
.h15{height:39.280000pt;}
.ha{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:53.309531pt;}
.h12{height:54.927899pt;}
.h10{height:55.631875pt;}
.hf{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:94.106667pt;}
.w9{width:113.760000pt;}
.wf{width:128.026667pt;}
.w4{width:138.986667pt;}
.wc{width:142.346667pt;}
.w12{width:147.946667pt;}
.w3{width:150.160000pt;}
.wa{width:153.226667pt;}
.w7{width:166.346667pt;}
.w6{width:180.426667pt;}
.we{width:183.600000pt;}
.w15{width:188.960000pt;}
.w5{width:190.400000pt;}
.w13{width:238.640000pt;}
.w11{width:254.160000pt;}
.w10{width:288.106667pt;}
.w8{width:323.226667pt;}
.wd{width:344.426667pt;}
.wb{width:517.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x8{left:84.479988pt;}
.x9{left:94.640000pt;}
.x18{left:98.879988pt;}
.xc{left:108.479988pt;}
.x2{left:180.266655pt;}
.x13{left:189.866667pt;}
.x10{left:204.186667pt;}
.x15{left:209.786667pt;}
.x7{left:211.226667pt;}
.xd{left:215.066667pt;}
.x4{left:252.106667pt;}
.xa{left:261.626667pt;}
.xf{left:266.106655pt;}
.x6{left:402.906667pt;}
.x16{left:449.066667pt;}
.x14{left:478.693333pt;}
.x17{left:543.893333pt;}
.x11{left:549.253333pt;}
.x12{left:570.053322pt;}
.xb{left:585.573333pt;}
.xe{left:614.053322pt;}
.x3{left:704.053322pt;}
}




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