
    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_259446dbe5ec8e953aa89e25.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_643279d96c4869de50e2ff03.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f79d387abff85c6711935ed2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_696aadf63e65c0afdbd2f385.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_98b80da6d4bf613dc14da5b9.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_011e287cd37ceab0e73c8870.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-72.720000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.567600px;}
.ls3{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.305400px;}
.ls19{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.152400px;}
.lsd{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.008640px;}
.ls15{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.109200px;}
.ls10{letter-spacing:0.109440px;}
.ls18{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.305400px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.ls13{letter-spacing:5.040000px;}
.ls14{letter-spacing:11.520000px;}
.ls16{letter-spacing:54.864000px;}
.ls1{letter-spacing:326.460000px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.ws5{word-spacing:-21.060000px;}
.wsf{word-spacing:-19.457280px;}
.ws12{word-spacing:-19.448640px;}
.ws11{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.254600px;}
.wse{word-spacing:-15.948000px;}
.wsb{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.888000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-5.025600px;}
._7{margin-left:-3.974400px;}
._4{margin-left:-2.801520px;}
._0{margin-left:-1.329120px;}
._3{width:1.034640px;}
._6{width:2.287920px;}
._5{width:3.348000px;}
._8{width:5.310000px;}
._10{width:6.425280px;}
._a{width:7.485120px;}
._9{width:8.880480px;}
._2{width:10.035360px;}
._1{width:11.340000px;}
._b{width:13.353600px;}
._f{width:14.440320px;}
._11{width:15.531600px;}
._c{width:18.480960px;}
._e{width:20.692320px;}
._d{width:21.744000px;}
._12{width:30.384000px;}
.fc3{color:rgb(47,78,79);}
.fc5{color:rgb(67,67,67);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(41,37,38);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y79{bottom:3.600000px;}
.yb4{bottom:3.645000px;}
.y7d{bottom:3.780000px;}
.y7b{bottom:22.680000px;}
.y64{bottom:24.480000px;}
.y62{bottom:88.236000px;}
.y34{bottom:92.376000px;}
.y61{bottom:105.336000px;}
.y60{bottom:110.556000px;}
.y33{bottom:113.256000px;}
.y5f{bottom:122.616000px;}
.y121{bottom:123.336000px;}
.y5e{bottom:127.836000px;}
.y32{bottom:134.136000px;}
.y8d{bottom:139.896000px;}
.y5d{bottom:140.616000px;}
.y8c{bottom:145.116000px;}
.y31{bottom:155.010000px;}
.y8b{bottom:157.170000px;}
.yb8{bottom:162.390000px;}
.y143{bottom:167.610000px;}
.y8a{bottom:174.450000px;}
.yb7{bottom:175.170000px;}
.y30{bottom:175.890000px;}
.y108{bottom:180.030000px;}
.y120{bottom:189.210000px;}
.y142{bottom:189.750000px;}
.y89{bottom:191.730000px;}
.y2f{bottom:196.770000px;}
.y88{bottom:196.950000px;}
.y5c{bottom:198.570000px;}
.y107{bottom:200.550000px;}
.y87{bottom:209.550000px;}
.y11f{bottom:211.530000px;}
.y2e{bottom:217.650000px;}
.ye0{bottom:218.730000px;}
.y106{bottom:221.070000px;}
.yb6{bottom:222.150000px;}
.y141{bottom:232.050000px;}
.y11e{bottom:233.130000px;}
.y2d{bottom:238.530000px;}
.y5b{bottom:240.150000px;}
.y105{bottom:241.410000px;}
.y85{bottom:243.570000px;}
.y86{bottom:249.510000px;}
.ydf{bottom:251.130000px;}
.y11d{bottom:253.650000px;}
.y140{bottom:256.170000px;}
.yb5{bottom:258.150000px;}
.y2c{bottom:259.410000px;}
.y104{bottom:261.930000px;}
.y84{bottom:263.910000px;}
.y11c{bottom:274.170000px;}
.yb3{bottom:277.950000px;}
.y13f{bottom:280.110000px;}
.y2b{bottom:280.290000px;}
.y5a{bottom:281.595000px;}
.y103{bottom:282.495000px;}
.yde{bottom:283.755000px;}
.y83{bottom:284.475000px;}
.yb2{bottom:297.615000px;}
.y2a{bottom:301.215000px;}
.y102{bottom:303.015000px;}
.y13e{bottom:304.455000px;}
.y82{bottom:304.995000px;}
.y11b{bottom:306.615000px;}
.ydd{bottom:316.155000px;}
.y29{bottom:321.915000px;}
.yb1{bottom:322.815000px;}
.y59{bottom:323.175000px;}
.y81{bottom:325.515000px;}
.y11a{bottom:327.135000px;}
.y101{bottom:335.415000px;}
.ydb{bottom:336.675000px;}
.ydc{bottom:342.615000px;}
.y28{bottom:342.795000px;}
.y58{bottom:343.515000px;}
.y80{bottom:346.035000px;}
.y119{bottom:347.655000px;}
.y13d{bottom:349.995000px;}
.y100{bottom:351.615000px;}
.yda{bottom:357.195000px;}
.yb0{bottom:361.335000px;}
.y27{bottom:363.675000px;}
.y57{bottom:364.035000px;}
.y7f{bottom:366.375000px;}
.y118{bottom:368.175000px;}
.y13c{bottom:372.675000px;}
.yd9{bottom:377.535000px;}
.yaf{bottom:381.675000px;}
.y26{bottom:384.555000px;}
.yff{bottom:390.315000px;}
.yd8{bottom:398.055000px;}
.y7e{bottom:399.495000px;}
.y117{bottom:400.575000px;}
.yae{bottom:402.195000px;}
.y25{bottom:405.435000px;}
.y56{bottom:405.615000px;}
.yfe{bottom:410.115000px;}
.y7c{bottom:416.235000px;}
.y13b{bottom:418.035000px;}
.y116{bottom:421.095000px;}
.yad{bottom:422.715000px;}
.y55{bottom:425.955000px;}
.y24{bottom:426.315000px;}
.yfd{bottom:429.735000px;}
.yd6{bottom:430.635000px;}
.yd7{bottom:436.575000px;}
.y115{bottom:441.615000px;}
.yab{bottom:443.235000px;}
.y54{bottom:446.475000px;}
.y23{bottom:447.195000px;}
.yac{bottom:449.175000px;}
.yfc{bottom:449.535000px;}
.yd5{bottom:450.975000px;}
.y114{bottom:461.955000px;}
.y13a{bottom:463.395000px;}
.yaa{bottom:463.575000px;}
.y53{bottom:466.995000px;}
.y22{bottom:468.075000px;}
.yfb{bottom:469.155000px;}
.yd3{bottom:471.495000px;}
.yd4{bottom:477.435000px;}
.ya9{bottom:484.095000px;}
.y139{bottom:486.255000px;}
.y52{bottom:487.515000px;}
.y21{bottom:488.955000px;}
.yd2{bottom:492.015000px;}
.yfa{bottom:494.355000px;}
.y113{bottom:494.535000px;}
.ya8{bottom:504.615000px;}
.y138{bottom:508.935000px;}
.y20{bottom:509.835000px;}
.yd0{bottom:512.535000px;}
.y112{bottom:515.055000px;}
.yd1{bottom:518.475000px;}
.ya7{bottom:525.135000px;}
.y51{bottom:528.915000px;}
.y1f{bottom:530.715000px;}
.ycf{bottom:532.875000px;}
.y137{bottom:533.055000px;}
.y7a{bottom:533.235000px;}
.y111{bottom:535.395000px;}
.ya6{bottom:545.475000px;}
.y50{bottom:549.435000px;}
.y1e{bottom:551.595000px;}
.yf9{bottom:553.395000px;}
.y136{bottom:555.735000px;}
.y110{bottom:555.915000px;}
.yce{bottom:565.485000px;}
.ya5{bottom:566.025000px;}
.y4f{bottom:569.985000px;}
.y78{bottom:571.245000px;}
.y1d{bottom:572.505000px;}
.yf8{bottom:573.765000px;}
.y135{bottom:579.885000px;}
.ycd{bottom:585.825000px;}
.ya4{bottom:586.545000px;}
.y10f{bottom:588.345000px;}
.y4e{bottom:590.325000px;}
.y1c{bottom:593.385000px;}
.yf7{bottom:594.285000px;}
.y134{bottom:602.565000px;}
.ycc{bottom:606.345000px;}
.y77{bottom:607.245000px;}
.y10e{bottom:608.865000px;}
.y1b{bottom:614.265000px;}
.yf6{bottom:614.805000px;}
.ya3{bottom:619.665000px;}
.y133{bottom:626.685000px;}
.y75{bottom:627.585000px;}
.y10d{bottom:629.385000px;}
.y4d{bottom:631.905000px;}
.y76{bottom:633.525000px;}
.y1a{bottom:635.145000px;}
.yf5{bottom:635.325000px;}
.ya2{bottom:637.125000px;}
.ycb{bottom:638.925000px;}
.y74{bottom:648.105000px;}
.y132{bottom:649.545000px;}
.y10c{bottom:651.345000px;}
.y4c{bottom:652.425000px;}
.yf4{bottom:655.665000px;}
.y19{bottom:656.025000px;}
.ya1{bottom:656.745000px;}
.yca{bottom:659.265000px;}
.y131{bottom:672.225000px;}
.y4b{bottom:672.765000px;}
.ya0{bottom:676.545000px;}
.y18{bottom:677.445000px;}
.yc9{bottom:679.785000px;}
.y73{bottom:681.225000px;}
.yf3{bottom:688.245000px;}
.y4a{bottom:693.285000px;}
.y130{bottom:696.165000px;}
.y9f{bottom:696.345000px;}
.y10b{bottom:699.585000px;}
.yc8{bottom:700.305000px;}
.y17{bottom:701.025000px;}
.y72{bottom:703.545000px;}
.yf2{bottom:704.445000px;}
.y49{bottom:713.805000px;}
.y12f{bottom:720.465000px;}
.yc7{bottom:720.825000px;}
.y9e{bottom:721.365000px;}
.yf1{bottom:724.065000px;}
.y48{bottom:734.325000px;}
.y71{bottom:737.925000px;}
.yc6{bottom:741.165000px;}
.y12e{bottom:742.965000px;}
.yf0{bottom:743.865000px;}
.y16{bottom:744.405000px;}
.y47{bottom:754.665000px;}
.y9d{bottom:759.885000px;}
.y70{bottom:761.145000px;}
.yc5{bottom:761.685000px;}
.yef{bottom:763.665000px;}
.y12d{bottom:767.265000px;}
.y15{bottom:768.525000px;}
.y14{bottom:780.225000px;}
.y9c{bottom:780.405000px;}
.yc4{bottom:782.205000px;}
.yee{bottom:788.685000px;}
.y12c{bottom:789.945000px;}
.y45{bottom:796.245000px;}
.y13{bottom:798.585000px;}
.y9b{bottom:800.745000px;}
.y46{bottom:802.185000px;}
.yc3{bottom:802.725000px;}
.y6e{bottom:812.625000px;}
.y12{bottom:814.065000px;}
.y44{bottom:816.585000px;}
.y6f{bottom:818.565000px;}
.yed{bottom:827.205000px;}
.y11{bottom:829.545000px;}
.y6d{bottom:833.145000px;}
.y9a{bottom:833.325000px;}
.yc2{bottom:835.665000px;}
.y12b{bottom:836.745000px;}
.y43{bottom:838.725000px;}
.y10{bottom:845.025000px;}
.yec{bottom:847.770000px;}
.y6c{bottom:853.710000px;}
.y99{bottom:853.890000px;}
.y12a{bottom:859.470000px;}
.yf{bottom:860.730000px;}
.yeb{bottom:868.110000px;}
.yc1{bottom:870.090000px;}
.y6b{bottom:874.230000px;}
.ye{bottom:876.210000px;}
.y129{bottom:883.770000px;}
.yea{bottom:888.630000px;}
.y42{bottom:890.610000px;}
.yd{bottom:891.690000px;}
.y6a{bottom:894.570000px;}
.y98{bottom:894.750000px;}
.yc0{bottom:903.930000px;}
.y128{bottom:906.270000px;}
.yc{bottom:907.170000px;}
.ye9{bottom:909.150000px;}
.y41{bottom:911.490000px;}
.y69{bottom:915.090000px;}
.y97{bottom:915.270000px;}
.yb{bottom:922.830000px;}
.ybf{bottom:924.270000px;}
.y40{bottom:932.370000px;}
.y95{bottom:935.790000px;}
.ya{bottom:938.310000px;}
.y96{bottom:941.730000px;}
.ye8{bottom:942.270000px;}
.ybe{bottom:944.790000px;}
.y127{bottom:951.810000px;}
.y3f{bottom:953.250000px;}
.y9{bottom:953.790000px;}
.y94{bottom:956.130000px;}
.y68{bottom:956.670000px;}
.ye7{bottom:959.730000px;}
.ybd{bottom:965.310000px;}
.y8{bottom:969.270000px;}
.y67{bottom:972.870000px;}
.y3e{bottom:974.130000px;}
.y7{bottom:984.930000px;}
.ybc{bottom:985.830000px;}
.y93{bottom:989.250000px;}
.y3d{bottom:995.010000px;}
.y126{bottom:996.990000px;}
.ye6{bottom:998.430000px;}
.y6{bottom:1000.410000px;}
.ybb{bottom:1006.170000px;}
.y92{bottom:1011.570000px;}
.y66{bottom:1013.550000px;}
.y3c{bottom:1015.890000px;}
.y125{bottom:1021.110000px;}
.yba{bottom:1026.690000px;}
.y5{bottom:1034.790000px;}
.y3b{bottom:1036.770000px;}
.ye5{bottom:1037.130000px;}
.y124{bottom:1045.230000px;}
.y91{bottom:1045.950000px;}
.y4{bottom:1052.790000px;}
.y65{bottom:1054.230000px;}
.ye4{bottom:1056.750000px;}
.y3a{bottom:1057.650000px;}
.yb9{bottom:1059.270000px;}
.y3{bottom:1072.410000px;}
.ye3{bottom:1076.550000px;}
.y39{bottom:1078.530000px;}
.y90{bottom:1079.610000px;}
.y10a{bottom:1088.070000px;}
.y123{bottom:1090.770000px;}
.y63{bottom:1094.910000px;}
.ye2{bottom:1096.170000px;}
.y2{bottom:1099.050000px;}
.y38{bottom:1099.410000px;}
.y8f{bottom:1100.130000px;}
.ye1{bottom:1115.970000px;}
.y36{bottom:1120.290000px;}
.y8e{bottom:1120.650000px;}
.y37{bottom:1126.230000px;}
.y109{bottom:1126.590000px;}
.y1{bottom:1132.920000px;}
.y122{bottom:1136.880000px;}
.y35{bottom:1141.200000px;}
.h12{height:18.900000px;}
.h17{height:18.936000px;}
.h16{height:19.080000px;}
.h7{height:35.332031px;}
.h18{height:37.980000px;}
.h13{height:38.016000px;}
.hd{height:38.158594px;}
.h11{height:39.960000px;}
.h10{height:39.996000px;}
.hb{height:40.985156px;}
.h4{height:52.971680px;}
.h5{height:52.998047px;}
.he{height:58.651172px;}
.ha{height:59.383125px;}
.h15{height:64.978594px;}
.h9{height:65.010937px;}
.hc{height:65.884219px;}
.hf{height:66.757500px;}
.h3{height:70.664062px;}
.h6{height:72.562500px;}
.h1a{height:74.004654px;}
.h19{height:78.367500px;}
.h8{height:84.898125px;}
.h2{height:103.038750px;}
.h14{height:117.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:168.870000px;}
.w16{width:169.230000px;}
.w13{width:169.770000px;}
.w19{width:179.670000px;}
.w8{width:179.850000px;}
.w6{width:180.210000px;}
.w5{width:180.570000px;}
.w14{width:185.430000px;}
.w11{width:186.150000px;}
.w7{width:190.290000px;}
.w15{width:190.470000px;}
.w4{width:190.650000px;}
.w12{width:191.190000px;}
.w17{width:191.550000px;}
.w1c{width:201.090000px;}
.w1a{width:201.630000px;}
.wa{width:236.595000px;}
.w10{width:239.970000px;}
.wf{width:240.015000px;}
.we{width:240.330000px;}
.wc{width:240.375000px;}
.wd{width:240.690000px;}
.wb{width:243.210000px;}
.w1d{width:275.655000px;}
.w1b{width:276.015000px;}
.w9{width:723.030000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.776000px;}
.x16{left:48.420000px;}
.x14{left:60.660000px;}
.x1{left:84.959987px;}
.x8{left:89.819987px;}
.x29{left:94.715987px;}
.x32{left:111.995987px;}
.x11{left:118.110000px;}
.x13{left:121.500000px;}
.x33{left:138.995987px;}
.x1a{left:151.949973px;}
.x1b{left:157.169987px;}
.x2{left:169.949987px;}
.x17{left:229.035000px;}
.x18{left:235.830000px;}
.x1e{left:240.689987px;}
.xd{left:250.949973px;}
.x2a{left:255.090000px;}
.xe{left:256.169987px;}
.x30{left:270.569987px;}
.xa{left:276.510000px;}
.x2d{left:287.130000px;}
.x7{left:301.034987px;}
.x19{left:315.974973px;}
.x12{left:321.555000px;}
.x1c{left:326.235000px;}
.x3{left:329.474973px;}
.x4{left:334.694987px;}
.x25{left:349.274973px;}
.x21{left:351.974973px;}
.x22{left:357.194987px;}
.x26{left:359.714987px;}
.x2b{left:435.675000px;}
.xb{left:457.095000px;}
.x1f{left:462.675000px;}
.x27{left:474.554973px;}
.x28{left:484.994987px;}
.x15{left:564.765000px;}
.x1d{left:566.925000px;}
.x2c{left:616.245000px;}
.x5{left:636.764973px;}
.xc{left:638.025000px;}
.x6{left:641.984987px;}
.x20{left:653.865000px;}
.x2e{left:748.589973px;}
.x31{left:757.589987px;}
.x2f{left:759.029987px;}
.xf{left:776.129973px;}
.x10{left:781.349987px;}
.x23{left:788.369973px;}
.x24{left:793.589987px;}
@media print{
.v1{vertical-align:-64.640000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.504533pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.135467pt;}
.lsd{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.007680pt;}
.ls15{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.097067pt;}
.ls10{letter-spacing:0.097280pt;}
.ls18{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls14{letter-spacing:10.240000pt;}
.ls16{letter-spacing:48.768000pt;}
.ls1{letter-spacing:290.186667pt;}
.ws10{word-spacing:-64.000000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsf{word-spacing:-17.295360pt;}
.ws12{word-spacing:-17.287680pt;}
.ws11{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.176000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.456000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-4.467200pt;}
._7{margin-left:-3.532800pt;}
._4{margin-left:-2.490240pt;}
._0{margin-left:-1.181440pt;}
._3{width:0.919680pt;}
._6{width:2.033707pt;}
._5{width:2.976000pt;}
._8{width:4.720000pt;}
._10{width:5.711360pt;}
._a{width:6.653440pt;}
._9{width:7.893760pt;}
._2{width:8.920320pt;}
._1{width:10.080000pt;}
._b{width:11.869867pt;}
._f{width:12.835840pt;}
._11{width:13.805867pt;}
._c{width:16.427520pt;}
._e{width:18.393173pt;}
._d{width:19.328000pt;}
._12{width:27.008000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:3.200000pt;}
.yb4{bottom:3.240000pt;}
.y7d{bottom:3.360000pt;}
.y7b{bottom:20.160000pt;}
.y64{bottom:21.760000pt;}
.y62{bottom:78.432000pt;}
.y34{bottom:82.112000pt;}
.y61{bottom:93.632000pt;}
.y60{bottom:98.272000pt;}
.y33{bottom:100.672000pt;}
.y5f{bottom:108.992000pt;}
.y121{bottom:109.632000pt;}
.y5e{bottom:113.632000pt;}
.y32{bottom:119.232000pt;}
.y8d{bottom:124.352000pt;}
.y5d{bottom:124.992000pt;}
.y8c{bottom:128.992000pt;}
.y31{bottom:137.786667pt;}
.y8b{bottom:139.706667pt;}
.yb8{bottom:144.346667pt;}
.y143{bottom:148.986667pt;}
.y8a{bottom:155.066667pt;}
.yb7{bottom:155.706667pt;}
.y30{bottom:156.346667pt;}
.y108{bottom:160.026667pt;}
.y120{bottom:168.186667pt;}
.y142{bottom:168.666667pt;}
.y89{bottom:170.426667pt;}
.y2f{bottom:174.906667pt;}
.y88{bottom:175.066667pt;}
.y5c{bottom:176.506667pt;}
.y107{bottom:178.266667pt;}
.y87{bottom:186.266667pt;}
.y11f{bottom:188.026667pt;}
.y2e{bottom:193.466667pt;}
.ye0{bottom:194.426667pt;}
.y106{bottom:196.506667pt;}
.yb6{bottom:197.466667pt;}
.y141{bottom:206.266667pt;}
.y11e{bottom:207.226667pt;}
.y2d{bottom:212.026667pt;}
.y5b{bottom:213.466667pt;}
.y105{bottom:214.586667pt;}
.y85{bottom:216.506667pt;}
.y86{bottom:221.786667pt;}
.ydf{bottom:223.226667pt;}
.y11d{bottom:225.466667pt;}
.y140{bottom:227.706667pt;}
.yb5{bottom:229.466667pt;}
.y2c{bottom:230.586667pt;}
.y104{bottom:232.826667pt;}
.y84{bottom:234.586667pt;}
.y11c{bottom:243.706667pt;}
.yb3{bottom:247.066667pt;}
.y13f{bottom:248.986667pt;}
.y2b{bottom:249.146667pt;}
.y5a{bottom:250.306667pt;}
.y103{bottom:251.106667pt;}
.yde{bottom:252.226667pt;}
.y83{bottom:252.866667pt;}
.yb2{bottom:264.546667pt;}
.y2a{bottom:267.746667pt;}
.y102{bottom:269.346667pt;}
.y13e{bottom:270.626667pt;}
.y82{bottom:271.106667pt;}
.y11b{bottom:272.546667pt;}
.ydd{bottom:281.026667pt;}
.y29{bottom:286.146667pt;}
.yb1{bottom:286.946667pt;}
.y59{bottom:287.266667pt;}
.y81{bottom:289.346667pt;}
.y11a{bottom:290.786667pt;}
.y101{bottom:298.146667pt;}
.ydb{bottom:299.266667pt;}
.ydc{bottom:304.546667pt;}
.y28{bottom:304.706667pt;}
.y58{bottom:305.346667pt;}
.y80{bottom:307.586667pt;}
.y119{bottom:309.026667pt;}
.y13d{bottom:311.106667pt;}
.y100{bottom:312.546667pt;}
.yda{bottom:317.506667pt;}
.yb0{bottom:321.186667pt;}
.y27{bottom:323.266667pt;}
.y57{bottom:323.586667pt;}
.y7f{bottom:325.666667pt;}
.y118{bottom:327.266667pt;}
.y13c{bottom:331.266667pt;}
.yd9{bottom:335.586667pt;}
.yaf{bottom:339.266667pt;}
.y26{bottom:341.826667pt;}
.yff{bottom:346.946667pt;}
.yd8{bottom:353.826667pt;}
.y7e{bottom:355.106667pt;}
.y117{bottom:356.066667pt;}
.yae{bottom:357.506667pt;}
.y25{bottom:360.386667pt;}
.y56{bottom:360.546667pt;}
.yfe{bottom:364.546667pt;}
.y7c{bottom:369.986667pt;}
.y13b{bottom:371.586667pt;}
.y116{bottom:374.306667pt;}
.yad{bottom:375.746667pt;}
.y55{bottom:378.626667pt;}
.y24{bottom:378.946667pt;}
.yfd{bottom:381.986667pt;}
.yd6{bottom:382.786667pt;}
.yd7{bottom:388.066667pt;}
.y115{bottom:392.546667pt;}
.yab{bottom:393.986667pt;}
.y54{bottom:396.866667pt;}
.y23{bottom:397.506667pt;}
.yac{bottom:399.266667pt;}
.yfc{bottom:399.586667pt;}
.yd5{bottom:400.866667pt;}
.y114{bottom:410.626667pt;}
.y13a{bottom:411.906667pt;}
.yaa{bottom:412.066667pt;}
.y53{bottom:415.106667pt;}
.y22{bottom:416.066667pt;}
.yfb{bottom:417.026667pt;}
.yd3{bottom:419.106667pt;}
.yd4{bottom:424.386667pt;}
.ya9{bottom:430.306667pt;}
.y139{bottom:432.226667pt;}
.y52{bottom:433.346667pt;}
.y21{bottom:434.626667pt;}
.yd2{bottom:437.346667pt;}
.yfa{bottom:439.426667pt;}
.y113{bottom:439.586667pt;}
.ya8{bottom:448.546667pt;}
.y138{bottom:452.386667pt;}
.y20{bottom:453.186667pt;}
.yd0{bottom:455.586667pt;}
.y112{bottom:457.826667pt;}
.yd1{bottom:460.866667pt;}
.ya7{bottom:466.786667pt;}
.y51{bottom:470.146667pt;}
.y1f{bottom:471.746667pt;}
.ycf{bottom:473.666667pt;}
.y137{bottom:473.826667pt;}
.y7a{bottom:473.986667pt;}
.y111{bottom:475.906667pt;}
.ya6{bottom:484.866667pt;}
.y50{bottom:488.386667pt;}
.y1e{bottom:490.306667pt;}
.yf9{bottom:491.906667pt;}
.y136{bottom:493.986667pt;}
.y110{bottom:494.146667pt;}
.yce{bottom:502.653333pt;}
.ya5{bottom:503.133333pt;}
.y4f{bottom:506.653333pt;}
.y78{bottom:507.773333pt;}
.y1d{bottom:508.893333pt;}
.yf8{bottom:510.013333pt;}
.y135{bottom:515.453333pt;}
.ycd{bottom:520.733333pt;}
.ya4{bottom:521.373333pt;}
.y10f{bottom:522.973333pt;}
.y4e{bottom:524.733333pt;}
.y1c{bottom:527.453333pt;}
.yf7{bottom:528.253333pt;}
.y134{bottom:535.613333pt;}
.ycc{bottom:538.973333pt;}
.y77{bottom:539.773333pt;}
.y10e{bottom:541.213333pt;}
.y1b{bottom:546.013333pt;}
.yf6{bottom:546.493333pt;}
.ya3{bottom:550.813333pt;}
.y133{bottom:557.053333pt;}
.y75{bottom:557.853333pt;}
.y10d{bottom:559.453333pt;}
.y4d{bottom:561.693333pt;}
.y76{bottom:563.133333pt;}
.y1a{bottom:564.573333pt;}
.yf5{bottom:564.733333pt;}
.ya2{bottom:566.333333pt;}
.ycb{bottom:567.933333pt;}
.y74{bottom:576.093333pt;}
.y132{bottom:577.373333pt;}
.y10c{bottom:578.973333pt;}
.y4c{bottom:579.933333pt;}
.yf4{bottom:582.813333pt;}
.y19{bottom:583.133333pt;}
.ya1{bottom:583.773333pt;}
.yca{bottom:586.013333pt;}
.y131{bottom:597.533333pt;}
.y4b{bottom:598.013333pt;}
.ya0{bottom:601.373333pt;}
.y18{bottom:602.173333pt;}
.yc9{bottom:604.253333pt;}
.y73{bottom:605.533333pt;}
.yf3{bottom:611.773333pt;}
.y4a{bottom:616.253333pt;}
.y130{bottom:618.813333pt;}
.y9f{bottom:618.973333pt;}
.y10b{bottom:621.853333pt;}
.yc8{bottom:622.493333pt;}
.y17{bottom:623.133333pt;}
.y72{bottom:625.373333pt;}
.yf2{bottom:626.173333pt;}
.y49{bottom:634.493333pt;}
.y12f{bottom:640.413333pt;}
.yc7{bottom:640.733333pt;}
.y9e{bottom:641.213333pt;}
.yf1{bottom:643.613333pt;}
.y48{bottom:652.733333pt;}
.y71{bottom:655.933333pt;}
.yc6{bottom:658.813333pt;}
.y12e{bottom:660.413333pt;}
.yf0{bottom:661.213333pt;}
.y16{bottom:661.693333pt;}
.y47{bottom:670.813333pt;}
.y9d{bottom:675.453333pt;}
.y70{bottom:676.573333pt;}
.yc5{bottom:677.053333pt;}
.yef{bottom:678.813333pt;}
.y12d{bottom:682.013333pt;}
.y15{bottom:683.133333pt;}
.y14{bottom:693.533333pt;}
.y9c{bottom:693.693333pt;}
.yc4{bottom:695.293333pt;}
.yee{bottom:701.053333pt;}
.y12c{bottom:702.173333pt;}
.y45{bottom:707.773333pt;}
.y13{bottom:709.853333pt;}
.y9b{bottom:711.773333pt;}
.y46{bottom:713.053333pt;}
.yc3{bottom:713.533333pt;}
.y6e{bottom:722.333333pt;}
.y12{bottom:723.613333pt;}
.y44{bottom:725.853333pt;}
.y6f{bottom:727.613333pt;}
.yed{bottom:735.293333pt;}
.y11{bottom:737.373333pt;}
.y6d{bottom:740.573333pt;}
.y9a{bottom:740.733333pt;}
.yc2{bottom:742.813333pt;}
.y12b{bottom:743.773333pt;}
.y43{bottom:745.533333pt;}
.y10{bottom:751.133333pt;}
.yec{bottom:753.573333pt;}
.y6c{bottom:758.853333pt;}
.y99{bottom:759.013333pt;}
.y12a{bottom:763.973333pt;}
.yf{bottom:765.093333pt;}
.yeb{bottom:771.653333pt;}
.yc1{bottom:773.413333pt;}
.y6b{bottom:777.093333pt;}
.ye{bottom:778.853333pt;}
.y129{bottom:785.573333pt;}
.yea{bottom:789.893333pt;}
.y42{bottom:791.653333pt;}
.yd{bottom:792.613333pt;}
.y6a{bottom:795.173333pt;}
.y98{bottom:795.333333pt;}
.yc0{bottom:803.493333pt;}
.y128{bottom:805.573333pt;}
.yc{bottom:806.373333pt;}
.ye9{bottom:808.133333pt;}
.y41{bottom:810.213333pt;}
.y69{bottom:813.413333pt;}
.y97{bottom:813.573333pt;}
.yb{bottom:820.293333pt;}
.ybf{bottom:821.573333pt;}
.y40{bottom:828.773333pt;}
.y95{bottom:831.813333pt;}
.ya{bottom:834.053333pt;}
.y96{bottom:837.093333pt;}
.ye8{bottom:837.573333pt;}
.ybe{bottom:839.813333pt;}
.y127{bottom:846.053333pt;}
.y3f{bottom:847.333333pt;}
.y9{bottom:847.813333pt;}
.y94{bottom:849.893333pt;}
.y68{bottom:850.373333pt;}
.ye7{bottom:853.093333pt;}
.ybd{bottom:858.053333pt;}
.y8{bottom:861.573333pt;}
.y67{bottom:864.773333pt;}
.y3e{bottom:865.893333pt;}
.y7{bottom:875.493333pt;}
.ybc{bottom:876.293333pt;}
.y93{bottom:879.333333pt;}
.y3d{bottom:884.453333pt;}
.y126{bottom:886.213333pt;}
.ye6{bottom:887.493333pt;}
.y6{bottom:889.253333pt;}
.ybb{bottom:894.373333pt;}
.y92{bottom:899.173333pt;}
.y66{bottom:900.933333pt;}
.y3c{bottom:903.013333pt;}
.y125{bottom:907.653333pt;}
.yba{bottom:912.613333pt;}
.y5{bottom:919.813333pt;}
.y3b{bottom:921.573333pt;}
.ye5{bottom:921.893333pt;}
.y124{bottom:929.093333pt;}
.y91{bottom:929.733333pt;}
.y4{bottom:935.813333pt;}
.y65{bottom:937.093333pt;}
.ye4{bottom:939.333333pt;}
.y3a{bottom:940.133333pt;}
.yb9{bottom:941.573333pt;}
.y3{bottom:953.253333pt;}
.ye3{bottom:956.933333pt;}
.y39{bottom:958.693333pt;}
.y90{bottom:959.653333pt;}
.y10a{bottom:967.173333pt;}
.y123{bottom:969.573333pt;}
.y63{bottom:973.253333pt;}
.ye2{bottom:974.373333pt;}
.y2{bottom:976.933333pt;}
.y38{bottom:977.253333pt;}
.y8f{bottom:977.893333pt;}
.ye1{bottom:991.973333pt;}
.y36{bottom:995.813333pt;}
.y8e{bottom:996.133333pt;}
.y37{bottom:1001.093333pt;}
.y109{bottom:1001.413333pt;}
.y1{bottom:1007.040000pt;}
.y122{bottom:1010.560000pt;}
.y35{bottom:1014.400000pt;}
.h12{height:16.800000pt;}
.h17{height:16.832000pt;}
.h16{height:16.960000pt;}
.h7{height:31.406250pt;}
.h18{height:33.760000pt;}
.h13{height:33.792000pt;}
.hd{height:33.918750pt;}
.h11{height:35.520000pt;}
.h10{height:35.552000pt;}
.hb{height:36.431250pt;}
.h4{height:47.085938pt;}
.h5{height:47.109375pt;}
.he{height:52.134375pt;}
.ha{height:52.785000pt;}
.h15{height:57.758750pt;}
.h9{height:57.787500pt;}
.hc{height:58.563750pt;}
.hf{height:59.340000pt;}
.h3{height:62.812500pt;}
.h6{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h19{height:69.660000pt;}
.h8{height:75.465000pt;}
.h2{height:91.590000pt;}
.h14{height:104.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:150.106667pt;}
.w16{width:150.426667pt;}
.w13{width:150.906667pt;}
.w19{width:159.706667pt;}
.w8{width:159.866667pt;}
.w6{width:160.186667pt;}
.w5{width:160.506667pt;}
.w14{width:164.826667pt;}
.w11{width:165.466667pt;}
.w7{width:169.146667pt;}
.w15{width:169.306667pt;}
.w4{width:169.466667pt;}
.w12{width:169.946667pt;}
.w17{width:170.266667pt;}
.w1c{width:178.746667pt;}
.w1a{width:179.226667pt;}
.wa{width:210.306667pt;}
.w10{width:213.306667pt;}
.wf{width:213.346667pt;}
.we{width:213.626667pt;}
.wc{width:213.666667pt;}
.wd{width:213.946667pt;}
.wb{width:216.186667pt;}
.w1d{width:245.026667pt;}
.w1b{width:245.346667pt;}
.w9{width:642.693333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.912000pt;}
.x16{left:43.040000pt;}
.x14{left:53.920000pt;}
.x1{left:75.519988pt;}
.x8{left:79.839988pt;}
.x29{left:84.191988pt;}
.x32{left:99.551988pt;}
.x11{left:104.986667pt;}
.x13{left:108.000000pt;}
.x33{left:123.551988pt;}
.x1a{left:135.066643pt;}
.x1b{left:139.706655pt;}
.x2{left:151.066655pt;}
.x17{left:203.586667pt;}
.x18{left:209.626667pt;}
.x1e{left:213.946655pt;}
.xd{left:223.066643pt;}
.x2a{left:226.746667pt;}
.xe{left:227.706655pt;}
.x30{left:240.506655pt;}
.xa{left:245.786667pt;}
.x2d{left:255.226667pt;}
.x7{left:267.586655pt;}
.x19{left:280.866643pt;}
.x12{left:285.826667pt;}
.x1c{left:289.986667pt;}
.x3{left:292.866643pt;}
.x4{left:297.506655pt;}
.x25{left:310.466643pt;}
.x21{left:312.866643pt;}
.x22{left:317.506655pt;}
.x26{left:319.746655pt;}
.x2b{left:387.266667pt;}
.xb{left:406.306667pt;}
.x1f{left:411.266667pt;}
.x27{left:421.826643pt;}
.x28{left:431.106655pt;}
.x15{left:502.013333pt;}
.x1d{left:503.933333pt;}
.x2c{left:547.773333pt;}
.x5{left:566.013310pt;}
.xc{left:567.133333pt;}
.x6{left:570.653322pt;}
.x20{left:581.213333pt;}
.x2e{left:665.413310pt;}
.x31{left:673.413322pt;}
.x2f{left:674.693322pt;}
.xf{left:689.893310pt;}
.x10{left:694.533322pt;}
.x23{left:700.773310pt;}
.x24{left:705.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; }
  