
    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_08c7242e666fd0473404763d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_5a02254ad0b3a8f784bdc6c4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_6d89db5d8e9b84fe6705fe87.woff')format("woff");}.ff3{font-family:ff3;line-height:1.054000;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_1e0f6a79566d559c00da74f1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_828b2ae00308b0bda53f2637.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_b5df2ca11ef1e78227ec1cd7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.145000;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_7dd05b2146240b1f19e4b754.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_d1319e3eb4bd4ca7fbfcc8a4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.731000;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_fda7ba52219b13f73fe6d62a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_eddb3bbefe8f55a4df068b65.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909000;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_c93081131afa1b5d27f618a0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.732000;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_2707a4c7adcc75b27c27afbd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_929ebe1d79ba51e81521ad81.woff')format("woff");}.ffd{font-family:ffd;line-height:0.732000;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_bf6866168deaa4d73b187a01.woff')format("woff");}.ffe{font-family:ffe;line-height:0.730000;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_d98aa0c257d4ba33b6726d0a.woff')format("woff");}.fff{font-family:fff;line-height:0.908000;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_d98aa0c257d4ba33b6726d0a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908000;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_bd20517395237023c6403e46.woff')format("woff");}.ff11{font-family:ff11;line-height:0.732000;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_5ad1711ab3bccac50bf5f578.woff')format("woff");}.ff12{font-family:ff12;line-height:1.400000;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_9597e88973b261107fe854f3.woff')format("woff");}.ff13{font-family:ff13;line-height:1.400000;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_9b4575cf739c274beb3442e2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.918945;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_fd3b2bc0600aa39a21c65107.woff')format("woff");}.ff15{font-family:ff15;line-height:1.400000;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);}
.m2{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,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);}
.v1{vertical-align:-27.636000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-2.666028px;}
.ls10{letter-spacing:-2.282552px;}
.ls17{letter-spacing:-2.254285px;}
.ls5{letter-spacing:-1.925464px;}
.ls4{letter-spacing:-1.629239px;}
.ls3{letter-spacing:-1.407070px;}
.ls1{letter-spacing:-0.826048px;}
.ls7{letter-spacing:-0.583194px;}
.ls6{letter-spacing:-0.518394px;}
.ls11{letter-spacing:-0.487641px;}
.ls8{letter-spacing:-0.453595px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.157615px;}
.lsd{letter-spacing:0.159592px;}
.ls1a{letter-spacing:0.175128px;}
.lse{letter-spacing:0.177324px;}
.ls14{letter-spacing:0.183884px;}
.lsb{letter-spacing:0.186190px;}
.ls13{letter-spacing:0.196143px;}
.lsa{letter-spacing:0.198603px;}
.ls12{letter-spacing:0.318733px;}
.ls9{letter-spacing:0.322730px;}
.ls16{letter-spacing:1.502857px;}
.lsf{letter-spacing:1.521702px;}
.ls18{letter-spacing:1.810824px;}
.lsc{letter-spacing:1.833530px;}
.ls1c{letter-spacing:2.334457px;}
.ls1b{letter-spacing:18.262898px;}
.ls1d{letter-spacing:32.728403px;}
.ls15{letter-spacing:32.730530px;}
.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;}
}
.ws4c{word-spacing:-47.772979px;}
.ws36{word-spacing:-43.592764px;}
.ws2{word-spacing:-38.447923px;}
.ws30{word-spacing:-35.083666px;}
.ws0{word-spacing:-34.603034px;}
.ws3d{word-spacing:-29.840179px;}
.ws6{word-spacing:-28.835942px;}
.ws1c{word-spacing:-28.764211px;}
.ws25{word-spacing:-28.762963px;}
.ws27{word-spacing:-26.312749px;}
.ws43{word-spacing:-26.312524px;}
.ws46{word-spacing:-26.307365px;}
.ws4f{word-spacing:-26.247513px;}
.ws1d{word-spacing:-26.247295px;}
.ws42{word-spacing:-26.246861px;}
.ws39{word-spacing:-26.242616px;}
.ws5{word-spacing:-25.631842px;}
.ws47{word-spacing:-24.349111px;}
.ws3b{word-spacing:-21.519360px;}
.ws1{word-spacing:-18.506650px;}
.ws9{word-spacing:-18.069742px;}
.ws32{word-spacing:-17.866633px;}
.ws34{word-spacing:-17.865929px;}
.ws33{word-spacing:-17.863786px;}
.ws2d{word-spacing:-17.570810px;}
.ws7{word-spacing:-16.887287px;}
.ws50{word-spacing:-16.886880px;}
.ws41{word-spacing:-16.827059px;}
.ws40{word-spacing:-16.827053px;}
.ws4d{word-spacing:-16.826299px;}
.ws3e{word-spacing:-16.825913px;}
.ws4e{word-spacing:-16.825840px;}
.ws48{word-spacing:-16.824817px;}
.ws3f{word-spacing:-16.824692px;}
.ws4a{word-spacing:-16.823807px;}
.ws44{word-spacing:-16.823584px;}
.ws2f{word-spacing:-16.823225px;}
.ws45{word-spacing:-16.822991px;}
.ws51{word-spacing:-16.821941px;}
.ws1e{word-spacing:-16.821832px;}
.ws4b{word-spacing:-16.820338px;}
.ws3{word-spacing:-15.422105px;}
.ws38{word-spacing:-15.362329px;}
.ws4{word-spacing:-12.337715px;}
.ws14{word-spacing:-9.708489px;}
.ws2a{word-spacing:-9.588258px;}
.ws31{word-spacing:-9.253325px;}
.wsa{word-spacing:-8.294308px;}
.ws18{word-spacing:-3.248576px;}
.ws24{word-spacing:-3.208345px;}
.ws2c{word-spacing:-2.353136px;}
.ws15{word-spacing:-1.521702px;}
.ws26{word-spacing:-1.506355px;}
.ws21{word-spacing:-1.502857px;}
.ws37{word-spacing:-1.074499px;}
.ws2e{word-spacing:-0.327273px;}
.ws1b{word-spacing:-0.310317px;}
.ws2b{word-spacing:-0.306474px;}
.ws1a{word-spacing:-0.279285px;}
.ws29{word-spacing:-0.275827px;}
.ws13{word-spacing:-0.198603px;}
.ws20{word-spacing:-0.196143px;}
.ws16{word-spacing:-0.161365px;}
.ws22{word-spacing:-0.159366px;}
.ws19{word-spacing:-0.136539px;}
.ws28{word-spacing:-0.134849px;}
.ws17{word-spacing:-0.093095px;}
.ws23{word-spacing:-0.091942px;}
.wsb{word-spacing:0.000000px;}
.ws3a{word-spacing:0.358654px;}
.ws3c{word-spacing:0.392728px;}
.ws49{word-spacing:0.418429px;}
.ws10{word-spacing:0.518394px;}
.ws11{word-spacing:0.583194px;}
.ws8{word-spacing:0.793006px;}
.wsd{word-spacing:0.814620px;}
.wsc{word-spacing:0.826048px;}
.wse{word-spacing:1.407070px;}
.wsf{word-spacing:1.629239px;}
.ws1f{word-spacing:2.191666px;}
.ws12{word-spacing:2.219148px;}
.ws35{word-spacing:6.872733px;}
._b{margin-left:-7.173120px;}
._2{margin-left:-5.829937px;}
._5{margin-left:-4.533416px;}
._1{margin-left:-2.940979px;}
._0{margin-left:-1.635467px;}
._3{width:1.343873px;}
._4{width:2.566798px;}
._c{width:3.832803px;}
._10{width:4.955677px;}
._f{width:6.003837px;}
._a{width:8.470680px;}
._6{width:9.941935px;}
._e{width:16.298261px;}
._8{width:19.239175px;}
._9{width:26.659456px;}
._7{width:32.730530px;}
._d{width:895.433142px;}
.fcf{color:rgb(229,228,238);}
.fce{color:rgb(239,240,240);}
.fcd{color:rgb(249,244,239);}
.fc0{color:rgb(35,55,59);}
.fc6{color:rgb(255,247,102);}
.fc1{color:rgb(250,250,250);}
.fc5{color:rgb(255,255,255);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(42,27,129);}
.fc4{color:rgb(46,75,153);}
.fca{color:rgb(228,231,231);}
.fc3{color:rgb(0,92,185);}
.fc8{color:transparent;}
.fcb{color:rgb(235,129,27);}
.fc9{color:rgb(248,238,228);}
.fcc{color:rgb(82,86,109);}
.fs13{font-size:13.134600px;}
.fsc{font-size:13.299300px;}
.fs12{font-size:14.010240px;}
.fsb{font-size:14.185920px;}
.fs14{font-size:19.264080px;}
.fsd{font-size:19.505640px;}
.fs11{font-size:22.766640px;}
.fsa{font-size:23.052120px;}
.fs18{font-size:26.229857px;}
.fs8{font-size:32.399640px;}
.fs6{font-size:33.041929px;}
.fs17{font-size:35.865600px;}
.fs15{font-size:39.403800px;}
.fse{font-size:39.897900px;}
.fs16{font-size:43.782000px;}
.fsf{font-size:44.331000px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:57.175200px;}
.fs2{font-size:59.775600px;}
.fs10{font-size:62.619030px;}
.fs9{font-size:63.404235px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs7{font-size:74.056320px;}
.fs0{font-size:86.077200px;}
.ya1{bottom:-231.046500px;}
.y8e{bottom:-210.372000px;}
.ya0{bottom:-203.191500px;}
.y8d{bottom:-182.517000px;}
.y9f{bottom:-175.336500px;}
.yae{bottom:-166.191000px;}
.y8c{bottom:-154.662000px;}
.y9e{bottom:-147.480000px;}
.yad{bottom:-138.334500px;}
.y8b{bottom:-126.805500px;}
.y9d{bottom:-119.625000px;}
.yac{bottom:-110.479500px;}
.y8a{bottom:-98.950500px;}
.y9c{bottom:-92.086500px;}
.yab{bottom:-82.624500px;}
.y89{bottom:-71.412000px;}
.yaa{bottom:-54.769500px;}
.y9b{bottom:-53.187000px;}
.y88{bottom:-32.512500px;}
.ya9{bottom:-27.229500px;}
.y9a{bottom:-25.330500px;}
.y87{bottom:-4.656000px;}
.y99{bottom:-1.959000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.258306px;}
.y39{bottom:5.905404px;}
.y22{bottom:5.979454px;}
.y38{bottom:9.845784px;}
.y21{bottom:9.969244px;}
.y7a{bottom:10.105768px;}
.ya8{bottom:11.670000px;}
.y37{bottom:13.786164px;}
.y20{bottom:13.959034px;}
.y11{bottom:17.101817px;}
.y36{bottom:17.726544px;}
.y1f{bottom:17.948824px;}
.y86{bottom:18.715500px;}
.y7{bottom:19.953000px;}
.y1a{bottom:20.406026px;}
.y98{bottom:25.896000px;}
.yf6{bottom:26.862000px;}
.y14{bottom:27.818278px;}
.yf{bottom:28.399283px;}
.y19{bottom:30.125918px;}
.y10{bottom:30.923922px;}
.y119{bottom:38.608500px;}
.ya7{bottom:39.525000px;}
.y18{bottom:39.845810px;}
.y85{bottom:46.570500px;}
.yf5{bottom:47.484000px;}
.yc2{bottom:49.440000px;}
.y97{bottom:54.369000px;}
.ye2{bottom:57.099000px;}
.ycd{bottom:60.453000px;}
.yed{bottom:60.897000px;}
.y4a{bottom:61.522500px;}
.y118{bottom:61.981500px;}
.ya6{bottom:62.898000px;}
.y6e{bottom:62.962500px;}
.yc1{bottom:64.458000px;}
.yb7{bottom:69.712500px;}
.y78{bottom:70.624500px;}
.y11b{bottom:70.806000px;}
.y11d{bottom:70.807500px;}
.yf4{bottom:71.095500px;}
.ycc{bottom:72.483000px;}
.y6d{bottom:74.991000px;}
.y109{bottom:75.028500px;}
.y26{bottom:75.042028px;}
.y84{bottom:75.043500px;}
.y68{bottom:75.093000px;}
.y55{bottom:80.245500px;}
.yec{bottom:81.520500px;}
.y49{bottom:84.894000px;}
.yc0{bottom:85.081500px;}
.y35{bottom:85.610951px;}
.y45{bottom:85.646020px;}
.y1e{bottom:86.684461px;}
.y25{bottom:86.719970px;}
.y6c{bottom:87.021000px;}
.y51{bottom:89.009331px;}
.y117{bottom:89.836500px;}
.y28{bottom:90.125455px;}
.ya5{bottom:90.753000px;}
.y3c{bottom:93.111000px;}
.y96{bottom:93.268500px;}
.yff{bottom:94.681500px;}
.yce{bottom:95.083500px;}
.y44{bottom:95.930412px;}
.yf3{bottom:96.201000px;}
.y24{bottom:97.133322px;}
.yb6{bottom:97.567500px;}
.y67{bottom:98.464500px;}
.y77{bottom:98.479500px;}
.y6{bottom:98.589000px;}
.y33{bottom:98.855487px;}
.y6b{bottom:99.051000px;}
.y50{bottom:99.298101px;}
.y1c{bottom:100.095076px;}
.y27{bottom:100.543240px;}
.y2b{bottom:100.695317px;}
.y79{bottom:101.791341px;}
.y108{bottom:102.568500px;}
.yeb{bottom:105.132000px;}
.yd7{bottom:107.619000px;}
.yde{bottom:107.946000px;}
.y54{bottom:109.192500px;}
.yc8{bottom:109.714500px;}
.y6a{bottom:111.081000px;}
.y34{bottom:112.316351px;}
.y48{bottom:113.367000px;}
.y1d{bottom:113.724730px;}
.y83{bottom:113.943000px;}
.ybf{bottom:114.012000px;}
.y43{bottom:114.289124px;}
.y23{bottom:115.722241px;}
.y2c{bottom:116.031383px;}
.y116{bottom:117.691500px;}
.ya4{bottom:119.224500px;}
.y10f{bottom:119.322000px;}
.y3b{bottom:120.966000px;}
.y95{bottom:121.123500px;}
.y66{bottom:121.837500px;}
.y5d{bottom:121.882500px;}
.y69{bottom:123.111000px;}
.yfe{bottom:123.628500px;}
.yf2{bottom:125.148000px;}
.yb5{bottom:125.424000px;}
.y76{bottom:126.336000px;}
.y5{bottom:127.671000px;}
.y107{bottom:128.748000px;}
.yea{bottom:130.237500px;}
.yd6{bottom:130.990500px;}
.yb{bottom:135.474000px;}
.ydd{bottom:135.801000px;}
.yc7{bottom:138.186000px;}
.y82{bottom:141.798000px;}
.y65{bottom:145.209000px;}
.y115{bottom:145.548000px;}
.y53{bottom:147.906000px;}
.y10e{bottom:148.267500px;}
.y94{bottom:148.978500px;}
.y5c{bottom:149.737500px;}
.y3a{bottom:149.913000px;}
.y4{bottom:152.029500px;}
.y47{bottom:152.080500px;}
.yb4{bottom:153.279000px;}
.ye9{bottom:153.609000px;}
.y75{bottom:155.283000px;}
.y106{bottom:156.603000px;}
.ybe{bottom:157.132500px;}
.y13{bottom:157.489832px;}
.ya3{bottom:158.124000px;}
.yd5{bottom:158.845500px;}
.y29{bottom:161.750582px;}
.ydc{bottom:163.657500px;}
.yf1{bottom:164.047500px;}
.yfd{bottom:165.255000px;}
.y12{bottom:167.402410px;}
.y64{bottom:168.582000px;}
.y93{bottom:169.600500px;}
.y81{bottom:169.653000px;}
.y114{bottom:174.493500px;}
.y52{bottom:176.851500px;}
.y5b{bottom:177.592500px;}
.y105{bottom:179.976000px;}
.ybd{bottom:180.744000px;}
.y46{bottom:181.026000px;}
.yb3{bottom:181.134000px;}
.ye8{bottom:182.082000px;}
.yd4{bottom:182.218500px;}
.y31{bottom:183.750000px;}
.ye{bottom:185.668500px;}
.yfc{bottom:185.878500px;}
.ya2{bottom:185.979000px;}
.ycb{bottom:186.823500px;}
.ye0{bottom:187.245000px;}
.y57{bottom:187.471500px;}
.y32{bottom:188.274844px;}
.y10d{bottom:190.189500px;}
.y92{bottom:190.224000px;}
.ydb{bottom:191.512500px;}
.yf0{bottom:191.902500px;}
.y63{bottom:191.953500px;}
.y80{bottom:198.600000px;}
.y74{bottom:198.664500px;}
.y4f{bottom:201.139716px;}
.ya{bottom:202.560000px;}
.y5a{bottom:205.449000px;}
.y104{bottom:207.831000px;}
.y1b{bottom:208.478013px;}
.yb2{bottom:208.674000px;}
.yfb{bottom:209.490000px;}
.ybc{bottom:209.511000px;}
.yd3{bottom:210.073500px;}
.y30{bottom:211.605000px;}
.y113{bottom:213.393000px;}
.y91{bottom:213.835500px;}
.y41{bottom:214.864500px;}
.y62{bottom:215.326500px;}
.yc9{bottom:216.958500px;}
.yc{bottom:217.185000px;}
.yc6{bottom:217.578000px;}
.y17{bottom:217.941617px;}
.y10c{bottom:218.044500px;}
.yda{bottom:219.367500px;}
.y42{bottom:219.863869px;}
.ye7{bottom:220.795500px;}
.y73{bottom:222.037500px;}
.yef{bottom:222.583500px;}
.y4e{bottom:223.996500px;}
.yd{bottom:229.321500px;}
.yfa{bottom:230.112000px;}
.yca{bottom:230.476500px;}
.ydf{bottom:230.898000px;}
.y56{bottom:231.124500px;}
.y103{bottom:231.204000px;}
.y59{bottom:233.304000px;}
.y3{bottom:234.879000px;}
.y7f{bottom:237.208500px;}
.y16{bottom:237.603570px;}
.yd2{bottom:237.928500px;}
.y61{bottom:238.698000px;}
.y2f{bottom:239.461500px;}
.y112{bottom:242.290500px;}
.y40{bottom:242.719500px;}
.y90{bottom:242.782500px;}
.y10b{bottom:245.899500px;}
.yc5{bottom:246.051000px;}
.yb1{bottom:246.210000px;}
.yd9{bottom:247.224000px;}
.ye6{bottom:248.650500px;}
.y72{bottom:249.892500px;}
.y4d{bottom:251.851500px;}
.ybb{bottom:252.892500px;}
.yf9{bottom:255.217500px;}
.y15{bottom:257.265523px;}
.yee{bottom:258.309000px;}
.y2{bottom:258.937500px;}
.y102{bottom:259.059000px;}
.y7e{bottom:260.820000px;}
.yd1{bottom:261.301500px;}
.y60{bottom:262.071000px;}
.y58{bottom:264.645000px;}
.y2e{bottom:267.316500px;}
.y9{bottom:269.647500px;}
.y3f{bottom:270.574500px;}
.y10a{bottom:274.846500px;}
.yba{bottom:276.265500px;}
.ye5{bottom:276.505500px;}
.y71{bottom:277.747500px;}
.yd8{bottom:278.563500px;}
.y4c{bottom:279.706500px;}
.y111{bottom:280.306500px;}
.y8f{bottom:281.680500px;}
.yb0{bottom:283.744500px;}
.yf8{bottom:284.164500px;}
.y5f{bottom:285.442500px;}
.y7d{bottom:285.925500px;}
.y101{bottom:286.914000px;}
.yd0{bottom:289.156500px;}
.yc4{bottom:289.546500px;}
.y1{bottom:293.757000px;}
.y2d{bottom:295.788000px;}
.y3e{bottom:298.429500px;}
.yb9{bottom:304.120500px;}
.ye4{bottom:304.362000px;}
.y70{bottom:306.694500px;}
.yf7{bottom:307.536000px;}
.y110{bottom:308.161500px;}
.y4b{bottom:308.653500px;}
.y7c{bottom:309.537000px;}
.y5e{bottom:314.406000px;}
.y11c{bottom:315.928500px;}
.y11a{bottom:315.930000px;}
.ycf{bottom:318.103500px;}
.y100{bottom:318.255000px;}
.yc3{bottom:318.936000px;}
.yaf{bottom:321.280500px;}
.y3d{bottom:327.376500px;}
.y6f{bottom:330.067500px;}
.ye1{bottom:331.131000px;}
.ye3{bottom:333.307500px;}
.yb8{bottom:333.525000px;}
.y7b{bottom:338.008500px;}
.y8{bottom:379.849500px;}
.h1b{height:10.087373px;}
.h11{height:10.213862px;}
.h1c{height:11.794871px;}
.h12{height:11.942771px;}
.h16{height:13.343631px;}
.h1d{height:13.870138px;}
.h13{height:14.044061px;}
.h1a{height:16.391981px;}
.h10{height:16.597526px;}
.h22{height:19.467472px;}
.h9{height:23.096309px;}
.hd{height:28.997678px;}
.h1f{height:31.523040px;}
.h15{height:31.918320px;}
.h1e{height:35.384612px;}
.h14{height:35.828314px;}
.h20{height:37.658880px;}
.h17{height:39.809238px;}
.h19{height:45.085702px;}
.h21{height:45.112440px;}
.hf{height:45.651050px;}
.h8{height:47.626942px;}
.h5{height:50.211630px;}
.hb{height:55.986578px;}
.h4{height:62.764380px;}
.hc{height:66.280406px;}
.h6{height:68.727330px;}
.h3{height:75.317760px;}
.h2{height:90.381060px;}
.h18{height:130.311869px;}
.he{height:131.945902px;}
.h7{height:324.142885px;}
.ha{height:324.725392px;}
.h1{height:408.000000px;}
.h0{height:408.195000px;}
.w5{width:48.575472px;}
.w6{width:91.838874px;}
.w4{width:92.990479px;}
.w7{width:206.644080px;}
.w2{width:229.601309px;}
.w3{width:229.603906px;}
.w0{width:544.245000px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x12{left:10.002980px;}
.xc{left:12.887687px;}
.xd{left:13.889279px;}
.x3{left:15.984000px;}
.x13{left:19.372004px;}
.xa{left:20.773685px;}
.x11{left:22.267616px;}
.x5{left:28.346521px;}
.x6{left:40.223801px;}
.x1{left:42.519000px;}
.x16{left:48.195000px;}
.xe{left:50.874788px;}
.x1a{left:59.995591px;}
.xf{left:61.748295px;}
.x18{left:75.247500px;}
.x4{left:92.125500px;}
.x1f{left:93.801000px;}
.x1c{left:95.503500px;}
.x8{left:103.046559px;}
.x7{left:104.409539px;}
.x1e{left:107.974500px;}
.x20{left:240.375000px;}
.x9{left:286.299305px;}
.xb{left:309.260838px;}
.x19{left:332.223000px;}
.x10{left:406.815614px;}
.x17{left:424.065026px;}
.x14{left:429.416666px;}
.x1b{left:500.941500px;}
.x1d{left:502.723500px;}
.x15{left:506.500500px;}
.x2{left:507.517500px;}
@media print{
.v1{vertical-align:-24.565333pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-2.369802pt;}
.ls10{letter-spacing:-2.028936pt;}
.ls17{letter-spacing:-2.003809pt;}
.ls5{letter-spacing:-1.711524pt;}
.ls4{letter-spacing:-1.448212pt;}
.ls3{letter-spacing:-1.250729pt;}
.ls1{letter-spacing:-0.734265pt;}
.ls7{letter-spacing:-0.518394pt;}
.ls6{letter-spacing:-0.460795pt;}
.ls11{letter-spacing:-0.433459pt;}
.ls8{letter-spacing:-0.403196pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.140102pt;}
.lsd{letter-spacing:0.141859pt;}
.ls1a{letter-spacing:0.155669pt;}
.lse{letter-spacing:0.157621pt;}
.ls14{letter-spacing:0.163453pt;}
.lsb{letter-spacing:0.165502pt;}
.ls13{letter-spacing:0.174350pt;}
.lsa{letter-spacing:0.176536pt;}
.ls12{letter-spacing:0.283318pt;}
.ls9{letter-spacing:0.286871pt;}
.ls16{letter-spacing:1.335873pt;}
.lsf{letter-spacing:1.352624pt;}
.ls18{letter-spacing:1.609621pt;}
.lsc{letter-spacing:1.629805pt;}
.ls1c{letter-spacing:2.075073pt;}
.ls1b{letter-spacing:16.233687pt;}
.ls1d{letter-spacing:29.091914pt;}
.ls15{letter-spacing:29.093804pt;}
.ws4c{word-spacing:-42.464870pt;}
.ws36{word-spacing:-38.749123pt;}
.ws2{word-spacing:-34.175932pt;}
.ws30{word-spacing:-31.185481pt;}
.ws0{word-spacing:-30.758253pt;}
.ws3d{word-spacing:-26.524604pt;}
.ws6{word-spacing:-25.631949pt;}
.ws1c{word-spacing:-25.568188pt;}
.ws25{word-spacing:-25.567078pt;}
.ws27{word-spacing:-23.389110pt;}
.ws43{word-spacing:-23.388910pt;}
.ws46{word-spacing:-23.384325pt;}
.ws4f{word-spacing:-23.331123pt;}
.ws1d{word-spacing:-23.330929pt;}
.ws42{word-spacing:-23.330543pt;}
.ws39{word-spacing:-23.326770pt;}
.ws5{word-spacing:-22.783859pt;}
.ws47{word-spacing:-21.643654pt;}
.ws3b{word-spacing:-19.128320pt;}
.ws1{word-spacing:-16.450355pt;}
.ws9{word-spacing:-16.061993pt;}
.ws32{word-spacing:-15.881452pt;}
.ws34{word-spacing:-15.880826pt;}
.ws33{word-spacing:-15.878921pt;}
.ws2d{word-spacing:-15.618498pt;}
.ws7{word-spacing:-15.010922pt;}
.ws50{word-spacing:-15.010560pt;}
.ws41{word-spacing:-14.957386pt;}
.ws40{word-spacing:-14.957380pt;}
.ws4d{word-spacing:-14.956710pt;}
.ws3e{word-spacing:-14.956367pt;}
.ws4e{word-spacing:-14.956302pt;}
.ws48{word-spacing:-14.955393pt;}
.ws3f{word-spacing:-14.955282pt;}
.ws4a{word-spacing:-14.954495pt;}
.ws44{word-spacing:-14.954297pt;}
.ws2f{word-spacing:-14.953978pt;}
.ws45{word-spacing:-14.953770pt;}
.ws51{word-spacing:-14.952836pt;}
.ws1e{word-spacing:-14.952740pt;}
.ws4b{word-spacing:-14.951412pt;}
.ws3{word-spacing:-13.708538pt;}
.ws38{word-spacing:-13.655404pt;}
.ws4{word-spacing:-10.966858pt;}
.ws14{word-spacing:-8.629768pt;}
.ws2a{word-spacing:-8.522896pt;}
.ws31{word-spacing:-8.225178pt;}
.wsa{word-spacing:-7.372718pt;}
.ws18{word-spacing:-2.887623pt;}
.ws24{word-spacing:-2.851862pt;}
.ws2c{word-spacing:-2.091676pt;}
.ws15{word-spacing:-1.352624pt;}
.ws26{word-spacing:-1.338982pt;}
.ws21{word-spacing:-1.335873pt;}
.ws37{word-spacing:-0.955110pt;}
.ws2e{word-spacing:-0.290909pt;}
.ws1b{word-spacing:-0.275837pt;}
.ws2b{word-spacing:-0.272421pt;}
.ws1a{word-spacing:-0.248254pt;}
.ws29{word-spacing:-0.245179pt;}
.ws13{word-spacing:-0.176536pt;}
.ws20{word-spacing:-0.174350pt;}
.ws16{word-spacing:-0.143435pt;}
.ws22{word-spacing:-0.141659pt;}
.ws19{word-spacing:-0.121368pt;}
.ws28{word-spacing:-0.119865pt;}
.ws17{word-spacing:-0.082751pt;}
.ws23{word-spacing:-0.081726pt;}
.wsb{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.318803pt;}
.ws3c{word-spacing:0.349091pt;}
.ws49{word-spacing:0.371937pt;}
.ws10{word-spacing:0.460795pt;}
.ws11{word-spacing:0.518394pt;}
.ws8{word-spacing:0.704894pt;}
.wsd{word-spacing:0.724106pt;}
.wsc{word-spacing:0.734265pt;}
.wse{word-spacing:1.250729pt;}
.wsf{word-spacing:1.448212pt;}
.ws1f{word-spacing:1.948148pt;}
.ws12{word-spacing:1.972576pt;}
.ws35{word-spacing:6.109096pt;}
._b{margin-left:-6.376107pt;}
._2{margin-left:-5.182166pt;}
._5{margin-left:-4.029703pt;}
._1{margin-left:-2.614204pt;}
._0{margin-left:-1.453748pt;}
._3{width:1.194554pt;}
._4{width:2.281598pt;}
._c{width:3.406936pt;}
._10{width:4.405046pt;}
._f{width:5.336744pt;}
._a{width:7.529493pt;}
._6{width:8.837276pt;}
._e{width:14.487343pt;}
._8{width:17.101489pt;}
._9{width:23.697294pt;}
._7{width:29.093804pt;}
._d{width:795.940571pt;}
.fs13{font-size:11.675200pt;}
.fsc{font-size:11.821600pt;}
.fs12{font-size:12.453547pt;}
.fsb{font-size:12.609707pt;}
.fs14{font-size:17.123627pt;}
.fsd{font-size:17.338347pt;}
.fs11{font-size:20.237013pt;}
.fsa{font-size:20.490773pt;}
.fs18{font-size:23.315428pt;}
.fs8{font-size:28.799680pt;}
.fs6{font-size:29.370604pt;}
.fs17{font-size:31.880533pt;}
.fs15{font-size:35.025600pt;}
.fse{font-size:35.464800pt;}
.fs16{font-size:38.917333pt;}
.fsf{font-size:39.405333pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:50.822400pt;}
.fs2{font-size:53.133867pt;}
.fs10{font-size:55.661360pt;}
.fs9{font-size:56.359320pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs7{font-size:65.827840pt;}
.fs0{font-size:76.513067pt;}
.ya1{bottom:-205.374667pt;}
.y8e{bottom:-186.997333pt;}
.ya0{bottom:-180.614667pt;}
.y8d{bottom:-162.237333pt;}
.y9f{bottom:-155.854667pt;}
.yae{bottom:-147.725333pt;}
.y8c{bottom:-137.477333pt;}
.y9e{bottom:-131.093333pt;}
.yad{bottom:-122.964000pt;}
.y8b{bottom:-112.716000pt;}
.y9d{bottom:-106.333333pt;}
.yac{bottom:-98.204000pt;}
.y8a{bottom:-87.956000pt;}
.y9c{bottom:-81.854667pt;}
.yab{bottom:-73.444000pt;}
.y89{bottom:-63.477333pt;}
.yaa{bottom:-48.684000pt;}
.y9b{bottom:-47.277333pt;}
.y88{bottom:-28.900000pt;}
.ya9{bottom:-24.204000pt;}
.y9a{bottom:-22.516000pt;}
.y87{bottom:-4.138667pt;}
.y99{bottom:-1.741333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:2.896272pt;}
.y39{bottom:5.249248pt;}
.y22{bottom:5.315070pt;}
.y38{bottom:8.751808pt;}
.y21{bottom:8.861550pt;}
.y7a{bottom:8.982905pt;}
.ya8{bottom:10.373333pt;}
.y37{bottom:12.254368pt;}
.y20{bottom:12.408030pt;}
.y11{bottom:15.201615pt;}
.y36{bottom:15.756928pt;}
.y1f{bottom:15.954510pt;}
.y86{bottom:16.636000pt;}
.y7{bottom:17.736000pt;}
.y1a{bottom:18.138690pt;}
.y98{bottom:23.018667pt;}
.yf6{bottom:23.877333pt;}
.y14{bottom:24.727358pt;}
.yf{bottom:25.243807pt;}
.y19{bottom:26.778594pt;}
.y10{bottom:27.487930pt;}
.y119{bottom:34.318667pt;}
.ya7{bottom:35.133333pt;}
.y18{bottom:35.418498pt;}
.y85{bottom:41.396000pt;}
.yf5{bottom:42.208000pt;}
.yc2{bottom:43.946667pt;}
.y97{bottom:48.328000pt;}
.ye2{bottom:50.754667pt;}
.ycd{bottom:53.736000pt;}
.yed{bottom:54.130667pt;}
.y4a{bottom:54.686667pt;}
.y118{bottom:55.094667pt;}
.ya6{bottom:55.909333pt;}
.y6e{bottom:55.966667pt;}
.yc1{bottom:57.296000pt;}
.yb7{bottom:61.966667pt;}
.y78{bottom:62.777333pt;}
.y11b{bottom:62.938667pt;}
.y11d{bottom:62.940000pt;}
.yf4{bottom:63.196000pt;}
.ycc{bottom:64.429333pt;}
.y6d{bottom:66.658667pt;}
.y109{bottom:66.692000pt;}
.y26{bottom:66.704025pt;}
.y84{bottom:66.705333pt;}
.y68{bottom:66.749333pt;}
.y55{bottom:71.329333pt;}
.yec{bottom:72.462667pt;}
.y49{bottom:75.461333pt;}
.yc0{bottom:75.628000pt;}
.y35{bottom:76.098623pt;}
.y45{bottom:76.129796pt;}
.y1e{bottom:77.052854pt;}
.y25{bottom:77.084418pt;}
.y6c{bottom:77.352000pt;}
.y51{bottom:79.119406pt;}
.y117{bottom:79.854667pt;}
.y28{bottom:80.111516pt;}
.ya5{bottom:80.669333pt;}
.y3c{bottom:82.765333pt;}
.y96{bottom:82.905333pt;}
.yff{bottom:84.161333pt;}
.yce{bottom:84.518667pt;}
.y44{bottom:85.271477pt;}
.yf3{bottom:85.512000pt;}
.y24{bottom:86.340730pt;}
.yb6{bottom:86.726667pt;}
.y67{bottom:87.524000pt;}
.y77{bottom:87.537333pt;}
.y6{bottom:87.634667pt;}
.y33{bottom:87.871544pt;}
.y6b{bottom:88.045333pt;}
.y50{bottom:88.264979pt;}
.y1c{bottom:88.973401pt;}
.y27{bottom:89.371769pt;}
.y2b{bottom:89.506949pt;}
.y79{bottom:90.481192pt;}
.y108{bottom:91.172000pt;}
.yeb{bottom:93.450667pt;}
.yd7{bottom:95.661333pt;}
.yde{bottom:95.952000pt;}
.y54{bottom:97.060000pt;}
.yc8{bottom:97.524000pt;}
.y6a{bottom:98.738667pt;}
.y34{bottom:99.836756pt;}
.y48{bottom:100.770667pt;}
.y1d{bottom:101.088649pt;}
.y83{bottom:101.282667pt;}
.ybf{bottom:101.344000pt;}
.y43{bottom:101.590332pt;}
.y23{bottom:102.864214pt;}
.y2c{bottom:103.139007pt;}
.y116{bottom:104.614667pt;}
.ya4{bottom:105.977333pt;}
.y10f{bottom:106.064000pt;}
.y3b{bottom:107.525333pt;}
.y95{bottom:107.665333pt;}
.y66{bottom:108.300000pt;}
.y5d{bottom:108.340000pt;}
.y69{bottom:109.432000pt;}
.yfe{bottom:109.892000pt;}
.yf2{bottom:111.242667pt;}
.yb5{bottom:111.488000pt;}
.y76{bottom:112.298667pt;}
.y5{bottom:113.485333pt;}
.y107{bottom:114.442667pt;}
.yea{bottom:115.766667pt;}
.yd6{bottom:116.436000pt;}
.yb{bottom:120.421333pt;}
.ydd{bottom:120.712000pt;}
.yc7{bottom:122.832000pt;}
.y82{bottom:126.042667pt;}
.y65{bottom:129.074667pt;}
.y115{bottom:129.376000pt;}
.y53{bottom:131.472000pt;}
.y10e{bottom:131.793333pt;}
.y94{bottom:132.425333pt;}
.y5c{bottom:133.100000pt;}
.y3a{bottom:133.256000pt;}
.y4{bottom:135.137333pt;}
.y47{bottom:135.182667pt;}
.yb4{bottom:136.248000pt;}
.ye9{bottom:136.541333pt;}
.y75{bottom:138.029333pt;}
.y106{bottom:139.202667pt;}
.ybe{bottom:139.673333pt;}
.y13{bottom:139.990961pt;}
.ya3{bottom:140.554667pt;}
.yd5{bottom:141.196000pt;}
.y29{bottom:143.778295pt;}
.ydc{bottom:145.473333pt;}
.yf1{bottom:145.820000pt;}
.yfd{bottom:146.893333pt;}
.y12{bottom:148.802143pt;}
.y64{bottom:149.850667pt;}
.y93{bottom:150.756000pt;}
.y81{bottom:150.802667pt;}
.y114{bottom:155.105333pt;}
.y52{bottom:157.201333pt;}
.y5b{bottom:157.860000pt;}
.y105{bottom:159.978667pt;}
.ybd{bottom:160.661333pt;}
.y46{bottom:160.912000pt;}
.yb3{bottom:161.008000pt;}
.ye8{bottom:161.850667pt;}
.yd4{bottom:161.972000pt;}
.y31{bottom:163.333333pt;}
.ye{bottom:165.038667pt;}
.yfc{bottom:165.225333pt;}
.ya2{bottom:165.314667pt;}
.ycb{bottom:166.065333pt;}
.ye0{bottom:166.440000pt;}
.y57{bottom:166.641333pt;}
.y32{bottom:167.355417pt;}
.y10d{bottom:169.057333pt;}
.y92{bottom:169.088000pt;}
.ydb{bottom:170.233333pt;}
.yf0{bottom:170.580000pt;}
.y63{bottom:170.625333pt;}
.y80{bottom:176.533333pt;}
.y74{bottom:176.590667pt;}
.y4f{bottom:178.790859pt;}
.ya{bottom:180.053333pt;}
.y5a{bottom:182.621333pt;}
.y104{bottom:184.738667pt;}
.y1b{bottom:185.313790pt;}
.yb2{bottom:185.488000pt;}
.yfb{bottom:186.213333pt;}
.ybc{bottom:186.232000pt;}
.yd3{bottom:186.732000pt;}
.y30{bottom:188.093333pt;}
.y113{bottom:189.682667pt;}
.y91{bottom:190.076000pt;}
.y41{bottom:190.990667pt;}
.y62{bottom:191.401333pt;}
.yc9{bottom:192.852000pt;}
.yc{bottom:193.053333pt;}
.yc6{bottom:193.402667pt;}
.y17{bottom:193.725882pt;}
.y10c{bottom:193.817333pt;}
.yda{bottom:194.993333pt;}
.y42{bottom:195.434551pt;}
.ye7{bottom:196.262667pt;}
.y73{bottom:197.366667pt;}
.yef{bottom:197.852000pt;}
.y4e{bottom:199.108000pt;}
.yd{bottom:203.841333pt;}
.yfa{bottom:204.544000pt;}
.yca{bottom:204.868000pt;}
.ydf{bottom:205.242667pt;}
.y56{bottom:205.444000pt;}
.y103{bottom:205.514667pt;}
.y59{bottom:207.381333pt;}
.y3{bottom:208.781333pt;}
.y7f{bottom:210.852000pt;}
.y16{bottom:211.203173pt;}
.yd2{bottom:211.492000pt;}
.y61{bottom:212.176000pt;}
.y2f{bottom:212.854667pt;}
.y112{bottom:215.369333pt;}
.y40{bottom:215.750667pt;}
.y90{bottom:215.806667pt;}
.y10b{bottom:218.577333pt;}
.yc5{bottom:218.712000pt;}
.yb1{bottom:218.853333pt;}
.yd9{bottom:219.754667pt;}
.ye6{bottom:221.022667pt;}
.y72{bottom:222.126667pt;}
.y4d{bottom:223.868000pt;}
.ybb{bottom:224.793333pt;}
.yf9{bottom:226.860000pt;}
.y15{bottom:228.680465pt;}
.yee{bottom:229.608000pt;}
.y2{bottom:230.166667pt;}
.y102{bottom:230.274667pt;}
.y7e{bottom:231.840000pt;}
.yd1{bottom:232.268000pt;}
.y60{bottom:232.952000pt;}
.y58{bottom:235.240000pt;}
.y2e{bottom:237.614667pt;}
.y9{bottom:239.686667pt;}
.y3f{bottom:240.510667pt;}
.y10a{bottom:244.308000pt;}
.yba{bottom:245.569333pt;}
.ye5{bottom:245.782667pt;}
.y71{bottom:246.886667pt;}
.yd8{bottom:247.612000pt;}
.y4c{bottom:248.628000pt;}
.y111{bottom:249.161333pt;}
.y8f{bottom:250.382667pt;}
.yb0{bottom:252.217333pt;}
.yf8{bottom:252.590667pt;}
.y5f{bottom:253.726667pt;}
.y7d{bottom:254.156000pt;}
.y101{bottom:255.034667pt;}
.yd0{bottom:257.028000pt;}
.yc4{bottom:257.374667pt;}
.y1{bottom:261.117333pt;}
.y2d{bottom:262.922667pt;}
.y3e{bottom:265.270667pt;}
.yb9{bottom:270.329333pt;}
.ye4{bottom:270.544000pt;}
.y70{bottom:272.617333pt;}
.yf7{bottom:273.365333pt;}
.y110{bottom:273.921333pt;}
.y4b{bottom:274.358667pt;}
.y7c{bottom:275.144000pt;}
.y5e{bottom:279.472000pt;}
.y11c{bottom:280.825333pt;}
.y11a{bottom:280.826667pt;}
.ycf{bottom:282.758667pt;}
.y100{bottom:282.893333pt;}
.yc3{bottom:283.498667pt;}
.yaf{bottom:285.582667pt;}
.y3d{bottom:291.001333pt;}
.y6f{bottom:293.393333pt;}
.ye1{bottom:294.338667pt;}
.ye3{bottom:296.273333pt;}
.yb8{bottom:296.466667pt;}
.y7b{bottom:300.452000pt;}
.y8{bottom:337.644000pt;}
.h1b{height:8.966554pt;}
.h11{height:9.078989pt;}
.h1c{height:10.484330pt;}
.h12{height:10.615797pt;}
.h16{height:11.861005pt;}
.h1d{height:12.329011pt;}
.h13{height:12.483610pt;}
.h1a{height:14.570650pt;}
.h10{height:14.753357pt;}
.h22{height:17.304420pt;}
.h9{height:20.530052pt;}
.hd{height:25.775714pt;}
.h1f{height:28.020480pt;}
.h15{height:28.371840pt;}
.h1e{height:31.452989pt;}
.h14{height:31.847390pt;}
.h20{height:33.474560pt;}
.h17{height:35.385989pt;}
.h19{height:40.076179pt;}
.h21{height:40.099947pt;}
.hf{height:40.578711pt;}
.h8{height:42.335059pt;}
.h5{height:44.632560pt;}
.hb{height:49.765847pt;}
.h4{height:55.790560pt;}
.hc{height:58.915917pt;}
.h6{height:61.090960pt;}
.h3{height:66.949120pt;}
.h2{height:80.338720pt;}
.h18{height:115.832773pt;}
.he{height:117.285246pt;}
.h7{height:288.127009pt;}
.ha{height:288.644793pt;}
.h1{height:362.666667pt;}
.h0{height:362.840000pt;}
.w5{width:43.178197pt;}
.w6{width:81.634555pt;}
.w4{width:82.658203pt;}
.w7{width:183.683627pt;}
.w2{width:204.090053pt;}
.w3{width:204.092361pt;}
.w0{width:483.773333pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x12{left:8.891538pt;}
.xc{left:11.455721pt;}
.xd{left:12.346026pt;}
.x3{left:14.208000pt;}
.x13{left:17.219559pt;}
.xa{left:18.465498pt;}
.x11{left:19.793437pt;}
.x5{left:25.196908pt;}
.x6{left:35.754490pt;}
.x1{left:37.794667pt;}
.x16{left:42.840000pt;}
.xe{left:45.222033pt;}
.x1a{left:53.329414pt;}
.xf{left:54.887374pt;}
.x18{left:66.886667pt;}
.x4{left:81.889333pt;}
.x1f{left:83.378667pt;}
.x1c{left:84.892000pt;}
.x8{left:91.596941pt;}
.x7{left:92.808479pt;}
.x1e{left:95.977333pt;}
.x20{left:213.666667pt;}
.x9{left:254.488271pt;}
.xb{left:274.898523pt;}
.x19{left:295.309333pt;}
.x10{left:361.613879pt;}
.x17{left:376.946690pt;}
.x14{left:381.703703pt;}
.x1b{left:445.281333pt;}
.x1d{left:446.865333pt;}
.x15{left:450.222667pt;}
.x2{left:451.126667pt;}
}




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