
    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_37f99e287315f5608cb86cd9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_363949c69abd9b3b687cc0db.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_a5eedbe8803ef2f4c47a1b56.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a4f637e74671ee5760e76c44.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1dac1e2aa475defcf3b2b487.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4ce7b47609f1738e8b950c7b.woff2')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_30cad950b051f5b28cfb6999.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_77839a565bdc03746941113a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-3.702000px;}
.ls11{letter-spacing:-2.520000px;}
.ls15{letter-spacing:-0.618000px;}
.ls18{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.208200px;}
.ls17{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.100200px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.135600px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.ls1b{letter-spacing:4.500000px;}
.ls14{letter-spacing:7.560000px;}
.ls5{letter-spacing:23.706720px;}
.lsc{letter-spacing:25.866720px;}
.ls16{letter-spacing:46.026720px;}
.ls4{letter-spacing:154.002720px;}
.lse{letter-spacing:154.026720px;}
.lsb{letter-spacing:178.482720px;}
.lsd{letter-spacing:178.506720px;}
.ls13{letter-spacing:179.640000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.839800px;}
.wsa{word-spacing:-14.833200px;}
.ws1{word-spacing:-14.580000px;}
.ws9{word-spacing:-12.420000px;}
.wsb{word-spacing:-11.238000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._27{margin-left:-16.073280px;}
._d{margin-left:-5.797200px;}
._e{margin-left:-3.841920px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._12{width:2.919840px;}
._15{width:3.996480px;}
._14{width:5.318640px;}
._1b{width:6.410880px;}
._18{width:8.208720px;}
._3{width:9.540000px;}
._11{width:11.137200px;}
._1{width:12.420000px;}
._13{width:13.585680px;}
._24{width:16.135200px;}
._10{width:17.176800px;}
._1a{width:18.226800px;}
._f{width:19.998000px;}
._2c{width:21.035520px;}
._3b{width:22.051440px;}
._2d{width:23.067360px;}
._30{width:24.454800px;}
._22{width:25.731360px;}
._21{width:27.011520px;}
._2e{width:28.112400px;}
._25{width:29.376720px;}
._26{width:31.075200px;}
._17{width:32.150880px;}
._16{width:33.883920px;}
._34{width:34.961040px;}
._28{width:36.094320px;}
._29{width:37.830720px;}
._1e{width:38.903760px;}
._31{width:40.338000px;}
._1d{width:42.549120px;}
._1c{width:43.880400px;}
._23{width:45.246720px;}
._19{width:48.226320px;}
._3a{width:49.959360px;}
._1f{width:51.871680px;}
._20{width:53.699040px;}
._33{width:55.337760px;}
._3d{width:59.461200px;}
._37{width:64.684080px;}
._38{width:68.150160px;}
._3c{width:73.527120px;}
._2f{width:75.835440px;}
._36{width:79.540560px;}
._35{width:80.556480px;}
._2a{width:84.703680px;}
._2b{width:86.105520px;}
._8{width:88.200000px;}
._6{width:97.380000px;}
._0{width:102.600000px;}
._32{width:106.074000px;}
._9{width:108.180000px;}
._3e{width:113.422800px;}
._39{width:134.603280px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(70,120,134);}
.fc3{color:rgb(177,84,7);}
.fc6{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.240000px;}
.y2{bottom:5.400000px;}
.y29{bottom:5.760000px;}
.y2b{bottom:5.940000px;}
.y10{bottom:7.020000px;}
.y1a{bottom:8.820000px;}
.yc7{bottom:11.025000px;}
.yc4{bottom:13.140000px;}
.yc6{bottom:13.680000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.ya7{bottom:20.340000px;}
.y95{bottom:20.520000px;}
.y28{bottom:25.560000px;}
.y11{bottom:37.080000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y27{bottom:45.360000px;}
.yf{bottom:54.180000px;}
.y6{bottom:63.180000px;}
.y26{bottom:65.160000px;}
.yb{bottom:73.080000px;}
.y10f{bottom:83.340000px;}
.y5{bottom:84.450000px;}
.y25{bottom:85.140000px;}
.y40{bottom:90.360000px;}
.ya{bottom:92.370000px;}
.y7a{bottom:93.960000px;}
.ya4{bottom:96.300000px;}
.y45{bottom:99.360000px;}
.y10e{bottom:103.140000px;}
.y24{bottom:104.970000px;}
.y4{bottom:106.950000px;}
.yec{bottom:108.180000px;}
.y3f{bottom:110.160000px;}
.y9{bottom:110.190000px;}
.y79{bottom:113.760000px;}
.y13c{bottom:113.940000px;}
.ya3{bottom:116.100000px;}
.y44{bottom:119.160000px;}
.y10d{bottom:122.940000px;}
.y23{bottom:124.770000px;}
.y3{bottom:126.750000px;}
.yeb{bottom:127.980000px;}
.y3e{bottom:129.960000px;}
.y78{bottom:133.560000px;}
.y13b{bottom:133.740000px;}
.ya2{bottom:135.900000px;}
.y43{bottom:138.960000px;}
.y10c{bottom:142.740000px;}
.y22{bottom:144.570000px;}
.yea{bottom:147.780000px;}
.y3d{bottom:149.940000px;}
.y77{bottom:153.390000px;}
.y13a{bottom:153.750000px;}
.ya1{bottom:155.910000px;}
.y42{bottom:158.970000px;}
.y10b{bottom:162.750000px;}
.y21{bottom:164.370000px;}
.ye9{bottom:167.610000px;}
.y76{bottom:173.370000px;}
.y139{bottom:173.550000px;}
.ya0{bottom:175.710000px;}
.y3c{bottom:178.770000px;}
.yc1{bottom:179.850000px;}
.y20{bottom:184.350000px;}
.ye8{bottom:187.590000px;}
.y10a{bottom:191.550000px;}
.y75{bottom:193.170000px;}
.y138{bottom:193.350000px;}
.y9f{bottom:195.510000px;}
.y3b{bottom:198.570000px;}
.y1f{bottom:204.150000px;}
.ye7{bottom:207.390000px;}
.y109{bottom:211.350000px;}
.y74{bottom:212.970000px;}
.y137{bottom:213.150000px;}
.y9e{bottom:215.310000px;}
.y3a{bottom:218.370000px;}
.yc0{bottom:223.050000px;}
.y1e{bottom:223.950000px;}
.ye6{bottom:227.190000px;}
.y108{bottom:231.150000px;}
.y73{bottom:232.770000px;}
.y136{bottom:232.950000px;}
.y9d{bottom:235.110000px;}
.y39{bottom:238.170000px;}
.y1d{bottom:243.750000px;}
.y107{bottom:250.950000px;}
.y72{bottom:252.570000px;}
.y135{bottom:252.930000px;}
.ye5{bottom:255.990000px;}
.y38{bottom:258.150000px;}
.y1c{bottom:263.550000px;}
.ybf{bottom:266.250000px;}
.y106{bottom:270.930000px;}
.y9c{bottom:272.190000px;}
.y71{bottom:272.550000px;}
.y134{bottom:272.730000px;}
.ye4{bottom:275.790000px;}
.y37{bottom:277.950000px;}
.y105{bottom:290.730000px;}
.y70{bottom:292.350000px;}
.y133{bottom:292.530000px;}
.ye3{bottom:295.770000px;}
.y36{bottom:297.750000px;}
.ybe{bottom:309.630000px;}
.y104{bottom:310.530000px;}
.y6f{bottom:312.150000px;}
.y132{bottom:312.330000px;}
.y9b{bottom:312.870000px;}
.ye2{bottom:315.390000px;}
.y41{bottom:317.550000px;}
.y35{bottom:326.550000px;}
.y103{bottom:330.330000px;}
.y6e{bottom:331.950000px;}
.y131{bottom:332.130000px;}
.ye1{bottom:335.550000px;}
.y34{bottom:346.350000px;}
.y102{bottom:350.130000px;}
.y6d{bottom:351.750000px;}
.y130{bottom:352.110000px;}
.y9a{bottom:353.550000px;}
.ye0{bottom:355.170000px;}
.y33{bottom:366.330000px;}
.y101{bottom:370.110000px;}
.y12f{bottom:371.910000px;}
.ydf{bottom:375.150000px;}
.y6c{bottom:380.550000px;}
.y32{bottom:386.130000px;}
.y100{bottom:389.910000px;}
.y12e{bottom:391.710000px;}
.y99{bottom:394.230000px;}
.yde{bottom:395.130000px;}
.ybd{bottom:395.850000px;}
.y6b{bottom:400.575000px;}
.y31{bottom:405.975000px;}
.yff{bottom:409.755000px;}
.y12d{bottom:411.555000px;}
.ybc{bottom:415.695000px;}
.y6a{bottom:420.375000px;}
.ydd{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.yfe{bottom:429.555000px;}
.y12c{bottom:431.355000px;}
.y98{bottom:434.955000px;}
.ybb{bottom:435.495000px;}
.y69{bottom:440.355000px;}
.ydc{bottom:443.595000px;}
.y2f{bottom:445.575000px;}
.yfd{bottom:449.355000px;}
.y12b{bottom:451.335000px;}
.yba{bottom:455.295000px;}
.y68{bottom:460.155000px;}
.ydb{bottom:463.755000px;}
.y2e{bottom:465.555000px;}
.yfc{bottom:469.335000px;}
.y12a{bottom:471.135000px;}
.yb9{bottom:475.275000px;}
.y97{bottom:475.455000px;}
.y67{bottom:479.955000px;}
.yda{bottom:483.375000px;}
.y2d{bottom:485.355000px;}
.yfb{bottom:489.135000px;}
.y129{bottom:490.935000px;}
.yb8{bottom:495.255000px;}
.y66{bottom:500.115000px;}
.yd9{bottom:503.355000px;}
.y2c{bottom:505.155000px;}
.y128{bottom:510.735000px;}
.yb7{bottom:514.875000px;}
.y94{bottom:516.135000px;}
.yfa{bottom:517.935000px;}
.y65{bottom:519.735000px;}
.yd8{bottom:523.155000px;}
.yb6{bottom:534.855000px;}
.yf9{bottom:537.735000px;}
.y127{bottom:539.535000px;}
.y2a{bottom:539.715000px;}
.yd7{bottom:543.135000px;}
.yb5{bottom:554.655000px;}
.y93{bottom:557.535000px;}
.y64{bottom:559.515000px;}
.y1b{bottom:560.415000px;}
.yd6{bottom:562.935000px;}
.yb4{bottom:574.635000px;}
.y92{bottom:577.515000px;}
.y126{bottom:579.315000px;}
.y63{bottom:579.495000px;}
.yd5{bottom:582.735000px;}
.yb3{bottom:594.435000px;}
.y91{bottom:597.315000px;}
.y125{bottom:599.115000px;}
.y62{bottom:599.295000px;}
.yd4{bottom:611.715000px;}
.yb2{bottom:614.415000px;}
.y90{bottom:617.115000px;}
.y124{bottom:618.915000px;}
.y61{bottom:619.275000px;}
.yd3{bottom:631.515000px;}
.yb1{bottom:634.215000px;}
.y8f{bottom:636.915000px;}
.y123{bottom:638.715000px;}
.y60{bottom:639.075000px;}
.yd2{bottom:651.345000px;}
.yb0{bottom:654.225000px;}
.y8e{bottom:656.745000px;}
.y122{bottom:658.725000px;}
.y5f{bottom:658.905000px;}
.yd1{bottom:671.145000px;}
.yaf{bottom:674.025000px;}
.y8d{bottom:676.725000px;}
.y121{bottom:678.525000px;}
.y5e{bottom:678.705000px;}
.yd0{bottom:690.945000px;}
.yae{bottom:693.825000px;}
.y8c{bottom:696.525000px;}
.y5d{bottom:698.505000px;}
.y120{bottom:707.325000px;}
.ycf{bottom:710.925000px;}
.yad{bottom:713.625000px;}
.yf8{bottom:716.145000px;}
.y8b{bottom:716.325000px;}
.y5c{bottom:718.485000px;}
.y11f{bottom:727.125000px;}
.y8a{bottom:736.125000px;}
.yce{bottom:739.725000px;}
.y11e{bottom:746.925000px;}
.y5b{bottom:747.285000px;}
.yac{bottom:750.705000px;}
.y89{bottom:755.925000px;}
.yf7{bottom:756.105000px;}
.ycd{bottom:759.525000px;}
.y11d{bottom:766.905000px;}
.y5a{bottom:767.085000px;}
.y88{bottom:775.905000px;}
.ycc{bottom:779.325000px;}
.y11c{bottom:786.705000px;}
.y59{bottom:786.885000px;}
.y87{bottom:795.705000px;}
.yf6{bottom:795.885000px;}
.ycb{bottom:799.125000px;}
.y11b{bottom:806.325000px;}
.y58{bottom:806.685000px;}
.yab{bottom:808.665000px;}
.y86{bottom:815.505000px;}
.yca{bottom:819.105000px;}
.y11a{bottom:826.305000px;}
.y57{bottom:826.665000px;}
.y85{bottom:835.305000px;}
.yf5{bottom:835.665000px;}
.y19{bottom:838.905000px;}
.y119{bottom:846.105000px;}
.y56{bottom:846.465000px;}
.y84{bottom:855.105000px;}
.yf4{bottom:855.465000px;}
.yc9{bottom:858.705000px;}
.y118{bottom:866.085000px;}
.y55{bottom:866.265000px;}
.yaa{bottom:866.445000px;}
.y18{bottom:868.245000px;}
.y83{bottom:875.085000px;}
.yf3{bottom:875.265000px;}
.yc8{bottom:878.505000px;}
.y117{bottom:885.885000px;}
.y54{bottom:886.065000px;}
.y17{bottom:893.265000px;}
.y82{bottom:894.885000px;}
.yf2{bottom:904.110000px;}
.y116{bottom:905.910000px;}
.y16{bottom:908.610000px;}
.y81{bottom:914.730000px;}
.y53{bottom:914.910000px;}
.yc5{bottom:919.410000px;}
.yf1{bottom:923.910000px;}
.ya9{bottom:924.450000px;}
.y115{bottom:925.710000px;}
.y15{bottom:929.850000px;}
.y52{bottom:934.890000px;}
.y80{bottom:943.350000px;}
.yf0{bottom:943.890000px;}
.y114{bottom:945.690000px;}
.yc3{bottom:948.210000px;}
.y14{bottom:953.250000px;}
.y51{bottom:954.690000px;}
.y7f{bottom:963.330000px;}
.yef{bottom:963.690000px;}
.y113{bottom:965.490000px;}
.y50{bottom:974.490000px;}
.yc2{bottom:976.650000px;}
.ya8{bottom:982.410000px;}
.y7e{bottom:983.310000px;}
.yee{bottom:983.490000px;}
.y13{bottom:984.930000px;}
.y4f{bottom:994.290000px;}
.y7d{bottom:1003.110000px;}
.yed{bottom:1003.290000px;}
.y4e{bottom:1014.090000px;}
.y12{bottom:1016.790000px;}
.y7c{bottom:1022.910000px;}
.ya6{bottom:1023.090000px;}
.y4d{bottom:1034.070000px;}
.y7b{bottom:1043.070000px;}
.ye{bottom:1043.970000px;}
.y112{bottom:1053.870000px;}
.y4c{bottom:1062.870000px;}
.y1{bottom:1067.730000px;}
.y111{bottom:1073.670000px;}
.ya5{bottom:1080.870000px;}
.y4b{bottom:1082.670000px;}
.y110{bottom:1093.470000px;}
.y4a{bottom:1102.470000px;}
.y49{bottom:1122.270000px;}
.y48{bottom:1142.250000px;}
.y47{bottom:1171.620000px;}
.y46{bottom:1193.400000px;}
.h3{height:2.190938px;}
.h16{height:17.100000px;}
.h15{height:17.280000px;}
.h17{height:17.316000px;}
.h1b{height:19.800000px;}
.h11{height:19.980000px;}
.ha{height:22.320000px;}
.hf{height:22.860000px;}
.h1f{height:25.056000px;}
.he{height:27.147656px;}
.h1d{height:27.180000px;}
.h1e{height:27.720000px;}
.h18{height:34.380000px;}
.h14{height:34.560000px;}
.h19{height:34.596000px;}
.h8{height:37.705078px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h12{height:43.506914px;}
.h20{height:45.461953px;}
.h13{height:46.251562px;}
.hb{height:46.736719px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.h1c{height:59.400000px;}
.hd{height:67.565039px;}
.h9{height:71.613281px;}
.h1a{height:79.200000px;}
.h2{height:140.796000px;}
.h10{height:277.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:19.476000px;}
.w10{width:40.860000px;}
.w6{width:52.776000px;}
.w11{width:61.020000px;}
.we{width:61.956000px;}
.w17{width:74.556000px;}
.w13{width:75.780000px;}
.w18{width:76.500000px;}
.w16{width:76.860000px;}
.w1a{width:78.156000px;}
.w1b{width:79.380000px;}
.wb{width:84.960000px;}
.wf{width:89.676000px;}
.w12{width:90.576000px;}
.wc{width:91.476000px;}
.w15{width:93.960000px;}
.wd{width:96.660000px;}
.w1c{width:99.396000px;}
.w19{width:104.760000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w3{width:464.865000px;}
.w9{width:585.510000px;}
.w7{width:731.670000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:1.080000px;}
.x36{left:3.240000px;}
.x37{left:4.860000px;}
.x10{left:6.840000px;}
.x9{left:8.100000px;}
.x26{left:10.980000px;}
.x39{left:13.320000px;}
.x2d{left:15.120000px;}
.x34{left:16.425000px;}
.x29{left:17.685000px;}
.x22{left:19.260000px;}
.x2e{left:21.060000px;}
.x25{left:23.040000px;}
.x3a{left:24.120000px;}
.x24{left:25.380000px;}
.x2b{left:27.396000px;}
.x23{left:28.800000px;}
.x20{left:32.580000px;}
.x4{left:38.340000px;}
.x2c{left:39.996000px;}
.x38{left:41.040000px;}
.x1{left:48.240000px;}
.x11{left:52.919987px;}
.xb{left:53.999987px;}
.x16{left:55.439987px;}
.xe{left:57.600000px;}
.xa{left:62.100000px;}
.xd{left:64.619987px;}
.x21{left:65.880000px;}
.x6{left:80.865000px;}
.x30{left:84.816000px;}
.x18{left:86.075987px;}
.x19{left:96.515987px;}
.x12{left:106.235987px;}
.xc{left:107.496000px;}
.x7{left:133.605000px;}
.x27{left:147.456000px;}
.x2{left:160.050000px;}
.x2f{left:162.029987px;}
.x31{left:179.490000px;}
.x28{left:187.950000px;}
.x3{left:221.070000px;}
.x17{left:234.749987px;}
.x5{left:248.295000px;}
.xf{left:249.870000px;}
.x33{left:256.710000px;}
.x35{left:331.635000px;}
.x2a{left:340.635000px;}
.x15{left:472.424987px;}
.x1a{left:473.504987px;}
.x1c{left:488.445000px;}
.x3d{left:500.504987px;}
.x13{left:526.604987px;}
.x14{left:548.024987px;}
.x1d{left:573.765000px;}
.x1b{left:580.424987px;}
.x3b{left:658.950000px;}
.x1e{left:665.610000px;}
.x8{left:685.950000px;}
.x3c{left:739.050000px;}
.x1f{left:762.270000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-3.290667pt;}
.ls11{letter-spacing:-2.240000pt;}
.ls15{letter-spacing:-0.549333pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.185067pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.089067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.120533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:4.000000pt;}
.ls14{letter-spacing:6.720000pt;}
.ls5{letter-spacing:21.072640pt;}
.lsc{letter-spacing:22.992640pt;}
.ls16{letter-spacing:40.912640pt;}
.ls4{letter-spacing:136.891307pt;}
.lse{letter-spacing:136.912640pt;}
.lsb{letter-spacing:158.651307pt;}
.lsd{letter-spacing:158.672640pt;}
.ls13{letter-spacing:159.680000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.190933pt;}
.wsa{word-spacing:-13.185067pt;}
.ws1{word-spacing:-12.960000pt;}
.ws9{word-spacing:-11.040000pt;}
.wsb{word-spacing:-9.989333pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._27{margin-left:-14.287360pt;}
._d{margin-left:-5.153067pt;}
._e{margin-left:-3.415040pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._12{width:2.595413pt;}
._15{width:3.552427pt;}
._14{width:4.727680pt;}
._1b{width:5.698560pt;}
._18{width:7.296640pt;}
._3{width:8.480000pt;}
._11{width:9.899733pt;}
._1{width:11.040000pt;}
._13{width:12.076160pt;}
._24{width:14.342400pt;}
._10{width:15.268267pt;}
._1a{width:16.201600pt;}
._f{width:17.776000pt;}
._2c{width:18.698240pt;}
._3b{width:19.601280pt;}
._2d{width:20.504320pt;}
._30{width:21.737600pt;}
._22{width:22.872320pt;}
._21{width:24.010240pt;}
._2e{width:24.988800pt;}
._25{width:26.112640pt;}
._26{width:27.622400pt;}
._17{width:28.578560pt;}
._16{width:30.119040pt;}
._34{width:31.076480pt;}
._28{width:32.083840pt;}
._29{width:33.627307pt;}
._1e{width:34.581120pt;}
._31{width:35.856000pt;}
._1d{width:37.821440pt;}
._1c{width:39.004800pt;}
._23{width:40.219307pt;}
._19{width:42.867840pt;}
._3a{width:44.408320pt;}
._1f{width:46.108160pt;}
._20{width:47.732480pt;}
._33{width:49.189120pt;}
._3d{width:52.854400pt;}
._37{width:57.496960pt;}
._38{width:60.577920pt;}
._3c{width:65.357440pt;}
._2f{width:67.409280pt;}
._36{width:70.702720pt;}
._35{width:71.605760pt;}
._2a{width:75.292160pt;}
._2b{width:76.538240pt;}
._8{width:78.400000pt;}
._6{width:86.560000pt;}
._0{width:91.200000pt;}
._32{width:94.288000pt;}
._9{width:96.160000pt;}
._3e{width:100.820267pt;}
._39{width:119.647360pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.880000pt;}
.y2{bottom:4.800000pt;}
.y29{bottom:5.120000pt;}
.y2b{bottom:5.280000pt;}
.y10{bottom:6.240000pt;}
.y1a{bottom:7.840000pt;}
.yc7{bottom:9.800000pt;}
.yc4{bottom:11.680000pt;}
.yc6{bottom:12.160000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.ya7{bottom:18.080000pt;}
.y95{bottom:18.240000pt;}
.y28{bottom:22.720000pt;}
.y11{bottom:32.960000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y27{bottom:40.320000pt;}
.yf{bottom:48.160000pt;}
.y6{bottom:56.160000pt;}
.y26{bottom:57.920000pt;}
.yb{bottom:64.960000pt;}
.y10f{bottom:74.080000pt;}
.y5{bottom:75.066667pt;}
.y25{bottom:75.680000pt;}
.y40{bottom:80.320000pt;}
.ya{bottom:82.106667pt;}
.y7a{bottom:83.520000pt;}
.ya4{bottom:85.600000pt;}
.y45{bottom:88.320000pt;}
.y10e{bottom:91.680000pt;}
.y24{bottom:93.306667pt;}
.y4{bottom:95.066667pt;}
.yec{bottom:96.160000pt;}
.y3f{bottom:97.920000pt;}
.y9{bottom:97.946667pt;}
.y79{bottom:101.120000pt;}
.y13c{bottom:101.280000pt;}
.ya3{bottom:103.200000pt;}
.y44{bottom:105.920000pt;}
.y10d{bottom:109.280000pt;}
.y23{bottom:110.906667pt;}
.y3{bottom:112.666667pt;}
.yeb{bottom:113.760000pt;}
.y3e{bottom:115.520000pt;}
.y78{bottom:118.720000pt;}
.y13b{bottom:118.880000pt;}
.ya2{bottom:120.800000pt;}
.y43{bottom:123.520000pt;}
.y10c{bottom:126.880000pt;}
.y22{bottom:128.506667pt;}
.yea{bottom:131.360000pt;}
.y3d{bottom:133.280000pt;}
.y77{bottom:136.346667pt;}
.y13a{bottom:136.666667pt;}
.ya1{bottom:138.586667pt;}
.y42{bottom:141.306667pt;}
.y10b{bottom:144.666667pt;}
.y21{bottom:146.106667pt;}
.ye9{bottom:148.986667pt;}
.y76{bottom:154.106667pt;}
.y139{bottom:154.266667pt;}
.ya0{bottom:156.186667pt;}
.y3c{bottom:158.906667pt;}
.yc1{bottom:159.866667pt;}
.y20{bottom:163.866667pt;}
.ye8{bottom:166.746667pt;}
.y10a{bottom:170.266667pt;}
.y75{bottom:171.706667pt;}
.y138{bottom:171.866667pt;}
.y9f{bottom:173.786667pt;}
.y3b{bottom:176.506667pt;}
.y1f{bottom:181.466667pt;}
.ye7{bottom:184.346667pt;}
.y109{bottom:187.866667pt;}
.y74{bottom:189.306667pt;}
.y137{bottom:189.466667pt;}
.y9e{bottom:191.386667pt;}
.y3a{bottom:194.106667pt;}
.yc0{bottom:198.266667pt;}
.y1e{bottom:199.066667pt;}
.ye6{bottom:201.946667pt;}
.y108{bottom:205.466667pt;}
.y73{bottom:206.906667pt;}
.y136{bottom:207.066667pt;}
.y9d{bottom:208.986667pt;}
.y39{bottom:211.706667pt;}
.y1d{bottom:216.666667pt;}
.y107{bottom:223.066667pt;}
.y72{bottom:224.506667pt;}
.y135{bottom:224.826667pt;}
.ye5{bottom:227.546667pt;}
.y38{bottom:229.466667pt;}
.y1c{bottom:234.266667pt;}
.ybf{bottom:236.666667pt;}
.y106{bottom:240.826667pt;}
.y9c{bottom:241.946667pt;}
.y71{bottom:242.266667pt;}
.y134{bottom:242.426667pt;}
.ye4{bottom:245.146667pt;}
.y37{bottom:247.066667pt;}
.y105{bottom:258.426667pt;}
.y70{bottom:259.866667pt;}
.y133{bottom:260.026667pt;}
.ye3{bottom:262.906667pt;}
.y36{bottom:264.666667pt;}
.ybe{bottom:275.226667pt;}
.y104{bottom:276.026667pt;}
.y6f{bottom:277.466667pt;}
.y132{bottom:277.626667pt;}
.y9b{bottom:278.106667pt;}
.ye2{bottom:280.346667pt;}
.y41{bottom:282.266667pt;}
.y35{bottom:290.266667pt;}
.y103{bottom:293.626667pt;}
.y6e{bottom:295.066667pt;}
.y131{bottom:295.226667pt;}
.ye1{bottom:298.266667pt;}
.y34{bottom:307.866667pt;}
.y102{bottom:311.226667pt;}
.y6d{bottom:312.666667pt;}
.y130{bottom:312.986667pt;}
.y9a{bottom:314.266667pt;}
.ye0{bottom:315.706667pt;}
.y33{bottom:325.626667pt;}
.y101{bottom:328.986667pt;}
.y12f{bottom:330.586667pt;}
.ydf{bottom:333.466667pt;}
.y6c{bottom:338.266667pt;}
.y32{bottom:343.226667pt;}
.y100{bottom:346.586667pt;}
.y12e{bottom:348.186667pt;}
.y99{bottom:350.426667pt;}
.yde{bottom:351.226667pt;}
.ybd{bottom:351.866667pt;}
.y6b{bottom:356.066667pt;}
.y31{bottom:360.866667pt;}
.yff{bottom:364.226667pt;}
.y12d{bottom:365.826667pt;}
.ybc{bottom:369.506667pt;}
.y6a{bottom:373.666667pt;}
.ydd{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.yfe{bottom:381.826667pt;}
.y12c{bottom:383.426667pt;}
.y98{bottom:386.626667pt;}
.ybb{bottom:387.106667pt;}
.y69{bottom:391.426667pt;}
.ydc{bottom:394.306667pt;}
.y2f{bottom:396.066667pt;}
.yfd{bottom:399.426667pt;}
.y12b{bottom:401.186667pt;}
.yba{bottom:404.706667pt;}
.y68{bottom:409.026667pt;}
.ydb{bottom:412.226667pt;}
.y2e{bottom:413.826667pt;}
.yfc{bottom:417.186667pt;}
.y12a{bottom:418.786667pt;}
.yb9{bottom:422.466667pt;}
.y97{bottom:422.626667pt;}
.y67{bottom:426.626667pt;}
.yda{bottom:429.666667pt;}
.y2d{bottom:431.426667pt;}
.yfb{bottom:434.786667pt;}
.y129{bottom:436.386667pt;}
.yb8{bottom:440.226667pt;}
.y66{bottom:444.546667pt;}
.yd9{bottom:447.426667pt;}
.y2c{bottom:449.026667pt;}
.y128{bottom:453.986667pt;}
.yb7{bottom:457.666667pt;}
.y94{bottom:458.786667pt;}
.yfa{bottom:460.386667pt;}
.y65{bottom:461.986667pt;}
.yd8{bottom:465.026667pt;}
.yb6{bottom:475.426667pt;}
.yf9{bottom:477.986667pt;}
.y127{bottom:479.586667pt;}
.y2a{bottom:479.746667pt;}
.yd7{bottom:482.786667pt;}
.yb5{bottom:493.026667pt;}
.y93{bottom:495.586667pt;}
.y64{bottom:497.346667pt;}
.y1b{bottom:498.146667pt;}
.yd6{bottom:500.386667pt;}
.yb4{bottom:510.786667pt;}
.y92{bottom:513.346667pt;}
.y126{bottom:514.946667pt;}
.y63{bottom:515.106667pt;}
.yd5{bottom:517.986667pt;}
.yb3{bottom:528.386667pt;}
.y91{bottom:530.946667pt;}
.y125{bottom:532.546667pt;}
.y62{bottom:532.706667pt;}
.yd4{bottom:543.746667pt;}
.yb2{bottom:546.146667pt;}
.y90{bottom:548.546667pt;}
.y124{bottom:550.146667pt;}
.y61{bottom:550.466667pt;}
.yd3{bottom:561.346667pt;}
.yb1{bottom:563.746667pt;}
.y8f{bottom:566.146667pt;}
.y123{bottom:567.746667pt;}
.y60{bottom:568.066667pt;}
.yd2{bottom:578.973333pt;}
.yb0{bottom:581.533333pt;}
.y8e{bottom:583.773333pt;}
.y122{bottom:585.533333pt;}
.y5f{bottom:585.693333pt;}
.yd1{bottom:596.573333pt;}
.yaf{bottom:599.133333pt;}
.y8d{bottom:601.533333pt;}
.y121{bottom:603.133333pt;}
.y5e{bottom:603.293333pt;}
.yd0{bottom:614.173333pt;}
.yae{bottom:616.733333pt;}
.y8c{bottom:619.133333pt;}
.y5d{bottom:620.893333pt;}
.y120{bottom:628.733333pt;}
.ycf{bottom:631.933333pt;}
.yad{bottom:634.333333pt;}
.yf8{bottom:636.573333pt;}
.y8b{bottom:636.733333pt;}
.y5c{bottom:638.653333pt;}
.y11f{bottom:646.333333pt;}
.y8a{bottom:654.333333pt;}
.yce{bottom:657.533333pt;}
.y11e{bottom:663.933333pt;}
.y5b{bottom:664.253333pt;}
.yac{bottom:667.293333pt;}
.y89{bottom:671.933333pt;}
.yf7{bottom:672.093333pt;}
.ycd{bottom:675.133333pt;}
.y11d{bottom:681.693333pt;}
.y5a{bottom:681.853333pt;}
.y88{bottom:689.693333pt;}
.ycc{bottom:692.733333pt;}
.y11c{bottom:699.293333pt;}
.y59{bottom:699.453333pt;}
.y87{bottom:707.293333pt;}
.yf6{bottom:707.453333pt;}
.ycb{bottom:710.333333pt;}
.y11b{bottom:716.733333pt;}
.y58{bottom:717.053333pt;}
.yab{bottom:718.813333pt;}
.y86{bottom:724.893333pt;}
.yca{bottom:728.093333pt;}
.y11a{bottom:734.493333pt;}
.y57{bottom:734.813333pt;}
.y85{bottom:742.493333pt;}
.yf5{bottom:742.813333pt;}
.y19{bottom:745.693333pt;}
.y119{bottom:752.093333pt;}
.y56{bottom:752.413333pt;}
.y84{bottom:760.093333pt;}
.yf4{bottom:760.413333pt;}
.yc9{bottom:763.293333pt;}
.y118{bottom:769.853333pt;}
.y55{bottom:770.013333pt;}
.yaa{bottom:770.173333pt;}
.y18{bottom:771.773333pt;}
.y83{bottom:777.853333pt;}
.yf3{bottom:778.013333pt;}
.yc8{bottom:780.893333pt;}
.y117{bottom:787.453333pt;}
.y54{bottom:787.613333pt;}
.y17{bottom:794.013333pt;}
.y82{bottom:795.453333pt;}
.yf2{bottom:803.653333pt;}
.y116{bottom:805.253333pt;}
.y16{bottom:807.653333pt;}
.y81{bottom:813.093333pt;}
.y53{bottom:813.253333pt;}
.yc5{bottom:817.253333pt;}
.yf1{bottom:821.253333pt;}
.ya9{bottom:821.733333pt;}
.y115{bottom:822.853333pt;}
.y15{bottom:826.533333pt;}
.y52{bottom:831.013333pt;}
.y80{bottom:838.533333pt;}
.yf0{bottom:839.013333pt;}
.y114{bottom:840.613333pt;}
.yc3{bottom:842.853333pt;}
.y14{bottom:847.333333pt;}
.y51{bottom:848.613333pt;}
.y7f{bottom:856.293333pt;}
.yef{bottom:856.613333pt;}
.y113{bottom:858.213333pt;}
.y50{bottom:866.213333pt;}
.yc2{bottom:868.133333pt;}
.ya8{bottom:873.253333pt;}
.y7e{bottom:874.053333pt;}
.yee{bottom:874.213333pt;}
.y13{bottom:875.493333pt;}
.y4f{bottom:883.813333pt;}
.y7d{bottom:891.653333pt;}
.yed{bottom:891.813333pt;}
.y4e{bottom:901.413333pt;}
.y12{bottom:903.813333pt;}
.y7c{bottom:909.253333pt;}
.ya6{bottom:909.413333pt;}
.y4d{bottom:919.173333pt;}
.y7b{bottom:927.173333pt;}
.ye{bottom:927.973333pt;}
.y112{bottom:936.773333pt;}
.y4c{bottom:944.773333pt;}
.y1{bottom:949.093333pt;}
.y111{bottom:954.373333pt;}
.ya5{bottom:960.773333pt;}
.y4b{bottom:962.373333pt;}
.y110{bottom:971.973333pt;}
.y4a{bottom:979.973333pt;}
.y49{bottom:997.573333pt;}
.y48{bottom:1015.333333pt;}
.y47{bottom:1041.440000pt;}
.y46{bottom:1060.800000pt;}
.h3{height:1.947500pt;}
.h16{height:15.200000pt;}
.h15{height:15.360000pt;}
.h17{height:15.392000pt;}
.h1b{height:17.600000pt;}
.h11{height:17.760000pt;}
.ha{height:19.840000pt;}
.hf{height:20.320000pt;}
.h1f{height:22.272000pt;}
.he{height:24.131250pt;}
.h1d{height:24.160000pt;}
.h1e{height:24.640000pt;}
.h18{height:30.560000pt;}
.h14{height:30.720000pt;}
.h19{height:30.752000pt;}
.h8{height:33.515625pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h12{height:38.672812pt;}
.h20{height:40.410625pt;}
.h13{height:41.112500pt;}
.hb{height:41.543750pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.h1c{height:52.800000pt;}
.hd{height:60.057813pt;}
.h9{height:63.656250pt;}
.h1a{height:70.400000pt;}
.h2{height:125.152000pt;}
.h10{height:246.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:17.312000pt;}
.w10{width:36.320000pt;}
.w6{width:46.912000pt;}
.w11{width:54.240000pt;}
.we{width:55.072000pt;}
.w17{width:66.272000pt;}
.w13{width:67.360000pt;}
.w18{width:68.000000pt;}
.w16{width:68.320000pt;}
.w1a{width:69.472000pt;}
.w1b{width:70.560000pt;}
.wb{width:75.520000pt;}
.wf{width:79.712000pt;}
.w12{width:80.512000pt;}
.wc{width:81.312000pt;}
.w15{width:83.520000pt;}
.wd{width:85.920000pt;}
.w1c{width:88.352000pt;}
.w19{width:93.120000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w3{width:413.213333pt;}
.w9{width:520.453333pt;}
.w7{width:650.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:0.960000pt;}
.x36{left:2.880000pt;}
.x37{left:4.320000pt;}
.x10{left:6.080000pt;}
.x9{left:7.200000pt;}
.x26{left:9.760000pt;}
.x39{left:11.840000pt;}
.x2d{left:13.440000pt;}
.x34{left:14.600000pt;}
.x29{left:15.720000pt;}
.x22{left:17.120000pt;}
.x2e{left:18.720000pt;}
.x25{left:20.480000pt;}
.x3a{left:21.440000pt;}
.x24{left:22.560000pt;}
.x2b{left:24.352000pt;}
.x23{left:25.600000pt;}
.x20{left:28.960000pt;}
.x4{left:34.080000pt;}
.x2c{left:35.552000pt;}
.x38{left:36.480000pt;}
.x1{left:42.880000pt;}
.x11{left:47.039988pt;}
.xb{left:47.999988pt;}
.x16{left:49.279988pt;}
.xe{left:51.200000pt;}
.xa{left:55.200000pt;}
.xd{left:57.439988pt;}
.x21{left:58.560000pt;}
.x6{left:71.880000pt;}
.x30{left:75.392000pt;}
.x18{left:76.511988pt;}
.x19{left:85.791988pt;}
.x12{left:94.431988pt;}
.xc{left:95.552000pt;}
.x7{left:118.760000pt;}
.x27{left:131.072000pt;}
.x2{left:142.266667pt;}
.x2f{left:144.026655pt;}
.x31{left:159.546667pt;}
.x28{left:167.066667pt;}
.x3{left:196.506667pt;}
.x17{left:208.666655pt;}
.x5{left:220.706667pt;}
.xf{left:222.106667pt;}
.x33{left:228.186667pt;}
.x35{left:294.786667pt;}
.x2a{left:302.786667pt;}
.x15{left:419.933322pt;}
.x1a{left:420.893322pt;}
.x1c{left:434.173333pt;}
.x3d{left:444.893322pt;}
.x13{left:468.093322pt;}
.x14{left:487.133322pt;}
.x1d{left:510.013333pt;}
.x1b{left:515.933322pt;}
.x3b{left:585.733333pt;}
.x1e{left:591.653333pt;}
.x8{left:609.733333pt;}
.x3c{left:656.933333pt;}
.x1f{left:677.573333pt;}
}




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