
    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_9c9c5ff68a3a13bf8665a915.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_521f9f228cefbf576787910a.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_174343c7497ee3708f161711.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_964bc2b21138901dcea61946.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_30c1fe575b72b6cb1e192876.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_63b175f9e512caaf7af10e93.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e0d48b965c112a4ac0f14ce9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1291aa833346f1c1bdd20d33.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_37f1353887fb92c7cd005824.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_4af66aebc26ce9f4cee6e105.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:20.160000px;}
.v9{vertical-align:22.320000px;}
.v8{vertical-align:40.500000px;}
.v7{vertical-align:43.920000px;}
.v6{vertical-align:46.080000px;}
.ls20{letter-spacing:-0.756000px;}
.ls9{letter-spacing:-0.750000px;}
.ls2c{letter-spacing:-0.732000px;}
.ls6{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.370200px;}
.ls8{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.103800px;}
.ls2a{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.ls1c{letter-spacing:0.023040px;}
.ls1a{letter-spacing:0.061200px;}
.ls1{letter-spacing:0.084960px;}
.ls26{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.211680px;}
.ls1b{letter-spacing:0.252000px;}
.ls11{letter-spacing:0.258000px;}
.ls18{letter-spacing:0.263520px;}
.ls12{letter-spacing:0.309000px;}
.ls10{letter-spacing:0.319680px;}
.ls24{letter-spacing:0.332400px;}
.ls1d{letter-spacing:0.332640px;}
.ls2{letter-spacing:0.351360px;}
.lsb{letter-spacing:0.357000px;}
.ls29{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.385800px;}
.ls17{letter-spacing:0.399600px;}
.ls1e{letter-spacing:0.466560px;}
.lsf{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.853920px;}
.ls23{letter-spacing:0.858240px;}
.ls21{letter-spacing:0.953280px;}
.ls27{letter-spacing:0.954000px;}
.ls25{letter-spacing:1.050000px;}
.ls1f{letter-spacing:1.052640px;}
.ls14{letter-spacing:3.107520px;}
.ls16{letter-spacing:16.679280px;}
.ls15{letter-spacing:16.959600px;}
.ls19{letter-spacing:43.463520px;}
.ls2b{letter-spacing:47.466720px;}
.ls28{letter-spacing:81.306720px;}
.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;}
}
.wsc{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.ws6{word-spacing:-13.504200px;}
.wsd{word-spacing:-13.456200px;}
.wsb{word-spacing:-13.405200px;}
.wsf{word-spacing:-13.208400px;}
.ws4{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws17{word-spacing:-13.111200px;}
.wse{word-spacing:-13.043400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws14{word-spacing:-9.603600px;}
.ws16{word-spacing:-9.507600px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws13{word-spacing:-8.886000px;}
.ws15{word-spacing:-8.691600px;}
.ws12{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:2.552040px;}
.ws11{word-spacing:3.412080px;}
.ws10{word-spacing:44.497440px;}
._9{margin-left:-3.697794px;}
._7{margin-left:-2.292600px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._5{width:2.124600px;}
._4{width:3.168000px;}
._6{width:4.244400px;}
._3{width:5.316215px;}
._2{width:6.351204px;}
._b{width:7.509050px;}
._c{width:9.204690px;}
._a{width:10.517999px;}
._8{width:11.593201px;}
._d{width:14.362080px;}
._10{width:17.123760px;}
._f{width:18.658800px;}
._e{width:20.975760px;}
._11{width:67.050720px;}
._12{width:69.792480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:7.740000px;}
.y60{bottom:7.785000px;}
.y3a{bottom:7.920000px;}
.y55{bottom:7.950000px;}
.yae{bottom:25.380000px;}
.y46{bottom:25.560000px;}
.y94{bottom:25.590000px;}
.y3c{bottom:26.640000px;}
.yad{bottom:44.100000px;}
.y2{bottom:73.296000px;}
.yaa{bottom:74.160000px;}
.y2a{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.yc4{bottom:112.896000px;}
.y7c{bottom:116.676000px;}
.ya8{bottom:126.036000px;}
.yfa{bottom:126.756000px;}
.y53{bottom:134.856000px;}
.y28{bottom:138.996000px;}
.yc3{bottom:140.256000px;}
.y123{bottom:143.496000px;}
.ya7{bottom:143.676000px;}
.yf9{bottom:144.396000px;}
.y7b{bottom:152.310000px;}
.y27{bottom:156.630000px;}
.ya6{bottom:161.130000px;}
.yf8{bottom:161.850000px;}
.y52{bottom:162.210000px;}
.yc2{bottom:167.610000px;}
.y7a{bottom:169.950000px;}
.y26{bottom:174.270000px;}
.ya5{bottom:178.770000px;}
.yf7{bottom:179.490000px;}
.y122{bottom:187.590000px;}
.y51{bottom:189.570000px;}
.y25{bottom:191.730000px;}
.yc1{bottom:194.970000px;}
.ya4{bottom:196.410000px;}
.yf6{bottom:197.130000px;}
.y79{bottom:201.990000px;}
.y121{bottom:205.230000px;}
.y78{bottom:212.070000px;}
.y14a{bottom:213.330000px;}
.ya3{bottom:213.870000px;}
.y50{bottom:216.930000px;}
.yc0{bottom:222.330000px;}
.y120{bottom:222.870000px;}
.y24{bottom:227.370000px;}
.y149{bottom:230.970000px;}
.ya2{bottom:231.510000px;}
.yf5{bottom:232.590000px;}
.y4f{bottom:244.290000px;}
.y23{bottom:245.010000px;}
.y148{bottom:248.610000px;}
.ya1{bottom:249.150000px;}
.y11f{bottom:249.330000px;}
.ybf{bottom:249.690000px;}
.yf4{bottom:250.230000px;}
.y77{bottom:257.610000px;}
.y22{bottom:262.650000px;}
.y147{bottom:266.250000px;}
.ya0{bottom:266.790000px;}
.y11e{bottom:266.970000px;}
.yf3{bottom:267.870000px;}
.y4e{bottom:271.470000px;}
.y76{bottom:275.250000px;}
.ybe{bottom:277.095000px;}
.y21{bottom:280.110000px;}
.y9f{bottom:284.250000px;}
.yf2{bottom:285.330000px;}
.y146{bottom:292.710000px;}
.y11d{bottom:293.610000px;}
.ydc{bottom:296.490000px;}
.y20{bottom:297.750000px;}
.y4d{bottom:298.830000px;}
.y9e{bottom:301.890000px;}
.yf1{bottom:302.970000px;}
.ybd{bottom:304.275000px;}
.y75{bottom:307.290000px;}
.y145{bottom:310.395000px;}
.y11c{bottom:311.295000px;}
.y74{bottom:317.955000px;}
.y9d{bottom:319.575000px;}
.yf0{bottom:320.655000px;}
.y1f{bottom:324.615000px;}
.y4c{bottom:326.235000px;}
.y144{bottom:328.035000px;}
.ybc{bottom:331.635000px;}
.ydb{bottom:332.175000px;}
.y9c{bottom:337.035000px;}
.y11b{bottom:337.755000px;}
.yef{bottom:338.115000px;}
.y4b{bottom:353.595000px;}
.y143{bottom:354.495000px;}
.y11a{bottom:355.395000px;}
.yee{bottom:355.755000px;}
.ybb{bottom:358.995000px;}
.y73{bottom:363.675000px;}
.yda{bottom:367.815000px;}
.y142{bottom:372.135000px;}
.y119{bottom:373.035000px;}
.y1e{bottom:373.215000px;}
.y4a{bottom:380.955000px;}
.y72{bottom:381.315000px;}
.yd9{bottom:385.455000px;}
.yba{bottom:386.355000px;}
.yed{bottom:391.395000px;}
.y9b{bottom:398.595000px;}
.y141{bottom:398.775000px;}
.y71{bottom:398.955000px;}
.y118{bottom:399.495000px;}
.y49{bottom:408.315000px;}
.yec{bottom:409.035000px;}
.y1d{bottom:410.295000px;}
.y9a{bottom:410.655000px;}
.yb9{bottom:413.715000px;}
.y140{bottom:416.415000px;}
.y117{bottom:417.135000px;}
.yd8{bottom:417.495000px;}
.y70{bottom:425.415000px;}
.yeb{bottom:426.495000px;}
.y1c{bottom:427.935000px;}
.y48{bottom:435.675000px;}
.y99{bottom:438.015000px;}
.yb8{bottom:441.075000px;}
.y13f{bottom:442.875000px;}
.y116{bottom:443.595000px;}
.yea{bottom:444.135000px;}
.y1b{bottom:445.395000px;}
.y13e{bottom:460.515000px;}
.y6f{bottom:461.055000px;}
.y115{bottom:461.235000px;}
.ye9{bottom:461.775000px;}
.y47{bottom:462.855000px;}
.y1a{bottom:463.035000px;}
.y98{bottom:465.375000px;}
.yb7{bottom:468.465000px;}
.y13d{bottom:478.155000px;}
.y6e{bottom:478.695000px;}
.ye8{bottom:479.235000px;}
.y19{bottom:480.675000px;}
.y114{bottom:487.875000px;}
.y45{bottom:490.215000px;}
.y97{bottom:492.735000px;}
.yb6{bottom:495.645000px;}
.ye7{bottom:496.875000px;}
.y18{bottom:498.315000px;}
.y13c{bottom:504.615000px;}
.y6d{bottom:505.155000px;}
.y113{bottom:505.515000px;}
.ye6{bottom:514.515000px;}
.y17{bottom:515.775000px;}
.y96{bottom:520.095000px;}
.y13b{bottom:522.255000px;}
.yb5{bottom:523.005000px;}
.y112{bottom:523.155000px;}
.ye5{bottom:531.975000px;}
.y16{bottom:533.415000px;}
.y6c{bottom:540.795000px;}
.y95{bottom:547.275000px;}
.y13a{bottom:548.715000px;}
.ye4{bottom:549.615000px;}
.yb4{bottom:550.365000px;}
.y15{bottom:551.055000px;}
.y44{bottom:556.635000px;}
.y139{bottom:566.355000px;}
.y111{bottom:567.255000px;}
.y6b{bottom:567.435000px;}
.y14{bottom:568.515000px;}
.y93{bottom:574.635000px;}
.yb3{bottom:577.725000px;}
.y138{bottom:584.025000px;}
.ye3{bottom:585.285000px;}
.y13{bottom:586.185000px;}
.y43{bottom:592.125000px;}
.y110{bottom:594.105000px;}
.y6a{bottom:602.925000px;}
.yb2{bottom:605.085000px;}
.ycc{bottom:609.045000px;}
.y42{bottom:609.765000px;}
.y137{bottom:610.665000px;}
.y12{bottom:613.005000px;}
.y92{bottom:619.665000px;}
.ye2{bottom:620.385000px;}
.y69{bottom:620.565000px;}
.ycb{bottom:621.105000px;}
.y41{bottom:627.405000px;}
.y136{bottom:628.305000px;}
.yb1{bottom:632.490000px;}
.ye1{bottom:638.025000px;}
.y68{bottom:638.205000px;}
.y10f{bottom:642.345000px;}
.yca{bottom:648.510000px;}
.y40{bottom:653.865000px;}
.y135{bottom:654.765000px;}
.y67{bottom:655.845000px;}
.yb0{bottom:659.850000px;}
.y11{bottom:661.245000px;}
.ye0{bottom:664.845000px;}
.y91{bottom:668.265000px;}
.y10e{bottom:669.345000px;}
.y134{bottom:672.405000px;}
.y66{bottom:673.485000px;}
.yc9{bottom:675.870000px;}
.y3e{bottom:686.985000px;}
.yaf{bottom:687.030000px;}
.y133{bottom:690.045000px;}
.y65{bottom:690.945000px;}
.y10{bottom:697.065000px;}
.yc8{bottom:703.230000px;}
.y90{bottom:703.905000px;}
.y10d{bottom:706.245000px;}
.ydf{bottom:713.085000px;}
.y3d{bottom:714.165000px;}
.y132{bottom:716.505000px;}
.y64{bottom:717.585000px;}
.y8f{bottom:721.545000px;}
.yc7{bottom:730.590000px;}
.yde{bottom:730.725000px;}
.yac{bottom:732.030000px;}
.yf{bottom:733.065000px;}
.y10c{bottom:733.245000px;}
.y131{bottom:734.145000px;}
.y8e{bottom:739.185000px;}
.y3b{bottom:741.525000px;}
.y63{bottom:753.405000px;}
.y8d{bottom:756.645000px;}
.yc6{bottom:757.950000px;}
.y130{bottom:760.605000px;}
.ydd{bottom:762.945000px;}
.y39{bottom:768.885000px;}
.y10b{bottom:770.505000px;}
.ye{bottom:772.845000px;}
.y8c{bottom:774.285000px;}
.y12f{bottom:778.245000px;}
.yc5{bottom:785.130000px;}
.yd{bottom:790.845000px;}
.y8b{bottom:791.925000px;}
.y12e{bottom:795.885000px;}
.yd7{bottom:796.605000px;}
.yab{bottom:798.270000px;}
.y62{bottom:799.125000px;}
.yc{bottom:808.845000px;}
.y8a{bottom:809.565000px;}
.yd6{bottom:814.245000px;}
.y38{bottom:817.665000px;}
.y10a{bottom:818.925000px;}
.y12d{bottom:822.525000px;}
.yb{bottom:823.065000px;}
.ya9{bottom:824.940000px;}
.y61{bottom:826.485000px;}
.y89{bottom:827.025000px;}
.yd5{bottom:831.885000px;}
.y109{bottom:836.565000px;}
.y12c{bottom:840.165000px;}
.y88{bottom:844.665000px;}
.ya{bottom:844.845000px;}
.yd4{bottom:849.525000px;}
.y37{bottom:853.125000px;}
.y5f{bottom:853.845000px;}
.y108{bottom:854.025000px;}
.y9{bottom:859.110000px;}
.y87{bottom:862.350000px;}
.y12b{bottom:866.670000px;}
.yd3{bottom:867.210000px;}
.y36{bottom:870.810000px;}
.y107{bottom:871.710000px;}
.y86{bottom:879.810000px;}
.y8{bottom:880.890000px;}
.y5e{bottom:881.070000px;}
.y12a{bottom:884.310000px;}
.yd2{bottom:884.670000px;}
.y35{bottom:888.450000px;}
.y106{bottom:889.350000px;}
.yd1{bottom:902.310000px;}
.y85{bottom:906.450000px;}
.y105{bottom:906.810000px;}
.y5d{bottom:908.430000px;}
.y129{bottom:910.770000px;}
.y7{bottom:912.930000px;}
.y34{bottom:914.910000px;}
.yd0{bottom:919.950000px;}
.y104{bottom:924.450000px;}
.y128{bottom:928.410000px;}
.y6{bottom:931.470000px;}
.y5c{bottom:935.790000px;}
.y103{bottom:942.090000px;}
.y84{bottom:942.270000px;}
.y5{bottom:950.010000px;}
.y33{bottom:950.730000px;}
.y127{bottom:955.050000px;}
.ycf{bottom:955.410000px;}
.y102{bottom:959.550000px;}
.y5b{bottom:963.150000px;}
.y126{bottom:972.690000px;}
.yce{bottom:973.050000px;}
.y101{bottom:977.190000px;}
.y4{bottom:987.630000px;}
.y125{bottom:990.150000px;}
.y5a{bottom:990.510000px;}
.ycd{bottom:990.690000px;}
.y100{bottom:994.830000px;}
.y32{bottom:999.150000px;}
.y83{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.y31{bottom:1016.790000px;}
.y59{bottom:1017.870000px;}
.yff{bottom:1021.650000px;}
.y82{bottom:1025.790000px;}
.y30{bottom:1034.430000px;}
.y81{bottom:1043.430000px;}
.y58{bottom:1045.230000px;}
.y2f{bottom:1052.070000px;}
.y124{bottom:1060.890000px;}
.y80{bottom:1061.070000px;}
.y2e{bottom:1069.530000px;}
.yfe{bottom:1069.890000px;}
.y57{bottom:1072.410000px;}
.y7f{bottom:1078.530000px;}
.y2d{bottom:1087.170000px;}
.yfd{bottom:1087.530000px;}
.y7e{bottom:1096.170000px;}
.y56{bottom:1099.770000px;}
.yfc{bottom:1105.170000px;}
.y7d{bottom:1113.810000px;}
.y2c{bottom:1122.630000px;}
.yfb{bottom:1122.810000px;}
.y54{bottom:1127.130000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hd{height:26.460000px;}
.h10{height:26.496000px;}
.hb{height:26.640000px;}
.hf{height:26.676000px;}
.h2{height:29.717578px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h15{height:41.974453px;}
.h18{height:44.100000px;}
.he{height:44.280000px;}
.h14{height:44.316000px;}
.hc{height:50.597578px;}
.h7{height:51.998203px;}
.h5{height:55.130625px;}
.h8{height:56.084062px;}
.h19{height:57.636562px;}
.h1a{height:61.423863px;}
.ha{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h13{height:92.318203px;}
.h12{height:92.498203px;}
.h11{height:96.444141px;}
.h16{height:893.160000px;}
.h17{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:31.140000px;}
.w1a{width:62.856000px;}
.wb{width:71.820000px;}
.w8{width:71.856000px;}
.w3{width:73.620000px;}
.w9{width:82.260000px;}
.w6{width:82.296000px;}
.w7{width:84.420000px;}
.wa{width:84.456000px;}
.w10{width:88.236000px;}
.w12{width:92.916000px;}
.we{width:94.500000px;}
.w1e{width:94.860000px;}
.w11{width:107.856000px;}
.w16{width:114.696000px;}
.wd{width:116.100000px;}
.w20{width:116.136000px;}
.w22{width:126.756000px;}
.w1f{width:126.900000px;}
.w21{width:137.340000px;}
.w24{width:137.556000px;}
.w23{width:148.140000px;}
.w15{width:204.510000px;}
.wc{width:215.310000px;}
.w1b{width:222.480000px;}
.w14{width:232.770000px;}
.w5{width:240.150000px;}
.w4{width:240.195000px;}
.w1c{width:254.370000px;}
.w1d{width:275.610000px;}
.w13{width:553.605000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w18{width:1262.250000px;}
.w19{width:1262.519981px;}
.w17{width:1262.520000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.xe{left:10.440000px;}
.x38{left:14.400000px;}
.x11{left:15.480000px;}
.x1d{left:17.460000px;}
.x36{left:19.305000px;}
.x18{left:20.880000px;}
.x15{left:22.680000px;}
.x13{left:23.940000px;}
.x1a{left:25.020000px;}
.x1c{left:27.360000px;}
.x17{left:29.160000px;}
.x19{left:30.240000px;}
.x2d{left:34.920000px;}
.xf{left:38.340000px;}
.x2f{left:43.200000px;}
.x1b{left:45.720000px;}
.x16{left:49.860000px;}
.x3b{left:54.045000px;}
.x29{left:55.260000px;}
.x14{left:57.960000px;}
.x2a{left:59.220000px;}
.x1{left:68.040000px;}
.x25{left:72.360000px;}
.x28{left:77.580000px;}
.x2c{left:79.920000px;}
.x2e{left:84.060000px;}
.x42{left:89.675987px;}
.x39{left:90.750000px;}
.x30{left:93.960000px;}
.x2b{left:98.100000px;}
.x34{left:107.999981px;}
.x46{left:111.275987px;}
.x24{left:147.240000px;}
.x4{left:168.870000px;}
.x31{left:170.669987px;}
.x35{left:172.290000px;}
.x22{left:177.330000px;}
.x2{left:202.709987px;}
.x6{left:243.210000px;}
.x3c{left:267.870000px;}
.x23{left:270.975000px;}
.xc{left:280.695000px;}
.x45{left:308.954987px;}
.x43{left:323.174987px;}
.x8{left:326.415000px;}
.x40{left:355.349981px;}
.x10{left:375.915000px;}
.x32{left:387.389981px;}
.x1e{left:392.654987px;}
.x20{left:395.354987px;}
.x12{left:407.775000px;}
.x9{left:411.555000px;}
.x1f{left:467.204987px;}
.x21{left:478.184987px;}
.x7{left:484.305000px;}
.xd{left:496.725000px;}
.x26{left:504.465000px;}
.x3d{left:512.535000px;}
.xa{left:567.285000px;}
.x37{left:650.775000px;}
.xb{left:652.650000px;}
.x27{left:709.890000px;}
.x3e{left:778.245000px;}
.x3{left:791.969987px;}
.x41{left:813.419987px;}
.x44{left:816.839987px;}
.x3a{left:927.105000px;}
.x3f{left:1065.390000px;}
.x33{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:17.920000pt;}
.v9{vertical-align:19.840000pt;}
.v8{vertical-align:36.000000pt;}
.v7{vertical-align:39.040000pt;}
.v6{vertical-align:40.960000pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls9{letter-spacing:-0.666667pt;}
.ls2c{letter-spacing:-0.650667pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.329067pt;}
.ls8{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.092267pt;}
.ls2a{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.ls1c{letter-spacing:0.020480pt;}
.ls1a{letter-spacing:0.054400pt;}
.ls1{letter-spacing:0.075520pt;}
.ls26{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.188160pt;}
.ls1b{letter-spacing:0.224000pt;}
.ls11{letter-spacing:0.229333pt;}
.ls18{letter-spacing:0.234240pt;}
.ls12{letter-spacing:0.274667pt;}
.ls10{letter-spacing:0.284160pt;}
.ls24{letter-spacing:0.295467pt;}
.ls1d{letter-spacing:0.295680pt;}
.ls2{letter-spacing:0.312320pt;}
.lsb{letter-spacing:0.317333pt;}
.ls29{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.342933pt;}
.ls17{letter-spacing:0.355200pt;}
.ls1e{letter-spacing:0.414720pt;}
.lsf{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.759040pt;}
.ls23{letter-spacing:0.762880pt;}
.ls21{letter-spacing:0.847360pt;}
.ls27{letter-spacing:0.848000pt;}
.ls25{letter-spacing:0.933333pt;}
.ls1f{letter-spacing:0.935680pt;}
.ls14{letter-spacing:2.762240pt;}
.ls16{letter-spacing:14.826027pt;}
.ls15{letter-spacing:15.075200pt;}
.ls19{letter-spacing:38.634240pt;}
.ls2b{letter-spacing:42.192640pt;}
.ls28{letter-spacing:72.272640pt;}
.wsc{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.ws6{word-spacing:-12.003733pt;}
.wsd{word-spacing:-11.961067pt;}
.wsb{word-spacing:-11.915733pt;}
.wsf{word-spacing:-11.740800pt;}
.ws4{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws17{word-spacing:-11.654400pt;}
.wse{word-spacing:-11.594133pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws14{word-spacing:-8.536533pt;}
.ws16{word-spacing:-8.451200pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws13{word-spacing:-7.898667pt;}
.ws15{word-spacing:-7.725867pt;}
.ws12{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:2.268480pt;}
.ws11{word-spacing:3.032960pt;}
.ws10{word-spacing:39.553280pt;}
._9{margin-left:-3.286928pt;}
._7{margin-left:-2.037867pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._5{width:1.888533pt;}
._4{width:2.816000pt;}
._6{width:3.772800pt;}
._3{width:4.725524pt;}
._2{width:5.645515pt;}
._b{width:6.674711pt;}
._c{width:8.181946pt;}
._a{width:9.349332pt;}
._8{width:10.305068pt;}
._d{width:12.766293pt;}
._10{width:15.221120pt;}
._f{width:16.585600pt;}
._e{width:18.645120pt;}
._11{width:59.600640pt;}
._12{width:62.037760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:6.880000pt;}
.y60{bottom:6.920000pt;}
.y3a{bottom:7.040000pt;}
.y55{bottom:7.066667pt;}
.yae{bottom:22.560000pt;}
.y46{bottom:22.720000pt;}
.y94{bottom:22.746667pt;}
.y3c{bottom:23.680000pt;}
.yad{bottom:39.200000pt;}
.y2{bottom:65.152000pt;}
.yaa{bottom:65.920000pt;}
.y2a{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.yc4{bottom:100.352000pt;}
.y7c{bottom:103.712000pt;}
.ya8{bottom:112.032000pt;}
.yfa{bottom:112.672000pt;}
.y53{bottom:119.872000pt;}
.y28{bottom:123.552000pt;}
.yc3{bottom:124.672000pt;}
.y123{bottom:127.552000pt;}
.ya7{bottom:127.712000pt;}
.yf9{bottom:128.352000pt;}
.y7b{bottom:135.386667pt;}
.y27{bottom:139.226667pt;}
.ya6{bottom:143.226667pt;}
.yf8{bottom:143.866667pt;}
.y52{bottom:144.186667pt;}
.yc2{bottom:148.986667pt;}
.y7a{bottom:151.066667pt;}
.y26{bottom:154.906667pt;}
.ya5{bottom:158.906667pt;}
.yf7{bottom:159.546667pt;}
.y122{bottom:166.746667pt;}
.y51{bottom:168.506667pt;}
.y25{bottom:170.426667pt;}
.yc1{bottom:173.306667pt;}
.ya4{bottom:174.586667pt;}
.yf6{bottom:175.226667pt;}
.y79{bottom:179.546667pt;}
.y121{bottom:182.426667pt;}
.y78{bottom:188.506667pt;}
.y14a{bottom:189.626667pt;}
.ya3{bottom:190.106667pt;}
.y50{bottom:192.826667pt;}
.yc0{bottom:197.626667pt;}
.y120{bottom:198.106667pt;}
.y24{bottom:202.106667pt;}
.y149{bottom:205.306667pt;}
.ya2{bottom:205.786667pt;}
.yf5{bottom:206.746667pt;}
.y4f{bottom:217.146667pt;}
.y23{bottom:217.786667pt;}
.y148{bottom:220.986667pt;}
.ya1{bottom:221.466667pt;}
.y11f{bottom:221.626667pt;}
.ybf{bottom:221.946667pt;}
.yf4{bottom:222.426667pt;}
.y77{bottom:228.986667pt;}
.y22{bottom:233.466667pt;}
.y147{bottom:236.666667pt;}
.ya0{bottom:237.146667pt;}
.y11e{bottom:237.306667pt;}
.yf3{bottom:238.106667pt;}
.y4e{bottom:241.306667pt;}
.y76{bottom:244.666667pt;}
.ybe{bottom:246.306667pt;}
.y21{bottom:248.986667pt;}
.y9f{bottom:252.666667pt;}
.yf2{bottom:253.626667pt;}
.y146{bottom:260.186667pt;}
.y11d{bottom:260.986667pt;}
.ydc{bottom:263.546667pt;}
.y20{bottom:264.666667pt;}
.y4d{bottom:265.626667pt;}
.y9e{bottom:268.346667pt;}
.yf1{bottom:269.306667pt;}
.ybd{bottom:270.466667pt;}
.y75{bottom:273.146667pt;}
.y145{bottom:275.906667pt;}
.y11c{bottom:276.706667pt;}
.y74{bottom:282.626667pt;}
.y9d{bottom:284.066667pt;}
.yf0{bottom:285.026667pt;}
.y1f{bottom:288.546667pt;}
.y4c{bottom:289.986667pt;}
.y144{bottom:291.586667pt;}
.ybc{bottom:294.786667pt;}
.ydb{bottom:295.266667pt;}
.y9c{bottom:299.586667pt;}
.y11b{bottom:300.226667pt;}
.yef{bottom:300.546667pt;}
.y4b{bottom:314.306667pt;}
.y143{bottom:315.106667pt;}
.y11a{bottom:315.906667pt;}
.yee{bottom:316.226667pt;}
.ybb{bottom:319.106667pt;}
.y73{bottom:323.266667pt;}
.yda{bottom:326.946667pt;}
.y142{bottom:330.786667pt;}
.y119{bottom:331.586667pt;}
.y1e{bottom:331.746667pt;}
.y4a{bottom:338.626667pt;}
.y72{bottom:338.946667pt;}
.yd9{bottom:342.626667pt;}
.yba{bottom:343.426667pt;}
.yed{bottom:347.906667pt;}
.y9b{bottom:354.306667pt;}
.y141{bottom:354.466667pt;}
.y71{bottom:354.626667pt;}
.y118{bottom:355.106667pt;}
.y49{bottom:362.946667pt;}
.yec{bottom:363.586667pt;}
.y1d{bottom:364.706667pt;}
.y9a{bottom:365.026667pt;}
.yb9{bottom:367.746667pt;}
.y140{bottom:370.146667pt;}
.y117{bottom:370.786667pt;}
.yd8{bottom:371.106667pt;}
.y70{bottom:378.146667pt;}
.yeb{bottom:379.106667pt;}
.y1c{bottom:380.386667pt;}
.y48{bottom:387.266667pt;}
.y99{bottom:389.346667pt;}
.yb8{bottom:392.066667pt;}
.y13f{bottom:393.666667pt;}
.y116{bottom:394.306667pt;}
.yea{bottom:394.786667pt;}
.y1b{bottom:395.906667pt;}
.y13e{bottom:409.346667pt;}
.y6f{bottom:409.826667pt;}
.y115{bottom:409.986667pt;}
.ye9{bottom:410.466667pt;}
.y47{bottom:411.426667pt;}
.y1a{bottom:411.586667pt;}
.y98{bottom:413.666667pt;}
.yb7{bottom:416.413333pt;}
.y13d{bottom:425.026667pt;}
.y6e{bottom:425.506667pt;}
.ye8{bottom:425.986667pt;}
.y19{bottom:427.266667pt;}
.y114{bottom:433.666667pt;}
.y45{bottom:435.746667pt;}
.y97{bottom:437.986667pt;}
.yb6{bottom:440.573333pt;}
.ye7{bottom:441.666667pt;}
.y18{bottom:442.946667pt;}
.y13c{bottom:448.546667pt;}
.y6d{bottom:449.026667pt;}
.y113{bottom:449.346667pt;}
.ye6{bottom:457.346667pt;}
.y17{bottom:458.466667pt;}
.y96{bottom:462.306667pt;}
.y13b{bottom:464.226667pt;}
.yb5{bottom:464.893333pt;}
.y112{bottom:465.026667pt;}
.ye5{bottom:472.866667pt;}
.y16{bottom:474.146667pt;}
.y6c{bottom:480.706667pt;}
.y95{bottom:486.466667pt;}
.y13a{bottom:487.746667pt;}
.ye4{bottom:488.546667pt;}
.yb4{bottom:489.213333pt;}
.y15{bottom:489.826667pt;}
.y44{bottom:494.786667pt;}
.y139{bottom:503.426667pt;}
.y111{bottom:504.226667pt;}
.y6b{bottom:504.386667pt;}
.y14{bottom:505.346667pt;}
.y93{bottom:510.786667pt;}
.yb3{bottom:513.533333pt;}
.y138{bottom:519.133333pt;}
.ye3{bottom:520.253333pt;}
.y13{bottom:521.053333pt;}
.y43{bottom:526.333333pt;}
.y110{bottom:528.093333pt;}
.y6a{bottom:535.933333pt;}
.yb2{bottom:537.853333pt;}
.ycc{bottom:541.373333pt;}
.y42{bottom:542.013333pt;}
.y137{bottom:542.813333pt;}
.y12{bottom:544.893333pt;}
.y92{bottom:550.813333pt;}
.ye2{bottom:551.453333pt;}
.y69{bottom:551.613333pt;}
.ycb{bottom:552.093333pt;}
.y41{bottom:557.693333pt;}
.y136{bottom:558.493333pt;}
.yb1{bottom:562.213333pt;}
.ye1{bottom:567.133333pt;}
.y68{bottom:567.293333pt;}
.y10f{bottom:570.973333pt;}
.yca{bottom:576.453333pt;}
.y40{bottom:581.213333pt;}
.y135{bottom:582.013333pt;}
.y67{bottom:582.973333pt;}
.yb0{bottom:586.533333pt;}
.y11{bottom:587.773333pt;}
.ye0{bottom:590.973333pt;}
.y91{bottom:594.013333pt;}
.y10e{bottom:594.973333pt;}
.y134{bottom:597.693333pt;}
.y66{bottom:598.653333pt;}
.yc9{bottom:600.773333pt;}
.y3e{bottom:610.653333pt;}
.yaf{bottom:610.693333pt;}
.y133{bottom:613.373333pt;}
.y65{bottom:614.173333pt;}
.y10{bottom:619.613333pt;}
.yc8{bottom:625.093333pt;}
.y90{bottom:625.693333pt;}
.y10d{bottom:627.773333pt;}
.ydf{bottom:633.853333pt;}
.y3d{bottom:634.813333pt;}
.y132{bottom:636.893333pt;}
.y64{bottom:637.853333pt;}
.y8f{bottom:641.373333pt;}
.yc7{bottom:649.413333pt;}
.yde{bottom:649.533333pt;}
.yac{bottom:650.693333pt;}
.yf{bottom:651.613333pt;}
.y10c{bottom:651.773333pt;}
.y131{bottom:652.573333pt;}
.y8e{bottom:657.053333pt;}
.y3b{bottom:659.133333pt;}
.y63{bottom:669.693333pt;}
.y8d{bottom:672.573333pt;}
.yc6{bottom:673.733333pt;}
.y130{bottom:676.093333pt;}
.ydd{bottom:678.173333pt;}
.y39{bottom:683.453333pt;}
.y10b{bottom:684.893333pt;}
.ye{bottom:686.973333pt;}
.y8c{bottom:688.253333pt;}
.y12f{bottom:691.773333pt;}
.yc5{bottom:697.893333pt;}
.yd{bottom:702.973333pt;}
.y8b{bottom:703.933333pt;}
.y12e{bottom:707.453333pt;}
.yd7{bottom:708.093333pt;}
.yab{bottom:709.573333pt;}
.y62{bottom:710.333333pt;}
.yc{bottom:718.973333pt;}
.y8a{bottom:719.613333pt;}
.yd6{bottom:723.773333pt;}
.y38{bottom:726.813333pt;}
.y10a{bottom:727.933333pt;}
.y12d{bottom:731.133333pt;}
.yb{bottom:731.613333pt;}
.ya9{bottom:733.280000pt;}
.y61{bottom:734.653333pt;}
.y89{bottom:735.133333pt;}
.yd5{bottom:739.453333pt;}
.y109{bottom:743.613333pt;}
.y12c{bottom:746.813333pt;}
.y88{bottom:750.813333pt;}
.ya{bottom:750.973333pt;}
.yd4{bottom:755.133333pt;}
.y37{bottom:758.333333pt;}
.y5f{bottom:758.973333pt;}
.y108{bottom:759.133333pt;}
.y9{bottom:763.653333pt;}
.y87{bottom:766.533333pt;}
.y12b{bottom:770.373333pt;}
.yd3{bottom:770.853333pt;}
.y36{bottom:774.053333pt;}
.y107{bottom:774.853333pt;}
.y86{bottom:782.053333pt;}
.y8{bottom:783.013333pt;}
.y5e{bottom:783.173333pt;}
.y12a{bottom:786.053333pt;}
.yd2{bottom:786.373333pt;}
.y35{bottom:789.733333pt;}
.y106{bottom:790.533333pt;}
.yd1{bottom:802.053333pt;}
.y85{bottom:805.733333pt;}
.y105{bottom:806.053333pt;}
.y5d{bottom:807.493333pt;}
.y129{bottom:809.573333pt;}
.y7{bottom:811.493333pt;}
.y34{bottom:813.253333pt;}
.yd0{bottom:817.733333pt;}
.y104{bottom:821.733333pt;}
.y128{bottom:825.253333pt;}
.y6{bottom:827.973333pt;}
.y5c{bottom:831.813333pt;}
.y103{bottom:837.413333pt;}
.y84{bottom:837.573333pt;}
.y5{bottom:844.453333pt;}
.y33{bottom:845.093333pt;}
.y127{bottom:848.933333pt;}
.ycf{bottom:849.253333pt;}
.y102{bottom:852.933333pt;}
.y5b{bottom:856.133333pt;}
.y126{bottom:864.613333pt;}
.yce{bottom:864.933333pt;}
.y101{bottom:868.613333pt;}
.y4{bottom:877.893333pt;}
.y125{bottom:880.133333pt;}
.y5a{bottom:880.453333pt;}
.ycd{bottom:880.613333pt;}
.y100{bottom:884.293333pt;}
.y32{bottom:888.133333pt;}
.y83{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.y31{bottom:903.813333pt;}
.y59{bottom:904.773333pt;}
.yff{bottom:908.133333pt;}
.y82{bottom:911.813333pt;}
.y30{bottom:919.493333pt;}
.y81{bottom:927.493333pt;}
.y58{bottom:929.093333pt;}
.y2f{bottom:935.173333pt;}
.y124{bottom:943.013333pt;}
.y80{bottom:943.173333pt;}
.y2e{bottom:950.693333pt;}
.yfe{bottom:951.013333pt;}
.y57{bottom:953.253333pt;}
.y7f{bottom:958.693333pt;}
.y2d{bottom:966.373333pt;}
.yfd{bottom:966.693333pt;}
.y7e{bottom:974.373333pt;}
.y56{bottom:977.573333pt;}
.yfc{bottom:982.373333pt;}
.y7d{bottom:990.053333pt;}
.y2c{bottom:997.893333pt;}
.yfb{bottom:998.053333pt;}
.y54{bottom:1001.893333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hd{height:23.520000pt;}
.h10{height:23.552000pt;}
.hb{height:23.680000pt;}
.hf{height:23.712000pt;}
.h2{height:26.415625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h15{height:37.310625pt;}
.h18{height:39.200000pt;}
.he{height:39.360000pt;}
.h14{height:39.392000pt;}
.hc{height:44.975625pt;}
.h7{height:46.220625pt;}
.h5{height:49.005000pt;}
.h8{height:49.852500pt;}
.h19{height:51.232500pt;}
.h1a{height:54.598989pt;}
.ha{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h13{height:82.060625pt;}
.h12{height:82.220625pt;}
.h11{height:85.728125pt;}
.h16{height:793.920000pt;}
.h17{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:27.680000pt;}
.w1a{width:55.872000pt;}
.wb{width:63.840000pt;}
.w8{width:63.872000pt;}
.w3{width:65.440000pt;}
.w9{width:73.120000pt;}
.w6{width:73.152000pt;}
.w7{width:75.040000pt;}
.wa{width:75.072000pt;}
.w10{width:78.432000pt;}
.w12{width:82.592000pt;}
.we{width:84.000000pt;}
.w1e{width:84.320000pt;}
.w11{width:95.872000pt;}
.w16{width:101.952000pt;}
.wd{width:103.200000pt;}
.w20{width:103.232000pt;}
.w22{width:112.672000pt;}
.w1f{width:112.800000pt;}
.w21{width:122.080000pt;}
.w24{width:122.272000pt;}
.w23{width:131.680000pt;}
.w15{width:181.786667pt;}
.wc{width:191.386667pt;}
.w1b{width:197.760000pt;}
.w14{width:206.906667pt;}
.w5{width:213.466667pt;}
.w4{width:213.506667pt;}
.w1c{width:226.106667pt;}
.w1d{width:244.986667pt;}
.w13{width:492.093333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w18{width:1122.000000pt;}
.w19{width:1122.239983pt;}
.w17{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.xe{left:9.280000pt;}
.x38{left:12.800000pt;}
.x11{left:13.760000pt;}
.x1d{left:15.520000pt;}
.x36{left:17.160000pt;}
.x18{left:18.560000pt;}
.x15{left:20.160000pt;}
.x13{left:21.280000pt;}
.x1a{left:22.240000pt;}
.x1c{left:24.320000pt;}
.x17{left:25.920000pt;}
.x19{left:26.880000pt;}
.x2d{left:31.040000pt;}
.xf{left:34.080000pt;}
.x2f{left:38.400000pt;}
.x1b{left:40.640000pt;}
.x16{left:44.320000pt;}
.x3b{left:48.040000pt;}
.x29{left:49.120000pt;}
.x14{left:51.520000pt;}
.x2a{left:52.640000pt;}
.x1{left:60.480000pt;}
.x25{left:64.320000pt;}
.x28{left:68.960000pt;}
.x2c{left:71.040000pt;}
.x2e{left:74.720000pt;}
.x42{left:79.711988pt;}
.x39{left:80.666667pt;}
.x30{left:83.520000pt;}
.x2b{left:87.200000pt;}
.x34{left:95.999983pt;}
.x46{left:98.911988pt;}
.x24{left:130.880000pt;}
.x4{left:150.106667pt;}
.x31{left:151.706655pt;}
.x35{left:153.146667pt;}
.x22{left:157.626667pt;}
.x2{left:180.186655pt;}
.x6{left:216.186667pt;}
.x3c{left:238.106667pt;}
.x23{left:240.866667pt;}
.xc{left:249.506667pt;}
.x45{left:274.626655pt;}
.x43{left:287.266655pt;}
.x8{left:290.146667pt;}
.x40{left:315.866650pt;}
.x10{left:334.146667pt;}
.x32{left:344.346650pt;}
.x1e{left:349.026655pt;}
.x20{left:351.426655pt;}
.x12{left:362.466667pt;}
.x9{left:365.826667pt;}
.x1f{left:415.293322pt;}
.x21{left:425.053322pt;}
.x7{left:430.493333pt;}
.xd{left:441.533333pt;}
.x26{left:448.413333pt;}
.x3d{left:455.586667pt;}
.xa{left:504.253333pt;}
.x37{left:578.466667pt;}
.xb{left:580.133333pt;}
.x27{left:631.013333pt;}
.x3e{left:691.773333pt;}
.x3{left:703.973322pt;}
.x41{left:723.039988pt;}
.x44{left:726.079988pt;}
.x3a{left:824.093333pt;}
.x3f{left:947.013333pt;}
.x33{left:996.773317pt;}
}




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