
    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_60a4fff46a595c150c9510f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_202f1175e188e3d5a953d155.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_eb54e07eb6f3670ca043749b.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_258309357a4e73b3f17ecd3b.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_df2e3dfe7dd2604ca2573a22.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109375;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_05e03e6302a9613bbdf77ad6.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_15b127ab679a5be88dc55a82.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a2242f253d9c6d265d8300a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d9e572fa0e9a806f485f448.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_77a6a8ab86f05d966e98e5a2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3bf33b4c09b610ec0b1be03b.woff2')format("woff");}.ffc{font-family:ffc;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;}
.v4{vertical-align:-15.120000px;}
.v7{vertical-align:-12.240000px;}
.v2{vertical-align:-6.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v9{vertical-align:12.240000px;}
.v3{vertical-align:15.120000px;}
.v8{vertical-align:21.960000px;}
.va{vertical-align:30.240000px;}
.ls1f{letter-spacing:-0.606000px;}
.ls23{letter-spacing:-0.444600px;}
.ls25{letter-spacing:-0.299400px;}
.ls33{letter-spacing:-0.246600px;}
.ls12{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls34{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls30{letter-spacing:-0.060600px;}
.ls35{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023040px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls2d{letter-spacing:0.051840px;}
.ls26{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.060480px;}
.ls24{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls2a{letter-spacing:0.072000px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls2c{letter-spacing:0.097560px;}
.ls2f{letter-spacing:0.113400px;}
.ls22{letter-spacing:0.127200px;}
.ls7{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.155520px;}
.ls11{letter-spacing:0.173400px;}
.ls14{letter-spacing:0.175680px;}
.ls28{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.191520px;}
.ls36{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.405000px;}
.ls16{letter-spacing:0.420480px;}
.ls17{letter-spacing:1.352880px;}
.ls2b{letter-spacing:1.973520px;}
.ls1d{letter-spacing:2.253600px;}
.ls1c{letter-spacing:2.410200px;}
.ls21{letter-spacing:2.612520px;}
.ls5{letter-spacing:3.693600px;}
.ls1b{letter-spacing:3.935880px;}
.ls19{letter-spacing:3.998520px;}
.ls1e{letter-spacing:6.455880px;}
.ls1a{letter-spacing:12.850200px;}
.ls20{letter-spacing:13.234320px;}
.ls18{letter-spacing:16.450200px;}
.ls32{letter-spacing:47.726640px;}
.ls31{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws22{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.473600px;}
.ws8{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.353600px;}
.wsd{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.226400px;}
.ws25{word-spacing:-13.211640px;}
.wse{word-spacing:-13.162800px;}
.ws24{word-spacing:-13.134000px;}
.wsb{word-spacing:-13.039800px;}
.ws23{word-spacing:-12.979800px;}
.ws2{word-spacing:-11.880000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1f{word-spacing:-9.358800px;}
.ws3{word-spacing:-9.331800px;}
.ws4{word-spacing:-9.266400px;}
.ws14{word-spacing:-8.614200px;}
.ws5{word-spacing:-8.553600px;}
.ws15{word-spacing:-8.254200px;}
.ws1e{word-spacing:-0.176040px;}
.wsf{word-spacing:-0.060120px;}
.ws10{word-spacing:-0.038880px;}
.ws9{word-spacing:0.000000px;}
.ws1a{word-spacing:0.311040px;}
.ws12{word-spacing:0.640560px;}
.ws21{word-spacing:3.303720px;}
.ws11{word-spacing:3.423960px;}
.ws7{word-spacing:4.304880px;}
.ws1c{word-spacing:4.481280px;}
.ws1d{word-spacing:6.121440px;}
.ws19{word-spacing:7.506000px;}
.ws1b{word-spacing:7.866000px;}
.ws20{word-spacing:9.361440px;}
.ws18{word-spacing:11.826000px;}
.ws17{word-spacing:12.186000px;}
._12{margin-left:-6.183360px;}
._e{margin-left:-4.288801px;}
._d{margin-left:-3.166079px;}
._7{margin-left:-2.140440px;}
._0{margin-left:-1.110000px;}
._2{width:1.174068px;}
._4{width:2.174689px;}
._6{width:3.504670px;}
._9{width:4.549987px;}
._5{width:5.607000px;}
._a{width:7.334400px;}
._b{width:8.592245px;}
._c{width:10.039257px;}
._8{width:12.112200px;}
._f{width:14.228040px;}
._14{width:15.991920px;}
._15{width:17.170440px;}
._16{width:19.071720px;}
._13{width:20.954880px;}
._10{width:24.048000px;}
._11{width:25.286640px;}
._1{width:34.474848px;}
._3{width:35.565036px;}
._18{width:38.176200px;}
._17{width:144.517080px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsa{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:74.880000px;}
.fs4{font-size:83.880000px;}
.yb1{bottom:-367.050000px;}
.ycd{bottom:-313.020000px;}
.yb0{bottom:-123.060000px;}
.ycc{bottom:-69.030000px;}
.yae{bottom:-22.680000px;}
.yaf{bottom:-8.100000px;}
.yad{bottom:-5.850000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:2.070000px;}
.y138{bottom:4.590000px;}
.y10e{bottom:7.470000px;}
.y60{bottom:7.830000px;}
.y128{bottom:7.860000px;}
.y5e{bottom:7.920000px;}
.y12c{bottom:8.370000px;}
.y12b{bottom:10.980000px;}
.y105{bottom:15.300000px;}
.y108{bottom:15.390000px;}
.y136{bottom:15.570000px;}
.y10f{bottom:17.550000px;}
.yca{bottom:18.900000px;}
.y137{bottom:20.970000px;}
.y110{bottom:27.000000px;}
.y10d{bottom:28.890000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y80{bottom:115.770000px;}
.ye5{bottom:129.720000px;}
.y150{bottom:133.230000px;}
.yf8{bottom:137.100000px;}
.y17c{bottom:139.350000px;}
.y29{bottom:140.790000px;}
.ye4{bottom:147.270000px;}
.y14f{bottom:150.870000px;}
.y7f{bottom:151.410000px;}
.y17b{bottom:156.990000px;}
.y28{bottom:158.340000px;}
.ye3{bottom:164.910000px;}
.y4c{bottom:165.810000px;}
.y14e{bottom:168.420000px;}
.yf7{bottom:172.740000px;}
.y123{bottom:173.280000px;}
.y17a{bottom:174.540000px;}
.y27{bottom:175.980000px;}
.y7e{bottom:183.630000px;}
.y14d{bottom:185.970000px;}
.y179{bottom:192.090000px;}
.y26{bottom:193.530000px;}
.ye2{bottom:200.460000px;}
.y4b{bottom:201.450000px;}
.y98{bottom:201.720000px;}
.y69{bottom:201.990000px;}
.y14c{bottom:203.610000px;}
.yf6{bottom:208.290000px;}
.y122{bottom:208.920000px;}
.y25{bottom:211.170000px;}
.y178{bottom:218.730000px;}
.y97{bottom:219.270000px;}
.y68{bottom:219.630000px;}
.y14b{bottom:221.160000px;}
.yf5{bottom:225.930000px;}
.y121{bottom:226.470000px;}
.y88{bottom:226.620000px;}
.y24{bottom:228.720000px;}
.ye1{bottom:232.680000px;}
.y177{bottom:236.280000px;}
.y96{bottom:236.820000px;}
.y4a{bottom:237.000000px;}
.y67{bottom:237.180000px;}
.y14a{bottom:238.800000px;}
.yf4{bottom:243.480000px;}
.y120{bottom:244.020000px;}
.y23{bottom:246.270000px;}
.y176{bottom:253.830000px;}
.y95{bottom:254.460000px;}
.y49{bottom:254.550000px;}
.y66{bottom:254.730000px;}
.y149{bottom:256.350000px;}
.yc8{bottom:260.850000px;}
.yf3{bottom:261.030000px;}
.y11f{bottom:261.660000px;}
.y22{bottom:263.910000px;}
.y175{bottom:271.470000px;}
.y48{bottom:272.190000px;}
.y65{bottom:272.370000px;}
.y148{bottom:273.900000px;}
.yc7{bottom:278.490000px;}
.y11e{bottom:279.210000px;}
.y21{bottom:281.460000px;}
.y47{bottom:289.740000px;}
.y64{bottom:289.920000px;}
.y94{bottom:290.010000px;}
.y147{bottom:291.540000px;}
.yc6{bottom:296.040000px;}
.yf2{bottom:296.670000px;}
.y11d{bottom:296.850000px;}
.y174{bottom:298.020000px;}
.y20{bottom:299.100000px;}
.y19f{bottom:301.800000px;}
.yab{bottom:304.050000px;}
.y46{bottom:307.380000px;}
.y63{bottom:307.560000px;}
.y146{bottom:309.090000px;}
.yc5{bottom:313.680000px;}
.y11c{bottom:314.400000px;}
.y173{bottom:315.660000px;}
.y1f{bottom:316.650000px;}
.y19e{bottom:319.440000px;}
.y93{bottom:322.230000px;}
.y45{bottom:324.930000px;}
.y145{bottom:326.640000px;}
.yf1{bottom:328.890000px;}
.yc4{bottom:331.230000px;}
.y11b{bottom:331.950000px;}
.y62{bottom:334.110000px;}
.y1e{bottom:334.200000px;}
.yaa{bottom:339.600000px;}
.y172{bottom:342.210000px;}
.y44{bottom:342.480000px;}
.y144{bottom:344.280000px;}
.y19d{bottom:345.990000px;}
.y11a{bottom:349.590000px;}
.y1d{bottom:351.840000px;}
.y171{bottom:359.760000px;}
.y143{bottom:361.830000px;}
.y19c{bottom:363.540000px;}
.y61{bottom:364.080000px;}
.yc3{bottom:366.780000px;}
.y119{bottom:367.140000px;}
.y43{bottom:369.120000px;}
.ya9{bottom:375.150000px;}
.y1c{bottom:378.750000px;}
.y142{bottom:379.470000px;}
.y19b{bottom:381.180000px;}
.yc2{bottom:384.420000px;}
.y118{bottom:384.780000px;}
.y170{bottom:386.400000px;}
.y5f{bottom:391.440000px;}
.ya8{bottom:392.790000px;}
.yc1{bottom:401.970000px;}
.y117{bottom:402.330000px;}
.y16f{bottom:403.950000px;}
.y42{bottom:404.670000px;}
.ye0{bottom:404.760000px;}
.y141{bottom:406.380000px;}
.y19a{bottom:407.730000px;}
.ya7{bottom:410.340000px;}
.y5d{bottom:418.710000px;}
.ydf{bottom:422.400000px;}
.y1b{bottom:427.350000px;}
.ya6{bottom:427.980000px;}
.yc0{bottom:428.610000px;}
.y16e{bottom:430.590000px;}
.y199{bottom:434.370000px;}
.y41{bottom:436.890000px;}
.y116{bottom:437.880000px;}
.yde{bottom:439.950000px;}
.ya5{bottom:445.530000px;}
.y16d{bottom:448.140000px;}
.y198{bottom:451.920000px;}
.y140{bottom:452.010000px;}
.y115{bottom:455.520000px;}
.ydd{bottom:457.500000px;}
.ya4{bottom:463.080000px;}
.ybf{bottom:464.160000px;}
.y1a{bottom:464.340000px;}
.y5c{bottom:467.490000px;}
.y7d{bottom:468.210000px;}
.y197{bottom:469.470000px;}
.y114{bottom:473.100000px;}
.y16c{bottom:474.720000px;}
.ydc{bottom:475.170000px;}
.y13f{bottom:479.400000px;}
.ya3{bottom:480.750000px;}
.ybe{bottom:481.740000px;}
.y19{bottom:481.920000px;}
.y7c{bottom:485.790000px;}
.y113{bottom:490.650000px;}
.y16b{bottom:492.360000px;}
.y196{bottom:496.140000px;}
.ya2{bottom:498.300000px;}
.ybd{bottom:499.380000px;}
.y18{bottom:499.560000px;}
.y5b{bottom:503.070000px;}
.y92{bottom:503.340000px;}
.y7b{bottom:503.430000px;}
.yf0{bottom:505.500000px;}
.y13e{bottom:506.670000px;}
.y16a{bottom:509.910000px;}
.ydb{bottom:510.720000px;}
.y195{bottom:513.690000px;}
.y17{bottom:517.110000px;}
.y112{bottom:517.290000px;}
.y5a{bottom:520.620000px;}
.y7a{bottom:520.980000px;}
.yef{bottom:523.050000px;}
.y169{bottom:527.550000px;}
.y194{bottom:531.330000px;}
.ya1{bottom:533.940000px;}
.y13d{bottom:534.030000px;}
.y16{bottom:534.750000px;}
.ybc{bottom:534.930000px;}
.y59{bottom:538.260000px;}
.y79{bottom:538.530000px;}
.yda{bottom:542.940000px;}
.y168{bottom:545.100000px;}
.y111{bottom:547.260000px;}
.y15{bottom:552.300000px;}
.y78{bottom:556.170000px;}
.y193{bottom:557.880000px;}
.yee{bottom:558.690000px;}
.y13c{bottom:561.390000px;}
.y167{bottom:562.650000px;}
.ybb{bottom:567.150000px;}
.ya0{bottom:567.510000px;}
.y14{bottom:569.850000px;}
.y77{bottom:573.720000px;}
.y58{bottom:573.810000px;}
.yac{bottom:574.260000px;}
.y192{bottom:575.430000px;}
.y13{bottom:587.490000px;}
.y13b{bottom:588.750000px;}
.y166{bottom:589.290000px;}
.yed{bottom:590.910000px;}
.y76{bottom:591.360000px;}
.y10c{bottom:593.790000px;}
.y91{bottom:600.270000px;}
.y191{bottom:602.070000px;}
.y12{bottom:605.040000px;}
.y57{bottom:606.030000px;}
.y165{bottom:606.840000px;}
.y75{bottom:608.910000px;}
.y13a{bottom:616.020000px;}
.y190{bottom:619.620000px;}
.y11{bottom:622.680000px;}
.y164{bottom:624.480000px;}
.y74{bottom:626.460000px;}
.y87{bottom:630.240000px;}
.y18f{bottom:637.260000px;}
.y10b{bottom:640.230000px;}
.y163{bottom:642.030000px;}
.y139{bottom:643.380000px;}
.y10{bottom:649.590000px;}
.y73{bottom:653.100000px;}
.y90{bottom:657.600000px;}
.y162{bottom:659.580000px;}
.y18e{bottom:663.810000px;}
.y135{bottom:670.740000px;}
.y10a{bottom:675.060000px;}
.y161{bottom:677.220000px;}
.y18d{bottom:681.360000px;}
.y8f{bottom:684.960000px;}
.y72{bottom:688.650000px;}
.yf{bottom:697.830000px;}
.y18c{bottom:699.000000px;}
.y160{bottom:703.770000px;}
.y134{bottom:705.750000px;}
.y71{bottom:706.290000px;}
.y109{bottom:709.890000px;}
.y8e{bottom:712.320000px;}
.y15f{bottom:721.410000px;}
.y18b{bottom:725.550000px;}
.y40{bottom:730.590000px;}
.y70{bottom:732.840000px;}
.yd9{bottom:733.110000px;}
.ye{bottom:733.650000px;}
.y8d{bottom:739.590000px;}
.y9f{bottom:741.840000px;}
.y18a{bottom:743.190000px;}
.y107{bottom:744.630000px;}
.y15e{bottom:747.960000px;}
.y3f{bottom:748.140000px;}
.yd8{bottom:750.660000px;}
.yba{bottom:755.070000px;}
.y9e{bottom:759.390000px;}
.y133{bottom:760.470000px;}
.y15d{bottom:765.510000px;}
.y3e{bottom:765.690000px;}
.y8c{bottom:766.950000px;}
.yd7{bottom:768.210000px;}
.y6f{bottom:768.390000px;}
.yd{bottom:769.650000px;}
.y189{bottom:769.740000px;}
.yb9{bottom:772.620000px;}
.y9d{bottom:777.030000px;}
.y106{bottom:779.460000px;}
.y15c{bottom:783.150000px;}
.yec{bottom:783.240000px;}
.y3d{bottom:783.330000px;}
.yd6{bottom:785.850000px;}
.y6e{bottom:786.030000px;}
.y188{bottom:787.290000px;}
.y132{bottom:787.740000px;}
.yb8{bottom:790.170000px;}
.y8b{bottom:794.310000px;}
.y9c{bottom:794.580000px;}
.y3c{bottom:800.880000px;}
.yd5{bottom:803.400000px;}
.y6d{bottom:803.580000px;}
.y187{bottom:804.930000px;}
.yc{bottom:805.650000px;}
.yb7{bottom:807.810000px;}
.y15b{bottom:809.700000px;}
.y9b{bottom:812.220000px;}
.y104{bottom:814.290000px;}
.y131{bottom:815.100000px;}
.yeb{bottom:818.430000px;}
.yd4{bottom:821.040000px;}
.y8a{bottom:821.670000px;}
.yb6{bottom:825.360000px;}
.y15a{bottom:827.340000px;}
.yb{bottom:827.430000px;}
.y3b{bottom:827.520000px;}
.y6c{bottom:830.220000px;}
.y186{bottom:831.480000px;}
.yea{bottom:836.340000px;}
.yd3{bottom:838.590000px;}
.ya{bottom:841.650000px;}
.y130{bottom:842.460000px;}
.y9a{bottom:847.770000px;}
.y89{bottom:848.940000px;}
.y185{bottom:849.030000px;}
.yb5{bottom:851.910000px;}
.ye9{bottom:853.890000px;}
.y3a{bottom:863.340000px;}
.y9{bottom:863.430000px;}
.y6b{bottom:865.770000px;}
.y184{bottom:866.670000px;}
.y12f{bottom:869.730000px;}
.y103{bottom:870.450000px;}
.y159{bottom:871.440000px;}
.ye8{bottom:871.530000px;}
.yd2{bottom:874.140000px;}
.y86{bottom:876.300000px;}
.y8{bottom:877.650000px;}
.y99{bottom:879.990000px;}
.yb4{bottom:884.580000px;}
.y158{bottom:889.080000px;}
.yd1{bottom:891.780000px;}
.y183{bottom:893.220000px;}
.y12e{bottom:897.090000px;}
.y56{bottom:897.450000px;}
.y6a{bottom:897.990000px;}
.y7{bottom:899.430000px;}
.y85{bottom:903.660000px;}
.y102{bottom:906.810000px;}
.ye7{bottom:907.080000px;}
.yd0{bottom:909.330000px;}
.y182{bottom:910.860000px;}
.y39{bottom:911.670000px;}
.y55{bottom:915.000000px;}
.y157{bottom:915.990000px;}
.yb3{bottom:920.130000px;}
.y12d{bottom:924.450000px;}
.ycf{bottom:926.970000px;}
.y181{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y84{bottom:930.930000px;}
.y6{bottom:931.560000px;}
.ye6{bottom:939.300000px;}
.y54{bottom:941.550000px;}
.y101{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.yb2{bottom:947.490000px;}
.y5{bottom:950.010000px;}
.y12a{bottom:951.810000px;}
.yc9{bottom:954.330000px;}
.y83{bottom:958.290000px;}
.yce{bottom:962.520000px;}
.y100{bottom:963.600000px;}
.y156{bottom:964.230000px;}
.y36{bottom:964.410000px;}
.y180{bottom:972.600000px;}
.y53{bottom:977.190000px;}
.yff{bottom:981.150000px;}
.y35{bottom:981.960000px;}
.y129{bottom:982.230000px;}
.y82{bottom:985.650000px;}
.y4{bottom:987.630000px;}
.y17f{bottom:990.150000px;}
.y155{bottom:991.140000px;}
.y52{bottom:994.740000px;}
.yfe{bottom:998.790000px;}
.y34{bottom:999.600000px;}
.y127{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y17e{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.yfd{bottom:1025.370000px;}
.y154{bottom:1028.160000px;}
.y51{bottom:1029.960000px;}
.y81{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y126{bottom:1036.890000px;}
.y153{bottom:1045.800000px;}
.y50{bottom:1047.510000px;}
.y17d{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.yfc{bottom:1060.920000px;}
.y152{bottom:1063.350000px;}
.y125{bottom:1064.250000px;}
.y4f{bottom:1065.150000px;}
.y30{bottom:1069.920000px;}
.yfb{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y151{bottom:1090.260000px;}
.y124{bottom:1091.610000px;}
.y4e{bottom:1091.700000px;}
.yfa{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.yf9{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y4d{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h15{height:-106.230000px;}
.h17{height:-52.200000px;}
.h11{height:26.550000px;}
.h12{height:26.580000px;}
.h10{height:26.640000px;}
.h1e{height:29.700000px;}
.h2{height:33.016641px;}
.h1a{height:34.020000px;}
.h1b{height:34.110000px;}
.h1f{height:34.290000px;}
.h20{height:35.497617px;}
.h6{height:37.191445px;}
.h3{height:40.100098px;}
.h1c{height:45.720000px;}
.h1d{height:50.667539px;}
.h7{height:52.311445px;}
.h8{height:53.573730px;}
.hd{height:53.896641px;}
.h5{height:56.140137px;}
.h22{height:57.323320px;}
.h18{height:57.457617px;}
.h9{height:59.060391px;}
.he{height:59.973223px;}
.h23{height:61.793886px;}
.hc{height:62.585859px;}
.ha{height:64.546875px;}
.hb{height:68.582109px;}
.hf{height:70.664062px;}
.h19{height:73.490625px;}
.h4{height:74.746582px;}
.h21{height:83.813730px;}
.h14{height:140.400000px;}
.h16{height:194.430000px;}
.h13{height:245.340000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:44.910000px;}
.wc{width:51.780000px;}
.w17{width:69.390000px;}
.w4{width:75.690000px;}
.w5{width:86.940000px;}
.w16{width:96.600000px;}
.w9{width:97.410000px;}
.w14{width:122.490000px;}
.wa{width:127.620000px;}
.w6{width:127.650000px;}
.w13{width:174.990000px;}
.w15{width:205.560000px;}
.w8{width:246.600000px;}
.we{width:261.840000px;}
.w10{width:266.580000px;}
.w11{width:273.540000px;}
.wd{width:285.570000px;}
.w3{width:291.810000px;}
.w7{width:473.250000px;}
.w12{width:561.720000px;}
.wf{width:569.010000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1c{left:10.800000px;}
.x2f{left:51.030000px;}
.x1{left:68.040000px;}
.x30{left:71.550000px;}
.x34{left:111.239987px;}
.x1f{left:155.069987px;}
.x1b{left:162.120000px;}
.x17{left:172.920000px;}
.x15{left:180.659987px;}
.x23{left:192.360000px;}
.x2{left:202.799987px;}
.xd{left:210.539987px;}
.x7{left:221.069987px;}
.x2c{left:229.979987px;}
.x13{left:233.129987px;}
.x20{left:241.290000px;}
.x1a{left:253.740000px;}
.x31{left:260.130000px;}
.x22{left:265.440000px;}
.x18{left:272.160000px;}
.x8{left:300.720000px;}
.x29{left:302.879987px;}
.x26{left:304.679987px;}
.x5{left:308.999987px;}
.x2b{left:314.849987px;}
.x25{left:321.869987px;}
.x27{left:339.779987px;}
.x2d{left:359.130000px;}
.xa{left:377.130000px;}
.xf{left:457.410000px;}
.x19{left:458.490000px;}
.xb{left:464.880000px;}
.x32{left:466.410000px;}
.x21{left:469.740000px;}
.x2e{left:482.340000px;}
.x11{left:503.040000px;}
.x10{left:555.630000px;}
.x33{left:563.730000px;}
.x6{left:578.309987px;}
.x4{left:588.389987px;}
.x2a{left:612.059987px;}
.x1e{left:618.809987px;}
.x14{left:637.889987px;}
.xc{left:642.389987px;}
.x28{left:671.639987px;}
.x12{left:678.389987px;}
.x24{left:682.889987px;}
.xe{left:715.559987px;}
.x16{left:731.489987px;}
.x1d{left:754.439987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v7{vertical-align:-10.880000pt;}
.v2{vertical-align:-5.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v9{vertical-align:10.880000pt;}
.v3{vertical-align:13.440000pt;}
.v8{vertical-align:19.520000pt;}
.va{vertical-align:26.880000pt;}
.ls1f{letter-spacing:-0.538667pt;}
.ls23{letter-spacing:-0.395200pt;}
.ls25{letter-spacing:-0.266133pt;}
.ls33{letter-spacing:-0.219200pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls34{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls30{letter-spacing:-0.053867pt;}
.ls35{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020480pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls2d{letter-spacing:0.046080pt;}
.ls26{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.053760pt;}
.ls24{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2a{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls2c{letter-spacing:0.086720pt;}
.ls2f{letter-spacing:0.100800pt;}
.ls22{letter-spacing:0.113067pt;}
.ls7{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.138240pt;}
.ls11{letter-spacing:0.154133pt;}
.ls14{letter-spacing:0.156160pt;}
.ls28{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.170240pt;}
.ls36{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.360000pt;}
.ls16{letter-spacing:0.373760pt;}
.ls17{letter-spacing:1.202560pt;}
.ls2b{letter-spacing:1.754240pt;}
.ls1d{letter-spacing:2.003200pt;}
.ls1c{letter-spacing:2.142400pt;}
.ls21{letter-spacing:2.322240pt;}
.ls5{letter-spacing:3.283200pt;}
.ls1b{letter-spacing:3.498560pt;}
.ls19{letter-spacing:3.554240pt;}
.ls1e{letter-spacing:5.738560pt;}
.ls1a{letter-spacing:11.422400pt;}
.ls20{letter-spacing:11.763840pt;}
.ls18{letter-spacing:14.622400pt;}
.ls32{letter-spacing:42.423680pt;}
.ls31{letter-spacing:71.863680pt;}
.ws22{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.643200pt;}
.ws8{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.869867pt;}
.wsd{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.756800pt;}
.ws25{word-spacing:-11.743680pt;}
.wse{word-spacing:-11.700267pt;}
.ws24{word-spacing:-11.674667pt;}
.wsb{word-spacing:-11.590933pt;}
.ws23{word-spacing:-11.537600pt;}
.ws2{word-spacing:-10.560000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1f{word-spacing:-8.318933pt;}
.ws3{word-spacing:-8.294933pt;}
.ws4{word-spacing:-8.236800pt;}
.ws14{word-spacing:-7.657067pt;}
.ws5{word-spacing:-7.603200pt;}
.ws15{word-spacing:-7.337067pt;}
.ws1e{word-spacing:-0.156480pt;}
.wsf{word-spacing:-0.053440pt;}
.ws10{word-spacing:-0.034560pt;}
.ws9{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.276480pt;}
.ws12{word-spacing:0.569387pt;}
.ws21{word-spacing:2.936640pt;}
.ws11{word-spacing:3.043520pt;}
.ws7{word-spacing:3.826560pt;}
.ws1c{word-spacing:3.983360pt;}
.ws1d{word-spacing:5.441280pt;}
.ws19{word-spacing:6.672000pt;}
.ws1b{word-spacing:6.992000pt;}
.ws20{word-spacing:8.321280pt;}
.ws18{word-spacing:10.512000pt;}
.ws17{word-spacing:10.832000pt;}
._12{margin-left:-5.496320pt;}
._e{margin-left:-3.812268pt;}
._d{margin-left:-2.814292pt;}
._7{margin-left:-1.902614pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043616pt;}
._4{width:1.933057pt;}
._6{width:3.115262pt;}
._9{width:4.044433pt;}
._5{width:4.984000pt;}
._a{width:6.519466pt;}
._b{width:7.637551pt;}
._c{width:8.923784pt;}
._8{width:10.766400pt;}
._f{width:12.647147pt;}
._14{width:14.215040pt;}
._15{width:15.262614pt;}
._16{width:16.952640pt;}
._13{width:18.626560pt;}
._10{width:21.376000pt;}
._11{width:22.477014pt;}
._1{width:30.644309pt;}
._3{width:31.613365pt;}
._18{width:33.934400pt;}
._17{width:128.459627pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsa{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:66.560000pt;}
.fs4{font-size:74.560000pt;}
.yb1{bottom:-326.266667pt;}
.ycd{bottom:-278.240000pt;}
.yb0{bottom:-109.386667pt;}
.ycc{bottom:-61.360000pt;}
.yae{bottom:-20.160000pt;}
.yaf{bottom:-7.200000pt;}
.yad{bottom:-5.200000pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:1.840000pt;}
.y138{bottom:4.080000pt;}
.y10e{bottom:6.640000pt;}
.y60{bottom:6.960000pt;}
.y128{bottom:6.986667pt;}
.y5e{bottom:7.040000pt;}
.y12c{bottom:7.440000pt;}
.y12b{bottom:9.760000pt;}
.y105{bottom:13.600000pt;}
.y108{bottom:13.680000pt;}
.y136{bottom:13.840000pt;}
.y10f{bottom:15.600000pt;}
.yca{bottom:16.800000pt;}
.y137{bottom:18.640000pt;}
.y110{bottom:24.000000pt;}
.y10d{bottom:25.680000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y80{bottom:102.906667pt;}
.ye5{bottom:115.306667pt;}
.y150{bottom:118.426667pt;}
.yf8{bottom:121.866667pt;}
.y17c{bottom:123.866667pt;}
.y29{bottom:125.146667pt;}
.ye4{bottom:130.906667pt;}
.y14f{bottom:134.106667pt;}
.y7f{bottom:134.586667pt;}
.y17b{bottom:139.546667pt;}
.y28{bottom:140.746667pt;}
.ye3{bottom:146.586667pt;}
.y4c{bottom:147.386667pt;}
.y14e{bottom:149.706667pt;}
.yf7{bottom:153.546667pt;}
.y123{bottom:154.026667pt;}
.y17a{bottom:155.146667pt;}
.y27{bottom:156.426667pt;}
.y7e{bottom:163.226667pt;}
.y14d{bottom:165.306667pt;}
.y179{bottom:170.746667pt;}
.y26{bottom:172.026667pt;}
.ye2{bottom:178.186667pt;}
.y4b{bottom:179.066667pt;}
.y98{bottom:179.306667pt;}
.y69{bottom:179.546667pt;}
.y14c{bottom:180.986667pt;}
.yf6{bottom:185.146667pt;}
.y122{bottom:185.706667pt;}
.y25{bottom:187.706667pt;}
.y178{bottom:194.426667pt;}
.y97{bottom:194.906667pt;}
.y68{bottom:195.226667pt;}
.y14b{bottom:196.586667pt;}
.yf5{bottom:200.826667pt;}
.y121{bottom:201.306667pt;}
.y88{bottom:201.440000pt;}
.y24{bottom:203.306667pt;}
.ye1{bottom:206.826667pt;}
.y177{bottom:210.026667pt;}
.y96{bottom:210.506667pt;}
.y4a{bottom:210.666667pt;}
.y67{bottom:210.826667pt;}
.y14a{bottom:212.266667pt;}
.yf4{bottom:216.426667pt;}
.y120{bottom:216.906667pt;}
.y23{bottom:218.906667pt;}
.y176{bottom:225.626667pt;}
.y95{bottom:226.186667pt;}
.y49{bottom:226.266667pt;}
.y66{bottom:226.426667pt;}
.y149{bottom:227.866667pt;}
.yc8{bottom:231.866667pt;}
.yf3{bottom:232.026667pt;}
.y11f{bottom:232.586667pt;}
.y22{bottom:234.586667pt;}
.y175{bottom:241.306667pt;}
.y48{bottom:241.946667pt;}
.y65{bottom:242.106667pt;}
.y148{bottom:243.466667pt;}
.yc7{bottom:247.546667pt;}
.y11e{bottom:248.186667pt;}
.y21{bottom:250.186667pt;}
.y47{bottom:257.546667pt;}
.y64{bottom:257.706667pt;}
.y94{bottom:257.786667pt;}
.y147{bottom:259.146667pt;}
.yc6{bottom:263.146667pt;}
.yf2{bottom:263.706667pt;}
.y11d{bottom:263.866667pt;}
.y174{bottom:264.906667pt;}
.y20{bottom:265.866667pt;}
.y19f{bottom:268.266667pt;}
.yab{bottom:270.266667pt;}
.y46{bottom:273.226667pt;}
.y63{bottom:273.386667pt;}
.y146{bottom:274.746667pt;}
.yc5{bottom:278.826667pt;}
.y11c{bottom:279.466667pt;}
.y173{bottom:280.586667pt;}
.y1f{bottom:281.466667pt;}
.y19e{bottom:283.946667pt;}
.y93{bottom:286.426667pt;}
.y45{bottom:288.826667pt;}
.y145{bottom:290.346667pt;}
.yf1{bottom:292.346667pt;}
.yc4{bottom:294.426667pt;}
.y11b{bottom:295.066667pt;}
.y62{bottom:296.986667pt;}
.y1e{bottom:297.066667pt;}
.yaa{bottom:301.866667pt;}
.y172{bottom:304.186667pt;}
.y44{bottom:304.426667pt;}
.y144{bottom:306.026667pt;}
.y19d{bottom:307.546667pt;}
.y11a{bottom:310.746667pt;}
.y1d{bottom:312.746667pt;}
.y171{bottom:319.786667pt;}
.y143{bottom:321.626667pt;}
.y19c{bottom:323.146667pt;}
.y61{bottom:323.626667pt;}
.yc3{bottom:326.026667pt;}
.y119{bottom:326.346667pt;}
.y43{bottom:328.106667pt;}
.ya9{bottom:333.466667pt;}
.y1c{bottom:336.666667pt;}
.y142{bottom:337.306667pt;}
.y19b{bottom:338.826667pt;}
.yc2{bottom:341.706667pt;}
.y118{bottom:342.026667pt;}
.y170{bottom:343.466667pt;}
.y5f{bottom:347.946667pt;}
.ya8{bottom:349.146667pt;}
.yc1{bottom:357.306667pt;}
.y117{bottom:357.626667pt;}
.y16f{bottom:359.066667pt;}
.y42{bottom:359.706667pt;}
.ye0{bottom:359.786667pt;}
.y141{bottom:361.226667pt;}
.y19a{bottom:362.426667pt;}
.ya7{bottom:364.746667pt;}
.y5d{bottom:372.186667pt;}
.ydf{bottom:375.466667pt;}
.y1b{bottom:379.866667pt;}
.ya6{bottom:380.426667pt;}
.yc0{bottom:380.986667pt;}
.y16e{bottom:382.746667pt;}
.y199{bottom:386.106667pt;}
.y41{bottom:388.346667pt;}
.y116{bottom:389.226667pt;}
.yde{bottom:391.066667pt;}
.ya5{bottom:396.026667pt;}
.y16d{bottom:398.346667pt;}
.y198{bottom:401.706667pt;}
.y140{bottom:401.786667pt;}
.y115{bottom:404.906667pt;}
.ydd{bottom:406.666667pt;}
.ya4{bottom:411.626667pt;}
.ybf{bottom:412.586667pt;}
.y1a{bottom:412.746667pt;}
.y5c{bottom:415.546667pt;}
.y7d{bottom:416.186667pt;}
.y197{bottom:417.306667pt;}
.y114{bottom:420.533333pt;}
.y16c{bottom:421.973333pt;}
.ydc{bottom:422.373333pt;}
.y13f{bottom:426.133333pt;}
.ya3{bottom:427.333333pt;}
.ybe{bottom:428.213333pt;}
.y19{bottom:428.373333pt;}
.y7c{bottom:431.813333pt;}
.y113{bottom:436.133333pt;}
.y16b{bottom:437.653333pt;}
.y196{bottom:441.013333pt;}
.ya2{bottom:442.933333pt;}
.ybd{bottom:443.893333pt;}
.y18{bottom:444.053333pt;}
.y5b{bottom:447.173333pt;}
.y92{bottom:447.413333pt;}
.y7b{bottom:447.493333pt;}
.yf0{bottom:449.333333pt;}
.y13e{bottom:450.373333pt;}
.y16a{bottom:453.253333pt;}
.ydb{bottom:453.973333pt;}
.y195{bottom:456.613333pt;}
.y17{bottom:459.653333pt;}
.y112{bottom:459.813333pt;}
.y5a{bottom:462.773333pt;}
.y7a{bottom:463.093333pt;}
.yef{bottom:464.933333pt;}
.y169{bottom:468.933333pt;}
.y194{bottom:472.293333pt;}
.ya1{bottom:474.613333pt;}
.y13d{bottom:474.693333pt;}
.y16{bottom:475.333333pt;}
.ybc{bottom:475.493333pt;}
.y59{bottom:478.453333pt;}
.y79{bottom:478.693333pt;}
.yda{bottom:482.613333pt;}
.y168{bottom:484.533333pt;}
.y111{bottom:486.453333pt;}
.y15{bottom:490.933333pt;}
.y78{bottom:494.373333pt;}
.y193{bottom:495.893333pt;}
.yee{bottom:496.613333pt;}
.y13c{bottom:499.013333pt;}
.y167{bottom:500.133333pt;}
.ybb{bottom:504.133333pt;}
.ya0{bottom:504.453333pt;}
.y14{bottom:506.533333pt;}
.y77{bottom:509.973333pt;}
.y58{bottom:510.053333pt;}
.yac{bottom:510.453333pt;}
.y192{bottom:511.493333pt;}
.y13{bottom:522.213333pt;}
.y13b{bottom:523.333333pt;}
.y166{bottom:523.813333pt;}
.yed{bottom:525.253333pt;}
.y76{bottom:525.653333pt;}
.y10c{bottom:527.813333pt;}
.y91{bottom:533.573333pt;}
.y191{bottom:535.173333pt;}
.y12{bottom:537.813333pt;}
.y57{bottom:538.693333pt;}
.y165{bottom:539.413333pt;}
.y75{bottom:541.253333pt;}
.y13a{bottom:547.573333pt;}
.y190{bottom:550.773333pt;}
.y11{bottom:553.493333pt;}
.y164{bottom:555.093333pt;}
.y74{bottom:556.853333pt;}
.y87{bottom:560.213333pt;}
.y18f{bottom:566.453333pt;}
.y10b{bottom:569.093333pt;}
.y163{bottom:570.693333pt;}
.y139{bottom:571.893333pt;}
.y10{bottom:577.413333pt;}
.y73{bottom:580.533333pt;}
.y90{bottom:584.533333pt;}
.y162{bottom:586.293333pt;}
.y18e{bottom:590.053333pt;}
.y135{bottom:596.213333pt;}
.y10a{bottom:600.053333pt;}
.y161{bottom:601.973333pt;}
.y18d{bottom:605.653333pt;}
.y8f{bottom:608.853333pt;}
.y72{bottom:612.133333pt;}
.yf{bottom:620.293333pt;}
.y18c{bottom:621.333333pt;}
.y160{bottom:625.573333pt;}
.y134{bottom:627.333333pt;}
.y71{bottom:627.813333pt;}
.y109{bottom:631.013333pt;}
.y8e{bottom:633.173333pt;}
.y15f{bottom:641.253333pt;}
.y18b{bottom:644.933333pt;}
.y40{bottom:649.413333pt;}
.y70{bottom:651.413333pt;}
.yd9{bottom:651.653333pt;}
.ye{bottom:652.133333pt;}
.y8d{bottom:657.413333pt;}
.y9f{bottom:659.413333pt;}
.y18a{bottom:660.613333pt;}
.y107{bottom:661.893333pt;}
.y15e{bottom:664.853333pt;}
.y3f{bottom:665.013333pt;}
.yd8{bottom:667.253333pt;}
.yba{bottom:671.173333pt;}
.y9e{bottom:675.013333pt;}
.y133{bottom:675.973333pt;}
.y15d{bottom:680.453333pt;}
.y3e{bottom:680.613333pt;}
.y8c{bottom:681.733333pt;}
.yd7{bottom:682.853333pt;}
.y6f{bottom:683.013333pt;}
.yd{bottom:684.133333pt;}
.y189{bottom:684.213333pt;}
.yb9{bottom:686.773333pt;}
.y9d{bottom:690.693333pt;}
.y106{bottom:692.853333pt;}
.y15c{bottom:696.133333pt;}
.yec{bottom:696.213333pt;}
.y3d{bottom:696.293333pt;}
.yd6{bottom:698.533333pt;}
.y6e{bottom:698.693333pt;}
.y188{bottom:699.813333pt;}
.y132{bottom:700.213333pt;}
.yb8{bottom:702.373333pt;}
.y8b{bottom:706.053333pt;}
.y9c{bottom:706.293333pt;}
.y3c{bottom:711.893333pt;}
.yd5{bottom:714.133333pt;}
.y6d{bottom:714.293333pt;}
.y187{bottom:715.493333pt;}
.yc{bottom:716.133333pt;}
.yb7{bottom:718.053333pt;}
.y15b{bottom:719.733333pt;}
.y9b{bottom:721.973333pt;}
.y104{bottom:723.813333pt;}
.y131{bottom:724.533333pt;}
.yeb{bottom:727.493333pt;}
.yd4{bottom:729.813333pt;}
.y8a{bottom:730.373333pt;}
.yb6{bottom:733.653333pt;}
.y15a{bottom:735.413333pt;}
.yb{bottom:735.493333pt;}
.y3b{bottom:735.573333pt;}
.y6c{bottom:737.973333pt;}
.y186{bottom:739.093333pt;}
.yea{bottom:743.413333pt;}
.yd3{bottom:745.413333pt;}
.ya{bottom:748.133333pt;}
.y130{bottom:748.853333pt;}
.y9a{bottom:753.573333pt;}
.y89{bottom:754.613333pt;}
.y185{bottom:754.693333pt;}
.yb5{bottom:757.253333pt;}
.ye9{bottom:759.013333pt;}
.y3a{bottom:767.413333pt;}
.y9{bottom:767.493333pt;}
.y6b{bottom:769.573333pt;}
.y184{bottom:770.373333pt;}
.y12f{bottom:773.093333pt;}
.y103{bottom:773.733333pt;}
.y159{bottom:774.613333pt;}
.ye8{bottom:774.693333pt;}
.yd2{bottom:777.013333pt;}
.y86{bottom:778.933333pt;}
.y8{bottom:780.133333pt;}
.y99{bottom:782.213333pt;}
.yb4{bottom:786.293333pt;}
.y158{bottom:790.293333pt;}
.yd1{bottom:792.693333pt;}
.y183{bottom:793.973333pt;}
.y12e{bottom:797.413333pt;}
.y56{bottom:797.733333pt;}
.y6a{bottom:798.213333pt;}
.y7{bottom:799.493333pt;}
.y85{bottom:803.253333pt;}
.y102{bottom:806.053333pt;}
.ye7{bottom:806.293333pt;}
.yd0{bottom:808.293333pt;}
.y182{bottom:809.653333pt;}
.y39{bottom:810.373333pt;}
.y55{bottom:813.333333pt;}
.y157{bottom:814.213333pt;}
.yb3{bottom:817.893333pt;}
.y12d{bottom:821.733333pt;}
.ycf{bottom:823.973333pt;}
.y181{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y84{bottom:827.493333pt;}
.y6{bottom:828.053333pt;}
.ye6{bottom:834.933333pt;}
.y54{bottom:836.933333pt;}
.y101{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.yb2{bottom:842.213333pt;}
.y5{bottom:844.453333pt;}
.y12a{bottom:846.053333pt;}
.yc9{bottom:848.293333pt;}
.y83{bottom:851.813333pt;}
.yce{bottom:855.573333pt;}
.y100{bottom:856.533333pt;}
.y156{bottom:857.093333pt;}
.y36{bottom:857.253333pt;}
.y180{bottom:864.533333pt;}
.y53{bottom:868.613333pt;}
.yff{bottom:872.133333pt;}
.y35{bottom:872.853333pt;}
.y129{bottom:873.093333pt;}
.y82{bottom:876.133333pt;}
.y4{bottom:877.893333pt;}
.y17f{bottom:880.133333pt;}
.y155{bottom:881.013333pt;}
.y52{bottom:884.213333pt;}
.yfe{bottom:887.813333pt;}
.y34{bottom:888.533333pt;}
.y127{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y17e{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.yfd{bottom:911.440000pt;}
.y154{bottom:913.920000pt;}
.y51{bottom:915.520000pt;}
.y81{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y126{bottom:921.680000pt;}
.y153{bottom:929.600000pt;}
.y50{bottom:931.120000pt;}
.y17d{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.yfc{bottom:943.040000pt;}
.y152{bottom:945.200000pt;}
.y125{bottom:946.000000pt;}
.y4f{bottom:946.800000pt;}
.y30{bottom:951.040000pt;}
.yfb{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y151{bottom:969.120000pt;}
.y124{bottom:970.320000pt;}
.y4e{bottom:970.400000pt;}
.yfa{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.yf9{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y4d{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h15{height:-94.426667pt;}
.h17{height:-46.400000pt;}
.h11{height:23.600000pt;}
.h12{height:23.626667pt;}
.h10{height:23.680000pt;}
.h1e{height:26.400000pt;}
.h2{height:29.348125pt;}
.h1a{height:30.240000pt;}
.h1b{height:30.320000pt;}
.h1f{height:30.480000pt;}
.h20{height:31.553437pt;}
.h6{height:33.059063pt;}
.h3{height:35.644531pt;}
.h1c{height:40.640000pt;}
.h1d{height:45.037812pt;}
.h7{height:46.499062pt;}
.h8{height:47.621094pt;}
.hd{height:47.908125pt;}
.h5{height:49.902344pt;}
.h22{height:50.954062pt;}
.h18{height:51.073438pt;}
.h9{height:52.498125pt;}
.he{height:53.309531pt;}
.h23{height:54.927899pt;}
.hc{height:55.631875pt;}
.ha{height:57.375000pt;}
.hb{height:60.961875pt;}
.hf{height:62.812500pt;}
.h19{height:65.325000pt;}
.h4{height:66.441406pt;}
.h21{height:74.501094pt;}
.h14{height:124.800000pt;}
.h16{height:172.826667pt;}
.h13{height:218.080000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:39.920000pt;}
.wc{width:46.026667pt;}
.w17{width:61.680000pt;}
.w4{width:67.280000pt;}
.w5{width:77.280000pt;}
.w16{width:85.866667pt;}
.w9{width:86.586667pt;}
.w14{width:108.880000pt;}
.wa{width:113.440000pt;}
.w6{width:113.466667pt;}
.w13{width:155.546667pt;}
.w15{width:182.720000pt;}
.w8{width:219.200000pt;}
.we{width:232.746667pt;}
.w10{width:236.960000pt;}
.w11{width:243.146667pt;}
.wd{width:253.840000pt;}
.w3{width:259.386667pt;}
.w7{width:420.666667pt;}
.w12{width:499.306667pt;}
.wf{width:505.786667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1c{left:9.600000pt;}
.x2f{left:45.360000pt;}
.x1{left:60.480000pt;}
.x30{left:63.600000pt;}
.x34{left:98.879988pt;}
.x1f{left:137.839988pt;}
.x1b{left:144.106667pt;}
.x17{left:153.706667pt;}
.x15{left:160.586655pt;}
.x23{left:170.986667pt;}
.x2{left:180.266655pt;}
.xd{left:187.146655pt;}
.x7{left:196.506655pt;}
.x2c{left:204.426655pt;}
.x13{left:207.226655pt;}
.x20{left:214.480000pt;}
.x1a{left:225.546667pt;}
.x31{left:231.226667pt;}
.x22{left:235.946667pt;}
.x18{left:241.920000pt;}
.x8{left:267.306667pt;}
.x29{left:269.226655pt;}
.x26{left:270.826655pt;}
.x5{left:274.666655pt;}
.x2b{left:279.866655pt;}
.x25{left:286.106655pt;}
.x27{left:302.026655pt;}
.x2d{left:319.226667pt;}
.xa{left:335.226667pt;}
.xf{left:406.586667pt;}
.x19{left:407.546667pt;}
.xb{left:413.226667pt;}
.x32{left:414.586667pt;}
.x21{left:417.546667pt;}
.x2e{left:428.746667pt;}
.x11{left:447.146667pt;}
.x10{left:493.893333pt;}
.x33{left:501.093333pt;}
.x6{left:514.053322pt;}
.x4{left:523.013322pt;}
.x2a{left:544.053322pt;}
.x1e{left:550.053322pt;}
.x14{left:567.013322pt;}
.xc{left:571.013322pt;}
.x28{left:597.013322pt;}
.x12{left:603.013322pt;}
.x24{left:607.013322pt;}
.xe{left:636.053322pt;}
.x16{left:650.213322pt;}
.x1d{left:670.613322pt;}
.x3{left:704.053322pt;}
}




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