
    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_3cfb84dcd4596660e1a87c5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3b6406ca440886e3d9872206.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_698d73b188d334a3b146f2aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_58cece242756a89ee1130d25.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dce10f215c1f25831aeddf9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_9c6f21603dfc34f6aa92a244.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_43bfc761edfaeeade4b767ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_0d3e6581a0e6fe12d6be0c98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706543;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_d3818996354221ce9189a01d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707031;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_ba0de0ce4cae2f6755411326.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_958a8a79c2806e3ba9eacffe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.869629;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_d4f6ff10fa0550e318c4ea7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.706543;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v3{vertical-align:15.300000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.828000px;}
.ls1d{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.315600px;}
.ls24{letter-spacing:-0.304800px;}
.ls1c{letter-spacing:-0.276000px;}
.ls12{letter-spacing:-0.262200px;}
.ls16{letter-spacing:-0.202800px;}
.ls4{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.067200px;}
.lsf{letter-spacing:-0.057600px;}
.ls13{letter-spacing:-0.050400px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.022320px;}
.lsc{letter-spacing:0.046080px;}
.ls0{letter-spacing:0.052560px;}
.lsa{letter-spacing:0.057600px;}
.lsd{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.083400px;}
.ls17{letter-spacing:0.083520px;}
.ls8{letter-spacing:0.097800px;}
.ls22{letter-spacing:0.097920px;}
.ls3{letter-spacing:0.126000px;}
.ls1f{letter-spacing:0.135360px;}
.lsb{letter-spacing:0.146880px;}
.ls1{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.210240px;}
.ls27{letter-spacing:0.235200px;}
.ls26{letter-spacing:0.247200px;}
.ls25{letter-spacing:0.313800px;}
.ls23{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.497400px;}
.ls1e{letter-spacing:0.617760px;}
.ls19{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.440000px;}
.ls1b{letter-spacing:15.120000px;}
.ls11{letter-spacing:31.577760px;}
.ls18{letter-spacing:33.161760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-48.240000px;}
.ws7{word-spacing:-16.657800px;}
.wsa{word-spacing:-16.617600px;}
.ws8{word-spacing:-16.560000px;}
.wse{word-spacing:-16.502400px;}
.ws6{word-spacing:-16.453200px;}
.wsf{word-spacing:-16.297800px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.572000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.374000px;}
.ws2{word-spacing:-13.320000px;}
.ws1b{word-spacing:-12.373800px;}
.ws1c{word-spacing:-12.307200px;}
.ws1a{word-spacing:-12.060000px;}
.ws19{word-spacing:-11.755200px;}
.ws13{word-spacing:-10.924560px;}
.ws12{word-spacing:-10.902240px;}
.ws11{word-spacing:-10.699440px;}
.ws15{word-spacing:-10.626240px;}
.ws16{word-spacing:-10.586640px;}
.wsb{word-spacing:-10.486080px;}
.ws4{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.768000px;}
.ws14{word-spacing:-9.437760px;}
.ws10{word-spacing:-6.783840px;}
.ws17{word-spacing:-6.183360px;}
.ws9{word-spacing:0.000000px;}
._10{margin-left:-5.034240px;}
._17{margin-left:-3.353040px;}
._9{margin-left:-2.211120px;}
._0{margin-left:-1.134000px;}
._1{width:1.932000px;}
._c{width:3.766320px;}
._19{width:4.933920px;}
._7{width:6.316560px;}
._8{width:7.384800px;}
._23{width:8.595840px;}
._b{width:10.112400px;}
._a{width:11.175120px;}
._5{width:12.185520px;}
._6{width:13.347360px;}
._1b{width:14.407200px;}
._2d{width:15.492240px;}
._e{width:16.542960px;}
._f{width:18.047520px;}
._16{width:19.912080px;}
._3{width:21.582960px;}
._4{width:23.067360px;}
._21{width:24.508800px;}
._d{width:25.724640px;}
._2c{width:27.062160px;}
._15{width:28.156320px;}
._24{width:29.609280px;}
._26{width:30.801600px;}
._25{width:32.126400px;}
._2a{width:33.186240px;}
._29{width:35.031360px;}
._1f{width:36.895680px;}
._20{width:37.905120px;}
._2b{width:40.605120px;}
._22{width:41.863680px;}
._27{width:42.923520px;}
._11{width:44.447040px;}
._12{width:45.573120px;}
._1e{width:46.699200px;}
._1c{width:48.339840px;}
._1d{width:49.562880px;}
._2e{width:50.872320px;}
._35{width:52.072560px;}
._2f{width:53.455680px;}
._33{width:55.136400px;}
._18{width:56.688960px;}
._14{width:68.492160px;}
._13{width:69.816240px;}
._1a{width:72.135360px;}
._28{width:74.917440px;}
._30{width:81.880560px;}
._36{width:87.370560px;}
._31{width:100.949760px;}
._32{width:102.167280px;}
._34{width:123.750480px;}
._38{width:346.732560px;}
._37{width:967.381200px;}
._2{width:2216.894640px;}
.fc3{color:rgb(0,0,200);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fs3{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:69.822393px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:2.865000px;}
.ye1{bottom:2.880000px;}
.yb2{bottom:3.060000px;}
.y91{bottom:3.225000px;}
.y7b{bottom:3.240000px;}
.y8d{bottom:3.270000px;}
.y8f{bottom:3.405000px;}
.y7d{bottom:3.420000px;}
.ydb{bottom:3.450000px;}
.y9{bottom:4.320000px;}
.ya6{bottom:18.000000px;}
.y7a{bottom:18.030000px;}
.y4{bottom:46.080000px;}
.y45{bottom:46.800000px;}
.ycd{bottom:46.836000px;}
.y3{bottom:61.200000px;}
.y44{bottom:64.980000px;}
.ycc{bottom:65.016000px;}
.y40{bottom:113.940000px;}
.y78{bottom:114.120000px;}
.y106{bottom:114.660000px;}
.y153{bottom:117.000000px;}
.ya3{bottom:117.720000px;}
.y189{bottom:118.080000px;}
.yc8{bottom:121.860000px;}
.y105{bottom:128.160000px;}
.y152{bottom:130.500000px;}
.y188{bottom:131.580000px;}
.ya2{bottom:131.760000px;}
.y3f{bottom:132.480000px;}
.y77{bottom:132.660000px;}
.yc7{bottom:140.400000px;}
.y104{bottom:141.660000px;}
.y151{bottom:144.000000px;}
.y187{bottom:145.080000px;}
.ya1{bottom:145.800000px;}
.y3e{bottom:151.200000px;}
.y103{bottom:155.160000px;}
.y150{bottom:157.500000px;}
.y186{bottom:158.580000px;}
.yc6{bottom:158.940000px;}
.ya0{bottom:159.870000px;}
.y102{bottom:168.690000px;}
.y3d{bottom:169.770000px;}
.y14f{bottom:171.030000px;}
.y185{bottom:172.110000px;}
.y9f{bottom:173.910000px;}
.yc5{bottom:177.510000px;}
.y101{bottom:182.190000px;}
.y14e{bottom:184.530000px;}
.y184{bottom:185.610000px;}
.y9e{bottom:187.950000px;}
.y3c{bottom:188.310000px;}
.y76{bottom:188.490000px;}
.y100{bottom:195.690000px;}
.yc4{bottom:196.050000px;}
.y14d{bottom:198.030000px;}
.y183{bottom:199.110000px;}
.y9d{bottom:202.170000px;}
.y3b{bottom:206.850000px;}
.y75{bottom:207.030000px;}
.yff{bottom:209.190000px;}
.y14c{bottom:211.530000px;}
.y182{bottom:212.610000px;}
.y9b{bottom:213.525000px;}
.yc3{bottom:214.590000px;}
.yfe{bottom:222.690000px;}
.y14b{bottom:225.030000px;}
.y3a{bottom:225.390000px;}
.y74{bottom:225.570000px;}
.y181{bottom:226.110000px;}
.y9a{bottom:227.385000px;}
.yf6{bottom:228.135000px;}
.yc2{bottom:233.310000px;}
.yfd{bottom:236.190000px;}
.y14a{bottom:238.530000px;}
.yf5{bottom:239.475000px;}
.y180{bottom:239.610000px;}
.y99{bottom:241.965000px;}
.y39{bottom:243.930000px;}
.y73{bottom:244.110000px;}
.yfc{bottom:250.590000px;}
.yc1{bottom:251.850000px;}
.y149{bottom:252.030000px;}
.y17f{bottom:253.110000px;}
.yf4{bottom:253.515000px;}
.y98{bottom:256.725000px;}
.y38{bottom:262.470000px;}
.y72{bottom:262.650000px;}
.y148{bottom:265.530000px;}
.y17e{bottom:266.610000px;}
.yfb{bottom:267.510000px;}
.yf3{bottom:268.095000px;}
.yc0{bottom:270.390000px;}
.y97{bottom:272.385000px;}
.y147{bottom:279.030000px;}
.y17d{bottom:280.110000px;}
.y37{bottom:281.010000px;}
.y71{bottom:281.190000px;}
.yf2{bottom:282.855000px;}
.yfa{bottom:284.610000px;}
.ybf{bottom:288.930000px;}
.y96{bottom:289.830000px;}
.y146{bottom:292.530000px;}
.y17c{bottom:293.610000px;}
.yf1{bottom:297.435000px;}
.y36{bottom:299.730000px;}
.yf9{bottom:303.150000px;}
.y95{bottom:305.490000px;}
.y145{bottom:306.030000px;}
.y17b{bottom:307.110000px;}
.ybe{bottom:307.470000px;}
.yf0{bottom:312.015000px;}
.y35{bottom:318.270000px;}
.y144{bottom:319.530000px;}
.y17a{bottom:320.610000px;}
.yf8{bottom:321.510000px;}
.y94{bottom:324.030000px;}
.ybd{bottom:326.010000px;}
.yef{bottom:326.775000px;}
.y143{bottom:333.030000px;}
.y179{bottom:334.110000px;}
.y34{bottom:336.810000px;}
.y70{bottom:336.990000px;}
.yf7{bottom:338.430000px;}
.yee{bottom:341.355000px;}
.y93{bottom:342.570000px;}
.ybc{bottom:344.550000px;}
.y142{bottom:346.530000px;}
.y178{bottom:347.610000px;}
.y33{bottom:355.350000px;}
.y6f{bottom:355.530000px;}
.yed{bottom:356.115000px;}
.y92{bottom:358.065000px;}
.y141{bottom:360.030000px;}
.y177{bottom:361.110000px;}
.ybb{bottom:363.090000px;}
.yec{bottom:370.695000px;}
.y90{bottom:372.645000px;}
.y140{bottom:373.530000px;}
.y32{bottom:373.890000px;}
.y6e{bottom:374.070000px;}
.y176{bottom:374.610000px;}
.yba{bottom:381.810000px;}
.yeb{bottom:385.275000px;}
.y13f{bottom:387.030000px;}
.y8e{bottom:387.225000px;}
.y175{bottom:388.110000px;}
.y31{bottom:392.430000px;}
.y6d{bottom:392.610000px;}
.yea{bottom:400.035000px;}
.yb9{bottom:400.350000px;}
.y13e{bottom:400.530000px;}
.y174{bottom:401.610000px;}
.y8c{bottom:401.985000px;}
.y30{bottom:411.015000px;}
.y6c{bottom:411.195000px;}
.y13d{bottom:414.075000px;}
.ye9{bottom:414.615000px;}
.y173{bottom:415.155000px;}
.y8b{bottom:416.595000px;}
.yb8{bottom:418.935000px;}
.y2f{bottom:425.235000px;}
.y13c{bottom:427.575000px;}
.y172{bottom:428.655000px;}
.ye8{bottom:429.240000px;}
.y6b{bottom:429.735000px;}
.y8a{bottom:431.175000px;}
.yb7{bottom:437.475000px;}
.y13b{bottom:441.075000px;}
.y171{bottom:442.155000px;}
.ye7{bottom:445.080000px;}
.y89{bottom:445.935000px;}
.y2e{bottom:447.915000px;}
.y6a{bottom:448.275000px;}
.y13a{bottom:454.575000px;}
.y170{bottom:455.655000px;}
.yb6{bottom:456.015000px;}
.y88{bottom:460.515000px;}
.ye6{bottom:462.525000px;}
.y2d{bottom:464.835000px;}
.y69{bottom:466.815000px;}
.y139{bottom:468.075000px;}
.y16f{bottom:469.155000px;}
.yb5{bottom:474.555000px;}
.y87{bottom:475.275000px;}
.ye5{bottom:476.565000px;}
.y138{bottom:481.575000px;}
.y2c{bottom:481.755000px;}
.y16e{bottom:482.655000px;}
.y68{bottom:485.535000px;}
.y86{bottom:489.855000px;}
.ye4{bottom:490.605000px;}
.yb4{bottom:493.095000px;}
.y137{bottom:495.075000px;}
.y16d{bottom:496.155000px;}
.y2b{bottom:498.495000px;}
.y67{bottom:504.075000px;}
.y85{bottom:504.435000px;}
.ye3{bottom:506.265000px;}
.y136{bottom:508.575000px;}
.y16c{bottom:509.655000px;}
.yb3{bottom:510.015000px;}
.y2a{bottom:515.415000px;}
.y84{bottom:519.195000px;}
.yb1{bottom:521.355000px;}
.y135{bottom:522.075000px;}
.y66{bottom:522.615000px;}
.y16b{bottom:523.155000px;}
.ye2{bottom:523.185000px;}
.y29{bottom:532.335000px;}
.y83{bottom:533.775000px;}
.ye0{bottom:534.525000px;}
.yb0{bottom:535.395000px;}
.y134{bottom:535.575000px;}
.y16a{bottom:536.655000px;}
.y65{bottom:541.155000px;}
.y82{bottom:548.355000px;}
.ydf{bottom:548.580000px;}
.y133{bottom:549.075000px;}
.y28{bottom:549.255000px;}
.yaf{bottom:549.975000px;}
.y169{bottom:550.155000px;}
.y64{bottom:559.695000px;}
.y132{bottom:562.575000px;}
.y81{bottom:563.115000px;}
.yde{bottom:563.160000px;}
.y168{bottom:563.655000px;}
.yae{bottom:564.735000px;}
.y27{bottom:565.995000px;}
.y131{bottom:576.075000px;}
.y167{bottom:577.155000px;}
.y80{bottom:577.695000px;}
.ydd{bottom:577.740000px;}
.y63{bottom:578.235000px;}
.yad{bottom:579.315000px;}
.y26{bottom:582.915000px;}
.y130{bottom:589.575000px;}
.y166{bottom:590.655000px;}
.y7f{bottom:592.455000px;}
.ydc{bottom:592.500000px;}
.yac{bottom:593.895000px;}
.y62{bottom:596.775000px;}
.y25{bottom:599.835000px;}
.y12f{bottom:603.075000px;}
.y165{bottom:604.155000px;}
.y7e{bottom:607.035000px;}
.yda{bottom:607.080000px;}
.yab{bottom:608.655000px;}
.y61{bottom:615.315000px;}
.y12e{bottom:616.575000px;}
.y24{bottom:616.755000px;}
.y164{bottom:617.655000px;}
.y7c{bottom:621.615000px;}
.yd9{bottom:621.870000px;}
.yaa{bottom:623.235000px;}
.y12d{bottom:630.075000px;}
.y163{bottom:631.155000px;}
.y23{bottom:633.495000px;}
.y60{bottom:634.035000px;}
.yd8{bottom:636.450000px;}
.y79{bottom:637.455000px;}
.ya9{bottom:637.995000px;}
.y12c{bottom:643.575000px;}
.y162{bottom:644.655000px;}
.y22{bottom:650.445000px;}
.yd7{bottom:651.030000px;}
.y5f{bottom:652.605000px;}
.y12b{bottom:657.105000px;}
.y161{bottom:658.185000px;}
.yd6{bottom:665.790000px;}
.ya8{bottom:667.185000px;}
.y21{bottom:667.365000px;}
.y12a{bottom:670.605000px;}
.y5e{bottom:671.145000px;}
.y160{bottom:671.685000px;}
.yd5{bottom:680.370000px;}
.ya7{bottom:681.945000px;}
.y129{bottom:684.105000px;}
.y20{bottom:684.285000px;}
.y15f{bottom:685.185000px;}
.y5d{bottom:689.685000px;}
.yd4{bottom:694.950000px;}
.ya5{bottom:697.605000px;}
.y15e{bottom:698.685000px;}
.y1f{bottom:701.025000px;}
.y5c{bottom:708.225000px;}
.yd3{bottom:709.710000px;}
.y128{bottom:711.105000px;}
.y15d{bottom:712.185000px;}
.y1e{bottom:717.945000px;}
.yd2{bottom:724.290000px;}
.y127{bottom:724.605000px;}
.y15c{bottom:725.685000px;}
.y5b{bottom:726.765000px;}
.ya4{bottom:729.645000px;}
.y1d{bottom:734.865000px;}
.y126{bottom:738.105000px;}
.yd1{bottom:739.050000px;}
.y15b{bottom:739.185000px;}
.y5a{bottom:745.305000px;}
.y125{bottom:751.605000px;}
.y1c{bottom:751.785000px;}
.y15a{bottom:752.685000px;}
.yd0{bottom:753.630000px;}
.y59{bottom:763.845000px;}
.y124{bottom:765.105000px;}
.y159{bottom:766.185000px;}
.y1b{bottom:768.525000px;}
.ycf{bottom:769.470000px;}
.y123{bottom:778.605000px;}
.y158{bottom:779.685000px;}
.y1a{bottom:781.485000px;}
.y58{bottom:782.565000px;}
.yce{bottom:786.750000px;}
.y122{bottom:792.105000px;}
.y157{bottom:793.185000px;}
.y57{bottom:801.105000px;}
.ycb{bottom:802.440000px;}
.y19{bottom:803.625000px;}
.y121{bottom:805.605000px;}
.y156{bottom:806.685000px;}
.yca{bottom:816.840000px;}
.y120{bottom:819.105000px;}
.y18{bottom:819.465000px;}
.y56{bottom:819.645000px;}
.y155{bottom:820.185000px;}
.y11f{bottom:832.785000px;}
.y154{bottom:833.685000px;}
.yc9{bottom:837.720000px;}
.y17{bottom:838.005000px;}
.y55{bottom:838.185000px;}
.y11e{bottom:847.185000px;}
.y54{bottom:856.725000px;}
.y16{bottom:860.325000px;}
.y11d{bottom:860.685000px;}
.y11c{bottom:874.185000px;}
.y15{bottom:875.085000px;}
.y53{bottom:875.265000px;}
.y18a{bottom:885.165000px;}
.y11b{bottom:887.685000px;}
.y52{bottom:893.805000px;}
.y14{bottom:897.630000px;}
.y11a{bottom:901.230000px;}
.y51{bottom:912.390000px;}
.y119{bottom:914.730000px;}
.y13{bottom:916.170000px;}
.y118{bottom:928.230000px;}
.y12{bottom:930.930000px;}
.y50{bottom:931.110000px;}
.y117{bottom:941.730000px;}
.y4f{bottom:949.650000px;}
.y11{bottom:949.830000px;}
.y116{bottom:955.230000px;}
.y4e{bottom:968.190000px;}
.y115{bottom:968.730000px;}
.y10{bottom:969.630000px;}
.y114{bottom:982.230000px;}
.y4d{bottom:986.730000px;}
.yf{bottom:990.150000px;}
.y113{bottom:995.730000px;}
.y4c{bottom:1005.270000px;}
.y112{bottom:1009.230000px;}
.ye{bottom:1017.150000px;}
.y111{bottom:1022.730000px;}
.y4b{bottom:1023.810000px;}
.y110{bottom:1036.230000px;}
.yd{bottom:1042.350000px;}
.y10f{bottom:1049.730000px;}
.yc{bottom:1060.890000px;}
.y10e{bottom:1063.230000px;}
.y10d{bottom:1076.730000px;}
.yb{bottom:1079.430000px;}
.y4a{bottom:1079.610000px;}
.y10c{bottom:1090.230000px;}
.ya{bottom:1097.970000px;}
.y49{bottom:1098.150000px;}
.y10b{bottom:1103.730000px;}
.y8{bottom:1112.910000px;}
.y48{bottom:1116.690000px;}
.y10a{bottom:1117.230000px;}
.y109{bottom:1130.730000px;}
.y47{bottom:1135.230000px;}
.y7{bottom:1135.950000px;}
.y108{bottom:1144.260000px;}
.y6{bottom:1151.100000px;}
.y46{bottom:1153.800000px;}
.y107{bottom:1157.760000px;}
.y5{bottom:1166.400000px;}
.y43{bottom:1172.340000px;}
.y42{bottom:1186.740000px;}
.y2{bottom:1187.640000px;}
.y1{bottom:1206.180000px;}
.y41{bottom:1207.620000px;}
.h16{height:12.765000px;}
.h21{height:12.780000px;}
.h1d{height:12.945000px;}
.h13{height:14.565000px;}
.h1a{height:14.580000px;}
.h14{height:14.601000px;}
.h1c{height:14.610000px;}
.h22{height:14.616000px;}
.h10{height:14.745000px;}
.h1b{height:14.760000px;}
.h20{height:14.781000px;}
.h6{height:18.525000px;}
.h19{height:29.340000px;}
.he{height:29.370000px;}
.h17{height:29.974219px;}
.hb{height:30.822188px;}
.ha{height:31.002187px;}
.h12{height:33.353437px;}
.h23{height:33.588984px;}
.h15{height:33.706758px;}
.h18{height:33.730312px;}
.h11{height:34.625391px;}
.h5{height:36.571289px;}
.hf{height:36.825469px;}
.h3{height:37.599609px;}
.hc{height:40.472227px;}
.h4{height:41.610234px;}
.h7{height:44.860781px;}
.h2{height:46.122187px;}
.hd{height:47.286943px;}
.h9{height:56.437031px;}
.h8{height:64.853086px;}
.h1e{height:892.980000px;}
.h1f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:39.591000px;}
.w1f{width:52.956000px;}
.w1d{width:63.390000px;}
.w12{width:82.101000px;}
.wd{width:86.760000px;}
.wf{width:86.925000px;}
.wb{width:88.905000px;}
.wa{width:89.856000px;}
.w13{width:90.360000px;}
.wc{width:94.521000px;}
.we{width:94.536000px;}
.w6{width:106.185000px;}
.w7{width:106.401000px;}
.w18{width:115.905000px;}
.w19{width:115.941000px;}
.w1b{width:115.956000px;}
.w1c{width:116.085000px;}
.w1a{width:116.100000px;}
.w20{width:124.545000px;}
.w22{width:124.560000px;}
.w21{width:124.581000px;}
.w24{width:124.770000px;}
.w23{width:124.776000px;}
.w5{width:127.656000px;}
.w4{width:148.521000px;}
.w11{width:162.570000px;}
.w10{width:335.055000px;}
.w8{width:382.380000px;}
.w3{width:488.790000px;}
.w9{width:723.015000px;}
.w2{width:783.540000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w16{width:1030.995000px;}
.w1e{width:1049.940000px;}
.w14{width:1262.880000px;}
.w15{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:4.305000px;}
.x2{left:7.740000px;}
.x3b{left:9.525000px;}
.x3a{left:12.585000px;}
.x27{left:13.680000px;}
.x26{left:14.745000px;}
.x21{left:17.100000px;}
.x12{left:18.720000px;}
.x1f{left:21.045000px;}
.x49{left:22.320000px;}
.x48{left:23.565000px;}
.x39{left:25.590000px;}
.x3c{left:27.900000px;}
.x17{left:29.685000px;}
.x30{left:31.665000px;}
.x47{left:32.745000px;}
.x18{left:35.085000px;}
.x40{left:36.165000px;}
.x16{left:40.500000px;}
.x1b{left:42.285000px;}
.x1a{left:45.345000px;}
.x15{left:50.025000px;}
.x19{left:53.100000px;}
.x1c{left:56.160000px;}
.x1{left:84.960000px;}
.x8{left:93.060000px;}
.xb{left:97.776000px;}
.x4a{left:106.236000px;}
.x3{left:107.316000px;}
.x5{left:109.296000px;}
.x3d{left:117.180000px;}
.x2d{left:119.160000px;}
.x2e{left:126.765000px;}
.x7{left:132.696000px;}
.x2f{left:166.365000px;}
.x3e{left:170.145000px;}
.x1d{left:174.825000px;}
.x9{left:184.170000px;}
.xf{left:202.185000px;}
.x28{left:247.545000px;}
.x4{left:255.090000px;}
.x1e{left:263.745000px;}
.x31{left:282.285000px;}
.x3f{left:294.705000px;}
.x29{left:329.655000px;}
.x11{left:350.715000px;}
.x20{left:358.275000px;}
.x32{left:398.235000px;}
.x41{left:419.295000px;}
.x22{left:445.035000px;}
.x6{left:446.475000px;}
.xd{left:466.635000px;}
.xc{left:473.115000px;}
.x13{left:478.380000px;}
.xe{left:485.925000px;}
.x4b{left:494.385000px;}
.x33{left:514.335000px;}
.x23{left:539.580000px;}
.x42{left:543.855000px;}
.x14{left:584.580000px;}
.x24{left:626.520000px;}
.x34{left:630.300000px;}
.x2c{left:641.625000px;}
.x43{left:668.640000px;}
.x25{left:721.050000px;}
.x35{left:746.400000px;}
.x44{left:793.200000px;}
.x2a{left:836.745000px;}
.x36{left:862.350000px;}
.xa{left:898.200000px;}
.x45{left:917.790000px;}
.x37{left:978.450000px;}
.x46{left:1042.350000px;}
.x38{left:1094.370000px;}
.x2b{left:1311.840000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v3{vertical-align:13.600000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.280533pt;}
.ls24{letter-spacing:-0.270933pt;}
.ls1c{letter-spacing:-0.245333pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls16{letter-spacing:-0.180267pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.059733pt;}
.lsf{letter-spacing:-0.051200pt;}
.ls13{letter-spacing:-0.044800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.019840pt;}
.lsc{letter-spacing:0.040960pt;}
.ls0{letter-spacing:0.046720pt;}
.lsa{letter-spacing:0.051200pt;}
.lsd{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.074133pt;}
.ls17{letter-spacing:0.074240pt;}
.ls8{letter-spacing:0.086933pt;}
.ls22{letter-spacing:0.087040pt;}
.ls3{letter-spacing:0.112000pt;}
.ls1f{letter-spacing:0.120320pt;}
.lsb{letter-spacing:0.130560pt;}
.ls1{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.186880pt;}
.ls27{letter-spacing:0.209067pt;}
.ls26{letter-spacing:0.219733pt;}
.ls25{letter-spacing:0.278933pt;}
.ls23{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.442133pt;}
.ls1e{letter-spacing:0.549120pt;}
.ls19{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:13.440000pt;}
.ls11{letter-spacing:28.069120pt;}
.ls18{letter-spacing:29.477120pt;}
.ws18{word-spacing:-42.880000pt;}
.ws7{word-spacing:-14.806933pt;}
.wsa{word-spacing:-14.771200pt;}
.ws8{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.668800pt;}
.ws6{word-spacing:-14.625067pt;}
.wsf{word-spacing:-14.486933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.112000pt;}
.wsc{word-spacing:-12.064000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.888000pt;}
.ws2{word-spacing:-11.840000pt;}
.ws1b{word-spacing:-10.998933pt;}
.ws1c{word-spacing:-10.939733pt;}
.ws1a{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.449067pt;}
.ws13{word-spacing:-9.710720pt;}
.ws12{word-spacing:-9.690880pt;}
.ws11{word-spacing:-9.510613pt;}
.ws15{word-spacing:-9.445547pt;}
.ws16{word-spacing:-9.410347pt;}
.wsb{word-spacing:-9.320960pt;}
.ws4{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.682667pt;}
.ws14{word-spacing:-8.389120pt;}
.ws10{word-spacing:-6.030080pt;}
.ws17{word-spacing:-5.496320pt;}
.ws9{word-spacing:0.000000pt;}
._10{margin-left:-4.474880pt;}
._17{margin-left:-2.980480pt;}
._9{margin-left:-1.965440pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.717333pt;}
._c{width:3.347840pt;}
._19{width:4.385707pt;}
._7{width:5.614720pt;}
._8{width:6.564267pt;}
._23{width:7.640747pt;}
._b{width:8.988800pt;}
._a{width:9.933440pt;}
._5{width:10.831573pt;}
._6{width:11.864320pt;}
._1b{width:12.806400pt;}
._2d{width:13.770880pt;}
._e{width:14.704853pt;}
._f{width:16.042240pt;}
._16{width:17.699627pt;}
._3{width:19.184853pt;}
._4{width:20.504320pt;}
._21{width:21.785600pt;}
._d{width:22.866347pt;}
._2c{width:24.055253pt;}
._15{width:25.027840pt;}
._24{width:26.319360pt;}
._26{width:27.379200pt;}
._25{width:28.556800pt;}
._2a{width:29.498880pt;}
._29{width:31.138987pt;}
._1f{width:32.796160pt;}
._20{width:33.693440pt;}
._2b{width:36.093440pt;}
._22{width:37.212160pt;}
._27{width:38.154240pt;}
._11{width:39.508480pt;}
._12{width:40.509440pt;}
._1e{width:41.510400pt;}
._1c{width:42.968747pt;}
._1d{width:44.055893pt;}
._2e{width:45.219840pt;}
._35{width:46.286720pt;}
._2f{width:47.516160pt;}
._33{width:49.010133pt;}
._18{width:50.390187pt;}
._14{width:60.881920pt;}
._13{width:62.058880pt;}
._1a{width:64.120320pt;}
._28{width:66.593280pt;}
._30{width:72.782720pt;}
._36{width:77.662720pt;}
._31{width:89.733120pt;}
._32{width:90.815360pt;}
._34{width:110.000427pt;}
._38{width:308.206720pt;}
._37{width:859.894400pt;}
._2{width:1970.573013pt;}
.fs9{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:62.064349pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.546667pt;}
.ye1{bottom:2.560000pt;}
.yb2{bottom:2.720000pt;}
.y91{bottom:2.866667pt;}
.y7b{bottom:2.880000pt;}
.y8d{bottom:2.906667pt;}
.y8f{bottom:3.026667pt;}
.y7d{bottom:3.040000pt;}
.ydb{bottom:3.066667pt;}
.y9{bottom:3.840000pt;}
.ya6{bottom:16.000000pt;}
.y7a{bottom:16.026667pt;}
.y4{bottom:40.960000pt;}
.y45{bottom:41.600000pt;}
.ycd{bottom:41.632000pt;}
.y3{bottom:54.400000pt;}
.y44{bottom:57.760000pt;}
.ycc{bottom:57.792000pt;}
.y40{bottom:101.280000pt;}
.y78{bottom:101.440000pt;}
.y106{bottom:101.920000pt;}
.y153{bottom:104.000000pt;}
.ya3{bottom:104.640000pt;}
.y189{bottom:104.960000pt;}
.yc8{bottom:108.320000pt;}
.y105{bottom:113.920000pt;}
.y152{bottom:116.000000pt;}
.y188{bottom:116.960000pt;}
.ya2{bottom:117.120000pt;}
.y3f{bottom:117.760000pt;}
.y77{bottom:117.920000pt;}
.yc7{bottom:124.800000pt;}
.y104{bottom:125.920000pt;}
.y151{bottom:128.000000pt;}
.y187{bottom:128.960000pt;}
.ya1{bottom:129.600000pt;}
.y3e{bottom:134.400000pt;}
.y103{bottom:137.920000pt;}
.y150{bottom:140.000000pt;}
.y186{bottom:140.960000pt;}
.yc6{bottom:141.280000pt;}
.ya0{bottom:142.106667pt;}
.y102{bottom:149.946667pt;}
.y3d{bottom:150.906667pt;}
.y14f{bottom:152.026667pt;}
.y185{bottom:152.986667pt;}
.y9f{bottom:154.586667pt;}
.yc5{bottom:157.786667pt;}
.y101{bottom:161.946667pt;}
.y14e{bottom:164.026667pt;}
.y184{bottom:164.986667pt;}
.y9e{bottom:167.066667pt;}
.y3c{bottom:167.386667pt;}
.y76{bottom:167.546667pt;}
.y100{bottom:173.946667pt;}
.yc4{bottom:174.266667pt;}
.y14d{bottom:176.026667pt;}
.y183{bottom:176.986667pt;}
.y9d{bottom:179.706667pt;}
.y3b{bottom:183.866667pt;}
.y75{bottom:184.026667pt;}
.yff{bottom:185.946667pt;}
.y14c{bottom:188.026667pt;}
.y182{bottom:188.986667pt;}
.y9b{bottom:189.800000pt;}
.yc3{bottom:190.746667pt;}
.yfe{bottom:197.946667pt;}
.y14b{bottom:200.026667pt;}
.y3a{bottom:200.346667pt;}
.y74{bottom:200.506667pt;}
.y181{bottom:200.986667pt;}
.y9a{bottom:202.120000pt;}
.yf6{bottom:202.786667pt;}
.yc2{bottom:207.386667pt;}
.yfd{bottom:209.946667pt;}
.y14a{bottom:212.026667pt;}
.yf5{bottom:212.866667pt;}
.y180{bottom:212.986667pt;}
.y99{bottom:215.080000pt;}
.y39{bottom:216.826667pt;}
.y73{bottom:216.986667pt;}
.yfc{bottom:222.746667pt;}
.yc1{bottom:223.866667pt;}
.y149{bottom:224.026667pt;}
.y17f{bottom:224.986667pt;}
.yf4{bottom:225.346667pt;}
.y98{bottom:228.200000pt;}
.y38{bottom:233.306667pt;}
.y72{bottom:233.466667pt;}
.y148{bottom:236.026667pt;}
.y17e{bottom:236.986667pt;}
.yfb{bottom:237.786667pt;}
.yf3{bottom:238.306667pt;}
.yc0{bottom:240.346667pt;}
.y97{bottom:242.120000pt;}
.y147{bottom:248.026667pt;}
.y17d{bottom:248.986667pt;}
.y37{bottom:249.786667pt;}
.y71{bottom:249.946667pt;}
.yf2{bottom:251.426667pt;}
.yfa{bottom:252.986667pt;}
.ybf{bottom:256.826667pt;}
.y96{bottom:257.626667pt;}
.y146{bottom:260.026667pt;}
.y17c{bottom:260.986667pt;}
.yf1{bottom:264.386667pt;}
.y36{bottom:266.426667pt;}
.yf9{bottom:269.466667pt;}
.y95{bottom:271.546667pt;}
.y145{bottom:272.026667pt;}
.y17b{bottom:272.986667pt;}
.ybe{bottom:273.306667pt;}
.yf0{bottom:277.346667pt;}
.y35{bottom:282.906667pt;}
.y144{bottom:284.026667pt;}
.y17a{bottom:284.986667pt;}
.yf8{bottom:285.786667pt;}
.y94{bottom:288.026667pt;}
.ybd{bottom:289.786667pt;}
.yef{bottom:290.466667pt;}
.y143{bottom:296.026667pt;}
.y179{bottom:296.986667pt;}
.y34{bottom:299.386667pt;}
.y70{bottom:299.546667pt;}
.yf7{bottom:300.826667pt;}
.yee{bottom:303.426667pt;}
.y93{bottom:304.506667pt;}
.ybc{bottom:306.266667pt;}
.y142{bottom:308.026667pt;}
.y178{bottom:308.986667pt;}
.y33{bottom:315.866667pt;}
.y6f{bottom:316.026667pt;}
.yed{bottom:316.546667pt;}
.y92{bottom:318.280000pt;}
.y141{bottom:320.026667pt;}
.y177{bottom:320.986667pt;}
.ybb{bottom:322.746667pt;}
.yec{bottom:329.506667pt;}
.y90{bottom:331.240000pt;}
.y140{bottom:332.026667pt;}
.y32{bottom:332.346667pt;}
.y6e{bottom:332.506667pt;}
.y176{bottom:332.986667pt;}
.yba{bottom:339.386667pt;}
.yeb{bottom:342.466667pt;}
.y13f{bottom:344.026667pt;}
.y8e{bottom:344.200000pt;}
.y175{bottom:344.986667pt;}
.y31{bottom:348.826667pt;}
.y6d{bottom:348.986667pt;}
.yea{bottom:355.586667pt;}
.yb9{bottom:355.866667pt;}
.y13e{bottom:356.026667pt;}
.y174{bottom:356.986667pt;}
.y8c{bottom:357.320000pt;}
.y30{bottom:365.346667pt;}
.y6c{bottom:365.506667pt;}
.y13d{bottom:368.066667pt;}
.ye9{bottom:368.546667pt;}
.y173{bottom:369.026667pt;}
.y8b{bottom:370.306667pt;}
.yb8{bottom:372.386667pt;}
.y2f{bottom:377.986667pt;}
.y13c{bottom:380.066667pt;}
.y172{bottom:381.026667pt;}
.ye8{bottom:381.546667pt;}
.y6b{bottom:381.986667pt;}
.y8a{bottom:383.266667pt;}
.yb7{bottom:388.866667pt;}
.y13b{bottom:392.066667pt;}
.y171{bottom:393.026667pt;}
.ye7{bottom:395.626667pt;}
.y89{bottom:396.386667pt;}
.y2e{bottom:398.146667pt;}
.y6a{bottom:398.466667pt;}
.y13a{bottom:404.066667pt;}
.y170{bottom:405.026667pt;}
.yb6{bottom:405.346667pt;}
.y88{bottom:409.346667pt;}
.ye6{bottom:411.133333pt;}
.y2d{bottom:413.186667pt;}
.y69{bottom:414.946667pt;}
.y139{bottom:416.066667pt;}
.y16f{bottom:417.026667pt;}
.yb5{bottom:421.826667pt;}
.y87{bottom:422.466667pt;}
.ye5{bottom:423.613333pt;}
.y138{bottom:428.066667pt;}
.y2c{bottom:428.226667pt;}
.y16e{bottom:429.026667pt;}
.y68{bottom:431.586667pt;}
.y86{bottom:435.426667pt;}
.ye4{bottom:436.093333pt;}
.yb4{bottom:438.306667pt;}
.y137{bottom:440.066667pt;}
.y16d{bottom:441.026667pt;}
.y2b{bottom:443.106667pt;}
.y67{bottom:448.066667pt;}
.y85{bottom:448.386667pt;}
.ye3{bottom:450.013333pt;}
.y136{bottom:452.066667pt;}
.y16c{bottom:453.026667pt;}
.yb3{bottom:453.346667pt;}
.y2a{bottom:458.146667pt;}
.y84{bottom:461.506667pt;}
.yb1{bottom:463.426667pt;}
.y135{bottom:464.066667pt;}
.y66{bottom:464.546667pt;}
.y16b{bottom:465.026667pt;}
.ye2{bottom:465.053333pt;}
.y29{bottom:473.186667pt;}
.y83{bottom:474.466667pt;}
.ye0{bottom:475.133333pt;}
.yb0{bottom:475.906667pt;}
.y134{bottom:476.066667pt;}
.y16a{bottom:477.026667pt;}
.y65{bottom:481.026667pt;}
.y82{bottom:487.426667pt;}
.ydf{bottom:487.626667pt;}
.y133{bottom:488.066667pt;}
.y28{bottom:488.226667pt;}
.yaf{bottom:488.866667pt;}
.y169{bottom:489.026667pt;}
.y64{bottom:497.506667pt;}
.y132{bottom:500.066667pt;}
.y81{bottom:500.546667pt;}
.yde{bottom:500.586667pt;}
.y168{bottom:501.026667pt;}
.yae{bottom:501.986667pt;}
.y27{bottom:503.106667pt;}
.y131{bottom:512.066667pt;}
.y167{bottom:513.026667pt;}
.y80{bottom:513.506667pt;}
.ydd{bottom:513.546667pt;}
.y63{bottom:513.986667pt;}
.yad{bottom:514.946667pt;}
.y26{bottom:518.146667pt;}
.y130{bottom:524.066667pt;}
.y166{bottom:525.026667pt;}
.y7f{bottom:526.626667pt;}
.ydc{bottom:526.666667pt;}
.yac{bottom:527.906667pt;}
.y62{bottom:530.466667pt;}
.y25{bottom:533.186667pt;}
.y12f{bottom:536.066667pt;}
.y165{bottom:537.026667pt;}
.y7e{bottom:539.586667pt;}
.yda{bottom:539.626667pt;}
.yab{bottom:541.026667pt;}
.y61{bottom:546.946667pt;}
.y12e{bottom:548.066667pt;}
.y24{bottom:548.226667pt;}
.y164{bottom:549.026667pt;}
.y7c{bottom:552.546667pt;}
.yd9{bottom:552.773333pt;}
.yaa{bottom:553.986667pt;}
.y12d{bottom:560.066667pt;}
.y163{bottom:561.026667pt;}
.y23{bottom:563.106667pt;}
.y60{bottom:563.586667pt;}
.yd8{bottom:565.733333pt;}
.y79{bottom:566.626667pt;}
.ya9{bottom:567.106667pt;}
.y12c{bottom:572.066667pt;}
.y162{bottom:573.026667pt;}
.y22{bottom:578.173333pt;}
.yd7{bottom:578.693333pt;}
.y5f{bottom:580.093333pt;}
.y12b{bottom:584.093333pt;}
.y161{bottom:585.053333pt;}
.yd6{bottom:591.813333pt;}
.ya8{bottom:593.053333pt;}
.y21{bottom:593.213333pt;}
.y12a{bottom:596.093333pt;}
.y5e{bottom:596.573333pt;}
.y160{bottom:597.053333pt;}
.yd5{bottom:604.773333pt;}
.ya7{bottom:606.173333pt;}
.y129{bottom:608.093333pt;}
.y20{bottom:608.253333pt;}
.y15f{bottom:609.053333pt;}
.y5d{bottom:613.053333pt;}
.yd4{bottom:617.733333pt;}
.ya5{bottom:620.093333pt;}
.y15e{bottom:621.053333pt;}
.y1f{bottom:623.133333pt;}
.y5c{bottom:629.533333pt;}
.yd3{bottom:630.853333pt;}
.y128{bottom:632.093333pt;}
.y15d{bottom:633.053333pt;}
.y1e{bottom:638.173333pt;}
.yd2{bottom:643.813333pt;}
.y127{bottom:644.093333pt;}
.y15c{bottom:645.053333pt;}
.y5b{bottom:646.013333pt;}
.ya4{bottom:648.573333pt;}
.y1d{bottom:653.213333pt;}
.y126{bottom:656.093333pt;}
.yd1{bottom:656.933333pt;}
.y15b{bottom:657.053333pt;}
.y5a{bottom:662.493333pt;}
.y125{bottom:668.093333pt;}
.y1c{bottom:668.253333pt;}
.y15a{bottom:669.053333pt;}
.yd0{bottom:669.893333pt;}
.y59{bottom:678.973333pt;}
.y124{bottom:680.093333pt;}
.y159{bottom:681.053333pt;}
.y1b{bottom:683.133333pt;}
.ycf{bottom:683.973333pt;}
.y123{bottom:692.093333pt;}
.y158{bottom:693.053333pt;}
.y1a{bottom:694.653333pt;}
.y58{bottom:695.613333pt;}
.yce{bottom:699.333333pt;}
.y122{bottom:704.093333pt;}
.y157{bottom:705.053333pt;}
.y57{bottom:712.093333pt;}
.ycb{bottom:713.280000pt;}
.y19{bottom:714.333333pt;}
.y121{bottom:716.093333pt;}
.y156{bottom:717.053333pt;}
.yca{bottom:726.080000pt;}
.y120{bottom:728.093333pt;}
.y18{bottom:728.413333pt;}
.y56{bottom:728.573333pt;}
.y155{bottom:729.053333pt;}
.y11f{bottom:740.253333pt;}
.y154{bottom:741.053333pt;}
.yc9{bottom:744.640000pt;}
.y17{bottom:744.893333pt;}
.y55{bottom:745.053333pt;}
.y11e{bottom:753.053333pt;}
.y54{bottom:761.533333pt;}
.y16{bottom:764.733333pt;}
.y11d{bottom:765.053333pt;}
.y11c{bottom:777.053333pt;}
.y15{bottom:777.853333pt;}
.y53{bottom:778.013333pt;}
.y18a{bottom:786.813333pt;}
.y11b{bottom:789.053333pt;}
.y52{bottom:794.493333pt;}
.y14{bottom:797.893333pt;}
.y11a{bottom:801.093333pt;}
.y51{bottom:811.013333pt;}
.y119{bottom:813.093333pt;}
.y13{bottom:814.373333pt;}
.y118{bottom:825.093333pt;}
.y12{bottom:827.493333pt;}
.y50{bottom:827.653333pt;}
.y117{bottom:837.093333pt;}
.y4f{bottom:844.133333pt;}
.y11{bottom:844.293333pt;}
.y116{bottom:849.093333pt;}
.y4e{bottom:860.613333pt;}
.y115{bottom:861.093333pt;}
.y10{bottom:861.893333pt;}
.y114{bottom:873.093333pt;}
.y4d{bottom:877.093333pt;}
.yf{bottom:880.133333pt;}
.y113{bottom:885.093333pt;}
.y4c{bottom:893.573333pt;}
.y112{bottom:897.093333pt;}
.ye{bottom:904.133333pt;}
.y111{bottom:909.093333pt;}
.y4b{bottom:910.053333pt;}
.y110{bottom:921.093333pt;}
.yd{bottom:926.533333pt;}
.y10f{bottom:933.093333pt;}
.yc{bottom:943.013333pt;}
.y10e{bottom:945.093333pt;}
.y10d{bottom:957.093333pt;}
.yb{bottom:959.493333pt;}
.y4a{bottom:959.653333pt;}
.y10c{bottom:969.093333pt;}
.ya{bottom:975.973333pt;}
.y49{bottom:976.133333pt;}
.y10b{bottom:981.093333pt;}
.y8{bottom:989.253333pt;}
.y48{bottom:992.613333pt;}
.y10a{bottom:993.093333pt;}
.y109{bottom:1005.093333pt;}
.y47{bottom:1009.093333pt;}
.y7{bottom:1009.733333pt;}
.y108{bottom:1017.120000pt;}
.y6{bottom:1023.200000pt;}
.y46{bottom:1025.600000pt;}
.y107{bottom:1029.120000pt;}
.y5{bottom:1036.800000pt;}
.y43{bottom:1042.080000pt;}
.y42{bottom:1054.880000pt;}
.y2{bottom:1055.680000pt;}
.y1{bottom:1072.160000pt;}
.y41{bottom:1073.440000pt;}
.h16{height:11.346667pt;}
.h21{height:11.360000pt;}
.h1d{height:11.506667pt;}
.h13{height:12.946667pt;}
.h1a{height:12.960000pt;}
.h14{height:12.978667pt;}
.h1c{height:12.986667pt;}
.h22{height:12.992000pt;}
.h10{height:13.106667pt;}
.h1b{height:13.120000pt;}
.h20{height:13.138667pt;}
.h6{height:16.466667pt;}
.h19{height:26.080000pt;}
.he{height:26.106667pt;}
.h17{height:26.643750pt;}
.hb{height:27.397500pt;}
.ha{height:27.557500pt;}
.h12{height:29.647500pt;}
.h23{height:29.856875pt;}
.h15{height:29.961562pt;}
.h18{height:29.982500pt;}
.h11{height:30.778125pt;}
.h5{height:32.507812pt;}
.hf{height:32.733750pt;}
.h3{height:33.421875pt;}
.hc{height:35.975313pt;}
.h4{height:36.986875pt;}
.h7{height:39.876250pt;}
.h2{height:40.997500pt;}
.hd{height:42.032838pt;}
.h9{height:50.166250pt;}
.h8{height:57.647187pt;}
.h1e{height:793.760000pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:35.192000pt;}
.w1f{width:47.072000pt;}
.w1d{width:56.346667pt;}
.w12{width:72.978667pt;}
.wd{width:77.120000pt;}
.wf{width:77.266667pt;}
.wb{width:79.026667pt;}
.wa{width:79.872000pt;}
.w13{width:80.320000pt;}
.wc{width:84.018667pt;}
.we{width:84.032000pt;}
.w6{width:94.386667pt;}
.w7{width:94.578667pt;}
.w18{width:103.026667pt;}
.w19{width:103.058667pt;}
.w1b{width:103.072000pt;}
.w1c{width:103.186667pt;}
.w1a{width:103.200000pt;}
.w20{width:110.706667pt;}
.w22{width:110.720000pt;}
.w21{width:110.738667pt;}
.w24{width:110.906667pt;}
.w23{width:110.912000pt;}
.w5{width:113.472000pt;}
.w4{width:132.018667pt;}
.w11{width:144.506667pt;}
.w10{width:297.826667pt;}
.w8{width:339.893333pt;}
.w3{width:434.480000pt;}
.w9{width:642.680000pt;}
.w2{width:696.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w16{width:916.440000pt;}
.w1e{width:933.280000pt;}
.w14{width:1122.560000pt;}
.w15{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:3.826667pt;}
.x2{left:6.880000pt;}
.x3b{left:8.466667pt;}
.x3a{left:11.186667pt;}
.x27{left:12.160000pt;}
.x26{left:13.106667pt;}
.x21{left:15.200000pt;}
.x12{left:16.640000pt;}
.x1f{left:18.706667pt;}
.x49{left:19.840000pt;}
.x48{left:20.946667pt;}
.x39{left:22.746667pt;}
.x3c{left:24.800000pt;}
.x17{left:26.386667pt;}
.x30{left:28.146667pt;}
.x47{left:29.106667pt;}
.x18{left:31.186667pt;}
.x40{left:32.146667pt;}
.x16{left:36.000000pt;}
.x1b{left:37.586667pt;}
.x1a{left:40.306667pt;}
.x15{left:44.466667pt;}
.x19{left:47.200000pt;}
.x1c{left:49.920000pt;}
.x1{left:75.520000pt;}
.x8{left:82.720000pt;}
.xb{left:86.912000pt;}
.x4a{left:94.432000pt;}
.x3{left:95.392000pt;}
.x5{left:97.152000pt;}
.x3d{left:104.160000pt;}
.x2d{left:105.920000pt;}
.x2e{left:112.680000pt;}
.x7{left:117.952000pt;}
.x2f{left:147.880000pt;}
.x3e{left:151.240000pt;}
.x1d{left:155.400000pt;}
.x9{left:163.706667pt;}
.xf{left:179.720000pt;}
.x28{left:220.040000pt;}
.x4{left:226.746667pt;}
.x1e{left:234.440000pt;}
.x31{left:250.920000pt;}
.x3f{left:261.960000pt;}
.x29{left:293.026667pt;}
.x11{left:311.746667pt;}
.x20{left:318.466667pt;}
.x32{left:353.986667pt;}
.x41{left:372.706667pt;}
.x22{left:395.586667pt;}
.x6{left:396.866667pt;}
.xd{left:414.786667pt;}
.xc{left:420.546667pt;}
.x13{left:425.226667pt;}
.xe{left:431.933333pt;}
.x4b{left:439.453333pt;}
.x33{left:457.186667pt;}
.x23{left:479.626667pt;}
.x42{left:483.426667pt;}
.x14{left:519.626667pt;}
.x24{left:556.906667pt;}
.x34{left:560.266667pt;}
.x2c{left:570.333333pt;}
.x43{left:594.346667pt;}
.x25{left:640.933333pt;}
.x35{left:663.466667pt;}
.x44{left:705.066667pt;}
.x2a{left:743.773333pt;}
.x36{left:766.533333pt;}
.xa{left:798.400000pt;}
.x45{left:815.813333pt;}
.x37{left:869.733333pt;}
.x46{left:926.533333pt;}
.x38{left:972.773333pt;}
.x2b{left:1166.080000pt;}
}




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