
    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_3694a077ef9151b44b908f1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_d0bd1013833d04dd6a0670ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_d1ecf8f051e08cbf19f72ba0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_9338d132a2550a02ee30f4ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_a42f9ea26f08c45f4a5f8505.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_411058981acabbca3e29e7b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_a36959ad6ff8544840e377c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_2ac8ef99795b222926b6037f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_49164bd95a5cbe1e973b21f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_a474b0f6082f96e4d7fa7744.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_4f77f0be2fd3abc8d996333c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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:ffd;src:url('chunks/assets/font_ce0a7667dae29f13e1216058.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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:ffe;src:url('chunks/assets/font_a0b72c0e98724988907008c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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:fff;src:url('chunks/assets/font_49164bd95a5cbe1e973b21f1.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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:ff10;src:url('chunks/assets/font_737dddfeb688b7f5340e3b8c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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:ff11;src:url('chunks/assets/font_b9a1874f2966b2984065376c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.428000px;}
.ls3{letter-spacing:-1.248000px;}
.ls7{letter-spacing:-1.014000px;}
.ls5{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.390000px;}
.ls8{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.234000px;}
.ls4{letter-spacing:-0.078000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:3.366000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws6{word-spacing:-28.476000px;}
.ws4{word-spacing:-24.480000px;}
.ws11{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws9{word-spacing:-14.256000px;}
.ws7{word-spacing:-12.204000px;}
.ws8{word-spacing:-8.696028px;}
.ws1{word-spacing:0.000000px;}
.wse{word-spacing:0.156000px;}
.ws10{word-spacing:0.312000px;}
.wsd{word-spacing:0.330000px;}
.wsa{word-spacing:0.660000px;}
.wsc{word-spacing:0.936000px;}
.ws5{word-spacing:1.170000px;}
.wsb{word-spacing:7.590000px;}
.wsf{word-spacing:10.296000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.357600px;}
._1c{margin-left:-12.063600px;}
._15{margin-left:-6.659400px;}
._17{margin-left:-5.504400px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._13{width:5.979600px;}
._4{width:7.193961px;}
._11{width:8.263396px;}
._9{width:10.262944px;}
._14{width:11.313056px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._1a{width:16.440600px;}
._19{width:18.189600px;}
._5{width:20.492888px;}
._1b{width:21.951824px;}
._12{width:24.842400px;}
._18{width:26.287800px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._16{width:37.224000px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(71,71,71);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs13{font-size:38.478000px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y35{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y34{bottom:102.047250px;}
.yc9{bottom:102.047400px;}
.y6b{bottom:102.056550px;}
.yad{bottom:102.062550px;}
.y13f{bottom:102.493800px;}
.y102{bottom:103.459950px;}
.y45{bottom:108.440550px;}
.y8f{bottom:114.808050px;}
.y6a{bottom:118.553550px;}
.yac{bottom:118.559550px;}
.y13e{bottom:118.693800px;}
.y1b{bottom:123.419327px;}
.y101{bottom:124.002450px;}
.y44{bottom:124.640550px;}
.y13d{bottom:134.893800px;}
.y69{bottom:135.050550px;}
.yab{bottom:135.056550px;}
.y8e{bottom:135.515550px;}
.y21{bottom:136.778700px;}
.y28{bottom:142.439400px;}
.yc8{bottom:143.819850px;}
.y100{bottom:144.544950px;}
.y43{bottom:145.093050px;}
.y13c{bottom:151.093800px;}
.y68{bottom:151.547550px;}
.yaa{bottom:151.553550px;}
.y118{bottom:155.937300px;}
.y42{bottom:161.293050px;}
.yc7{bottom:164.527350px;}
.yff{bottom:165.087450px;}
.y13b{bottom:167.293800px;}
.ya9{bottom:168.050550px;}
.y8d{bottom:174.073800px;}
.y117{bottom:176.644800px;}
.y41{bottom:177.493050px;}
.y1a{bottom:179.601520px;}
.y13a{bottom:183.493800px;}
.y27{bottom:184.431900px;}
.ya8{bottom:184.547550px;}
.yc6{bottom:185.234850px;}
.yfe{bottom:185.629950px;}
.y19{bottom:189.619323px;}
.y40{bottom:193.693050px;}
.y116{bottom:197.352300px;}
.y18{bottom:198.812130px;}
.y139{bottom:199.693800px;}
.y8c{bottom:201.073800px;}
.y67{bottom:204.171600px;}
.y26{bottom:205.436400px;}
.yc5{bottom:205.694850px;}
.yfd{bottom:206.172450px;}
.y17{bottom:207.156370px;}
.y3f{bottom:209.893050px;}
.y16{bottom:215.512396px;}
.y138{bottom:215.893800px;}
.y115{bottom:218.059800px;}
.y15{bottom:223.868422px;}
.y66{bottom:224.879100px;}
.y3e{bottom:226.093050px;}
.yc4{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.ya7{bottom:226.499850px;}
.yfc{bottom:226.714950px;}
.ydf{bottom:228.717600px;}
.y137{bottom:232.093800px;}
.y14{bottom:232.212662px;}
.y114{bottom:238.767300px;}
.y13{bottom:240.568688px;}
.y3d{bottom:242.293050px;}
.y65{bottom:245.586600px;}
.yc3{bottom:247.109850px;}
.ya6{bottom:247.207350px;}
.yfb{bottom:247.257450px;}
.y136{bottom:248.293800px;}
.y12{bottom:248.924714px;}
.yde{bottom:249.425100px;}
.y11{bottom:257.268954px;}
.y3c{bottom:258.493050px;}
.y113{bottom:259.474800px;}
.y8b{bottom:263.576850px;}
.y135{bottom:264.493800px;}
.y10{bottom:265.624980px;}
.y64{bottom:266.294100px;}
.yfa{bottom:267.799950px;}
.yc2{bottom:267.817350px;}
.ya5{bottom:267.914850px;}
.ydd{bottom:270.132600px;}
.yf{bottom:273.981006px;}
.y112{bottom:280.182300px;}
.y134{bottom:280.693800px;}
.y8a{bottom:284.284350px;}
.y33{bottom:284.425200px;}
.y63{bottom:287.001600px;}
.yf9{bottom:288.342450px;}
.yc1{bottom:288.524850px;}
.ya4{bottom:288.622350px;}
.ydc{bottom:290.840100px;}
.ye{bottom:291.164483px;}
.y133{bottom:296.893800px;}
.y111{bottom:300.889800px;}
.y89{bottom:304.991850px;}
.y32{bottom:305.429700px;}
.y62{bottom:307.709100px;}
.yf8{bottom:308.884950px;}
.yc0{bottom:309.232350px;}
.ya3{bottom:309.329850px;}
.ydb{bottom:311.547600px;}
.y132{bottom:313.093800px;}
.y88{bottom:325.699350px;}
.y110{bottom:325.837800px;}
.y31{bottom:326.434200px;}
.y61{bottom:328.416600px;}
.y131{bottom:329.293800px;}
.yf7{bottom:329.427450px;}
.ybf{bottom:329.939850px;}
.ya2{bottom:330.037350px;}
.yda{bottom:332.255100px;}
.y130{bottom:345.493800px;}
.y87{bottom:346.406850px;}
.y10f{bottom:346.545300px;}
.y30{bottom:347.438700px;}
.y60{bottom:349.124100px;}
.yf6{bottom:349.969950px;}
.ybe{bottom:350.647350px;}
.ya1{bottom:350.744850px;}
.yd9{bottom:352.962600px;}
.y12f{bottom:361.693800px;}
.y15d{bottom:366.547350px;}
.y86{bottom:367.114350px;}
.y10e{bottom:367.252800px;}
.y2f{bottom:368.443200px;}
.y5f{bottom:369.831600px;}
.yf5{bottom:370.512450px;}
.ybd{bottom:371.354850px;}
.ya0{bottom:371.452350px;}
.yd8{bottom:373.670100px;}
.y15c{bottom:385.028850px;}
.y85{bottom:387.821850px;}
.y10d{bottom:387.960300px;}
.y2e{bottom:389.447700px;}
.y5e{bottom:390.539100px;}
.yf4{bottom:391.054950px;}
.ybc{bottom:392.062350px;}
.y9f{bottom:392.159850px;}
.yd7{bottom:394.377600px;}
.y12e{bottom:394.901550px;}
.y15b{bottom:401.377350px;}
.y84{bottom:408.529350px;}
.y10c{bottom:408.667800px;}
.y2d{bottom:410.452200px;}
.y5d{bottom:411.246600px;}
.yf3{bottom:411.597450px;}
.yd{bottom:412.250251px;}
.ybb{bottom:412.769850px;}
.y9e{bottom:412.867350px;}
.yd6{bottom:415.085100px;}
.y15a{bottom:417.725850px;}
.y83{bottom:429.236850px;}
.y10b{bottom:429.375300px;}
.y2c{bottom:431.456700px;}
.y5c{bottom:431.954100px;}
.yf2{bottom:432.139950px;}
.yba{bottom:433.477350px;}
.y9d{bottom:433.574850px;}
.y159{bottom:434.074350px;}
.yd5{bottom:435.792600px;}
.y82{bottom:449.944350px;}
.y10a{bottom:450.082800px;}
.y158{bottom:450.422850px;}
.y5b{bottom:452.661600px;}
.yf1{bottom:452.682450px;}
.yb9{bottom:454.184850px;}
.y9c{bottom:454.282350px;}
.y12d{bottom:455.917350px;}
.yd4{bottom:456.500100px;}
.y157{bottom:466.771350px;}
.y81{bottom:470.651850px;}
.yf0{bottom:473.224950px;}
.y5a{bottom:473.369100px;}
.yb8{bottom:474.892350px;}
.y9b{bottom:474.989850px;}
.y12c{bottom:476.542350px;}
.yd3{bottom:477.207600px;}
.y156{bottom:483.119850px;}
.y80{bottom:491.359350px;}
.yef{bottom:493.767450px;}
.y59{bottom:494.076600px;}
.yb7{bottom:495.599850px;}
.y9a{bottom:495.697350px;}
.y12b{bottom:497.167350px;}
.yd2{bottom:497.915100px;}
.y155{bottom:499.468350px;}
.y7f{bottom:512.066850px;}
.y58{bottom:514.776600px;}
.y154{bottom:515.816850px;}
.yb6{bottom:516.307350px;}
.y99{bottom:516.404850px;}
.y12a{bottom:517.792350px;}
.yd1{bottom:518.622600px;}
.y2b{bottom:519.056700px;}
.y153{bottom:532.165350px;}
.yee{bottom:532.175850px;}
.y7e{bottom:532.774350px;}
.y57{bottom:535.371600px;}
.yb5{bottom:537.014850px;}
.y98{bottom:537.112350px;}
.y129{bottom:538.417350px;}
.yd0{bottom:539.330100px;}
.y152{bottom:548.513850px;}
.y2a{bottom:553.256700px;}
.y7d{bottom:553.481850px;}
.y56{bottom:556.079100px;}
.yb4{bottom:557.722350px;}
.y97{bottom:557.819850px;}
.y128{bottom:559.042350px;}
.yed{bottom:559.175850px;}
.ycf{bottom:560.037600px;}
.y7c{bottom:574.189350px;}
.yc{bottom:574.420795px;}
.y55{bottom:576.786600px;}
.yb3{bottom:578.429850px;}
.y96{bottom:578.527350px;}
.y127{bottom:579.667350px;}
.yce{bottom:580.745100px;}
.y29{bottom:587.456700px;}
.y7b{bottom:594.896850px;}
.y54{bottom:597.494100px;}
.yb2{bottom:599.137350px;}
.y95{bottom:599.234850px;}
.yb{bottom:600.184226px;}
.y126{bottom:600.292350px;}
.ycd{bottom:601.452600px;}
.ya{bottom:613.549153px;}
.y7a{bottom:615.604350px;}
.y151{bottom:615.892350px;}
.y53{bottom:618.201600px;}
.yb1{bottom:619.844850px;}
.y94{bottom:619.904850px;}
.y125{bottom:620.917350px;}
.yec{bottom:621.989850px;}
.ycc{bottom:622.160100px;}
.y150{bottom:632.092350px;}
.y79{bottom:636.311850px;}
.y52{bottom:638.909100px;}
.y9{bottom:639.571869px;}
.yb0{bottom:640.552350px;}
.y93{bottom:640.612350px;}
.y124{bottom:641.542350px;}
.yeb{bottom:642.532350px;}
.ycb{bottom:642.867600px;}
.y14f{bottom:648.292350px;}
.y3b{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y78{bottom:657.019350px;}
.y24{bottom:657.176850px;}
.y51{bottom:659.616600px;}
.yaf{bottom:661.259850px;}
.y92{bottom:661.319850px;}
.y123{bottom:662.167350px;}
.yea{bottom:663.074850px;}
.y14e{bottom:664.492350px;}
.y7{bottom:666.301723px;}
.y77{bottom:677.726850px;}
.y6{bottom:679.666650px;}
.y50{bottom:680.324100px;}
.y14d{bottom:680.692350px;}
.yca{bottom:681.425850px;}
.yae{bottom:681.967350px;}
.y91{bottom:682.027350px;}
.y122{bottom:682.792350px;}
.ye9{bottom:683.617350px;}
.y3a{bottom:688.792350px;}
.y14c{bottom:696.892350px;}
.y109{bottom:698.434350px;}
.y4f{bottom:701.031600px;}
.y76{bottom:702.674850px;}
.y90{bottom:702.734850px;}
.y121{bottom:703.417350px;}
.ye8{bottom:704.159850px;}
.y14b{bottom:713.092350px;}
.y108{bottom:719.141850px;}
.y4e{bottom:721.739100px;}
.y23{bottom:723.200850px;}
.y75{bottom:723.382350px;}
.y120{bottom:724.042350px;}
.ye7{bottom:724.702350px;}
.y39{bottom:726.592350px;}
.y14a{bottom:729.292350px;}
.y107{bottom:739.849350px;}
.y5{bottom:741.942024px;}
.y4d{bottom:742.446600px;}
.y74{bottom:744.089850px;}
.y11f{bottom:744.667350px;}
.ye6{bottom:745.244850px;}
.y149{bottom:745.492350px;}
.y106{bottom:760.556850px;}
.y148{bottom:761.692350px;}
.y4{bottom:761.765488px;}
.y4c{bottom:763.154100px;}
.y38{bottom:764.392350px;}
.y73{bottom:764.797350px;}
.y11e{bottom:765.292350px;}
.ye5{bottom:765.787350px;}
.y147{bottom:777.892350px;}
.y105{bottom:781.264350px;}
.y4b{bottom:783.861600px;}
.y3{bottom:785.148217px;}
.y72{bottom:785.504850px;}
.y11d{bottom:785.917350px;}
.ye4{bottom:786.329850px;}
.y146{bottom:794.092350px;}
.y104{bottom:801.971850px;}
.y4a{bottom:804.569100px;}
.y71{bottom:806.212350px;}
.y11c{bottom:806.542350px;}
.ye3{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y145{bottom:810.292350px;}
.y22{bottom:811.700850px;}
.y103{bottom:822.679350px;}
.y49{bottom:825.276600px;}
.y144{bottom:826.492350px;}
.y70{bottom:826.919850px;}
.y11b{bottom:827.167350px;}
.ye2{bottom:827.414850px;}
.y6c{bottom:833.029500px;}
.y37{bottom:839.992350px;}
.y143{bottom:842.692350px;}
.y48{bottom:845.984100px;}
.y6f{bottom:847.627350px;}
.y11a{bottom:847.792350px;}
.ye1{bottom:847.957350px;}
.y142{bottom:858.892350px;}
.y6e{bottom:868.334850px;}
.y119{bottom:868.417350px;}
.ye0{bottom:868.499850px;}
.y141{bottom:875.092350px;}
.y36{bottom:877.792350px;}
.y47{bottom:884.542350px;}
.y6d{bottom:889.042350px;}
.y140{bottom:891.292350px;}
.y46{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.021561px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.026952px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h21{height:42.820312px;}
.h22{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1e{height:55.910859px;}
.h1f{height:56.030859px;}
.h1d{height:56.330859px;}
.h20{height:56.480259px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x15{left:46.771650px;}
.x1b{left:60.271650px;}
.x13{left:69.351900px;}
.x1a{left:76.535400px;}
.x8{left:80.205750px;}
.x1d{left:97.787400px;}
.xd{left:106.916700px;}
.x14{left:114.198900px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x17{left:161.574750px;}
.x12{left:172.674900px;}
.x11{left:180.891900px;}
.x1c{left:182.826750px;}
.x7{left:190.392750px;}
.x10{left:201.483900px;}
.x26{left:222.078900px;}
.xf{left:226.761900px;}
.x21{left:235.700400px;}
.x25{left:266.129400px;}
.xa{left:281.522250px;}
.x24{left:287.337900px;}
.xe{left:307.133400px;}
.x1f{left:321.843900px;}
.x28{left:325.070400px;}
.x4{left:344.105623px;}
.x22{left:346.130400px;}
.x27{left:354.068400px;}
.x20{left:381.216900px;}
.x1e{left:394.271400px;}
.x16{left:407.083800px;}
.x23{left:419.759400px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x18{left:625.609500px;}
.x19{left:642.001350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.936000pt;}
.ls3{letter-spacing:-1.109333pt;}
.ls7{letter-spacing:-0.901333pt;}
.ls5{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.346667pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.208000pt;}
.ls4{letter-spacing:-0.069333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.992000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws6{word-spacing:-25.312000pt;}
.ws4{word-spacing:-21.760000pt;}
.ws11{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws9{word-spacing:-12.672000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws8{word-spacing:-7.729803pt;}
.ws1{word-spacing:0.000000pt;}
.wse{word-spacing:0.138667pt;}
.ws10{word-spacing:0.277333pt;}
.wsd{word-spacing:0.293333pt;}
.wsa{word-spacing:0.586667pt;}
.wsc{word-spacing:0.832000pt;}
.ws5{word-spacing:1.040000pt;}
.wsb{word-spacing:6.746667pt;}
.wsf{word-spacing:9.152000pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.651200pt;}
._1c{margin-left:-10.723200pt;}
._15{margin-left:-5.919467pt;}
._17{margin-left:-4.892800pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._13{width:5.315200pt;}
._4{width:6.394632pt;}
._11{width:7.345241pt;}
._9{width:9.122617pt;}
._14{width:10.056050pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._1a{width:14.613867pt;}
._19{width:16.168533pt;}
._5{width:18.215901pt;}
._1b{width:19.512732pt;}
._12{width:22.082133pt;}
._18{width:23.366933pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._16{width:33.088000pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs13{font-size:34.202667pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y35{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y34{bottom:90.708667pt;}
.yc9{bottom:90.708800pt;}
.y6b{bottom:90.716933pt;}
.yad{bottom:90.722267pt;}
.y13f{bottom:91.105600pt;}
.y102{bottom:91.964400pt;}
.y45{bottom:96.391600pt;}
.y8f{bottom:102.051600pt;}
.y6a{bottom:105.380933pt;}
.yac{bottom:105.386267pt;}
.y13e{bottom:105.505600pt;}
.y1b{bottom:109.706068pt;}
.y101{bottom:110.224400pt;}
.y44{bottom:110.791600pt;}
.y13d{bottom:119.905600pt;}
.y69{bottom:120.044933pt;}
.yab{bottom:120.050267pt;}
.y8e{bottom:120.458267pt;}
.y21{bottom:121.581067pt;}
.y28{bottom:126.612800pt;}
.yc8{bottom:127.839867pt;}
.y100{bottom:128.484400pt;}
.y43{bottom:128.971600pt;}
.y13c{bottom:134.305600pt;}
.y68{bottom:134.708933pt;}
.yaa{bottom:134.714267pt;}
.y118{bottom:138.610933pt;}
.y42{bottom:143.371600pt;}
.yc7{bottom:146.246533pt;}
.yff{bottom:146.744400pt;}
.y13b{bottom:148.705600pt;}
.ya9{bottom:149.378267pt;}
.y8d{bottom:154.732267pt;}
.y117{bottom:157.017600pt;}
.y41{bottom:157.771600pt;}
.y1a{bottom:159.645796pt;}
.y13a{bottom:163.105600pt;}
.y27{bottom:163.939467pt;}
.ya8{bottom:164.042267pt;}
.yc6{bottom:164.653200pt;}
.yfe{bottom:165.004400pt;}
.y19{bottom:168.550509pt;}
.y40{bottom:172.171600pt;}
.y116{bottom:175.424267pt;}
.y18{bottom:176.721893pt;}
.y139{bottom:177.505600pt;}
.y8c{bottom:178.732267pt;}
.y67{bottom:181.485867pt;}
.y26{bottom:182.610133pt;}
.yc5{bottom:182.839867pt;}
.yfd{bottom:183.264400pt;}
.y17{bottom:184.138996pt;}
.y3f{bottom:186.571600pt;}
.y16{bottom:191.566574pt;}
.y138{bottom:191.905600pt;}
.y115{bottom:193.830933pt;}
.y15{bottom:198.994153pt;}
.y66{bottom:199.892533pt;}
.y3e{bottom:200.971600pt;}
.yc4{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.ya7{bottom:201.333200pt;}
.yfc{bottom:201.524400pt;}
.ydf{bottom:203.304533pt;}
.y137{bottom:206.305600pt;}
.y14{bottom:206.411255pt;}
.y114{bottom:212.237600pt;}
.y13{bottom:213.838834pt;}
.y3d{bottom:215.371600pt;}
.y65{bottom:218.299200pt;}
.yc3{bottom:219.653200pt;}
.ya6{bottom:219.739867pt;}
.yfb{bottom:219.784400pt;}
.y136{bottom:220.705600pt;}
.y12{bottom:221.266412pt;}
.yde{bottom:221.711200pt;}
.y11{bottom:228.683515pt;}
.y3c{bottom:229.771600pt;}
.y113{bottom:230.644267pt;}
.y8b{bottom:234.290533pt;}
.y135{bottom:235.105600pt;}
.y10{bottom:236.111093pt;}
.y64{bottom:236.705867pt;}
.yfa{bottom:238.044400pt;}
.yc2{bottom:238.059867pt;}
.ya5{bottom:238.146533pt;}
.ydd{bottom:240.117867pt;}
.yf{bottom:243.538672pt;}
.y112{bottom:249.050933pt;}
.y134{bottom:249.505600pt;}
.y8a{bottom:252.697200pt;}
.y33{bottom:252.822400pt;}
.y63{bottom:255.112533pt;}
.yf9{bottom:256.304400pt;}
.yc1{bottom:256.466533pt;}
.ya4{bottom:256.553200pt;}
.ydc{bottom:258.524533pt;}
.ye{bottom:258.812874pt;}
.y133{bottom:263.905600pt;}
.y111{bottom:267.457600pt;}
.y89{bottom:271.103867pt;}
.y32{bottom:271.493067pt;}
.y62{bottom:273.519200pt;}
.yf8{bottom:274.564400pt;}
.yc0{bottom:274.873200pt;}
.ya3{bottom:274.959867pt;}
.ydb{bottom:276.931200pt;}
.y132{bottom:278.305600pt;}
.y88{bottom:289.510533pt;}
.y110{bottom:289.633600pt;}
.y31{bottom:290.163733pt;}
.y61{bottom:291.925867pt;}
.y131{bottom:292.705600pt;}
.yf7{bottom:292.824400pt;}
.ybf{bottom:293.279867pt;}
.ya2{bottom:293.366533pt;}
.yda{bottom:295.337867pt;}
.y130{bottom:307.105600pt;}
.y87{bottom:307.917200pt;}
.y10f{bottom:308.040267pt;}
.y30{bottom:308.834400pt;}
.y60{bottom:310.332533pt;}
.yf6{bottom:311.084400pt;}
.ybe{bottom:311.686533pt;}
.ya1{bottom:311.773200pt;}
.yd9{bottom:313.744533pt;}
.y12f{bottom:321.505600pt;}
.y15d{bottom:325.819867pt;}
.y86{bottom:326.323867pt;}
.y10e{bottom:326.446933pt;}
.y2f{bottom:327.505067pt;}
.y5f{bottom:328.739200pt;}
.yf5{bottom:329.344400pt;}
.ybd{bottom:330.093200pt;}
.ya0{bottom:330.179867pt;}
.yd8{bottom:332.151200pt;}
.y15c{bottom:342.247867pt;}
.y85{bottom:344.730533pt;}
.y10d{bottom:344.853600pt;}
.y2e{bottom:346.175733pt;}
.y5e{bottom:347.145867pt;}
.yf4{bottom:347.604400pt;}
.ybc{bottom:348.499867pt;}
.y9f{bottom:348.586533pt;}
.yd7{bottom:350.557867pt;}
.y12e{bottom:351.023600pt;}
.y15b{bottom:356.779867pt;}
.y84{bottom:363.137200pt;}
.y10c{bottom:363.260267pt;}
.y2d{bottom:364.846400pt;}
.y5d{bottom:365.552533pt;}
.yf3{bottom:365.864400pt;}
.yd{bottom:366.444668pt;}
.ybb{bottom:366.906533pt;}
.y9e{bottom:366.993200pt;}
.yd6{bottom:368.964533pt;}
.y15a{bottom:371.311867pt;}
.y83{bottom:381.543867pt;}
.y10b{bottom:381.666933pt;}
.y2c{bottom:383.517067pt;}
.y5c{bottom:383.959200pt;}
.yf2{bottom:384.124400pt;}
.yba{bottom:385.313200pt;}
.y9d{bottom:385.399867pt;}
.y159{bottom:385.843867pt;}
.yd5{bottom:387.371200pt;}
.y82{bottom:399.950533pt;}
.y10a{bottom:400.073600pt;}
.y158{bottom:400.375867pt;}
.y5b{bottom:402.365867pt;}
.yf1{bottom:402.384400pt;}
.yb9{bottom:403.719867pt;}
.y9c{bottom:403.806533pt;}
.y12d{bottom:405.259867pt;}
.yd4{bottom:405.777867pt;}
.y157{bottom:414.907867pt;}
.y81{bottom:418.357200pt;}
.yf0{bottom:420.644400pt;}
.y5a{bottom:420.772533pt;}
.yb8{bottom:422.126533pt;}
.y9b{bottom:422.213200pt;}
.y12c{bottom:423.593200pt;}
.yd3{bottom:424.184533pt;}
.y156{bottom:429.439867pt;}
.y80{bottom:436.763867pt;}
.yef{bottom:438.904400pt;}
.y59{bottom:439.179200pt;}
.yb7{bottom:440.533200pt;}
.y9a{bottom:440.619867pt;}
.y12b{bottom:441.926533pt;}
.yd2{bottom:442.591200pt;}
.y155{bottom:443.971867pt;}
.y7f{bottom:455.170533pt;}
.y58{bottom:457.579200pt;}
.y154{bottom:458.503867pt;}
.yb6{bottom:458.939867pt;}
.y99{bottom:459.026533pt;}
.y12a{bottom:460.259867pt;}
.yd1{bottom:460.997867pt;}
.y2b{bottom:461.383733pt;}
.y153{bottom:473.035867pt;}
.yee{bottom:473.045200pt;}
.y7e{bottom:473.577200pt;}
.y57{bottom:475.885867pt;}
.yb5{bottom:477.346533pt;}
.y98{bottom:477.433200pt;}
.y129{bottom:478.593200pt;}
.yd0{bottom:479.404533pt;}
.y152{bottom:487.567867pt;}
.y2a{bottom:491.783733pt;}
.y7d{bottom:491.983867pt;}
.y56{bottom:494.292533pt;}
.yb4{bottom:495.753200pt;}
.y97{bottom:495.839867pt;}
.y128{bottom:496.926533pt;}
.yed{bottom:497.045200pt;}
.ycf{bottom:497.811200pt;}
.y7c{bottom:510.390533pt;}
.yc{bottom:510.596263pt;}
.y55{bottom:512.699200pt;}
.yb3{bottom:514.159867pt;}
.y96{bottom:514.246533pt;}
.y127{bottom:515.259867pt;}
.yce{bottom:516.217867pt;}
.y29{bottom:522.183733pt;}
.y7b{bottom:528.797200pt;}
.y54{bottom:531.105867pt;}
.yb2{bottom:532.566533pt;}
.y95{bottom:532.653200pt;}
.yb{bottom:533.497090pt;}
.y126{bottom:533.593200pt;}
.ycd{bottom:534.624533pt;}
.ya{bottom:545.377025pt;}
.y7a{bottom:547.203867pt;}
.y151{bottom:547.459867pt;}
.y53{bottom:549.512533pt;}
.yb1{bottom:550.973200pt;}
.y94{bottom:551.026533pt;}
.y125{bottom:551.926533pt;}
.yec{bottom:552.879867pt;}
.ycc{bottom:553.031200pt;}
.y150{bottom:561.859867pt;}
.y79{bottom:565.610533pt;}
.y52{bottom:567.919200pt;}
.y9{bottom:568.508328pt;}
.yb0{bottom:569.379867pt;}
.y93{bottom:569.433200pt;}
.y124{bottom:570.259867pt;}
.yeb{bottom:571.139867pt;}
.ycb{bottom:571.437867pt;}
.y14f{bottom:576.259867pt;}
.y3b{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y78{bottom:584.017200pt;}
.y24{bottom:584.157200pt;}
.y51{bottom:586.325867pt;}
.yaf{bottom:587.786533pt;}
.y92{bottom:587.839867pt;}
.y123{bottom:588.593200pt;}
.yea{bottom:589.399867pt;}
.y14e{bottom:590.659867pt;}
.y7{bottom:592.268198pt;}
.y77{bottom:602.423867pt;}
.y6{bottom:604.148133pt;}
.y50{bottom:604.732533pt;}
.y14d{bottom:605.059867pt;}
.yca{bottom:605.711867pt;}
.yae{bottom:606.193200pt;}
.y91{bottom:606.246533pt;}
.y122{bottom:606.926533pt;}
.ye9{bottom:607.659867pt;}
.y3a{bottom:612.259867pt;}
.y14c{bottom:619.459867pt;}
.y109{bottom:620.830533pt;}
.y4f{bottom:623.139200pt;}
.y76{bottom:624.599867pt;}
.y90{bottom:624.653200pt;}
.y121{bottom:625.259867pt;}
.ye8{bottom:625.919867pt;}
.y14b{bottom:633.859867pt;}
.y108{bottom:639.237200pt;}
.y4e{bottom:641.545867pt;}
.y23{bottom:642.845200pt;}
.y75{bottom:643.006533pt;}
.y120{bottom:643.593200pt;}
.ye7{bottom:644.179867pt;}
.y39{bottom:645.859867pt;}
.y14a{bottom:648.259867pt;}
.y107{bottom:657.643867pt;}
.y5{bottom:659.504022pt;}
.y4d{bottom:659.952533pt;}
.y74{bottom:661.413200pt;}
.y11f{bottom:661.926533pt;}
.ye6{bottom:662.439867pt;}
.y149{bottom:662.659867pt;}
.y106{bottom:676.050533pt;}
.y148{bottom:677.059867pt;}
.y4{bottom:677.124878pt;}
.y4c{bottom:678.359200pt;}
.y38{bottom:679.459867pt;}
.y73{bottom:679.819867pt;}
.y11e{bottom:680.259867pt;}
.ye5{bottom:680.699867pt;}
.y147{bottom:691.459867pt;}
.y105{bottom:694.457200pt;}
.y4b{bottom:696.765867pt;}
.y3{bottom:697.909527pt;}
.y72{bottom:698.226533pt;}
.y11d{bottom:698.593200pt;}
.ye4{bottom:698.959867pt;}
.y146{bottom:705.859867pt;}
.y104{bottom:712.863867pt;}
.y4a{bottom:715.172533pt;}
.y71{bottom:716.633200pt;}
.y11c{bottom:716.926533pt;}
.ye3{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y145{bottom:720.259867pt;}
.y22{bottom:721.511867pt;}
.y103{bottom:731.270533pt;}
.y49{bottom:733.579200pt;}
.y144{bottom:734.659867pt;}
.y70{bottom:735.039867pt;}
.y11b{bottom:735.259867pt;}
.ye2{bottom:735.479867pt;}
.y6c{bottom:740.470667pt;}
.y37{bottom:746.659867pt;}
.y143{bottom:749.059867pt;}
.y48{bottom:751.985867pt;}
.y6f{bottom:753.446533pt;}
.y11a{bottom:753.593200pt;}
.ye1{bottom:753.739867pt;}
.y142{bottom:763.459867pt;}
.y6e{bottom:771.853200pt;}
.y119{bottom:771.926533pt;}
.ye0{bottom:771.999867pt;}
.y141{bottom:777.859867pt;}
.y36{bottom:780.259867pt;}
.y47{bottom:786.259867pt;}
.y6d{bottom:790.259867pt;}
.y140{bottom:792.259867pt;}
.y46{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.908055pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.135068pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h21{height:38.062500pt;}
.h22{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1e{height:49.698542pt;}
.h1f{height:49.805208pt;}
.h1d{height:50.071875pt;}
.h20{height:50.204675pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x15{left:41.574800pt;}
.x1b{left:53.574800pt;}
.x13{left:61.646133pt;}
.x1a{left:68.031467pt;}
.x8{left:71.294000pt;}
.x1d{left:86.922133pt;}
.xd{left:95.037067pt;}
.x14{left:101.510133pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x17{left:143.622000pt;}
.x12{left:153.488800pt;}
.x11{left:160.792800pt;}
.x1c{left:162.512667pt;}
.x7{left:169.238000pt;}
.x10{left:179.096800pt;}
.x26{left:197.403467pt;}
.xf{left:201.566133pt;}
.x21{left:209.511467pt;}
.x25{left:236.559467pt;}
.xa{left:250.242000pt;}
.x24{left:255.411467pt;}
.xe{left:273.007467pt;}
.x1f{left:286.083467pt;}
.x28{left:288.951467pt;}
.x4{left:305.871665pt;}
.x22{left:307.671467pt;}
.x27{left:314.727467pt;}
.x20{left:338.859467pt;}
.x1e{left:350.463467pt;}
.x16{left:361.852267pt;}
.x23{left:373.119467pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x18{left:556.097333pt;}
.x19{left:570.667867pt;}
}




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