
    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_f730b00e0b49b140b6dd88be.woff')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_c9636de2e8d332b7fdcb32d8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.871094;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_8ee4a37b3c8f3a4103f173d2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_97cced24e1100169321967ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_891dfaefe0fd6e698b8d70ff.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_87b89bda28b663138ca9d409.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_e72b2210293c2cc745256dec.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e1a45037bdcdf76a11eb5c25.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b68aeae4c167eed63df57a67.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_327ab0c994cf4b70387602e0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7f3d388138b22f0c1db2c7b1.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.890000px;}
.ls1{letter-spacing:2.160000px;}
.ls3{letter-spacing:5.644800px;}
.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;}
}
.ws1{word-spacing:-35.964000px;}
.ws0{word-spacing:-13.344000px;}
.ws5b{word-spacing:-6.432000px;}
.ws2f{word-spacing:-4.752000px;}
.ws35{word-spacing:-4.704000px;}
.ws5c{word-spacing:-4.656000px;}
.ws40{word-spacing:-4.416000px;}
.ws11{word-spacing:-3.942000px;}
.ws78{word-spacing:-3.936000px;}
.ws7c{word-spacing:-3.312000px;}
.ws49{word-spacing:-3.072000px;}
.ws94{word-spacing:-2.928000px;}
.ws57{word-spacing:-2.736000px;}
.ws89{word-spacing:-2.592000px;}
.ws63{word-spacing:-2.448000px;}
.wsb1{word-spacing:-2.352000px;}
.wsa7{word-spacing:-2.304000px;}
.ws98{word-spacing:-2.256000px;}
.ws13{word-spacing:-2.160000px;}
.wsb2{word-spacing:-1.968000px;}
.ws10{word-spacing:-1.890000px;}
.ws3{word-spacing:-1.728000px;}
.ws3b{word-spacing:-1.584000px;}
.ws46{word-spacing:-1.488000px;}
.ws99{word-spacing:-1.440000px;}
.ws82{word-spacing:-1.296000px;}
.ws44{word-spacing:-1.248000px;}
.ws62{word-spacing:-1.104000px;}
.ws12{word-spacing:-0.918000px;}
.wsb3{word-spacing:-0.864000px;}
.ws97{word-spacing:-0.720000px;}
.wsa9{word-spacing:-0.624000px;}
.ws60{word-spacing:-0.480000px;}
.wsa4{word-spacing:-0.432000px;}
.ws9c{word-spacing:-0.288000px;}
.wsa6{word-spacing:-0.192000px;}
.ws95{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsa8{word-spacing:0.192000px;}
.ws50{word-spacing:0.240000px;}
.ws5f{word-spacing:0.288000px;}
.ws9f{word-spacing:0.432000px;}
.ws51{word-spacing:0.528000px;}
.ws7a{word-spacing:0.576000px;}
.wsa3{word-spacing:0.768000px;}
.ws4d{word-spacing:0.816000px;}
.ws36{word-spacing:0.864000px;}
.ws8b{word-spacing:1.008000px;}
.ws96{word-spacing:1.104000px;}
.ws4b{word-spacing:1.248000px;}
.ws2a{word-spacing:1.296000px;}
.ws67{word-spacing:1.392000px;}
.ws80{word-spacing:1.440000px;}
.wsa1{word-spacing:1.584000px;}
.ws8{word-spacing:1.680000px;}
.ws64{word-spacing:1.728000px;}
.ws7e{word-spacing:1.872000px;}
.ws3f{word-spacing:1.920000px;}
.ws31{word-spacing:2.016000px;}
.ws1a{word-spacing:2.064000px;}
.ws2e{word-spacing:2.160000px;}
.ws27{word-spacing:2.208000px;}
.ws3a{word-spacing:2.256000px;}
.ws6a{word-spacing:2.304000px;}
.ws9a{word-spacing:2.352000px;}
.ws19{word-spacing:2.448000px;}
.ws5d{word-spacing:2.592000px;}
.ws9d{word-spacing:2.688000px;}
.ws6{word-spacing:2.832000px;}
.ws74{word-spacing:2.880000px;}
.ws3c{word-spacing:2.928000px;}
.wsaa{word-spacing:3.120000px;}
.wsb8{word-spacing:3.216000px;}
.ws7f{word-spacing:3.360000px;}
.ws41{word-spacing:3.504000px;}
.wsa2{word-spacing:3.552000px;}
.ws8e{word-spacing:3.696000px;}
.ws34{word-spacing:3.744000px;}
.wsa0{word-spacing:3.936000px;}
.ws9e{word-spacing:4.032000px;}
.ws23{word-spacing:4.080000px;}
.ws55{word-spacing:4.176000px;}
.ws73{word-spacing:4.272000px;}
.ws5a{word-spacing:4.656000px;}
.ws4c{word-spacing:4.992000px;}
.ws30{word-spacing:5.088000px;}
.wsad{word-spacing:5.232000px;}
.ws77{word-spacing:5.376000px;}
.ws3e{word-spacing:5.568000px;}
.ws65{word-spacing:5.664000px;}
.ws4a{word-spacing:5.712000px;}
.ws6c{word-spacing:5.856000px;}
.wsb9{word-spacing:5.904000px;}
.ws88{word-spacing:5.952000px;}
.ws1b{word-spacing:6.240000px;}
.ws1f{word-spacing:6.432000px;}
.ws87{word-spacing:6.480000px;}
.wsac{word-spacing:6.528000px;}
.ws83{word-spacing:6.624000px;}
.ws9b{word-spacing:6.672000px;}
.ws8d{word-spacing:6.768000px;}
.ws24{word-spacing:6.864000px;}
.ws28{word-spacing:6.912000px;}
.ws79{word-spacing:6.960000px;}
.ws66{word-spacing:7.008000px;}
.wsab{word-spacing:7.056000px;}
.wsf{word-spacing:7.104000px;}
.ws76{word-spacing:7.152000px;}
.wsb{word-spacing:7.200000px;}
.ws68{word-spacing:7.248000px;}
.ws48{word-spacing:7.296000px;}
.wsb0{word-spacing:7.344000px;}
.ws6b{word-spacing:7.728000px;}
.ws4{word-spacing:7.920000px;}
.ws70{word-spacing:7.968000px;}
.wsb7{word-spacing:8.256000px;}
.wsb6{word-spacing:8.304000px;}
.ws54{word-spacing:8.352000px;}
.ws17{word-spacing:8.400000px;}
.ws8a{word-spacing:8.448000px;}
.ws20{word-spacing:8.496000px;}
.ws1e{word-spacing:8.688000px;}
.wsd{word-spacing:8.784000px;}
.ws59{word-spacing:9.264000px;}
.ws6f{word-spacing:9.600000px;}
.wsaf{word-spacing:9.792000px;}
.ws3d{word-spacing:9.840000px;}
.ws53{word-spacing:10.128000px;}
.wsa5{word-spacing:10.368000px;}
.ws84{word-spacing:10.416000px;}
.ws18{word-spacing:10.464000px;}
.ws25{word-spacing:10.512000px;}
.ws6e{word-spacing:10.704000px;}
.ws56{word-spacing:10.896000px;}
.wsc{word-spacing:11.088000px;}
.ws43{word-spacing:11.232000px;}
.ws71{word-spacing:11.376000px;}
.ws22{word-spacing:11.472000px;}
.wsb5{word-spacing:11.568000px;}
.ws1c{word-spacing:11.664000px;}
.ws6d{word-spacing:12.096000px;}
.ws85{word-spacing:12.144000px;}
.ws32{word-spacing:12.192000px;}
.ws93{word-spacing:12.288000px;}
.ws15{word-spacing:12.432000px;}
.ws38{word-spacing:12.480000px;}
.ws5{word-spacing:12.912000px;}
.ws90{word-spacing:13.248000px;}
.ws14{word-spacing:13.344000px;}
.ws2c{word-spacing:13.488000px;}
.ws58{word-spacing:13.584000px;}
.wsb4{word-spacing:13.872000px;}
.ws8c{word-spacing:14.016000px;}
.ws92{word-spacing:14.208000px;}
.ws1d{word-spacing:14.256000px;}
.wsa{word-spacing:14.400000px;}
.ws2d{word-spacing:14.448000px;}
.ws7d{word-spacing:14.592000px;}
.ws2b{word-spacing:14.640000px;}
.wsae{word-spacing:14.688000px;}
.ws91{word-spacing:14.928000px;}
.ws81{word-spacing:14.976000px;}
.ws75{word-spacing:15.264000px;}
.ws21{word-spacing:15.456000px;}
.ws7b{word-spacing:15.696000px;}
.ws9{word-spacing:15.792000px;}
.ws4e{word-spacing:15.888000px;}
.ws72{word-spacing:15.936000px;}
.ws16{word-spacing:16.464000px;}
.ws45{word-spacing:16.512000px;}
.ws42{word-spacing:16.608000px;}
.ws61{word-spacing:16.992000px;}
.ws5e{word-spacing:17.088000px;}
.ws4f{word-spacing:18.192000px;}
.ws33{word-spacing:18.624000px;}
.ws47{word-spacing:19.584000px;}
.ws52{word-spacing:20.256000px;}
.ws29{word-spacing:20.352000px;}
.ws69{word-spacing:20.496000px;}
.ws86{word-spacing:20.592000px;}
.wse{word-spacing:21.312000px;}
.ws8f{word-spacing:21.360000px;}
.ws7{word-spacing:21.696000px;}
.ws26{word-spacing:22.656000px;}
.ws39{word-spacing:25.728000px;}
.ws37{word-spacing:32.064000px;}
._f{margin-left:-6.124800px;}
._a{margin-left:-4.929600px;}
._4{margin-left:-3.595200px;}
._9{margin-left:-2.518200px;}
._2{margin-left:-1.245600px;}
._7{width:1.780800px;}
._8{width:2.845800px;}
._5{width:4.221600px;}
._3{width:5.886000px;}
._d{width:7.622400px;}
._c{width:8.788800px;}
._0{width:9.824400px;}
._1{width:11.091600px;}
._10{width:12.206400px;}
._b{width:14.620800px;}
._6{width:15.844800px;}
._14{width:17.131200px;}
._13{width:18.163200px;}
._e{width:19.584000px;}
._15{width:21.100800px;}
._12{width:25.708800px;}
._11{width:77.856000px;}
.fc6{color:rgb(7,8,16);}
.fc7{color:rgb(4,124,193);}
.fc3{color:rgb(71,62,56);}
.fc5{color:rgb(0,124,193);}
.fc2{color:rgb(161,182,59);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(32,100,174);}
.fs1{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:78.000000px;}
.fs5{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:26.515650px;}
.y1{bottom:31.393800px;}
.y4{bottom:37.315650px;}
.y3{bottom:48.115650px;}
.y2{bottom:58.915650px;}
.y4b{bottom:100.809000px;}
.ybf{bottom:103.289250px;}
.y20{bottom:125.260350px;}
.y9c{bottom:125.612100px;}
.y76{bottom:142.007850px;}
.y1f{bottom:152.104350px;}
.y75{bottom:155.507850px;}
.y7c{bottom:169.007850px;}
.y74{bottom:181.007850px;}
.y7b{bottom:182.507850px;}
.y73{bottom:194.507850px;}
.y7a{bottom:196.007850px;}
.y72{bottom:208.007850px;}
.y79{bottom:209.507850px;}
.y2a{bottom:214.695600px;}
.y71{bottom:221.507850px;}
.y78{bottom:223.007850px;}
.y29{bottom:231.195600px;}
.y70{bottom:235.007850px;}
.y77{bottom:236.507850px;}
.y15{bottom:237.034650px;}
.y28{bottom:247.695600px;}
.y6f{bottom:248.507850px;}
.y14{bottom:253.534650px;}
.y6e{bottom:262.007850px;}
.y27{bottom:264.195600px;}
.y13{bottom:270.034650px;}
.y6d{bottom:275.507850px;}
.y12{bottom:286.534650px;}
.y6c{bottom:289.007850px;}
.y19{bottom:290.743350px;}
.yde{bottom:297.725400px;}
.y6b{bottom:302.507850px;}
.y11{bottom:303.034650px;}
.y18{bottom:306.943350px;}
.ydd{bottom:311.225400px;}
.y6a{bottom:316.007850px;}
.y10{bottom:319.534650px;}
.ydc{bottom:324.725400px;}
.y69{bottom:329.507850px;}
.yf{bottom:336.034650px;}
.ydb{bottom:338.225400px;}
.y68{bottom:343.007850px;}
.yda{bottom:351.725400px;}
.ye{bottom:352.534650px;}
.y1e{bottom:353.919450px;}
.y67{bottom:356.507850px;}
.yd9{bottom:365.225400px;}
.yd{bottom:369.034650px;}
.y66{bottom:370.007850px;}
.y113{bottom:370.057350px;}
.yd8{bottom:378.725400px;}
.y65{bottom:383.507850px;}
.y112{bottom:384.457350px;}
.y1d{bottom:392.712450px;}
.y111{bottom:398.857350px;}
.yc{bottom:402.034650px;}
.y1c{bottom:407.112450px;}
.y110{bottom:413.257350px;}
.y105{bottom:414.901500px;}
.yb{bottom:418.534650px;}
.y1b{bottom:421.512450px;}
.y64{bottom:425.021550px;}
.y10f{bottom:427.657350px;}
.yd7{bottom:428.225400px;}
.y104{bottom:428.401500px;}
.ya{bottom:435.034650px;}
.y1a{bottom:435.912450px;}
.yd6{bottom:441.725400px;}
.y103{bottom:441.901500px;}
.y114{bottom:442.057350px;}
.y9{bottom:451.534650px;}
.yd5{bottom:455.225400px;}
.y102{bottom:455.401500px;}
.y10e{bottom:456.457350px;}
.y8{bottom:468.034650px;}
.yd4{bottom:468.725400px;}
.y101{bottom:468.901500px;}
.y10d{bottom:470.857350px;}
.y17{bottom:474.545400px;}
.yd3{bottom:482.225400px;}
.y7{bottom:484.534650px;}
.y10c{bottom:485.257350px;}
.y10b{bottom:499.657350px;}
.yb7{bottom:499.672650px;}
.y6{bottom:501.034650px;}
.y10a{bottom:514.057350px;}
.yb6{bottom:514.072650px;}
.y100{bottom:518.401500px;}
.y16{bottom:523.850850px;}
.y109{bottom:528.457350px;}
.yb5{bottom:528.472650px;}
.yd2{bottom:531.725400px;}
.yff{bottom:531.901500px;}
.y94{bottom:535.913550px;}
.y108{bottom:542.857350px;}
.yb4{bottom:542.872650px;}
.yd1{bottom:545.225400px;}
.yfe{bottom:545.401500px;}
.y48{bottom:546.406350px;}
.y93{bottom:550.313550px;}
.y107{bottom:557.257350px;}
.yb3{bottom:557.272650px;}
.yd0{bottom:558.725400px;}
.yfd{bottom:558.901500px;}
.y47{bottom:560.806350px;}
.y26{bottom:561.079350px;}
.y97{bottom:564.713550px;}
.y21{bottom:567.697200px;}
.y106{bottom:571.657350px;}
.yb2{bottom:571.672650px;}
.ycf{bottom:572.225400px;}
.yfc{bottom:572.401500px;}
.y46{bottom:575.206350px;}
.y92{bottom:579.113550px;}
.yce{bottom:585.725400px;}
.yfb{bottom:585.901500px;}
.yb1{bottom:586.072650px;}
.y45{bottom:589.606350px;}
.y91{bottom:593.513550px;}
.ycd{bottom:599.225400px;}
.yfa{bottom:599.401500px;}
.yb0{bottom:600.472650px;}
.y44{bottom:604.006350px;}
.y90{bottom:607.913550px;}
.ycc{bottom:612.725400px;}
.yaf{bottom:614.872650px;}
.y4a{bottom:618.406350px;}
.y8f{bottom:622.313550px;}
.yae{bottom:629.272650px;}
.y43{bottom:632.806350px;}
.y117{bottom:635.744700px;}
.y8e{bottom:636.713550px;}
.yad{bottom:643.672650px;}
.y42{bottom:647.206350px;}
.yf9{bottom:648.901500px;}
.y8d{bottom:651.113550px;}
.yac{bottom:658.072650px;}
.y116{bottom:659.144700px;}
.y41{bottom:661.606350px;}
.ycb{bottom:662.225400px;}
.yf8{bottom:662.401500px;}
.y8c{bottom:665.513550px;}
.yab{bottom:672.472650px;}
.yca{bottom:675.725400px;}
.yf7{bottom:675.901500px;}
.y40{bottom:676.006350px;}
.y96{bottom:679.913550px;}
.yb9{bottom:686.872650px;}
.yc9{bottom:689.225400px;}
.yf6{bottom:689.401500px;}
.y3f{bottom:690.406350px;}
.y8b{bottom:694.313550px;}
.yaa{bottom:701.272650px;}
.yc8{bottom:702.725400px;}
.yf5{bottom:702.901500px;}
.y3e{bottom:704.806350px;}
.y8a{bottom:708.713550px;}
.ya9{bottom:715.672650px;}
.yc7{bottom:716.225400px;}
.yf4{bottom:716.401500px;}
.y115{bottom:718.389450px;}
.y49{bottom:719.206350px;}
.y89{bottom:723.113550px;}
.y5d{bottom:725.487150px;}
.yc6{bottom:729.725400px;}
.yf3{bottom:729.901500px;}
.ya8{bottom:730.072650px;}
.y3d{bottom:733.606350px;}
.y88{bottom:737.513550px;}
.y5c{bottom:738.987150px;}
.yc5{bottom:743.225400px;}
.yf2{bottom:743.401500px;}
.ya7{bottom:744.472650px;}
.y3c{bottom:748.006350px;}
.y87{bottom:751.913550px;}
.y5b{bottom:752.487150px;}
.yf1{bottom:756.901500px;}
.ya6{bottom:758.872650px;}
.y3b{bottom:762.406350px;}
.y5a{bottom:765.987150px;}
.y86{bottom:766.313550px;}
.yf0{bottom:770.401500px;}
.ya5{bottom:773.272650px;}
.y3a{bottom:776.806350px;}
.y5f{bottom:779.487150px;}
.y85{bottom:780.713550px;}
.yef{bottom:783.901500px;}
.yb8{bottom:787.672650px;}
.y39{bottom:791.206350px;}
.y59{bottom:791.487150px;}
.yc4{bottom:792.725400px;}
.y5e{bottom:792.987150px;}
.y84{bottom:795.113550px;}
.y120{bottom:799.060950px;}
.ya4{bottom:802.072650px;}
.y58{bottom:804.987150px;}
.y38{bottom:805.606350px;}
.yc3{bottom:806.225400px;}
.y95{bottom:809.513550px;}
.y11f{bottom:813.460950px;}
.ya3{bottom:816.472650px;}
.y57{bottom:818.487150px;}
.yc2{bottom:819.725400px;}
.y37{bottom:820.006350px;}
.y83{bottom:823.913550px;}
.y11e{bottom:827.860950px;}
.ya2{bottom:830.872650px;}
.y56{bottom:831.987150px;}
.yc1{bottom:833.225400px;}
.yee{bottom:833.401500px;}
.y36{bottom:834.406350px;}
.y82{bottom:838.313550px;}
.y11d{bottom:842.260950px;}
.ya1{bottom:845.272650px;}
.y55{bottom:845.487150px;}
.yc0{bottom:846.725400px;}
.yed{bottom:846.901500px;}
.y35{bottom:848.806350px;}
.y81{bottom:852.713550px;}
.y11c{bottom:856.660950px;}
.y54{bottom:858.987150px;}
.ya0{bottom:859.672650px;}
.yec{bottom:860.401500px;}
.y25{bottom:864.559350px;}
.y80{bottom:867.113550px;}
.y11b{bottom:871.060950px;}
.y53{bottom:872.487150px;}
.yeb{bottom:873.901500px;}
.y9f{bottom:874.072650px;}
.y34{bottom:877.606350px;}
.y7f{bottom:881.513550px;}
.ye0{bottom:882.784650px;}
.y11a{bottom:885.460950px;}
.y52{bottom:885.987150px;}
.yea{bottom:887.401500px;}
.y9e{bottom:888.472650px;}
.y33{bottom:892.006350px;}
.y7e{bottom:895.913550px;}
.y51{bottom:899.487150px;}
.y119{bottom:899.860950px;}
.ye9{bottom:900.901500px;}
.y9d{bottom:902.872650px;}
.y32{bottom:906.406350px;}
.y7d{bottom:910.313550px;}
.y50{bottom:912.987150px;}
.y118{bottom:914.260950px;}
.ydf{bottom:914.688600px;}
.y24{bottom:918.208350px;}
.y31{bottom:920.806350px;}
.y4f{bottom:926.487150px;}
.y30{bottom:935.206350px;}
.y4e{bottom:939.987150px;}
.ybe{bottom:946.630650px;}
.y2f{bottom:949.606350px;}
.ye8{bottom:950.401500px;}
.y4d{bottom:953.487150px;}
.y9b{bottom:963.783000px;}
.ye7{bottom:963.901500px;}
.y2e{bottom:964.006350px;}
.y4c{bottom:966.987150px;}
.y123{bottom:969.569850px;}
.ybd{bottom:970.030650px;}
.y23{bottom:977.477250px;}
.y9a{bottom:987.183000px;}
.ye6{bottom:994.145250px;}
.ye4{bottom:994.147200px;}
.y122{bottom:1001.473800px;}
.ybc{bottom:1001.934600px;}
.ye3{bottom:1008.547200px;}
.y22{bottom:1018.877250px;}
.y63{bottom:1021.085550px;}
.y2d{bottom:1024.935300px;}
.ye5{bottom:1026.049200px;}
.ye2{bottom:1044.729300px;}
.y2c{bottom:1048.335300px;}
.y62{bottom:1052.989500px;}
.y99{bottom:1054.083750px;}
.y121{bottom:1060.993050px;}
.ybb{bottom:1066.839600px;}
.ye1{bottom:1077.129300px;}
.y98{bottom:1086.483750px;}
.yba{bottom:1099.239600px;}
.y61{bottom:1108.055100px;}
.y2b{bottom:1113.683400px;}
.y60{bottom:1140.455100px;}
.h3{height:24.943359px;}
.hc{height:30.577148px;}
.h2{height:34.272000px;}
.hd{height:34.945312px;}
.h4{height:34.968750px;}
.h6{height:38.556000px;}
.h5{height:39.339844px;}
.hb{height:56.786133px;}
.ha{height:65.522461px;}
.h8{height:71.982422px;}
.h9{height:78.626953px;}
.h7{height:100.467773px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:57.401550px;}
.xc{left:61.039350px;}
.x18{left:78.926850px;}
.x19{left:81.018000px;}
.x3{left:85.039350px;}
.x13{left:94.889700px;}
.x8{left:144.331500px;}
.xd{left:191.338500px;}
.x11{left:192.755850px;}
.x1a{left:198.115800px;}
.x15{left:199.842450px;}
.x7{left:236.584500px;}
.x9{left:301.055400px;}
.xa{left:340.691400px;}
.x2{left:362.480250px;}
.x16{left:370.203000px;}
.x12{left:379.484250px;}
.x17{left:389.417400px;}
.x10{left:424.562100px;}
.xe{left:455.456700px;}
.x14{left:464.881950px;}
.xf{left:482.456700px;}
.xb{left:526.393650px;}
.x6{left:528.268650px;}
.x5{left:555.094500px;}
.x4{left:581.037300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.680000pt;}
.ls1{letter-spacing:1.920000pt;}
.ls3{letter-spacing:5.017600pt;}
.ws1{word-spacing:-31.968000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws5b{word-spacing:-5.717333pt;}
.ws2f{word-spacing:-4.224000pt;}
.ws35{word-spacing:-4.181333pt;}
.ws5c{word-spacing:-4.138667pt;}
.ws40{word-spacing:-3.925333pt;}
.ws11{word-spacing:-3.504000pt;}
.ws78{word-spacing:-3.498667pt;}
.ws7c{word-spacing:-2.944000pt;}
.ws49{word-spacing:-2.730667pt;}
.ws94{word-spacing:-2.602667pt;}
.ws57{word-spacing:-2.432000pt;}
.ws89{word-spacing:-2.304000pt;}
.ws63{word-spacing:-2.176000pt;}
.wsb1{word-spacing:-2.090667pt;}
.wsa7{word-spacing:-2.048000pt;}
.ws98{word-spacing:-2.005333pt;}
.ws13{word-spacing:-1.920000pt;}
.wsb2{word-spacing:-1.749333pt;}
.ws10{word-spacing:-1.680000pt;}
.ws3{word-spacing:-1.536000pt;}
.ws3b{word-spacing:-1.408000pt;}
.ws46{word-spacing:-1.322667pt;}
.ws99{word-spacing:-1.280000pt;}
.ws82{word-spacing:-1.152000pt;}
.ws44{word-spacing:-1.109333pt;}
.ws62{word-spacing:-0.981333pt;}
.ws12{word-spacing:-0.816000pt;}
.wsb3{word-spacing:-0.768000pt;}
.ws97{word-spacing:-0.640000pt;}
.wsa9{word-spacing:-0.554667pt;}
.ws60{word-spacing:-0.426667pt;}
.wsa4{word-spacing:-0.384000pt;}
.ws9c{word-spacing:-0.256000pt;}
.wsa6{word-spacing:-0.170667pt;}
.ws95{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.170667pt;}
.ws50{word-spacing:0.213333pt;}
.ws5f{word-spacing:0.256000pt;}
.ws9f{word-spacing:0.384000pt;}
.ws51{word-spacing:0.469333pt;}
.ws7a{word-spacing:0.512000pt;}
.wsa3{word-spacing:0.682667pt;}
.ws4d{word-spacing:0.725333pt;}
.ws36{word-spacing:0.768000pt;}
.ws8b{word-spacing:0.896000pt;}
.ws96{word-spacing:0.981333pt;}
.ws4b{word-spacing:1.109333pt;}
.ws2a{word-spacing:1.152000pt;}
.ws67{word-spacing:1.237333pt;}
.ws80{word-spacing:1.280000pt;}
.wsa1{word-spacing:1.408000pt;}
.ws8{word-spacing:1.493333pt;}
.ws64{word-spacing:1.536000pt;}
.ws7e{word-spacing:1.664000pt;}
.ws3f{word-spacing:1.706667pt;}
.ws31{word-spacing:1.792000pt;}
.ws1a{word-spacing:1.834667pt;}
.ws2e{word-spacing:1.920000pt;}
.ws27{word-spacing:1.962667pt;}
.ws3a{word-spacing:2.005333pt;}
.ws6a{word-spacing:2.048000pt;}
.ws9a{word-spacing:2.090667pt;}
.ws19{word-spacing:2.176000pt;}
.ws5d{word-spacing:2.304000pt;}
.ws9d{word-spacing:2.389333pt;}
.ws6{word-spacing:2.517333pt;}
.ws74{word-spacing:2.560000pt;}
.ws3c{word-spacing:2.602667pt;}
.wsaa{word-spacing:2.773333pt;}
.wsb8{word-spacing:2.858667pt;}
.ws7f{word-spacing:2.986667pt;}
.ws41{word-spacing:3.114667pt;}
.wsa2{word-spacing:3.157333pt;}
.ws8e{word-spacing:3.285333pt;}
.ws34{word-spacing:3.328000pt;}
.wsa0{word-spacing:3.498667pt;}
.ws9e{word-spacing:3.584000pt;}
.ws23{word-spacing:3.626667pt;}
.ws55{word-spacing:3.712000pt;}
.ws73{word-spacing:3.797333pt;}
.ws5a{word-spacing:4.138667pt;}
.ws4c{word-spacing:4.437333pt;}
.ws30{word-spacing:4.522667pt;}
.wsad{word-spacing:4.650667pt;}
.ws77{word-spacing:4.778667pt;}
.ws3e{word-spacing:4.949333pt;}
.ws65{word-spacing:5.034667pt;}
.ws4a{word-spacing:5.077333pt;}
.ws6c{word-spacing:5.205333pt;}
.wsb9{word-spacing:5.248000pt;}
.ws88{word-spacing:5.290667pt;}
.ws1b{word-spacing:5.546667pt;}
.ws1f{word-spacing:5.717333pt;}
.ws87{word-spacing:5.760000pt;}
.wsac{word-spacing:5.802667pt;}
.ws83{word-spacing:5.888000pt;}
.ws9b{word-spacing:5.930667pt;}
.ws8d{word-spacing:6.016000pt;}
.ws24{word-spacing:6.101333pt;}
.ws28{word-spacing:6.144000pt;}
.ws79{word-spacing:6.186667pt;}
.ws66{word-spacing:6.229333pt;}
.wsab{word-spacing:6.272000pt;}
.wsf{word-spacing:6.314667pt;}
.ws76{word-spacing:6.357333pt;}
.wsb{word-spacing:6.400000pt;}
.ws68{word-spacing:6.442667pt;}
.ws48{word-spacing:6.485333pt;}
.wsb0{word-spacing:6.528000pt;}
.ws6b{word-spacing:6.869333pt;}
.ws4{word-spacing:7.040000pt;}
.ws70{word-spacing:7.082667pt;}
.wsb7{word-spacing:7.338667pt;}
.wsb6{word-spacing:7.381333pt;}
.ws54{word-spacing:7.424000pt;}
.ws17{word-spacing:7.466667pt;}
.ws8a{word-spacing:7.509333pt;}
.ws20{word-spacing:7.552000pt;}
.ws1e{word-spacing:7.722667pt;}
.wsd{word-spacing:7.808000pt;}
.ws59{word-spacing:8.234667pt;}
.ws6f{word-spacing:8.533333pt;}
.wsaf{word-spacing:8.704000pt;}
.ws3d{word-spacing:8.746667pt;}
.ws53{word-spacing:9.002667pt;}
.wsa5{word-spacing:9.216000pt;}
.ws84{word-spacing:9.258667pt;}
.ws18{word-spacing:9.301333pt;}
.ws25{word-spacing:9.344000pt;}
.ws6e{word-spacing:9.514667pt;}
.ws56{word-spacing:9.685333pt;}
.wsc{word-spacing:9.856000pt;}
.ws43{word-spacing:9.984000pt;}
.ws71{word-spacing:10.112000pt;}
.ws22{word-spacing:10.197333pt;}
.wsb5{word-spacing:10.282667pt;}
.ws1c{word-spacing:10.368000pt;}
.ws6d{word-spacing:10.752000pt;}
.ws85{word-spacing:10.794667pt;}
.ws32{word-spacing:10.837333pt;}
.ws93{word-spacing:10.922667pt;}
.ws15{word-spacing:11.050667pt;}
.ws38{word-spacing:11.093333pt;}
.ws5{word-spacing:11.477333pt;}
.ws90{word-spacing:11.776000pt;}
.ws14{word-spacing:11.861333pt;}
.ws2c{word-spacing:11.989333pt;}
.ws58{word-spacing:12.074667pt;}
.wsb4{word-spacing:12.330667pt;}
.ws8c{word-spacing:12.458667pt;}
.ws92{word-spacing:12.629333pt;}
.ws1d{word-spacing:12.672000pt;}
.wsa{word-spacing:12.800000pt;}
.ws2d{word-spacing:12.842667pt;}
.ws7d{word-spacing:12.970667pt;}
.ws2b{word-spacing:13.013333pt;}
.wsae{word-spacing:13.056000pt;}
.ws91{word-spacing:13.269333pt;}
.ws81{word-spacing:13.312000pt;}
.ws75{word-spacing:13.568000pt;}
.ws21{word-spacing:13.738667pt;}
.ws7b{word-spacing:13.952000pt;}
.ws9{word-spacing:14.037333pt;}
.ws4e{word-spacing:14.122667pt;}
.ws72{word-spacing:14.165333pt;}
.ws16{word-spacing:14.634667pt;}
.ws45{word-spacing:14.677333pt;}
.ws42{word-spacing:14.762667pt;}
.ws61{word-spacing:15.104000pt;}
.ws5e{word-spacing:15.189333pt;}
.ws4f{word-spacing:16.170667pt;}
.ws33{word-spacing:16.554667pt;}
.ws47{word-spacing:17.408000pt;}
.ws52{word-spacing:18.005333pt;}
.ws29{word-spacing:18.090667pt;}
.ws69{word-spacing:18.218667pt;}
.ws86{word-spacing:18.304000pt;}
.wse{word-spacing:18.944000pt;}
.ws8f{word-spacing:18.986667pt;}
.ws7{word-spacing:19.285333pt;}
.ws26{word-spacing:20.138667pt;}
.ws39{word-spacing:22.869333pt;}
.ws37{word-spacing:28.501333pt;}
._f{margin-left:-5.444267pt;}
._a{margin-left:-4.381867pt;}
._4{margin-left:-3.195733pt;}
._9{margin-left:-2.238400pt;}
._2{margin-left:-1.107200pt;}
._7{width:1.582933pt;}
._8{width:2.529600pt;}
._5{width:3.752533pt;}
._3{width:5.232000pt;}
._d{width:6.775467pt;}
._c{width:7.812267pt;}
._0{width:8.732800pt;}
._1{width:9.859200pt;}
._10{width:10.850133pt;}
._b{width:12.996267pt;}
._6{width:14.084267pt;}
._14{width:15.227733pt;}
._13{width:16.145067pt;}
._e{width:17.408000pt;}
._15{width:18.756267pt;}
._12{width:22.852267pt;}
._11{width:69.205333pt;}
.fs1{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:69.333333pt;}
.fs5{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:23.569467pt;}
.y1{bottom:27.905600pt;}
.y4{bottom:33.169467pt;}
.y3{bottom:42.769467pt;}
.y2{bottom:52.369467pt;}
.y4b{bottom:89.608000pt;}
.ybf{bottom:91.812667pt;}
.y20{bottom:111.342533pt;}
.y9c{bottom:111.655200pt;}
.y76{bottom:126.229200pt;}
.y1f{bottom:135.203867pt;}
.y75{bottom:138.229200pt;}
.y7c{bottom:150.229200pt;}
.y74{bottom:160.895867pt;}
.y7b{bottom:162.229200pt;}
.y73{bottom:172.895867pt;}
.y7a{bottom:174.229200pt;}
.y72{bottom:184.895867pt;}
.y79{bottom:186.229200pt;}
.y2a{bottom:190.840533pt;}
.y71{bottom:196.895867pt;}
.y78{bottom:198.229200pt;}
.y29{bottom:205.507200pt;}
.y70{bottom:208.895867pt;}
.y77{bottom:210.229200pt;}
.y15{bottom:210.697467pt;}
.y28{bottom:220.173867pt;}
.y6f{bottom:220.895867pt;}
.y14{bottom:225.364133pt;}
.y6e{bottom:232.895867pt;}
.y27{bottom:234.840533pt;}
.y13{bottom:240.030800pt;}
.y6d{bottom:244.895867pt;}
.y12{bottom:254.697467pt;}
.y6c{bottom:256.895867pt;}
.y19{bottom:258.438533pt;}
.yde{bottom:264.644800pt;}
.y6b{bottom:268.895867pt;}
.y11{bottom:269.364133pt;}
.y18{bottom:272.838533pt;}
.ydd{bottom:276.644800pt;}
.y6a{bottom:280.895867pt;}
.y10{bottom:284.030800pt;}
.ydc{bottom:288.644800pt;}
.y69{bottom:292.895867pt;}
.yf{bottom:298.697467pt;}
.ydb{bottom:300.644800pt;}
.y68{bottom:304.895867pt;}
.yda{bottom:312.644800pt;}
.ye{bottom:313.364133pt;}
.y1e{bottom:314.595067pt;}
.y67{bottom:316.895867pt;}
.yd9{bottom:324.644800pt;}
.yd{bottom:328.030800pt;}
.y66{bottom:328.895867pt;}
.y113{bottom:328.939867pt;}
.yd8{bottom:336.644800pt;}
.y65{bottom:340.895867pt;}
.y112{bottom:341.739867pt;}
.y1d{bottom:349.077733pt;}
.y111{bottom:354.539867pt;}
.yc{bottom:357.364133pt;}
.y1c{bottom:361.877733pt;}
.y110{bottom:367.339867pt;}
.y105{bottom:368.801333pt;}
.yb{bottom:372.030800pt;}
.y1b{bottom:374.677733pt;}
.y64{bottom:377.796933pt;}
.y10f{bottom:380.139867pt;}
.yd7{bottom:380.644800pt;}
.y104{bottom:380.801333pt;}
.ya{bottom:386.697467pt;}
.y1a{bottom:387.477733pt;}
.yd6{bottom:392.644800pt;}
.y103{bottom:392.801333pt;}
.y114{bottom:392.939867pt;}
.y9{bottom:401.364133pt;}
.yd5{bottom:404.644800pt;}
.y102{bottom:404.801333pt;}
.y10e{bottom:405.739867pt;}
.y8{bottom:416.030800pt;}
.yd4{bottom:416.644800pt;}
.y101{bottom:416.801333pt;}
.y10d{bottom:418.539867pt;}
.y17{bottom:421.818133pt;}
.yd3{bottom:428.644800pt;}
.y7{bottom:430.697467pt;}
.y10c{bottom:431.339867pt;}
.y10b{bottom:444.139867pt;}
.yb7{bottom:444.153467pt;}
.y6{bottom:445.364133pt;}
.y10a{bottom:456.939867pt;}
.yb6{bottom:456.953467pt;}
.y100{bottom:460.801333pt;}
.y16{bottom:465.645200pt;}
.y109{bottom:469.739867pt;}
.yb5{bottom:469.753467pt;}
.yd2{bottom:472.644800pt;}
.yff{bottom:472.801333pt;}
.y94{bottom:476.367600pt;}
.y108{bottom:482.539867pt;}
.yb4{bottom:482.553467pt;}
.yd1{bottom:484.644800pt;}
.yfe{bottom:484.801333pt;}
.y48{bottom:485.694533pt;}
.y93{bottom:489.167600pt;}
.y107{bottom:495.339867pt;}
.yb3{bottom:495.353467pt;}
.yd0{bottom:496.644800pt;}
.yfd{bottom:496.801333pt;}
.y47{bottom:498.494533pt;}
.y26{bottom:498.737200pt;}
.y97{bottom:501.967600pt;}
.y21{bottom:504.619733pt;}
.y106{bottom:508.139867pt;}
.yb2{bottom:508.153467pt;}
.ycf{bottom:508.644800pt;}
.yfc{bottom:508.801333pt;}
.y46{bottom:511.294533pt;}
.y92{bottom:514.767600pt;}
.yce{bottom:520.644800pt;}
.yfb{bottom:520.801333pt;}
.yb1{bottom:520.953467pt;}
.y45{bottom:524.094533pt;}
.y91{bottom:527.567600pt;}
.ycd{bottom:532.644800pt;}
.yfa{bottom:532.801333pt;}
.yb0{bottom:533.753467pt;}
.y44{bottom:536.894533pt;}
.y90{bottom:540.367600pt;}
.ycc{bottom:544.644800pt;}
.yaf{bottom:546.553467pt;}
.y4a{bottom:549.694533pt;}
.y8f{bottom:553.167600pt;}
.yae{bottom:559.353467pt;}
.y43{bottom:562.494533pt;}
.y117{bottom:565.106400pt;}
.y8e{bottom:565.967600pt;}
.yad{bottom:572.153467pt;}
.y42{bottom:575.294533pt;}
.yf9{bottom:576.801333pt;}
.y8d{bottom:578.767600pt;}
.yac{bottom:584.953467pt;}
.y116{bottom:585.906400pt;}
.y41{bottom:588.094533pt;}
.ycb{bottom:588.644800pt;}
.yf8{bottom:588.801333pt;}
.y8c{bottom:591.567600pt;}
.yab{bottom:597.753467pt;}
.yca{bottom:600.644800pt;}
.yf7{bottom:600.801333pt;}
.y40{bottom:600.894533pt;}
.y96{bottom:604.367600pt;}
.yb9{bottom:610.553467pt;}
.yc9{bottom:612.644800pt;}
.yf6{bottom:612.801333pt;}
.y3f{bottom:613.694533pt;}
.y8b{bottom:617.167600pt;}
.yaa{bottom:623.353467pt;}
.yc8{bottom:624.644800pt;}
.yf5{bottom:624.801333pt;}
.y3e{bottom:626.494533pt;}
.y8a{bottom:629.967600pt;}
.ya9{bottom:636.153467pt;}
.yc7{bottom:636.644800pt;}
.yf4{bottom:636.801333pt;}
.y115{bottom:638.568400pt;}
.y49{bottom:639.294533pt;}
.y89{bottom:642.767600pt;}
.y5d{bottom:644.877467pt;}
.yc6{bottom:648.644800pt;}
.yf3{bottom:648.801333pt;}
.ya8{bottom:648.953467pt;}
.y3d{bottom:652.094533pt;}
.y88{bottom:655.567600pt;}
.y5c{bottom:656.877467pt;}
.yc5{bottom:660.644800pt;}
.yf2{bottom:660.801333pt;}
.ya7{bottom:661.753467pt;}
.y3c{bottom:664.894533pt;}
.y87{bottom:668.367600pt;}
.y5b{bottom:668.877467pt;}
.yf1{bottom:672.801333pt;}
.ya6{bottom:674.553467pt;}
.y3b{bottom:677.694533pt;}
.y5a{bottom:680.877467pt;}
.y86{bottom:681.167600pt;}
.yf0{bottom:684.801333pt;}
.ya5{bottom:687.353467pt;}
.y3a{bottom:690.494533pt;}
.y5f{bottom:692.877467pt;}
.y85{bottom:693.967600pt;}
.yef{bottom:696.801333pt;}
.yb8{bottom:700.153467pt;}
.y39{bottom:703.294533pt;}
.y59{bottom:703.544133pt;}
.yc4{bottom:704.644800pt;}
.y5e{bottom:704.877467pt;}
.y84{bottom:706.767600pt;}
.y120{bottom:710.276400pt;}
.ya4{bottom:712.953467pt;}
.y58{bottom:715.544133pt;}
.y38{bottom:716.094533pt;}
.yc3{bottom:716.644800pt;}
.y95{bottom:719.567600pt;}
.y11f{bottom:723.076400pt;}
.ya3{bottom:725.753467pt;}
.y57{bottom:727.544133pt;}
.yc2{bottom:728.644800pt;}
.y37{bottom:728.894533pt;}
.y83{bottom:732.367600pt;}
.y11e{bottom:735.876400pt;}
.ya2{bottom:738.553467pt;}
.y56{bottom:739.544133pt;}
.yc1{bottom:740.644800pt;}
.yee{bottom:740.801333pt;}
.y36{bottom:741.694533pt;}
.y82{bottom:745.167600pt;}
.y11d{bottom:748.676400pt;}
.ya1{bottom:751.353467pt;}
.y55{bottom:751.544133pt;}
.yc0{bottom:752.644800pt;}
.yed{bottom:752.801333pt;}
.y35{bottom:754.494533pt;}
.y81{bottom:757.967600pt;}
.y11c{bottom:761.476400pt;}
.y54{bottom:763.544133pt;}
.ya0{bottom:764.153467pt;}
.yec{bottom:764.801333pt;}
.y25{bottom:768.497200pt;}
.y80{bottom:770.767600pt;}
.y11b{bottom:774.276400pt;}
.y53{bottom:775.544133pt;}
.yeb{bottom:776.801333pt;}
.y9f{bottom:776.953467pt;}
.y34{bottom:780.094533pt;}
.y7f{bottom:783.567600pt;}
.ye0{bottom:784.697467pt;}
.y11a{bottom:787.076400pt;}
.y52{bottom:787.544133pt;}
.yea{bottom:788.801333pt;}
.y9e{bottom:789.753467pt;}
.y33{bottom:792.894533pt;}
.y7e{bottom:796.367600pt;}
.y51{bottom:799.544133pt;}
.y119{bottom:799.876400pt;}
.ye9{bottom:800.801333pt;}
.y9d{bottom:802.553467pt;}
.y32{bottom:805.694533pt;}
.y7d{bottom:809.167600pt;}
.y50{bottom:811.544133pt;}
.y118{bottom:812.676400pt;}
.ydf{bottom:813.056533pt;}
.y24{bottom:816.185200pt;}
.y31{bottom:818.494533pt;}
.y4f{bottom:823.544133pt;}
.y30{bottom:831.294533pt;}
.y4e{bottom:835.544133pt;}
.ybe{bottom:841.449467pt;}
.y2f{bottom:844.094533pt;}
.ye8{bottom:844.801333pt;}
.y4d{bottom:847.544133pt;}
.y9b{bottom:856.696000pt;}
.ye7{bottom:856.801333pt;}
.y2e{bottom:856.894533pt;}
.y4c{bottom:859.544133pt;}
.y123{bottom:861.839867pt;}
.ybd{bottom:862.249467pt;}
.y23{bottom:868.868667pt;}
.y9a{bottom:877.496000pt;}
.ye6{bottom:883.684667pt;}
.ye4{bottom:883.686400pt;}
.y122{bottom:890.198933pt;}
.ybc{bottom:890.608533pt;}
.ye3{bottom:896.486400pt;}
.y22{bottom:905.668667pt;}
.y63{bottom:907.631600pt;}
.y2d{bottom:911.053600pt;}
.ye5{bottom:912.043733pt;}
.ye2{bottom:928.648267pt;}
.y2c{bottom:931.853600pt;}
.y62{bottom:935.990667pt;}
.y99{bottom:936.963333pt;}
.y121{bottom:943.104933pt;}
.ybb{bottom:948.301867pt;}
.ye1{bottom:957.448267pt;}
.y98{bottom:965.763333pt;}
.yba{bottom:977.101867pt;}
.y61{bottom:984.937867pt;}
.y2b{bottom:989.940800pt;}
.y60{bottom:1013.737867pt;}
.h3{height:22.171875pt;}
.hc{height:27.179688pt;}
.h2{height:30.464000pt;}
.hd{height:31.062500pt;}
.h4{height:31.083333pt;}
.h6{height:34.272000pt;}
.h5{height:34.968750pt;}
.hb{height:50.476562pt;}
.ha{height:58.242188pt;}
.h8{height:63.984375pt;}
.h9{height:69.890625pt;}
.h7{height:89.304688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:51.023600pt;}
.xc{left:54.257200pt;}
.x18{left:70.157200pt;}
.x19{left:72.016000pt;}
.x3{left:75.590533pt;}
.x13{left:84.346400pt;}
.x8{left:128.294667pt;}
.xd{left:170.078667pt;}
.x11{left:171.338533pt;}
.x1a{left:176.102933pt;}
.x15{left:177.637733pt;}
.x7{left:210.297333pt;}
.x9{left:267.604800pt;}
.xa{left:302.836800pt;}
.x2{left:322.204667pt;}
.x16{left:329.069333pt;}
.x12{left:337.319333pt;}
.x17{left:346.148800pt;}
.x10{left:377.388533pt;}
.xe{left:404.850400pt;}
.x14{left:413.228400pt;}
.xf{left:428.850400pt;}
.xb{left:467.905467pt;}
.x6{left:469.572133pt;}
.x5{left:493.417333pt;}
.x4{left:516.477600pt;}
}




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