
    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_90082fa6558e1e1b014a6d4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_5f8f092536d49f6681c928da.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7499384b1fb7e2f008b9e5b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_6e063da3ddfd480e87046072.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_8584435a1f523551106f0cf6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_0f96793afb8ddf06c5c38411.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_94f6bf03050d0a702e735a5a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.m4{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,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(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.875400px;}
.ls3d{letter-spacing:-0.543371px;}
.ls3c{letter-spacing:-0.501574px;}
.ls3b{letter-spacing:-0.459776px;}
.ls49{letter-spacing:-0.300600px;}
.ls39{letter-spacing:-0.292585px;}
.ls6{letter-spacing:-0.192240px;}
.ls3{letter-spacing:-0.191880px;}
.ls44{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.167760px;}
.lsa{letter-spacing:-0.162000px;}
.lsb{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.126000px;}
.ls4b{letter-spacing:-0.120240px;}
.ls5{letter-spacing:-0.119880px;}
.ls1b{letter-spacing:-0.108000px;}
.ls31{letter-spacing:-0.103086px;}
.ls1d{letter-spacing:-0.101880px;}
.ls7{letter-spacing:-0.096120px;}
.ls14{letter-spacing:-0.083880px;}
.ls4a{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.068724px;}
.ls4c{letter-spacing:-0.060120px;}
.ls2e{letter-spacing:-0.034362px;}
.lse{letter-spacing:-0.029880px;}
.ls4{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.034362px;}
.ls48{letter-spacing:0.060120px;}
.ls41{letter-spacing:0.065880px;}
.ls2f{letter-spacing:0.068724px;}
.ls1c{letter-spacing:0.083880px;}
.ls2c{letter-spacing:0.087880px;}
.ls2a{letter-spacing:0.088479px;}
.ls2b{letter-spacing:0.088791px;}
.ls40{letter-spacing:0.090000px;}
.ls36{letter-spacing:0.100656px;}
.ls9{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.119880px;}
.ls45{letter-spacing:0.120240px;}
.ls11{letter-spacing:0.125820px;}
.ls46{letter-spacing:0.126252px;}
.ls38{letter-spacing:0.167191px;}
.ls13{letter-spacing:0.167760px;}
.lsc{letter-spacing:0.168120px;}
.ls47{letter-spacing:0.178200px;}
.ls43{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.191520px;}
.ls0{letter-spacing:0.191880px;}
.ls22{letter-spacing:0.192240px;}
.ls1e{letter-spacing:0.203760px;}
.lsd{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.273600px;}
.ls3a{letter-spacing:0.292585px;}
.ls3e{letter-spacing:0.334382px;}
.ls19{letter-spacing:0.383040px;}
.ls29{letter-spacing:5.763022px;}
.ls1a{letter-spacing:13.597920px;}
.ls34{letter-spacing:22.144320px;}
.ls33{letter-spacing:22.815360px;}
.ls35{letter-spacing:23.150880px;}
.ls12{letter-spacing:23.234760px;}
.ls28{letter-spacing:23.238866px;}
.ls25{letter-spacing:23.570280px;}
.ls18{letter-spacing:27.394200px;}
.ls26{letter-spacing:29.916000px;}
.ls16{letter-spacing:51.921720px;}
.ls1{letter-spacing:53.150760px;}
.ls27{letter-spacing:60.225840px;}
.ls20{letter-spacing:64.242000px;}
.ls1f{letter-spacing:64.254960px;}
.ls17{letter-spacing:84.299400px;}
.ls8{letter-spacing:85.536000px;}
.ls10{letter-spacing:96.545880px;}
.ls24{letter-spacing:96.582960px;}
.ls2d{letter-spacing:96.657840px;}
.ls42{letter-spacing:101.323440px;}
.ls3f{letter-spacing:103.140000px;}
.lsf{letter-spacing:115.452000px;}
.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;}
}
.ws12{word-spacing:-60.264000px;}
.ws2f{word-spacing:-60.048000px;}
.ws1{word-spacing:-53.342640px;}
.ws0{word-spacing:-53.150760px;}
.ws15{word-spacing:-40.032000px;}
.wsf{word-spacing:-39.888000px;}
.ws56{word-spacing:-33.206760px;}
.wse{word-spacing:-30.132000px;}
.ws23{word-spacing:-30.024000px;}
.ws28{word-spacing:-28.322640px;}
.ws2a{word-spacing:-28.220760px;}
.ws2{word-spacing:-26.973000px;}
.ws30{word-spacing:-26.913600px;}
.ws52{word-spacing:-26.721360px;}
.ws1b{word-spacing:-26.529120px;}
.ws54{word-spacing:-25.110000px;}
.ws4f{word-spacing:-25.020000px;}
.ws53{word-spacing:-24.840000px;}
.ws17{word-spacing:-23.486400px;}
.ws24{word-spacing:-23.318640px;}
.ws16{word-spacing:-23.234760px;}
.ws18{word-spacing:-23.150880px;}
.ws55{word-spacing:-18.380520px;}
.ws5b{word-spacing:-16.713360px;}
.ws5c{word-spacing:-16.653240px;}
.ws5a{word-spacing:-16.593120px;}
.ws59{word-spacing:-16.412760px;}
.wsc{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.012000px;}
.ws1f{word-spacing:-13.693680px;}
.ws2d{word-spacing:-13.502160px;}
.ws20{word-spacing:-13.310640px;}
.ws44{word-spacing:-9.613494px;}
.ws48{word-spacing:-8.986527px;}
.ws47{word-spacing:-8.944729px;}
.ws35{word-spacing:-7.834536px;}
.ws37{word-spacing:-7.800174px;}
.ws36{word-spacing:-7.765812px;}
.ws38{word-spacing:-7.697088px;}
.ws1e{word-spacing:-1.526616px;}
.ws3d{word-spacing:-1.509840px;}
.ws3e{word-spacing:-1.258200px;}
.ws41{word-spacing:-1.174320px;}
.ws34{word-spacing:-0.969624px;}
.ws8{word-spacing:-0.959400px;}
.ws3f{word-spacing:-0.922680px;}
.ws4{word-spacing:-0.768960px;}
.ws4d{word-spacing:-0.752360px;}
.ws49{word-spacing:-0.710563px;}
.ws42{word-spacing:-0.645876px;}
.ws4e{word-spacing:-0.585169px;}
.ws50{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.203760px;}
.ws5{word-spacing:-0.191880px;}
.ws13{word-spacing:-0.168120px;}
.ws19{word-spacing:-0.167760px;}
.ws5f{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.119880px;}
.ws11{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.083880px;}
.ws3c{word-spacing:-0.068724px;}
.ws58{word-spacing:-0.065880px;}
.ws5d{word-spacing:-0.060120px;}
.ws3b{word-spacing:-0.034362px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:0.029880px;}
.ws3{word-spacing:0.035964px;}
.ws4a{word-spacing:0.041798px;}
.ws4b{word-spacing:0.083596px;}
.ws40{word-spacing:0.083880px;}
.ws1c{word-spacing:0.096120px;}
.ws2b{word-spacing:0.101880px;}
.ws3a{word-spacing:0.103086px;}
.ws43{word-spacing:0.119880px;}
.ws4c{word-spacing:0.125393px;}
.ws33{word-spacing:0.126000px;}
.ws39{word-spacing:0.137448px;}
.ws2e{word-spacing:0.144000px;}
.ws10{word-spacing:0.162000px;}
.ws27{word-spacing:0.167760px;}
.ws57{word-spacing:0.180000px;}
.ws7{word-spacing:0.191880px;}
.wsb{word-spacing:0.192240px;}
.wsa{word-spacing:0.239760px;}
.ws32{word-spacing:0.288360px;}
.ws5e{word-spacing:0.300600px;}
.ws31{word-spacing:0.672840px;}
.ws51{word-spacing:0.720000px;}
.ws25{word-spacing:1.584000px;}
.ws29{word-spacing:1.772712px;}
.ws1a{word-spacing:41.580000px;}
.ws46{word-spacing:241.190025px;}
.ws21{word-spacing:676.112400px;}
.ws45{word-spacing:680.455645px;}
.ws22{word-spacing:929.599200px;}
._1{margin-left:-1.535040px;}
._0{width:1.535040px;}
._4{width:2.594448px;}
._5{width:14.887800px;}
._3{width:21.624480px;}
._2{width:144.743040px;}
._6{width:817.169947px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(20,200,255);}
.fc4{color:rgb(0,40,100);}
.fca{color:rgb(0,176,240);}
.fc2{color:rgb(47,85,151);}
.fc9{color:rgb(237,125,49);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc5{color:transparent;}
.fc0{color:rgb(246,130,18);}
.fs8{font-size:29.880000px;}
.fse{font-size:32.791200px;}
.fsd{font-size:34.362000px;}
.fsf{font-size:41.797800px;}
.fsa{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs12{font-size:60.120000px;}
.fsc{font-size:63.000000px;}
.fs11{font-size:65.880000px;}
.fs13{font-size:72.000000px;}
.fs9{font-size:83.880000px;}
.fs10{font-size:90.000000px;}
.fs2{font-size:96.120000px;}
.fsb{font-size:101.880000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:119.880000px;}
.fs5{font-size:144.000000px;}
.fs7{font-size:168.120000px;}
.fs0{font-size:191.880000px;}
.fs6{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yff{bottom:2.823450px;}
.y112{bottom:2.823600px;}
.yfd{bottom:2.823750px;}
.y101{bottom:2.823900px;}
.y105{bottom:2.824050px;}
.y10b{bottom:2.824200px;}
.yf9{bottom:2.824500px;}
.y109{bottom:2.824650px;}
.y107{bottom:2.825100px;}
.yfb{bottom:3.388500px;}
.y114{bottom:3.389100px;}
.y10d{bottom:3.389700px;}
.y117{bottom:3.391813px;}
.yb9{bottom:8.736900px;}
.y95{bottom:8.785800px;}
.yb2{bottom:8.835150px;}
.yb7{bottom:8.835300px;}
.ya9{bottom:8.835750px;}
.ya0{bottom:8.836350px;}
.y9a{bottom:8.836950px;}
.yf7{bottom:16.662750px;}
.y119{bottom:16.944450px;}
.y116{bottom:16.944750px;}
.y7{bottom:17.410350px;}
.yb1{bottom:19.340100px;}
.yb6{bottom:19.340250px;}
.ya8{bottom:19.340700px;}
.y9f{bottom:19.341300px;}
.y99{bottom:19.342050px;}
.y93{bottom:21.828750px;}
.y28{bottom:28.343220px;}
.y9e{bottom:29.797200px;}
.yb0{bottom:29.845050px;}
.yb5{bottom:29.845200px;}
.ya7{bottom:29.845650px;}
.y98{bottom:29.847000px;}
.yb8{bottom:31.635000px;}
.yf3{bottom:37.131060px;}
.y11f{bottom:37.279050px;}
.y12a{bottom:40.078290px;}
.yb4{bottom:40.301100px;}
.ya6{bottom:40.301550px;}
.y9d{bottom:40.302150px;}
.y72{bottom:40.340850px;}
.yaf{bottom:40.350000px;}
.y97{bottom:40.351950px;}
.y88{bottom:43.340220px;}
.y11e{bottom:44.634353px;}
.y36{bottom:45.033360px;}
.yd8{bottom:47.142720px;}
.y92{bottom:49.495740px;}
.y9c{bottom:50.758050px;}
.yae{bottom:50.805900px;}
.ya5{bottom:50.806500px;}
.yb3{bottom:53.086500px;}
.y71{bottom:54.740850px;}
.yf0{bottom:56.316600px;}
.y45{bottom:56.722200px;}
.y49{bottom:56.722350px;}
.ycc{bottom:56.990400px;}
.y41{bottom:57.870240px;}
.y11d{bottom:58.187290px;}
.y4d{bottom:58.469550px;}
.ya4{bottom:61.262400px;}
.yad{bottom:61.310850px;}
.y129{bottom:62.840730px;}
.y5b{bottom:63.415950px;}
.ye1{bottom:65.480310px;}
.yf2{bottom:65.919000px;}
.y70{bottom:69.140850px;}
.y27{bottom:69.843840px;}
.yef{bottom:70.716780px;}
.y44{bottom:71.122380px;}
.y48{bottom:71.122530px;}
.y11c{bottom:71.740227px;}
.yac{bottom:71.766750px;}
.ya3{bottom:71.767350px;}
.y1d{bottom:72.428700px;}
.y4c{bottom:72.869730px;}
.y35{bottom:73.821300px;}
.y67{bottom:73.893810px;}
.y6{bottom:75.585600px;}
.y87{bottom:75.822750px;}
.yd7{bottom:79.625250px;}
.yab{bottom:82.271700px;}
.ya2{bottom:82.272300px;}
.yc2{bottom:83.255670px;}
.y6f{bottom:83.540850px;}
.yee{bottom:85.116690px;}
.y11b{bottom:85.293163px;}
.y43{bottom:85.522290px;}
.y47{bottom:85.522440px;}
.y128{bottom:85.618740px;}
.y4b{bottom:87.269640px;}
.ycb{bottom:89.577780px;}
.y12f{bottom:90.350850px;}
.y40{bottom:90.352770px;}
.y91{bottom:90.995370px;}
.y5a{bottom:95.815950px;}
.y6e{bottom:97.940850px;}
.ye0{bottom:98.067690px;}
.y7d{bottom:98.501700px;}
.y11a{bottom:98.846100px;}
.yed{bottom:99.516600px;}
.y42{bottom:99.922200px;}
.y46{bottom:99.922350px;}
.y4a{bottom:101.669550px;}
.yf1{bottom:103.719000px;}
.y66{bottom:104.483280px;}
.yf{bottom:107.109900px;}
.y12e{bottom:108.344910px;}
.y127{bottom:108.380280px;}
.yaa{bottom:110.569500px;}
.y26{bottom:111.175710px;}
.y34{bottom:111.633510px;}
.y1c{bottom:111.938700px;}
.yd6{bottom:112.107780px;}
.y86{bottom:115.422750px;}
.yc1{bottom:115.738200px;}
.yca{bottom:122.060310px;}
.y90{bottom:123.477900px;}
.y6d{bottom:125.210850px;}
.y12d{bottom:126.350850px;}
.yf4{bottom:127.260000px;}
.y115{bottom:127.543500px;}
.y59{bottom:128.215800px;}
.ydf{bottom:130.550220px;}
.y126{bottom:131.158290px;}
.y3f{bottom:131.842770px;}
.y65{bottom:135.072750px;}
.y33{bottom:140.421450px;}
.yec{bottom:142.120410px;}
.y25{bottom:143.658240px;}
.yd5{bottom:144.590310px;}
.y5{bottom:146.501100px;}
.y118{bottom:147.138450px;}
.y7c{bottom:148.176210px;}
.ye{bottom:148.500900px;}
.y125{bottom:153.936300px;}
.yc9{bottom:154.542840px;}
.y113{bottom:155.220000px;}
.y6c{bottom:157.610850px;}
.yc0{bottom:159.535920px;}
.ye3{bottom:160.477800px;}
.y58{bottom:160.615800px;}
.y8f{bottom:162.987900px;}
.yde{bottom:163.032120px;}
.y111{bottom:169.059000px;}
.y1b{bottom:169.259070px;}
.yeb{bottom:170.908350px;}
.y85{bottom:172.655370px;}
.y3e{bottom:173.342400px;}
.y7b{bottom:176.964150px;}
.yd4{bottom:177.177690px;}
.y32{bottom:178.245420px;}
.y4{bottom:182.495070px;}
.y110{bottom:182.614500px;}
.y24{bottom:185.157870px;}
.yc8{bottom:187.025370px;}
.y64{bottom:188.863050px;}
.yd{bottom:189.891900px;}
.y57{bottom:193.015800px;}
.y8e{bottom:195.387900px;}
.y10f{bottom:196.170000px;}
.ydd{bottom:204.552720px;}
.y84{bottom:205.242750px;}
.y7a{bottom:205.752090px;}
.y31{bottom:207.033360px;}
.ybf{bottom:207.955650px;}
.yea{bottom:208.720410px;}
.yd3{bottom:209.660220px;}
.y10e{bottom:209.727000px;}
.ya1{bottom:210.022500px;}
.ye2{bottom:210.517800px;}
.y1a{bottom:210.758700px;}
.y12{bottom:211.777800px;}
.y3d{bottom:212.852400px;}
.y6b{bottom:216.489540px;}
.y23{bottom:217.640400px;}
.yc7{bottom:219.513300px;}
.y56{bottom:225.415800px;}
.y124{bottom:225.936300px;}
.y63{bottom:228.373050px;}
.yc{bottom:231.282900px;}
.y79{bottom:234.540030px;}
.y30{bottom:235.821300px;}
.ydc{bottom:237.035250px;}
.y10c{bottom:237.120000px;}
.ye9{bottom:237.508350px;}
.yd2{bottom:242.140680px;}
.y83{bottom:244.752750px;}
.y3c{bottom:247.230330px;}
.ybe{bottom:249.539160px;}
.y19{bottom:250.268700px;}
.y10a{bottom:250.959000px;}
.y8d{bottom:252.708270px;}
.y10{bottom:255.752100px;}
.y55{bottom:257.815950px;}
.y6a{bottom:258.044160px;}
.y22{bottom:259.223910px;}
.yc6{bottom:261.012930px;}
.y3{bottom:261.885600px;}
.y123{bottom:261.936300px;}
.y78{bottom:263.327970px;}
.y108{bottom:264.514500px;}
.ydb{bottom:269.517780px;}
.y11{bottom:269.875950px;}
.yb{bottom:272.700900px;}
.y2f{bottom:273.633510px;}
.ye8{bottom:275.320410px;}
.y106{bottom:278.070000px;}
.y3b{bottom:279.817710px;}
.yd1{bottom:283.640310px;}
.y62{bottom:285.703050px;}
.y54{bottom:290.215800px;}
.ybd{bottom:291.038790px;}
.y104{bottom:291.627000px;}
.y21{bottom:291.706440px;}
.y77{bottom:292.115910px;}
.yc5{bottom:293.600310px;}
.y8c{bottom:294.207900px;}
.y69{bottom:299.543790px;}
.y122{bottom:301.446300px;}
.y82{bottom:302.097690px;}
.yda{bottom:302.105160px;}
.y2e{bottom:302.421450px;}
.ye7{bottom:304.108350px;}
.y103{bottom:305.182500px;}
.y18{bottom:307.579440px;}
.y9b{bottom:309.475500px;}
.ya{bottom:314.091900px;}
.yd0{bottom:316.122840px;}
.y102{bottom:318.739500px;}
.yf5{bottom:318.848250px;}
.y76{bottom:320.927880px;}
.y3a{bottom:321.317340px;}
.y53{bottom:322.615950px;}
.y61{bottom:325.213050px;}
.yc4{bottom:326.082840px;}
.y133{bottom:327.925500px;}
.y100{bottom:332.295000px;}
.ybc{bottom:332.538420px;}
.y20{bottom:333.206070px;}
.y5e{bottom:333.334500px;}
.y8b{bottom:333.717900px;}
.y81{bottom:334.580220px;}
.yd9{bottom:334.587690px;}
.y2d{bottom:340.233510px;}
.y68{bottom:341.043420px;}
.ye6{bottom:341.932470px;}
.y121{bottom:344.466300px;}
.yfe{bottom:347.263500px;}
.ycf{bottom:348.605370px;}
.y17{bottom:349.079070px;}
.y75{bottom:349.715820px;}
.y39{bottom:353.799870px;}
.y132{bottom:354.925500px;}
.y52{bottom:355.015950px;}
.y9{bottom:355.482900px;}
.yc3{bottom:358.565370px;}
.y2{bottom:359.288880px;}
.yfc{bottom:360.819000px;}
.y1f{bottom:365.688600px;}
.y5d{bottom:365.734500px;}
.y80{bottom:367.070220px;}
.y2c{bottom:369.021450px;}
.ye5{bottom:370.720410px;}
.ybb{bottom:374.038050px;}
.y96{bottom:377.413500px;}
.y74{bottom:378.503760px;}
.yce{bottom:381.192750px;}
.y131{bottom:381.925500px;}
.y60{bottom:382.543050px;}
.y120{bottom:382.896300px;}
.y38{bottom:386.282400px;}
.y51{bottom:387.415950px;}
.yfa{bottom:388.213500px;}
.y16{bottom:390.578700px;}
.y8a{bottom:391.047900px;}
.y8{bottom:396.873900px;}
.y5c{bottom:398.134500px;}
.ye4{bottom:399.508350px;}
.y7f{bottom:399.552750px;}
.yf8{bottom:402.051000px;}
.y2b{bottom:406.833360px;}
.y73{bottom:407.291700px;}
.yba{bottom:413.548050px;}
.y130{bottom:415.474350px;}
.y1{bottom:416.900850px;}
.y50{bottom:419.815950px;}
.y5f{bottom:422.053050px;}
.y4e{bottom:423.019650px;}
.ycd{bottom:425.022750px;}
.y37{bottom:425.792400px;}
.yf6{bottom:429.445500px;}
.y1e{bottom:429.509400px;}
.y15{bottom:430.088700px;}
.y89{bottom:430.557900px;}
.y94{bottom:434.947500px;}
.y2a{bottom:435.621300px;}
.y7e{bottom:439.062750px;}
.y12b{bottom:447.889650px;}
.y12c{bottom:458.876850px;}
.y13{bottom:482.845050px;}
.y14{bottom:501.117300px;}
.y29{bottom:501.374400px;}
.y4f{bottom:501.942300px;}
.h26{height:13.273500px;}
.h2a{height:13.275000px;}
.h2b{height:13.555500px;}
.h28{height:13.557000px;}
.h29{height:14.685000px;}
.h14{height:16.984500px;}
.h1c{height:26.002397px;}
.h25{height:27.112500px;}
.h9{height:27.195469px;}
.h15{height:27.247992px;}
.h17{height:27.248592px;}
.h2c{height:27.394500px;}
.h24{height:28.572715px;}
.h27{height:33.144349px;}
.hd{height:34.857949px;}
.h2e{height:40.951500px;}
.he{height:43.578281px;}
.h16{height:48.499500px;}
.h4{height:49.148438px;}
.h36{height:52.417969px;}
.hc{height:53.023837px;}
.h35{height:54.718594px;}
.h13{height:57.339844px;}
.h18{height:58.956000px;}
.h32{height:59.961094px;}
.h34{height:59.993134px;}
.h33{height:60.023374px;}
.h1e{height:61.066934px;}
.h20{height:61.075214px;}
.h12{height:69.977988px;}
.h1f{height:76.322306px;}
.ha{height:76.343906px;}
.h21{height:76.346426px;}
.hb{height:76.382426px;}
.h10{height:76.459466px;}
.h11{height:78.626953px;}
.h30{height:81.618000px;}
.h31{height:81.914062px;}
.h3{height:87.484219px;}
.h19{height:90.421500px;}
.h1a{height:90.471000px;}
.hf{height:92.726719px;}
.h2{height:95.061094px;}
.h5{height:98.296875px;}
.h1d{height:98.425995px;}
.h22{height:109.109531px;}
.h6{height:131.062500px;}
.h1{height:139.693887px;}
.h2f{height:150.810000px;}
.h8{height:153.015469px;}
.h7{height:196.593750px;}
.h2d{height:301.620000px;}
.h23{height:329.298000px;}
.h1b{height:425.205000px;}
.h0{height:607.500000px;}
.w1{width:84.498000px;}
.w5{width:202.755000px;}
.w2{width:282.118500px;}
.w3{width:370.980000px;}
.w4{width:939.226500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x41{left:1.411800px;}
.x32{left:3.681900px;}
.x42{left:12.141600px;}
.x33{left:18.412200px;}
.x19{left:32.002200px;}
.x34{left:33.141750px;}
.x2{left:35.945850px;}
.x1{left:39.681900px;}
.xb{left:42.519750px;}
.x2f{left:46.856850px;}
.x43{left:49.171200px;}
.x23{left:55.877550px;}
.x44{left:59.077590px;}
.x10{left:61.830120px;}
.x38{left:63.849750px;}
.x3c{left:68.046900px;}
.x3d{left:70.393500px;}
.x24{left:79.547550px;}
.x31{left:80.606850px;}
.x28{left:83.981430px;}
.x26{left:85.495320px;}
.x3e{left:87.257100px;}
.x1a{left:91.536450px;}
.x2e{left:95.103900px;}
.xc{left:97.415700px;}
.x45{left:99.871200px;}
.x7{left:101.389800px;}
.x25{left:107.266500px;}
.x9{left:108.376050px;}
.x8{left:109.416300px;}
.x2a{left:114.115050px;}
.x39{left:117.849750px;}
.x2b{left:120.771360px;}
.x13{left:127.132050px;}
.x27{left:129.422160px;}
.x2c{left:132.834420px;}
.x30{left:134.606850px;}
.x3a{left:151.599750px;}
.x29{left:257.045490px;}
.xd{left:272.164050px;}
.x2d{left:274.034700px;}
.x3f{left:283.235400px;}
.x4{left:291.231450px;}
.x1f{left:308.242110px;}
.x1c{left:310.566600px;}
.x3b{left:311.634150px;}
.x20{left:320.875230px;}
.x5{left:345.231450px;}
.x1d{left:364.566600px;}
.x14{left:370.061100px;}
.x11{left:391.089150px;}
.x6{left:399.231450px;}
.x40{left:407.486700px;}
.x21{left:418.564350px;}
.x15{left:424.061100px;}
.x12{left:431.589150px;}
.x35{left:442.261650px;}
.x16{left:457.801830px;}
.x22{left:471.845250px;}
.x17{left:491.265900px;}
.x36{left:496.261650px;}
.x37{left:530.002380px;}
.x1b{left:543.990000px;}
.x1e{left:553.951200px;}
.xe{left:673.504050px;}
.xf{left:707.244780px;}
.x18{left:804.385500px;}
.xa{left:822.956250px;}
.x3{left:844.801200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.444800pt;}
.ls3d{letter-spacing:-0.482997pt;}
.ls3c{letter-spacing:-0.445843pt;}
.ls3b{letter-spacing:-0.408690pt;}
.ls49{letter-spacing:-0.267200pt;}
.ls39{letter-spacing:-0.260075pt;}
.ls6{letter-spacing:-0.170880pt;}
.ls3{letter-spacing:-0.170560pt;}
.ls44{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.149120pt;}
.lsa{letter-spacing:-0.144000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.112000pt;}
.ls4b{letter-spacing:-0.106880pt;}
.ls5{letter-spacing:-0.106560pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls31{letter-spacing:-0.091632pt;}
.ls1d{letter-spacing:-0.090560pt;}
.ls7{letter-spacing:-0.085440pt;}
.ls14{letter-spacing:-0.074560pt;}
.ls4a{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.061088pt;}
.ls4c{letter-spacing:-0.053440pt;}
.ls2e{letter-spacing:-0.030544pt;}
.lse{letter-spacing:-0.026560pt;}
.ls4{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.030544pt;}
.ls48{letter-spacing:0.053440pt;}
.ls41{letter-spacing:0.058560pt;}
.ls2f{letter-spacing:0.061088pt;}
.ls1c{letter-spacing:0.074560pt;}
.ls2c{letter-spacing:0.078115pt;}
.ls2a{letter-spacing:0.078648pt;}
.ls2b{letter-spacing:0.078926pt;}
.ls40{letter-spacing:0.080000pt;}
.ls36{letter-spacing:0.089472pt;}
.ls9{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.106560pt;}
.ls45{letter-spacing:0.106880pt;}
.ls11{letter-spacing:0.111840pt;}
.ls46{letter-spacing:0.112224pt;}
.ls38{letter-spacing:0.148614pt;}
.ls13{letter-spacing:0.149120pt;}
.lsc{letter-spacing:0.149440pt;}
.ls47{letter-spacing:0.158400pt;}
.ls43{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.170240pt;}
.ls0{letter-spacing:0.170560pt;}
.ls22{letter-spacing:0.170880pt;}
.ls1e{letter-spacing:0.181120pt;}
.lsd{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.243200pt;}
.ls3a{letter-spacing:0.260075pt;}
.ls3e{letter-spacing:0.297229pt;}
.ls19{letter-spacing:0.340480pt;}
.ls29{letter-spacing:5.122686pt;}
.ls1a{letter-spacing:12.087040pt;}
.ls34{letter-spacing:19.683840pt;}
.ls33{letter-spacing:20.280320pt;}
.ls35{letter-spacing:20.578560pt;}
.ls12{letter-spacing:20.653120pt;}
.ls28{letter-spacing:20.656769pt;}
.ls25{letter-spacing:20.951360pt;}
.ls18{letter-spacing:24.350400pt;}
.ls26{letter-spacing:26.592000pt;}
.ls16{letter-spacing:46.152640pt;}
.ls1{letter-spacing:47.245120pt;}
.ls27{letter-spacing:53.534080pt;}
.ls20{letter-spacing:57.104000pt;}
.ls1f{letter-spacing:57.115520pt;}
.ls17{letter-spacing:74.932800pt;}
.ls8{letter-spacing:76.032000pt;}
.ls10{letter-spacing:85.818560pt;}
.ls24{letter-spacing:85.851520pt;}
.ls2d{letter-spacing:85.918080pt;}
.ls42{letter-spacing:90.065280pt;}
.ls3f{letter-spacing:91.680000pt;}
.lsf{letter-spacing:102.624000pt;}
.ws12{word-spacing:-53.568000pt;}
.ws2f{word-spacing:-53.376000pt;}
.ws1{word-spacing:-47.415680pt;}
.ws0{word-spacing:-47.245120pt;}
.ws15{word-spacing:-35.584000pt;}
.wsf{word-spacing:-35.456000pt;}
.ws56{word-spacing:-29.517120pt;}
.wse{word-spacing:-26.784000pt;}
.ws23{word-spacing:-26.688000pt;}
.ws28{word-spacing:-25.175680pt;}
.ws2a{word-spacing:-25.085120pt;}
.ws2{word-spacing:-23.976000pt;}
.ws30{word-spacing:-23.923200pt;}
.ws52{word-spacing:-23.752320pt;}
.ws1b{word-spacing:-23.581440pt;}
.ws54{word-spacing:-22.320000pt;}
.ws4f{word-spacing:-22.240000pt;}
.ws53{word-spacing:-22.080000pt;}
.ws17{word-spacing:-20.876800pt;}
.ws24{word-spacing:-20.727680pt;}
.ws16{word-spacing:-20.653120pt;}
.ws18{word-spacing:-20.578560pt;}
.ws55{word-spacing:-16.338240pt;}
.ws5b{word-spacing:-14.856320pt;}
.ws5c{word-spacing:-14.802880pt;}
.ws5a{word-spacing:-14.749440pt;}
.ws59{word-spacing:-14.589120pt;}
.wsc{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.344000pt;}
.ws1f{word-spacing:-12.172160pt;}
.ws2d{word-spacing:-12.001920pt;}
.ws20{word-spacing:-11.831680pt;}
.ws44{word-spacing:-8.545328pt;}
.ws48{word-spacing:-7.988024pt;}
.ws47{word-spacing:-7.950870pt;}
.ws35{word-spacing:-6.964032pt;}
.ws37{word-spacing:-6.933488pt;}
.ws36{word-spacing:-6.902944pt;}
.ws38{word-spacing:-6.841856pt;}
.ws1e{word-spacing:-1.356992pt;}
.ws3d{word-spacing:-1.342080pt;}
.ws3e{word-spacing:-1.118400pt;}
.ws41{word-spacing:-1.043840pt;}
.ws34{word-spacing:-0.861888pt;}
.ws8{word-spacing:-0.852800pt;}
.ws3f{word-spacing:-0.820160pt;}
.ws4{word-spacing:-0.683520pt;}
.ws4d{word-spacing:-0.668765pt;}
.ws49{word-spacing:-0.631611pt;}
.ws42{word-spacing:-0.574112pt;}
.ws4e{word-spacing:-0.520150pt;}
.ws50{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.181120pt;}
.ws5{word-spacing:-0.170560pt;}
.ws13{word-spacing:-0.149440pt;}
.ws19{word-spacing:-0.149120pt;}
.ws5f{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.106560pt;}
.ws11{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.074560pt;}
.ws3c{word-spacing:-0.061088pt;}
.ws58{word-spacing:-0.058560pt;}
.ws5d{word-spacing:-0.053440pt;}
.ws3b{word-spacing:-0.030544pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:0.026560pt;}
.ws3{word-spacing:0.031968pt;}
.ws4a{word-spacing:0.037154pt;}
.ws4b{word-spacing:0.074307pt;}
.ws40{word-spacing:0.074560pt;}
.ws1c{word-spacing:0.085440pt;}
.ws2b{word-spacing:0.090560pt;}
.ws3a{word-spacing:0.091632pt;}
.ws43{word-spacing:0.106560pt;}
.ws4c{word-spacing:0.111461pt;}
.ws33{word-spacing:0.112000pt;}
.ws39{word-spacing:0.122176pt;}
.ws2e{word-spacing:0.128000pt;}
.ws10{word-spacing:0.144000pt;}
.ws27{word-spacing:0.149120pt;}
.ws57{word-spacing:0.160000pt;}
.ws7{word-spacing:0.170560pt;}
.wsb{word-spacing:0.170880pt;}
.wsa{word-spacing:0.213120pt;}
.ws32{word-spacing:0.256320pt;}
.ws5e{word-spacing:0.267200pt;}
.ws31{word-spacing:0.598080pt;}
.ws51{word-spacing:0.640000pt;}
.ws25{word-spacing:1.408000pt;}
.ws29{word-spacing:1.575744pt;}
.ws1a{word-spacing:36.960000pt;}
.ws46{word-spacing:214.391133pt;}
.ws21{word-spacing:600.988800pt;}
.ws45{word-spacing:604.849462pt;}
.ws22{word-spacing:826.310400pt;}
._1{margin-left:-1.364480pt;}
._0{width:1.364480pt;}
._4{width:2.306176pt;}
._5{width:13.233600pt;}
._3{width:19.221760pt;}
._2{width:128.660480pt;}
._6{width:726.373286pt;}
.fs8{font-size:26.560000pt;}
.fse{font-size:29.147733pt;}
.fsd{font-size:30.544000pt;}
.fsf{font-size:37.153600pt;}
.fsa{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs12{font-size:53.440000pt;}
.fsc{font-size:56.000000pt;}
.fs11{font-size:58.560000pt;}
.fs13{font-size:64.000000pt;}
.fs9{font-size:74.560000pt;}
.fs10{font-size:80.000000pt;}
.fs2{font-size:85.440000pt;}
.fsb{font-size:90.560000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:106.560000pt;}
.fs5{font-size:128.000000pt;}
.fs7{font-size:149.440000pt;}
.fs0{font-size:170.560000pt;}
.fs6{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:2.509733pt;}
.y112{bottom:2.509867pt;}
.yfd{bottom:2.510000pt;}
.y101{bottom:2.510133pt;}
.y105{bottom:2.510267pt;}
.y10b{bottom:2.510400pt;}
.yf9{bottom:2.510667pt;}
.y109{bottom:2.510800pt;}
.y107{bottom:2.511200pt;}
.yfb{bottom:3.012000pt;}
.y114{bottom:3.012533pt;}
.y10d{bottom:3.013067pt;}
.y117{bottom:3.014945pt;}
.yb9{bottom:7.766133pt;}
.y95{bottom:7.809600pt;}
.yb2{bottom:7.853467pt;}
.yb7{bottom:7.853600pt;}
.ya9{bottom:7.854000pt;}
.ya0{bottom:7.854533pt;}
.y9a{bottom:7.855067pt;}
.yf7{bottom:14.811333pt;}
.y119{bottom:15.061733pt;}
.y116{bottom:15.062000pt;}
.y7{bottom:15.475867pt;}
.yb1{bottom:17.191200pt;}
.yb6{bottom:17.191333pt;}
.ya8{bottom:17.191733pt;}
.y9f{bottom:17.192267pt;}
.y99{bottom:17.192933pt;}
.y93{bottom:19.403333pt;}
.y28{bottom:25.193973pt;}
.y9e{bottom:26.486400pt;}
.yb0{bottom:26.528933pt;}
.yb5{bottom:26.529067pt;}
.ya7{bottom:26.529467pt;}
.y98{bottom:26.530667pt;}
.yb8{bottom:28.120000pt;}
.yf3{bottom:33.005387pt;}
.y11f{bottom:33.136933pt;}
.y12a{bottom:35.625147pt;}
.yb4{bottom:35.823200pt;}
.ya6{bottom:35.823600pt;}
.y9d{bottom:35.824133pt;}
.y72{bottom:35.858533pt;}
.yaf{bottom:35.866667pt;}
.y97{bottom:35.868400pt;}
.y88{bottom:38.524640pt;}
.y11e{bottom:39.674981pt;}
.y36{bottom:40.029653pt;}
.yd8{bottom:41.904640pt;}
.y92{bottom:43.996213pt;}
.y9c{bottom:45.118267pt;}
.yae{bottom:45.160800pt;}
.ya5{bottom:45.161333pt;}
.yb3{bottom:47.188000pt;}
.y71{bottom:48.658533pt;}
.yf0{bottom:50.059200pt;}
.y45{bottom:50.419733pt;}
.y49{bottom:50.419867pt;}
.ycc{bottom:50.658133pt;}
.y41{bottom:51.440213pt;}
.y11d{bottom:51.722036pt;}
.y4d{bottom:51.972933pt;}
.ya4{bottom:54.455467pt;}
.yad{bottom:54.498533pt;}
.y129{bottom:55.858427pt;}
.y5b{bottom:56.369733pt;}
.ye1{bottom:58.204720pt;}
.yf2{bottom:58.594667pt;}
.y70{bottom:61.458533pt;}
.y27{bottom:62.083413pt;}
.yef{bottom:62.859360pt;}
.y44{bottom:63.219893pt;}
.y48{bottom:63.220027pt;}
.y11c{bottom:63.769090pt;}
.yac{bottom:63.792667pt;}
.ya3{bottom:63.793200pt;}
.y1d{bottom:64.381067pt;}
.y4c{bottom:64.773093pt;}
.y35{bottom:65.618933pt;}
.y67{bottom:65.683387pt;}
.y6{bottom:67.187200pt;}
.y87{bottom:67.398000pt;}
.yd7{bottom:70.778000pt;}
.yab{bottom:73.130400pt;}
.ya2{bottom:73.130933pt;}
.yc2{bottom:74.005040pt;}
.y6f{bottom:74.258533pt;}
.yee{bottom:75.659280pt;}
.y11b{bottom:75.816145pt;}
.y43{bottom:76.019813pt;}
.y47{bottom:76.019947pt;}
.y128{bottom:76.105547pt;}
.y4b{bottom:77.573013pt;}
.ycb{bottom:79.624693pt;}
.y12f{bottom:80.311867pt;}
.y40{bottom:80.313573pt;}
.y91{bottom:80.884773pt;}
.y5a{bottom:85.169733pt;}
.y6e{bottom:87.058533pt;}
.ye0{bottom:87.171280pt;}
.y7d{bottom:87.557067pt;}
.y11a{bottom:87.863200pt;}
.yed{bottom:88.459200pt;}
.y42{bottom:88.819733pt;}
.y46{bottom:88.819867pt;}
.y4a{bottom:90.372933pt;}
.yf1{bottom:92.194667pt;}
.y66{bottom:92.874027pt;}
.yf{bottom:95.208800pt;}
.y12e{bottom:96.306587pt;}
.y127{bottom:96.338027pt;}
.yaa{bottom:98.284000pt;}
.y26{bottom:98.822853pt;}
.y34{bottom:99.229787pt;}
.y1c{bottom:99.501067pt;}
.yd6{bottom:99.651360pt;}
.y86{bottom:102.598000pt;}
.yc1{bottom:102.878400pt;}
.yca{bottom:108.498053pt;}
.y90{bottom:109.758133pt;}
.y6d{bottom:111.298533pt;}
.y12d{bottom:112.311867pt;}
.yf4{bottom:113.120000pt;}
.y115{bottom:113.372000pt;}
.y59{bottom:113.969600pt;}
.ydf{bottom:116.044640pt;}
.y126{bottom:116.585147pt;}
.y3f{bottom:117.193573pt;}
.y65{bottom:120.064667pt;}
.y33{bottom:124.819067pt;}
.yec{bottom:126.329253pt;}
.y25{bottom:127.696213pt;}
.yd5{bottom:128.524720pt;}
.y5{bottom:130.223200pt;}
.y118{bottom:130.789733pt;}
.y7c{bottom:131.712187pt;}
.ye{bottom:132.000800pt;}
.y125{bottom:136.832267pt;}
.yc9{bottom:137.371413pt;}
.y113{bottom:137.973333pt;}
.y6c{bottom:140.098533pt;}
.yc0{bottom:141.809707pt;}
.ye3{bottom:142.646933pt;}
.y58{bottom:142.769600pt;}
.y8f{bottom:144.878133pt;}
.yde{bottom:144.917440pt;}
.y111{bottom:150.274667pt;}
.y1b{bottom:150.452507pt;}
.yeb{bottom:151.918533pt;}
.y85{bottom:153.471440pt;}
.y3e{bottom:154.082133pt;}
.y7b{bottom:157.301467pt;}
.yd4{bottom:157.491280pt;}
.y32{bottom:158.440373pt;}
.y4{bottom:162.217840pt;}
.y110{bottom:162.324000pt;}
.y24{bottom:164.584773pt;}
.yc8{bottom:166.244773pt;}
.y64{bottom:167.878267pt;}
.yd{bottom:168.792800pt;}
.y57{bottom:171.569600pt;}
.y8e{bottom:173.678133pt;}
.y10f{bottom:174.373333pt;}
.ydd{bottom:181.824640pt;}
.y84{bottom:182.438000pt;}
.y7a{bottom:182.890747pt;}
.y31{bottom:184.029653pt;}
.ybf{bottom:184.849467pt;}
.yea{bottom:185.529253pt;}
.yd3{bottom:186.364640pt;}
.y10e{bottom:186.424000pt;}
.ya1{bottom:186.686667pt;}
.ye2{bottom:187.126933pt;}
.y1a{bottom:187.341067pt;}
.y12{bottom:188.246933pt;}
.y3d{bottom:189.202133pt;}
.y6b{bottom:192.435147pt;}
.y23{bottom:193.458133pt;}
.yc7{bottom:195.122933pt;}
.y56{bottom:200.369600pt;}
.y124{bottom:200.832267pt;}
.y63{bottom:202.998267pt;}
.yc{bottom:205.584800pt;}
.y79{bottom:208.480027pt;}
.y30{bottom:209.618933pt;}
.ydc{bottom:210.698000pt;}
.y10c{bottom:210.773333pt;}
.ye9{bottom:211.118533pt;}
.yd2{bottom:215.236160pt;}
.y83{bottom:217.558000pt;}
.y3c{bottom:219.760293pt;}
.ybe{bottom:221.812587pt;}
.y19{bottom:222.461067pt;}
.y10a{bottom:223.074667pt;}
.y8d{bottom:224.629573pt;}
.y10{bottom:227.335200pt;}
.y55{bottom:229.169733pt;}
.y6a{bottom:229.372587pt;}
.y22{bottom:230.421253pt;}
.yc6{bottom:232.011493pt;}
.y3{bottom:232.787200pt;}
.y123{bottom:232.832267pt;}
.y78{bottom:234.069307pt;}
.y108{bottom:235.124000pt;}
.ydb{bottom:239.571360pt;}
.y11{bottom:239.889733pt;}
.yb{bottom:242.400800pt;}
.y2f{bottom:243.229787pt;}
.ye8{bottom:244.729253pt;}
.y106{bottom:247.173333pt;}
.y3b{bottom:248.726853pt;}
.yd1{bottom:252.124720pt;}
.y62{bottom:253.958267pt;}
.y54{bottom:257.969600pt;}
.ybd{bottom:258.701147pt;}
.y104{bottom:259.224000pt;}
.y21{bottom:259.294613pt;}
.y77{bottom:259.658587pt;}
.yc5{bottom:260.978053pt;}
.y8c{bottom:261.518133pt;}
.y69{bottom:266.261147pt;}
.y122{bottom:267.952267pt;}
.y82{bottom:268.531280pt;}
.yda{bottom:268.537920pt;}
.y2e{bottom:268.819067pt;}
.ye7{bottom:270.318533pt;}
.y103{bottom:271.273333pt;}
.y18{bottom:273.403947pt;}
.y9b{bottom:275.089333pt;}
.ya{bottom:279.192800pt;}
.yd0{bottom:280.998080pt;}
.y102{bottom:283.324000pt;}
.yf5{bottom:283.420667pt;}
.y76{bottom:285.269227pt;}
.y3a{bottom:285.615413pt;}
.y53{bottom:286.769733pt;}
.y61{bottom:289.078267pt;}
.yc4{bottom:289.851413pt;}
.y133{bottom:291.489333pt;}
.y100{bottom:295.373333pt;}
.ybc{bottom:295.589707pt;}
.y20{bottom:296.183173pt;}
.y5e{bottom:296.297333pt;}
.y8b{bottom:296.638133pt;}
.y81{bottom:297.404640pt;}
.yd9{bottom:297.411280pt;}
.y2d{bottom:302.429787pt;}
.y68{bottom:303.149707pt;}
.ye6{bottom:303.939973pt;}
.y121{bottom:306.192267pt;}
.yfe{bottom:308.678667pt;}
.ycf{bottom:309.871440pt;}
.y17{bottom:310.292507pt;}
.y75{bottom:310.858507pt;}
.y39{bottom:314.488773pt;}
.y132{bottom:315.489333pt;}
.y52{bottom:315.569733pt;}
.y9{bottom:315.984800pt;}
.yc3{bottom:318.724773pt;}
.y2{bottom:319.367893pt;}
.yfc{bottom:320.728000pt;}
.y1f{bottom:325.056533pt;}
.y5d{bottom:325.097333pt;}
.y80{bottom:326.284640pt;}
.y2c{bottom:328.019067pt;}
.ye5{bottom:329.529253pt;}
.ybb{bottom:332.478267pt;}
.y96{bottom:335.478667pt;}
.y74{bottom:336.447787pt;}
.yce{bottom:338.838000pt;}
.y131{bottom:339.489333pt;}
.y60{bottom:340.038267pt;}
.y120{bottom:340.352267pt;}
.y38{bottom:343.362133pt;}
.y51{bottom:344.369733pt;}
.yfa{bottom:345.078667pt;}
.y16{bottom:347.181067pt;}
.y8a{bottom:347.598133pt;}
.y8{bottom:352.776800pt;}
.y5c{bottom:353.897333pt;}
.ye4{bottom:355.118533pt;}
.y7f{bottom:355.158000pt;}
.yf8{bottom:357.378667pt;}
.y2b{bottom:361.629653pt;}
.y73{bottom:362.037067pt;}
.yba{bottom:367.598267pt;}
.y130{bottom:369.310533pt;}
.y1{bottom:370.578533pt;}
.y50{bottom:373.169733pt;}
.y5f{bottom:375.158267pt;}
.y4e{bottom:376.017467pt;}
.ycd{bottom:377.798000pt;}
.y37{bottom:378.482133pt;}
.yf6{bottom:381.729333pt;}
.y1e{bottom:381.786133pt;}
.y15{bottom:382.301067pt;}
.y89{bottom:382.718133pt;}
.y94{bottom:386.620000pt;}
.y2a{bottom:387.218933pt;}
.y7e{bottom:390.278000pt;}
.y12b{bottom:398.124133pt;}
.y12c{bottom:407.890533pt;}
.y13{bottom:429.195600pt;}
.y14{bottom:445.437600pt;}
.y29{bottom:445.666133pt;}
.y4f{bottom:446.170933pt;}
.h26{height:11.798667pt;}
.h2a{height:11.800000pt;}
.h2b{height:12.049333pt;}
.h28{height:12.050667pt;}
.h29{height:13.053333pt;}
.h14{height:15.097333pt;}
.h1c{height:23.113242pt;}
.h25{height:24.100000pt;}
.h9{height:24.173750pt;}
.h15{height:24.220437pt;}
.h17{height:24.220971pt;}
.h2c{height:24.350667pt;}
.h24{height:25.397969pt;}
.h27{height:29.461644pt;}
.hd{height:30.984844pt;}
.h2e{height:36.401333pt;}
.he{height:38.736250pt;}
.h16{height:43.110667pt;}
.h4{height:43.687500pt;}
.h36{height:46.593750pt;}
.hc{height:47.132300pt;}
.h35{height:48.638750pt;}
.h13{height:50.968750pt;}
.h18{height:52.405333pt;}
.h32{height:53.298750pt;}
.h34{height:53.327230pt;}
.h33{height:53.354110pt;}
.h1e{height:54.281719pt;}
.h20{height:54.289079pt;}
.h12{height:62.202656pt;}
.h1f{height:67.842050pt;}
.ha{height:67.861250pt;}
.h21{height:67.863490pt;}
.hb{height:67.895490pt;}
.h10{height:67.963970pt;}
.h11{height:69.890625pt;}
.h30{height:72.549333pt;}
.h31{height:72.812500pt;}
.h3{height:77.763750pt;}
.h19{height:80.374667pt;}
.h1a{height:80.418667pt;}
.hf{height:82.423750pt;}
.h2{height:84.498750pt;}
.h5{height:87.375000pt;}
.h1d{height:87.489773pt;}
.h22{height:96.986250pt;}
.h6{height:116.500000pt;}
.h1{height:124.172344pt;}
.h2f{height:134.053333pt;}
.h8{height:136.013750pt;}
.h7{height:174.750000pt;}
.h2d{height:268.106667pt;}
.h23{height:292.709333pt;}
.h1b{height:377.960000pt;}
.h0{height:540.000000pt;}
.w1{width:75.109333pt;}
.w5{width:180.226667pt;}
.w2{width:250.772000pt;}
.w3{width:329.760000pt;}
.w4{width:834.868000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x41{left:1.254933pt;}
.x32{left:3.272800pt;}
.x42{left:10.792533pt;}
.x33{left:16.366400pt;}
.x19{left:28.446400pt;}
.x34{left:29.459333pt;}
.x2{left:31.951867pt;}
.x1{left:35.272800pt;}
.xb{left:37.795333pt;}
.x2f{left:41.650533pt;}
.x43{left:43.707733pt;}
.x23{left:49.668933pt;}
.x44{left:52.513413pt;}
.x10{left:54.960107pt;}
.x38{left:56.755333pt;}
.x3c{left:60.486133pt;}
.x3d{left:62.572000pt;}
.x24{left:70.708933pt;}
.x31{left:71.650533pt;}
.x28{left:74.650160pt;}
.x26{left:75.995840pt;}
.x3e{left:77.561867pt;}
.x1a{left:81.365733pt;}
.x2e{left:84.536800pt;}
.xc{left:86.591733pt;}
.x45{left:88.774400pt;}
.x7{left:90.124267pt;}
.x25{left:95.348000pt;}
.x9{left:96.334267pt;}
.x8{left:97.258933pt;}
.x2a{left:101.435600pt;}
.x39{left:104.755333pt;}
.x2b{left:107.352320pt;}
.x13{left:113.006267pt;}
.x27{left:115.041920pt;}
.x2c{left:118.075040pt;}
.x30{left:119.650533pt;}
.x3a{left:134.755333pt;}
.x29{left:228.484880pt;}
.xd{left:241.923600pt;}
.x2d{left:243.586400pt;}
.x3f{left:251.764800pt;}
.x4{left:258.872400pt;}
.x1f{left:273.992987pt;}
.x1c{left:276.059200pt;}
.x3b{left:277.008133pt;}
.x20{left:285.222427pt;}
.x5{left:306.872400pt;}
.x1d{left:324.059200pt;}
.x14{left:328.943200pt;}
.x11{left:347.634800pt;}
.x6{left:354.872400pt;}
.x40{left:362.210400pt;}
.x21{left:372.057200pt;}
.x15{left:376.943200pt;}
.x12{left:383.634800pt;}
.x35{left:393.121467pt;}
.x16{left:406.934960pt;}
.x22{left:419.418000pt;}
.x17{left:436.680800pt;}
.x36{left:441.121467pt;}
.x37{left:471.113227pt;}
.x1b{left:483.546667pt;}
.x1e{left:492.401067pt;}
.xe{left:598.670267pt;}
.xf{left:628.662027pt;}
.x18{left:715.009333pt;}
.xa{left:731.516667pt;}
.x3{left:750.934400pt;}
}




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