
    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_f38a92b01d6722b2e08f67fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a613c6c5eec96333de9879fb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2e01fe49811bd71892084174.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_532ab66931db599910e12af2.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9b3b5f6cf04e89e0ab278e59.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.855469;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_6cf6f6a03b3454ab3d2e03fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941895;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_c48d07249ab518a786c3fb3d.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9546ae848836393ba6d1cc18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.102720px;}
.v1{vertical-align:23.760000px;}
.ls29{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.794880px;}
.ls2c{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.662400px;}
.ls10{letter-spacing:-0.648000px;}
.ls3a{letter-spacing:-0.596160px;}
.ls28{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.529920px;}
.ls22{letter-spacing:-0.504000px;}
.ls31{letter-spacing:-0.463680px;}
.ls16{letter-spacing:-0.432000px;}
.ls39{letter-spacing:-0.397440px;}
.ls2a{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.289440px;}
.ls13{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.264960px;}
.lse{letter-spacing:-0.263520px;}
.ls19{letter-spacing:-0.241200px;}
.lsa{letter-spacing:-0.239040px;}
.ls14{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.198720px;}
.ls1b{letter-spacing:-0.144720px;}
.ls34{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.131760px;}
.lsc{letter-spacing:-0.119520px;}
.ls20{letter-spacing:-0.066240px;}
.lsb{letter-spacing:-0.059760px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.022320px;}
.ls3b{letter-spacing:0.033120px;}
.ls1a{letter-spacing:0.048240px;}
.ls2b{letter-spacing:0.059760px;}
.ls32{letter-spacing:0.066240px;}
.ls3{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.132480px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.179280px;}
.ls15{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.239040px;}
.ls30{letter-spacing:0.264960px;}
.ls1e{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.295200px;}
.ls11{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.302400px;}
.ls36{letter-spacing:0.331200px;}
.ls21{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.395280px;}
.ls23{letter-spacing:1.008000px;}
.ls2e{letter-spacing:2.185920px;}
.ls2f{letter-spacing:2.914560px;}
.ls26{letter-spacing:3.168000px;}
.ls25{letter-spacing:3.888000px;}
.ls27{letter-spacing:4.608000px;}
.ls12{letter-spacing:5.841360px;}
.ls17{letter-spacing:6.094080px;}
.ls2d{letter-spacing:8.611200px;}
.ls5{letter-spacing:13.248000px;}
.ls4{letter-spacing:46.015200px;}
.ls8{letter-spacing:2348.357760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-29.777760px;}
.ws5{word-spacing:-29.646000px;}
.ws4{word-spacing:-29.514240px;}
.ws6{word-spacing:-27.483120px;}
.wsa{word-spacing:-24.376320px;}
.ws5a{word-spacing:-16.632000px;}
.ws5d{word-spacing:-16.488000px;}
.ws5b{word-spacing:-16.344000px;}
.ws2e{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.056000px;}
.ws9{word-spacing:-15.984000px;}
.ws5f{word-spacing:-15.912000px;}
.ws70{word-spacing:-15.696000px;}
.ws5e{word-spacing:-15.624000px;}
.ws6f{word-spacing:-15.480000px;}
.ws86{word-spacing:-15.301440px;}
.ws5c{word-spacing:-15.264000px;}
.ws81{word-spacing:-15.235200px;}
.ws7c{word-spacing:-15.102720px;}
.ws84{word-spacing:-15.036480px;}
.ws7b{word-spacing:-14.970240px;}
.ws7d{word-spacing:-14.904000px;}
.ws7f{word-spacing:-14.837760px;}
.ws80{word-spacing:-14.771520px;}
.ws7e{word-spacing:-14.705280px;}
.ws94{word-spacing:-14.639040px;}
.ws83{word-spacing:-14.506560px;}
.ws85{word-spacing:-14.440320px;}
.ws82{word-spacing:-14.175360px;}
.ws6e{word-spacing:-13.744800px;}
.ws6d{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.446000px;}
.ws1{word-spacing:-13.386240px;}
.ws0{word-spacing:-13.266720px;}
.wsb{word-spacing:-10.950480px;}
.ws39{word-spacing:-3.672000px;}
.ws69{word-spacing:-3.384000px;}
.ws25{word-spacing:-3.024000px;}
.ws75{word-spacing:-2.952000px;}
.ws43{word-spacing:-2.808000px;}
.ws44{word-spacing:-2.664000px;}
.ws50{word-spacing:-2.232000px;}
.ws47{word-spacing:-1.944000px;}
.ws35{word-spacing:-1.512000px;}
.ws6b{word-spacing:-1.368000px;}
.ws36{word-spacing:-1.224000px;}
.ws97{word-spacing:-0.927360px;}
.ws1e{word-spacing:-0.864000px;}
.ws90{word-spacing:-0.861120px;}
.ws46{word-spacing:-0.792000px;}
.ws89{word-spacing:-0.728640px;}
.ws8e{word-spacing:-0.662400px;}
.ws76{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.576000px;}
.ws8d{word-spacing:-0.529920px;}
.ws45{word-spacing:-0.504000px;}
.ws12{word-spacing:-0.395280px;}
.ws42{word-spacing:-0.360000px;}
.ws91{word-spacing:-0.331200px;}
.ws2a{word-spacing:-0.298800px;}
.ws8{word-spacing:-0.288000px;}
.ws8f{word-spacing:-0.264960px;}
.ws13{word-spacing:-0.263520px;}
.ws2f{word-spacing:-0.239040px;}
.ws4d{word-spacing:-0.216000px;}
.ws96{word-spacing:-0.198720px;}
.ws1c{word-spacing:-0.144000px;}
.ws33{word-spacing:-0.132480px;}
.wsf{word-spacing:-0.131760px;}
.ws16{word-spacing:-0.119520px;}
.ws31{word-spacing:-0.095760px;}
.ws3b{word-spacing:-0.072000px;}
.ws88{word-spacing:-0.066240px;}
.wsd{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
.ws2c{word-spacing:0.048240px;}
.wse{word-spacing:0.059760px;}
.ws8a{word-spacing:0.066240px;}
.ws56{word-spacing:0.072000px;}
.ws11{word-spacing:0.131760px;}
.ws2b{word-spacing:0.144720px;}
.ws34{word-spacing:0.198720px;}
.ws15{word-spacing:0.216000px;}
.ws30{word-spacing:0.239040px;}
.ws10{word-spacing:0.263520px;}
.ws29{word-spacing:0.264960px;}
.ws2d{word-spacing:0.289440px;}
.ws32{word-spacing:0.331200px;}
.ws8c{word-spacing:0.397440px;}
.ws27{word-spacing:0.432000px;}
.ws93{word-spacing:0.463680px;}
.ws4e{word-spacing:0.504000px;}
.ws95{word-spacing:0.529920px;}
.ws6c{word-spacing:0.574560px;}
.ws26{word-spacing:0.576000px;}
.ws87{word-spacing:0.596160px;}
.ws3c{word-spacing:0.648000px;}
.ws8b{word-spacing:0.662400px;}
.ws92{word-spacing:0.794880px;}
.ws14{word-spacing:0.936000px;}
.ws58{word-spacing:1.368000px;}
.ws51{word-spacing:1.512000px;}
.ws66{word-spacing:1.584000px;}
.ws60{word-spacing:1.656000px;}
.ws1d{word-spacing:1.944000px;}
.ws17{word-spacing:2.016000px;}
.ws3a{word-spacing:2.088000px;}
.ws4f{word-spacing:2.376000px;}
.ws20{word-spacing:2.664000px;}
.ws1f{word-spacing:2.736000px;}
.ws40{word-spacing:2.808000px;}
.ws72{word-spacing:2.808720px;}
.ws37{word-spacing:2.952000px;}
.ws67{word-spacing:3.024000px;}
.ws52{word-spacing:3.096000px;}
.ws24{word-spacing:3.456000px;}
.ws41{word-spacing:3.528000px;}
.ws38{word-spacing:3.816000px;}
.ws21{word-spacing:4.176000px;}
.ws73{word-spacing:4.242960px;}
.ws64{word-spacing:4.248000px;}
.ws6a{word-spacing:4.536000px;}
.ws22{word-spacing:4.896000px;}
.ws74{word-spacing:4.960080px;}
.ws63{word-spacing:4.968000px;}
.ws53{word-spacing:5.256000px;}
.ws54{word-spacing:5.616000px;}
.ws48{word-spacing:5.688000px;}
.ws19{word-spacing:5.976000px;}
.ws71{word-spacing:6.394320px;}
.ws49{word-spacing:6.408000px;}
.ws57{word-spacing:6.696000px;}
.ws1a{word-spacing:7.056000px;}
.ws3e{word-spacing:7.128000px;}
.ws3f{word-spacing:7.416000px;}
.ws55{word-spacing:7.776000px;}
.ws79{word-spacing:7.848000px;}
.ws4b{word-spacing:8.136000px;}
.ws4c{word-spacing:8.568000px;}
.ws4a{word-spacing:8.856000px;}
.ws3d{word-spacing:10.296000px;}
.ws18{word-spacing:10.656000px;}
.ws7a{word-spacing:11.736000px;}
.ws59{word-spacing:12.168000px;}
.ws1b{word-spacing:13.536000px;}
.ws61{word-spacing:13.608000px;}
.ws62{word-spacing:13.896000px;}
.ws68{word-spacing:15.048000px;}
.ws65{word-spacing:18.216000px;}
.ws28{word-spacing:20.376000px;}
.ws23{word-spacing:20.736000px;}
.ws78{word-spacing:21.528000px;}
._a{margin-left:-8.412480px;}
._b{margin-left:-3.161520px;}
._6{margin-left:-2.137680px;}
._0{margin-left:-1.009944px;}
._2{width:1.159344px;}
._7{width:3.184560px;}
._9{width:4.561776px;}
._8{width:13.870224px;}
._3{width:20.161944px;}
._4{width:1005.641280px;}
._5{width:1287.529200px;}
._1{width:1314.391320px;}
.fc5{color:rgb(118,113,113);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y25{bottom:21.600000px;}
.y30{bottom:58.680000px;}
.y26{bottom:63.000000px;}
.y2f{bottom:70.574220px;}
.y2e{bottom:86.240160px;}
.ya5{bottom:93.960000px;}
.y7b{bottom:97.920000px;}
.y159{bottom:100.917360px;}
.y2d{bottom:102.074940px;}
.y5a{bottom:105.660000px;}
.ya4{bottom:117.540000px;}
.y2c{bottom:117.909720px;}
.y127{bottom:120.839040px;}
.y158{bottom:121.070880px;}
.y7a{bottom:121.500000px;}
.ycc{bottom:124.045920px;}
.yf6{bottom:125.867520px;}
.y59{bottom:129.420000px;}
.y2b{bottom:133.744500px;}
.y126{bottom:140.826960px;}
.y157{bottom:141.058800px;}
.ya3{bottom:141.300000px;}
.ycb{bottom:144.199440px;}
.y79{bottom:145.260000px;}
.yf5{bottom:146.021040px;}
.y27{bottom:147.240000px;}
.y2a{bottom:149.579280px;}
.y58{bottom:153.180000px;}
.y125{bottom:160.980480px;}
.y156{bottom:161.212320px;}
.yca{bottom:164.352960px;}
.ya2{bottom:165.060000px;}
.y29{bottom:165.245220px;}
.yf4{bottom:166.008960px;}
.y78{bottom:171.180000px;}
.y57{bottom:176.760000px;}
.y28{bottom:181.080000px;}
.y124{bottom:181.134000px;}
.y155{bottom:181.365840px;}
.yc9{bottom:184.506480px;}
.yf3{bottom:186.162480px;}
.ya1{bottom:188.820000px;}
.y56{bottom:200.520000px;}
.y123{bottom:201.287520px;}
.y154{bottom:201.519360px;}
.yc8{bottom:204.660000px;}
.yf2{bottom:206.316000px;}
.ya0{bottom:212.400000px;}
.y122{bottom:221.441040px;}
.y153{bottom:221.672880px;}
.y55{bottom:224.280000px;}
.yf1{bottom:226.469520px;}
.yc7{bottom:226.790640px;}
.y9f{bottom:236.160000px;}
.y121{bottom:241.594560px;}
.y152{bottom:241.826400px;}
.yf0{bottom:246.623040px;}
.y54{bottom:248.040000px;}
.yc6{bottom:256.141080px;}
.y9e{bottom:259.920000px;}
.y120{bottom:261.748080px;}
.y151{bottom:261.979920px;}
.yef{bottom:266.776560px;}
.y24{bottom:267.480000px;}
.y53{bottom:271.620000px;}
.y77{bottom:271.800000px;}
.y11f{bottom:281.901600px;}
.y150{bottom:282.133440px;}
.y9d{bottom:283.500000px;}
.yc5{bottom:285.300000px;}
.yee{bottom:286.930080px;}
.y52{bottom:295.380000px;}
.y23{bottom:297.540000px;}
.y11e{bottom:302.055120px;}
.y14f{bottom:302.286960px;}
.yed{bottom:307.083600px;}
.y9c{bottom:307.260000px;}
.yc4{bottom:312.782400px;}
.y51{bottom:319.140000px;}
.y22{bottom:319.500000px;}
.y11d{bottom:322.043040px;}
.y14e{bottom:322.274880px;}
.yec{bottom:327.237120px;}
.y9b{bottom:331.020000px;}
.yc3{bottom:332.935920px;}
.y21{bottom:341.460000px;}
.y11c{bottom:342.196560px;}
.y14d{bottom:342.428400px;}
.y50{bottom:342.900000px;}
.yeb{bottom:347.390640px;}
.yc2{bottom:353.089440px;}
.y9a{bottom:354.780000px;}
.y11b{bottom:362.350080px;}
.y14c{bottom:362.581920px;}
.y20{bottom:363.420000px;}
.y4f{bottom:366.480000px;}
.y76{bottom:366.660000px;}
.yea{bottom:367.378560px;}
.yc1{bottom:373.242960px;}
.y99{bottom:378.360000px;}
.y11a{bottom:382.503600px;}
.y17c{bottom:382.652640px;}
.y14b{bottom:382.735440px;}
.y1f{bottom:385.380000px;}
.ye9{bottom:387.532080px;}
.y4e{bottom:390.240000px;}
.y98{bottom:402.120000px;}
.y119{bottom:402.657120px;}
.y14a{bottom:402.888960px;}
.y1e{bottom:407.340000px;}
.ye8{bottom:407.685600px;}
.yc0{bottom:411.397200px;}
.y4d{bottom:414.000000px;}
.y118{bottom:422.810640px;}
.y17b{bottom:422.976240px;}
.y149{bottom:423.042480px;}
.y97{bottom:425.880000px;}
.ye7{bottom:427.839120px;}
.y1d{bottom:429.300000px;}
.ybf{bottom:431.550720px;}
.y4c{bottom:437.760000px;}
.y117{bottom:442.964160px;}
.y17a{bottom:443.129760px;}
.y148{bottom:443.196000px;}
.ye6{bottom:447.992640px;}
.y96{bottom:449.640000px;}
.y1c{bottom:451.260000px;}
.y4b{bottom:461.340000px;}
.y75{bottom:461.520000px;}
.y116{bottom:463.117680px;}
.y179{bottom:463.283280px;}
.y147{bottom:463.349520px;}
.ye5{bottom:468.146160px;}
.ybe{bottom:469.704960px;}
.y1b{bottom:473.220000px;}
.y115{bottom:483.271200px;}
.y4a{bottom:483.300000px;}
.y178{bottom:483.436800px;}
.y146{bottom:483.503040px;}
.y74{bottom:485.100000px;}
.ye4{bottom:488.299680px;}
.ybd{bottom:489.692880px;}
.y1a{bottom:495.180000px;}
.y95{bottom:496.980000px;}
.y114{bottom:503.424720px;}
.y177{bottom:503.590320px;}
.y145{bottom:503.656560px;}
.y49{bottom:507.060000px;}
.ye3{bottom:508.453200px;}
.y73{bottom:508.860000px;}
.y19{bottom:517.140000px;}
.y94{bottom:520.740000px;}
.y113{bottom:523.412640px;}
.y176{bottom:523.578240px;}
.y144{bottom:523.644480px;}
.ybc{bottom:527.847120px;}
.ye2{bottom:528.606720px;}
.y48{bottom:530.820000px;}
.y72{bottom:532.620000px;}
.y18{bottom:539.100000px;}
.y112{bottom:543.566160px;}
.y175{bottom:543.731760px;}
.y143{bottom:543.798000px;}
.y93{bottom:544.500000px;}
.ybb{bottom:548.000640px;}
.ye1{bottom:548.760240px;}
.y47{bottom:554.580000px;}
.y71{bottom:556.200000px;}
.y17{bottom:561.060000px;}
.y111{bottom:563.719680px;}
.y174{bottom:563.885280px;}
.y142{bottom:563.951520px;}
.y92{bottom:568.080000px;}
.ye0{bottom:568.748160px;}
.y46{bottom:578.160000px;}
.y70{bottom:579.960000px;}
.y16{bottom:583.020000px;}
.y110{bottom:583.873200px;}
.y173{bottom:584.038800px;}
.y141{bottom:584.105040px;}
.yba{bottom:586.154880px;}
.ydf{bottom:588.901680px;}
.y91{bottom:591.840000px;}
.y45{bottom:601.920000px;}
.y6f{bottom:603.720000px;}
.y10f{bottom:604.026720px;}
.y172{bottom:604.192320px;}
.y140{bottom:604.258560px;}
.y15{bottom:605.160000px;}
.yb9{bottom:606.308400px;}
.yde{bottom:609.055200px;}
.y90{bottom:615.600000px;}
.y10e{bottom:624.180240px;}
.y171{bottom:624.345840px;}
.y13f{bottom:624.412080px;}
.y44{bottom:625.680000px;}
.y14{bottom:627.120000px;}
.y6e{bottom:627.480000px;}
.ydd{bottom:629.208720px;}
.y8f{bottom:639.360000px;}
.y10d{bottom:644.333760px;}
.yb8{bottom:644.462640px;}
.y170{bottom:644.499360px;}
.y13e{bottom:644.565600px;}
.y13{bottom:649.080000px;}
.ydc{bottom:649.362240px;}
.y43{bottom:649.440000px;}
.y6d{bottom:651.060000px;}
.y8e{bottom:662.940000px;}
.y10c{bottom:664.487280px;}
.yb7{bottom:664.616160px;}
.y16f{bottom:664.652880px;}
.y13d{bottom:664.719120px;}
.ydb{bottom:669.515760px;}
.y12{bottom:671.040000px;}
.y42{bottom:673.020000px;}
.y6c{bottom:674.820000px;}
.y10b{bottom:684.640800px;}
.y16e{bottom:684.806400px;}
.y13c{bottom:684.872640px;}
.y8d{bottom:686.700000px;}
.yda{bottom:689.669280px;}
.y11{bottom:693.000000px;}
.y41{bottom:696.780000px;}
.y6b{bottom:698.580000px;}
.yb6{bottom:702.770400px;}
.y10a{bottom:704.794320px;}
.y16d{bottom:704.959920px;}
.y13b{bottom:705.026160px;}
.yd9{bottom:709.822800px;}
.y8c{bottom:710.460000px;}
.y10{bottom:714.960000px;}
.y40{bottom:720.540000px;}
.y6a{bottom:722.340000px;}
.yb5{bottom:722.923920px;}
.y109{bottom:724.782240px;}
.y16c{bottom:724.947840px;}
.y13a{bottom:725.014080px;}
.yd8{bottom:729.976320px;}
.y8b{bottom:734.040000px;}
.yf{bottom:738.540000px;}
.yb4{bottom:743.077440px;}
.y3f{bottom:744.120000px;}
.y108{bottom:744.935760px;}
.y16b{bottom:745.101360px;}
.y139{bottom:745.167600px;}
.y69{bottom:745.920000px;}
.yd7{bottom:750.129840px;}
.y8a{bottom:757.800000px;}
.yb3{bottom:763.065360px;}
.y107{bottom:765.089280px;}
.y16a{bottom:765.254880px;}
.y138{bottom:765.321120px;}
.ye{bottom:765.360000px;}
.y3e{bottom:767.880000px;}
.y68{bottom:769.680000px;}
.yd6{bottom:770.117760px;}
.y89{bottom:781.560000px;}
.yb2{bottom:783.218880px;}
.y106{bottom:785.242800px;}
.y169{bottom:785.408400px;}
.y137{bottom:785.474640px;}
.yd{bottom:788.400000px;}
.yd5{bottom:790.271280px;}
.y3d{bottom:791.640000px;}
.y67{bottom:795.600000px;}
.yb1{bottom:803.372400px;}
.y88{bottom:805.320000px;}
.y105{bottom:805.396320px;}
.y168{bottom:805.561920px;}
.y136{bottom:805.628160px;}
.yd4{bottom:810.424800px;}
.y3c{bottom:815.400000px;}
.yc{bottom:816.478740px;}
.yb0{bottom:823.525920px;}
.y66{bottom:824.940000px;}
.y104{bottom:825.549840px;}
.y167{bottom:825.715440px;}
.y135{bottom:825.781680px;}
.y87{bottom:828.900000px;}
.yd3{bottom:830.578320px;}
.yb{bottom:834.840000px;}
.y3b{bottom:838.980000px;}
.yaf{bottom:843.679440px;}
.y103{bottom:845.703360px;}
.y166{bottom:845.868960px;}
.y134{bottom:845.935200px;}
.y65{bottom:848.700000px;}
.yd2{bottom:850.731840px;}
.y86{bottom:852.660000px;}
.y3a{bottom:862.740000px;}
.yae{bottom:863.832960px;}
.y102{bottom:865.856880px;}
.y165{bottom:866.022480px;}
.y133{bottom:866.088720px;}
.ya{bottom:867.960000px;}
.yd1{bottom:870.885360px;}
.y64{bottom:872.460000px;}
.y85{bottom:876.420000px;}
.yad{bottom:883.986480px;}
.y101{bottom:886.010400px;}
.y164{bottom:886.176000px;}
.y132{bottom:886.242240px;}
.y39{bottom:886.500000px;}
.yd0{bottom:891.038880px;}
.y9{bottom:893.160000px;}
.y63{bottom:896.220000px;}
.y84{bottom:900.180000px;}
.yac{bottom:904.140000px;}
.y100{bottom:906.163920px;}
.y163{bottom:906.329520px;}
.y131{bottom:906.395760px;}
.y38{bottom:910.260000px;}
.ycf{bottom:911.192400px;}
.y62{bottom:919.800000px;}
.y83{bottom:923.760000px;}
.yff{bottom:926.151840px;}
.y162{bottom:926.317440px;}
.y130{bottom:926.383680px;}
.y8{bottom:930.422880px;}
.yce{bottom:931.345920px;}
.y37{bottom:933.840000px;}
.y61{bottom:943.560000px;}
.yab{bottom:944.280000px;}
.y82{bottom:946.286280px;}
.yfe{bottom:946.305360px;}
.y161{bottom:946.470960px;}
.y12f{bottom:946.537200px;}
.ycd{bottom:951.499440px;}
.y36{bottom:957.600000px;}
.y81{bottom:966.081780px;}
.yfd{bottom:966.458880px;}
.y160{bottom:966.624480px;}
.y12e{bottom:966.690720px;}
.y60{bottom:967.320000px;}
.y7{bottom:970.741440px;}
.yaa{bottom:971.820000px;}
.y80{bottom:985.877280px;}
.yfc{bottom:986.612400px;}
.y15f{bottom:986.778000px;}
.y12d{bottom:986.844240px;}
.y5f{bottom:991.080000px;}
.y35{bottom:992.710800px;}
.y7f{bottom:1005.493500px;}
.yfb{bottom:1006.765920px;}
.y15e{bottom:1006.931520px;}
.y12c{bottom:1006.997760px;}
.ya9{bottom:1007.113680px;}
.y6{bottom:1011.060000px;}
.y34{bottom:1014.487200px;}
.y5e{bottom:1014.660000px;}
.y7e{bottom:1025.289000px;}
.yfa{bottom:1026.919440px;}
.y15d{bottom:1027.085040px;}
.y12b{bottom:1027.151280px;}
.ya8{bottom:1028.890080px;}
.y33{bottom:1036.263600px;}
.y5d{bottom:1038.420000px;}
.y7d{bottom:1045.084500px;}
.y5{bottom:1046.334240px;}
.yf9{bottom:1047.072960px;}
.y15c{bottom:1047.238560px;}
.y12a{bottom:1047.304800px;}
.ya7{bottom:1050.484320px;}
.y32{bottom:1058.040000px;}
.y5c{bottom:1062.180000px;}
.y4{bottom:1064.695500px;}
.y7c{bottom:1064.880000px;}
.yf8{bottom:1067.226480px;}
.y15b{bottom:1067.392080px;}
.y129{bottom:1067.458320px;}
.y31{bottom:1080.180000px;}
.y3{bottom:1083.056760px;}
.y5b{bottom:1085.940000px;}
.ya6{bottom:1087.380000px;}
.y15a{bottom:1087.545600px;}
.y128{bottom:1087.611840px;}
.y2{bottom:1101.418020px;}
.yf7{bottom:1118.340000px;}
.y1{bottom:1119.600000px;}
.h9{height:39.420000px;}
.hc{height:39.783867px;}
.h7{height:40.851562px;}
.h1{height:42.894141px;}
.h13{height:45.281250px;}
.h12{height:46.639687px;}
.ha{height:47.157187px;}
.he{height:47.545312px;}
.hd{height:47.988281px;}
.h5{height:49.284492px;}
.h8{height:51.679688px;}
.hf{height:54.628594px;}
.h10{height:59.378906px;}
.h11{height:61.742407px;}
.h4{height:63.543867px;}
.h6{height:65.460938px;}
.h2{height:90.070312px;}
.h3{height:99.162773px;}
.hb{height:161.460000px;}
.h0{height:1188.000000px;}
.w2{width:759.600000px;}
.w1{width:833.578500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.x6{left:41.400000px;}
.x8{left:76.860000px;}
.x1{left:84.960000px;}
.x9{left:87.660000px;}
.x16{left:95.574960px;}
.x2{left:111.960000px;}
.x10{left:127.440000px;}
.x3{left:138.960000px;}
.xf{left:140.400000px;}
.x12{left:152.112240px;}
.xb{left:162.900000px;}
.x11{left:164.167920px;}
.x14{left:179.640000px;}
.xc{left:184.146480px;}
.x13{left:195.499440px;}
.xa{left:259.020000px;}
.x15{left:265.680000px;}
.xe{left:294.120000px;}
.xd{left:336.067920px;}
.x5{left:400.860000px;}
.x4{left:458.820000px;}
.x17{left:471.420720px;}
.x18{left:482.035680px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.424640pt;}
.v1{vertical-align:21.120000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.706560pt;}
.ls2c{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.588800pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls3a{letter-spacing:-0.529920pt;}
.ls28{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.471040pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls31{letter-spacing:-0.412160pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls39{letter-spacing:-0.353280pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.257280pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.235520pt;}
.lse{letter-spacing:-0.234240pt;}
.ls19{letter-spacing:-0.214400pt;}
.lsa{letter-spacing:-0.212480pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.176640pt;}
.ls1b{letter-spacing:-0.128640pt;}
.ls34{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.117120pt;}
.lsc{letter-spacing:-0.106240pt;}
.ls20{letter-spacing:-0.058880pt;}
.lsb{letter-spacing:-0.053120pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019840pt;}
.ls3b{letter-spacing:0.029440pt;}
.ls1a{letter-spacing:0.042880pt;}
.ls2b{letter-spacing:0.053120pt;}
.ls32{letter-spacing:0.058880pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.117760pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.159360pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.212480pt;}
.ls30{letter-spacing:0.235520pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.262400pt;}
.ls11{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.268800pt;}
.ls36{letter-spacing:0.294400pt;}
.ls21{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.351360pt;}
.ls23{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:1.943040pt;}
.ls2f{letter-spacing:2.590720pt;}
.ls26{letter-spacing:2.816000pt;}
.ls25{letter-spacing:3.456000pt;}
.ls27{letter-spacing:4.096000pt;}
.ls12{letter-spacing:5.192320pt;}
.ls17{letter-spacing:5.416960pt;}
.ls2d{letter-spacing:7.654400pt;}
.ls5{letter-spacing:11.776000pt;}
.ls4{letter-spacing:40.902400pt;}
.ls8{letter-spacing:2087.429120pt;}
.ws3{word-spacing:-26.469120pt;}
.ws5{word-spacing:-26.352000pt;}
.ws4{word-spacing:-26.234880pt;}
.ws6{word-spacing:-24.429440pt;}
.wsa{word-spacing:-21.667840pt;}
.ws5a{word-spacing:-14.784000pt;}
.ws5d{word-spacing:-14.656000pt;}
.ws5b{word-spacing:-14.528000pt;}
.ws2e{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws9{word-spacing:-14.208000pt;}
.ws5f{word-spacing:-14.144000pt;}
.ws70{word-spacing:-13.952000pt;}
.ws5e{word-spacing:-13.888000pt;}
.ws6f{word-spacing:-13.760000pt;}
.ws86{word-spacing:-13.601280pt;}
.ws5c{word-spacing:-13.568000pt;}
.ws81{word-spacing:-13.542400pt;}
.ws7c{word-spacing:-13.424640pt;}
.ws84{word-spacing:-13.365760pt;}
.ws7b{word-spacing:-13.306880pt;}
.ws7d{word-spacing:-13.248000pt;}
.ws7f{word-spacing:-13.189120pt;}
.ws80{word-spacing:-13.130240pt;}
.ws7e{word-spacing:-13.071360pt;}
.ws94{word-spacing:-13.012480pt;}
.ws83{word-spacing:-12.894720pt;}
.ws85{word-spacing:-12.835840pt;}
.ws82{word-spacing:-12.600320pt;}
.ws6e{word-spacing:-12.217600pt;}
.ws6d{word-spacing:-12.005120pt;}
.ws2{word-spacing:-11.952000pt;}
.ws1{word-spacing:-11.898880pt;}
.ws0{word-spacing:-11.792640pt;}
.wsb{word-spacing:-9.733760pt;}
.ws39{word-spacing:-3.264000pt;}
.ws69{word-spacing:-3.008000pt;}
.ws25{word-spacing:-2.688000pt;}
.ws75{word-spacing:-2.624000pt;}
.ws43{word-spacing:-2.496000pt;}
.ws44{word-spacing:-2.368000pt;}
.ws50{word-spacing:-1.984000pt;}
.ws47{word-spacing:-1.728000pt;}
.ws35{word-spacing:-1.344000pt;}
.ws6b{word-spacing:-1.216000pt;}
.ws36{word-spacing:-1.088000pt;}
.ws97{word-spacing:-0.824320pt;}
.ws1e{word-spacing:-0.768000pt;}
.ws90{word-spacing:-0.765440pt;}
.ws46{word-spacing:-0.704000pt;}
.ws89{word-spacing:-0.647680pt;}
.ws8e{word-spacing:-0.588800pt;}
.ws76{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.512000pt;}
.ws8d{word-spacing:-0.471040pt;}
.ws45{word-spacing:-0.448000pt;}
.ws12{word-spacing:-0.351360pt;}
.ws42{word-spacing:-0.320000pt;}
.ws91{word-spacing:-0.294400pt;}
.ws2a{word-spacing:-0.265600pt;}
.ws8{word-spacing:-0.256000pt;}
.ws8f{word-spacing:-0.235520pt;}
.ws13{word-spacing:-0.234240pt;}
.ws2f{word-spacing:-0.212480pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws96{word-spacing:-0.176640pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws33{word-spacing:-0.117760pt;}
.wsf{word-spacing:-0.117120pt;}
.ws16{word-spacing:-0.106240pt;}
.ws31{word-spacing:-0.085120pt;}
.ws3b{word-spacing:-0.064000pt;}
.ws88{word-spacing:-0.058880pt;}
.wsd{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.042880pt;}
.wse{word-spacing:0.053120pt;}
.ws8a{word-spacing:0.058880pt;}
.ws56{word-spacing:0.064000pt;}
.ws11{word-spacing:0.117120pt;}
.ws2b{word-spacing:0.128640pt;}
.ws34{word-spacing:0.176640pt;}
.ws15{word-spacing:0.192000pt;}
.ws30{word-spacing:0.212480pt;}
.ws10{word-spacing:0.234240pt;}
.ws29{word-spacing:0.235520pt;}
.ws2d{word-spacing:0.257280pt;}
.ws32{word-spacing:0.294400pt;}
.ws8c{word-spacing:0.353280pt;}
.ws27{word-spacing:0.384000pt;}
.ws93{word-spacing:0.412160pt;}
.ws4e{word-spacing:0.448000pt;}
.ws95{word-spacing:0.471040pt;}
.ws6c{word-spacing:0.510720pt;}
.ws26{word-spacing:0.512000pt;}
.ws87{word-spacing:0.529920pt;}
.ws3c{word-spacing:0.576000pt;}
.ws8b{word-spacing:0.588800pt;}
.ws92{word-spacing:0.706560pt;}
.ws14{word-spacing:0.832000pt;}
.ws58{word-spacing:1.216000pt;}
.ws51{word-spacing:1.344000pt;}
.ws66{word-spacing:1.408000pt;}
.ws60{word-spacing:1.472000pt;}
.ws1d{word-spacing:1.728000pt;}
.ws17{word-spacing:1.792000pt;}
.ws3a{word-spacing:1.856000pt;}
.ws4f{word-spacing:2.112000pt;}
.ws20{word-spacing:2.368000pt;}
.ws1f{word-spacing:2.432000pt;}
.ws40{word-spacing:2.496000pt;}
.ws72{word-spacing:2.496640pt;}
.ws37{word-spacing:2.624000pt;}
.ws67{word-spacing:2.688000pt;}
.ws52{word-spacing:2.752000pt;}
.ws24{word-spacing:3.072000pt;}
.ws41{word-spacing:3.136000pt;}
.ws38{word-spacing:3.392000pt;}
.ws21{word-spacing:3.712000pt;}
.ws73{word-spacing:3.771520pt;}
.ws64{word-spacing:3.776000pt;}
.ws6a{word-spacing:4.032000pt;}
.ws22{word-spacing:4.352000pt;}
.ws74{word-spacing:4.408960pt;}
.ws63{word-spacing:4.416000pt;}
.ws53{word-spacing:4.672000pt;}
.ws54{word-spacing:4.992000pt;}
.ws48{word-spacing:5.056000pt;}
.ws19{word-spacing:5.312000pt;}
.ws71{word-spacing:5.683840pt;}
.ws49{word-spacing:5.696000pt;}
.ws57{word-spacing:5.952000pt;}
.ws1a{word-spacing:6.272000pt;}
.ws3e{word-spacing:6.336000pt;}
.ws3f{word-spacing:6.592000pt;}
.ws55{word-spacing:6.912000pt;}
.ws79{word-spacing:6.976000pt;}
.ws4b{word-spacing:7.232000pt;}
.ws4c{word-spacing:7.616000pt;}
.ws4a{word-spacing:7.872000pt;}
.ws3d{word-spacing:9.152000pt;}
.ws18{word-spacing:9.472000pt;}
.ws7a{word-spacing:10.432000pt;}
.ws59{word-spacing:10.816000pt;}
.ws1b{word-spacing:12.032000pt;}
.ws61{word-spacing:12.096000pt;}
.ws62{word-spacing:12.352000pt;}
.ws68{word-spacing:13.376000pt;}
.ws65{word-spacing:16.192000pt;}
.ws28{word-spacing:18.112000pt;}
.ws23{word-spacing:18.432000pt;}
.ws78{word-spacing:19.136000pt;}
._a{margin-left:-7.477760pt;}
._b{margin-left:-2.810240pt;}
._6{margin-left:-1.900160pt;}
._0{margin-left:-0.897728pt;}
._2{width:1.030528pt;}
._7{width:2.830720pt;}
._9{width:4.054912pt;}
._8{width:12.329088pt;}
._3{width:17.921728pt;}
._4{width:893.903360pt;}
._5{width:1144.470400pt;}
._1{width:1168.347840pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:19.200000pt;}
.y30{bottom:52.160000pt;}
.y26{bottom:56.000000pt;}
.y2f{bottom:62.732640pt;}
.y2e{bottom:76.657920pt;}
.ya5{bottom:83.520000pt;}
.y7b{bottom:87.040000pt;}
.y159{bottom:89.704320pt;}
.y2d{bottom:90.733280pt;}
.y5a{bottom:93.920000pt;}
.ya4{bottom:104.480000pt;}
.y2c{bottom:104.808640pt;}
.y127{bottom:107.412480pt;}
.y158{bottom:107.618560pt;}
.y7a{bottom:108.000000pt;}
.ycc{bottom:110.263040pt;}
.yf6{bottom:111.882240pt;}
.y59{bottom:115.040000pt;}
.y2b{bottom:118.884000pt;}
.y126{bottom:125.179520pt;}
.y157{bottom:125.385600pt;}
.ya3{bottom:125.600000pt;}
.ycb{bottom:128.177280pt;}
.y79{bottom:129.120000pt;}
.yf5{bottom:129.796480pt;}
.y27{bottom:130.880000pt;}
.y2a{bottom:132.959360pt;}
.y58{bottom:136.160000pt;}
.y125{bottom:143.093760pt;}
.y156{bottom:143.299840pt;}
.yca{bottom:146.091520pt;}
.ya2{bottom:146.720000pt;}
.y29{bottom:146.884640pt;}
.yf4{bottom:147.563520pt;}
.y78{bottom:152.160000pt;}
.y57{bottom:157.120000pt;}
.y28{bottom:160.960000pt;}
.y124{bottom:161.008000pt;}
.y155{bottom:161.214080pt;}
.yc9{bottom:164.005760pt;}
.yf3{bottom:165.477760pt;}
.ya1{bottom:167.840000pt;}
.y56{bottom:178.240000pt;}
.y123{bottom:178.922240pt;}
.y154{bottom:179.128320pt;}
.yc8{bottom:181.920000pt;}
.yf2{bottom:183.392000pt;}
.ya0{bottom:188.800000pt;}
.y122{bottom:196.836480pt;}
.y153{bottom:197.042560pt;}
.y55{bottom:199.360000pt;}
.yf1{bottom:201.306240pt;}
.yc7{bottom:201.591680pt;}
.y9f{bottom:209.920000pt;}
.y121{bottom:214.750720pt;}
.y152{bottom:214.956800pt;}
.yf0{bottom:219.220480pt;}
.y54{bottom:220.480000pt;}
.yc6{bottom:227.680960pt;}
.y9e{bottom:231.040000pt;}
.y120{bottom:232.664960pt;}
.y151{bottom:232.871040pt;}
.yef{bottom:237.134720pt;}
.y24{bottom:237.760000pt;}
.y53{bottom:241.440000pt;}
.y77{bottom:241.600000pt;}
.y11f{bottom:250.579200pt;}
.y150{bottom:250.785280pt;}
.y9d{bottom:252.000000pt;}
.yc5{bottom:253.600000pt;}
.yee{bottom:255.048960pt;}
.y52{bottom:262.560000pt;}
.y23{bottom:264.480000pt;}
.y11e{bottom:268.493440pt;}
.y14f{bottom:268.699520pt;}
.yed{bottom:272.963200pt;}
.y9c{bottom:273.120000pt;}
.yc4{bottom:278.028800pt;}
.y51{bottom:283.680000pt;}
.y22{bottom:284.000000pt;}
.y11d{bottom:286.260480pt;}
.y14e{bottom:286.466560pt;}
.yec{bottom:290.877440pt;}
.y9b{bottom:294.240000pt;}
.yc3{bottom:295.943040pt;}
.y21{bottom:303.520000pt;}
.y11c{bottom:304.174720pt;}
.y14d{bottom:304.380800pt;}
.y50{bottom:304.800000pt;}
.yeb{bottom:308.791680pt;}
.yc2{bottom:313.857280pt;}
.y9a{bottom:315.360000pt;}
.y11b{bottom:322.088960pt;}
.y14c{bottom:322.295040pt;}
.y20{bottom:323.040000pt;}
.y4f{bottom:325.760000pt;}
.y76{bottom:325.920000pt;}
.yea{bottom:326.558720pt;}
.yc1{bottom:331.771520pt;}
.y99{bottom:336.320000pt;}
.y11a{bottom:340.003200pt;}
.y17c{bottom:340.135680pt;}
.y14b{bottom:340.209280pt;}
.y1f{bottom:342.560000pt;}
.ye9{bottom:344.472960pt;}
.y4e{bottom:346.880000pt;}
.y98{bottom:357.440000pt;}
.y119{bottom:357.917440pt;}
.y14a{bottom:358.123520pt;}
.y1e{bottom:362.080000pt;}
.ye8{bottom:362.387200pt;}
.yc0{bottom:365.686400pt;}
.y4d{bottom:368.000000pt;}
.y118{bottom:375.831680pt;}
.y17b{bottom:375.978880pt;}
.y149{bottom:376.037760pt;}
.y97{bottom:378.560000pt;}
.ye7{bottom:380.301440pt;}
.y1d{bottom:381.600000pt;}
.ybf{bottom:383.600640pt;}
.y4c{bottom:389.120000pt;}
.y117{bottom:393.745920pt;}
.y17a{bottom:393.893120pt;}
.y148{bottom:393.952000pt;}
.ye6{bottom:398.215680pt;}
.y96{bottom:399.680000pt;}
.y1c{bottom:401.120000pt;}
.y4b{bottom:410.080000pt;}
.y75{bottom:410.240000pt;}
.y116{bottom:411.660160pt;}
.y179{bottom:411.807360pt;}
.y147{bottom:411.866240pt;}
.ye5{bottom:416.129920pt;}
.ybe{bottom:417.515520pt;}
.y1b{bottom:420.640000pt;}
.y115{bottom:429.574400pt;}
.y4a{bottom:429.600000pt;}
.y178{bottom:429.721600pt;}
.y146{bottom:429.780480pt;}
.y74{bottom:431.200000pt;}
.ye4{bottom:434.044160pt;}
.ybd{bottom:435.282560pt;}
.y1a{bottom:440.160000pt;}
.y95{bottom:441.760000pt;}
.y114{bottom:447.488640pt;}
.y177{bottom:447.635840pt;}
.y145{bottom:447.694720pt;}
.y49{bottom:450.720000pt;}
.ye3{bottom:451.958400pt;}
.y73{bottom:452.320000pt;}
.y19{bottom:459.680000pt;}
.y94{bottom:462.880000pt;}
.y113{bottom:465.255680pt;}
.y176{bottom:465.402880pt;}
.y144{bottom:465.461760pt;}
.ybc{bottom:469.197440pt;}
.ye2{bottom:469.872640pt;}
.y48{bottom:471.840000pt;}
.y72{bottom:473.440000pt;}
.y18{bottom:479.200000pt;}
.y112{bottom:483.169920pt;}
.y175{bottom:483.317120pt;}
.y143{bottom:483.376000pt;}
.y93{bottom:484.000000pt;}
.ybb{bottom:487.111680pt;}
.ye1{bottom:487.786880pt;}
.y47{bottom:492.960000pt;}
.y71{bottom:494.400000pt;}
.y17{bottom:498.720000pt;}
.y111{bottom:501.084160pt;}
.y174{bottom:501.231360pt;}
.y142{bottom:501.290240pt;}
.y92{bottom:504.960000pt;}
.ye0{bottom:505.553920pt;}
.y46{bottom:513.920000pt;}
.y70{bottom:515.520000pt;}
.y16{bottom:518.240000pt;}
.y110{bottom:518.998400pt;}
.y173{bottom:519.145600pt;}
.y141{bottom:519.204480pt;}
.yba{bottom:521.026560pt;}
.ydf{bottom:523.468160pt;}
.y91{bottom:526.080000pt;}
.y45{bottom:535.040000pt;}
.y6f{bottom:536.640000pt;}
.y10f{bottom:536.912640pt;}
.y172{bottom:537.059840pt;}
.y140{bottom:537.118720pt;}
.y15{bottom:537.920000pt;}
.yb9{bottom:538.940800pt;}
.yde{bottom:541.382400pt;}
.y90{bottom:547.200000pt;}
.y10e{bottom:554.826880pt;}
.y171{bottom:554.974080pt;}
.y13f{bottom:555.032960pt;}
.y44{bottom:556.160000pt;}
.y14{bottom:557.440000pt;}
.y6e{bottom:557.760000pt;}
.ydd{bottom:559.296640pt;}
.y8f{bottom:568.320000pt;}
.y10d{bottom:572.741120pt;}
.yb8{bottom:572.855680pt;}
.y170{bottom:572.888320pt;}
.y13e{bottom:572.947200pt;}
.y13{bottom:576.960000pt;}
.ydc{bottom:577.210880pt;}
.y43{bottom:577.280000pt;}
.y6d{bottom:578.720000pt;}
.y8e{bottom:589.280000pt;}
.y10c{bottom:590.655360pt;}
.yb7{bottom:590.769920pt;}
.y16f{bottom:590.802560pt;}
.y13d{bottom:590.861440pt;}
.ydb{bottom:595.125120pt;}
.y12{bottom:596.480000pt;}
.y42{bottom:598.240000pt;}
.y6c{bottom:599.840000pt;}
.y10b{bottom:608.569600pt;}
.y16e{bottom:608.716800pt;}
.y13c{bottom:608.775680pt;}
.y8d{bottom:610.400000pt;}
.yda{bottom:613.039360pt;}
.y11{bottom:616.000000pt;}
.y41{bottom:619.360000pt;}
.y6b{bottom:620.960000pt;}
.yb6{bottom:624.684800pt;}
.y10a{bottom:626.483840pt;}
.y16d{bottom:626.631040pt;}
.y13b{bottom:626.689920pt;}
.yd9{bottom:630.953600pt;}
.y8c{bottom:631.520000pt;}
.y10{bottom:635.520000pt;}
.y40{bottom:640.480000pt;}
.y6a{bottom:642.080000pt;}
.yb5{bottom:642.599040pt;}
.y109{bottom:644.250880pt;}
.y16c{bottom:644.398080pt;}
.y13a{bottom:644.456960pt;}
.yd8{bottom:648.867840pt;}
.y8b{bottom:652.480000pt;}
.yf{bottom:656.480000pt;}
.yb4{bottom:660.513280pt;}
.y3f{bottom:661.440000pt;}
.y108{bottom:662.165120pt;}
.y16b{bottom:662.312320pt;}
.y139{bottom:662.371200pt;}
.y69{bottom:663.040000pt;}
.yd7{bottom:666.782080pt;}
.y8a{bottom:673.600000pt;}
.yb3{bottom:678.280320pt;}
.y107{bottom:680.079360pt;}
.y16a{bottom:680.226560pt;}
.y138{bottom:680.285440pt;}
.ye{bottom:680.320000pt;}
.y3e{bottom:682.560000pt;}
.y68{bottom:684.160000pt;}
.yd6{bottom:684.549120pt;}
.y89{bottom:694.720000pt;}
.yb2{bottom:696.194560pt;}
.y106{bottom:697.993600pt;}
.y169{bottom:698.140800pt;}
.y137{bottom:698.199680pt;}
.yd{bottom:700.800000pt;}
.yd5{bottom:702.463360pt;}
.y3d{bottom:703.680000pt;}
.y67{bottom:707.200000pt;}
.yb1{bottom:714.108800pt;}
.y88{bottom:715.840000pt;}
.y105{bottom:715.907840pt;}
.y168{bottom:716.055040pt;}
.y136{bottom:716.113920pt;}
.yd4{bottom:720.377600pt;}
.y3c{bottom:724.800000pt;}
.yc{bottom:725.758880pt;}
.yb0{bottom:732.023040pt;}
.y66{bottom:733.280000pt;}
.y104{bottom:733.822080pt;}
.y167{bottom:733.969280pt;}
.y135{bottom:734.028160pt;}
.y87{bottom:736.800000pt;}
.yd3{bottom:738.291840pt;}
.yb{bottom:742.080000pt;}
.y3b{bottom:745.760000pt;}
.yaf{bottom:749.937280pt;}
.y103{bottom:751.736320pt;}
.y166{bottom:751.883520pt;}
.y134{bottom:751.942400pt;}
.y65{bottom:754.400000pt;}
.yd2{bottom:756.206080pt;}
.y86{bottom:757.920000pt;}
.y3a{bottom:766.880000pt;}
.yae{bottom:767.851520pt;}
.y102{bottom:769.650560pt;}
.y165{bottom:769.797760pt;}
.y133{bottom:769.856640pt;}
.ya{bottom:771.520000pt;}
.yd1{bottom:774.120320pt;}
.y64{bottom:775.520000pt;}
.y85{bottom:779.040000pt;}
.yad{bottom:785.765760pt;}
.y101{bottom:787.564800pt;}
.y164{bottom:787.712000pt;}
.y132{bottom:787.770880pt;}
.y39{bottom:788.000000pt;}
.yd0{bottom:792.034560pt;}
.y9{bottom:793.920000pt;}
.y63{bottom:796.640000pt;}
.y84{bottom:800.160000pt;}
.yac{bottom:803.680000pt;}
.y100{bottom:805.479040pt;}
.y163{bottom:805.626240pt;}
.y131{bottom:805.685120pt;}
.y38{bottom:809.120000pt;}
.ycf{bottom:809.948800pt;}
.y62{bottom:817.600000pt;}
.y83{bottom:821.120000pt;}
.yff{bottom:823.246080pt;}
.y162{bottom:823.393280pt;}
.y130{bottom:823.452160pt;}
.y8{bottom:827.042560pt;}
.yce{bottom:827.863040pt;}
.y37{bottom:830.080000pt;}
.y61{bottom:838.720000pt;}
.yab{bottom:839.360000pt;}
.y82{bottom:841.143360pt;}
.yfe{bottom:841.160320pt;}
.y161{bottom:841.307520pt;}
.y12f{bottom:841.366400pt;}
.ycd{bottom:845.777280pt;}
.y36{bottom:851.200000pt;}
.y81{bottom:858.739360pt;}
.yfd{bottom:859.074560pt;}
.y160{bottom:859.221760pt;}
.y12e{bottom:859.280640pt;}
.y60{bottom:859.840000pt;}
.y7{bottom:862.881280pt;}
.yaa{bottom:863.840000pt;}
.y80{bottom:876.335360pt;}
.yfc{bottom:876.988800pt;}
.y15f{bottom:877.136000pt;}
.y12d{bottom:877.194880pt;}
.y5f{bottom:880.960000pt;}
.y35{bottom:882.409600pt;}
.y7f{bottom:893.772000pt;}
.yfb{bottom:894.903040pt;}
.y15e{bottom:895.050240pt;}
.y12c{bottom:895.109120pt;}
.ya9{bottom:895.212160pt;}
.y6{bottom:898.720000pt;}
.y34{bottom:901.766400pt;}
.y5e{bottom:901.920000pt;}
.y7e{bottom:911.368000pt;}
.yfa{bottom:912.817280pt;}
.y15d{bottom:912.964480pt;}
.y12b{bottom:913.023360pt;}
.ya8{bottom:914.568960pt;}
.y33{bottom:921.123200pt;}
.y5d{bottom:923.040000pt;}
.y7d{bottom:928.964000pt;}
.y5{bottom:930.074880pt;}
.yf9{bottom:930.731520pt;}
.y15c{bottom:930.878720pt;}
.y12a{bottom:930.937600pt;}
.ya7{bottom:933.763840pt;}
.y32{bottom:940.480000pt;}
.y5c{bottom:944.160000pt;}
.y4{bottom:946.396000pt;}
.y7c{bottom:946.560000pt;}
.yf8{bottom:948.645760pt;}
.y15b{bottom:948.792960pt;}
.y129{bottom:948.851840pt;}
.y31{bottom:960.160000pt;}
.y3{bottom:962.717120pt;}
.y5b{bottom:965.280000pt;}
.ya6{bottom:966.560000pt;}
.y15a{bottom:966.707200pt;}
.y128{bottom:966.766080pt;}
.y2{bottom:979.038240pt;}
.yf7{bottom:994.080000pt;}
.y1{bottom:995.200000pt;}
.h9{height:35.040000pt;}
.hc{height:35.363437pt;}
.h7{height:36.312500pt;}
.h1{height:38.128125pt;}
.h13{height:40.250000pt;}
.h12{height:41.457500pt;}
.ha{height:41.917500pt;}
.he{height:42.262500pt;}
.hd{height:42.656250pt;}
.h5{height:43.808438pt;}
.h8{height:45.937500pt;}
.hf{height:48.558750pt;}
.h10{height:52.781250pt;}
.h11{height:54.882140pt;}
.h4{height:56.483438pt;}
.h6{height:58.187500pt;}
.h2{height:80.062500pt;}
.h3{height:88.144687pt;}
.hb{height:143.520000pt;}
.h0{height:1056.000000pt;}
.w2{width:675.200000pt;}
.w1{width:740.958667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.x6{left:36.800000pt;}
.x8{left:68.320000pt;}
.x1{left:75.520000pt;}
.x9{left:77.920000pt;}
.x16{left:84.955520pt;}
.x2{left:99.520000pt;}
.x10{left:113.280000pt;}
.x3{left:123.520000pt;}
.xf{left:124.800000pt;}
.x12{left:135.210880pt;}
.xb{left:144.800000pt;}
.x11{left:145.927040pt;}
.x14{left:159.680000pt;}
.xc{left:163.685760pt;}
.x13{left:173.777280pt;}
.xa{left:230.240000pt;}
.x15{left:236.160000pt;}
.xe{left:261.440000pt;}
.xd{left:298.727040pt;}
.x5{left:356.320000pt;}
.x4{left:407.840000pt;}
.x17{left:419.040640pt;}
.x18{left:428.476160pt;}
}




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