
    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_aed54a897073af3934933e66.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ffc066902959be9f798dc441.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c16ed6f4dfe65f1d6aa69037.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a981c3419b7c76694c64d00e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895508;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_fa160df56054b8b43f32b874.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_1af0d6378af5055a11a75a48.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_6934ebdd94b2d7f4cd8fb1f8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b9fae2ffc84356227435725c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_aed54a897073af3934933e66.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ffc066902959be9f798dc441.woff')format("woff");}.ffb{font-family:ffb;line-height:1.093262;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_9c06956ff900da2ab00f54d5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_c24aa66a29f5d08cc12c47d3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ffc066902959be9f798dc441.woff')format("woff");}.ffe{font-family:ffe;line-height:1.093262;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_4ca1ddd7f9670bbe871193ec.woff')format("woff");}.fff{font-family:fff;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.579400px;}
.v3{vertical-align:-15.984000px;}
.v5{vertical-align:-7.218000px;}
.v4{vertical-align:-3.996000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.579400px;}
.v2{vertical-align:27.971400px;}
.v1{vertical-align:35.964600px;}
.ls5{letter-spacing:-2.100000px;}
.ls10{letter-spacing:-1.236000px;}
.ls6{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.618000px;}
.lsb{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.420000px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.010200px;}
.ls0{letter-spacing:0.165000px;}
.ls18{letter-spacing:0.172200px;}
.lsa{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.618000px;}
.lse{letter-spacing:0.720300px;}
.ls12{letter-spacing:0.720900px;}
.lsd{letter-spacing:1.236000px;}
.ls11{letter-spacing:1.236600px;}
.ls1{letter-spacing:1.755000px;}
.ls17{letter-spacing:1.854000px;}
.lsf{letter-spacing:1.980000px;}
.ls14{letter-spacing:2.199450px;}
.ls8{letter-spacing:2.772000px;}
.ls15{letter-spacing:4.353600px;}
.ls2{letter-spacing:5.907600px;}
.ls3{letter-spacing:7.114800px;}
.ls16{letter-spacing:23.755800px;}
.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;}
}
.ws0{word-spacing:-16.665000px;}
.ws4b{word-spacing:-16.068000px;}
.ws2e{word-spacing:-15.450000px;}
.ws35{word-spacing:-12.000000px;}
.ws42{word-spacing:-9.007350px;}
.ws1{word-spacing:-6.996000px;}
.ws3f{word-spacing:-5.623800px;}
.ws17{word-spacing:-4.635000px;}
.ws44{word-spacing:-3.522600px;}
.wsf{word-spacing:-3.504000px;}
.ws4e{word-spacing:-3.460800px;}
.ws38{word-spacing:-3.090000px;}
.ws6f{word-spacing:-3.028200px;}
.ws39{word-spacing:-2.842800px;}
.ws70{word-spacing:-2.781000px;}
.ws58{word-spacing:-2.348400px;}
.ws66{word-spacing:-2.286600px;}
.ws54{word-spacing:-1.854000px;}
.ws45{word-spacing:-1.545000px;}
.ws62{word-spacing:-1.421400px;}
.ws29{word-spacing:-1.297800px;}
.ws1e{word-spacing:-1.236000px;}
.ws56{word-spacing:-1.050600px;}
.ws41{word-spacing:-0.988800px;}
.ws19{word-spacing:-0.618000px;}
.ws57{word-spacing:-0.370800px;}
.ws5{word-spacing:-0.252000px;}
.ws65{word-spacing:-0.247200px;}
.ws3{word-spacing:-0.168000px;}
.ws47{word-spacing:-0.123600px;}
.ws12{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws1b{word-spacing:0.185400px;}
.ws5a{word-spacing:0.370800px;}
.ws71{word-spacing:0.432600px;}
.ws43{word-spacing:0.494400px;}
.ws8{word-spacing:0.600000px;}
.ws2a{word-spacing:0.618000px;}
.ws6b{word-spacing:0.927000px;}
.ws16{word-spacing:1.050600px;}
.ws4{word-spacing:1.080000px;}
.wsd{word-spacing:1.104000px;}
.ws51{word-spacing:1.236000px;}
.ws15{word-spacing:1.320000px;}
.ws2b{word-spacing:1.545000px;}
.ws46{word-spacing:1.730400px;}
.ws7{word-spacing:1.740000px;}
.ws3a{word-spacing:1.854000px;}
.ws5e{word-spacing:2.101200px;}
.ws10{word-spacing:2.160000px;}
.ws4d{word-spacing:2.163000px;}
.ws63{word-spacing:2.224800px;}
.ws13{word-spacing:2.280000px;}
.ws24{word-spacing:2.348400px;}
.wsc{word-spacing:2.448000px;}
.ws31{word-spacing:2.472000px;}
.ws32{word-spacing:2.533800px;}
.ws64{word-spacing:2.595600px;}
.ws9{word-spacing:3.060000px;}
.ws36{word-spacing:3.090000px;}
.ws18{word-spacing:3.151800px;}
.ws2c{word-spacing:3.275400px;}
.ws3e{word-spacing:3.460800px;}
.ws52{word-spacing:3.708000px;}
.ws40{word-spacing:3.955200px;}
.wsa{word-spacing:4.176000px;}
.ws69{word-spacing:4.202400px;}
.ws33{word-spacing:4.264200px;}
.wse{word-spacing:4.416000px;}
.ws30{word-spacing:4.635000px;}
.ws4c{word-spacing:4.696800px;}
.ws59{word-spacing:5.005800px;}
.ws37{word-spacing:5.067600px;}
.wsb{word-spacing:5.328000px;}
.ws6{word-spacing:5.520000px;}
.ws26{word-spacing:5.685600px;}
.ws27{word-spacing:5.747400px;}
.ws67{word-spacing:5.871000px;}
.ws2d{word-spacing:5.904000px;}
.ws25{word-spacing:6.180000px;}
.ws22{word-spacing:6.550800px;}
.ws48{word-spacing:6.612600px;}
.ws6c{word-spacing:6.736200px;}
.ws6e{word-spacing:6.798000px;}
.ws6d{word-spacing:6.859800px;}
.ws5b{word-spacing:6.921600px;}
.ws20{word-spacing:6.996000px;}
.ws53{word-spacing:7.230600px;}
.ws3c{word-spacing:7.292400px;}
.ws23{word-spacing:7.416000px;}
.ws5c{word-spacing:7.539600px;}
.ws1c{word-spacing:7.601400px;}
.ws34{word-spacing:7.786800px;}
.ws55{word-spacing:8.034000px;}
.ws4a{word-spacing:8.343000px;}
.ws60{word-spacing:8.404800px;}
.ws14{word-spacing:8.580000px;}
.ws3d{word-spacing:9.208200px;}
.ws4f{word-spacing:9.270000px;}
.ws1a{word-spacing:10.506000px;}
.ws1f{word-spacing:10.876800px;}
.ws3b{word-spacing:11.556600px;}
.ws5f{word-spacing:12.051000px;}
.ws2f{word-spacing:12.174600px;}
.ws1d{word-spacing:12.360000px;}
.ws68{word-spacing:12.545400px;}
.ws49{word-spacing:12.730800px;}
.ws6a{word-spacing:13.410600px;}
.ws28{word-spacing:13.905000px;}
.ws21{word-spacing:15.944400px;}
.ws5d{word-spacing:17.983800px;}
.ws61{word-spacing:18.601800px;}
.ws50{word-spacing:20.270400px;}
.ws11{word-spacing:350.833800px;}
._c{margin-left:-9.220560px;}
._1b{margin-left:-7.959840px;}
._b{margin-left:-6.591600px;}
._2{margin-left:-5.418000px;}
._8{margin-left:-4.416000px;}
._4{margin-left:-3.258000px;}
._0{margin-left:-1.549800px;}
._1{width:1.101600px;}
._3{width:2.630400px;}
._d{width:3.753600px;}
._6{width:5.265600px;}
._9{width:6.581460px;}
._a{width:8.485380px;}
._f{width:9.627960px;}
._e{width:11.235240px;}
._10{width:12.299280px;}
._5{width:13.488000px;}
._7{width:16.272000px;}
._12{width:17.680860px;}
._13{width:18.830580px;}
._14{width:19.973760px;}
._18{width:21.271560px;}
._16{width:23.755920px;}
._15{width:25.245300px;}
._19{width:33.668640px;}
._11{width:36.029400px;}
._1a{width:37.675980px;}
._17{width:46.200000px;}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:20.988000px;}
.fs8{font-size:27.984000px;}
.fsc{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:61.800000px;}
.fs2{font-size:62.964000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y24{bottom:76.500000px;}
.y76{bottom:76.500150px;}
.y23{bottom:90.000000px;}
.y75{bottom:90.000150px;}
.yfe{bottom:91.376100px;}
.y9f{bottom:92.173800px;}
.yc6{bottom:92.621100px;}
.y6f{bottom:92.636100px;}
.yfb{bottom:92.885100px;}
.yd3{bottom:93.996000px;}
.y22{bottom:103.500000px;}
.y9d{bottom:107.496000px;}
.y74{bottom:107.496150px;}
.yfd{bottom:109.916100px;}
.y9e{bottom:110.713800px;}
.yc5{bottom:111.161100px;}
.y6e{bottom:111.176100px;}
.yfa{bottom:111.425100px;}
.y21{bottom:117.000000px;}
.y73{bottom:117.000300px;}
.y44{bottom:120.996000px;}
.yfc{bottom:128.456100px;}
.y9c{bottom:129.253950px;}
.yc4{bottom:129.701100px;}
.y6d{bottom:129.716100px;}
.yf9{bottom:129.965100px;}
.y20{bottom:130.500000px;}
.y72{bottom:130.500300px;}
.y1f{bottom:144.000000px;}
.y71{bottom:144.000300px;}
.yd2{bottom:146.996100px;}
.y9b{bottom:147.793800px;}
.y70{bottom:147.996300px;}
.y10a{bottom:148.241100px;}
.y6c{bottom:148.256100px;}
.yf8{bottom:148.505100px;}
.y43{bottom:149.953650px;}
.y1e{bottom:161.496000px;}
.yd1{bottom:165.536100px;}
.y9a{bottom:166.333950px;}
.yc3{bottom:166.781100px;}
.y6b{bottom:166.796100px;}
.yf7{bottom:167.045100px;}
.y42{bottom:168.493650px;}
.y1d{bottom:171.000000px;}
.yd0{bottom:184.076100px;}
.y1c{bottom:184.500000px;}
.y99{bottom:184.873800px;}
.y109{bottom:185.321100px;}
.y6a{bottom:185.336100px;}
.yf6{bottom:185.585100px;}
.y41{bottom:187.033650px;}
.y1b{bottom:198.000000px;}
.ycf{bottom:202.616100px;}
.y98{bottom:203.413950px;}
.yc2{bottom:203.861100px;}
.y69{bottom:203.876100px;}
.yf5{bottom:204.125100px;}
.y40{bottom:205.573650px;}
.y1a{bottom:211.500000px;}
.yce{bottom:221.156100px;}
.y97{bottom:221.953800px;}
.yc1{bottom:222.401100px;}
.y68{bottom:222.416100px;}
.yf4{bottom:222.665250px;}
.y3f{bottom:224.113650px;}
.y19{bottom:225.000000px;}
.ycd{bottom:239.696100px;}
.y96{bottom:240.493950px;}
.yc0{bottom:240.941100px;}
.y67{bottom:240.956100px;}
.yf3{bottom:241.205100px;}
.y18{bottom:242.496000px;}
.y3e{bottom:242.653650px;}
.y17{bottom:252.000000px;}
.ycc{bottom:258.236100px;}
.y95{bottom:259.033800px;}
.ybf{bottom:259.481100px;}
.y66{bottom:259.496100px;}
.yf2{bottom:259.745250px;}
.y3d{bottom:261.193650px;}
.y16{bottom:269.496000px;}
.ycb{bottom:276.776100px;}
.y94{bottom:277.573950px;}
.ybe{bottom:278.021100px;}
.y65{bottom:278.036100px;}
.yf1{bottom:278.285100px;}
.y3c{bottom:279.733650px;}
.yca{bottom:295.316100px;}
.y93{bottom:296.113800px;}
.ybd{bottom:296.561100px;}
.y64{bottom:296.576100px;}
.yf0{bottom:296.825100px;}
.y3b{bottom:298.273650px;}
.y15{bottom:308.853450px;}
.yc9{bottom:313.856100px;}
.y92{bottom:314.653950px;}
.ybc{bottom:315.101100px;}
.y63{bottom:315.116100px;}
.yef{bottom:315.365100px;}
.y14{bottom:326.853450px;}
.y91{bottom:333.193800px;}
.ybb{bottom:333.641100px;}
.y62{bottom:333.656100px;}
.yee{bottom:333.905100px;}
.y3a{bottom:335.353650px;}
.y13{bottom:344.853450px;}
.yc8{bottom:350.936100px;}
.y90{bottom:351.733950px;}
.yba{bottom:352.181100px;}
.y61{bottom:352.196100px;}
.yed{bottom:352.445100px;}
.y12{bottom:362.853450px;}
.y8f{bottom:370.273800px;}
.yb9{bottom:370.721100px;}
.y60{bottom:370.736100px;}
.yec{bottom:370.985100px;}
.yc7{bottom:388.016100px;}
.y11{bottom:388.353450px;}
.y8e{bottom:388.813800px;}
.yb8{bottom:389.261100px;}
.y5f{bottom:389.276100px;}
.yeb{bottom:389.525100px;}
.y39{bottom:391.693650px;}
.y8d{bottom:407.353800px;}
.yb7{bottom:407.801100px;}
.y5e{bottom:407.816100px;}
.y38{bottom:407.893650px;}
.yea{bottom:408.065100px;}
.y37{bottom:424.093650px;}
.y8c{bottom:425.893800px;}
.yb6{bottom:426.341100px;}
.y5d{bottom:426.356100px;}
.ye9{bottom:426.605100px;}
.y8b{bottom:444.433800px;}
.yb5{bottom:444.881100px;}
.y5c{bottom:444.896100px;}
.ye8{bottom:445.145100px;}
.y10{bottom:447.153450px;}
.y8a{bottom:462.973800px;}
.yb4{bottom:463.421100px;}
.y5b{bottom:463.436100px;}
.ye7{bottom:463.685100px;}
.yf{bottom:468.753450px;}
.y36{bottom:476.293650px;}
.y89{bottom:481.513800px;}
.yb3{bottom:481.961100px;}
.y5a{bottom:481.976100px;}
.ye6{bottom:482.225250px;}
.y88{bottom:500.053950px;}
.yb2{bottom:500.501100px;}
.y59{bottom:500.516100px;}
.ye5{bottom:500.765100px;}
.ye{bottom:504.453300px;}
.y35{bottom:513.373650px;}
.y87{bottom:518.593800px;}
.yb1{bottom:519.041100px;}
.y58{bottom:519.056100px;}
.ye4{bottom:519.305100px;}
.yd{bottom:530.005350px;}
.y34{bottom:531.913650px;}
.y86{bottom:537.133800px;}
.yb0{bottom:537.581100px;}
.y57{bottom:537.596100px;}
.ye3{bottom:537.845100px;}
.y33{bottom:550.453650px;}
.y85{bottom:555.673800px;}
.yaf{bottom:556.121100px;}
.y56{bottom:556.136100px;}
.ye2{bottom:556.385100px;}
.yc{bottom:556.705350px;}
.y32{bottom:568.993650px;}
.y84{bottom:574.213950px;}
.yae{bottom:574.661100px;}
.y55{bottom:574.676100px;}
.ye1{bottom:574.925100px;}
.y119{bottom:575.051400px;}
.y108{bottom:575.216100px;}
.y31{bottom:587.533650px;}
.y83{bottom:592.753950px;}
.yad{bottom:593.201100px;}
.y54{bottom:593.216100px;}
.ye0{bottom:593.465100px;}
.y118{bottom:593.591250px;}
.y107{bottom:593.756100px;}
.yb{bottom:603.205350px;}
.y30{bottom:606.073650px;}
.y82{bottom:611.293800px;}
.yac{bottom:611.741100px;}
.y53{bottom:611.756100px;}
.ydf{bottom:612.005100px;}
.y117{bottom:612.131250px;}
.y106{bottom:612.296100px;}
.y2f{bottom:624.613650px;}
.ya{bottom:628.757250px;}
.y81{bottom:629.833800px;}
.yab{bottom:630.281100px;}
.y52{bottom:630.296100px;}
.yde{bottom:630.545100px;}
.y116{bottom:630.671250px;}
.y105{bottom:630.836100px;}
.y2e{bottom:643.153650px;}
.y80{bottom:648.373800px;}
.yaa{bottom:648.821100px;}
.y51{bottom:648.836100px;}
.ydd{bottom:649.085100px;}
.y115{bottom:649.211250px;}
.y104{bottom:649.376100px;}
.y9{bottom:655.457400px;}
.y2d{bottom:661.693800px;}
.y7f{bottom:666.913950px;}
.ya9{bottom:667.361100px;}
.y50{bottom:667.376100px;}
.ydc{bottom:667.625100px;}
.y114{bottom:667.751250px;}
.y103{bottom:667.916100px;}
.y7e{bottom:685.453800px;}
.ya8{bottom:685.901100px;}
.y4f{bottom:685.916100px;}
.ydb{bottom:686.165100px;}
.y113{bottom:686.291250px;}
.y102{bottom:686.456100px;}
.y2c{bottom:687.733650px;}
.y8{bottom:698.657250px;}
.y7d{bottom:703.993950px;}
.ya7{bottom:704.441100px;}
.y4e{bottom:704.456100px;}
.yda{bottom:704.705100px;}
.y112{bottom:704.831250px;}
.y101{bottom:704.996100px;}
.y7c{bottom:722.533800px;}
.ya6{bottom:722.981100px;}
.y4d{bottom:722.996100px;}
.yd9{bottom:723.245250px;}
.y111{bottom:723.371250px;}
.y100{bottom:723.536100px;}
.y2b{bottom:725.533650px;}
.y7{bottom:725.657250px;}
.y7b{bottom:741.073950px;}
.ya5{bottom:741.521100px;}
.y4c{bottom:741.536100px;}
.yd8{bottom:741.785100px;}
.y110{bottom:741.911250px;}
.yff{bottom:742.076100px;}
.y6{bottom:752.657250px;}
.y7a{bottom:759.613800px;}
.ya4{bottom:760.061100px;}
.y4b{bottom:760.076100px;}
.yd7{bottom:760.325100px;}
.y10f{bottom:760.451250px;}
.y2a{bottom:762.073650px;}
.y79{bottom:778.153800px;}
.ya3{bottom:778.601100px;}
.y4a{bottom:778.616100px;}
.yd6{bottom:778.865100px;}
.y10e{bottom:778.991250px;}
.y29{bottom:780.073650px;}
.y78{bottom:796.693950px;}
.ya2{bottom:797.141100px;}
.y49{bottom:797.156100px;}
.yd5{bottom:797.405100px;}
.y10d{bottom:797.531400px;}
.y28{bottom:798.073650px;}
.y5{bottom:806.657250px;}
.ya1{bottom:815.681100px;}
.y48{bottom:815.696100px;}
.y10c{bottom:816.071250px;}
.y27{bottom:816.073650px;}
.y4{bottom:833.657250px;}
.y77{bottom:833.773950px;}
.y26{bottom:834.073650px;}
.ya0{bottom:834.220950px;}
.y47{bottom:834.236100px;}
.yd4{bottom:834.485100px;}
.y10b{bottom:834.611250px;}
.y3{bottom:860.657250px;}
.y46{bottom:893.470500px;}
.y45{bottom:905.470500px;}
.y25{bottom:906.525150px;}
.h19{height:24.554320px;}
.he{height:26.133188px;}
.h2{height:36.852539px;}
.ha{height:37.098633px;}
.h16{height:37.494141px;}
.hd{height:41.132812px;}
.hc{height:41.220703px;}
.h1a{height:41.660156px;}
.h1c{height:41.853809px;}
.hf{height:42.117188px;}
.h10{height:42.234375px;}
.h1b{height:42.306445px;}
.h14{height:42.366797px;}
.h13{height:42.457324px;}
.h12{height:42.608203px;}
.h17{height:45.181641px;}
.h7{height:45.342773px;}
.hb{height:45.503906px;}
.h11{height:47.381836px;}
.h15{height:47.513672px;}
.h18{height:54.225879px;}
.h1d{height:54.376758px;}
.h9{height:57.585938px;}
.h6{height:57.708984px;}
.h5{height:61.615738px;}
.h8{height:61.616338px;}
.h3{height:74.197266px;}
.h4{height:79.221606px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.xb{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.x3{left:106.662900px;}
.xe{left:112.063050px;}
.x8{left:115.538700px;}
.xf{left:133.663050px;}
.xd{left:207.285900px;}
.xa{left:229.807500px;}
.x9{left:390.291300px;}
.xc{left:547.972350px;}
@media print{
.v7{vertical-align:-18.292800pt;}
.v3{vertical-align:-14.208000pt;}
.v5{vertical-align:-6.416000pt;}
.v4{vertical-align:-3.552000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.292800pt;}
.v2{vertical-align:24.863467pt;}
.v1{vertical-align:31.968533pt;}
.ls5{letter-spacing:-1.866667pt;}
.ls10{letter-spacing:-1.098667pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.549333pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.009067pt;}
.ls0{letter-spacing:0.146667pt;}
.ls18{letter-spacing:0.153067pt;}
.lsa{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.549333pt;}
.lse{letter-spacing:0.640267pt;}
.ls12{letter-spacing:0.640800pt;}
.lsd{letter-spacing:1.098667pt;}
.ls11{letter-spacing:1.099200pt;}
.ls1{letter-spacing:1.560000pt;}
.ls17{letter-spacing:1.648000pt;}
.lsf{letter-spacing:1.760000pt;}
.ls14{letter-spacing:1.955067pt;}
.ls8{letter-spacing:2.464000pt;}
.ls15{letter-spacing:3.869867pt;}
.ls2{letter-spacing:5.251200pt;}
.ls3{letter-spacing:6.324267pt;}
.ls16{letter-spacing:21.116267pt;}
.ws0{word-spacing:-14.813333pt;}
.ws4b{word-spacing:-14.282667pt;}
.ws2e{word-spacing:-13.733333pt;}
.ws35{word-spacing:-10.666667pt;}
.ws42{word-spacing:-8.006533pt;}
.ws1{word-spacing:-6.218667pt;}
.ws3f{word-spacing:-4.998933pt;}
.ws17{word-spacing:-4.120000pt;}
.ws44{word-spacing:-3.131200pt;}
.wsf{word-spacing:-3.114667pt;}
.ws4e{word-spacing:-3.076267pt;}
.ws38{word-spacing:-2.746667pt;}
.ws6f{word-spacing:-2.691733pt;}
.ws39{word-spacing:-2.526933pt;}
.ws70{word-spacing:-2.472000pt;}
.ws58{word-spacing:-2.087467pt;}
.ws66{word-spacing:-2.032533pt;}
.ws54{word-spacing:-1.648000pt;}
.ws45{word-spacing:-1.373333pt;}
.ws62{word-spacing:-1.263467pt;}
.ws29{word-spacing:-1.153600pt;}
.ws1e{word-spacing:-1.098667pt;}
.ws56{word-spacing:-0.933867pt;}
.ws41{word-spacing:-0.878933pt;}
.ws19{word-spacing:-0.549333pt;}
.ws57{word-spacing:-0.329600pt;}
.ws5{word-spacing:-0.224000pt;}
.ws65{word-spacing:-0.219733pt;}
.ws3{word-spacing:-0.149333pt;}
.ws47{word-spacing:-0.109867pt;}
.ws12{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.164800pt;}
.ws5a{word-spacing:0.329600pt;}
.ws71{word-spacing:0.384533pt;}
.ws43{word-spacing:0.439467pt;}
.ws8{word-spacing:0.533333pt;}
.ws2a{word-spacing:0.549333pt;}
.ws6b{word-spacing:0.824000pt;}
.ws16{word-spacing:0.933867pt;}
.ws4{word-spacing:0.960000pt;}
.wsd{word-spacing:0.981333pt;}
.ws51{word-spacing:1.098667pt;}
.ws15{word-spacing:1.173333pt;}
.ws2b{word-spacing:1.373333pt;}
.ws46{word-spacing:1.538133pt;}
.ws7{word-spacing:1.546667pt;}
.ws3a{word-spacing:1.648000pt;}
.ws5e{word-spacing:1.867733pt;}
.ws10{word-spacing:1.920000pt;}
.ws4d{word-spacing:1.922667pt;}
.ws63{word-spacing:1.977600pt;}
.ws13{word-spacing:2.026667pt;}
.ws24{word-spacing:2.087467pt;}
.wsc{word-spacing:2.176000pt;}
.ws31{word-spacing:2.197333pt;}
.ws32{word-spacing:2.252267pt;}
.ws64{word-spacing:2.307200pt;}
.ws9{word-spacing:2.720000pt;}
.ws36{word-spacing:2.746667pt;}
.ws18{word-spacing:2.801600pt;}
.ws2c{word-spacing:2.911467pt;}
.ws3e{word-spacing:3.076267pt;}
.ws52{word-spacing:3.296000pt;}
.ws40{word-spacing:3.515733pt;}
.wsa{word-spacing:3.712000pt;}
.ws69{word-spacing:3.735467pt;}
.ws33{word-spacing:3.790400pt;}
.wse{word-spacing:3.925333pt;}
.ws30{word-spacing:4.120000pt;}
.ws4c{word-spacing:4.174933pt;}
.ws59{word-spacing:4.449600pt;}
.ws37{word-spacing:4.504533pt;}
.wsb{word-spacing:4.736000pt;}
.ws6{word-spacing:4.906667pt;}
.ws26{word-spacing:5.053867pt;}
.ws27{word-spacing:5.108800pt;}
.ws67{word-spacing:5.218667pt;}
.ws2d{word-spacing:5.248000pt;}
.ws25{word-spacing:5.493333pt;}
.ws22{word-spacing:5.822933pt;}
.ws48{word-spacing:5.877867pt;}
.ws6c{word-spacing:5.987733pt;}
.ws6e{word-spacing:6.042667pt;}
.ws6d{word-spacing:6.097600pt;}
.ws5b{word-spacing:6.152533pt;}
.ws20{word-spacing:6.218667pt;}
.ws53{word-spacing:6.427200pt;}
.ws3c{word-spacing:6.482133pt;}
.ws23{word-spacing:6.592000pt;}
.ws5c{word-spacing:6.701867pt;}
.ws1c{word-spacing:6.756800pt;}
.ws34{word-spacing:6.921600pt;}
.ws55{word-spacing:7.141333pt;}
.ws4a{word-spacing:7.416000pt;}
.ws60{word-spacing:7.470933pt;}
.ws14{word-spacing:7.626667pt;}
.ws3d{word-spacing:8.185067pt;}
.ws4f{word-spacing:8.240000pt;}
.ws1a{word-spacing:9.338667pt;}
.ws1f{word-spacing:9.668267pt;}
.ws3b{word-spacing:10.272533pt;}
.ws5f{word-spacing:10.712000pt;}
.ws2f{word-spacing:10.821867pt;}
.ws1d{word-spacing:10.986667pt;}
.ws68{word-spacing:11.151467pt;}
.ws49{word-spacing:11.316267pt;}
.ws6a{word-spacing:11.920533pt;}
.ws28{word-spacing:12.360000pt;}
.ws21{word-spacing:14.172800pt;}
.ws5d{word-spacing:15.985600pt;}
.ws61{word-spacing:16.534933pt;}
.ws50{word-spacing:18.018133pt;}
.ws11{word-spacing:311.852267pt;}
._c{margin-left:-8.196053pt;}
._1b{margin-left:-7.075413pt;}
._b{margin-left:-5.859200pt;}
._2{margin-left:-4.816000pt;}
._8{margin-left:-3.925333pt;}
._4{margin-left:-2.896000pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.979200pt;}
._3{width:2.338133pt;}
._d{width:3.336533pt;}
._6{width:4.680533pt;}
._9{width:5.850187pt;}
._a{width:7.542560pt;}
._f{width:8.558187pt;}
._e{width:9.986880pt;}
._10{width:10.932693pt;}
._5{width:11.989333pt;}
._7{width:14.464000pt;}
._12{width:15.716320pt;}
._13{width:16.738293pt;}
._14{width:17.754453pt;}
._18{width:18.908053pt;}
._16{width:21.116373pt;}
._15{width:22.440267pt;}
._19{width:29.927680pt;}
._11{width:32.026133pt;}
._1a{width:33.489760pt;}
._17{width:41.066667pt;}
.fsa{font-size:18.656000pt;}
.fs8{font-size:24.874667pt;}
.fsc{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:54.933333pt;}
.fs2{font-size:55.968000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y24{bottom:68.000000pt;}
.y76{bottom:68.000133pt;}
.y23{bottom:80.000000pt;}
.y75{bottom:80.000133pt;}
.yfe{bottom:81.223200pt;}
.y9f{bottom:81.932267pt;}
.yc6{bottom:82.329867pt;}
.y6f{bottom:82.343200pt;}
.yfb{bottom:82.564533pt;}
.yd3{bottom:83.552000pt;}
.y22{bottom:92.000000pt;}
.y9d{bottom:95.552000pt;}
.y74{bottom:95.552133pt;}
.yfd{bottom:97.703200pt;}
.y9e{bottom:98.412267pt;}
.yc5{bottom:98.809867pt;}
.y6e{bottom:98.823200pt;}
.yfa{bottom:99.044533pt;}
.y21{bottom:104.000000pt;}
.y73{bottom:104.000267pt;}
.y44{bottom:107.552000pt;}
.yfc{bottom:114.183200pt;}
.y9c{bottom:114.892400pt;}
.yc4{bottom:115.289867pt;}
.y6d{bottom:115.303200pt;}
.yf9{bottom:115.524533pt;}
.y20{bottom:116.000000pt;}
.y72{bottom:116.000267pt;}
.y1f{bottom:128.000000pt;}
.y71{bottom:128.000267pt;}
.yd2{bottom:130.663200pt;}
.y9b{bottom:131.372267pt;}
.y70{bottom:131.552267pt;}
.y10a{bottom:131.769867pt;}
.y6c{bottom:131.783200pt;}
.yf8{bottom:132.004533pt;}
.y43{bottom:133.292133pt;}
.y1e{bottom:143.552000pt;}
.yd1{bottom:147.143200pt;}
.y9a{bottom:147.852400pt;}
.yc3{bottom:148.249867pt;}
.y6b{bottom:148.263200pt;}
.yf7{bottom:148.484533pt;}
.y42{bottom:149.772133pt;}
.y1d{bottom:152.000000pt;}
.yd0{bottom:163.623200pt;}
.y1c{bottom:164.000000pt;}
.y99{bottom:164.332267pt;}
.y109{bottom:164.729867pt;}
.y6a{bottom:164.743200pt;}
.yf6{bottom:164.964533pt;}
.y41{bottom:166.252133pt;}
.y1b{bottom:176.000000pt;}
.ycf{bottom:180.103200pt;}
.y98{bottom:180.812400pt;}
.yc2{bottom:181.209867pt;}
.y69{bottom:181.223200pt;}
.yf5{bottom:181.444533pt;}
.y40{bottom:182.732133pt;}
.y1a{bottom:188.000000pt;}
.yce{bottom:196.583200pt;}
.y97{bottom:197.292267pt;}
.yc1{bottom:197.689867pt;}
.y68{bottom:197.703200pt;}
.yf4{bottom:197.924667pt;}
.y3f{bottom:199.212133pt;}
.y19{bottom:200.000000pt;}
.ycd{bottom:213.063200pt;}
.y96{bottom:213.772400pt;}
.yc0{bottom:214.169867pt;}
.y67{bottom:214.183200pt;}
.yf3{bottom:214.404533pt;}
.y18{bottom:215.552000pt;}
.y3e{bottom:215.692133pt;}
.y17{bottom:224.000000pt;}
.ycc{bottom:229.543200pt;}
.y95{bottom:230.252267pt;}
.ybf{bottom:230.649867pt;}
.y66{bottom:230.663200pt;}
.yf2{bottom:230.884667pt;}
.y3d{bottom:232.172133pt;}
.y16{bottom:239.552000pt;}
.ycb{bottom:246.023200pt;}
.y94{bottom:246.732400pt;}
.ybe{bottom:247.129867pt;}
.y65{bottom:247.143200pt;}
.yf1{bottom:247.364533pt;}
.y3c{bottom:248.652133pt;}
.yca{bottom:262.503200pt;}
.y93{bottom:263.212267pt;}
.ybd{bottom:263.609867pt;}
.y64{bottom:263.623200pt;}
.yf0{bottom:263.844533pt;}
.y3b{bottom:265.132133pt;}
.y15{bottom:274.536400pt;}
.yc9{bottom:278.983200pt;}
.y92{bottom:279.692400pt;}
.ybc{bottom:280.089867pt;}
.y63{bottom:280.103200pt;}
.yef{bottom:280.324533pt;}
.y14{bottom:290.536400pt;}
.y91{bottom:296.172267pt;}
.ybb{bottom:296.569867pt;}
.y62{bottom:296.583200pt;}
.yee{bottom:296.804533pt;}
.y3a{bottom:298.092133pt;}
.y13{bottom:306.536400pt;}
.yc8{bottom:311.943200pt;}
.y90{bottom:312.652400pt;}
.yba{bottom:313.049867pt;}
.y61{bottom:313.063200pt;}
.yed{bottom:313.284533pt;}
.y12{bottom:322.536400pt;}
.y8f{bottom:329.132267pt;}
.yb9{bottom:329.529867pt;}
.y60{bottom:329.543200pt;}
.yec{bottom:329.764533pt;}
.yc7{bottom:344.903200pt;}
.y11{bottom:345.203067pt;}
.y8e{bottom:345.612267pt;}
.yb8{bottom:346.009867pt;}
.y5f{bottom:346.023200pt;}
.yeb{bottom:346.244533pt;}
.y39{bottom:348.172133pt;}
.y8d{bottom:362.092267pt;}
.yb7{bottom:362.489867pt;}
.y5e{bottom:362.503200pt;}
.y38{bottom:362.572133pt;}
.yea{bottom:362.724533pt;}
.y37{bottom:376.972133pt;}
.y8c{bottom:378.572267pt;}
.yb6{bottom:378.969867pt;}
.y5d{bottom:378.983200pt;}
.ye9{bottom:379.204533pt;}
.y8b{bottom:395.052267pt;}
.yb5{bottom:395.449867pt;}
.y5c{bottom:395.463200pt;}
.ye8{bottom:395.684533pt;}
.y10{bottom:397.469733pt;}
.y8a{bottom:411.532267pt;}
.yb4{bottom:411.929867pt;}
.y5b{bottom:411.943200pt;}
.ye7{bottom:412.164533pt;}
.yf{bottom:416.669733pt;}
.y36{bottom:423.372133pt;}
.y89{bottom:428.012267pt;}
.yb3{bottom:428.409867pt;}
.y5a{bottom:428.423200pt;}
.ye6{bottom:428.644667pt;}
.y88{bottom:444.492400pt;}
.yb2{bottom:444.889867pt;}
.y59{bottom:444.903200pt;}
.ye5{bottom:445.124533pt;}
.ye{bottom:448.402933pt;}
.y35{bottom:456.332133pt;}
.y87{bottom:460.972267pt;}
.yb1{bottom:461.369867pt;}
.y58{bottom:461.383200pt;}
.ye4{bottom:461.604533pt;}
.yd{bottom:471.115867pt;}
.y34{bottom:472.812133pt;}
.y86{bottom:477.452267pt;}
.yb0{bottom:477.849867pt;}
.y57{bottom:477.863200pt;}
.ye3{bottom:478.084533pt;}
.y33{bottom:489.292133pt;}
.y85{bottom:493.932267pt;}
.yaf{bottom:494.329867pt;}
.y56{bottom:494.343200pt;}
.ye2{bottom:494.564533pt;}
.yc{bottom:494.849200pt;}
.y32{bottom:505.772133pt;}
.y84{bottom:510.412400pt;}
.yae{bottom:510.809867pt;}
.y55{bottom:510.823200pt;}
.ye1{bottom:511.044533pt;}
.y119{bottom:511.156800pt;}
.y108{bottom:511.303200pt;}
.y31{bottom:522.252133pt;}
.y83{bottom:526.892400pt;}
.yad{bottom:527.289867pt;}
.y54{bottom:527.303200pt;}
.ye0{bottom:527.524533pt;}
.y118{bottom:527.636667pt;}
.y107{bottom:527.783200pt;}
.yb{bottom:536.182533pt;}
.y30{bottom:538.732133pt;}
.y82{bottom:543.372267pt;}
.yac{bottom:543.769867pt;}
.y53{bottom:543.783200pt;}
.ydf{bottom:544.004533pt;}
.y117{bottom:544.116667pt;}
.y106{bottom:544.263200pt;}
.y2f{bottom:555.212133pt;}
.ya{bottom:558.895333pt;}
.y81{bottom:559.852267pt;}
.yab{bottom:560.249867pt;}
.y52{bottom:560.263200pt;}
.yde{bottom:560.484533pt;}
.y116{bottom:560.596667pt;}
.y105{bottom:560.743200pt;}
.y2e{bottom:571.692133pt;}
.y80{bottom:576.332267pt;}
.yaa{bottom:576.729867pt;}
.y51{bottom:576.743200pt;}
.ydd{bottom:576.964533pt;}
.y115{bottom:577.076667pt;}
.y104{bottom:577.223200pt;}
.y9{bottom:582.628800pt;}
.y2d{bottom:588.172267pt;}
.y7f{bottom:592.812400pt;}
.ya9{bottom:593.209867pt;}
.y50{bottom:593.223200pt;}
.ydc{bottom:593.444533pt;}
.y114{bottom:593.556667pt;}
.y103{bottom:593.703200pt;}
.y7e{bottom:609.292267pt;}
.ya8{bottom:609.689867pt;}
.y4f{bottom:609.703200pt;}
.ydb{bottom:609.924533pt;}
.y113{bottom:610.036667pt;}
.y102{bottom:610.183200pt;}
.y2c{bottom:611.318800pt;}
.y8{bottom:621.028667pt;}
.y7d{bottom:625.772400pt;}
.ya7{bottom:626.169867pt;}
.y4e{bottom:626.183200pt;}
.yda{bottom:626.404533pt;}
.y112{bottom:626.516667pt;}
.y101{bottom:626.663200pt;}
.y7c{bottom:642.252267pt;}
.ya6{bottom:642.649867pt;}
.y4d{bottom:642.663200pt;}
.yd9{bottom:642.884667pt;}
.y111{bottom:642.996667pt;}
.y100{bottom:643.143200pt;}
.y2b{bottom:644.918800pt;}
.y7{bottom:645.028667pt;}
.y7b{bottom:658.732400pt;}
.ya5{bottom:659.129867pt;}
.y4c{bottom:659.143200pt;}
.yd8{bottom:659.364533pt;}
.y110{bottom:659.476667pt;}
.yff{bottom:659.623200pt;}
.y6{bottom:669.028667pt;}
.y7a{bottom:675.212267pt;}
.ya4{bottom:675.609867pt;}
.y4b{bottom:675.623200pt;}
.yd7{bottom:675.844533pt;}
.y10f{bottom:675.956667pt;}
.y2a{bottom:677.398800pt;}
.y79{bottom:691.692267pt;}
.ya3{bottom:692.089867pt;}
.y4a{bottom:692.103200pt;}
.yd6{bottom:692.324533pt;}
.y10e{bottom:692.436667pt;}
.y29{bottom:693.398800pt;}
.y78{bottom:708.172400pt;}
.ya2{bottom:708.569867pt;}
.y49{bottom:708.583200pt;}
.yd5{bottom:708.804533pt;}
.y10d{bottom:708.916800pt;}
.y28{bottom:709.398800pt;}
.y5{bottom:717.028667pt;}
.ya1{bottom:725.049867pt;}
.y48{bottom:725.063200pt;}
.y10c{bottom:725.396667pt;}
.y27{bottom:725.398800pt;}
.y4{bottom:741.028667pt;}
.y77{bottom:741.132400pt;}
.y26{bottom:741.398800pt;}
.ya0{bottom:741.529733pt;}
.y47{bottom:741.543200pt;}
.yd4{bottom:741.764533pt;}
.y10b{bottom:741.876667pt;}
.y3{bottom:765.028667pt;}
.y46{bottom:794.196000pt;}
.y45{bottom:804.862667pt;}
.y25{bottom:805.800133pt;}
.h19{height:21.826062pt;}
.he{height:23.229500pt;}
.h2{height:32.757812pt;}
.ha{height:32.976562pt;}
.h16{height:33.328125pt;}
.hd{height:36.562500pt;}
.hc{height:36.640625pt;}
.h1a{height:37.031250pt;}
.h1c{height:37.203385pt;}
.hf{height:37.437500pt;}
.h10{height:37.541667pt;}
.h1b{height:37.605729pt;}
.h14{height:37.659375pt;}
.h13{height:37.739844pt;}
.h12{height:37.873958pt;}
.h17{height:40.161458pt;}
.h7{height:40.304688pt;}
.hb{height:40.447917pt;}
.h11{height:42.117188pt;}
.h15{height:42.234375pt;}
.h18{height:48.200781pt;}
.h1d{height:48.334896pt;}
.h9{height:51.187500pt;}
.h6{height:51.296875pt;}
.h5{height:54.769545pt;}
.h8{height:54.770078pt;}
.h3{height:65.953125pt;}
.h4{height:70.419205pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.xb{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.x3{left:94.811467pt;}
.xe{left:99.611600pt;}
.x8{left:102.701067pt;}
.xf{left:118.811600pt;}
.xd{left:184.254133pt;}
.xa{left:204.273333pt;}
.x9{left:346.925600pt;}
.xc{left:487.086533pt;}
}




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