
    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_b8c327195112a0643c21cae7.woff')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_73a8b85604d10878d521283d.woff')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_a81f05bda4741e23b13d28c2.woff')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_740d766cc4be9f639bde8b40.woff')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_be9abfb6e0931f0d2025cf43.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aa41999d341cc737f5e09375.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_731f879dd5098f45bcc3afa3.woff')format("woff");}.ff7{font-family:ff7;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;}
.ls16{letter-spacing:-0.285600px;}
.ls10{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls17{letter-spacing:-0.093600px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.034560px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.118200px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.160800px;}
.ls11{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.174600px;}
.ls14{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:1.536000px;}
.ls5{letter-spacing:9.425520px;}
.ls1c{letter-spacing:28.173600px;}
.ls1b{letter-spacing:47.726640px;}
.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;}
}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws11{word-spacing:-13.425600px;}
.wsa{word-spacing:-13.399800px;}
.ws4{word-spacing:-13.387200px;}
.wsf{word-spacing:-13.344600px;}
.ws10{word-spacing:-13.342800px;}
.ws5{word-spacing:-13.294800px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.039800px;}
.wse{word-spacing:-12.940800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._a{margin-left:-3.284160px;}
._8{margin-left:-2.205720px;}
._0{margin-left:-1.110000px;}
._3{width:1.402800px;}
._9{width:3.077760px;}
._4{width:4.156320px;}
._7{width:6.091919px;}
._6{width:7.094400px;}
._2{width:8.746764px;}
._1{width:9.812160px;}
._b{width:10.911636px;}
._f{width:12.084120px;}
._12{width:14.269800px;}
._11{width:15.270480px;}
._13{width:16.692000px;}
._5{width:18.216600px;}
._e{width:19.298520px;}
._c{width:21.042000px;}
._d{width:22.545000px;}
._14{width:27.474840px;}
._10{width:29.639160px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y77{bottom:7.830000px;}
.y7d{bottom:7.920000px;}
.y7b{bottom:9.000000px;}
.y8f{bottom:16.650000px;}
.ye2{bottom:21.600000px;}
.y79{bottom:22.680000px;}
.y90{bottom:25.470000px;}
.y138{bottom:27.360000px;}
.ye1{bottom:35.280000px;}
.y137{bottom:45.000000px;}
.y105{bottom:54.720000px;}
.y136{bottom:62.550000px;}
.y104{bottom:72.270000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y103{bottom:89.910000px;}
.y135{bottom:97.050000px;}
.y132{bottom:101.520000px;}
.y1{bottom:101.640000px;}
.y134{bottom:114.600000px;}
.y12a{bottom:115.680000px;}
.y102{bottom:115.770000px;}
.y131{bottom:119.070000px;}
.y130{bottom:119.100000px;}
.yfb{bottom:119.160000px;}
.yb9{bottom:121.260000px;}
.y6d{bottom:123.780000px;}
.ye7{bottom:132.210000px;}
.y133{bottom:132.240000px;}
.y189{bottom:136.380000px;}
.yfa{bottom:136.710000px;}
.yf3{bottom:136.740000px;}
.y55{bottom:137.910000px;}
.yb8{bottom:138.810000px;}
.y25{bottom:141.870000px;}
.y12f{bottom:143.040000px;}
.y108{bottom:143.130000px;}
.yda{bottom:145.650000px;}
.y93{bottom:146.640000px;}
.y188{bottom:153.930000px;}
.y117{bottom:154.260000px;}
.y10e{bottom:154.290000px;}
.ye6{bottom:154.350000px;}
.yf2{bottom:154.380000px;}
.yb7{bottom:156.360000px;}
.y6c{bottom:159.330000px;}
.y24{bottom:159.510000px;}
.yd9{bottom:163.290000px;}
.y15f{bottom:163.740000px;}
.y12e{bottom:170.400000px;}
.y107{bottom:170.490000px;}
.y187{bottom:171.570000px;}
.y116{bottom:171.810000px;}
.y10d{bottom:171.840000px;}
.ye5{bottom:171.900000px;}
.yf1{bottom:171.930000px;}
.y54{bottom:173.460000px;}
.y92{bottom:173.910000px;}
.y23{bottom:177.060000px;}
.yd8{bottom:180.840000px;}
.y15e{bottom:181.290000px;}
.y186{bottom:189.120000px;}
.y53{bottom:191.100000px;}
.yb6{bottom:191.280000px;}
.y6b{bottom:191.550000px;}
.y106{bottom:197.760000px;}
.yd7{bottom:198.480000px;}
.y15d{bottom:198.930000px;}
.y91{bottom:201.270000px;}
.yb5{bottom:205.320000px;}
.y52{bottom:208.650000px;}
.y22{bottom:212.610000px;}
.y185{bottom:215.670000px;}
.y15c{bottom:216.480000px;}
.yb4{bottom:217.470000px;}
.y12d{bottom:225.030000px;}
.yee{bottom:225.120000px;}
.y8e{bottom:228.630000px;}
.y21{bottom:230.250000px;}
.y184{bottom:233.310000px;}
.yd6{bottom:234.030000px;}
.y15b{bottom:234.120000px;}
.y51{bottom:235.200000px;}
.yb3{bottom:244.830000px;}
.y20{bottom:247.800000px;}
.yd5{bottom:251.580000px;}
.y15a{bottom:251.670000px;}
.y12c{bottom:252.390000px;}
.y101{bottom:252.480000px;}
.y183{bottom:259.860000px;}
.y1f{bottom:265.440000px;}
.yd4{bottom:269.220000px;}
.y50{bottom:270.840000px;}
.yb2{bottom:272.190000px;}
.y8d{bottom:273.540000px;}
.y182{bottom:277.500000px;}
.y159{bottom:278.580000px;}
.y12b{bottom:279.750000px;}
.y100{bottom:279.840000px;}
.yd3{bottom:286.770000px;}
.y4f{bottom:288.390000px;}
.y1e{bottom:292.260000px;}
.y181{bottom:295.050000px;}
.yb1{bottom:299.550000px;}
.y8c{bottom:300.900000px;}
.yd2{bottom:304.410000px;}
.y4e{bottom:305.940000px;}
.y123{bottom:307.020000px;}
.yff{bottom:307.110000px;}
.y180{bottom:321.600000px;}
.y4d{bottom:323.580000px;}
.yb0{bottom:326.820000px;}
.y8b{bottom:328.170000px;}
.y129{bottom:334.380000px;}
.yfe{bottom:334.470000px;}
.y17f{bottom:339.240000px;}
.yd1{bottom:339.960000px;}
.y1d{bottom:340.860000px;}
.y4c{bottom:341.130000px;}
.y158{bottom:344.460000px;}
.yaf{bottom:354.180000px;}
.y8a{bottom:355.530000px;}
.yd0{bottom:357.510000px;}
.y4b{bottom:358.770000px;}
.y128{bottom:361.740000px;}
.yfd{bottom:361.830000px;}
.y157{bottom:362.010000px;}
.yef{bottom:363.270000px;}
.y17e{bottom:365.790000px;}
.y4a{bottom:376.320000px;}
.y1c{bottom:377.940000px;}
.y156{bottom:379.650000px;}
.yae{bottom:381.540000px;}
.y89{bottom:382.890000px;}
.y17d{bottom:383.340000px;}
.ycf{bottom:384.150000px;}
.y127{bottom:389.100000px;}
.yfc{bottom:389.190000px;}
.y1b{bottom:395.490000px;}
.y17c{bottom:409.980000px;}
.y49{bottom:411.870000px;}
.y1a{bottom:413.130000px;}
.y155{bottom:415.200000px;}
.y126{bottom:416.370000px;}
.yf0{bottom:416.460000px;}
.yce{bottom:418.980000px;}
.y17b{bottom:427.530000px;}
.y48{bottom:429.510000px;}
.yad{bottom:430.230000px;}
.ycd{bottom:431.130000px;}
.y88{bottom:431.580000px;}
.y154{bottom:432.750000px;}
.y125{bottom:443.730000px;}
.yf9{bottom:443.820000px;}
.y47{bottom:447.060000px;}
.y19{bottom:448.680000px;}
.y153{bottom:450.390000px;}
.y17a{bottom:454.170000px;}
.yac{bottom:456.780000px;}
.ycc{bottom:458.490000px;}
.y46{bottom:464.700000px;}
.y18{bottom:466.230000px;}
.y87{bottom:467.130000px;}
.y152{bottom:467.940000px;}
.y124{bottom:471.120000px;}
.yf8{bottom:471.210000px;}
.y179{bottom:471.750000px;}
.y45{bottom:482.280000px;}
.y17{bottom:483.900000px;}
.y86{bottom:484.800000px;}
.y151{bottom:485.610000px;}
.yab{bottom:491.730000px;}
.y178{bottom:498.300000px;}
.yf7{bottom:498.480000px;}
.y16{bottom:501.450000px;}
.yaa{bottom:505.770000px;}
.ycb{bottom:507.210000px;}
.y177{bottom:515.940000px;}
.y44{bottom:517.830000px;}
.ya9{bottom:517.920000px;}
.y15{bottom:519.090000px;}
.y85{bottom:520.350000px;}
.y150{bottom:521.160000px;}
.y122{bottom:525.750000px;}
.yf6{bottom:525.840000px;}
.y176{bottom:533.490000px;}
.y43{bottom:535.470000px;}
.y84{bottom:537.990000px;}
.y14f{bottom:538.710000px;}
.yca{bottom:542.850000px;}
.ya8{bottom:545.280000px;}
.y42{bottom:553.020000px;}
.y121{bottom:553.110000px;}
.yf5{bottom:553.200000px;}
.y14{bottom:554.640000px;}
.y83{bottom:555.540000px;}
.y14e{bottom:556.350000px;}
.y175{bottom:560.130000px;}
.yc9{bottom:560.400000px;}
.y13{bottom:572.190000px;}
.y14d{bottom:573.900000px;}
.y174{bottom:577.680000px;}
.yc8{bottom:577.950000px;}
.y120{bottom:580.470000px;}
.yf4{bottom:580.560000px;}
.y82{bottom:582.090000px;}
.y41{bottom:588.660000px;}
.y12{bottom:589.830000px;}
.ya7{bottom:590.190000px;}
.y14c{bottom:591.450000px;}
.y173{bottom:604.230000px;}
.y40{bottom:606.210000px;}
.y11{bottom:607.380000px;}
.y11f{bottom:607.740000px;}
.ye4{bottom:607.830000px;}
.yc7{bottom:613.590000px;}
.y81{bottom:617.010000px;}
.ya6{bottom:617.550000px;}
.y172{bottom:621.870000px;}
.y14b{bottom:627.090000px;}
.y80{bottom:629.160000px;}
.yc6{bottom:631.140000px;}
.y3f{bottom:632.760000px;}
.y11e{bottom:635.100000px;}
.yed{bottom:635.190000px;}
.y10{bottom:643.020000px;}
.y14a{bottom:644.640000px;}
.ya5{bottom:644.910000px;}
.y171{bottom:648.420000px;}
.yc5{bottom:648.780000px;}
.y7f{bottom:656.520000px;}
.yf{bottom:660.570000px;}
.y149{bottom:662.280000px;}
.y11d{bottom:662.460000px;}
.yec{bottom:662.550000px;}
.y6a{bottom:663.000000px;}
.y170{bottom:666.060000px;}
.y3e{bottom:668.670000px;}
.ya4{bottom:672.180000px;}
.yc4{bottom:675.330000px;}
.ye{bottom:678.120000px;}
.y148{bottom:679.830000px;}
.y69{bottom:680.550000px;}
.y7e{bottom:683.790000px;}
.y115{bottom:689.820000px;}
.yeb{bottom:689.910000px;}
.y16f{bottom:692.610000px;}
.y147{bottom:697.380000px;}
.y68{bottom:698.190000px;}
.ya3{bottom:699.540000px;}
.yd{bottom:705.120000px;}
.yc3{bottom:710.160000px;}
.y7c{bottom:711.150000px;}
.y146{bottom:715.020000px;}
.y3d{bottom:717.000000px;}
.y11c{bottom:717.090000px;}
.yea{bottom:717.180000px;}
.yc2{bottom:723.120000px;}
.ya2{bottom:726.900000px;}
.y67{bottom:733.740000px;}
.y3c{bottom:734.550000px;}
.y16e{bottom:736.800000px;}
.y78{bottom:738.510000px;}
.y11b{bottom:744.450000px;}
.ye9{bottom:744.540000px;}
.y145{bottom:750.570000px;}
.yc1{bottom:751.200000px;}
.y66{bottom:751.290000px;}
.yc{bottom:751.830000px;}
.y3b{bottom:752.190000px;}
.ya1{bottom:754.170000px;}
.y16d{bottom:754.350000px;}
.y7a{bottom:768.210000px;}
.y11a{bottom:771.810000px;}
.ye8{bottom:771.900000px;}
.yc0{bottom:779.280000px;}
.y16c{bottom:780.990000px;}
.ya0{bottom:781.530000px;}
.y144{bottom:785.760000px;}
.y65{bottom:786.930000px;}
.yb{bottom:787.380000px;}
.y3a{bottom:787.740000px;}
.y76{bottom:795.570000px;}
.ye0{bottom:799.170000px;}
.y143{bottom:803.310000px;}
.y64{bottom:804.480000px;}
.y39{bottom:805.290000px;}
.ybf{bottom:807.360000px;}
.y16b{bottom:807.540000px;}
.y9f{bottom:808.890000px;}
.y142{bottom:820.950000px;}
.y63{bottom:822.030000px;}
.y38{bottom:822.930000px;}
.ya{bottom:823.200000px;}
.y16a{bottom:825.090000px;}
.y119{bottom:826.440000px;}
.ye3{bottom:826.530000px;}
.ybe{bottom:835.440000px;}
.y9e{bottom:836.250000px;}
.y62{bottom:839.670000px;}
.y75{bottom:844.260000px;}
.y169{bottom:852.000000px;}
.y118{bottom:853.800000px;}
.y141{bottom:856.500000px;}
.y61{bottom:857.220000px;}
.y37{bottom:858.480000px;}
.y9{bottom:859.200000px;}
.y9d{bottom:863.520000px;}
.y140{bottom:874.140000px;}
.ydf{bottom:875.220000px;}
.y36{bottom:876.030000px;}
.y74{bottom:879.810000px;}
.y8{bottom:880.980000px;}
.y10c{bottom:881.160000px;}
.y9c{bottom:890.880000px;}
.ybd{bottom:891.600000px;}
.y13f{bottom:891.690000px;}
.y60{bottom:892.860000px;}
.y35{bottom:893.670000px;}
.y7{bottom:895.200000px;}
.y73{bottom:897.450000px;}
.y168{bottom:900.330000px;}
.y114{bottom:908.430000px;}
.y13e{bottom:909.240000px;}
.yde{bottom:910.860000px;}
.y34{bottom:911.220000px;}
.y72{bottom:915.000000px;}
.y6{bottom:916.980000px;}
.y9b{bottom:918.240000px;}
.ybc{bottom:919.680000px;}
.y13d{bottom:926.880000px;}
.y167{bottom:927.240000px;}
.y5f{bottom:928.410000px;}
.y33{bottom:928.860000px;}
.y71{bottom:932.550000px;}
.y113{bottom:935.790000px;}
.y13c{bottom:944.430000px;}
.y9a{bottom:945.600000px;}
.y5e{bottom:945.960000px;}
.y32{bottom:946.410000px;}
.ybb{bottom:947.850000px;}
.y5{bottom:949.290000px;}
.y70{bottom:959.190000px;}
.y112{bottom:963.150000px;}
.y5d{bottom:963.600000px;}
.y31{bottom:963.960000px;}
.y166{bottom:964.230000px;}
.y13b{bottom:971.340000px;}
.y99{bottom:972.870000px;}
.yba{bottom:975.930000px;}
.y5c{bottom:981.150000px;}
.y30{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y111{bottom:990.510000px;}
.y165{bottom:991.140000px;}
.y6f{bottom:995.100000px;}
.y5b{bottom:998.790000px;}
.y2f{bottom:999.150000px;}
.y98{bottom:1000.230000px;}
.y3{bottom:1012.320000px;}
.ydd{bottom:1016.820000px;}
.y110{bottom:1017.810000px;}
.y13a{bottom:1018.890000px;}
.y5a{bottom:1025.370000px;}
.y97{bottom:1027.620000px;}
.y164{bottom:1028.160000px;}
.y139{bottom:1033.020000px;}
.ydc{bottom:1034.370000px;}
.y2e{bottom:1034.820000px;}
.y6e{bottom:1043.370000px;}
.y10f{bottom:1045.170000px;}
.y163{bottom:1045.800000px;}
.ydb{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.y96{bottom:1054.890000px;}
.y59{bottom:1060.920000px;}
.y162{bottom:1063.350000px;}
.y2c{bottom:1069.920000px;}
.y10b{bottom:1072.530000px;}
.y58{bottom:1078.560000px;}
.y95{bottom:1082.250000px;}
.y2b{bottom:1087.560000px;}
.y161{bottom:1090.260000px;}
.y57{bottom:1096.110000px;}
.y10a{bottom:1099.890000px;}
.y2a{bottom:1105.110000px;}
.y94{bottom:1109.610000px;}
.y56{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y109{bottom:1127.160000px;}
.y160{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h12{height:26.580000px;}
.hf{height:26.640000px;}
.h13{height:26.670000px;}
.he{height:28.980000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h10{height:41.661211px;}
.h11{height:44.190000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h14{height:54.000000px;}
.h9{height:55.779258px;}
.hd{height:56.250000px;}
.h5{height:57.323320px;}
.h1c{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1b{height:81.270000px;}
.h18{height:108.630000px;}
.h1a{height:190.530000px;}
.h19{height:190.560000px;}
.h15{height:190.620000px;}
.h17{height:190.650000px;}
.h16{height:381.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1b{width:27.630000px;}
.w1d{width:52.290000px;}
.w1a{width:58.860000px;}
.wd{width:63.990000px;}
.w13{width:65.610000px;}
.w6{width:67.050000px;}
.w17{width:70.200000px;}
.w18{width:87.030000px;}
.w19{width:87.060000px;}
.w12{width:102.960000px;}
.w11{width:102.990000px;}
.w20{width:121.320000px;}
.wc{width:128.550000px;}
.w1f{width:136.080000px;}
.w16{width:145.710000px;}
.w3{width:145.920000px;}
.wb{width:146.160000px;}
.we{width:170.550000px;}
.w4{width:174.780000px;}
.w5{width:194.970000px;}
.w15{width:195.690000px;}
.w14{width:198.360000px;}
.wa{width:226.830000px;}
.w1e{width:258.210000px;}
.w10{width:261.540000px;}
.w1c{width:415.320000px;}
.w7{width:438.420000px;}
.wf{width:535.350000px;}
.w8{width:585.150000px;}
.w9{width:739.140000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:3.870000px;}
.x28{left:5.400000px;}
.x7{left:7.650000px;}
.x1f{left:10.620000px;}
.x1d{left:12.780000px;}
.x27{left:13.860000px;}
.xc{left:15.300000px;}
.x2f{left:16.380000px;}
.x2b{left:20.520000px;}
.x23{left:22.590000px;}
.x26{left:24.660000px;}
.x1b{left:27.360000px;}
.x22{left:28.800000px;}
.x3e{left:30.960000px;}
.x10{left:32.160000px;}
.x25{left:33.570000px;}
.xf{left:34.680000px;}
.x21{left:37.710000px;}
.x16{left:39.060000px;}
.x18{left:40.410000px;}
.x2e{left:42.660000px;}
.x3a{left:44.730000px;}
.x20{left:46.170000px;}
.xa{left:47.700000px;}
.x2c{left:50.760000px;}
.x2d{left:53.280000px;}
.x2a{left:54.540000px;}
.x29{left:56.700000px;}
.xb{left:57.810000px;}
.x38{left:59.760000px;}
.x32{left:62.010000px;}
.x39{left:63.630000px;}
.x34{left:66.150000px;}
.x1{left:68.040000px;}
.x30{left:70.470000px;}
.x14{left:72.990000px;}
.x24{left:74.250000px;}
.x33{left:75.870000px;}
.x12{left:77.040000px;}
.x31{left:78.570000px;}
.x3d{left:79.920000px;}
.x11{left:81.089987px;}
.x35{left:82.260000px;}
.x3f{left:84.150000px;}
.x37{left:85.890000px;}
.x42{left:90.360000px;}
.x4a{left:94.050000px;}
.x3c{left:98.040000px;}
.x55{left:111.239987px;}
.x4f{left:120.149987px;}
.x6{left:154.080000px;}
.x50{left:173.190000px;}
.x47{left:175.980000px;}
.xd{left:179.460000px;}
.x2{left:192.719987px;}
.xe{left:194.610000px;}
.x41{left:206.010000px;}
.x1c{left:277.770000px;}
.x46{left:284.609987px;}
.x40{left:285.869987px;}
.x4b{left:293.880000px;}
.x3b{left:296.310000px;}
.x5{left:301.259987px;}
.x36{left:302.790000px;}
.x15{left:304.590000px;}
.x13{left:307.290000px;}
.x54{left:346.259987px;}
.x4c{left:364.800000px;}
.x48{left:375.060000px;}
.x43{left:441.300000px;}
.x17{left:451.560000px;}
.x4d{left:452.640000px;}
.x8{left:476.400000px;}
.x51{left:513.240000px;}
.x4e{left:540.510000px;}
.x44{left:545.010000px;}
.x52{left:566.250000px;}
.x49{left:571.560000px;}
.x19{left:580.830000px;}
.x1a{left:645.630000px;}
.x45{left:648.690000px;}
.x9{left:672.180000px;}
.x4{left:689.639987px;}
.x53{left:703.140000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.253867pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls17{letter-spacing:-0.083200pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.030720pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.105067pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.142933pt;}
.ls11{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.155200pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.365333pt;}
.ls5{letter-spacing:8.378240pt;}
.ls1c{letter-spacing:25.043200pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws11{word-spacing:-11.933867pt;}
.wsa{word-spacing:-11.910933pt;}
.ws4{word-spacing:-11.899733pt;}
.wsf{word-spacing:-11.861867pt;}
.ws10{word-spacing:-11.860267pt;}
.ws5{word-spacing:-11.817600pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.502933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._a{margin-left:-2.919254pt;}
._8{margin-left:-1.960640pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.246933pt;}
._9{width:2.735786pt;}
._4{width:3.694507pt;}
._7{width:5.415039pt;}
._6{width:6.306134pt;}
._2{width:7.774901pt;}
._1{width:8.721920pt;}
._b{width:9.699232pt;}
._f{width:10.741440pt;}
._12{width:12.684267pt;}
._11{width:13.573760pt;}
._13{width:14.837333pt;}
._5{width:16.192534pt;}
._e{width:17.154240pt;}
._c{width:18.704000pt;}
._d{width:20.040000pt;}
._14{width:24.422080pt;}
._10{width:26.345920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:6.960000pt;}
.y7d{bottom:7.040000pt;}
.y7b{bottom:8.000000pt;}
.y8f{bottom:14.800000pt;}
.ye2{bottom:19.200000pt;}
.y79{bottom:20.160000pt;}
.y90{bottom:22.640000pt;}
.y138{bottom:24.320000pt;}
.ye1{bottom:31.360000pt;}
.y137{bottom:40.000000pt;}
.y105{bottom:48.640000pt;}
.y136{bottom:55.600000pt;}
.y104{bottom:64.240000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y103{bottom:79.920000pt;}
.y135{bottom:86.266667pt;}
.y132{bottom:90.240000pt;}
.y1{bottom:90.346667pt;}
.y134{bottom:101.866667pt;}
.y12a{bottom:102.826667pt;}
.y102{bottom:102.906667pt;}
.y131{bottom:105.840000pt;}
.y130{bottom:105.866667pt;}
.yfb{bottom:105.920000pt;}
.yb9{bottom:107.786667pt;}
.y6d{bottom:110.026667pt;}
.ye7{bottom:117.520000pt;}
.y133{bottom:117.546667pt;}
.y189{bottom:121.226667pt;}
.yfa{bottom:121.520000pt;}
.yf3{bottom:121.546667pt;}
.y55{bottom:122.586667pt;}
.yb8{bottom:123.386667pt;}
.y25{bottom:126.106667pt;}
.y12f{bottom:127.146667pt;}
.y108{bottom:127.226667pt;}
.yda{bottom:129.466667pt;}
.y93{bottom:130.346667pt;}
.y188{bottom:136.826667pt;}
.y117{bottom:137.120000pt;}
.y10e{bottom:137.146667pt;}
.ye6{bottom:137.200000pt;}
.yf2{bottom:137.226667pt;}
.yb7{bottom:138.986667pt;}
.y6c{bottom:141.626667pt;}
.y24{bottom:141.786667pt;}
.yd9{bottom:145.146667pt;}
.y15f{bottom:145.546667pt;}
.y12e{bottom:151.466667pt;}
.y107{bottom:151.546667pt;}
.y187{bottom:152.506667pt;}
.y116{bottom:152.720000pt;}
.y10d{bottom:152.746667pt;}
.ye5{bottom:152.800000pt;}
.yf1{bottom:152.826667pt;}
.y54{bottom:154.186667pt;}
.y92{bottom:154.586667pt;}
.y23{bottom:157.386667pt;}
.yd8{bottom:160.746667pt;}
.y15e{bottom:161.146667pt;}
.y186{bottom:168.106667pt;}
.y53{bottom:169.866667pt;}
.yb6{bottom:170.026667pt;}
.y6b{bottom:170.266667pt;}
.y106{bottom:175.786667pt;}
.yd7{bottom:176.426667pt;}
.y15d{bottom:176.826667pt;}
.y91{bottom:178.906667pt;}
.yb5{bottom:182.506667pt;}
.y52{bottom:185.466667pt;}
.y22{bottom:188.986667pt;}
.y185{bottom:191.706667pt;}
.y15c{bottom:192.426667pt;}
.yb4{bottom:193.306667pt;}
.y12d{bottom:200.026667pt;}
.yee{bottom:200.106667pt;}
.y8e{bottom:203.226667pt;}
.y21{bottom:204.666667pt;}
.y184{bottom:207.386667pt;}
.yd6{bottom:208.026667pt;}
.y15b{bottom:208.106667pt;}
.y51{bottom:209.066667pt;}
.yb3{bottom:217.626667pt;}
.y20{bottom:220.266667pt;}
.yd5{bottom:223.626667pt;}
.y15a{bottom:223.706667pt;}
.y12c{bottom:224.346667pt;}
.y101{bottom:224.426667pt;}
.y183{bottom:230.986667pt;}
.y1f{bottom:235.946667pt;}
.yd4{bottom:239.306667pt;}
.y50{bottom:240.746667pt;}
.yb2{bottom:241.946667pt;}
.y8d{bottom:243.146667pt;}
.y182{bottom:246.666667pt;}
.y159{bottom:247.626667pt;}
.y12b{bottom:248.666667pt;}
.y100{bottom:248.746667pt;}
.yd3{bottom:254.906667pt;}
.y4f{bottom:256.346667pt;}
.y1e{bottom:259.786667pt;}
.y181{bottom:262.266667pt;}
.yb1{bottom:266.266667pt;}
.y8c{bottom:267.466667pt;}
.yd2{bottom:270.586667pt;}
.y4e{bottom:271.946667pt;}
.y123{bottom:272.906667pt;}
.yff{bottom:272.986667pt;}
.y180{bottom:285.866667pt;}
.y4d{bottom:287.626667pt;}
.yb0{bottom:290.506667pt;}
.y8b{bottom:291.706667pt;}
.y129{bottom:297.226667pt;}
.yfe{bottom:297.306667pt;}
.y17f{bottom:301.546667pt;}
.yd1{bottom:302.186667pt;}
.y1d{bottom:302.986667pt;}
.y4c{bottom:303.226667pt;}
.y158{bottom:306.186667pt;}
.yaf{bottom:314.826667pt;}
.y8a{bottom:316.026667pt;}
.yd0{bottom:317.786667pt;}
.y4b{bottom:318.906667pt;}
.y128{bottom:321.546667pt;}
.yfd{bottom:321.626667pt;}
.y157{bottom:321.786667pt;}
.yef{bottom:322.906667pt;}
.y17e{bottom:325.146667pt;}
.y4a{bottom:334.506667pt;}
.y1c{bottom:335.946667pt;}
.y156{bottom:337.466667pt;}
.yae{bottom:339.146667pt;}
.y89{bottom:340.346667pt;}
.y17d{bottom:340.746667pt;}
.ycf{bottom:341.466667pt;}
.y127{bottom:345.866667pt;}
.yfc{bottom:345.946667pt;}
.y1b{bottom:351.546667pt;}
.y17c{bottom:364.426667pt;}
.y49{bottom:366.106667pt;}
.y1a{bottom:367.226667pt;}
.y155{bottom:369.066667pt;}
.y126{bottom:370.106667pt;}
.yf0{bottom:370.186667pt;}
.yce{bottom:372.426667pt;}
.y17b{bottom:380.026667pt;}
.y48{bottom:381.786667pt;}
.yad{bottom:382.426667pt;}
.ycd{bottom:383.226667pt;}
.y88{bottom:383.626667pt;}
.y154{bottom:384.666667pt;}
.y125{bottom:394.426667pt;}
.yf9{bottom:394.506667pt;}
.y47{bottom:397.386667pt;}
.y19{bottom:398.826667pt;}
.y153{bottom:400.346667pt;}
.y17a{bottom:403.706667pt;}
.yac{bottom:406.026667pt;}
.ycc{bottom:407.546667pt;}
.y46{bottom:413.066667pt;}
.y18{bottom:414.426667pt;}
.y87{bottom:415.226667pt;}
.y152{bottom:415.946667pt;}
.y124{bottom:418.773333pt;}
.yf8{bottom:418.853333pt;}
.y179{bottom:419.333333pt;}
.y45{bottom:428.693333pt;}
.y17{bottom:430.133333pt;}
.y86{bottom:430.933333pt;}
.y151{bottom:431.653333pt;}
.yab{bottom:437.093333pt;}
.y178{bottom:442.933333pt;}
.yf7{bottom:443.093333pt;}
.y16{bottom:445.733333pt;}
.yaa{bottom:449.573333pt;}
.ycb{bottom:450.853333pt;}
.y177{bottom:458.613333pt;}
.y44{bottom:460.293333pt;}
.ya9{bottom:460.373333pt;}
.y15{bottom:461.413333pt;}
.y85{bottom:462.533333pt;}
.y150{bottom:463.253333pt;}
.y122{bottom:467.333333pt;}
.yf6{bottom:467.413333pt;}
.y176{bottom:474.213333pt;}
.y43{bottom:475.973333pt;}
.y84{bottom:478.213333pt;}
.y14f{bottom:478.853333pt;}
.yca{bottom:482.533333pt;}
.ya8{bottom:484.693333pt;}
.y42{bottom:491.573333pt;}
.y121{bottom:491.653333pt;}
.yf5{bottom:491.733333pt;}
.y14{bottom:493.013333pt;}
.y83{bottom:493.813333pt;}
.y14e{bottom:494.533333pt;}
.y175{bottom:497.893333pt;}
.yc9{bottom:498.133333pt;}
.y13{bottom:508.613333pt;}
.y14d{bottom:510.133333pt;}
.y174{bottom:513.493333pt;}
.yc8{bottom:513.733333pt;}
.y120{bottom:515.973333pt;}
.yf4{bottom:516.053333pt;}
.y82{bottom:517.413333pt;}
.y41{bottom:523.253333pt;}
.y12{bottom:524.293333pt;}
.ya7{bottom:524.613333pt;}
.y14c{bottom:525.733333pt;}
.y173{bottom:537.093333pt;}
.y40{bottom:538.853333pt;}
.y11{bottom:539.893333pt;}
.y11f{bottom:540.213333pt;}
.ye4{bottom:540.293333pt;}
.yc7{bottom:545.413333pt;}
.y81{bottom:548.453333pt;}
.ya6{bottom:548.933333pt;}
.y172{bottom:552.773333pt;}
.y14b{bottom:557.413333pt;}
.y80{bottom:559.253333pt;}
.yc6{bottom:561.013333pt;}
.y3f{bottom:562.453333pt;}
.y11e{bottom:564.533333pt;}
.yed{bottom:564.613333pt;}
.y10{bottom:571.573333pt;}
.y14a{bottom:573.013333pt;}
.ya5{bottom:573.253333pt;}
.y171{bottom:576.373333pt;}
.yc5{bottom:576.693333pt;}
.y7f{bottom:583.573333pt;}
.yf{bottom:587.173333pt;}
.y149{bottom:588.693333pt;}
.y11d{bottom:588.853333pt;}
.yec{bottom:588.933333pt;}
.y6a{bottom:589.333333pt;}
.y170{bottom:592.053333pt;}
.y3e{bottom:594.373333pt;}
.ya4{bottom:597.493333pt;}
.yc4{bottom:600.293333pt;}
.ye{bottom:602.773333pt;}
.y148{bottom:604.293333pt;}
.y69{bottom:604.933333pt;}
.y7e{bottom:607.813333pt;}
.y115{bottom:613.173333pt;}
.yeb{bottom:613.253333pt;}
.y16f{bottom:615.653333pt;}
.y147{bottom:619.893333pt;}
.y68{bottom:620.613333pt;}
.ya3{bottom:621.813333pt;}
.yd{bottom:626.773333pt;}
.yc3{bottom:631.253333pt;}
.y7c{bottom:632.133333pt;}
.y146{bottom:635.573333pt;}
.y3d{bottom:637.333333pt;}
.y11c{bottom:637.413333pt;}
.yea{bottom:637.493333pt;}
.yc2{bottom:642.773333pt;}
.ya2{bottom:646.133333pt;}
.y67{bottom:652.213333pt;}
.y3c{bottom:652.933333pt;}
.y16e{bottom:654.933333pt;}
.y78{bottom:656.453333pt;}
.y11b{bottom:661.733333pt;}
.ye9{bottom:661.813333pt;}
.y145{bottom:667.173333pt;}
.yc1{bottom:667.733333pt;}
.y66{bottom:667.813333pt;}
.yc{bottom:668.293333pt;}
.y3b{bottom:668.613333pt;}
.ya1{bottom:670.373333pt;}
.y16d{bottom:670.533333pt;}
.y7a{bottom:682.853333pt;}
.y11a{bottom:686.053333pt;}
.ye8{bottom:686.133333pt;}
.yc0{bottom:692.693333pt;}
.y16c{bottom:694.213333pt;}
.ya0{bottom:694.693333pt;}
.y144{bottom:698.453333pt;}
.y65{bottom:699.493333pt;}
.yb{bottom:699.893333pt;}
.y3a{bottom:700.213333pt;}
.y76{bottom:707.173333pt;}
.ye0{bottom:710.373333pt;}
.y143{bottom:714.053333pt;}
.y64{bottom:715.093333pt;}
.y39{bottom:715.813333pt;}
.ybf{bottom:717.653333pt;}
.y16b{bottom:717.813333pt;}
.y9f{bottom:719.013333pt;}
.y142{bottom:729.733333pt;}
.y63{bottom:730.693333pt;}
.y38{bottom:731.493333pt;}
.ya{bottom:731.733333pt;}
.y16a{bottom:733.413333pt;}
.y119{bottom:734.613333pt;}
.ye3{bottom:734.693333pt;}
.ybe{bottom:742.613333pt;}
.y9e{bottom:743.333333pt;}
.y62{bottom:746.373333pt;}
.y75{bottom:750.453333pt;}
.y169{bottom:757.333333pt;}
.y118{bottom:758.933333pt;}
.y141{bottom:761.333333pt;}
.y61{bottom:761.973333pt;}
.y37{bottom:763.093333pt;}
.y9{bottom:763.733333pt;}
.y9d{bottom:767.573333pt;}
.y140{bottom:777.013333pt;}
.ydf{bottom:777.973333pt;}
.y36{bottom:778.693333pt;}
.y74{bottom:782.053333pt;}
.y8{bottom:783.093333pt;}
.y10c{bottom:783.253333pt;}
.y9c{bottom:791.893333pt;}
.ybd{bottom:792.533333pt;}
.y13f{bottom:792.613333pt;}
.y60{bottom:793.653333pt;}
.y35{bottom:794.373333pt;}
.y7{bottom:795.733333pt;}
.y73{bottom:797.733333pt;}
.y168{bottom:800.293333pt;}
.y114{bottom:807.493333pt;}
.y13e{bottom:808.213333pt;}
.yde{bottom:809.653333pt;}
.y34{bottom:809.973333pt;}
.y72{bottom:813.333333pt;}
.y6{bottom:815.093333pt;}
.y9b{bottom:816.213333pt;}
.ybc{bottom:817.493333pt;}
.y13d{bottom:823.893333pt;}
.y167{bottom:824.213333pt;}
.y5f{bottom:825.253333pt;}
.y33{bottom:825.653333pt;}
.y71{bottom:828.933333pt;}
.y113{bottom:831.813333pt;}
.y13c{bottom:839.493333pt;}
.y9a{bottom:840.533333pt;}
.y5e{bottom:840.853333pt;}
.y32{bottom:841.253333pt;}
.ybb{bottom:842.533333pt;}
.y5{bottom:843.813333pt;}
.y70{bottom:852.613333pt;}
.y112{bottom:856.133333pt;}
.y5d{bottom:856.533333pt;}
.y31{bottom:856.853333pt;}
.y166{bottom:857.093333pt;}
.y13b{bottom:863.413333pt;}
.y99{bottom:864.773333pt;}
.yba{bottom:867.493333pt;}
.y5c{bottom:872.133333pt;}
.y30{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y111{bottom:880.453333pt;}
.y165{bottom:881.013333pt;}
.y6f{bottom:884.533333pt;}
.y5b{bottom:887.813333pt;}
.y2f{bottom:888.133333pt;}
.y98{bottom:889.093333pt;}
.y3{bottom:899.840000pt;}
.ydd{bottom:903.840000pt;}
.y110{bottom:904.720000pt;}
.y13a{bottom:905.680000pt;}
.y5a{bottom:911.440000pt;}
.y97{bottom:913.440000pt;}
.y164{bottom:913.920000pt;}
.y139{bottom:918.240000pt;}
.ydc{bottom:919.440000pt;}
.y2e{bottom:919.840000pt;}
.y6e{bottom:927.440000pt;}
.y10f{bottom:929.040000pt;}
.y163{bottom:929.600000pt;}
.ydb{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.y96{bottom:937.680000pt;}
.y59{bottom:943.040000pt;}
.y162{bottom:945.200000pt;}
.y2c{bottom:951.040000pt;}
.y10b{bottom:953.360000pt;}
.y58{bottom:958.720000pt;}
.y95{bottom:962.000000pt;}
.y2b{bottom:966.720000pt;}
.y161{bottom:969.120000pt;}
.y57{bottom:974.320000pt;}
.y10a{bottom:977.680000pt;}
.y2a{bottom:982.320000pt;}
.y94{bottom:986.320000pt;}
.y56{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y109{bottom:1001.920000pt;}
.y160{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h12{height:23.626667pt;}
.hf{height:23.680000pt;}
.h13{height:23.706667pt;}
.he{height:25.760000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h10{height:37.032187pt;}
.h11{height:39.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h14{height:48.000000pt;}
.h9{height:49.581562pt;}
.hd{height:50.000000pt;}
.h5{height:50.954062pt;}
.h1c{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1b{height:72.240000pt;}
.h18{height:96.560000pt;}
.h1a{height:169.360000pt;}
.h19{height:169.386667pt;}
.h15{height:169.440000pt;}
.h17{height:169.466667pt;}
.h16{height:339.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1b{width:24.560000pt;}
.w1d{width:46.480000pt;}
.w1a{width:52.320000pt;}
.wd{width:56.880000pt;}
.w13{width:58.320000pt;}
.w6{width:59.600000pt;}
.w17{width:62.400000pt;}
.w18{width:77.360000pt;}
.w19{width:77.386667pt;}
.w12{width:91.520000pt;}
.w11{width:91.546667pt;}
.w20{width:107.840000pt;}
.wc{width:114.266667pt;}
.w1f{width:120.960000pt;}
.w16{width:129.520000pt;}
.w3{width:129.706667pt;}
.wb{width:129.920000pt;}
.we{width:151.600000pt;}
.w4{width:155.360000pt;}
.w5{width:173.306667pt;}
.w15{width:173.946667pt;}
.w14{width:176.320000pt;}
.wa{width:201.626667pt;}
.w1e{width:229.520000pt;}
.w10{width:232.480000pt;}
.w1c{width:369.173333pt;}
.w7{width:389.706667pt;}
.wf{width:475.866667pt;}
.w8{width:520.133333pt;}
.w9{width:657.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:3.440000pt;}
.x28{left:4.800000pt;}
.x7{left:6.800000pt;}
.x1f{left:9.440000pt;}
.x1d{left:11.360000pt;}
.x27{left:12.320000pt;}
.xc{left:13.600000pt;}
.x2f{left:14.560000pt;}
.x2b{left:18.240000pt;}
.x23{left:20.080000pt;}
.x26{left:21.920000pt;}
.x1b{left:24.320000pt;}
.x22{left:25.600000pt;}
.x3e{left:27.520000pt;}
.x10{left:28.586667pt;}
.x25{left:29.840000pt;}
.xf{left:30.826667pt;}
.x21{left:33.520000pt;}
.x16{left:34.720000pt;}
.x18{left:35.920000pt;}
.x2e{left:37.920000pt;}
.x3a{left:39.760000pt;}
.x20{left:41.040000pt;}
.xa{left:42.400000pt;}
.x2c{left:45.120000pt;}
.x2d{left:47.360000pt;}
.x2a{left:48.480000pt;}
.x29{left:50.400000pt;}
.xb{left:51.386667pt;}
.x38{left:53.120000pt;}
.x32{left:55.120000pt;}
.x39{left:56.560000pt;}
.x34{left:58.800000pt;}
.x1{left:60.480000pt;}
.x30{left:62.640000pt;}
.x14{left:64.880000pt;}
.x24{left:66.000000pt;}
.x33{left:67.440000pt;}
.x12{left:68.480000pt;}
.x31{left:69.840000pt;}
.x3d{left:71.040000pt;}
.x11{left:72.079988pt;}
.x35{left:73.120000pt;}
.x3f{left:74.800000pt;}
.x37{left:76.346667pt;}
.x42{left:80.320000pt;}
.x4a{left:83.600000pt;}
.x3c{left:87.146667pt;}
.x55{left:98.879988pt;}
.x4f{left:106.799988pt;}
.x6{left:136.960000pt;}
.x50{left:153.946667pt;}
.x47{left:156.426667pt;}
.xd{left:159.520000pt;}
.x2{left:171.306655pt;}
.xe{left:172.986667pt;}
.x41{left:183.120000pt;}
.x1c{left:246.906667pt;}
.x46{left:252.986655pt;}
.x40{left:254.106655pt;}
.x4b{left:261.226667pt;}
.x3b{left:263.386667pt;}
.x5{left:267.786655pt;}
.x36{left:269.146667pt;}
.x15{left:270.746667pt;}
.x13{left:273.146667pt;}
.x54{left:307.786655pt;}
.x4c{left:324.266667pt;}
.x48{left:333.386667pt;}
.x43{left:392.266667pt;}
.x17{left:401.386667pt;}
.x4d{left:402.346667pt;}
.x8{left:423.466667pt;}
.x51{left:456.213333pt;}
.x4e{left:480.453333pt;}
.x44{left:484.453333pt;}
.x52{left:503.333333pt;}
.x49{left:508.053333pt;}
.x19{left:516.293333pt;}
.x1a{left:573.893333pt;}
.x45{left:576.613333pt;}
.x9{left:597.493333pt;}
.x4{left:613.013322pt;}
.x53{left:625.013333pt;}
.x3{left:711.413322pt;}
}




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