
    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_812541b0038e96ccaa591ea9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bc55f0ed4b93222b710d309a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_73936a70cb6f0650c4981858.woff')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_ea156c4c51ddd831b3aa3776.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_92a2e2ba06007b92f192a70b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_d04f3f571776aca5d95f144e.woff')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1b07be947e5f5a8545db3c44.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.924000px;}
.ls18{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.612000px;}
.ls20{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.413400px;}
.ls9{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls26{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.306600px;}
.ls27{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.666000px;}
.ls1e{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.620000px;}
.ls15{letter-spacing:3.060000px;}
.ls1a{letter-spacing:5.940000px;}
.ls1b{letter-spacing:6.060000px;}
.ls16{letter-spacing:8.100000px;}
.ls1c{letter-spacing:9.540000px;}
.lsa{letter-spacing:10.026720px;}
.lsb{letter-spacing:13.626720px;}
.ls1f{letter-spacing:15.300000px;}
.ls23{letter-spacing:22.986720px;}
.ls25{letter-spacing:23.130720px;}
.ls1{letter-spacing:25.866720px;}
.ls10{letter-spacing:41.130720px;}
.ls22{letter-spacing:42.588000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.453600px;}
.wsd{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._32{margin-left:-7.433280px;}
._1a{margin-left:-4.840560px;}
._19{margin-left:-3.585600px;}
._13{margin-left:-2.501280px;}
._0{margin-left:-1.080000px;}
._f{width:1.194480px;}
._1{width:2.220000px;}
._10{width:3.447120px;}
._16{width:4.513200px;}
._12{width:5.522640px;}
._11{width:6.591120px;}
._18{width:7.817040px;}
._17{width:9.606720px;}
._6{width:10.800000px;}
._14{width:12.328560px;}
._15{width:13.428720px;}
._1c{width:16.677360px;}
._1b{width:17.689680px;}
._2b{width:19.690560px;}
._2a{width:20.921040px;}
._24{width:22.039920px;}
._23{width:23.220000px;}
._1e{width:25.458480px;}
._1d{width:26.951760px;}
._28{width:30.000240px;}
._27{width:31.015440px;}
._31{width:32.431680px;}
._2d{width:33.470640px;}
._2c{width:34.720560px;}
._2e{width:37.206480px;}
._20{width:38.330880px;}
._1f{width:39.369840px;}
._37{width:41.043120px;}
._35{width:42.190560px;}
._36{width:43.525200px;}
._38{width:44.849760px;}
._21{width:46.306800px;}
._2f{width:48.644640px;}
._26{width:50.317920px;}
._25{width:51.333840px;}
._30{width:52.529760px;}
._33{width:62.987760px;}
._7{width:76.284960px;}
._22{width:87.249600px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._29{width:201.204000px;}
._34{width:203.960880px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:5.760000px;}
.y96{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.yfa{bottom:8.460000px;}
.y7d{bottom:8.640000px;}
.y6{bottom:12.420000px;}
.y104{bottom:12.960000px;}
.yf3{bottom:14.400000px;}
.y80{bottom:15.660000px;}
.y126{bottom:15.690000px;}
.yf8{bottom:15.840000px;}
.y108{bottom:15.885000px;}
.y8{bottom:18.180000px;}
.y81{bottom:25.560000px;}
.y9b{bottom:25.605000px;}
.y95{bottom:25.740000px;}
.y128{bottom:25.770000px;}
.y109{bottom:25.785000px;}
.y85{bottom:35.460000px;}
.y99{bottom:35.640000px;}
.y125{bottom:35.670000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y12b{bottom:45.360000px;}
.yf5{bottom:45.405000px;}
.y87{bottom:45.540000px;}
.y127{bottom:45.570000px;}
.yb{bottom:60.300000px;}
.y86{bottom:65.370000px;}
.y4{bottom:68.400000px;}
.yd{bottom:77.940000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.y84{bottom:101.880000px;}
.ya7{bottom:106.740000px;}
.yb4{bottom:108.540000px;}
.yf0{bottom:110.340000px;}
.y115{bottom:112.680000px;}
.y3b{bottom:113.400000px;}
.yb0{bottom:114.840000px;}
.y140{bottom:115.380000px;}
.yf1{bottom:117.540000px;}
.y69{bottom:119.340000px;}
.y2{bottom:125.670000px;}
.ya6{bottom:126.540000px;}
.yb3{bottom:128.340000px;}
.yef{bottom:130.320000px;}
.y114{bottom:132.660000px;}
.y3a{bottom:133.380000px;}
.yaf{bottom:134.640000px;}
.y13f{bottom:135.180000px;}
.yc1{bottom:137.340000px;}
.y68{bottom:139.320000px;}
.y13d{bottom:145.260000px;}
.ya5{bottom:146.520000px;}
.yb2{bottom:148.320000px;}
.yee{bottom:150.120000px;}
.y113{bottom:152.490000px;}
.y39{bottom:153.210000px;}
.yae{bottom:154.470000px;}
.y13e{bottom:155.010000px;}
.yc0{bottom:157.350000px;}
.y67{bottom:159.150000px;}
.y13c{bottom:165.090000px;}
.ya4{bottom:166.350000px;}
.yb1{bottom:168.150000px;}
.yed{bottom:169.950000px;}
.y112{bottom:172.290000px;}
.y38{bottom:173.010000px;}
.yad{bottom:174.270000px;}
.ybf{bottom:177.150000px;}
.y83{bottom:182.010000px;}
.y13b{bottom:184.890000px;}
.ya3{bottom:186.150000px;}
.y66{bottom:187.950000px;}
.y111{bottom:192.090000px;}
.y37{bottom:192.810000px;}
.yac{bottom:194.070000px;}
.ybe{bottom:196.950000px;}
.yec{bottom:198.750000px;}
.y13a{bottom:204.690000px;}
.ya2{bottom:205.950000px;}
.y65{bottom:207.750000px;}
.y7f{bottom:208.290000px;}
.y110{bottom:211.890000px;}
.y36{bottom:212.610000px;}
.yab{bottom:214.050000px;}
.ybd{bottom:216.750000px;}
.yeb{bottom:218.550000px;}
.y139{bottom:224.670000px;}
.y64{bottom:227.550000px;}
.y10f{bottom:231.870000px;}
.y35{bottom:232.590000px;}
.yaa{bottom:233.850000px;}
.ya1{bottom:234.750000px;}
.ybc{bottom:236.550000px;}
.yea{bottom:238.530000px;}
.y138{bottom:244.470000px;}
.y63{bottom:247.530000px;}
.y7e{bottom:248.610000px;}
.y34{bottom:252.390000px;}
.y10e{bottom:252.750000px;}
.ya9{bottom:253.650000px;}
.ya0{bottom:254.730000px;}
.ybb{bottom:256.530000px;}
.ye9{bottom:258.330000px;}
.y137{bottom:264.270000px;}
.y62{bottom:267.330000px;}
.y33{bottom:272.190000px;}
.y10d{bottom:273.630000px;}
.y9f{bottom:274.530000px;}
.y7c{bottom:274.890000px;}
.yba{bottom:276.330000px;}
.ye8{bottom:278.130000px;}
.y136{bottom:284.070000px;}
.y61{bottom:287.130000px;}
.y32{bottom:291.990000px;}
.y9e{bottom:294.330000px;}
.y10c{bottom:294.510000px;}
.yb9{bottom:296.130000px;}
.ye7{bottom:297.930000px;}
.y135{bottom:303.870000px;}
.y60{bottom:306.930000px;}
.y9d{bottom:309.090000px;}
.y10b{bottom:309.270000px;}
.y31{bottom:311.790000px;}
.yb8{bottom:315.930000px;}
.ye6{bottom:317.730000px;}
.y134{bottom:323.850000px;}
.y5f{bottom:326.730000px;}
.y30{bottom:331.770000px;}
.y9c{bottom:335.370000px;}
.yb7{bottom:335.730000px;}
.ye5{bottom:337.710000px;}
.y133{bottom:343.650000px;}
.y5e{bottom:346.710000px;}
.y10a{bottom:349.770000px;}
.y2f{bottom:351.570000px;}
.yb6{bottom:355.710000px;}
.ye4{bottom:357.510000px;}
.y132{bottom:363.450000px;}
.y5d{bottom:366.510000px;}
.y2e{bottom:371.370000px;}
.yb5{bottom:375.510000px;}
.y9a{bottom:375.870000px;}
.ye3{bottom:377.310000px;}
.y131{bottom:383.250000px;}
.y5c{bottom:386.310000px;}
.y107{bottom:390.090000px;}
.y2d{bottom:391.170000px;}
.ya8{bottom:395.310000px;}
.ye2{bottom:397.110000px;}
.y130{bottom:404.175000px;}
.y7b{bottom:406.155000px;}
.y2c{bottom:411.015000px;}
.y5b{bottom:415.155000px;}
.y98{bottom:416.235000px;}
.ye1{bottom:416.955000px;}
.y12f{bottom:425.055000px;}
.y7a{bottom:425.955000px;}
.y106{bottom:430.635000px;}
.y2b{bottom:430.995000px;}
.y5a{bottom:434.955000px;}
.ye0{bottom:436.935000px;}
.y79{bottom:445.935000px;}
.y12e{bottom:446.115000px;}
.y2a{bottom:450.795000px;}
.y59{bottom:454.935000px;}
.ydf{bottom:456.735000px;}
.y78{bottom:465.735000px;}
.y12d{bottom:466.995000px;}
.y29{bottom:470.595000px;}
.y105{bottom:471.135000px;}
.y58{bottom:474.735000px;}
.y97{bottom:476.535000px;}
.y12c{bottom:481.755000px;}
.y77{bottom:485.535000px;}
.y28{bottom:490.395000px;}
.y57{bottom:494.535000px;}
.yde{bottom:496.335000px;}
.y76{bottom:505.335000px;}
.y27{bottom:510.195000px;}
.y103{bottom:511.455000px;}
.y56{bottom:514.335000px;}
.ydd{bottom:516.135000px;}
.y94{bottom:516.855000px;}
.y12a{bottom:522.255000px;}
.y75{bottom:525.135000px;}
.y26{bottom:530.175000px;}
.y55{bottom:534.135000px;}
.ydc{bottom:536.115000px;}
.y74{bottom:545.115000px;}
.y25{bottom:549.975000px;}
.y102{bottom:552.315000px;}
.y54{bottom:554.115000px;}
.ydb{bottom:555.915000px;}
.y73{bottom:564.915000px;}
.y24{bottom:569.775000px;}
.y101{bottom:572.115000px;}
.y53{bottom:573.915000px;}
.yda{bottom:575.715000px;}
.y93{bottom:577.155000px;}
.y129{bottom:582.375000px;}
.y72{bottom:584.715000px;}
.y23{bottom:589.575000px;}
.y100{bottom:591.915000px;}
.y52{bottom:593.715000px;}
.yd9{bottom:595.515000px;}
.y71{bottom:604.515000px;}
.y92{bottom:609.195000px;}
.y22{bottom:609.375000px;}
.yff{bottom:611.895000px;}
.y51{bottom:613.515000px;}
.yd8{bottom:615.315000px;}
.y70{bottom:624.315000px;}
.yfe{bottom:626.655000px;}
.y91{bottom:628.995000px;}
.y21{bottom:629.355000px;}
.y50{bottom:633.315000px;}
.yd7{bottom:635.295000px;}
.y124{bottom:642.675000px;}
.y6f{bottom:644.295000px;}
.y90{bottom:648.975000px;}
.y20{bottom:649.185000px;}
.yfd{bottom:652.965000px;}
.y4f{bottom:653.325000px;}
.yd6{bottom:655.125000px;}
.y6e{bottom:664.125000px;}
.y8f{bottom:668.805000px;}
.y1f{bottom:668.985000px;}
.y4e{bottom:673.125000px;}
.yd5{bottom:674.925000px;}
.yfc{bottom:679.065000px;}
.y6d{bottom:683.925000px;}
.y8e{bottom:688.605000px;}
.y1e{bottom:688.785000px;}
.y4d{bottom:692.925000px;}
.yd4{bottom:694.725000px;}
.y123{bottom:703.005000px;}
.y6c{bottom:703.725000px;}
.y8d{bottom:708.405000px;}
.y1d{bottom:708.585000px;}
.y4c{bottom:712.725000px;}
.yd3{bottom:714.525000px;}
.yfb{bottom:719.565000px;}
.y6b{bottom:723.525000px;}
.y8c{bottom:728.205000px;}
.y1c{bottom:728.565000px;}
.y4b{bottom:732.525000px;}
.yd2{bottom:734.505000px;}
.y6a{bottom:743.505000px;}
.y1b{bottom:748.365000px;}
.y8b{bottom:749.265000px;}
.y4a{bottom:752.505000px;}
.yd1{bottom:754.305000px;}
.yf9{bottom:760.065000px;}
.yc7{bottom:763.305000px;}
.y1a{bottom:768.165000px;}
.y122{bottom:769.065000px;}
.y8a{bottom:770.145000px;}
.y49{bottom:772.305000px;}
.yd0{bottom:774.105000px;}
.yc6{bottom:783.105000px;}
.yf7{bottom:786.165000px;}
.y19{bottom:787.965000px;}
.y121{bottom:788.865000px;}
.y89{bottom:791.025000px;}
.y48{bottom:792.105000px;}
.ycf{bottom:793.905000px;}
.yc5{bottom:802.905000px;}
.y18{bottom:807.765000px;}
.y120{bottom:808.665000px;}
.y88{bottom:810.825000px;}
.y47{bottom:811.905000px;}
.yce{bottom:813.705000px;}
.yc4{bottom:822.705000px;}
.yf6{bottom:826.665000px;}
.y17{bottom:827.745000px;}
.y11f{bottom:828.465000px;}
.y46{bottom:831.705000px;}
.yc3{bottom:842.685000px;}
.y16{bottom:847.545000px;}
.y11e{bottom:848.445000px;}
.y45{bottom:851.685000px;}
.yc2{bottom:862.485000px;}
.y15{bottom:867.345000px;}
.y11d{bottom:868.245000px;}
.y44{bottom:871.485000px;}
.ycd{bottom:882.285000px;}
.yf4{bottom:886.965000px;}
.y14{bottom:887.145000px;}
.y11c{bottom:888.045000px;}
.y43{bottom:891.285000px;}
.ycc{bottom:902.130000px;}
.y11b{bottom:907.890000px;}
.y42{bottom:911.130000px;}
.y13{bottom:912.210000px;}
.ycb{bottom:921.930000px;}
.y12{bottom:927.510000px;}
.y11a{bottom:927.690000px;}
.y41{bottom:930.930000px;}
.yca{bottom:941.910000px;}
.yf2{bottom:947.130000px;}
.y119{bottom:947.670000px;}
.y11{bottom:948.750000px;}
.y40{bottom:950.910000px;}
.yc9{bottom:961.710000px;}
.y118{bottom:967.470000px;}
.y3f{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.yc8{bottom:981.510000px;}
.y117{bottom:988.350000px;}
.y3e{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y116{bottom:1009.230000px;}
.y3d{bottom:1010.310000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.hb{height:21.780000px;}
.h19{height:25.380000px;}
.h1a{height:25.416000px;}
.h11{height:25.560000px;}
.he{height:28.115859px;}
.h7{height:33.480000px;}
.h1b{height:34.380000px;}
.h16{height:36.900000px;}
.h12{height:39.600000px;}
.h15{height:39.636000px;}
.h18{height:39.780000px;}
.h1c{height:39.816000px;}
.hd{height:42.164648px;}
.hf{height:43.215117px;}
.h10{height:43.506914px;}
.h21{height:45.024258px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h1f{height:49.255313px;}
.h9{height:53.224453px;}
.h1e{height:59.400000px;}
.h17{height:59.436000px;}
.h20{height:59.439023px;}
.h14{height:59.580000px;}
.h1d{height:59.616000px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h13{height:79.416000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.wd{width:63.900000px;}
.we{width:80.676000px;}
.w11{width:94.536000px;}
.wb{width:119.376000px;}
.w15{width:127.656000px;}
.w13{width:129.996000px;}
.w3{width:131.976000px;}
.w16{width:144.576000px;}
.w12{width:173.730000px;}
.w6{width:175.890000px;}
.wf{width:197.130000px;}
.w8{width:261.435000px;}
.wa{width:261.615000px;}
.w9{width:262.110000px;}
.w10{width:319.755000px;}
.w14{width:372.135000px;}
.wc{width:510.405000px;}
.w7{width:609.270000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x10{left:10.440000px;}
.x13{left:24.300000px;}
.x1b{left:32.220000px;}
.xd{left:49.139987px;}
.x1{left:53.460000px;}
.xa{left:55.079987px;}
.x1e{left:68.759987px;}
.xe{left:70.199987px;}
.xb{left:75.599987px;}
.x1f{left:90.035987px;}
.xc{left:96.515987px;}
.x4{left:118.290000px;}
.x14{left:146.375987px;}
.x6{left:150.149987px;}
.x9{left:170.309987px;}
.x15{left:173.370000px;}
.x1c{left:183.990000px;}
.xf{left:229.890000px;}
.x18{left:251.130000px;}
.x11{left:315.435000px;}
.x8{left:350.894987px;}
.x7{left:446.504987px;}
.x1d{left:556.125000px;}
.x19{left:570.885000px;}
.x12{left:577.545000px;}
.x1a{left:665.430000px;}
.x16{left:683.790000px;}
.x3{left:707.910000px;}
.x17{left:747.690000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls18{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.367467pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls26{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.272533pt;}
.ls27{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.592000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls15{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:5.280000pt;}
.ls1b{letter-spacing:5.386667pt;}
.ls16{letter-spacing:7.200000pt;}
.ls1c{letter-spacing:8.480000pt;}
.lsa{letter-spacing:8.912640pt;}
.lsb{letter-spacing:12.112640pt;}
.ls1f{letter-spacing:13.600000pt;}
.ls23{letter-spacing:20.432640pt;}
.ls25{letter-spacing:20.560640pt;}
.ls1{letter-spacing:22.992640pt;}
.ls10{letter-spacing:36.560640pt;}
.ls22{letter-spacing:37.856000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.736533pt;}
.wsd{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._32{margin-left:-6.607360pt;}
._1a{margin-left:-4.302720pt;}
._19{margin-left:-3.187200pt;}
._13{margin-left:-2.223360pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.061760pt;}
._1{width:1.973333pt;}
._10{width:3.064107pt;}
._16{width:4.011733pt;}
._12{width:4.909013pt;}
._11{width:5.858773pt;}
._18{width:6.948480pt;}
._17{width:8.539307pt;}
._6{width:9.600000pt;}
._14{width:10.958720pt;}
._15{width:11.936640pt;}
._1c{width:14.824320pt;}
._1b{width:15.724160pt;}
._2b{width:17.502720pt;}
._2a{width:18.596480pt;}
._24{width:19.591040pt;}
._23{width:20.640000pt;}
._1e{width:22.629760pt;}
._1d{width:23.957120pt;}
._28{width:26.666880pt;}
._27{width:27.569280pt;}
._31{width:28.828160pt;}
._2d{width:29.751680pt;}
._2c{width:30.862720pt;}
._2e{width:33.072427pt;}
._20{width:34.071893pt;}
._1f{width:34.995413pt;}
._37{width:36.482773pt;}
._35{width:37.502720pt;}
._36{width:38.689067pt;}
._38{width:39.866453pt;}
._21{width:41.161600pt;}
._2f{width:43.239680pt;}
._26{width:44.727040pt;}
._25{width:45.630080pt;}
._30{width:46.693120pt;}
._33{width:55.989120pt;}
._7{width:67.808853pt;}
._22{width:77.555200pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._29{width:178.848000pt;}
._34{width:181.298560pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:5.120000pt;}
.y96{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.yfa{bottom:7.520000pt;}
.y7d{bottom:7.680000pt;}
.y6{bottom:11.040000pt;}
.y104{bottom:11.520000pt;}
.yf3{bottom:12.800000pt;}
.y80{bottom:13.920000pt;}
.y126{bottom:13.946667pt;}
.yf8{bottom:14.080000pt;}
.y108{bottom:14.120000pt;}
.y8{bottom:16.160000pt;}
.y81{bottom:22.720000pt;}
.y9b{bottom:22.760000pt;}
.y95{bottom:22.880000pt;}
.y128{bottom:22.906667pt;}
.y109{bottom:22.920000pt;}
.y85{bottom:31.520000pt;}
.y99{bottom:31.680000pt;}
.y125{bottom:31.706667pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y12b{bottom:40.320000pt;}
.yf5{bottom:40.360000pt;}
.y87{bottom:40.480000pt;}
.y127{bottom:40.506667pt;}
.yb{bottom:53.600000pt;}
.y86{bottom:58.106667pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.y84{bottom:90.560000pt;}
.ya7{bottom:94.880000pt;}
.yb4{bottom:96.480000pt;}
.yf0{bottom:98.080000pt;}
.y115{bottom:100.160000pt;}
.y3b{bottom:100.800000pt;}
.yb0{bottom:102.080000pt;}
.y140{bottom:102.560000pt;}
.yf1{bottom:104.480000pt;}
.y69{bottom:106.080000pt;}
.y2{bottom:111.706667pt;}
.ya6{bottom:112.480000pt;}
.yb3{bottom:114.080000pt;}
.yef{bottom:115.840000pt;}
.y114{bottom:117.920000pt;}
.y3a{bottom:118.560000pt;}
.yaf{bottom:119.680000pt;}
.y13f{bottom:120.160000pt;}
.yc1{bottom:122.080000pt;}
.y68{bottom:123.840000pt;}
.y13d{bottom:129.120000pt;}
.ya5{bottom:130.240000pt;}
.yb2{bottom:131.840000pt;}
.yee{bottom:133.440000pt;}
.y113{bottom:135.546667pt;}
.y39{bottom:136.186667pt;}
.yae{bottom:137.306667pt;}
.y13e{bottom:137.786667pt;}
.yc0{bottom:139.866667pt;}
.y67{bottom:141.466667pt;}
.y13c{bottom:146.746667pt;}
.ya4{bottom:147.866667pt;}
.yb1{bottom:149.466667pt;}
.yed{bottom:151.066667pt;}
.y112{bottom:153.146667pt;}
.y38{bottom:153.786667pt;}
.yad{bottom:154.906667pt;}
.ybf{bottom:157.466667pt;}
.y83{bottom:161.786667pt;}
.y13b{bottom:164.346667pt;}
.ya3{bottom:165.466667pt;}
.y66{bottom:167.066667pt;}
.y111{bottom:170.746667pt;}
.y37{bottom:171.386667pt;}
.yac{bottom:172.506667pt;}
.ybe{bottom:175.066667pt;}
.yec{bottom:176.666667pt;}
.y13a{bottom:181.946667pt;}
.ya2{bottom:183.066667pt;}
.y65{bottom:184.666667pt;}
.y7f{bottom:185.146667pt;}
.y110{bottom:188.346667pt;}
.y36{bottom:188.986667pt;}
.yab{bottom:190.266667pt;}
.ybd{bottom:192.666667pt;}
.yeb{bottom:194.266667pt;}
.y139{bottom:199.706667pt;}
.y64{bottom:202.266667pt;}
.y10f{bottom:206.106667pt;}
.y35{bottom:206.746667pt;}
.yaa{bottom:207.866667pt;}
.ya1{bottom:208.666667pt;}
.ybc{bottom:210.266667pt;}
.yea{bottom:212.026667pt;}
.y138{bottom:217.306667pt;}
.y63{bottom:220.026667pt;}
.y7e{bottom:220.986667pt;}
.y34{bottom:224.346667pt;}
.y10e{bottom:224.666667pt;}
.ya9{bottom:225.466667pt;}
.ya0{bottom:226.426667pt;}
.ybb{bottom:228.026667pt;}
.ye9{bottom:229.626667pt;}
.y137{bottom:234.906667pt;}
.y62{bottom:237.626667pt;}
.y33{bottom:241.946667pt;}
.y10d{bottom:243.226667pt;}
.y9f{bottom:244.026667pt;}
.y7c{bottom:244.346667pt;}
.yba{bottom:245.626667pt;}
.ye8{bottom:247.226667pt;}
.y136{bottom:252.506667pt;}
.y61{bottom:255.226667pt;}
.y32{bottom:259.546667pt;}
.y9e{bottom:261.626667pt;}
.y10c{bottom:261.786667pt;}
.yb9{bottom:263.226667pt;}
.ye7{bottom:264.826667pt;}
.y135{bottom:270.106667pt;}
.y60{bottom:272.826667pt;}
.y9d{bottom:274.746667pt;}
.y10b{bottom:274.906667pt;}
.y31{bottom:277.146667pt;}
.yb8{bottom:280.826667pt;}
.ye6{bottom:282.426667pt;}
.y134{bottom:287.866667pt;}
.y5f{bottom:290.426667pt;}
.y30{bottom:294.906667pt;}
.y9c{bottom:298.106667pt;}
.yb7{bottom:298.426667pt;}
.ye5{bottom:300.186667pt;}
.y133{bottom:305.466667pt;}
.y5e{bottom:308.186667pt;}
.y10a{bottom:310.906667pt;}
.y2f{bottom:312.506667pt;}
.yb6{bottom:316.186667pt;}
.ye4{bottom:317.786667pt;}
.y132{bottom:323.066667pt;}
.y5d{bottom:325.786667pt;}
.y2e{bottom:330.106667pt;}
.yb5{bottom:333.786667pt;}
.y9a{bottom:334.106667pt;}
.ye3{bottom:335.386667pt;}
.y131{bottom:340.666667pt;}
.y5c{bottom:343.386667pt;}
.y107{bottom:346.746667pt;}
.y2d{bottom:347.706667pt;}
.ya8{bottom:351.386667pt;}
.ye2{bottom:352.986667pt;}
.y130{bottom:359.266667pt;}
.y7b{bottom:361.026667pt;}
.y2c{bottom:365.346667pt;}
.y5b{bottom:369.026667pt;}
.y98{bottom:369.986667pt;}
.ye1{bottom:370.626667pt;}
.y12f{bottom:377.826667pt;}
.y7a{bottom:378.626667pt;}
.y106{bottom:382.786667pt;}
.y2b{bottom:383.106667pt;}
.y5a{bottom:386.626667pt;}
.ye0{bottom:388.386667pt;}
.y79{bottom:396.386667pt;}
.y12e{bottom:396.546667pt;}
.y2a{bottom:400.706667pt;}
.y59{bottom:404.386667pt;}
.ydf{bottom:405.986667pt;}
.y78{bottom:413.986667pt;}
.y12d{bottom:415.106667pt;}
.y29{bottom:418.306667pt;}
.y105{bottom:418.786667pt;}
.y58{bottom:421.986667pt;}
.y97{bottom:423.586667pt;}
.y12c{bottom:428.226667pt;}
.y77{bottom:431.586667pt;}
.y28{bottom:435.906667pt;}
.y57{bottom:439.586667pt;}
.yde{bottom:441.186667pt;}
.y76{bottom:449.186667pt;}
.y27{bottom:453.506667pt;}
.y103{bottom:454.626667pt;}
.y56{bottom:457.186667pt;}
.ydd{bottom:458.786667pt;}
.y94{bottom:459.426667pt;}
.y12a{bottom:464.226667pt;}
.y75{bottom:466.786667pt;}
.y26{bottom:471.266667pt;}
.y55{bottom:474.786667pt;}
.ydc{bottom:476.546667pt;}
.y74{bottom:484.546667pt;}
.y25{bottom:488.866667pt;}
.y102{bottom:490.946667pt;}
.y54{bottom:492.546667pt;}
.ydb{bottom:494.146667pt;}
.y73{bottom:502.146667pt;}
.y24{bottom:506.466667pt;}
.y101{bottom:508.546667pt;}
.y53{bottom:510.146667pt;}
.yda{bottom:511.746667pt;}
.y93{bottom:513.026667pt;}
.y129{bottom:517.666667pt;}
.y72{bottom:519.746667pt;}
.y23{bottom:524.066667pt;}
.y100{bottom:526.146667pt;}
.y52{bottom:527.746667pt;}
.yd9{bottom:529.346667pt;}
.y71{bottom:537.346667pt;}
.y92{bottom:541.506667pt;}
.y22{bottom:541.666667pt;}
.yff{bottom:543.906667pt;}
.y51{bottom:545.346667pt;}
.yd8{bottom:546.946667pt;}
.y70{bottom:554.946667pt;}
.yfe{bottom:557.026667pt;}
.y91{bottom:559.106667pt;}
.y21{bottom:559.426667pt;}
.y50{bottom:562.946667pt;}
.yd7{bottom:564.706667pt;}
.y124{bottom:571.266667pt;}
.y6f{bottom:572.706667pt;}
.y90{bottom:576.866667pt;}
.y20{bottom:577.053333pt;}
.yfd{bottom:580.413333pt;}
.y4f{bottom:580.733333pt;}
.yd6{bottom:582.333333pt;}
.y6e{bottom:590.333333pt;}
.y8f{bottom:594.493333pt;}
.y1f{bottom:594.653333pt;}
.y4e{bottom:598.333333pt;}
.yd5{bottom:599.933333pt;}
.yfc{bottom:603.613333pt;}
.y6d{bottom:607.933333pt;}
.y8e{bottom:612.093333pt;}
.y1e{bottom:612.253333pt;}
.y4d{bottom:615.933333pt;}
.yd4{bottom:617.533333pt;}
.y123{bottom:624.893333pt;}
.y6c{bottom:625.533333pt;}
.y8d{bottom:629.693333pt;}
.y1d{bottom:629.853333pt;}
.y4c{bottom:633.533333pt;}
.yd3{bottom:635.133333pt;}
.yfb{bottom:639.613333pt;}
.y6b{bottom:643.133333pt;}
.y8c{bottom:647.293333pt;}
.y1c{bottom:647.613333pt;}
.y4b{bottom:651.133333pt;}
.yd2{bottom:652.893333pt;}
.y6a{bottom:660.893333pt;}
.y1b{bottom:665.213333pt;}
.y8b{bottom:666.013333pt;}
.y4a{bottom:668.893333pt;}
.yd1{bottom:670.493333pt;}
.yf9{bottom:675.613333pt;}
.yc7{bottom:678.493333pt;}
.y1a{bottom:682.813333pt;}
.y122{bottom:683.613333pt;}
.y8a{bottom:684.573333pt;}
.y49{bottom:686.493333pt;}
.yd0{bottom:688.093333pt;}
.yc6{bottom:696.093333pt;}
.yf7{bottom:698.813333pt;}
.y19{bottom:700.413333pt;}
.y121{bottom:701.213333pt;}
.y89{bottom:703.133333pt;}
.y48{bottom:704.093333pt;}
.ycf{bottom:705.693333pt;}
.yc5{bottom:713.693333pt;}
.y18{bottom:718.013333pt;}
.y120{bottom:718.813333pt;}
.y88{bottom:720.733333pt;}
.y47{bottom:721.693333pt;}
.yce{bottom:723.293333pt;}
.yc4{bottom:731.293333pt;}
.yf6{bottom:734.813333pt;}
.y17{bottom:735.773333pt;}
.y11f{bottom:736.413333pt;}
.y46{bottom:739.293333pt;}
.yc3{bottom:749.053333pt;}
.y16{bottom:753.373333pt;}
.y11e{bottom:754.173333pt;}
.y45{bottom:757.053333pt;}
.yc2{bottom:766.653333pt;}
.y15{bottom:770.973333pt;}
.y11d{bottom:771.773333pt;}
.y44{bottom:774.653333pt;}
.ycd{bottom:784.253333pt;}
.yf4{bottom:788.413333pt;}
.y14{bottom:788.573333pt;}
.y11c{bottom:789.373333pt;}
.y43{bottom:792.253333pt;}
.ycc{bottom:801.893333pt;}
.y11b{bottom:807.013333pt;}
.y42{bottom:809.893333pt;}
.y13{bottom:810.853333pt;}
.ycb{bottom:819.493333pt;}
.y12{bottom:824.453333pt;}
.y11a{bottom:824.613333pt;}
.y41{bottom:827.493333pt;}
.yca{bottom:837.253333pt;}
.yf2{bottom:841.893333pt;}
.y119{bottom:842.373333pt;}
.y11{bottom:843.333333pt;}
.y40{bottom:845.253333pt;}
.yc9{bottom:854.853333pt;}
.y118{bottom:859.973333pt;}
.y3f{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.yc8{bottom:872.453333pt;}
.y117{bottom:878.533333pt;}
.y3e{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y116{bottom:897.093333pt;}
.y3d{bottom:898.053333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.hb{height:19.360000pt;}
.h19{height:22.560000pt;}
.h1a{height:22.592000pt;}
.h11{height:22.720000pt;}
.he{height:24.991875pt;}
.h7{height:29.760000pt;}
.h1b{height:30.560000pt;}
.h16{height:32.800000pt;}
.h12{height:35.200000pt;}
.h15{height:35.232000pt;}
.h18{height:35.360000pt;}
.h1c{height:35.392000pt;}
.hd{height:37.479688pt;}
.hf{height:38.413438pt;}
.h10{height:38.672812pt;}
.h21{height:40.021563pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h1f{height:43.782500pt;}
.h9{height:47.310625pt;}
.h1e{height:52.800000pt;}
.h17{height:52.832000pt;}
.h20{height:52.834688pt;}
.h14{height:52.960000pt;}
.h1d{height:52.992000pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h13{height:70.592000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.wd{width:56.800000pt;}
.we{width:71.712000pt;}
.w11{width:84.032000pt;}
.wb{width:106.112000pt;}
.w15{width:113.472000pt;}
.w13{width:115.552000pt;}
.w3{width:117.312000pt;}
.w16{width:128.512000pt;}
.w12{width:154.426667pt;}
.w6{width:156.346667pt;}
.wf{width:175.226667pt;}
.w8{width:232.386667pt;}
.wa{width:232.546667pt;}
.w9{width:232.986667pt;}
.w10{width:284.226667pt;}
.w14{width:330.786667pt;}
.wc{width:453.693333pt;}
.w7{width:541.573333pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x10{left:9.280000pt;}
.x13{left:21.600000pt;}
.x1b{left:28.640000pt;}
.xd{left:43.679988pt;}
.x1{left:47.520000pt;}
.xa{left:48.959988pt;}
.x1e{left:61.119988pt;}
.xe{left:62.399988pt;}
.xb{left:67.199988pt;}
.x1f{left:80.031988pt;}
.xc{left:85.791988pt;}
.x4{left:105.146667pt;}
.x14{left:130.111988pt;}
.x6{left:133.466655pt;}
.x9{left:151.386655pt;}
.x15{left:154.106667pt;}
.x1c{left:163.546667pt;}
.xf{left:204.346667pt;}
.x18{left:223.226667pt;}
.x11{left:280.386667pt;}
.x8{left:311.906655pt;}
.x7{left:396.893322pt;}
.x1d{left:494.333333pt;}
.x19{left:507.453333pt;}
.x12{left:513.373333pt;}
.x1a{left:591.493333pt;}
.x16{left:607.813333pt;}
.x3{left:629.253333pt;}
.x17{left:664.613333pt;}
.x5{left:737.280000pt;}
}




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