
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ede4fe4620d288814511292.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bcd61666c99891cc60b92533.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d4fe3a095a9e190cb645ef63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2edcb5adaa2f0d95b312da8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8829663f733b9c4a38c1bdd7.woff2')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_1d9e30690910d353d5f0b626.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5033de68b5d2a2b31826ff3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a5b8d1efe0695741fd0eac4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.399000px;}
.ls18{letter-spacing:-0.266400px;}
.ls11{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls9{letter-spacing:-0.039000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.098400px;}
.ls1b{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1c{letter-spacing:47.726640px;}
.ls14{letter-spacing:55.406640px;}
.lsf{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.342800px;}
.wse{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws3{word-spacing:-13.187400px;}
.wsb{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.827400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsc{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-3.607200px;}
._a{margin-left:-2.284800px;}
._0{margin-left:-1.110000px;}
._1{width:1.245000px;}
._3{width:3.186600px;}
._4{width:4.234797px;}
._5{width:6.132000px;}
._c{width:7.723320px;}
._9{width:8.777400px;}
._7{width:10.160400px;}
._6{width:11.783400px;}
._d{width:14.296080px;}
._2{width:15.691200px;}
._e{width:17.675280px;}
._8{width:18.937800px;}
._10{width:20.561040px;}
._f{width:22.424760px;}
._15{width:31.105800px;}
._16{width:32.743080px;}
._13{width:46.051920px;}
._1b{width:55.359480px;}
._1c{width:56.755800px;}
._19{width:57.799080px;}
._1a{width:59.338560px;}
._17{width:63.510480px;}
._18{width:64.565400px;}
._11{width:74.729160px;}
._12{width:75.811320px;}
._14{width:119.245800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yae{bottom:118.740000px;}
.y13d{bottom:123.060000px;}
.y88{bottom:123.510000px;}
.y122{bottom:125.130000px;}
.y27{bottom:126.300000px;}
.yd8{bottom:126.480000px;}
.y161{bottom:128.460000px;}
.y5a{bottom:129.270000px;}
.y100{bottom:135.930000px;}
.y13c{bottom:140.610000px;}
.y87{bottom:141.060000px;}
.y121{bottom:142.770000px;}
.y26{bottom:143.850000px;}
.yd7{bottom:144.120000px;}
.yad{bottom:146.100000px;}
.y59{bottom:146.820000px;}
.yff{bottom:153.480000px;}
.y189{bottom:156.090000px;}
.y13b{bottom:158.250000px;}
.y86{bottom:158.610000px;}
.y120{bottom:160.320000px;}
.y25{bottom:161.490000px;}
.y160{bottom:163.650000px;}
.yd6{bottom:170.670000px;}
.yfe{bottom:171.030000px;}
.y188{bottom:173.730000px;}
.y13a{bottom:175.800000px;}
.y85{bottom:176.250000px;}
.y11f{bottom:177.960000px;}
.yac{bottom:178.770000px;}
.y24{bottom:179.040000px;}
.y15f{bottom:181.200000px;}
.y58{bottom:183.270000px;}
.yfd{bottom:188.670000px;}
.y84{bottom:193.800000px;}
.y11e{bottom:195.510000px;}
.yab{bottom:196.320000px;}
.y15e{bottom:198.840000px;}
.y187{bottom:200.280000px;}
.y57{bottom:200.910000px;}
.y139{bottom:202.440000px;}
.yd5{bottom:203.250000px;}
.y83{bottom:211.440000px;}
.y11d{bottom:213.060000px;}
.yaa{bottom:213.960000px;}
.y23{bottom:214.590000px;}
.yfc{bottom:215.220000px;}
.y186{bottom:217.830000px;}
.y56{bottom:218.460000px;}
.ya9{bottom:231.510000px;}
.y22{bottom:232.230000px;}
.y15d{bottom:234.390000px;}
.y185{bottom:235.470000px;}
.y55{bottom:236.100000px;}
.y138{bottom:237.990000px;}
.yd4{bottom:238.890000px;}
.y11c{bottom:239.970000px;}
.y82{bottom:246.990000px;}
.y21{bottom:249.780000px;}
.ya8{bottom:249.960000px;}
.yfb{bottom:250.860000px;}
.y15c{bottom:251.940000px;}
.y54{bottom:253.650000px;}
.y137{bottom:255.540000px;}
.yd3{bottom:256.440000px;}
.y184{bottom:262.020000px;}
.y81{bottom:264.540000px;}
.y20{bottom:267.420000px;}
.ya7{bottom:267.510000px;}
.yfa{bottom:268.410000px;}
.y15b{bottom:269.580000px;}
.yd2{bottom:273.990000px;}
.y183{bottom:279.660000px;}
.y53{bottom:280.200000px;}
.y80{bottom:282.180000px;}
.y1f{bottom:284.970000px;}
.ya6{bottom:285.060000px;}
.yf9{bottom:285.960000px;}
.y15a{bottom:287.130000px;}
.y11b{bottom:288.300000px;}
.yd1{bottom:291.630000px;}
.y182{bottom:297.210000px;}
.y7f{bottom:299.730000px;}
.y1e{bottom:302.520000px;}
.ya5{bottom:302.610000px;}
.yf8{bottom:303.600000px;}
.y159{bottom:304.770000px;}
.y11a{bottom:305.850000px;}
.y52{bottom:316.110000px;}
.y136{bottom:317.730000px;}
.yd0{bottom:318.540000px;}
.y1d{bottom:320.160000px;}
.y119{bottom:323.400000px;}
.y181{bottom:323.760000px;}
.y7e{bottom:326.370000px;}
.ya4{bottom:330.060000px;}
.y158{bottom:331.680000px;}
.y135{bottom:335.370000px;}
.y1c{bottom:337.710000px;}
.yf7{bottom:339.150000px;}
.y118{bottom:341.040000px;}
.y180{bottom:341.400000px;}
.yf6{bottom:356.790000px;}
.y117{bottom:358.590000px;}
.y17f{bottom:358.950000px;}
.y7d{bottom:361.920000px;}
.y51{bottom:364.440000px;}
.y1b{bottom:364.620000px;}
.ya3{bottom:365.700000px;}
.ycf{bottom:366.780000px;}
.y134{bottom:370.920000px;}
.yf5{bottom:374.340000px;}
.y7c{bottom:379.470000px;}
.y157{bottom:379.920000px;}
.y50{bottom:381.990000px;}
.ya2{bottom:383.250000px;}
.yce{bottom:384.330000px;}
.y116{bottom:385.230000px;}
.y17e{bottom:385.590000px;}
.y133{bottom:388.470000px;}
.yf4{bottom:391.890000px;}
.y7b{bottom:397.110000px;}
.y156{bottom:397.470000px;}
.y4f{bottom:399.540000px;}
.ycd{bottom:401.970000px;}
.y17d{bottom:403.140000px;}
.y132{bottom:406.110000px;}
.yf3{bottom:409.530000px;}
.ya1{bottom:409.800000px;}
.y1a{bottom:412.950000px;}
.y7a{bottom:414.660000px;}
.y155{bottom:415.110000px;}
.y4e{bottom:417.180000px;}
.ycc{bottom:419.520000px;}
.y115{bottom:420.780000px;}
.y131{bottom:423.660000px;}
.y17c{bottom:429.690000px;}
.y19{bottom:430.860000px;}
.y79{bottom:432.300000px;}
.y154{bottom:432.660000px;}
.yf2{bottom:436.080000px;}
.ycb{bottom:437.160000px;}
.y114{bottom:438.330000px;}
.ya0{bottom:445.440000px;}
.y17b{bottom:447.330000px;}
.y78{bottom:449.850000px;}
.y130{bottom:450.300000px;}
.y4d{bottom:452.730000px;}
.y113{bottom:456.780000px;}
.y9f{bottom:462.990000px;}
.yca{bottom:463.710000px;}
.y77{bottom:467.400000px;}
.y18{bottom:467.850000px;}
.y153{bottom:468.300000px;}
.yf1{bottom:468.660000px;}
.y4c{bottom:470.400000px;}
.y17a{bottom:473.910000px;}
.y112{bottom:474.360000px;}
.y9e{bottom:480.660000px;}
.y17{bottom:485.430000px;}
.y12f{bottom:485.880000px;}
.y4b{bottom:487.950000px;}
.y179{bottom:491.550000px;}
.y111{bottom:491.910000px;}
.y76{bottom:494.070000px;}
.y9d{bottom:498.210000px;}
.yc9{bottom:499.290000px;}
.y12e{bottom:503.430000px;}
.yf0{bottom:504.330000px;}
.y4a{bottom:505.500000px;}
.y110{bottom:510.360000px;}
.y9c{bottom:515.760000px;}
.yc8{bottom:516.930000px;}
.y178{bottom:518.100000px;}
.y16{bottom:521.070000px;}
.yef{bottom:521.880000px;}
.y49{bottom:523.140000px;}
.y10f{bottom:528.000000px;}
.y75{bottom:529.620000px;}
.y9b{bottom:533.400000px;}
.yc7{bottom:534.480000px;}
.y177{bottom:535.650000px;}
.y15{bottom:538.620000px;}
.yee{bottom:539.430000px;}
.y48{bottom:540.690000px;}
.y10e{bottom:545.550000px;}
.y74{bottom:547.260000px;}
.yc6{bottom:552.120000px;}
.y176{bottom:553.290000px;}
.y14{bottom:556.170000px;}
.y152{bottom:556.260000px;}
.y47{bottom:558.330000px;}
.y9a{bottom:559.950000px;}
.y10d{bottom:564.000000px;}
.y73{bottom:564.810000px;}
.y12d{bottom:565.260000px;}
.y13{bottom:573.810000px;}
.yed{bottom:575.070000px;}
.y175{bottom:580.200000px;}
.y10c{bottom:581.550000px;}
.y72{bottom:582.360000px;}
.y151{bottom:582.810000px;}
.yc5{bottom:587.670000px;}
.y12{bottom:591.360000px;}
.yec{bottom:592.620000px;}
.y46{bottom:593.880000px;}
.y99{bottom:595.860000px;}
.y71{bottom:600.000000px;}
.y12c{bottom:600.810000px;}
.yc4{bottom:605.220000px;}
.y11{bottom:609.000000px;}
.yeb{bottom:610.260000px;}
.y45{bottom:611.430000px;}
.y70{bottom:617.550000px;}
.y150{bottom:618.360000px;}
.yc3{bottom:622.860000px;}
.y12b{bottom:627.360000px;}
.yea{bottom:627.810000px;}
.y174{bottom:628.440000px;}
.y44{bottom:629.070000px;}
.y10b{bottom:635.100000px;}
.y6f{bottom:635.190000px;}
.y14f{bottom:636.000000px;}
.yc2{bottom:640.410000px;}
.y98{bottom:644.190000px;}
.y10{bottom:644.550000px;}
.y195{bottom:645.810000px;}
.y43{bottom:646.620000px;}
.y14e{bottom:653.550000px;}
.y173{bottom:655.350000px;}
.yc1{bottom:658.050000px;}
.y6e{bottom:661.740000px;}
.yf{bottom:662.100000px;}
.y12a{bottom:663.000000px;}
.ye9{bottom:663.360000px;}
.y42{bottom:664.260000px;}
.y10a{bottom:671.550000px;}
.y97{bottom:679.290000px;}
.ye{bottom:679.740000px;}
.y14d{bottom:680.190000px;}
.y129{bottom:680.550000px;}
.ye8{bottom:681.000000px;}
.y41{bottom:681.810000px;}
.yc0{bottom:684.600000px;}
.y172{bottom:692.700000px;}
.y96{bottom:696.930000px;}
.yd{bottom:697.290000px;}
.y109{bottom:698.190000px;}
.ye7{bottom:698.550000px;}
.y40{bottom:699.360000px;}
.y194{bottom:707.550000px;}
.y95{bottom:714.480000px;}
.yc{bottom:714.930000px;}
.y14c{bottom:715.740000px;}
.ye6{bottom:716.190000px;}
.ybf{bottom:720.150000px;}
.y193{bottom:725.190000px;}
.y94{bottom:732.120000px;}
.yb{bottom:732.480000px;}
.y14b{bottom:733.290000px;}
.ye5{bottom:733.740000px;}
.y3f{bottom:735.000000px;}
.ybe{bottom:737.790000px;}
.y171{bottom:740.940000px;}
.y6d{bottom:750.120000px;}
.y14a{bottom:750.930000px;}
.y108{bottom:751.290000px;}
.y192{bottom:751.740000px;}
.y3e{bottom:752.550000px;}
.y170{bottom:758.580000px;}
.y93{bottom:758.670000px;}
.ya{bottom:759.390000px;}
.ye4{bottom:760.290000px;}
.y6c{bottom:767.670000px;}
.y149{bottom:768.480000px;}
.y107{bottom:768.930000px;}
.y3d{bottom:770.190000px;}
.ybd{bottom:773.340000px;}
.y16f{bottom:776.130000px;}
.y191{bottom:778.290000px;}
.y6b{bottom:785.220000px;}
.y3c{bottom:787.740000px;}
.ybc{bottom:790.890000px;}
.y92{bottom:794.220000px;}
.y148{bottom:795.030000px;}
.y106{bottom:795.480000px;}
.ye3{bottom:795.930000px;}
.y6a{bottom:802.860000px;}
.y3b{bottom:805.290000px;}
.y9{bottom:807.630000px;}
.ybb{bottom:809.340000px;}
.y16e{bottom:811.770000px;}
.y91{bottom:811.860000px;}
.ye2{bottom:813.480000px;}
.y190{bottom:822.480000px;}
.y3a{bottom:822.930000px;}
.yba{bottom:827.700000px;}
.y16d{bottom:829.320000px;}
.y69{bottom:829.410000px;}
.y147{bottom:830.670000px;}
.ye1{bottom:831.030000px;}
.y18f{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.y8{bottom:843.450000px;}
.yb9{bottom:846.150000px;}
.y16c{bottom:846.870000px;}
.y146{bottom:848.220000px;}
.ye0{bottom:848.670000px;}
.y38{bottom:858.030000px;}
.yb8{bottom:864.510000px;}
.y68{bottom:864.960000px;}
.y145{bottom:865.860000px;}
.y105{bottom:866.220000px;}
.y18e{bottom:866.670000px;}
.y7{bottom:879.450000px;}
.y67{bottom:882.600000px;}
.y144{bottom:883.410000px;}
.y104{bottom:883.860000px;}
.ydf{bottom:884.220000px;}
.y37{bottom:893.670000px;}
.y16b{bottom:900.060000px;}
.y66{bottom:900.150000px;}
.yb7{bottom:900.960000px;}
.y128{bottom:901.410000px;}
.yde{bottom:901.860000px;}
.y143{bottom:909.960000px;}
.y18d{bottom:910.860000px;}
.y36{bottom:911.220000px;}
.y6{bottom:915.450000px;}
.y16a{bottom:917.700000px;}
.y65{bottom:917.790000px;}
.yb6{bottom:918.600000px;}
.ydd{bottom:919.410000px;}
.y127{bottom:927.960000px;}
.y18c{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y169{bottom:935.250000px;}
.y90{bottom:935.340000px;}
.ydc{bottom:936.960000px;}
.y64{bottom:944.340000px;}
.yb5{bottom:945.150000px;}
.y142{bottom:945.600000px;}
.y34{bottom:946.410000px;}
.y5{bottom:951.540000px;}
.y8f{bottom:953.790000px;}
.y103{bottom:954.600000px;}
.y18b{bottom:954.960000px;}
.ydb{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y168{bottom:970.800000px;}
.y8e{bottom:971.340000px;}
.y102{bottom:972.150000px;}
.y18a{bottom:972.600000px;}
.y63{bottom:979.890000px;}
.yb4{bottom:980.790000px;}
.y126{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y167{bottom:988.440000px;}
.y8d{bottom:988.890000px;}
.y4{bottom:989.880000px;}
.y62{bottom:997.530000px;}
.yb3{bottom:998.340000px;}
.y101{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y166{bottom:1005.990000px;}
.y8c{bottom:1006.440000px;}
.y141{bottom:1007.790000px;}
.y3{bottom:1014.570000px;}
.y61{bottom:1015.110000px;}
.y125{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y165{bottom:1023.570000px;}
.y140{bottom:1025.370000px;}
.y60{bottom:1032.750000px;}
.yb2{bottom:1033.920000px;}
.y2f{bottom:1034.370000px;}
.y164{bottom:1041.210000px;}
.y8b{bottom:1042.920000px;}
.yb1{bottom:1051.560000px;}
.yda{bottom:1051.920000px;}
.y163{bottom:1058.760000px;}
.y8a{bottom:1060.560000px;}
.y13f{bottom:1060.920000px;}
.y5f{bottom:1068.300000px;}
.yb0{bottom:1069.110000px;}
.yd9{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y13e{bottom:1078.560000px;}
.y162{bottom:1085.670000px;}
.y5e{bottom:1085.850000px;}
.yaf{bottom:1086.660000px;}
.y89{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y124{bottom:1096.110000px;}
.y5d{bottom:1104.300000px;}
.y2c{bottom:1105.110000px;}
.y123{bottom:1113.750000px;}
.y5c{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.y5b{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x8{left:111.239987px;}
.x5{left:122.039987px;}
.x6{left:149.039987px;}
.x7{left:176.069987px;}
.x2{left:251.759987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.354667pt;}
.ls18{letter-spacing:-0.236800pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls9{letter-spacing:-0.034667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.087467pt;}
.ls1b{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls14{letter-spacing:49.250347pt;}
.lsf{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws3{word-spacing:-11.722133pt;}
.wsb{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.402133pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsc{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-3.206400pt;}
._a{margin-left:-2.030934pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.106667pt;}
._3{width:2.832534pt;}
._4{width:3.764264pt;}
._5{width:5.450666pt;}
._c{width:6.865174pt;}
._9{width:7.802133pt;}
._7{width:9.031467pt;}
._6{width:10.474133pt;}
._d{width:12.707627pt;}
._2{width:13.947733pt;}
._e{width:15.711360pt;}
._8{width:16.833600pt;}
._10{width:18.276480pt;}
._f{width:19.933120pt;}
._15{width:27.649600pt;}
._16{width:29.104960pt;}
._13{width:40.935040pt;}
._1b{width:49.208427pt;}
._1c{width:50.449600pt;}
._19{width:51.376960pt;}
._1a{width:52.745387pt;}
._17{width:56.453760pt;}
._18{width:57.391467pt;}
._11{width:66.425920pt;}
._12{width:67.387840pt;}
._14{width:105.996267pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yae{bottom:105.546667pt;}
.y13d{bottom:109.386667pt;}
.y88{bottom:109.786667pt;}
.y122{bottom:111.226667pt;}
.y27{bottom:112.266667pt;}
.yd8{bottom:112.426667pt;}
.y161{bottom:114.186667pt;}
.y5a{bottom:114.906667pt;}
.y100{bottom:120.826667pt;}
.y13c{bottom:124.986667pt;}
.y87{bottom:125.386667pt;}
.y121{bottom:126.906667pt;}
.y26{bottom:127.866667pt;}
.yd7{bottom:128.106667pt;}
.yad{bottom:129.866667pt;}
.y59{bottom:130.506667pt;}
.yff{bottom:136.426667pt;}
.y189{bottom:138.746667pt;}
.y13b{bottom:140.666667pt;}
.y86{bottom:140.986667pt;}
.y120{bottom:142.506667pt;}
.y25{bottom:143.546667pt;}
.y160{bottom:145.466667pt;}
.yd6{bottom:151.706667pt;}
.yfe{bottom:152.026667pt;}
.y188{bottom:154.426667pt;}
.y13a{bottom:156.266667pt;}
.y85{bottom:156.666667pt;}
.y11f{bottom:158.186667pt;}
.yac{bottom:158.906667pt;}
.y24{bottom:159.146667pt;}
.y15f{bottom:161.066667pt;}
.y58{bottom:162.906667pt;}
.yfd{bottom:167.706667pt;}
.y84{bottom:172.266667pt;}
.y11e{bottom:173.786667pt;}
.yab{bottom:174.506667pt;}
.y15e{bottom:176.746667pt;}
.y187{bottom:178.026667pt;}
.y57{bottom:178.586667pt;}
.y139{bottom:179.946667pt;}
.yd5{bottom:180.666667pt;}
.y83{bottom:187.946667pt;}
.y11d{bottom:189.386667pt;}
.yaa{bottom:190.186667pt;}
.y23{bottom:190.746667pt;}
.yfc{bottom:191.306667pt;}
.y186{bottom:193.626667pt;}
.y56{bottom:194.186667pt;}
.ya9{bottom:205.786667pt;}
.y22{bottom:206.426667pt;}
.y15d{bottom:208.346667pt;}
.y185{bottom:209.306667pt;}
.y55{bottom:209.866667pt;}
.y138{bottom:211.546667pt;}
.yd4{bottom:212.346667pt;}
.y11c{bottom:213.306667pt;}
.y82{bottom:219.546667pt;}
.y21{bottom:222.026667pt;}
.ya8{bottom:222.186667pt;}
.yfb{bottom:222.986667pt;}
.y15c{bottom:223.946667pt;}
.y54{bottom:225.466667pt;}
.y137{bottom:227.146667pt;}
.yd3{bottom:227.946667pt;}
.y184{bottom:232.906667pt;}
.y81{bottom:235.146667pt;}
.y20{bottom:237.706667pt;}
.ya7{bottom:237.786667pt;}
.yfa{bottom:238.586667pt;}
.y15b{bottom:239.626667pt;}
.yd2{bottom:243.546667pt;}
.y183{bottom:248.586667pt;}
.y53{bottom:249.066667pt;}
.y80{bottom:250.826667pt;}
.y1f{bottom:253.306667pt;}
.ya6{bottom:253.386667pt;}
.yf9{bottom:254.186667pt;}
.y15a{bottom:255.226667pt;}
.y11b{bottom:256.266667pt;}
.yd1{bottom:259.226667pt;}
.y182{bottom:264.186667pt;}
.y7f{bottom:266.426667pt;}
.y1e{bottom:268.906667pt;}
.ya5{bottom:268.986667pt;}
.yf8{bottom:269.866667pt;}
.y159{bottom:270.906667pt;}
.y11a{bottom:271.866667pt;}
.y52{bottom:280.986667pt;}
.y136{bottom:282.426667pt;}
.yd0{bottom:283.146667pt;}
.y1d{bottom:284.586667pt;}
.y119{bottom:287.466667pt;}
.y181{bottom:287.786667pt;}
.y7e{bottom:290.106667pt;}
.ya4{bottom:293.386667pt;}
.y158{bottom:294.826667pt;}
.y135{bottom:298.106667pt;}
.y1c{bottom:300.186667pt;}
.yf7{bottom:301.466667pt;}
.y118{bottom:303.146667pt;}
.y180{bottom:303.466667pt;}
.yf6{bottom:317.146667pt;}
.y117{bottom:318.746667pt;}
.y17f{bottom:319.066667pt;}
.y7d{bottom:321.706667pt;}
.y51{bottom:323.946667pt;}
.y1b{bottom:324.106667pt;}
.ya3{bottom:325.066667pt;}
.ycf{bottom:326.026667pt;}
.y134{bottom:329.706667pt;}
.yf5{bottom:332.746667pt;}
.y7c{bottom:337.306667pt;}
.y157{bottom:337.706667pt;}
.y50{bottom:339.546667pt;}
.ya2{bottom:340.666667pt;}
.yce{bottom:341.626667pt;}
.y116{bottom:342.426667pt;}
.y17e{bottom:342.746667pt;}
.y133{bottom:345.306667pt;}
.yf4{bottom:348.346667pt;}
.y7b{bottom:352.986667pt;}
.y156{bottom:353.306667pt;}
.y4f{bottom:355.146667pt;}
.ycd{bottom:357.306667pt;}
.y17d{bottom:358.346667pt;}
.y132{bottom:360.986667pt;}
.yf3{bottom:364.026667pt;}
.ya1{bottom:364.266667pt;}
.y1a{bottom:367.066667pt;}
.y7a{bottom:368.586667pt;}
.y155{bottom:368.986667pt;}
.y4e{bottom:370.826667pt;}
.ycc{bottom:372.906667pt;}
.y115{bottom:374.026667pt;}
.y131{bottom:376.586667pt;}
.y17c{bottom:381.946667pt;}
.y19{bottom:382.986667pt;}
.y79{bottom:384.266667pt;}
.y154{bottom:384.586667pt;}
.yf2{bottom:387.626667pt;}
.ycb{bottom:388.586667pt;}
.y114{bottom:389.626667pt;}
.ya0{bottom:395.946667pt;}
.y17b{bottom:397.626667pt;}
.y78{bottom:399.866667pt;}
.y130{bottom:400.266667pt;}
.y4d{bottom:402.426667pt;}
.y113{bottom:406.026667pt;}
.y9f{bottom:411.546667pt;}
.yca{bottom:412.186667pt;}
.y77{bottom:415.466667pt;}
.y18{bottom:415.866667pt;}
.y153{bottom:416.266667pt;}
.yf1{bottom:416.586667pt;}
.y4c{bottom:418.133333pt;}
.y17a{bottom:421.253333pt;}
.y112{bottom:421.653333pt;}
.y9e{bottom:427.253333pt;}
.y17{bottom:431.493333pt;}
.y12f{bottom:431.893333pt;}
.y4b{bottom:433.733333pt;}
.y179{bottom:436.933333pt;}
.y111{bottom:437.253333pt;}
.y76{bottom:439.173333pt;}
.y9d{bottom:442.853333pt;}
.yc9{bottom:443.813333pt;}
.y12e{bottom:447.493333pt;}
.yf0{bottom:448.293333pt;}
.y4a{bottom:449.333333pt;}
.y110{bottom:453.653333pt;}
.y9c{bottom:458.453333pt;}
.yc8{bottom:459.493333pt;}
.y178{bottom:460.533333pt;}
.y16{bottom:463.173333pt;}
.yef{bottom:463.893333pt;}
.y49{bottom:465.013333pt;}
.y10f{bottom:469.333333pt;}
.y75{bottom:470.773333pt;}
.y9b{bottom:474.133333pt;}
.yc7{bottom:475.093333pt;}
.y177{bottom:476.133333pt;}
.y15{bottom:478.773333pt;}
.yee{bottom:479.493333pt;}
.y48{bottom:480.613333pt;}
.y10e{bottom:484.933333pt;}
.y74{bottom:486.453333pt;}
.yc6{bottom:490.773333pt;}
.y176{bottom:491.813333pt;}
.y14{bottom:494.373333pt;}
.y152{bottom:494.453333pt;}
.y47{bottom:496.293333pt;}
.y9a{bottom:497.733333pt;}
.y10d{bottom:501.333333pt;}
.y73{bottom:502.053333pt;}
.y12d{bottom:502.453333pt;}
.y13{bottom:510.053333pt;}
.yed{bottom:511.173333pt;}
.y175{bottom:515.733333pt;}
.y10c{bottom:516.933333pt;}
.y72{bottom:517.653333pt;}
.y151{bottom:518.053333pt;}
.yc5{bottom:522.373333pt;}
.y12{bottom:525.653333pt;}
.yec{bottom:526.773333pt;}
.y46{bottom:527.893333pt;}
.y99{bottom:529.653333pt;}
.y71{bottom:533.333333pt;}
.y12c{bottom:534.053333pt;}
.yc4{bottom:537.973333pt;}
.y11{bottom:541.333333pt;}
.yeb{bottom:542.453333pt;}
.y45{bottom:543.493333pt;}
.y70{bottom:548.933333pt;}
.y150{bottom:549.653333pt;}
.yc3{bottom:553.653333pt;}
.y12b{bottom:557.653333pt;}
.yea{bottom:558.053333pt;}
.y174{bottom:558.613333pt;}
.y44{bottom:559.173333pt;}
.y10b{bottom:564.533333pt;}
.y6f{bottom:564.613333pt;}
.y14f{bottom:565.333333pt;}
.yc2{bottom:569.253333pt;}
.y98{bottom:572.613333pt;}
.y10{bottom:572.933333pt;}
.y195{bottom:574.053333pt;}
.y43{bottom:574.773333pt;}
.y14e{bottom:580.933333pt;}
.y173{bottom:582.533333pt;}
.yc1{bottom:584.933333pt;}
.y6e{bottom:588.213333pt;}
.yf{bottom:588.533333pt;}
.y12a{bottom:589.333333pt;}
.ye9{bottom:589.653333pt;}
.y42{bottom:590.453333pt;}
.y10a{bottom:596.933333pt;}
.y97{bottom:603.813333pt;}
.ye{bottom:604.213333pt;}
.y14d{bottom:604.613333pt;}
.y129{bottom:604.933333pt;}
.ye8{bottom:605.333333pt;}
.y41{bottom:606.053333pt;}
.yc0{bottom:608.533333pt;}
.y172{bottom:615.733333pt;}
.y96{bottom:619.493333pt;}
.yd{bottom:619.813333pt;}
.y109{bottom:620.613333pt;}
.ye7{bottom:620.933333pt;}
.y40{bottom:621.653333pt;}
.y194{bottom:628.933333pt;}
.y95{bottom:635.093333pt;}
.yc{bottom:635.493333pt;}
.y14c{bottom:636.213333pt;}
.ye6{bottom:636.613333pt;}
.ybf{bottom:640.133333pt;}
.y193{bottom:644.613333pt;}
.y94{bottom:650.773333pt;}
.yb{bottom:651.093333pt;}
.y14b{bottom:651.813333pt;}
.ye5{bottom:652.213333pt;}
.y3f{bottom:653.333333pt;}
.ybe{bottom:655.813333pt;}
.y171{bottom:658.613333pt;}
.y6d{bottom:666.773333pt;}
.y14a{bottom:667.493333pt;}
.y108{bottom:667.813333pt;}
.y192{bottom:668.213333pt;}
.y3e{bottom:668.933333pt;}
.y170{bottom:674.293333pt;}
.y93{bottom:674.373333pt;}
.ya{bottom:675.013333pt;}
.ye4{bottom:675.813333pt;}
.y6c{bottom:682.373333pt;}
.y149{bottom:683.093333pt;}
.y107{bottom:683.493333pt;}
.y3d{bottom:684.613333pt;}
.ybd{bottom:687.413333pt;}
.y16f{bottom:689.893333pt;}
.y191{bottom:691.813333pt;}
.y6b{bottom:697.973333pt;}
.y3c{bottom:700.213333pt;}
.ybc{bottom:703.013333pt;}
.y92{bottom:705.973333pt;}
.y148{bottom:706.693333pt;}
.y106{bottom:707.093333pt;}
.ye3{bottom:707.493333pt;}
.y6a{bottom:713.653333pt;}
.y3b{bottom:715.813333pt;}
.y9{bottom:717.893333pt;}
.ybb{bottom:719.413333pt;}
.y16e{bottom:721.573333pt;}
.y91{bottom:721.653333pt;}
.ye2{bottom:723.093333pt;}
.y190{bottom:731.093333pt;}
.y3a{bottom:731.493333pt;}
.yba{bottom:735.733333pt;}
.y16d{bottom:737.173333pt;}
.y69{bottom:737.253333pt;}
.y147{bottom:738.373333pt;}
.ye1{bottom:738.693333pt;}
.y18f{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.y8{bottom:749.733333pt;}
.yb9{bottom:752.133333pt;}
.y16c{bottom:752.773333pt;}
.y146{bottom:753.973333pt;}
.ye0{bottom:754.373333pt;}
.y38{bottom:762.693333pt;}
.yb8{bottom:768.453333pt;}
.y68{bottom:768.853333pt;}
.y145{bottom:769.653333pt;}
.y105{bottom:769.973333pt;}
.y18e{bottom:770.373333pt;}
.y7{bottom:781.733333pt;}
.y67{bottom:784.533333pt;}
.y144{bottom:785.253333pt;}
.y104{bottom:785.653333pt;}
.ydf{bottom:785.973333pt;}
.y37{bottom:794.373333pt;}
.y16b{bottom:800.053333pt;}
.y66{bottom:800.133333pt;}
.yb7{bottom:800.853333pt;}
.y128{bottom:801.253333pt;}
.yde{bottom:801.653333pt;}
.y143{bottom:808.853333pt;}
.y18d{bottom:809.653333pt;}
.y36{bottom:809.973333pt;}
.y6{bottom:813.733333pt;}
.y16a{bottom:815.733333pt;}
.y65{bottom:815.813333pt;}
.yb6{bottom:816.533333pt;}
.ydd{bottom:817.253333pt;}
.y127{bottom:824.853333pt;}
.y18c{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y169{bottom:831.333333pt;}
.y90{bottom:831.413333pt;}
.ydc{bottom:832.853333pt;}
.y64{bottom:839.413333pt;}
.yb5{bottom:840.133333pt;}
.y142{bottom:840.533333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:845.813333pt;}
.y8f{bottom:847.813333pt;}
.y103{bottom:848.533333pt;}
.y18b{bottom:848.853333pt;}
.ydb{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y168{bottom:862.933333pt;}
.y8e{bottom:863.413333pt;}
.y102{bottom:864.133333pt;}
.y18a{bottom:864.533333pt;}
.y63{bottom:871.013333pt;}
.yb4{bottom:871.813333pt;}
.y126{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y167{bottom:878.613333pt;}
.y8d{bottom:879.013333pt;}
.y4{bottom:879.893333pt;}
.y62{bottom:886.693333pt;}
.yb3{bottom:887.413333pt;}
.y101{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y166{bottom:894.213333pt;}
.y8c{bottom:894.613333pt;}
.y141{bottom:895.813333pt;}
.y3{bottom:901.840000pt;}
.y61{bottom:902.320000pt;}
.y125{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y165{bottom:909.840000pt;}
.y140{bottom:911.440000pt;}
.y60{bottom:918.000000pt;}
.yb2{bottom:919.040000pt;}
.y2f{bottom:919.440000pt;}
.y164{bottom:925.520000pt;}
.y8b{bottom:927.040000pt;}
.yb1{bottom:934.720000pt;}
.yda{bottom:935.040000pt;}
.y163{bottom:941.120000pt;}
.y8a{bottom:942.720000pt;}
.y13f{bottom:943.040000pt;}
.y5f{bottom:949.600000pt;}
.yb0{bottom:950.320000pt;}
.yd9{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y13e{bottom:958.720000pt;}
.y162{bottom:965.040000pt;}
.y5e{bottom:965.200000pt;}
.yaf{bottom:965.920000pt;}
.y89{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y124{bottom:974.320000pt;}
.y5d{bottom:981.600000pt;}
.y2c{bottom:982.320000pt;}
.y123{bottom:990.000000pt;}
.y5c{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.y5b{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x8{left:98.879988pt;}
.x5{left:108.479988pt;}
.x6{left:132.479988pt;}
.x7{left:156.506655pt;}
.x2{left:223.786655pt;}
.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; }
  