
    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_be32f2eb16aeb63ba5df29fb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a916a911d4197ce92136cde6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.915039;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_f95a45b493af17d394d6789a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fcb1de38c68f1e6291c752f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873535;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_e5b2f9998fdaa250eace380f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_14bcf44ada1252e357483848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915039;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_430a0972b1a30155ee8249d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_64e28e2fe8d8ca8591142a5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_c074dd1826271eb9bb1af618.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.863770;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_14bcf44ada1252e357483848.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915039;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_e5b2f9998fdaa250eace380f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_496d5cbe2c68ae5351369f4c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fcb1de38c68f1e6291c752f8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_886a6a70cbf704ba1db869db.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ead68924d3ca923ea1beb0f7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e0faa61a937d7b10910a3033.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ea863dfc038185da9f6273e3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c00e3ccdf640921796c8637a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.873535;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:ff13;src:url('chunks/assets/font_e5b2f9998fdaa250eace380f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.931000;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:ff14;src:url('chunks/assets/font_4ca7c9e2e363cfa2c57c8a6e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.856934;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:ff15;src:url('chunks/assets/font_e5b2f9998fdaa250eace380f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.931000;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:ff16;src:url('chunks/assets/font_c00e3ccdf640921796c8637a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.873535;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;}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-7.200000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.007800px;}
.ls0{letter-spacing:5.250000px;}
.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:-17.628000px;}
.ws2{word-spacing:-16.272000px;}
.ws4f{word-spacing:-2.664000px;}
.ws47{word-spacing:-2.592000px;}
.ws2b{word-spacing:-2.448000px;}
.ws19{word-spacing:-2.304000px;}
.ws57{word-spacing:-2.160000px;}
.ws56{word-spacing:-2.016000px;}
.ws36{word-spacing:-1.944000px;}
.ws3a{word-spacing:-1.872000px;}
.wsc{word-spacing:-1.800000px;}
.ws29{word-spacing:-1.728000px;}
.ws26{word-spacing:-1.656000px;}
.ws52{word-spacing:-1.584000px;}
.ws37{word-spacing:-1.512000px;}
.ws2d{word-spacing:-1.368000px;}
.ws3f{word-spacing:-1.224000px;}
.ws27{word-spacing:-1.152000px;}
.ws1{word-spacing:-1.080000px;}
.ws7{word-spacing:-1.008000px;}
.ws39{word-spacing:-0.792000px;}
.ws5{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.504000px;}
.ws45{word-spacing:-0.432000px;}
.wse{word-spacing:-0.360000px;}
.ws55{word-spacing:-0.288000px;}
.ws5b{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.072000px;}
.ws25{word-spacing:0.144000px;}
.wsa{word-spacing:0.216000px;}
.ws50{word-spacing:0.432000px;}
.ws33{word-spacing:0.504000px;}
.ws15{word-spacing:0.576000px;}
.ws54{word-spacing:0.648000px;}
.ws48{word-spacing:0.720000px;}
.ws6{word-spacing:0.792000px;}
.ws2e{word-spacing:1.008000px;}
.ws58{word-spacing:1.080000px;}
.ws51{word-spacing:1.152000px;}
.ws21{word-spacing:1.224000px;}
.ws49{word-spacing:1.368000px;}
.ws10{word-spacing:1.512000px;}
.ws32{word-spacing:1.584000px;}
.ws3e{word-spacing:1.656000px;}
.ws35{word-spacing:1.728000px;}
.ws1e{word-spacing:1.800000px;}
.ws23{word-spacing:1.944000px;}
.ws22{word-spacing:2.016000px;}
.ws3d{word-spacing:2.088000px;}
.ws9{word-spacing:2.160000px;}
.ws3b{word-spacing:2.232000px;}
.ws2f{word-spacing:2.376000px;}
.ws46{word-spacing:2.448000px;}
.ws3c{word-spacing:2.592000px;}
.ws4e{word-spacing:2.736000px;}
.ws59{word-spacing:2.808000px;}
.ws38{word-spacing:2.880000px;}
.ws53{word-spacing:3.096000px;}
.ws11{word-spacing:3.168000px;}
.ws5c{word-spacing:3.312000px;}
.ws1c{word-spacing:3.384000px;}
.ws31{word-spacing:3.456000px;}
.ws43{word-spacing:3.600000px;}
.ws5a{word-spacing:3.672000px;}
.ws1f{word-spacing:3.744000px;}
.ws13{word-spacing:3.888000px;}
.ws20{word-spacing:4.032000px;}
.ws16{word-spacing:4.248000px;}
.wsf{word-spacing:4.320000px;}
.ws34{word-spacing:4.464000px;}
.ws17{word-spacing:4.536000px;}
.ws41{word-spacing:4.680000px;}
.ws30{word-spacing:4.824000px;}
.ws14{word-spacing:4.896000px;}
.ws4a{word-spacing:5.112000px;}
.ws1b{word-spacing:5.184000px;}
.ws4b{word-spacing:5.400000px;}
.ws44{word-spacing:5.472000px;}
.ws4d{word-spacing:5.832000px;}
.ws8{word-spacing:6.048000px;}
.ws28{word-spacing:6.120000px;}
.ws2c{word-spacing:6.264000px;}
.ws40{word-spacing:6.480000px;}
.ws2a{word-spacing:6.552000px;}
.ws4c{word-spacing:6.840000px;}
.wsb{word-spacing:7.632000px;}
.ws42{word-spacing:7.920000px;}
.wsd{word-spacing:8.496000px;}
.ws12{word-spacing:10.368000px;}
.ws4{word-spacing:199.728000px;}
._4{margin-left:-12.630000px;}
._10{margin-left:-7.803000px;}
._6{margin-left:-6.731400px;}
._8{margin-left:-5.130000px;}
._9{margin-left:-3.837600px;}
._7{margin-left:-2.398800px;}
._5{margin-left:-1.305000px;}
._0{width:1.087200px;}
._b{width:3.100800px;}
._a{width:4.536000px;}
._f{width:5.563800px;}
._e{width:6.796200px;}
._d{width:8.308800px;}
._c{width:9.800400px;}
._13{width:47.038800px;}
._12{width:99.090000px;}
._3{width:168.242400px;}
._1{width:173.635200px;}
._11{width:199.728000px;}
._2{width:200.808000px;}
.fca{color:rgb(32,28,63);}
.fc9{color:rgb(248,225,233);}
.fc7{color:rgb(163,25,86);}
.fc6{color:rgb(154,24,64);}
.fc4{color:rgb(246,244,196);}
.fc3{color:transparent;}
.fc8{color:rgb(240,246,177);}
.fc2{color:rgb(235,248,239);}
.fc1{color:rgb(5,3,1);}
.fcb{color:rgb(35,31,32);}
.fc5{color:rgb(238,217,219);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:150.000000px;}
.fs9{font-size:180.000000px;}
.fs4{font-size:198.000000px;}
.fs2{font-size:294.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:26.264850px;}
.y2{bottom:49.216500px;}
.y16{bottom:137.878950px;}
.yf6{bottom:145.240200px;}
.y61{bottom:145.594500px;}
.y5{bottom:154.192800px;}
.ycc{bottom:155.870100px;}
.ya4{bottom:157.158900px;}
.ye2{bottom:157.996050px;}
.y15{bottom:164.878950px;}
.y88{bottom:165.791400px;}
.y51{bottom:167.562900px;}
.y60{bottom:168.094500px;}
.ycb{bottom:178.370100px;}
.ye{bottom:179.203950px;}
.ya3{bottom:179.658900px;}
.ye1{bottom:180.496050px;}
.y87{bottom:188.291400px;}
.y50{bottom:190.062900px;}
.y5f{bottom:190.594500px;}
.y14{bottom:191.878950px;}
.yca{bottom:200.870100px;}
.ya2{bottom:202.158900px;}
.ye0{bottom:202.996050px;}
.yd{bottom:203.203950px;}
.y86{bottom:210.791400px;}
.y4f{bottom:212.562900px;}
.y5e{bottom:213.094500px;}
.y11e{bottom:218.870100px;}
.y13{bottom:218.878950px;}
.yc9{bottom:223.370100px;}
.ya1{bottom:224.658900px;}
.ydf{bottom:225.496050px;}
.yc{bottom:227.203950px;}
.y85{bottom:233.291400px;}
.y4e{bottom:235.062900px;}
.y5d{bottom:235.594500px;}
.y11d{bottom:242.120100px;}
.yc8{bottom:245.870100px;}
.y12{bottom:245.878950px;}
.ya0{bottom:247.158900px;}
.yde{bottom:247.996050px;}
.yb{bottom:251.203950px;}
.y84{bottom:255.791400px;}
.y4d{bottom:257.562900px;}
.y5c{bottom:258.094500px;}
.y2d{bottom:261.147750px;}
.y11c{bottom:265.370100px;}
.yc7{bottom:268.370100px;}
.y9f{bottom:269.658900px;}
.ydd{bottom:270.496050px;}
.y11{bottom:272.878950px;}
.ya{bottom:275.203950px;}
.y83{bottom:278.291400px;}
.y4c{bottom:280.062900px;}
.y5b{bottom:280.594500px;}
.y11b{bottom:288.620100px;}
.yc6{bottom:290.870100px;}
.y2c{bottom:291.147750px;}
.y9e{bottom:292.158900px;}
.ydc{bottom:292.996050px;}
.y9{bottom:299.203950px;}
.y10{bottom:299.878950px;}
.y82{bottom:300.791400px;}
.y5a{bottom:303.094500px;}
.y11a{bottom:311.870100px;}
.yc5{bottom:313.370100px;}
.y9d{bottom:314.658900px;}
.ydb{bottom:315.496050px;}
.y81{bottom:323.291400px;}
.y4b{bottom:325.062900px;}
.y59{bottom:325.594500px;}
.y8{bottom:326.203950px;}
.yf{bottom:326.878950px;}
.yc4{bottom:335.870100px;}
.y2b{bottom:336.147750px;}
.y9c{bottom:337.158900px;}
.yda{bottom:337.996050px;}
.y80{bottom:345.791400px;}
.y4a{bottom:347.562900px;}
.y58{bottom:348.094500px;}
.yc3{bottom:358.370100px;}
.yd9{bottom:360.496050px;}
.y2a{bottom:366.147750px;}
.y7f{bottom:368.291400px;}
.y49{bottom:370.062900px;}
.y57{bottom:370.594500px;}
.yc2{bottom:380.870100px;}
.y119{bottom:381.620100px;}
.yd8{bottom:382.996050px;}
.y7e{bottom:390.791400px;}
.y48{bottom:392.562900px;}
.y56{bottom:393.094500px;}
.yc1{bottom:403.370100px;}
.y118{bottom:404.870100px;}
.yd7{bottom:405.496050px;}
.y29{bottom:411.147750px;}
.y7d{bottom:413.291400px;}
.y47{bottom:415.062900px;}
.yc0{bottom:425.870100px;}
.yd6{bottom:427.996050px;}
.y117{bottom:428.120100px;}
.y7c{bottom:435.791400px;}
.y46{bottom:437.562900px;}
.y28{bottom:441.147750px;}
.ybf{bottom:448.370100px;}
.yd5{bottom:450.496050px;}
.y116{bottom:451.370100px;}
.y7b{bottom:458.291400px;}
.y45{bottom:460.062900px;}
.ybe{bottom:470.870100px;}
.y27{bottom:471.147750px;}
.y115{bottom:474.620100px;}
.y123{bottom:475.122000px;}
.y44{bottom:482.562900px;}
.ybd{bottom:493.370100px;}
.yd4{bottom:495.496050px;}
.y122{bottom:497.622000px;}
.y7a{bottom:503.291400px;}
.y43{bottom:505.062900px;}
.ybc{bottom:515.870100px;}
.y26{bottom:516.147750px;}
.yd3{bottom:517.996050px;}
.y79{bottom:525.791400px;}
.y42{bottom:527.562900px;}
.ybb{bottom:538.370100px;}
.y121{bottom:542.622000px;}
.y25{bottom:546.147750px;}
.y78{bottom:548.291400px;}
.y41{bottom:550.062900px;}
.y10b{bottom:560.870100px;}
.y77{bottom:570.791400px;}
.y40{bottom:572.562900px;}
.yba{bottom:583.370100px;}
.y120{bottom:587.622000px;}
.y24{bottom:591.147750px;}
.y76{bottom:593.291400px;}
.y3f{bottom:595.062900px;}
.yb9{bottom:605.870100px;}
.y11f{bottom:610.122000px;}
.y75{bottom:615.791400px;}
.y23{bottom:621.147750px;}
.y2e{bottom:624.251850px;}
.yb8{bottom:628.370100px;}
.y7{bottom:628.503750px;}
.y10a{bottom:632.622000px;}
.y74{bottom:638.291400px;}
.y3e{bottom:640.062900px;}
.yb7{bottom:650.870100px;}
.y22{bottom:651.147750px;}
.y9b{bottom:652.158900px;}
.y18{bottom:655.078650px;}
.y109{bottom:655.122000px;}
.y73{bottom:660.791400px;}
.y3d{bottom:662.562900px;}
.yf5{bottom:662.740200px;}
.yb6{bottom:673.370100px;}
.y9a{bottom:674.658900px;}
.y108{bottom:677.622000px;}
.y72{bottom:683.291400px;}
.y3c{bottom:685.062900px;}
.yf4{bottom:685.240200px;}
.yb5{bottom:695.870100px;}
.y21{bottom:696.147750px;}
.y99{bottom:697.158900px;}
.y107{bottom:700.122000px;}
.y71{bottom:705.791400px;}
.y3b{bottom:707.562900px;}
.yf3{bottom:707.740200px;}
.yb4{bottom:718.370100px;}
.y98{bottom:719.658900px;}
.ye3{bottom:720.496050px;}
.y106{bottom:722.622000px;}
.y20{bottom:726.147750px;}
.y70{bottom:728.291400px;}
.y3a{bottom:730.062900px;}
.yf2{bottom:730.240200px;}
.yb3{bottom:740.870100px;}
.y97{bottom:742.158900px;}
.y105{bottom:745.122000px;}
.y39{bottom:752.562900px;}
.yf1{bottom:752.740200px;}
.y1f{bottom:756.147750px;}
.yb2{bottom:763.370100px;}
.y96{bottom:764.658900px;}
.y104{bottom:767.622000px;}
.y6f{bottom:773.291400px;}
.y38{bottom:775.062900px;}
.yf0{bottom:775.240200px;}
.yb1{bottom:785.870100px;}
.y1e{bottom:786.147750px;}
.y95{bottom:787.158900px;}
.y103{bottom:790.122000px;}
.y6e{bottom:795.791400px;}
.y37{bottom:797.562900px;}
.yef{bottom:797.740200px;}
.yb0{bottom:808.370100px;}
.y94{bottom:809.658900px;}
.y102{bottom:812.622000px;}
.y1d{bottom:816.147750px;}
.y6d{bottom:818.291400px;}
.y36{bottom:820.062900px;}
.yee{bottom:820.240200px;}
.yaf{bottom:830.870100px;}
.y93{bottom:832.158900px;}
.y101{bottom:835.122000px;}
.y6c{bottom:840.791400px;}
.y35{bottom:842.562900px;}
.yed{bottom:842.740200px;}
.y1c{bottom:846.147750px;}
.y114{bottom:846.620100px;}
.yae{bottom:853.370100px;}
.y92{bottom:854.658900px;}
.y100{bottom:857.622000px;}
.y6b{bottom:863.291400px;}
.y34{bottom:865.062900px;}
.yec{bottom:865.240200px;}
.y113{bottom:869.870100px;}
.yad{bottom:875.870100px;}
.y91{bottom:877.158900px;}
.yff{bottom:880.122000px;}
.y6a{bottom:885.791400px;}
.y33{bottom:887.562900px;}
.yeb{bottom:887.740200px;}
.y1b{bottom:891.147750px;}
.y112{bottom:893.120100px;}
.yac{bottom:898.370100px;}
.y90{bottom:899.658900px;}
.yfe{bottom:902.622000px;}
.y69{bottom:908.291400px;}
.y32{bottom:910.062900px;}
.yea{bottom:910.240200px;}
.y111{bottom:916.370100px;}
.yab{bottom:920.870100px;}
.y1a{bottom:921.147750px;}
.y8f{bottom:922.158900px;}
.yfd{bottom:925.122000px;}
.y68{bottom:930.791400px;}
.y31{bottom:932.562900px;}
.ye9{bottom:932.740200px;}
.y110{bottom:939.620100px;}
.yaa{bottom:943.370100px;}
.y8e{bottom:944.658900px;}
.yd2{bottom:945.496050px;}
.yfc{bottom:947.622000px;}
.y67{bottom:953.291400px;}
.y30{bottom:955.062900px;}
.ye8{bottom:955.240200px;}
.y10f{bottom:962.870100px;}
.ya9{bottom:965.870100px;}
.y8d{bottom:967.158900px;}
.yd1{bottom:967.996050px;}
.yfb{bottom:970.122000px;}
.y19{bottom:972.747750px;}
.y66{bottom:975.791400px;}
.ye7{bottom:977.740200px;}
.y10e{bottom:986.120100px;}
.ya8{bottom:988.370100px;}
.y8c{bottom:989.658900px;}
.yd0{bottom:990.496050px;}
.yfa{bottom:992.622000px;}
.y65{bottom:998.291400px;}
.y2f{bottom:1000.062900px;}
.ye6{bottom:1000.240200px;}
.y55{bottom:1000.594500px;}
.y10d{bottom:1009.370100px;}
.ya7{bottom:1010.870100px;}
.y8b{bottom:1012.158900px;}
.ycf{bottom:1012.996050px;}
.yf9{bottom:1015.122000px;}
.y64{bottom:1020.791400px;}
.ye5{bottom:1022.740200px;}
.y54{bottom:1023.094500px;}
.y10c{bottom:1032.620100px;}
.ya6{bottom:1033.370100px;}
.y8a{bottom:1034.658900px;}
.yce{bottom:1035.496050px;}
.yf8{bottom:1037.622000px;}
.y63{bottom:1043.291400px;}
.ye4{bottom:1045.240200px;}
.y53{bottom:1045.594500px;}
.ya5{bottom:1055.870100px;}
.y89{bottom:1057.158900px;}
.ycd{bottom:1057.996050px;}
.yf7{bottom:1060.122000px;}
.y62{bottom:1065.791400px;}
.y52{bottom:1068.094500px;}
.y4{bottom:1084.436250px;}
.y3{bottom:1129.436250px;}
.y6{bottom:1190.497950px;}
.y17{bottom:1191.561000px;}
.h10{height:45.890625px;}
.h8{height:48.656250px;}
.h2{height:49.482422px;}
.hb{height:53.472656px;}
.ha{height:54.234375px;}
.hf{height:58.406250px;}
.h3{height:59.378906px;}
.hd{height:64.327148px;}
.h9{height:66.750000px;}
.h7{height:76.680000px;}
.he{height:89.068359px;}
.hc{height:120.234375px;}
.h5{height:123.706055px;}
.h6{height:132.257812px;}
.h4{height:196.382812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:25.511700px;}
.x2{left:46.771650px;}
.x6{left:76.535400px;}
.x17{left:92.480250px;}
.x22{left:99.283500px;}
.x1f{left:101.692950px;}
.x21{left:104.952750px;}
.x2c{left:106.299150px;}
.x23{left:107.362200px;}
.x1a{left:109.913400px;}
.x2a{left:119.480250px;}
.x4{left:124.995150px;}
.x2b{left:161.574750px;}
.x24{left:162.637800px;}
.x25{left:164.763750px;}
.x3{left:174.036750px;}
.x8{left:179.053650px;}
.xa{left:213.360600px;}
.x1e{left:227.826900px;}
.xc{left:231.427650px;}
.xb{left:234.212250px;}
.xe{left:237.026250px;}
.xd{left:246.512550px;}
.x9{left:248.859300px;}
.x1d{left:300.624450px;}
.x2d{left:318.897750px;}
.x2e{left:332.078700px;}
.x5{left:341.605350px;}
.x1c{left:361.419150px;}
.x19{left:382.317900px;}
.x27{left:383.994450px;}
.x29{left:388.243800px;}
.x28{left:393.629700px;}
.x26{left:394.653450px;}
.x20{left:441.850500px;}
.x12{left:449.554950px;}
.xf{left:472.254150px;}
.x16{left:473.834700px;}
.x13{left:478.781100px;}
.x11{left:490.568700px;}
.x14{left:493.453800px;}
.x10{left:499.795050px;}
.x15{left:526.555200px;}
.x2f{left:620.061300px;}
.x1{left:627.663900px;}
.x1b{left:819.212550px;}
.x7{left:824.881950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-6.400000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.006933pt;}
.ls0{letter-spacing:4.666667pt;}
.ws3{word-spacing:-15.669333pt;}
.ws2{word-spacing:-14.464000pt;}
.ws4f{word-spacing:-2.368000pt;}
.ws47{word-spacing:-2.304000pt;}
.ws2b{word-spacing:-2.176000pt;}
.ws19{word-spacing:-2.048000pt;}
.ws57{word-spacing:-1.920000pt;}
.ws56{word-spacing:-1.792000pt;}
.ws36{word-spacing:-1.728000pt;}
.ws3a{word-spacing:-1.664000pt;}
.wsc{word-spacing:-1.600000pt;}
.ws29{word-spacing:-1.536000pt;}
.ws26{word-spacing:-1.472000pt;}
.ws52{word-spacing:-1.408000pt;}
.ws37{word-spacing:-1.344000pt;}
.ws2d{word-spacing:-1.216000pt;}
.ws3f{word-spacing:-1.088000pt;}
.ws27{word-spacing:-1.024000pt;}
.ws1{word-spacing:-0.960000pt;}
.ws7{word-spacing:-0.896000pt;}
.ws39{word-spacing:-0.704000pt;}
.ws5{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.448000pt;}
.ws45{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.320000pt;}
.ws55{word-spacing:-0.256000pt;}
.ws5b{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.064000pt;}
.ws25{word-spacing:0.128000pt;}
.wsa{word-spacing:0.192000pt;}
.ws50{word-spacing:0.384000pt;}
.ws33{word-spacing:0.448000pt;}
.ws15{word-spacing:0.512000pt;}
.ws54{word-spacing:0.576000pt;}
.ws48{word-spacing:0.640000pt;}
.ws6{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.896000pt;}
.ws58{word-spacing:0.960000pt;}
.ws51{word-spacing:1.024000pt;}
.ws21{word-spacing:1.088000pt;}
.ws49{word-spacing:1.216000pt;}
.ws10{word-spacing:1.344000pt;}
.ws32{word-spacing:1.408000pt;}
.ws3e{word-spacing:1.472000pt;}
.ws35{word-spacing:1.536000pt;}
.ws1e{word-spacing:1.600000pt;}
.ws23{word-spacing:1.728000pt;}
.ws22{word-spacing:1.792000pt;}
.ws3d{word-spacing:1.856000pt;}
.ws9{word-spacing:1.920000pt;}
.ws3b{word-spacing:1.984000pt;}
.ws2f{word-spacing:2.112000pt;}
.ws46{word-spacing:2.176000pt;}
.ws3c{word-spacing:2.304000pt;}
.ws4e{word-spacing:2.432000pt;}
.ws59{word-spacing:2.496000pt;}
.ws38{word-spacing:2.560000pt;}
.ws53{word-spacing:2.752000pt;}
.ws11{word-spacing:2.816000pt;}
.ws5c{word-spacing:2.944000pt;}
.ws1c{word-spacing:3.008000pt;}
.ws31{word-spacing:3.072000pt;}
.ws43{word-spacing:3.200000pt;}
.ws5a{word-spacing:3.264000pt;}
.ws1f{word-spacing:3.328000pt;}
.ws13{word-spacing:3.456000pt;}
.ws20{word-spacing:3.584000pt;}
.ws16{word-spacing:3.776000pt;}
.wsf{word-spacing:3.840000pt;}
.ws34{word-spacing:3.968000pt;}
.ws17{word-spacing:4.032000pt;}
.ws41{word-spacing:4.160000pt;}
.ws30{word-spacing:4.288000pt;}
.ws14{word-spacing:4.352000pt;}
.ws4a{word-spacing:4.544000pt;}
.ws1b{word-spacing:4.608000pt;}
.ws4b{word-spacing:4.800000pt;}
.ws44{word-spacing:4.864000pt;}
.ws4d{word-spacing:5.184000pt;}
.ws8{word-spacing:5.376000pt;}
.ws28{word-spacing:5.440000pt;}
.ws2c{word-spacing:5.568000pt;}
.ws40{word-spacing:5.760000pt;}
.ws2a{word-spacing:5.824000pt;}
.ws4c{word-spacing:6.080000pt;}
.wsb{word-spacing:6.784000pt;}
.ws42{word-spacing:7.040000pt;}
.wsd{word-spacing:7.552000pt;}
.ws12{word-spacing:9.216000pt;}
.ws4{word-spacing:177.536000pt;}
._4{margin-left:-11.226667pt;}
._10{margin-left:-6.936000pt;}
._6{margin-left:-5.983467pt;}
._8{margin-left:-4.560000pt;}
._9{margin-left:-3.411200pt;}
._7{margin-left:-2.132267pt;}
._5{margin-left:-1.160000pt;}
._0{width:0.966400pt;}
._b{width:2.756267pt;}
._a{width:4.032000pt;}
._f{width:4.945600pt;}
._e{width:6.041067pt;}
._d{width:7.385600pt;}
._c{width:8.711467pt;}
._13{width:41.812267pt;}
._12{width:88.080000pt;}
._3{width:149.548800pt;}
._1{width:154.342400pt;}
._11{width:177.536000pt;}
._2{width:178.496000pt;}
.fs0{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:133.333333pt;}
.fs9{font-size:160.000000pt;}
.fs4{font-size:176.000000pt;}
.fs2{font-size:261.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:23.346533pt;}
.y2{bottom:43.748000pt;}
.y16{bottom:122.559067pt;}
.yf6{bottom:129.102400pt;}
.y61{bottom:129.417333pt;}
.y5{bottom:137.060267pt;}
.ycc{bottom:138.551200pt;}
.ya4{bottom:139.696800pt;}
.ye2{bottom:140.440933pt;}
.y15{bottom:146.559067pt;}
.y88{bottom:147.370133pt;}
.y51{bottom:148.944800pt;}
.y60{bottom:149.417333pt;}
.ycb{bottom:158.551200pt;}
.ye{bottom:159.292400pt;}
.ya3{bottom:159.696800pt;}
.ye1{bottom:160.440933pt;}
.y87{bottom:167.370133pt;}
.y50{bottom:168.944800pt;}
.y5f{bottom:169.417333pt;}
.y14{bottom:170.559067pt;}
.yca{bottom:178.551200pt;}
.ya2{bottom:179.696800pt;}
.ye0{bottom:180.440933pt;}
.yd{bottom:180.625733pt;}
.y86{bottom:187.370133pt;}
.y4f{bottom:188.944800pt;}
.y5e{bottom:189.417333pt;}
.y11e{bottom:194.551200pt;}
.y13{bottom:194.559067pt;}
.yc9{bottom:198.551200pt;}
.ya1{bottom:199.696800pt;}
.ydf{bottom:200.440933pt;}
.yc{bottom:201.959067pt;}
.y85{bottom:207.370133pt;}
.y4e{bottom:208.944800pt;}
.y5d{bottom:209.417333pt;}
.y11d{bottom:215.217867pt;}
.yc8{bottom:218.551200pt;}
.y12{bottom:218.559067pt;}
.ya0{bottom:219.696800pt;}
.yde{bottom:220.440933pt;}
.yb{bottom:223.292400pt;}
.y84{bottom:227.370133pt;}
.y4d{bottom:228.944800pt;}
.y5c{bottom:229.417333pt;}
.y2d{bottom:232.131333pt;}
.y11c{bottom:235.884533pt;}
.yc7{bottom:238.551200pt;}
.y9f{bottom:239.696800pt;}
.ydd{bottom:240.440933pt;}
.y11{bottom:242.559067pt;}
.ya{bottom:244.625733pt;}
.y83{bottom:247.370133pt;}
.y4c{bottom:248.944800pt;}
.y5b{bottom:249.417333pt;}
.y11b{bottom:256.551200pt;}
.yc6{bottom:258.551200pt;}
.y2c{bottom:258.798000pt;}
.y9e{bottom:259.696800pt;}
.ydc{bottom:260.440933pt;}
.y9{bottom:265.959067pt;}
.y10{bottom:266.559067pt;}
.y82{bottom:267.370133pt;}
.y5a{bottom:269.417333pt;}
.y11a{bottom:277.217867pt;}
.yc5{bottom:278.551200pt;}
.y9d{bottom:279.696800pt;}
.ydb{bottom:280.440933pt;}
.y81{bottom:287.370133pt;}
.y4b{bottom:288.944800pt;}
.y59{bottom:289.417333pt;}
.y8{bottom:289.959067pt;}
.yf{bottom:290.559067pt;}
.yc4{bottom:298.551200pt;}
.y2b{bottom:298.798000pt;}
.y9c{bottom:299.696800pt;}
.yda{bottom:300.440933pt;}
.y80{bottom:307.370133pt;}
.y4a{bottom:308.944800pt;}
.y58{bottom:309.417333pt;}
.yc3{bottom:318.551200pt;}
.yd9{bottom:320.440933pt;}
.y2a{bottom:325.464667pt;}
.y7f{bottom:327.370133pt;}
.y49{bottom:328.944800pt;}
.y57{bottom:329.417333pt;}
.yc2{bottom:338.551200pt;}
.y119{bottom:339.217867pt;}
.yd8{bottom:340.440933pt;}
.y7e{bottom:347.370133pt;}
.y48{bottom:348.944800pt;}
.y56{bottom:349.417333pt;}
.yc1{bottom:358.551200pt;}
.y118{bottom:359.884533pt;}
.yd7{bottom:360.440933pt;}
.y29{bottom:365.464667pt;}
.y7d{bottom:367.370133pt;}
.y47{bottom:368.944800pt;}
.yc0{bottom:378.551200pt;}
.yd6{bottom:380.440933pt;}
.y117{bottom:380.551200pt;}
.y7c{bottom:387.370133pt;}
.y46{bottom:388.944800pt;}
.y28{bottom:392.131333pt;}
.ybf{bottom:398.551200pt;}
.yd5{bottom:400.440933pt;}
.y116{bottom:401.217867pt;}
.y7b{bottom:407.370133pt;}
.y45{bottom:408.944800pt;}
.ybe{bottom:418.551200pt;}
.y27{bottom:418.798000pt;}
.y115{bottom:421.884533pt;}
.y123{bottom:422.330667pt;}
.y44{bottom:428.944800pt;}
.ybd{bottom:438.551200pt;}
.yd4{bottom:440.440933pt;}
.y122{bottom:442.330667pt;}
.y7a{bottom:447.370133pt;}
.y43{bottom:448.944800pt;}
.ybc{bottom:458.551200pt;}
.y26{bottom:458.798000pt;}
.yd3{bottom:460.440933pt;}
.y79{bottom:467.370133pt;}
.y42{bottom:468.944800pt;}
.ybb{bottom:478.551200pt;}
.y121{bottom:482.330667pt;}
.y25{bottom:485.464667pt;}
.y78{bottom:487.370133pt;}
.y41{bottom:488.944800pt;}
.y10b{bottom:498.551200pt;}
.y77{bottom:507.370133pt;}
.y40{bottom:508.944800pt;}
.yba{bottom:518.551200pt;}
.y120{bottom:522.330667pt;}
.y24{bottom:525.464667pt;}
.y76{bottom:527.370133pt;}
.y3f{bottom:528.944800pt;}
.yb9{bottom:538.551200pt;}
.y11f{bottom:542.330667pt;}
.y75{bottom:547.370133pt;}
.y23{bottom:552.131333pt;}
.y2e{bottom:554.890533pt;}
.yb8{bottom:558.551200pt;}
.y7{bottom:558.670000pt;}
.y10a{bottom:562.330667pt;}
.y74{bottom:567.370133pt;}
.y3e{bottom:568.944800pt;}
.yb7{bottom:578.551200pt;}
.y22{bottom:578.798000pt;}
.y9b{bottom:579.696800pt;}
.y18{bottom:582.292133pt;}
.y109{bottom:582.330667pt;}
.y73{bottom:587.370133pt;}
.y3d{bottom:588.944800pt;}
.yf5{bottom:589.102400pt;}
.yb6{bottom:598.551200pt;}
.y9a{bottom:599.696800pt;}
.y108{bottom:602.330667pt;}
.y72{bottom:607.370133pt;}
.y3c{bottom:608.944800pt;}
.yf4{bottom:609.102400pt;}
.yb5{bottom:618.551200pt;}
.y21{bottom:618.798000pt;}
.y99{bottom:619.696800pt;}
.y107{bottom:622.330667pt;}
.y71{bottom:627.370133pt;}
.y3b{bottom:628.944800pt;}
.yf3{bottom:629.102400pt;}
.yb4{bottom:638.551200pt;}
.y98{bottom:639.696800pt;}
.ye3{bottom:640.440933pt;}
.y106{bottom:642.330667pt;}
.y20{bottom:645.464667pt;}
.y70{bottom:647.370133pt;}
.y3a{bottom:648.944800pt;}
.yf2{bottom:649.102400pt;}
.yb3{bottom:658.551200pt;}
.y97{bottom:659.696800pt;}
.y105{bottom:662.330667pt;}
.y39{bottom:668.944800pt;}
.yf1{bottom:669.102400pt;}
.y1f{bottom:672.131333pt;}
.yb2{bottom:678.551200pt;}
.y96{bottom:679.696800pt;}
.y104{bottom:682.330667pt;}
.y6f{bottom:687.370133pt;}
.y38{bottom:688.944800pt;}
.yf0{bottom:689.102400pt;}
.yb1{bottom:698.551200pt;}
.y1e{bottom:698.798000pt;}
.y95{bottom:699.696800pt;}
.y103{bottom:702.330667pt;}
.y6e{bottom:707.370133pt;}
.y37{bottom:708.944800pt;}
.yef{bottom:709.102400pt;}
.yb0{bottom:718.551200pt;}
.y94{bottom:719.696800pt;}
.y102{bottom:722.330667pt;}
.y1d{bottom:725.464667pt;}
.y6d{bottom:727.370133pt;}
.y36{bottom:728.944800pt;}
.yee{bottom:729.102400pt;}
.yaf{bottom:738.551200pt;}
.y93{bottom:739.696800pt;}
.y101{bottom:742.330667pt;}
.y6c{bottom:747.370133pt;}
.y35{bottom:748.944800pt;}
.yed{bottom:749.102400pt;}
.y1c{bottom:752.131333pt;}
.y114{bottom:752.551200pt;}
.yae{bottom:758.551200pt;}
.y92{bottom:759.696800pt;}
.y100{bottom:762.330667pt;}
.y6b{bottom:767.370133pt;}
.y34{bottom:768.944800pt;}
.yec{bottom:769.102400pt;}
.y113{bottom:773.217867pt;}
.yad{bottom:778.551200pt;}
.y91{bottom:779.696800pt;}
.yff{bottom:782.330667pt;}
.y6a{bottom:787.370133pt;}
.y33{bottom:788.944800pt;}
.yeb{bottom:789.102400pt;}
.y1b{bottom:792.131333pt;}
.y112{bottom:793.884533pt;}
.yac{bottom:798.551200pt;}
.y90{bottom:799.696800pt;}
.yfe{bottom:802.330667pt;}
.y69{bottom:807.370133pt;}
.y32{bottom:808.944800pt;}
.yea{bottom:809.102400pt;}
.y111{bottom:814.551200pt;}
.yab{bottom:818.551200pt;}
.y1a{bottom:818.798000pt;}
.y8f{bottom:819.696800pt;}
.yfd{bottom:822.330667pt;}
.y68{bottom:827.370133pt;}
.y31{bottom:828.944800pt;}
.ye9{bottom:829.102400pt;}
.y110{bottom:835.217867pt;}
.yaa{bottom:838.551200pt;}
.y8e{bottom:839.696800pt;}
.yd2{bottom:840.440933pt;}
.yfc{bottom:842.330667pt;}
.y67{bottom:847.370133pt;}
.y30{bottom:848.944800pt;}
.ye8{bottom:849.102400pt;}
.y10f{bottom:855.884533pt;}
.ya9{bottom:858.551200pt;}
.y8d{bottom:859.696800pt;}
.yd1{bottom:860.440933pt;}
.yfb{bottom:862.330667pt;}
.y19{bottom:864.664667pt;}
.y66{bottom:867.370133pt;}
.ye7{bottom:869.102400pt;}
.y10e{bottom:876.551200pt;}
.ya8{bottom:878.551200pt;}
.y8c{bottom:879.696800pt;}
.yd0{bottom:880.440933pt;}
.yfa{bottom:882.330667pt;}
.y65{bottom:887.370133pt;}
.y2f{bottom:888.944800pt;}
.ye6{bottom:889.102400pt;}
.y55{bottom:889.417333pt;}
.y10d{bottom:897.217867pt;}
.ya7{bottom:898.551200pt;}
.y8b{bottom:899.696800pt;}
.ycf{bottom:900.440933pt;}
.yf9{bottom:902.330667pt;}
.y64{bottom:907.370133pt;}
.ye5{bottom:909.102400pt;}
.y54{bottom:909.417333pt;}
.y10c{bottom:917.884533pt;}
.ya6{bottom:918.551200pt;}
.y8a{bottom:919.696800pt;}
.yce{bottom:920.440933pt;}
.yf8{bottom:922.330667pt;}
.y63{bottom:927.370133pt;}
.ye4{bottom:929.102400pt;}
.y53{bottom:929.417333pt;}
.ya5{bottom:938.551200pt;}
.y89{bottom:939.696800pt;}
.ycd{bottom:940.440933pt;}
.yf7{bottom:942.330667pt;}
.y62{bottom:947.370133pt;}
.y52{bottom:949.417333pt;}
.y4{bottom:963.943333pt;}
.y3{bottom:1003.943333pt;}
.y6{bottom:1058.220400pt;}
.y17{bottom:1059.165333pt;}
.h10{height:40.791667pt;}
.h8{height:43.250000pt;}
.h2{height:43.984375pt;}
.hb{height:47.531250pt;}
.ha{height:48.208333pt;}
.hf{height:51.916667pt;}
.h3{height:52.781250pt;}
.hd{height:57.179688pt;}
.h9{height:59.333333pt;}
.h7{height:68.160000pt;}
.he{height:79.171875pt;}
.hc{height:106.875000pt;}
.h5{height:109.960938pt;}
.h6{height:117.562500pt;}
.h4{height:174.562500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:22.677067pt;}
.x2{left:41.574800pt;}
.x6{left:68.031467pt;}
.x17{left:82.204667pt;}
.x22{left:88.252000pt;}
.x1f{left:90.393733pt;}
.x21{left:93.291333pt;}
.x2c{left:94.488133pt;}
.x23{left:95.433067pt;}
.x1a{left:97.700800pt;}
.x2a{left:106.204667pt;}
.x4{left:111.106800pt;}
.x2b{left:143.622000pt;}
.x24{left:144.566933pt;}
.x25{left:146.456667pt;}
.x3{left:154.699333pt;}
.x8{left:159.158800pt;}
.xa{left:189.653867pt;}
.x1e{left:202.512800pt;}
.xc{left:205.713467pt;}
.xb{left:208.188667pt;}
.xe{left:210.690000pt;}
.xd{left:219.122267pt;}
.x9{left:221.208267pt;}
.x1d{left:267.221733pt;}
.x2d{left:283.464667pt;}
.x2e{left:295.181067pt;}
.x5{left:303.649200pt;}
.x1c{left:321.261467pt;}
.x19{left:339.838133pt;}
.x27{left:341.328400pt;}
.x29{left:345.105600pt;}
.x28{left:349.893067pt;}
.x26{left:350.803067pt;}
.x20{left:392.756000pt;}
.x12{left:399.604400pt;}
.xf{left:419.781467pt;}
.x16{left:421.186400pt;}
.x13{left:425.583200pt;}
.x11{left:436.061067pt;}
.x14{left:438.625600pt;}
.x10{left:444.262267pt;}
.x15{left:468.049067pt;}
.x2f{left:551.165600pt;}
.x1{left:557.923467pt;}
.x1b{left:728.188933pt;}
.x7{left:733.228400pt;}
}




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