
    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_207f5d03fd6c15ca0d55bf0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_303fb1aa2e2d718428520590.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_e506cbb1dde3f435d7941e7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_6c8ccb0bc8f3faf64a16af79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_82717394af98ce99c57400d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_f3752d22104cb6308b75439c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_952b2c05279292caf376875c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_14836e4d7aeb83f99cd83bc1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.975586;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_5e940aebd2ada9e317da4bc7.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v3{vertical-align:-82.800000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls9{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.864000px;}
.ls16{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.618000px;}
.lse{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.567600px;}
.ls30{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.414600px;}
.ls2e{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.152400px;}
.ls1e{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.109200px;}
.ls25{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.025920px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.028080px;}
.ls27{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.109200px;}
.ls39{letter-spacing:0.123600px;}
.ls14{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.322800px;}
.ls2c{letter-spacing:0.336000px;}
.ls1b{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.745920px;}
.ls24{letter-spacing:0.792000px;}
.ls2f{letter-spacing:0.936000px;}
.ls29{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.160000px;}
.ls21{letter-spacing:2.880000px;}
.ls15{letter-spacing:3.600000px;}
.ls10{letter-spacing:4.320000px;}
.ls11{letter-spacing:5.040000px;}
.ls32{letter-spacing:5.760000px;}
.ls2a{letter-spacing:6.480000px;}
.ls26{letter-spacing:7.200000px;}
.ls23{letter-spacing:9.360000px;}
.ls1f{letter-spacing:10.080000px;}
.ls2b{letter-spacing:11.520000px;}
.ls36{letter-spacing:34.841280px;}
.lsf{letter-spacing:38.160000px;}
.ls35{letter-spacing:67.961280px;}
.ls2d{letter-spacing:788.700000px;}
.ls34{letter-spacing:859.836000px;}
.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;}
}
.ws8{word-spacing:-84.060000px;}
.ws1{word-spacing:-19.448640px;}
.ws0{word-spacing:-19.440000px;}
.wsb{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.360000px;}
.wsc{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.568000px;}
.wsf{word-spacing:-16.683600px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.450800px;}
.ws4{word-spacing:-16.407600px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-2.315520px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.373600px;}
._b{width:3.392640px;}
._c{width:5.038560px;}
._a{width:6.770880px;}
._9{width:7.830720px;}
._d{width:8.927040px;}
._e{width:10.070400px;}
._10{width:11.232000px;}
._11{width:12.435840px;}
._14{width:13.608000px;}
._13{width:14.616000px;}
._15{width:15.624000px;}
._1a{width:17.742240px;}
._16{width:19.008000px;}
._12{width:20.736000px;}
._19{width:21.988800px;}
._18{width:23.149440px;}
._8{width:24.301440px;}
._7{width:25.303680px;}
._17{width:26.968320px;}
._1{width:480.335520px;}
._2{width:491.880000px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._1b{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.yf1{bottom:1.800000px;}
.y6a{bottom:4.320000px;}
.y10b{bottom:4.485000px;}
.y10e{bottom:4.486500px;}
.yda{bottom:4.500000px;}
.y116{bottom:5.220000px;}
.yd3{bottom:12.060000px;}
.yd8{bottom:14.760000px;}
.y107{bottom:14.925000px;}
.y10f{bottom:14.926500px;}
.ydd{bottom:14.940000px;}
.y9{bottom:21.240000px;}
.ycf{bottom:22.320000px;}
.y109{bottom:25.185000px;}
.y10d{bottom:25.186500px;}
.yd9{bottom:25.200000px;}
.y111{bottom:25.230000px;}
.ye0{bottom:25.245000px;}
.y115{bottom:25.920000px;}
.ya{bottom:31.140000px;}
.yd1{bottom:32.760000px;}
.ye5{bottom:35.460000px;}
.y106{bottom:35.625000px;}
.ydc{bottom:35.640000px;}
.ye3{bottom:35.820000px;}
.yd6{bottom:36.000000px;}
.y8{bottom:41.940000px;}
.yce{bottom:43.020000px;}
.y108{bottom:45.885000px;}
.ydb{bottom:45.900000px;}
.y114{bottom:46.620000px;}
.yd0{bottom:53.460000px;}
.y105{bottom:56.325000px;}
.ye2{bottom:56.520000px;}
.yd5{bottom:56.700000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.ycd{bottom:63.720000px;}
.y10a{bottom:66.585000px;}
.y113{bottom:67.320000px;}
.yd2{bottom:74.160000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y37{bottom:139.176000px;}
.yab{bottom:145.476000px;}
.y10c{bottom:146.743500px;}
.y68{bottom:147.276000px;}
.y12c{bottom:147.636000px;}
.ya3{bottom:147.816000px;}
.y8c{bottom:149.796000px;}
.y36{bottom:158.250000px;}
.yaa{bottom:161.850000px;}
.ycb{bottom:165.630000px;}
.y8b{bottom:166.170000px;}
.y67{bottom:167.970000px;}
.y12b{bottom:168.330000px;}
.ya2{bottom:168.510000px;}
.y151{bottom:169.770000px;}
.y35{bottom:177.150000px;}
.yca{bottom:186.330000px;}
.y66{bottom:188.670000px;}
.y104{bottom:188.865000px;}
.y12a{bottom:189.030000px;}
.ya1{bottom:189.210000px;}
.y34{bottom:195.870000px;}
.yee{bottom:205.050000px;}
.yc9{bottom:207.030000px;}
.y150{bottom:207.570000px;}
.y65{bottom:209.370000px;}
.y129{bottom:209.730000px;}
.ya0{bottom:209.910000px;}
.y33{bottom:215.130000px;}
.y14f{bottom:226.650000px;}
.yc8{bottom:227.730000px;}
.y64{bottom:230.070000px;}
.y128{bottom:230.430000px;}
.y9f{bottom:230.610000px;}
.y32{bottom:234.210000px;}
.y14e{bottom:245.550000px;}
.yc7{bottom:248.430000px;}
.y63{bottom:250.770000px;}
.y127{bottom:251.130000px;}
.y9e{bottom:251.310000px;}
.y31{bottom:253.110000px;}
.y14d{bottom:264.630000px;}
.yc6{bottom:269.130000px;}
.y62{bottom:271.470000px;}
.y126{bottom:271.830000px;}
.y30{bottom:272.010000px;}
.y103{bottom:276.870000px;}
.y14c{bottom:283.530000px;}
.yc5{bottom:289.830000px;}
.y2f{bottom:291.090000px;}
.y61{bottom:292.170000px;}
.y125{bottom:292.530000px;}
.y9d{bottom:292.710000px;}
.y102{bottom:297.570000px;}
.y14b{bottom:302.610000px;}
.y2e{bottom:309.990000px;}
.yc4{bottom:310.530000px;}
.y60{bottom:312.870000px;}
.y124{bottom:313.230000px;}
.y9c{bottom:313.410000px;}
.y101{bottom:318.270000px;}
.y14a{bottom:321.510000px;}
.y2d{bottom:329.070000px;}
.yc3{bottom:331.230000px;}
.y5f{bottom:333.570000px;}
.y123{bottom:333.930000px;}
.y9b{bottom:334.110000px;}
.y100{bottom:338.970000px;}
.y149{bottom:340.410000px;}
.y2c{bottom:347.970000px;}
.yc2{bottom:351.930000px;}
.y5e{bottom:354.270000px;}
.y122{bottom:354.630000px;}
.y9a{bottom:354.810000px;}
.y148{bottom:359.490000px;}
.yff{bottom:359.670000px;}
.y2b{bottom:366.870000px;}
.yc1{bottom:372.630000px;}
.y5d{bottom:374.970000px;}
.y121{bottom:375.330000px;}
.y99{bottom:375.510000px;}
.y147{bottom:378.390000px;}
.yfe{bottom:380.415000px;}
.y2a{bottom:385.995000px;}
.y120{bottom:391.575000px;}
.yc0{bottom:393.375000px;}
.y5c{bottom:395.715000px;}
.y98{bottom:396.255000px;}
.y146{bottom:397.515000px;}
.yfd{bottom:401.115000px;}
.y29{bottom:404.895000px;}
.ybf{bottom:414.075000px;}
.ya9{bottom:415.155000px;}
.y5b{bottom:416.415000px;}
.y97{bottom:416.955000px;}
.yfc{bottom:421.815000px;}
.y28{bottom:424.335000px;}
.ybe{bottom:434.775000px;}
.y145{bottom:435.315000px;}
.ya8{bottom:435.855000px;}
.y5a{bottom:437.115000px;}
.y96{bottom:437.655000px;}
.yfb{bottom:442.515000px;}
.y27{bottom:445.395000px;}
.y144{bottom:454.395000px;}
.ybd{bottom:455.475000px;}
.ya7{bottom:456.555000px;}
.y59{bottom:457.815000px;}
.y95{bottom:458.355000px;}
.yfa{bottom:463.215000px;}
.y26{bottom:467.715000px;}
.y143{bottom:473.295000px;}
.ybc{bottom:476.175000px;}
.ya6{bottom:477.255000px;}
.y58{bottom:478.515000px;}
.y94{bottom:479.055000px;}
.yf9{bottom:483.915000px;}
.y25{bottom:489.675000px;}
.y142{bottom:492.375000px;}
.ybb{bottom:496.875000px;}
.y8a{bottom:497.955000px;}
.y57{bottom:499.215000px;}
.y93{bottom:499.755000px;}
.yf8{bottom:504.615000px;}
.y141{bottom:511.275000px;}
.y24{bottom:512.535000px;}
.yba{bottom:517.575000px;}
.yed{bottom:518.295000px;}
.y89{bottom:518.655000px;}
.y56{bottom:519.915000px;}
.y92{bottom:520.455000px;}
.yf7{bottom:525.315000px;}
.y140{bottom:530.175000px;}
.y23{bottom:535.035000px;}
.yb9{bottom:538.275000px;}
.ya5{bottom:538.995000px;}
.y88{bottom:539.355000px;}
.y55{bottom:540.615000px;}
.y91{bottom:541.155000px;}
.yf6{bottom:546.015000px;}
.y13f{bottom:549.255000px;}
.y22{bottom:556.995000px;}
.y90{bottom:557.355000px;}
.yb8{bottom:558.975000px;}
.yec{bottom:559.695000px;}
.y87{bottom:560.055000px;}
.y54{bottom:561.315000px;}
.yf5{bottom:565.995000px;}
.y13e{bottom:568.155000px;}
.yb7{bottom:579.675000px;}
.y21{bottom:579.855000px;}
.yeb{bottom:580.395000px;}
.y86{bottom:580.755000px;}
.y53{bottom:582.015000px;}
.yf4{bottom:583.995000px;}
.y13d{bottom:587.235000px;}
.yb6{bottom:600.375000px;}
.yea{bottom:601.095000px;}
.y85{bottom:601.455000px;}
.y20{bottom:602.355000px;}
.y52{bottom:602.715000px;}
.yf3{bottom:604.695000px;}
.y13c{bottom:606.135000px;}
.yb5{bottom:621.075000px;}
.ye9{bottom:621.795000px;}
.y84{bottom:622.155000px;}
.y51{bottom:623.415000px;}
.y1f{bottom:624.135000px;}
.y13b{bottom:625.035000px;}
.yf2{bottom:636.405000px;}
.yb4{bottom:641.805000px;}
.ye8{bottom:642.525000px;}
.y83{bottom:642.885000px;}
.y50{bottom:643.965000px;}
.y13a{bottom:644.145000px;}
.y1e{bottom:647.205000px;}
.yf0{bottom:657.105000px;}
.yb3{bottom:662.505000px;}
.y139{bottom:663.045000px;}
.ye7{bottom:663.225000px;}
.y82{bottom:663.585000px;}
.y4f{bottom:665.205000px;}
.y1d{bottom:669.525000px;}
.y138{bottom:682.125000px;}
.yb2{bottom:683.205000px;}
.ye6{bottom:683.925000px;}
.y81{bottom:684.285000px;}
.y4e{bottom:685.905000px;}
.y1c{bottom:692.025000px;}
.ye1{bottom:700.845000px;}
.y137{bottom:701.025000px;}
.yb1{bottom:703.365000px;}
.y80{bottom:704.985000px;}
.y4d{bottom:706.605000px;}
.y1b{bottom:713.985000px;}
.y136{bottom:719.925000px;}
.yb0{bottom:722.805000px;}
.y7f{bottom:725.685000px;}
.y4c{bottom:727.305000px;}
.y1a{bottom:736.845000px;}
.y135{bottom:739.005000px;}
.yaf{bottom:743.505000px;}
.y7e{bottom:746.385000px;}
.y4b{bottom:748.005000px;}
.y134{bottom:757.905000px;}
.y19{bottom:759.345000px;}
.ye4{bottom:763.665000px;}
.yae{bottom:763.845000px;}
.y7d{bottom:767.085000px;}
.y4a{bottom:768.705000px;}
.y133{bottom:776.985000px;}
.y18{bottom:781.125000px;}
.yad{bottom:783.285000px;}
.y7c{bottom:787.785000px;}
.y49{bottom:789.405000px;}
.y132{bottom:795.885000px;}
.yac{bottom:799.485000px;}
.y17{bottom:804.165000px;}
.yde{bottom:805.785000px;}
.y7b{bottom:808.485000px;}
.y48{bottom:810.105000px;}
.y131{bottom:814.965000px;}
.y11f{bottom:824.685000px;}
.y16{bottom:826.485000px;}
.y7a{bottom:829.185000px;}
.y47{bottom:830.805000px;}
.yef{bottom:831.885000px;}
.y130{bottom:833.865000px;}
.y11e{bottom:845.385000px;}
.y69{bottom:847.005000px;}
.y8f{bottom:848.085000px;}
.y15{bottom:848.445000px;}
.y79{bottom:849.885000px;}
.y46{bottom:851.505000px;}
.y12f{bottom:852.765000px;}
.y11d{bottom:866.085000px;}
.ydf{bottom:868.605000px;}
.y8e{bottom:868.785000px;}
.y78{bottom:870.585000px;}
.y14{bottom:871.125000px;}
.y12e{bottom:871.845000px;}
.y45{bottom:872.205000px;}
.y8d{bottom:885.030000px;}
.y11c{bottom:886.830000px;}
.y77{bottom:891.330000px;}
.y13{bottom:892.050000px;}
.y11b{bottom:907.530000px;}
.yd4{bottom:910.770000px;}
.y76{bottom:912.030000px;}
.y44{bottom:912.930000px;}
.y12{bottom:916.170000px;}
.y11a{bottom:928.230000px;}
.y43{bottom:932.190000px;}
.y75{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.y118{bottom:945.150000px;}
.y42{bottom:951.270000px;}
.y74{bottom:953.430000px;}
.y10{bottom:964.590000px;}
.y41{bottom:970.170000px;}
.yd7{bottom:973.770000px;}
.y73{bottom:974.130000px;}
.y119{bottom:987.270000px;}
.yf{bottom:988.710000px;}
.y40{bottom:989.070000px;}
.y72{bottom:994.470000px;}
.ya4{bottom:994.830000px;}
.y3f{bottom:1008.150000px;}
.ye{bottom:1012.830000px;}
.y71{bottom:1015.530000px;}
.ycc{bottom:1015.890000px;}
.y155{bottom:1020.570000px;}
.y3e{bottom:1027.050000px;}
.y112{bottom:1029.390000px;}
.y70{bottom:1036.230000px;}
.yd{bottom:1036.950000px;}
.y154{bottom:1041.270000px;}
.y3d{bottom:1046.130000px;}
.y6f{bottom:1056.930000px;}
.y153{bottom:1057.470000px;}
.yc{bottom:1060.890000px;}
.y3c{bottom:1065.030000px;}
.y117{bottom:1071.510000px;}
.y6{bottom:1077.090000px;}
.y6e{bottom:1077.630000px;}
.y152{bottom:1078.170000px;}
.y3b{bottom:1083.930000px;}
.y6d{bottom:1098.330000px;}
.y3a{bottom:1103.010000px;}
.y110{bottom:1113.630000px;}
.y6c{bottom:1119.030000px;}
.y39{bottom:1121.910000px;}
.y12d{bottom:1139.400000px;}
.y6b{bottom:1139.760000px;}
.y38{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h27{height:20.685000px;}
.h20{height:20.700000px;}
.h17{height:41.385000px;}
.h23{height:41.392500px;}
.h1d{height:41.400000px;}
.h1a{height:41.422500px;}
.h24{height:41.430000px;}
.h3{height:45.184219px;}
.h21{height:52.971680px;}
.hd{height:56.213437px;}
.h1e{height:58.651172px;}
.h14{height:61.101562px;}
.h18{height:62.085000px;}
.h1b{height:62.100000px;}
.h11{height:62.122500px;}
.he{height:64.546875px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h26{height:68.084282px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.hf{height:72.562500px;}
.h9{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h13{height:80.464922px;}
.h22{height:82.785000px;}
.h25{height:83.505000px;}
.h8{height:84.898125px;}
.h10{height:91.687500px;}
.h15{height:97.725000px;}
.h1c{height:104.220000px;}
.h19{height:104.242500px;}
.h16{height:104.385000px;}
.h1f{height:171.000000px;}
.h12{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.194500px;}
.wf{width:72.574500px;}
.w4{width:82.470000px;}
.w8{width:83.700000px;}
.wc{width:84.765000px;}
.w15{width:95.250000px;}
.w9{width:95.256000px;}
.w6{width:95.389500px;}
.w12{width:97.416000px;}
.w11{width:99.900000px;}
.wa{width:106.005000px;}
.w7{width:106.041000px;}
.w13{width:113.565000px;}
.wb{width:116.481000px;}
.w10{width:121.521000px;}
.w14{width:133.581000px;}
.w3{width:180.735000px;}
.w16{width:337.753500px;}
.we{width:351.420000px;}
.wd{width:387.643500px;}
.w17{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x34{left:9.720000px;}
.x31{left:11.880000px;}
.x41{left:12.945000px;}
.x3c{left:14.040000px;}
.x3f{left:15.840000px;}
.x2d{left:17.089500px;}
.x3a{left:18.345000px;}
.x39{left:19.605000px;}
.x48{left:20.734500px;}
.x38{left:23.025000px;}
.x33{left:24.300000px;}
.x40{left:25.725000px;}
.x50{left:27.900000px;}
.x4f{left:29.160000px;}
.x3d{left:30.225000px;}
.x2c{left:32.389500px;}
.x2e{left:34.009500px;}
.x3e{left:37.260000px;}
.x35{left:40.320000px;}
.x49{left:41.565000px;}
.x4d{left:43.950000px;}
.x2{left:77.041500px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x23{left:87.840000px;}
.x29{left:90.396000px;}
.x43{left:96.876000px;}
.x2b{left:101.566500px;}
.x27{left:111.276000px;}
.x1c{left:127.476000px;}
.xa{left:139.356000px;}
.x1d{left:141.156000px;}
.x53{left:144.390000px;}
.x9{left:151.050000px;}
.x18{left:171.030000px;}
.x5{left:172.650000px;}
.x2a{left:176.790000px;}
.x46{left:189.208500px;}
.x11{left:191.730000px;}
.x2f{left:197.325000px;}
.x28{left:205.410000px;}
.x15{left:207.390000px;}
.xd{left:210.810000px;}
.x54{left:218.055000px;}
.x47{left:220.170000px;}
.x13{left:230.970000px;}
.x4a{left:273.135000px;}
.xb{left:275.835000px;}
.x1b{left:293.835000px;}
.x30{left:303.915000px;}
.xe{left:360.615000px;}
.x24{left:366.015000px;}
.x1a{left:374.115000px;}
.x32{left:387.975000px;}
.x12{left:397.695000px;}
.x14{left:403.095000px;}
.x44{left:404.923500px;}
.x19{left:410.835000px;}
.x52{left:414.795000px;}
.x1f{left:441.975000px;}
.x21{left:446.505000px;}
.x16{left:454.245000px;}
.xf{left:460.185000px;}
.x45{left:464.700000px;}
.xc{left:467.745000px;}
.x4b{left:471.900000px;}
.x36{left:483.600000px;}
.x4{left:552.900000px;}
.x4c{left:586.200000px;}
.x37{left:589.980000px;}
.x42{left:702.510000px;}
.x3b{left:706.830000px;}
.x26{left:713.310000px;}
.x4e{left:720.510000px;}
.x25{left:725.550000px;}
.x10{left:728.790000px;}
.x17{left:731.670000px;}
.x6{left:733.650000px;}
.x51{left:736.350000px;}
.x20{left:783.870000px;}
.x22{left:785.130000px;}
.x8{left:808.020000px;}
.x1e{left:809.640000px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls9{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.549333pt;}
.lse{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.504533pt;}
.ls30{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.368533pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.135467pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.024960pt;}
.ls27{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.097067pt;}
.ls39{letter-spacing:0.109867pt;}
.ls14{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.286933pt;}
.ls2c{letter-spacing:0.298667pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.663040pt;}
.ls24{letter-spacing:0.704000pt;}
.ls2f{letter-spacing:0.832000pt;}
.ls29{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls21{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls10{letter-spacing:3.840000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls32{letter-spacing:5.120000pt;}
.ls2a{letter-spacing:5.760000pt;}
.ls26{letter-spacing:6.400000pt;}
.ls23{letter-spacing:8.320000pt;}
.ls1f{letter-spacing:8.960000pt;}
.ls2b{letter-spacing:10.240000pt;}
.ls36{letter-spacing:30.970027pt;}
.lsf{letter-spacing:33.920000pt;}
.ls35{letter-spacing:60.410027pt;}
.ls2d{letter-spacing:701.066667pt;}
.ls34{letter-spacing:764.298667pt;}
.ws8{word-spacing:-74.720000pt;}
.ws1{word-spacing:-17.287680pt;}
.ws0{word-spacing:-17.280000pt;}
.wsb{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.320000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.616000pt;}
.wsf{word-spacing:-14.829867pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.622933pt;}
.ws4{word-spacing:-14.584533pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-2.058240pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.109867pt;}
._b{width:3.015680pt;}
._c{width:4.478720pt;}
._a{width:6.018560pt;}
._9{width:6.960640pt;}
._d{width:7.935147pt;}
._e{width:8.951467pt;}
._10{width:9.984000pt;}
._11{width:11.054080pt;}
._14{width:12.096000pt;}
._13{width:12.992000pt;}
._15{width:13.888000pt;}
._1a{width:15.770880pt;}
._16{width:16.896000pt;}
._12{width:18.432000pt;}
._19{width:19.545600pt;}
._18{width:20.577280pt;}
._8{width:21.601280pt;}
._7{width:22.492160pt;}
._17{width:23.971840pt;}
._1{width:426.964907pt;}
._2{width:437.226667pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._1b{width:752.266667pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.yf1{bottom:1.600000pt;}
.y6a{bottom:3.840000pt;}
.y10b{bottom:3.986667pt;}
.y10e{bottom:3.988000pt;}
.yda{bottom:4.000000pt;}
.y116{bottom:4.640000pt;}
.yd3{bottom:10.720000pt;}
.yd8{bottom:13.120000pt;}
.y107{bottom:13.266667pt;}
.y10f{bottom:13.268000pt;}
.ydd{bottom:13.280000pt;}
.y9{bottom:18.880000pt;}
.ycf{bottom:19.840000pt;}
.y109{bottom:22.386667pt;}
.y10d{bottom:22.388000pt;}
.yd9{bottom:22.400000pt;}
.y111{bottom:22.426667pt;}
.ye0{bottom:22.440000pt;}
.y115{bottom:23.040000pt;}
.ya{bottom:27.680000pt;}
.yd1{bottom:29.120000pt;}
.ye5{bottom:31.520000pt;}
.y106{bottom:31.666667pt;}
.ydc{bottom:31.680000pt;}
.ye3{bottom:31.840000pt;}
.yd6{bottom:32.000000pt;}
.y8{bottom:37.280000pt;}
.yce{bottom:38.240000pt;}
.y108{bottom:40.786667pt;}
.ydb{bottom:40.800000pt;}
.y114{bottom:41.440000pt;}
.yd0{bottom:47.520000pt;}
.y105{bottom:50.066667pt;}
.ye2{bottom:50.240000pt;}
.yd5{bottom:50.400000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.ycd{bottom:56.640000pt;}
.y10a{bottom:59.186667pt;}
.y113{bottom:59.840000pt;}
.yd2{bottom:65.920000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y37{bottom:123.712000pt;}
.yab{bottom:129.312000pt;}
.y10c{bottom:130.438667pt;}
.y68{bottom:130.912000pt;}
.y12c{bottom:131.232000pt;}
.ya3{bottom:131.392000pt;}
.y8c{bottom:133.152000pt;}
.y36{bottom:140.666667pt;}
.yaa{bottom:143.866667pt;}
.ycb{bottom:147.226667pt;}
.y8b{bottom:147.706667pt;}
.y67{bottom:149.306667pt;}
.y12b{bottom:149.626667pt;}
.ya2{bottom:149.786667pt;}
.y151{bottom:150.906667pt;}
.y35{bottom:157.466667pt;}
.yca{bottom:165.626667pt;}
.y66{bottom:167.706667pt;}
.y104{bottom:167.880000pt;}
.y12a{bottom:168.026667pt;}
.ya1{bottom:168.186667pt;}
.y34{bottom:174.106667pt;}
.yee{bottom:182.266667pt;}
.yc9{bottom:184.026667pt;}
.y150{bottom:184.506667pt;}
.y65{bottom:186.106667pt;}
.y129{bottom:186.426667pt;}
.ya0{bottom:186.586667pt;}
.y33{bottom:191.226667pt;}
.y14f{bottom:201.466667pt;}
.yc8{bottom:202.426667pt;}
.y64{bottom:204.506667pt;}
.y128{bottom:204.826667pt;}
.y9f{bottom:204.986667pt;}
.y32{bottom:208.186667pt;}
.y14e{bottom:218.266667pt;}
.yc7{bottom:220.826667pt;}
.y63{bottom:222.906667pt;}
.y127{bottom:223.226667pt;}
.y9e{bottom:223.386667pt;}
.y31{bottom:224.986667pt;}
.y14d{bottom:235.226667pt;}
.yc6{bottom:239.226667pt;}
.y62{bottom:241.306667pt;}
.y126{bottom:241.626667pt;}
.y30{bottom:241.786667pt;}
.y103{bottom:246.106667pt;}
.y14c{bottom:252.026667pt;}
.yc5{bottom:257.626667pt;}
.y2f{bottom:258.746667pt;}
.y61{bottom:259.706667pt;}
.y125{bottom:260.026667pt;}
.y9d{bottom:260.186667pt;}
.y102{bottom:264.506667pt;}
.y14b{bottom:268.986667pt;}
.y2e{bottom:275.546667pt;}
.yc4{bottom:276.026667pt;}
.y60{bottom:278.106667pt;}
.y124{bottom:278.426667pt;}
.y9c{bottom:278.586667pt;}
.y101{bottom:282.906667pt;}
.y14a{bottom:285.786667pt;}
.y2d{bottom:292.506667pt;}
.yc3{bottom:294.426667pt;}
.y5f{bottom:296.506667pt;}
.y123{bottom:296.826667pt;}
.y9b{bottom:296.986667pt;}
.y100{bottom:301.306667pt;}
.y149{bottom:302.586667pt;}
.y2c{bottom:309.306667pt;}
.yc2{bottom:312.826667pt;}
.y5e{bottom:314.906667pt;}
.y122{bottom:315.226667pt;}
.y9a{bottom:315.386667pt;}
.y148{bottom:319.546667pt;}
.yff{bottom:319.706667pt;}
.y2b{bottom:326.106667pt;}
.yc1{bottom:331.226667pt;}
.y5d{bottom:333.306667pt;}
.y121{bottom:333.626667pt;}
.y99{bottom:333.786667pt;}
.y147{bottom:336.346667pt;}
.yfe{bottom:338.146667pt;}
.y2a{bottom:343.106667pt;}
.y120{bottom:348.066667pt;}
.yc0{bottom:349.666667pt;}
.y5c{bottom:351.746667pt;}
.y98{bottom:352.226667pt;}
.y146{bottom:353.346667pt;}
.yfd{bottom:356.546667pt;}
.y29{bottom:359.906667pt;}
.ybf{bottom:368.066667pt;}
.ya9{bottom:369.026667pt;}
.y5b{bottom:370.146667pt;}
.y97{bottom:370.626667pt;}
.yfc{bottom:374.946667pt;}
.y28{bottom:377.186667pt;}
.ybe{bottom:386.466667pt;}
.y145{bottom:386.946667pt;}
.ya8{bottom:387.426667pt;}
.y5a{bottom:388.546667pt;}
.y96{bottom:389.026667pt;}
.yfb{bottom:393.346667pt;}
.y27{bottom:395.906667pt;}
.y144{bottom:403.906667pt;}
.ybd{bottom:404.866667pt;}
.ya7{bottom:405.826667pt;}
.y59{bottom:406.946667pt;}
.y95{bottom:407.426667pt;}
.yfa{bottom:411.746667pt;}
.y26{bottom:415.746667pt;}
.y143{bottom:420.706667pt;}
.ybc{bottom:423.266667pt;}
.ya6{bottom:424.226667pt;}
.y58{bottom:425.346667pt;}
.y94{bottom:425.826667pt;}
.yf9{bottom:430.146667pt;}
.y25{bottom:435.266667pt;}
.y142{bottom:437.666667pt;}
.ybb{bottom:441.666667pt;}
.y8a{bottom:442.626667pt;}
.y57{bottom:443.746667pt;}
.y93{bottom:444.226667pt;}
.yf8{bottom:448.546667pt;}
.y141{bottom:454.466667pt;}
.y24{bottom:455.586667pt;}
.yba{bottom:460.066667pt;}
.yed{bottom:460.706667pt;}
.y89{bottom:461.026667pt;}
.y56{bottom:462.146667pt;}
.y92{bottom:462.626667pt;}
.yf7{bottom:466.946667pt;}
.y140{bottom:471.266667pt;}
.y23{bottom:475.586667pt;}
.yb9{bottom:478.466667pt;}
.ya5{bottom:479.106667pt;}
.y88{bottom:479.426667pt;}
.y55{bottom:480.546667pt;}
.y91{bottom:481.026667pt;}
.yf6{bottom:485.346667pt;}
.y13f{bottom:488.226667pt;}
.y22{bottom:495.106667pt;}
.y90{bottom:495.426667pt;}
.yb8{bottom:496.866667pt;}
.yec{bottom:497.506667pt;}
.y87{bottom:497.826667pt;}
.y54{bottom:498.946667pt;}
.yf5{bottom:503.106667pt;}
.y13e{bottom:505.026667pt;}
.yb7{bottom:515.266667pt;}
.y21{bottom:515.426667pt;}
.yeb{bottom:515.906667pt;}
.y86{bottom:516.226667pt;}
.y53{bottom:517.346667pt;}
.yf4{bottom:519.106667pt;}
.y13d{bottom:521.986667pt;}
.yb6{bottom:533.666667pt;}
.yea{bottom:534.306667pt;}
.y85{bottom:534.626667pt;}
.y20{bottom:535.426667pt;}
.y52{bottom:535.746667pt;}
.yf3{bottom:537.506667pt;}
.y13c{bottom:538.786667pt;}
.yb5{bottom:552.066667pt;}
.ye9{bottom:552.706667pt;}
.y84{bottom:553.026667pt;}
.y51{bottom:554.146667pt;}
.y1f{bottom:554.786667pt;}
.y13b{bottom:555.586667pt;}
.yf2{bottom:565.693333pt;}
.yb4{bottom:570.493333pt;}
.ye8{bottom:571.133333pt;}
.y83{bottom:571.453333pt;}
.y50{bottom:572.413333pt;}
.y13a{bottom:572.573333pt;}
.y1e{bottom:575.293333pt;}
.yf0{bottom:584.093333pt;}
.yb3{bottom:588.893333pt;}
.y139{bottom:589.373333pt;}
.ye7{bottom:589.533333pt;}
.y82{bottom:589.853333pt;}
.y4f{bottom:591.293333pt;}
.y1d{bottom:595.133333pt;}
.y138{bottom:606.333333pt;}
.yb2{bottom:607.293333pt;}
.ye6{bottom:607.933333pt;}
.y81{bottom:608.253333pt;}
.y4e{bottom:609.693333pt;}
.y1c{bottom:615.133333pt;}
.ye1{bottom:622.973333pt;}
.y137{bottom:623.133333pt;}
.yb1{bottom:625.213333pt;}
.y80{bottom:626.653333pt;}
.y4d{bottom:628.093333pt;}
.y1b{bottom:634.653333pt;}
.y136{bottom:639.933333pt;}
.yb0{bottom:642.493333pt;}
.y7f{bottom:645.053333pt;}
.y4c{bottom:646.493333pt;}
.y1a{bottom:654.973333pt;}
.y135{bottom:656.893333pt;}
.yaf{bottom:660.893333pt;}
.y7e{bottom:663.453333pt;}
.y4b{bottom:664.893333pt;}
.y134{bottom:673.693333pt;}
.y19{bottom:674.973333pt;}
.ye4{bottom:678.813333pt;}
.yae{bottom:678.973333pt;}
.y7d{bottom:681.853333pt;}
.y4a{bottom:683.293333pt;}
.y133{bottom:690.653333pt;}
.y18{bottom:694.333333pt;}
.yad{bottom:696.253333pt;}
.y7c{bottom:700.253333pt;}
.y49{bottom:701.693333pt;}
.y132{bottom:707.453333pt;}
.yac{bottom:710.653333pt;}
.y17{bottom:714.813333pt;}
.yde{bottom:716.253333pt;}
.y7b{bottom:718.653333pt;}
.y48{bottom:720.093333pt;}
.y131{bottom:724.413333pt;}
.y11f{bottom:733.053333pt;}
.y16{bottom:734.653333pt;}
.y7a{bottom:737.053333pt;}
.y47{bottom:738.493333pt;}
.yef{bottom:739.453333pt;}
.y130{bottom:741.213333pt;}
.y11e{bottom:751.453333pt;}
.y69{bottom:752.893333pt;}
.y8f{bottom:753.853333pt;}
.y15{bottom:754.173333pt;}
.y79{bottom:755.453333pt;}
.y46{bottom:756.893333pt;}
.y12f{bottom:758.013333pt;}
.y11d{bottom:769.853333pt;}
.ydf{bottom:772.093333pt;}
.y8e{bottom:772.253333pt;}
.y78{bottom:773.853333pt;}
.y14{bottom:774.333333pt;}
.y12e{bottom:774.973333pt;}
.y45{bottom:775.293333pt;}
.y8d{bottom:786.693333pt;}
.y11c{bottom:788.293333pt;}
.y77{bottom:792.293333pt;}
.y13{bottom:792.933333pt;}
.y11b{bottom:806.693333pt;}
.yd4{bottom:809.573333pt;}
.y76{bottom:810.693333pt;}
.y44{bottom:811.493333pt;}
.y12{bottom:814.373333pt;}
.y11a{bottom:825.093333pt;}
.y43{bottom:828.613333pt;}
.y75{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.y118{bottom:840.133333pt;}
.y42{bottom:845.573333pt;}
.y74{bottom:847.493333pt;}
.y10{bottom:857.413333pt;}
.y41{bottom:862.373333pt;}
.yd7{bottom:865.573333pt;}
.y73{bottom:865.893333pt;}
.y119{bottom:877.573333pt;}
.yf{bottom:878.853333pt;}
.y40{bottom:879.173333pt;}
.y72{bottom:883.973333pt;}
.ya4{bottom:884.293333pt;}
.y3f{bottom:896.133333pt;}
.ye{bottom:900.293333pt;}
.y71{bottom:902.693333pt;}
.ycc{bottom:903.013333pt;}
.y155{bottom:907.173333pt;}
.y3e{bottom:912.933333pt;}
.y112{bottom:915.013333pt;}
.y70{bottom:921.093333pt;}
.yd{bottom:921.733333pt;}
.y154{bottom:925.573333pt;}
.y3d{bottom:929.893333pt;}
.y6f{bottom:939.493333pt;}
.y153{bottom:939.973333pt;}
.yc{bottom:943.013333pt;}
.y3c{bottom:946.693333pt;}
.y117{bottom:952.453333pt;}
.y6{bottom:957.413333pt;}
.y6e{bottom:957.893333pt;}
.y152{bottom:958.373333pt;}
.y3b{bottom:963.493333pt;}
.y6d{bottom:976.293333pt;}
.y3a{bottom:980.453333pt;}
.y110{bottom:989.893333pt;}
.y6c{bottom:994.693333pt;}
.y39{bottom:997.253333pt;}
.y12d{bottom:1012.800000pt;}
.y6b{bottom:1013.120000pt;}
.y38{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h27{height:18.386667pt;}
.h20{height:18.400000pt;}
.h17{height:36.786667pt;}
.h23{height:36.793333pt;}
.h1d{height:36.800000pt;}
.h1a{height:36.820000pt;}
.h24{height:36.826667pt;}
.h3{height:40.163750pt;}
.h21{height:47.085938pt;}
.hd{height:49.967500pt;}
.h1e{height:52.134375pt;}
.h14{height:54.312500pt;}
.h18{height:55.186667pt;}
.h1b{height:55.200000pt;}
.h11{height:55.220000pt;}
.he{height:57.375000pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h26{height:60.519362pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.hf{height:64.500000pt;}
.h9{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h13{height:71.524375pt;}
.h22{height:73.586667pt;}
.h25{height:74.226667pt;}
.h8{height:75.465000pt;}
.h10{height:81.500000pt;}
.h15{height:86.866667pt;}
.h1c{height:92.640000pt;}
.h19{height:92.660000pt;}
.h16{height:92.786667pt;}
.h1f{height:152.000000pt;}
.h12{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:49.950667pt;}
.wf{width:64.510667pt;}
.w4{width:73.306667pt;}
.w8{width:74.400000pt;}
.wc{width:75.346667pt;}
.w15{width:84.666667pt;}
.w9{width:84.672000pt;}
.w6{width:84.790667pt;}
.w12{width:86.592000pt;}
.w11{width:88.800000pt;}
.wa{width:94.226667pt;}
.w7{width:94.258667pt;}
.w13{width:100.946667pt;}
.wb{width:103.538667pt;}
.w10{width:108.018667pt;}
.w14{width:118.738667pt;}
.w3{width:160.653333pt;}
.w16{width:300.225333pt;}
.we{width:312.373333pt;}
.wd{width:344.572000pt;}
.w17{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x34{left:8.640000pt;}
.x31{left:10.560000pt;}
.x41{left:11.506667pt;}
.x3c{left:12.480000pt;}
.x3f{left:14.080000pt;}
.x2d{left:15.190667pt;}
.x3a{left:16.306667pt;}
.x39{left:17.426667pt;}
.x48{left:18.430667pt;}
.x38{left:20.466667pt;}
.x33{left:21.600000pt;}
.x40{left:22.866667pt;}
.x50{left:24.800000pt;}
.x4f{left:25.920000pt;}
.x3d{left:26.866667pt;}
.x2c{left:28.790667pt;}
.x2e{left:30.230667pt;}
.x3e{left:33.120000pt;}
.x35{left:35.840000pt;}
.x49{left:36.946667pt;}
.x4d{left:39.066667pt;}
.x2{left:68.481333pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x23{left:78.080000pt;}
.x29{left:80.352000pt;}
.x43{left:86.112000pt;}
.x2b{left:90.281333pt;}
.x27{left:98.912000pt;}
.x1c{left:113.312000pt;}
.xa{left:123.872000pt;}
.x1d{left:125.472000pt;}
.x53{left:128.346667pt;}
.x9{left:134.266667pt;}
.x18{left:152.026667pt;}
.x5{left:153.466667pt;}
.x2a{left:157.146667pt;}
.x46{left:168.185333pt;}
.x11{left:170.426667pt;}
.x2f{left:175.400000pt;}
.x28{left:182.586667pt;}
.x15{left:184.346667pt;}
.xd{left:187.386667pt;}
.x54{left:193.826667pt;}
.x47{left:195.706667pt;}
.x13{left:205.306667pt;}
.x4a{left:242.786667pt;}
.xb{left:245.186667pt;}
.x1b{left:261.186667pt;}
.x30{left:270.146667pt;}
.xe{left:320.546667pt;}
.x24{left:325.346667pt;}
.x1a{left:332.546667pt;}
.x32{left:344.866667pt;}
.x12{left:353.506667pt;}
.x14{left:358.306667pt;}
.x44{left:359.932000pt;}
.x19{left:365.186667pt;}
.x52{left:368.706667pt;}
.x1f{left:392.866667pt;}
.x21{left:396.893333pt;}
.x16{left:403.773333pt;}
.xf{left:409.053333pt;}
.x45{left:413.066667pt;}
.xc{left:415.773333pt;}
.x4b{left:419.466667pt;}
.x36{left:429.866667pt;}
.x4{left:491.466667pt;}
.x4c{left:521.066667pt;}
.x37{left:524.426667pt;}
.x42{left:624.453333pt;}
.x3b{left:628.293333pt;}
.x26{left:634.053333pt;}
.x4e{left:640.453333pt;}
.x25{left:644.933333pt;}
.x10{left:647.813333pt;}
.x17{left:650.373333pt;}
.x6{left:652.133333pt;}
.x51{left:654.533333pt;}
.x20{left:696.773333pt;}
.x22{left:697.893333pt;}
.x8{left:718.240000pt;}
.x1e{left:719.680000pt;}
}




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