
    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_ee32e8c9ce2fc95f3e79e9ae.woff')format("woff");}.ff1{font-family:ff1;line-height:0.923340;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_f878b7f109a09c9913c50cc4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_6c19c3bbddc8b9a05fe63e50.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7e3968ebc25dd6495870414b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_20bdac071d9646f72028ffec.woff')format("woff");}.ff6{font-family:ff6;line-height:1.213379;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_20bf6abde83674d29facff35.woff')format("woff");}.ff7{font-family:ff7;line-height:1.213379;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_92cd3bd7f1321a4ca0ded049.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8efe90a80071aac83df01457.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_425be20fce0a714ec39a71e0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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;}
.m2{transform:matrix(0.170733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170733,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-1.548000px;}
.lsf{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.302400px;}
.ls20{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.253200px;}
.ls18{letter-spacing:-0.234600px;}
.ls16{letter-spacing:-0.145200px;}
.ls19{letter-spacing:-0.127200px;}
.ls2{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.015120px;}
.ls1f{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.052560px;}
.ls6{letter-spacing:0.091200px;}
.lsa{letter-spacing:0.097920px;}
.ls24{letter-spacing:0.120000px;}
.ls1e{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.213600px;}
.ls17{letter-spacing:0.217200px;}
.ls5{letter-spacing:0.271200px;}
.ls11{letter-spacing:0.308493px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.592800px;}
.ls1c{letter-spacing:0.900000px;}
.lse{letter-spacing:1.620000px;}
.ls14{letter-spacing:2.340000px;}
.ls1b{letter-spacing:3.060000px;}
.ls9{letter-spacing:3.600000px;}
.ls1d{letter-spacing:3.780000px;}
.lsc{letter-spacing:4.500000px;}
.ls15{letter-spacing:8.100000px;}
.ls13{letter-spacing:12.420000px;}
.ls1a{letter-spacing:16.740000px;}
.ls8{letter-spacing:198.360000px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws6{word-spacing:-21.151200px;}
.ws5{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.430000px;}
.ws7{word-spacing:-19.440000px;}
.wsc{word-spacing:-16.608960px;}
.ws2{word-spacing:-16.560000px;}
.wse{word-spacing:-16.453200px;}
.ws3{word-spacing:-16.306800px;}
.wsd{word-spacing:-16.297800px;}
.wsb{word-spacing:-15.157200px;}
.ws9{word-spacing:-14.992560px;}
.wsa{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.374000px;}
.ws8{word-spacing:0.000000px;}
._14{margin-left:-4.968000px;}
._f{margin-left:-3.908160px;}
._a{margin-left:-2.848320px;}
._1{margin-left:-1.656000px;}
._0{width:1.562400px;}
._2{width:2.891520px;}
._3{width:4.068000px;}
._4{width:5.338080px;}
._8{width:6.425280px;}
._7{width:8.147520px;}
._6{width:9.449280px;}
._5{width:11.327040px;}
._10{width:12.412320px;}
._17{width:13.422720px;}
._13{width:14.440320px;}
._16{width:16.186320px;}
._15{width:17.270640px;}
._e{width:18.812160px;}
._d{width:19.938240px;}
._1c{width:23.448960px;}
._b{width:24.972480px;}
._c{width:26.098560px;}
._9{width:27.120480px;}
._18{width:49.746240px;}
._19{width:50.806080px;}
._1d{width:65.573760px;}
._1e{width:66.726240px;}
._1b{width:104.328000px;}
._1a{width:105.818880px;}
._12{width:107.678880px;}
._11{width:109.125120px;}
.fc1{color:rgb(47,2,10);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.600000px;}
.yeb{bottom:4.320000px;}
.y37{bottom:11.700000px;}
.yea{bottom:22.860000px;}
.yf2{bottom:22.905000px;}
.y36{bottom:34.020000px;}
.yef{bottom:41.400000px;}
.yf1{bottom:41.625000px;}
.y35{bottom:57.600000px;}
.yee{bottom:59.940000px;}
.y34{bottom:83.550000px;}
.y7c{bottom:88.920000px;}
.y30{bottom:101.160000px;}
.y7b{bottom:105.840000px;}
.y7a{bottom:109.620000px;}
.y33{bottom:116.310000px;}
.y79{bottom:122.580000px;}
.y123{bottom:124.020000px;}
.y32{bottom:124.230000px;}
.y143{bottom:126.360000px;}
.y78{bottom:139.500000px;}
.y2f{bottom:139.680000px;}
.y122{bottom:140.940000px;}
.y77{bottom:143.280000px;}
.y121{bottom:144.720000px;}
.y76{bottom:156.420000px;}
.y120{bottom:157.860000px;}
.yb4{bottom:160.200000px;}
.y2e{bottom:167.220000px;}
.y75{bottom:173.340000px;}
.y167{bottom:173.880000px;}
.y11f{bottom:174.780000px;}
.y74{bottom:177.120000px;}
.y11e{bottom:178.560000px;}
.y73{bottom:190.080000px;}
.y11d{bottom:191.520000px;}
.yb3{bottom:193.860000px;}
.y2d{bottom:197.640000px;}
.y166{bottom:204.660000px;}
.y72{bottom:207.000000px;}
.y11c{bottom:208.440000px;}
.y71{bottom:210.780000px;}
.y11b{bottom:212.220000px;}
.y165{bottom:221.580000px;}
.y70{bottom:223.920000px;}
.y11a{bottom:225.360000px;}
.yb2{bottom:227.700000px;}
.y2c{bottom:228.060000px;}
.y164{bottom:238.530000px;}
.y6f{bottom:240.870000px;}
.ye8{bottom:241.410000px;}
.y119{bottom:242.310000px;}
.y6e{bottom:244.650000px;}
.y118{bottom:246.090000px;}
.y163{bottom:255.810000px;}
.y6d{bottom:257.610000px;}
.y2b{bottom:258.330000px;}
.y117{bottom:259.590000px;}
.y6c{bottom:261.390000px;}
.y162{bottom:274.350000px;}
.y142{bottom:274.530000px;}
.y6b{bottom:275.070000px;}
.ye7{bottom:279.930000px;}
.y2a{bottom:288.750000px;}
.y141{bottom:291.450000px;}
.y161{bottom:292.890000px;}
.y140{bottom:295.230000px;}
.y116{bottom:295.770000px;}
.yb0{bottom:297.390000px;}
.ye6{bottom:298.470000px;}
.yb1{bottom:301.170000px;}
.y13f{bottom:308.910000px;}
.y160{bottom:311.430000px;}
.y115{bottom:314.310000px;}
.yaf{bottom:315.930000px;}
.ye5{bottom:317.010000px;}
.y29{bottom:319.170000px;}
.y15f{bottom:329.970000px;}
.y114{bottom:332.850000px;}
.yae{bottom:334.470000px;}
.ye4{bottom:335.550000px;}
.y13e{bottom:338.970000px;}
.y6a{bottom:345.630000px;}
.y15e{bottom:348.150000px;}
.y28{bottom:349.590000px;}
.y113{bottom:351.390000px;}
.yad{bottom:353.190000px;}
.ye2{bottom:354.090000px;}
.y13d{bottom:357.510000px;}
.ye3{bottom:357.870000px;}
.y69{bottom:364.170000px;}
.y15d{bottom:365.430000px;}
.y27{bottom:368.850000px;}
.y112{bottom:369.930000px;}
.yac{bottom:371.730000px;}
.ye1{bottom:372.630000px;}
.y13c{bottom:376.050000px;}
.y68{bottom:382.710000px;}
.y18d{bottom:383.610000px;}
.y15c{bottom:383.970000px;}
.y26{bottom:384.690000px;}
.y111{bottom:388.470000px;}
.yab{bottom:390.270000px;}
.ye0{bottom:391.170000px;}
.y13b{bottom:394.590000px;}
.y67{bottom:401.430000px;}
.y15b{bottom:402.510000px;}
.y25{bottom:403.230000px;}
.y18c{bottom:403.590000px;}
.y110{bottom:407.010000px;}
.yaa{bottom:408.810000px;}
.ydf{bottom:409.710000px;}
.y13a{bottom:413.130000px;}
.y66{bottom:419.970000px;}
.y15a{bottom:421.050000px;}
.y24{bottom:421.770000px;}
.y18b{bottom:422.130000px;}
.y10f{bottom:425.550000px;}
.ya9{bottom:427.350000px;}
.yde{bottom:428.430000px;}
.y139{bottom:431.670000px;}
.y65{bottom:438.510000px;}
.y159{bottom:439.770000px;}
.y23{bottom:440.490000px;}
.y18a{bottom:440.670000px;}
.y10e{bottom:444.270000px;}
.ya8{bottom:445.890000px;}
.ydd{bottom:446.970000px;}
.y137{bottom:450.210000px;}
.y138{bottom:453.990000px;}
.y63{bottom:457.050000px;}
.y158{bottom:458.310000px;}
.y22{bottom:459.030000px;}
.y189{bottom:459.210000px;}
.y64{bottom:460.875000px;}
.y10d{bottom:462.855000px;}
.ya7{bottom:464.475000px;}
.ydc{bottom:465.555000px;}
.y136{bottom:468.975000px;}
.y62{bottom:475.635000px;}
.y157{bottom:476.895000px;}
.y21{bottom:477.615000px;}
.y188{bottom:477.795000px;}
.y10b{bottom:482.475000px;}
.ya6{bottom:483.375000px;}
.ydb{bottom:484.095000px;}
.y10c{bottom:486.255000px;}
.y135{bottom:487.515000px;}
.y61{bottom:494.175000px;}
.y156{bottom:495.435000px;}
.y20{bottom:496.155000px;}
.y187{bottom:496.335000px;}
.y10a{bottom:501.015000px;}
.yda{bottom:502.635000px;}
.ya5{bottom:503.355000px;}
.y134{bottom:506.055000px;}
.y60{bottom:512.715000px;}
.y155{bottom:514.335000px;}
.y1f{bottom:514.695000px;}
.y186{bottom:514.875000px;}
.y109{bottom:519.735000px;}
.yd9{bottom:521.175000px;}
.ya4{bottom:521.895000px;}
.y132{bottom:524.595000px;}
.y133{bottom:528.375000px;}
.y5f{bottom:531.255000px;}
.y1e{bottom:533.235000px;}
.y185{bottom:533.595000px;}
.y154{bottom:534.495000px;}
.y108{bottom:538.275000px;}
.yd8{bottom:540.075000px;}
.ya3{bottom:540.435000px;}
.y131{bottom:543.135000px;}
.y5d{bottom:549.975000px;}
.y1d{bottom:551.775000px;}
.y184{bottom:552.135000px;}
.y5e{bottom:553.755000px;}
.y153{bottom:554.835000px;}
.y107{bottom:556.815000px;}
.ya2{bottom:558.975000px;}
.yd7{bottom:560.055000px;}
.y130{bottom:561.675000px;}
.y5c{bottom:568.515000px;}
.y1c{bottom:570.315000px;}
.y152{bottom:574.815000px;}
.y106{bottom:575.355000px;}
.ya1{bottom:577.515000px;}
.yd6{bottom:578.595000px;}
.y12f{bottom:580.215000px;}
.y5b{bottom:587.055000px;}
.y183{bottom:587.595000px;}
.y1b{bottom:589.035000px;}
.y151{bottom:593.355000px;}
.y105{bottom:593.895000px;}
.y9f{bottom:596.235000px;}
.yd5{bottom:597.135000px;}
.y12e{bottom:598.755000px;}
.ya0{bottom:600.015000px;}
.y5a{bottom:605.595000px;}
.y182{bottom:606.135000px;}
.y1a{bottom:607.575000px;}
.y150{bottom:611.895000px;}
.y104{bottom:612.435000px;}
.y9e{bottom:614.775000px;}
.yd4{bottom:615.675000px;}
.y12d{bottom:617.475000px;}
.y59{bottom:624.135000px;}
.y181{bottom:624.675000px;}
.y19{bottom:626.115000px;}
.y14f{bottom:630.435000px;}
.y103{bottom:630.975000px;}
.y9d{bottom:633.315000px;}
.yd3{bottom:634.215000px;}
.y12c{bottom:636.015000px;}
.y58{bottom:642.675000px;}
.y180{bottom:643.215000px;}
.y18{bottom:644.655000px;}
.y14e{bottom:648.975000px;}
.y101{bottom:649.515000px;}
.y9c{bottom:651.855000px;}
.yd2{bottom:652.755000px;}
.y102{bottom:653.295000px;}
.y12b{bottom:654.555000px;}
.y57{bottom:661.215000px;}
.y17f{bottom:661.755000px;}
.y17{bottom:663.195000px;}
.y14d{bottom:667.515000px;}
.y100{bottom:668.235000px;}
.y9b{bottom:670.395000px;}
.yd1{bottom:671.475000px;}
.y12a{bottom:673.095000px;}
.y56{bottom:679.755000px;}
.y17e{bottom:680.295000px;}
.y16{bottom:681.735000px;}
.y14c{bottom:686.055000px;}
.yfe{bottom:686.775000px;}
.y9a{bottom:688.935000px;}
.yd0{bottom:690.045000px;}
.yff{bottom:690.585000px;}
.y129{bottom:691.665000px;}
.y55{bottom:698.505000px;}
.y17d{bottom:698.865000px;}
.y15{bottom:700.305000px;}
.y14b{bottom:704.625000px;}
.yfd{bottom:705.345000px;}
.y99{bottom:707.505000px;}
.ycf{bottom:708.945000px;}
.y128{bottom:710.205000px;}
.y54{bottom:717.045000px;}
.y14{bottom:718.845000px;}
.y14a{bottom:723.345000px;}
.yfc{bottom:723.885000px;}
.y98{bottom:726.045000px;}
.yce{bottom:728.745000px;}
.y17c{bottom:733.965000px;}
.y53{bottom:735.585000px;}
.y13{bottom:737.565000px;}
.y149{bottom:742.245000px;}
.yfa{bottom:742.425000px;}
.y97{bottom:744.765000px;}
.yfb{bottom:746.205000px;}
.ycc{bottom:747.285000px;}
.ycd{bottom:751.065000px;}
.y17b{bottom:751.245000px;}
.y52{bottom:754.125000px;}
.y12{bottom:756.105000px;}
.yf9{bottom:760.965000px;}
.y148{bottom:762.045000px;}
.y95{bottom:763.305000px;}
.ycb{bottom:766.005000px;}
.y96{bottom:767.085000px;}
.y17a{bottom:769.785000px;}
.y51{bottom:772.665000px;}
.y11{bottom:774.645000px;}
.yf7{bottom:779.505000px;}
.y147{bottom:780.585000px;}
.y94{bottom:781.845000px;}
.yf8{bottom:783.285000px;}
.yca{bottom:784.545000px;}
.y179{bottom:788.325000px;}
.y50{bottom:791.205000px;}
.y10{bottom:793.185000px;}
.yf6{bottom:798.045000px;}
.y145{bottom:799.125000px;}
.y93{bottom:800.385000px;}
.y146{bottom:802.905000px;}
.yc9{bottom:803.085000px;}
.y178{bottom:806.865000px;}
.y4f{bottom:809.745000px;}
.yf{bottom:811.725000px;}
.yf5{bottom:816.765000px;}
.y92{bottom:818.925000px;}
.yc8{bottom:821.625000px;}
.y127{bottom:825.405000px;}
.yd{bottom:825.945000px;}
.y4d{bottom:828.285000px;}
.y4e{bottom:832.065000px;}
.yf4{bottom:835.305000px;}
.y91{bottom:837.465000px;}
.yc7{bottom:840.165000px;}
.y177{bottom:844.125000px;}
.yc{bottom:845.565000px;}
.y4c{bottom:847.005000px;}
.yf3{bottom:850.245000px;}
.y90{bottom:856.005000px;}
.yc6{bottom:858.705000px;}
.y126{bottom:862.485000px;}
.y176{bottom:862.665000px;}
.yb{bottom:864.105000px;}
.y4b{bottom:865.545000px;}
.y8f{bottom:874.545000px;}
.yc5{bottom:877.245000px;}
.y175{bottom:881.205000px;}
.ya{bottom:882.645000px;}
.y4a{bottom:884.085000px;}
.y8e{bottom:893.265000px;}
.yc4{bottom:895.785000px;}
.y174{bottom:899.745000px;}
.y9{bottom:901.185000px;}
.y49{bottom:902.625000px;}
.yf0{bottom:905.865000px;}
.y8d{bottom:911.805000px;}
.yc2{bottom:914.505000px;}
.yc3{bottom:918.285000px;}
.y8{bottom:919.770000px;}
.y48{bottom:921.210000px;}
.y8c{bottom:930.390000px;}
.yc1{bottom:933.090000px;}
.y173{bottom:936.870000px;}
.y7{bottom:938.670000px;}
.y47{bottom:939.750000px;}
.y8a{bottom:948.930000px;}
.yc0{bottom:951.630000px;}
.y8b{bottom:952.710000px;}
.y172{bottom:955.410000px;}
.y45{bottom:958.290000px;}
.y6{bottom:958.650000px;}
.yed{bottom:961.710000px;}
.y46{bottom:962.070000px;}
.y89{bottom:967.470000px;}
.ybf{bottom:970.170000px;}
.y171{bottom:973.950000px;}
.y44{bottom:976.830000px;}
.y5{bottom:977.190000px;}
.y88{bottom:986.010000px;}
.ybe{bottom:988.710000px;}
.y170{bottom:992.670000px;}
.y42{bottom:995.550000px;}
.y4{bottom:996.630000px;}
.y43{bottom:999.330000px;}
.y87{bottom:1004.550000px;}
.ybd{bottom:1007.250000px;}
.y125{bottom:1011.030000px;}
.y16f{bottom:1011.210000px;}
.y41{bottom:1014.090000px;}
.y3{bottom:1018.590000px;}
.y86{bottom:1023.090000px;}
.ybc{bottom:1025.790000px;}
.y16e{bottom:1029.390000px;}
.y40{bottom:1032.630000px;}
.yec{bottom:1035.870000px;}
.y2{bottom:1040.550000px;}
.y85{bottom:1041.810000px;}
.ybb{bottom:1044.330000px;}
.y16d{bottom:1046.130000px;}
.y3e{bottom:1051.170000px;}
.y3f{bottom:1054.950000px;}
.y84{bottom:1060.350000px;}
.y1{bottom:1062.330000px;}
.yba{bottom:1063.050000px;}
.y16c{bottom:1063.410000px;}
.y3d{bottom:1069.710000px;}
.ye9{bottom:1073.850000px;}
.y83{bottom:1078.890000px;}
.y31{bottom:1079.070000px;}
.yb9{bottom:1081.590000px;}
.y16b{bottom:1081.950000px;}
.y3c{bottom:1088.250000px;}
.y82{bottom:1097.430000px;}
.yb7{bottom:1100.130000px;}
.y16a{bottom:1100.670000px;}
.y144{bottom:1101.210000px;}
.yb8{bottom:1103.910000px;}
.y3b{bottom:1106.790000px;}
.y81{bottom:1115.970000px;}
.yb6{bottom:1118.670000px;}
.y169{bottom:1119.210000px;}
.y7f{bottom:1134.510000px;}
.y3a{bottom:1135.770000px;}
.yb5{bottom:1137.210000px;}
.y80{bottom:1138.290000px;}
.y168{bottom:1138.470000px;}
.y124{bottom:1140.990000px;}
.y7e{bottom:1148.760000px;}
.y39{bottom:1155.780000px;}
.y7d{bottom:1171.260000px;}
.y38{bottom:1174.320000px;}
.h6{height:15.120000px;}
.h13{height:27.071719px;}
.h11{height:29.077031px;}
.h7{height:36.571289px;}
.h17{height:37.080000px;}
.h9{height:37.599609px;}
.h8{height:40.472227px;}
.ha{height:41.610234px;}
.h3{height:44.860781px;}
.h1c{height:45.316055px;}
.h5{height:46.122187px;}
.h4{height:48.761719px;}
.h10{height:50.132812px;}
.h2{height:52.662656px;}
.hf{height:54.143438px;}
.h14{height:54.390938px;}
.h1a{height:55.620000px;}
.h19{height:55.836000px;}
.he{height:58.655391px;}
.h15{height:60.288750px;}
.h16{height:65.531250px;}
.h12{height:65.884219px;}
.h1b{height:68.084282px;}
.hc{height:73.142578px;}
.h18{height:74.160000px;}
.hd{height:81.432070px;}
.hb{height:139.716000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:37.476000px;}
.w4{width:133.560000px;}
.w3{width:135.036000px;}
.w6{width:141.516000px;}
.w5{width:156.270000px;}
.w7{width:233.715000px;}
.w8{width:513.435000px;}
.wb{width:677.625000px;}
.w9{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:6.840000px;}
.x10{left:8.100000px;}
.xf{left:82.080000px;}
.xd{left:84.959987px;}
.x31{left:93.060000px;}
.x12{left:110.555987px;}
.x1f{left:115.055987px;}
.x2a{left:119.555987px;}
.x4b{left:125.855973px;}
.x32{left:130.536000px;}
.x4c{left:135.575987px;}
.x30{left:140.075987px;}
.x34{left:146.915973px;}
.x4d{left:148.895987px;}
.x35{left:156.629987px;}
.x8{left:161.670000px;}
.x2b{left:165.449973px;}
.x2{left:167.609987px;}
.x13{left:171.569987px;}
.x2c{left:175.169987px;}
.xe{left:184.349987px;}
.x3f{left:255.089973px;}
.x40{left:264.809987px;}
.x44{left:272.009973px;}
.x45{left:281.729987px;}
.x33{left:290.199000px;}
.x1a{left:292.214973px;}
.x1b{left:297.074987px;}
.xa{left:299.055000px;}
.x1e{left:301.034987px;}
.x29{left:302.294987px;}
.x3{left:308.234987px;}
.x41{left:311.654987px;}
.x11{left:315.795000px;}
.x39{left:336.134973px;}
.x5{left:338.114987px;}
.x6{left:341.714987px;}
.x3a{left:345.854987px;}
.x4{left:362.954987px;}
.x7{left:369.614987px;}
.x36{left:379.874987px;}
.xb{left:434.955000px;}
.x46{left:445.214987px;}
.x1{left:446.474987px;}
.x2f{left:459.254987px;}
.x49{left:463.394973px;}
.x4a{left:473.114987px;}
.x42{left:477.254973px;}
.x43{left:487.004987px;}
.x25{left:506.624973px;}
.x26{left:511.484987px;}
.x3d{left:531.824973px;}
.x3e{left:541.544987px;}
.x27{left:548.204973px;}
.x20{left:556.304987px;}
.x28{left:557.924987px;}
.xc{left:592.305000px;}
.x23{left:621.284973px;}
.x24{left:626.144987px;}
.x14{left:630.824973px;}
.x3b{left:632.984973px;}
.x15{left:635.684987px;}
.x3c{left:642.704987px;}
.x47{left:645.044973px;}
.x48{left:654.764987px;}
.x18{left:719.069973px;}
.x19{left:723.929987px;}
.x37{left:732.389973px;}
.x38{left:742.109987px;}
.x16{left:776.669973px;}
.x17{left:781.529987px;}
.x21{left:784.949987px;}
.x2d{left:786.569973px;}
.x2e{left:796.289987px;}
.x22{left:798.809987px;}
.x1c{left:803.129973px;}
.x1d{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-1.376000pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.268800pt;}
.ls20{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.225067pt;}
.ls18{letter-spacing:-0.208533pt;}
.ls16{letter-spacing:-0.129067pt;}
.ls19{letter-spacing:-0.113067pt;}
.ls2{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.013440pt;}
.ls1f{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.046720pt;}
.ls6{letter-spacing:0.081067pt;}
.lsa{letter-spacing:0.087040pt;}
.ls24{letter-spacing:0.106667pt;}
.ls1e{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.189867pt;}
.ls17{letter-spacing:0.193067pt;}
.ls5{letter-spacing:0.241067pt;}
.ls11{letter-spacing:0.274216pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.526933pt;}
.ls1c{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.440000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:3.360000pt;}
.lsc{letter-spacing:4.000000pt;}
.ls15{letter-spacing:7.200000pt;}
.ls13{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:14.880000pt;}
.ls8{letter-spacing:176.320000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws6{word-spacing:-18.801067pt;}
.ws5{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.160000pt;}
.ws7{word-spacing:-17.280000pt;}
.wsc{word-spacing:-14.763520pt;}
.ws2{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.625067pt;}
.ws3{word-spacing:-14.494933pt;}
.wsd{word-spacing:-14.486933pt;}
.wsb{word-spacing:-13.473067pt;}
.ws9{word-spacing:-13.326720pt;}
.wsa{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.888000pt;}
.ws8{word-spacing:0.000000pt;}
._14{margin-left:-4.416000pt;}
._f{margin-left:-3.473920pt;}
._a{margin-left:-2.531840pt;}
._1{margin-left:-1.472000pt;}
._0{width:1.388800pt;}
._2{width:2.570240pt;}
._3{width:3.616000pt;}
._4{width:4.744960pt;}
._8{width:5.711360pt;}
._7{width:7.242240pt;}
._6{width:8.399360pt;}
._5{width:10.068480pt;}
._10{width:11.033173pt;}
._17{width:11.931307pt;}
._13{width:12.835840pt;}
._16{width:14.387840pt;}
._15{width:15.351680pt;}
._e{width:16.721920pt;}
._d{width:17.722880pt;}
._1c{width:20.843520pt;}
._b{width:22.197760pt;}
._c{width:23.198720pt;}
._9{width:24.107093pt;}
._18{width:44.218880pt;}
._19{width:45.160960pt;}
._1d{width:58.287787pt;}
._1e{width:59.312213pt;}
._1b{width:92.736000pt;}
._1a{width:94.061227pt;}
._12{width:95.714560pt;}
._11{width:97.000107pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.200000pt;}
.yeb{bottom:3.840000pt;}
.y37{bottom:10.400000pt;}
.yea{bottom:20.320000pt;}
.yf2{bottom:20.360000pt;}
.y36{bottom:30.240000pt;}
.yef{bottom:36.800000pt;}
.yf1{bottom:37.000000pt;}
.y35{bottom:51.200000pt;}
.yee{bottom:53.280000pt;}
.y34{bottom:74.266667pt;}
.y7c{bottom:79.040000pt;}
.y30{bottom:89.920000pt;}
.y7b{bottom:94.080000pt;}
.y7a{bottom:97.440000pt;}
.y33{bottom:103.386667pt;}
.y79{bottom:108.960000pt;}
.y123{bottom:110.240000pt;}
.y32{bottom:110.426667pt;}
.y143{bottom:112.320000pt;}
.y78{bottom:124.000000pt;}
.y2f{bottom:124.160000pt;}
.y122{bottom:125.280000pt;}
.y77{bottom:127.360000pt;}
.y121{bottom:128.640000pt;}
.y76{bottom:139.040000pt;}
.y120{bottom:140.320000pt;}
.yb4{bottom:142.400000pt;}
.y2e{bottom:148.640000pt;}
.y75{bottom:154.080000pt;}
.y167{bottom:154.560000pt;}
.y11f{bottom:155.360000pt;}
.y74{bottom:157.440000pt;}
.y11e{bottom:158.720000pt;}
.y73{bottom:168.960000pt;}
.y11d{bottom:170.240000pt;}
.yb3{bottom:172.320000pt;}
.y2d{bottom:175.680000pt;}
.y166{bottom:181.920000pt;}
.y72{bottom:184.000000pt;}
.y11c{bottom:185.280000pt;}
.y71{bottom:187.360000pt;}
.y11b{bottom:188.640000pt;}
.y165{bottom:196.960000pt;}
.y70{bottom:199.040000pt;}
.y11a{bottom:200.320000pt;}
.yb2{bottom:202.400000pt;}
.y2c{bottom:202.720000pt;}
.y164{bottom:212.026667pt;}
.y6f{bottom:214.106667pt;}
.ye8{bottom:214.586667pt;}
.y119{bottom:215.386667pt;}
.y6e{bottom:217.466667pt;}
.y118{bottom:218.746667pt;}
.y163{bottom:227.386667pt;}
.y6d{bottom:228.986667pt;}
.y2b{bottom:229.626667pt;}
.y117{bottom:230.746667pt;}
.y6c{bottom:232.346667pt;}
.y162{bottom:243.866667pt;}
.y142{bottom:244.026667pt;}
.y6b{bottom:244.506667pt;}
.ye7{bottom:248.826667pt;}
.y2a{bottom:256.666667pt;}
.y141{bottom:259.066667pt;}
.y161{bottom:260.346667pt;}
.y140{bottom:262.426667pt;}
.y116{bottom:262.906667pt;}
.yb0{bottom:264.346667pt;}
.ye6{bottom:265.306667pt;}
.yb1{bottom:267.706667pt;}
.y13f{bottom:274.586667pt;}
.y160{bottom:276.826667pt;}
.y115{bottom:279.386667pt;}
.yaf{bottom:280.826667pt;}
.ye5{bottom:281.786667pt;}
.y29{bottom:283.706667pt;}
.y15f{bottom:293.306667pt;}
.y114{bottom:295.866667pt;}
.yae{bottom:297.306667pt;}
.ye4{bottom:298.266667pt;}
.y13e{bottom:301.306667pt;}
.y6a{bottom:307.226667pt;}
.y15e{bottom:309.466667pt;}
.y28{bottom:310.746667pt;}
.y113{bottom:312.346667pt;}
.yad{bottom:313.946667pt;}
.ye2{bottom:314.746667pt;}
.y13d{bottom:317.786667pt;}
.ye3{bottom:318.106667pt;}
.y69{bottom:323.706667pt;}
.y15d{bottom:324.826667pt;}
.y27{bottom:327.866667pt;}
.y112{bottom:328.826667pt;}
.yac{bottom:330.426667pt;}
.ye1{bottom:331.226667pt;}
.y13c{bottom:334.266667pt;}
.y68{bottom:340.186667pt;}
.y18d{bottom:340.986667pt;}
.y15c{bottom:341.306667pt;}
.y26{bottom:341.946667pt;}
.y111{bottom:345.306667pt;}
.yab{bottom:346.906667pt;}
.ye0{bottom:347.706667pt;}
.y13b{bottom:350.746667pt;}
.y67{bottom:356.826667pt;}
.y15b{bottom:357.786667pt;}
.y25{bottom:358.426667pt;}
.y18c{bottom:358.746667pt;}
.y110{bottom:361.786667pt;}
.yaa{bottom:363.386667pt;}
.ydf{bottom:364.186667pt;}
.y13a{bottom:367.226667pt;}
.y66{bottom:373.306667pt;}
.y15a{bottom:374.266667pt;}
.y24{bottom:374.906667pt;}
.y18b{bottom:375.226667pt;}
.y10f{bottom:378.266667pt;}
.ya9{bottom:379.866667pt;}
.yde{bottom:380.826667pt;}
.y139{bottom:383.706667pt;}
.y65{bottom:389.786667pt;}
.y159{bottom:390.906667pt;}
.y23{bottom:391.546667pt;}
.y18a{bottom:391.706667pt;}
.y10e{bottom:394.906667pt;}
.ya8{bottom:396.346667pt;}
.ydd{bottom:397.306667pt;}
.y137{bottom:400.186667pt;}
.y138{bottom:403.546667pt;}
.y63{bottom:406.266667pt;}
.y158{bottom:407.386667pt;}
.y22{bottom:408.026667pt;}
.y189{bottom:408.186667pt;}
.y64{bottom:409.666667pt;}
.y10d{bottom:411.426667pt;}
.ya7{bottom:412.866667pt;}
.ydc{bottom:413.826667pt;}
.y136{bottom:416.866667pt;}
.y62{bottom:422.786667pt;}
.y157{bottom:423.906667pt;}
.y21{bottom:424.546667pt;}
.y188{bottom:424.706667pt;}
.y10b{bottom:428.866667pt;}
.ya6{bottom:429.666667pt;}
.ydb{bottom:430.306667pt;}
.y10c{bottom:432.226667pt;}
.y135{bottom:433.346667pt;}
.y61{bottom:439.266667pt;}
.y156{bottom:440.386667pt;}
.y20{bottom:441.026667pt;}
.y187{bottom:441.186667pt;}
.y10a{bottom:445.346667pt;}
.yda{bottom:446.786667pt;}
.ya5{bottom:447.426667pt;}
.y134{bottom:449.826667pt;}
.y60{bottom:455.746667pt;}
.y155{bottom:457.186667pt;}
.y1f{bottom:457.506667pt;}
.y186{bottom:457.666667pt;}
.y109{bottom:461.986667pt;}
.yd9{bottom:463.266667pt;}
.ya4{bottom:463.906667pt;}
.y132{bottom:466.306667pt;}
.y133{bottom:469.666667pt;}
.y5f{bottom:472.226667pt;}
.y1e{bottom:473.986667pt;}
.y185{bottom:474.306667pt;}
.y154{bottom:475.106667pt;}
.y108{bottom:478.466667pt;}
.yd8{bottom:480.066667pt;}
.ya3{bottom:480.386667pt;}
.y131{bottom:482.786667pt;}
.y5d{bottom:488.866667pt;}
.y1d{bottom:490.466667pt;}
.y184{bottom:490.786667pt;}
.y5e{bottom:492.226667pt;}
.y153{bottom:493.186667pt;}
.y107{bottom:494.946667pt;}
.ya2{bottom:496.866667pt;}
.yd7{bottom:497.826667pt;}
.y130{bottom:499.266667pt;}
.y5c{bottom:505.346667pt;}
.y1c{bottom:506.946667pt;}
.y152{bottom:510.946667pt;}
.y106{bottom:511.426667pt;}
.ya1{bottom:513.346667pt;}
.yd6{bottom:514.306667pt;}
.y12f{bottom:515.746667pt;}
.y5b{bottom:521.826667pt;}
.y183{bottom:522.306667pt;}
.y1b{bottom:523.586667pt;}
.y151{bottom:527.426667pt;}
.y105{bottom:527.906667pt;}
.y9f{bottom:529.986667pt;}
.yd5{bottom:530.786667pt;}
.y12e{bottom:532.226667pt;}
.ya0{bottom:533.346667pt;}
.y5a{bottom:538.306667pt;}
.y182{bottom:538.786667pt;}
.y1a{bottom:540.066667pt;}
.y150{bottom:543.906667pt;}
.y104{bottom:544.386667pt;}
.y9e{bottom:546.466667pt;}
.yd4{bottom:547.266667pt;}
.y12d{bottom:548.866667pt;}
.y59{bottom:554.786667pt;}
.y181{bottom:555.266667pt;}
.y19{bottom:556.546667pt;}
.y14f{bottom:560.386667pt;}
.y103{bottom:560.866667pt;}
.y9d{bottom:562.946667pt;}
.yd3{bottom:563.746667pt;}
.y12c{bottom:565.346667pt;}
.y58{bottom:571.266667pt;}
.y180{bottom:571.746667pt;}
.y18{bottom:573.026667pt;}
.y14e{bottom:576.866667pt;}
.y101{bottom:577.346667pt;}
.y9c{bottom:579.426667pt;}
.yd2{bottom:580.226667pt;}
.y102{bottom:580.706667pt;}
.y12b{bottom:581.826667pt;}
.y57{bottom:587.746667pt;}
.y17f{bottom:588.226667pt;}
.y17{bottom:589.506667pt;}
.y14d{bottom:593.346667pt;}
.y100{bottom:593.986667pt;}
.y9b{bottom:595.906667pt;}
.yd1{bottom:596.866667pt;}
.y12a{bottom:598.306667pt;}
.y56{bottom:604.226667pt;}
.y17e{bottom:604.706667pt;}
.y16{bottom:605.986667pt;}
.y14c{bottom:609.826667pt;}
.yfe{bottom:610.466667pt;}
.y9a{bottom:612.386667pt;}
.yd0{bottom:613.373333pt;}
.yff{bottom:613.853333pt;}
.y129{bottom:614.813333pt;}
.y55{bottom:620.893333pt;}
.y17d{bottom:621.213333pt;}
.y15{bottom:622.493333pt;}
.y14b{bottom:626.333333pt;}
.yfd{bottom:626.973333pt;}
.y99{bottom:628.893333pt;}
.ycf{bottom:630.173333pt;}
.y128{bottom:631.293333pt;}
.y54{bottom:637.373333pt;}
.y14{bottom:638.973333pt;}
.y14a{bottom:642.973333pt;}
.yfc{bottom:643.453333pt;}
.y98{bottom:645.373333pt;}
.yce{bottom:647.773333pt;}
.y17c{bottom:652.413333pt;}
.y53{bottom:653.853333pt;}
.y13{bottom:655.613333pt;}
.y149{bottom:659.773333pt;}
.yfa{bottom:659.933333pt;}
.y97{bottom:662.013333pt;}
.yfb{bottom:663.293333pt;}
.ycc{bottom:664.253333pt;}
.ycd{bottom:667.613333pt;}
.y17b{bottom:667.773333pt;}
.y52{bottom:670.333333pt;}
.y12{bottom:672.093333pt;}
.yf9{bottom:676.413333pt;}
.y148{bottom:677.373333pt;}
.y95{bottom:678.493333pt;}
.ycb{bottom:680.893333pt;}
.y96{bottom:681.853333pt;}
.y17a{bottom:684.253333pt;}
.y51{bottom:686.813333pt;}
.y11{bottom:688.573333pt;}
.yf7{bottom:692.893333pt;}
.y147{bottom:693.853333pt;}
.y94{bottom:694.973333pt;}
.yf8{bottom:696.253333pt;}
.yca{bottom:697.373333pt;}
.y179{bottom:700.733333pt;}
.y50{bottom:703.293333pt;}
.y10{bottom:705.053333pt;}
.yf6{bottom:709.373333pt;}
.y145{bottom:710.333333pt;}
.y93{bottom:711.453333pt;}
.y146{bottom:713.693333pt;}
.yc9{bottom:713.853333pt;}
.y178{bottom:717.213333pt;}
.y4f{bottom:719.773333pt;}
.yf{bottom:721.533333pt;}
.yf5{bottom:726.013333pt;}
.y92{bottom:727.933333pt;}
.yc8{bottom:730.333333pt;}
.y127{bottom:733.693333pt;}
.yd{bottom:734.173333pt;}
.y4d{bottom:736.253333pt;}
.y4e{bottom:739.613333pt;}
.yf4{bottom:742.493333pt;}
.y91{bottom:744.413333pt;}
.yc7{bottom:746.813333pt;}
.y177{bottom:750.333333pt;}
.yc{bottom:751.613333pt;}
.y4c{bottom:752.893333pt;}
.yf3{bottom:755.773333pt;}
.y90{bottom:760.893333pt;}
.yc6{bottom:763.293333pt;}
.y126{bottom:766.653333pt;}
.y176{bottom:766.813333pt;}
.yb{bottom:768.093333pt;}
.y4b{bottom:769.373333pt;}
.y8f{bottom:777.373333pt;}
.yc5{bottom:779.773333pt;}
.y175{bottom:783.293333pt;}
.ya{bottom:784.573333pt;}
.y4a{bottom:785.853333pt;}
.y8e{bottom:794.013333pt;}
.yc4{bottom:796.253333pt;}
.y174{bottom:799.773333pt;}
.y9{bottom:801.053333pt;}
.y49{bottom:802.333333pt;}
.yf0{bottom:805.213333pt;}
.y8d{bottom:810.493333pt;}
.yc2{bottom:812.893333pt;}
.yc3{bottom:816.253333pt;}
.y8{bottom:817.573333pt;}
.y48{bottom:818.853333pt;}
.y8c{bottom:827.013333pt;}
.yc1{bottom:829.413333pt;}
.y173{bottom:832.773333pt;}
.y7{bottom:834.373333pt;}
.y47{bottom:835.333333pt;}
.y8a{bottom:843.493333pt;}
.yc0{bottom:845.893333pt;}
.y8b{bottom:846.853333pt;}
.y172{bottom:849.253333pt;}
.y45{bottom:851.813333pt;}
.y6{bottom:852.133333pt;}
.yed{bottom:854.853333pt;}
.y46{bottom:855.173333pt;}
.y89{bottom:859.973333pt;}
.ybf{bottom:862.373333pt;}
.y171{bottom:865.733333pt;}
.y44{bottom:868.293333pt;}
.y5{bottom:868.613333pt;}
.y88{bottom:876.453333pt;}
.ybe{bottom:878.853333pt;}
.y170{bottom:882.373333pt;}
.y42{bottom:884.933333pt;}
.y4{bottom:885.893333pt;}
.y43{bottom:888.293333pt;}
.y87{bottom:892.933333pt;}
.ybd{bottom:895.333333pt;}
.y125{bottom:898.693333pt;}
.y16f{bottom:898.853333pt;}
.y41{bottom:901.413333pt;}
.y3{bottom:905.413333pt;}
.y86{bottom:909.413333pt;}
.ybc{bottom:911.813333pt;}
.y16e{bottom:915.013333pt;}
.y40{bottom:917.893333pt;}
.yec{bottom:920.773333pt;}
.y2{bottom:924.933333pt;}
.y85{bottom:926.053333pt;}
.ybb{bottom:928.293333pt;}
.y16d{bottom:929.893333pt;}
.y3e{bottom:934.373333pt;}
.y3f{bottom:937.733333pt;}
.y84{bottom:942.533333pt;}
.y1{bottom:944.293333pt;}
.yba{bottom:944.933333pt;}
.y16c{bottom:945.253333pt;}
.y3d{bottom:950.853333pt;}
.ye9{bottom:954.533333pt;}
.y83{bottom:959.013333pt;}
.y31{bottom:959.173333pt;}
.yb9{bottom:961.413333pt;}
.y16b{bottom:961.733333pt;}
.y3c{bottom:967.333333pt;}
.y82{bottom:975.493333pt;}
.yb7{bottom:977.893333pt;}
.y16a{bottom:978.373333pt;}
.y144{bottom:978.853333pt;}
.yb8{bottom:981.253333pt;}
.y3b{bottom:983.813333pt;}
.y81{bottom:991.973333pt;}
.yb6{bottom:994.373333pt;}
.y169{bottom:994.853333pt;}
.y7f{bottom:1008.453333pt;}
.y3a{bottom:1009.573333pt;}
.yb5{bottom:1010.853333pt;}
.y80{bottom:1011.813333pt;}
.y168{bottom:1011.973333pt;}
.y124{bottom:1014.213333pt;}
.y7e{bottom:1021.120000pt;}
.y39{bottom:1027.360000pt;}
.y7d{bottom:1041.120000pt;}
.y38{bottom:1043.840000pt;}
.h6{height:13.440000pt;}
.h13{height:24.063750pt;}
.h11{height:25.846250pt;}
.h7{height:32.507812pt;}
.h17{height:32.960000pt;}
.h9{height:33.421875pt;}
.h8{height:35.975313pt;}
.ha{height:36.986875pt;}
.h3{height:39.876250pt;}
.h1c{height:40.280938pt;}
.h5{height:40.997500pt;}
.h4{height:43.343750pt;}
.h10{height:44.562500pt;}
.h2{height:46.811250pt;}
.hf{height:48.127500pt;}
.h14{height:48.347500pt;}
.h1a{height:49.440000pt;}
.h19{height:49.632000pt;}
.he{height:52.138125pt;}
.h15{height:53.590000pt;}
.h16{height:58.250000pt;}
.h12{height:58.563750pt;}
.h1b{height:60.519362pt;}
.hc{height:65.015625pt;}
.h18{height:65.920000pt;}
.hd{height:72.384062pt;}
.hb{height:124.192000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:33.312000pt;}
.w4{width:118.720000pt;}
.w3{width:120.032000pt;}
.w6{width:125.792000pt;}
.w5{width:138.906667pt;}
.w7{width:207.746667pt;}
.w8{width:456.386667pt;}
.wb{width:602.333333pt;}
.w9{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.080000pt;}
.x10{left:7.200000pt;}
.xf{left:72.960000pt;}
.xd{left:75.519988pt;}
.x31{left:82.720000pt;}
.x12{left:98.271988pt;}
.x1f{left:102.271988pt;}
.x2a{left:106.271988pt;}
.x4b{left:111.871976pt;}
.x32{left:116.032000pt;}
.x4c{left:120.511988pt;}
.x30{left:124.511988pt;}
.x34{left:130.591976pt;}
.x4d{left:132.351988pt;}
.x35{left:139.226655pt;}
.x8{left:143.706667pt;}
.x2b{left:147.066643pt;}
.x2{left:148.986655pt;}
.x13{left:152.506655pt;}
.x2c{left:155.706655pt;}
.xe{left:163.866655pt;}
.x3f{left:226.746643pt;}
.x40{left:235.386655pt;}
.x44{left:241.786643pt;}
.x45{left:250.426655pt;}
.x33{left:257.954667pt;}
.x1a{left:259.746643pt;}
.x1b{left:264.066655pt;}
.xa{left:265.826667pt;}
.x1e{left:267.586655pt;}
.x29{left:268.706655pt;}
.x3{left:273.986655pt;}
.x41{left:277.026655pt;}
.x11{left:280.706667pt;}
.x39{left:298.786643pt;}
.x5{left:300.546655pt;}
.x6{left:303.746655pt;}
.x3a{left:307.426655pt;}
.x4{left:322.626655pt;}
.x7{left:328.546655pt;}
.x36{left:337.666655pt;}
.xb{left:386.626667pt;}
.x46{left:395.746655pt;}
.x1{left:396.866655pt;}
.x2f{left:408.226655pt;}
.x49{left:411.906643pt;}
.x4a{left:420.546655pt;}
.x42{left:424.226643pt;}
.x43{left:432.893322pt;}
.x25{left:450.333310pt;}
.x26{left:454.653322pt;}
.x3d{left:472.733310pt;}
.x3e{left:481.373322pt;}
.x27{left:487.293310pt;}
.x20{left:494.493322pt;}
.x28{left:495.933322pt;}
.xc{left:526.493333pt;}
.x23{left:552.253310pt;}
.x24{left:556.573322pt;}
.x14{left:560.733310pt;}
.x3b{left:562.653310pt;}
.x15{left:565.053322pt;}
.x3c{left:571.293322pt;}
.x47{left:573.373310pt;}
.x48{left:582.013322pt;}
.x18{left:639.173310pt;}
.x19{left:643.493322pt;}
.x37{left:651.013310pt;}
.x38{left:659.653322pt;}
.x16{left:690.373310pt;}
.x17{left:694.693322pt;}
.x21{left:697.733322pt;}
.x2d{left:699.173310pt;}
.x2e{left:707.813322pt;}
.x22{left:710.053322pt;}
.x1c{left:713.893310pt;}
.x1d{left:718.213322pt;}
}




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