
    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_ec14f9b00b0f092fb964458a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_edfe90f348c118d126fcf89e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_bc0f068f7bf1530e1b3da87e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.372070;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_269d913cff20a14de83a408a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2ba4c104d1e3438a71486613.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951172;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_2e8d1dee3bde1b002972a027.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_2c14336a9cf42138e6601f78.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_572ee82d87f7f254ab447fca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_b9d042c5ba676f8761107921.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_23ec1cd63aa8dcba2197e9e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.761230;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_51126a92b3b24fc14b4a76a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760254;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_a469a64438b5a58500a37379.woff2')format("woff");}.fff{font-family:fff;line-height:0.973145;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_2a9a3daead6688b7c66ec76c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976074;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_fd16d9006206cc7e6ae0948a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.774902;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_19be155aae60b75dbeca4098.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927734;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_a6dfb4774c32ba912bc766d9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.954102;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_e79c218aa63cf0b9f248f923.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;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_2d161ce3fdcbbb0644793447.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922363;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_de6542564a43a54209c1bd90.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.401855;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:ff17;src:url('chunks/assets/font_caf85c2651b05b4987e18e03.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.128906;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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.180000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.180000px;}
.ls24{letter-spacing:-1.728000px;}
.ls17{letter-spacing:-1.602000px;}
.ls27{letter-spacing:-1.494000px;}
.ls26{letter-spacing:-1.260000px;}
.ls23{letter-spacing:-1.206000px;}
.ls28{letter-spacing:-1.152000px;}
.ls22{letter-spacing:-1.044000px;}
.ls21{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.756000px;}
.lsa{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.342000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.097800px;}
.ls13{letter-spacing:-0.036000px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.031680px;}
.ls1c{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.302400px;}
.ls7{letter-spacing:0.311040px;}
.ls3{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.385800px;}
.ls16{letter-spacing:0.468000px;}
.ls12{letter-spacing:0.486000px;}
.ls11{letter-spacing:0.522000px;}
.lsc{letter-spacing:0.532800px;}
.ls10{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.670320px;}
.ls2{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.260000px;}
.ls15{letter-spacing:5.706000px;}
.ls1b{letter-spacing:7.866000px;}
.ls14{letter-spacing:9.306000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.sc3{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,128,128),0 0.015em rgb(0,128,128),0.015em 0 rgb(0,128,128),0 -0.015em  rgb(0,128,128);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-20.437920px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.966720px;}
.ws3{word-spacing:-15.840000px;}
.ws8{word-spacing:-14.992560px;}
.ws9{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.004000px;}
.ws13{word-spacing:-13.896000px;}
.ws15{word-spacing:-13.752000px;}
.ws5{word-spacing:-13.716000px;}
.ws14{word-spacing:-13.266000px;}
.ws16{word-spacing:-13.176000px;}
.ws0{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.049400px;}
.wsd{word-spacing:-13.014000px;}
.wse{word-spacing:-12.978000px;}
.ws18{word-spacing:-12.852000px;}
.wsf{word-spacing:-12.834000px;}
.ws12{word-spacing:-12.798000px;}
.ws10{word-spacing:-12.726000px;}
.ws1e{word-spacing:-12.564000px;}
.ws19{word-spacing:-12.510000px;}
.ws1c{word-spacing:-12.456000px;}
.ws1b{word-spacing:-12.258000px;}
.ws17{word-spacing:-11.970000px;}
.ws1d{word-spacing:-11.520000px;}
.ws1a{word-spacing:-11.286000px;}
.ws6{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.576000px;}
.wsa{word-spacing:0.000000px;}
._e{margin-left:-2.857200px;}
._1{margin-left:-1.349280px;}
._0{width:1.169040px;}
._7{width:2.756880px;}
._6{width:3.955440px;}
._5{width:5.076240px;}
._a{width:6.544320px;}
._4{width:8.067840px;}
._b{width:10.046880px;}
._17{width:11.310720px;}
._3a{width:12.528000px;}
._26{width:14.680560px;}
._11{width:16.092000px;}
._12{width:17.094000px;}
._c{width:18.543840px;}
._d{width:19.545120px;}
._1b{width:21.459840px;}
._1c{width:22.491600px;}
._f{width:23.922000px;}
._10{width:25.920000px;}
._9{width:27.162000px;}
._8{width:28.892880px;}
._14{width:30.046320px;}
._16{width:31.590720px;}
._15{width:33.047280px;}
._25{width:34.095600px;}
._30{width:35.154240px;}
._13{width:36.828000px;}
._28{width:38.008560px;}
._19{width:39.066720px;}
._2b{width:40.527120px;}
._2c{width:41.677200px;}
._2{width:43.048080px;}
._1a{width:44.211360px;}
._3{width:45.396240px;}
._21{width:46.432560px;}
._27{width:47.514240px;}
._1d{width:48.754560px;}
._34{width:49.957440px;}
._18{width:51.886560px;}
._29{width:52.931520px;}
._2a{width:54.481680px;}
._22{width:56.629920px;}
._2e{width:58.621200px;}
._2d{width:60.040560px;}
._32{width:61.938000px;}
._35{width:63.072000px;}
._37{width:64.530000px;}
._24{width:66.344160px;}
._23{width:67.581600px;}
._38{width:69.192240px;}
._39{width:70.283760px;}
._20{width:74.385600px;}
._2f{width:77.587680px;}
._33{width:81.472800px;}
._1f{width:86.435040px;}
._1e{width:87.774720px;}
._36{width:88.982160px;}
._3b{width:91.188240px;}
._3f{width:109.995120px;}
._31{width:131.274000px;}
._3d{width:153.915360px;}
._3c{width:160.664400px;}
._3e{width:163.779120px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(0,128,0);}
.fca{color:rgb(127,127,127);}
.fc9{color:rgb(38,38,38);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,128);}
.fsc{font-size:2.880000px;}
.fs3{font-size:12.240000px;}
.fs6{font-size:18.000000px;}
.fsa{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fsf{font-size:41.760000px;}
.fs10{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fse{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y4e{bottom:-13.710000px;}
.y42{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.900000px;}
.y1a{bottom:1.440000px;}
.y3c{bottom:1.605000px;}
.y10{bottom:1.800000px;}
.y28{bottom:2.340000px;}
.y26{bottom:3.060000px;}
.y22{bottom:3.240000px;}
.y24{bottom:3.420000px;}
.y1f{bottom:4.140000px;}
.y21{bottom:4.500000px;}
.y40{bottom:6.645000px;}
.y4d{bottom:7.350000px;}
.y82{bottom:7.725000px;}
.y91{bottom:7.740000px;}
.yb8{bottom:7.770000px;}
.ya6{bottom:7.920000px;}
.y3e{bottom:10.425000px;}
.y94{bottom:10.800000px;}
.y3a{bottom:10.965000px;}
.y1d{bottom:10.980000px;}
.y51{bottom:11.700000px;}
.y3{bottom:12.600000px;}
.y52{bottom:13.680000px;}
.y13{bottom:14.040000px;}
.ya{bottom:14.400000px;}
.y2{bottom:14.580000px;}
.y53{bottom:16.560000px;}
.ye{bottom:17.640000px;}
.y18{bottom:19.260000px;}
.y4c{bottom:31.830000px;}
.y39{bottom:33.825000px;}
.y93{bottom:33.840000px;}
.y1c{bottom:34.020000px;}
.yc2{bottom:34.050000px;}
.y12{bottom:41.940000px;}
.y9{bottom:45.540000px;}
.y17{bottom:47.340000px;}
.y4{bottom:47.520000px;}
.yd{bottom:53.280000px;}
.y4b{bottom:55.230000px;}
.y38{bottom:56.865000px;}
.y1{bottom:63.720000px;}
.y8{bottom:76.680000px;}
.y4a{bottom:78.270000px;}
.y37{bottom:79.905000px;}
.y49{bottom:101.850000px;}
.y36{bottom:102.945000px;}
.y6{bottom:107.640000px;}
.y7{bottom:107.820000px;}
.y8f{bottom:113.760000px;}
.yf1{bottom:117.360000px;}
.y47{bottom:118.260000px;}
.y11c{bottom:120.060000px;}
.y35{bottom:125.985000px;}
.yb6{bottom:127.080000px;}
.ya3{bottom:129.420000px;}
.y80{bottom:130.320000px;}
.y156{bottom:132.840000px;}
.y147{bottom:133.920000px;}
.y8e{bottom:136.800000px;}
.yf0{bottom:140.400000px;}
.y46{bottom:141.300000px;}
.y11b{bottom:143.820000px;}
.y34{bottom:149.025000px;}
.yb5{bottom:150.120000px;}
.ya2{bottom:152.460000px;}
.y7f{bottom:153.180000px;}
.y155{bottom:155.880000px;}
.y146{bottom:157.320000px;}
.y8d{bottom:159.660000px;}
.yef{bottom:163.440000px;}
.y45{bottom:164.160000px;}
.y11a{bottom:167.580000px;}
.y33{bottom:171.930000px;}
.yb4{bottom:173.160000px;}
.ya1{bottom:175.500000px;}
.y7e{bottom:176.220000px;}
.y154{bottom:178.920000px;}
.y145{bottom:180.720000px;}
.y8c{bottom:182.700000px;}
.yee{bottom:186.300000px;}
.y44{bottom:187.200000px;}
.y119{bottom:191.520000px;}
.y32{bottom:194.970000px;}
.yb3{bottom:196.200000px;}
.ya0{bottom:198.360000px;}
.y7d{bottom:199.260000px;}
.y153{bottom:201.780000px;}
.y144{bottom:204.300000px;}
.y8b{bottom:205.740000px;}
.yed{bottom:209.370000px;}
.y43{bottom:210.270000px;}
.y118{bottom:215.310000px;}
.y31{bottom:218.010000px;}
.yb2{bottom:219.090000px;}
.y9f{bottom:221.430000px;}
.y7c{bottom:222.330000px;}
.y41{bottom:222.345000px;}
.y152{bottom:224.850000px;}
.y143{bottom:227.730000px;}
.y8a{bottom:228.810000px;}
.yec{bottom:232.410000px;}
.y117{bottom:239.070000px;}
.y30{bottom:241.050000px;}
.y3f{bottom:241.785000px;}
.yb1{bottom:242.130000px;}
.y9e{bottom:244.470000px;}
.y7b{bottom:245.370000px;}
.y151{bottom:247.890000px;}
.y142{bottom:251.130000px;}
.y89{bottom:251.850000px;}
.yeb{bottom:255.450000px;}
.y3d{bottom:261.225000px;}
.y116{bottom:262.830000px;}
.y2f{bottom:264.090000px;}
.yb0{bottom:265.170000px;}
.y9d{bottom:267.510000px;}
.y7a{bottom:268.410000px;}
.y150{bottom:270.930000px;}
.y141{bottom:274.530000px;}
.y88{bottom:274.890000px;}
.yea{bottom:278.490000px;}
.y3b{bottom:281.205000px;}
.y115{bottom:286.590000px;}
.y2e{bottom:286.950000px;}
.y29{bottom:287.865000px;}
.yaf{bottom:288.210000px;}
.y9c{bottom:290.550000px;}
.y79{bottom:291.270000px;}
.y14f{bottom:293.970000px;}
.y87{bottom:297.750000px;}
.y140{bottom:298.110000px;}
.ye9{bottom:301.350000px;}
.y2d{bottom:309.990000px;}
.y114{bottom:310.350000px;}
.yae{bottom:311.250000px;}
.y9b{bottom:313.590000px;}
.y78{bottom:314.310000px;}
.y14e{bottom:316.830000px;}
.y86{bottom:320.790000px;}
.y13f{bottom:321.510000px;}
.ye8{bottom:324.390000px;}
.y2c{bottom:333.030000px;}
.yad{bottom:334.110000px;}
.y9a{bottom:336.450000px;}
.y77{bottom:337.350000px;}
.y14d{bottom:339.870000px;}
.y85{bottom:343.830000px;}
.y13e{bottom:344.910000px;}
.ye7{bottom:347.430000px;}
.y2b{bottom:356.070000px;}
.yac{bottom:357.150000px;}
.y113{bottom:357.870000px;}
.y99{bottom:359.490000px;}
.y76{bottom:360.390000px;}
.y14c{bottom:362.910000px;}
.y84{bottom:366.870000px;}
.y13d{bottom:368.490000px;}
.ye6{bottom:370.470000px;}
.y83{bottom:378.945000px;}
.y2a{bottom:379.110000px;}
.yab{bottom:380.190000px;}
.y112{bottom:381.630000px;}
.y98{bottom:382.530000px;}
.y75{bottom:383.430000px;}
.y14b{bottom:385.950000px;}
.y13c{bottom:391.890000px;}
.ye5{bottom:393.510000px;}
.y81{bottom:401.985000px;}
.yaa{bottom:403.230000px;}
.y111{bottom:405.390000px;}
.y97{bottom:405.570000px;}
.y74{bottom:406.470000px;}
.y14a{bottom:408.990000px;}
.y13b{bottom:415.290000px;}
.ye4{bottom:416.550000px;}
.yc1{bottom:417.645000px;}
.ya9{bottom:426.270000px;}
.y96{bottom:428.610000px;}
.y110{bottom:429.150000px;}
.y73{bottom:429.330000px;}
.y149{bottom:432.030000px;}
.y13a{bottom:438.870000px;}
.ye3{bottom:439.410000px;}
.ya8{bottom:446.655000px;}
.y95{bottom:451.695000px;}
.y72{bottom:452.415000px;}
.y10f{bottom:453.135000px;}
.y148{bottom:453.675000px;}
.ya7{bottom:456.195000px;}
.y139{bottom:462.315000px;}
.ye2{bottom:462.495000px;}
.y92{bottom:463.755000px;}
.yc0{bottom:474.555000px;}
.y71{bottom:475.455000px;}
.y10e{bottom:476.895000px;}
.ya5{bottom:479.235000px;}
.ye1{bottom:485.535000px;}
.y138{bottom:485.715000px;}
.ybf{bottom:497.595000px;}
.y70{bottom:498.495000px;}
.y10d{bottom:500.655000px;}
.ye0{bottom:508.575000px;}
.y137{bottom:509.295000px;}
.y90{bottom:509.655000px;}
.ybe{bottom:520.635000px;}
.y6f{bottom:521.535000px;}
.y10c{bottom:524.415000px;}
.ydf{bottom:531.615000px;}
.y136{bottom:532.695000px;}
.ybd{bottom:543.675000px;}
.y6e{bottom:544.575000px;}
.y10b{bottom:548.175000px;}
.yde{bottom:554.655000px;}
.y135{bottom:556.095000px;}
.ybc{bottom:566.715000px;}
.y6d{bottom:567.435000px;}
.y10a{bottom:571.935000px;}
.ydd{bottom:577.515000px;}
.y134{bottom:579.675000px;}
.ybb{bottom:589.755000px;}
.y6c{bottom:590.475000px;}
.y109{bottom:595.695000px;}
.ydc{bottom:600.555000px;}
.y133{bottom:603.075000px;}
.yba{bottom:612.615000px;}
.y6b{bottom:613.515000px;}
.y108{bottom:619.455000px;}
.ydb{bottom:623.595000px;}
.yb9{bottom:624.675000px;}
.y132{bottom:626.475000px;}
.y6a{bottom:636.555000px;}
.y107{bottom:643.215000px;}
.yda{bottom:646.635000px;}
.y131{bottom:649.875000px;}
.y69{bottom:659.595000px;}
.y106{bottom:666.975000px;}
.yd9{bottom:669.675000px;}
.yb7{bottom:670.755000px;}
.y130{bottom:673.455000px;}
.y27{bottom:679.065000px;}
.y68{bottom:682.485000px;}
.y25{bottom:689.325000px;}
.y105{bottom:690.765000px;}
.yd8{bottom:692.745000px;}
.y12f{bottom:696.885000px;}
.y23{bottom:704.625000px;}
.y67{bottom:705.525000px;}
.y104{bottom:714.525000px;}
.yd7{bottom:715.605000px;}
.y12e{bottom:720.285000px;}
.y20{bottom:721.545000px;}
.y66{bottom:728.565000px;}
.y103{bottom:738.465000px;}
.yd6{bottom:738.645000px;}
.y1e{bottom:739.905000px;}
.y12d{bottom:743.865000px;}
.y65{bottom:751.605000px;}
.ya4{bottom:754.125000px;}
.y1b{bottom:755.205000px;}
.yd5{bottom:761.685000px;}
.y102{bottom:762.225000px;}
.y12c{bottom:767.265000px;}
.y64{bottom:774.645000px;}
.yd4{bottom:784.725000px;}
.y101{bottom:785.985000px;}
.y12b{bottom:790.665000px;}
.y63{bottom:797.685000px;}
.y19{bottom:801.285000px;}
.y16{bottom:806.325000px;}
.yd3{bottom:807.765000px;}
.y100{bottom:809.745000px;}
.y12a{bottom:814.245000px;}
.y62{bottom:820.545000px;}
.yd2{bottom:830.625000px;}
.yff{bottom:833.505000px;}
.y129{bottom:837.645000px;}
.y61{bottom:843.585000px;}
.yd1{bottom:853.665000px;}
.yfe{bottom:857.265000px;}
.y128{bottom:861.045000px;}
.y14{bottom:862.485000px;}
.y60{bottom:866.625000px;}
.y11{bottom:867.885000px;}
.yd0{bottom:876.705000px;}
.yfd{bottom:881.025000px;}
.y127{bottom:884.625000px;}
.y5f{bottom:889.665000px;}
.ycf{bottom:899.745000px;}
.yfc{bottom:904.785000px;}
.y126{bottom:908.025000px;}
.y5e{bottom:912.750000px;}
.yce{bottom:922.830000px;}
.yf{bottom:923.910000px;}
.yc{bottom:927.870000px;}
.yfb{bottom:928.590000px;}
.y125{bottom:931.470000px;}
.y5d{bottom:935.790000px;}
.ycd{bottom:937.050000px;}
.yfa{bottom:952.350000px;}
.ycc{bottom:952.530000px;}
.y124{bottom:955.050000px;}
.y5c{bottom:958.650000px;}
.ycb{bottom:967.830000px;}
.yf9{bottom:976.110000px;}
.y123{bottom:978.450000px;}
.y5b{bottom:981.690000px;}
.yca{bottom:983.130000px;}
.y161{bottom:991.950000px;}
.yc9{bottom:998.430000px;}
.yf8{bottom:999.870000px;}
.y122{bottom:1001.850000px;}
.y5a{bottom:1004.730000px;}
.yb{bottom:1013.550000px;}
.yc8{bottom:1013.730000px;}
.y15c{bottom:1014.090000px;}
.yf7{bottom:1023.810000px;}
.y121{bottom:1025.250000px;}
.y59{bottom:1027.770000px;}
.yc7{bottom:1029.210000px;}
.y5{bottom:1030.290000px;}
.y15b{bottom:1036.410000px;}
.y48{bottom:1037.880000px;}
.yc6{bottom:1044.510000px;}
.y160{bottom:1044.690000px;}
.yf6{bottom:1047.570000px;}
.y120{bottom:1048.830000px;}
.y58{bottom:1050.810000px;}
.y15a{bottom:1058.550000px;}
.yc5{bottom:1059.810000px;}
.y15f{bottom:1068.990000px;}
.yf5{bottom:1071.330000px;}
.y11f{bottom:1072.230000px;}
.y57{bottom:1073.850000px;}
.yc4{bottom:1075.110000px;}
.y159{bottom:1080.870000px;}
.yc3{bottom:1091.310000px;}
.y15e{bottom:1093.470000px;}
.yf4{bottom:1095.090000px;}
.y11e{bottom:1095.630000px;}
.y56{bottom:1096.710000px;}
.y158{bottom:1100.850000px;}
.y15d{bottom:1118.130000px;}
.yf3{bottom:1118.850000px;}
.y11d{bottom:1119.210000px;}
.y55{bottom:1119.750000px;}
.y157{bottom:1120.290000px;}
.yf2{bottom:1142.610000px;}
.y54{bottom:1142.790000px;}
.y50{bottom:1161.000000px;}
.y4f{bottom:1185.840000px;}
.h29{height:2.005313px;}
.ha{height:3.945000px;}
.h12{height:5.040000px;}
.he{height:5.400000px;}
.h20{height:6.645000px;}
.hb{height:8.289492px;}
.h1d{height:10.260000px;}
.h13{height:12.533203px;}
.hf{height:13.675781px;}
.h3e{height:15.285000px;}
.h16{height:15.300000px;}
.h3f{height:15.465000px;}
.h21{height:16.543828px;}
.h1b{height:16.920000px;}
.h2e{height:17.640000px;}
.h18{height:18.360000px;}
.h24{height:19.425000px;}
.h22{height:19.965000px;}
.h35{height:23.025000px;}
.h11{height:23.980781px;}
.h25{height:27.071719px;}
.h30{height:27.898500px;}
.h2{height:28.798500px;}
.h23{height:29.145586px;}
.h1e{height:32.835938px;}
.h33{height:34.684453px;}
.h39{height:38.089687px;}
.h28{height:38.865000px;}
.h27{height:40.472227px;}
.h17{height:40.500000px;}
.h36{height:40.842773px;}
.h26{height:41.610234px;}
.h40{height:44.000156px;}
.hd{height:44.860781px;}
.h1a{height:45.695391px;}
.h38{height:45.885000px;}
.h3b{height:46.065000px;}
.h14{height:46.080000px;}
.h3d{height:46.101000px;}
.h15{height:49.253906px;}
.h19{height:50.100469px;}
.h2c{height:54.000000px;}
.h7{height:54.457031px;}
.h1c{height:54.507656px;}
.hc{height:56.002500px;}
.h2d{height:56.084062px;}
.h10{height:56.160000px;}
.h9{height:57.051211px;}
.h3{height:58.651172px;}
.h31{height:60.679688px;}
.h2b{height:63.180000px;}
.h2f{height:65.837812px;}
.h5{height:70.664062px;}
.h8{height:71.265000px;}
.h4{height:71.824219px;}
.h32{height:72.562500px;}
.h2a{height:119.160000px;}
.h6{height:124.590000px;}
.h3c{height:207.885000px;}
.h37{height:207.930000px;}
.h3a{height:266.610000px;}
.h1f{height:391.200000px;}
.h34{height:453.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:52.189500px;}
.w18{width:69.285000px;}
.w16{width:71.481000px;}
.w17{width:71.985000px;}
.w15{width:82.245000px;}
.w14{width:82.476000px;}
.w4{width:101.329500px;}
.w9{width:154.429500px;}
.w3{width:265.155000px;}
.wf{width:280.320000px;}
.w13{width:297.559500px;}
.w11{width:324.015000px;}
.w12{width:324.019500px;}
.w8{width:325.455000px;}
.wd{width:333.555000px;}
.wc{width:338.284500px;}
.w10{width:339.315000px;}
.w7{width:349.624500px;}
.w2{width:414.424500px;}
.wa{width:520.650000px;}
.wb{width:573.660000px;}
.w5{width:575.730000px;}
.w6{width:675.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.769500px;}
.x15{left:6.465000px;}
.x29{left:9.900000px;}
.x1e{left:11.325000px;}
.x22{left:12.420000px;}
.x1c{left:14.580000px;}
.x20{left:15.825000px;}
.x13{left:17.809500px;}
.x28{left:18.900000px;}
.x26{left:20.325000px;}
.x25{left:25.020000px;}
.x27{left:31.500000px;}
.x17{left:32.565000px;}
.x24{left:34.560000px;}
.xb{left:38.370000px;}
.x1{left:106.786500px;}
.x5{left:108.036000px;}
.x12{left:122.025000px;}
.x18{left:143.445000px;}
.x14{left:164.385000px;}
.x4{left:197.670000px;}
.x6{left:209.385000px;}
.xc{left:221.115000px;}
.x9{left:263.385000px;}
.xd{left:273.705000px;}
.xe{left:303.405000px;}
.x1a{left:324.030000px;}
.xf{left:341.025000px;}
.x1b{left:405.615000px;}
.x16{left:444.720000px;}
.x11{left:450.480000px;}
.x8{left:458.580000px;}
.xa{left:462.705000px;}
.x1d{left:488.100000px;}
.x3{left:521.220000px;}
.x1f{left:570.360000px;}
.x10{left:573.990000px;}
.x21{left:641.850000px;}
.x19{left:656.203500px;}
.x7{left:675.103500px;}
.x23{left:713.850000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.160000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.160000pt;}
.ls24{letter-spacing:-1.536000pt;}
.ls17{letter-spacing:-1.424000pt;}
.ls27{letter-spacing:-1.328000pt;}
.ls26{letter-spacing:-1.120000pt;}
.ls23{letter-spacing:-1.072000pt;}
.ls28{letter-spacing:-1.024000pt;}
.ls22{letter-spacing:-0.928000pt;}
.ls21{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.672000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.304000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.086933pt;}
.ls13{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.028160pt;}
.ls1c{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.268800pt;}
.ls7{letter-spacing:0.276480pt;}
.ls3{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.342933pt;}
.ls16{letter-spacing:0.416000pt;}
.ls12{letter-spacing:0.432000pt;}
.ls11{letter-spacing:0.464000pt;}
.lsc{letter-spacing:0.473600pt;}
.ls10{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.595840pt;}
.ls2{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.120000pt;}
.ls15{letter-spacing:5.072000pt;}
.ls1b{letter-spacing:6.992000pt;}
.ls14{letter-spacing:8.272000pt;}
.ws4{word-spacing:-18.167040pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.192640pt;}
.ws3{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.326720pt;}
.ws9{word-spacing:-13.296533pt;}
.ws7{word-spacing:-13.280000pt;}
.ws11{word-spacing:-12.448000pt;}
.ws13{word-spacing:-12.352000pt;}
.ws15{word-spacing:-12.224000pt;}
.ws5{word-spacing:-12.192000pt;}
.ws14{word-spacing:-11.792000pt;}
.ws16{word-spacing:-11.712000pt;}
.ws0{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.599467pt;}
.wsd{word-spacing:-11.568000pt;}
.wse{word-spacing:-11.536000pt;}
.ws18{word-spacing:-11.424000pt;}
.wsf{word-spacing:-11.408000pt;}
.ws12{word-spacing:-11.376000pt;}
.ws10{word-spacing:-11.312000pt;}
.ws1e{word-spacing:-11.168000pt;}
.ws19{word-spacing:-11.120000pt;}
.ws1c{word-spacing:-11.072000pt;}
.ws1b{word-spacing:-10.896000pt;}
.ws17{word-spacing:-10.640000pt;}
.ws1d{word-spacing:-10.240000pt;}
.ws1a{word-spacing:-10.032000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.512000pt;}
.wsa{word-spacing:0.000000pt;}
._e{margin-left:-2.539733pt;}
._1{margin-left:-1.199360pt;}
._0{width:1.039147pt;}
._7{width:2.450560pt;}
._6{width:3.515947pt;}
._5{width:4.512213pt;}
._a{width:5.817173pt;}
._4{width:7.171413pt;}
._b{width:8.930560pt;}
._17{width:10.053973pt;}
._3a{width:11.136000pt;}
._26{width:13.049387pt;}
._11{width:14.304000pt;}
._12{width:15.194667pt;}
._c{width:16.483413pt;}
._d{width:17.373440pt;}
._1b{width:19.075413pt;}
._1c{width:19.992533pt;}
._f{width:21.264000pt;}
._10{width:23.040000pt;}
._9{width:24.144000pt;}
._8{width:25.682560pt;}
._14{width:26.707840pt;}
._16{width:28.080640pt;}
._15{width:29.375360pt;}
._25{width:30.307200pt;}
._30{width:31.248213pt;}
._13{width:32.736000pt;}
._28{width:33.785387pt;}
._19{width:34.725973pt;}
._2b{width:36.024107pt;}
._2c{width:37.046400pt;}
._2{width:38.264960pt;}
._1a{width:39.298987pt;}
._3{width:40.352213pt;}
._21{width:41.273387pt;}
._27{width:42.234880pt;}
._1d{width:43.337387pt;}
._34{width:44.406613pt;}
._18{width:46.121387pt;}
._29{width:47.050240pt;}
._2a{width:48.428160pt;}
._22{width:50.337707pt;}
._2e{width:52.107733pt;}
._2d{width:53.369387pt;}
._32{width:55.056000pt;}
._35{width:56.064000pt;}
._37{width:57.360000pt;}
._24{width:58.972587pt;}
._23{width:60.072533pt;}
._38{width:61.504213pt;}
._39{width:62.474453pt;}
._20{width:66.120533pt;}
._2f{width:68.966827pt;}
._33{width:72.420267pt;}
._1f{width:76.831147pt;}
._1e{width:78.021973pt;}
._36{width:79.095253pt;}
._3b{width:81.056213pt;}
._3f{width:97.773440pt;}
._31{width:116.688000pt;}
._3d{width:136.813653pt;}
._3c{width:142.812800pt;}
._3e{width:145.581440pt;}
.fsc{font-size:2.560000pt;}
.fs3{font-size:10.880000pt;}
.fs6{font-size:16.000000pt;}
.fsa{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fsf{font-size:37.120000pt;}
.fs10{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fse{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y4e{bottom:-12.186667pt;}
.y42{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.800000pt;}
.y1a{bottom:1.280000pt;}
.y3c{bottom:1.426667pt;}
.y10{bottom:1.600000pt;}
.y28{bottom:2.080000pt;}
.y26{bottom:2.720000pt;}
.y22{bottom:2.880000pt;}
.y24{bottom:3.040000pt;}
.y1f{bottom:3.680000pt;}
.y21{bottom:4.000000pt;}
.y40{bottom:5.906667pt;}
.y4d{bottom:6.533333pt;}
.y82{bottom:6.866667pt;}
.y91{bottom:6.880000pt;}
.yb8{bottom:6.906667pt;}
.ya6{bottom:7.040000pt;}
.y3e{bottom:9.266667pt;}
.y94{bottom:9.600000pt;}
.y3a{bottom:9.746667pt;}
.y1d{bottom:9.760000pt;}
.y51{bottom:10.400000pt;}
.y3{bottom:11.200000pt;}
.y52{bottom:12.160000pt;}
.y13{bottom:12.480000pt;}
.ya{bottom:12.800000pt;}
.y2{bottom:12.960000pt;}
.y53{bottom:14.720000pt;}
.ye{bottom:15.680000pt;}
.y18{bottom:17.120000pt;}
.y4c{bottom:28.293333pt;}
.y39{bottom:30.066667pt;}
.y93{bottom:30.080000pt;}
.y1c{bottom:30.240000pt;}
.yc2{bottom:30.266667pt;}
.y12{bottom:37.280000pt;}
.y9{bottom:40.480000pt;}
.y17{bottom:42.080000pt;}
.y4{bottom:42.240000pt;}
.yd{bottom:47.360000pt;}
.y4b{bottom:49.093333pt;}
.y38{bottom:50.546667pt;}
.y1{bottom:56.640000pt;}
.y8{bottom:68.160000pt;}
.y4a{bottom:69.573333pt;}
.y37{bottom:71.026667pt;}
.y49{bottom:90.533333pt;}
.y36{bottom:91.506667pt;}
.y6{bottom:95.680000pt;}
.y7{bottom:95.840000pt;}
.y8f{bottom:101.120000pt;}
.yf1{bottom:104.320000pt;}
.y47{bottom:105.120000pt;}
.y11c{bottom:106.720000pt;}
.y35{bottom:111.986667pt;}
.yb6{bottom:112.960000pt;}
.ya3{bottom:115.040000pt;}
.y80{bottom:115.840000pt;}
.y156{bottom:118.080000pt;}
.y147{bottom:119.040000pt;}
.y8e{bottom:121.600000pt;}
.yf0{bottom:124.800000pt;}
.y46{bottom:125.600000pt;}
.y11b{bottom:127.840000pt;}
.y34{bottom:132.466667pt;}
.yb5{bottom:133.440000pt;}
.ya2{bottom:135.520000pt;}
.y7f{bottom:136.160000pt;}
.y155{bottom:138.560000pt;}
.y146{bottom:139.840000pt;}
.y8d{bottom:141.920000pt;}
.yef{bottom:145.280000pt;}
.y45{bottom:145.920000pt;}
.y11a{bottom:148.960000pt;}
.y33{bottom:152.826667pt;}
.yb4{bottom:153.920000pt;}
.ya1{bottom:156.000000pt;}
.y7e{bottom:156.640000pt;}
.y154{bottom:159.040000pt;}
.y145{bottom:160.640000pt;}
.y8c{bottom:162.400000pt;}
.yee{bottom:165.600000pt;}
.y44{bottom:166.400000pt;}
.y119{bottom:170.240000pt;}
.y32{bottom:173.306667pt;}
.yb3{bottom:174.400000pt;}
.ya0{bottom:176.320000pt;}
.y7d{bottom:177.120000pt;}
.y153{bottom:179.360000pt;}
.y144{bottom:181.600000pt;}
.y8b{bottom:182.880000pt;}
.yed{bottom:186.106667pt;}
.y43{bottom:186.906667pt;}
.y118{bottom:191.386667pt;}
.y31{bottom:193.786667pt;}
.yb2{bottom:194.746667pt;}
.y9f{bottom:196.826667pt;}
.y7c{bottom:197.626667pt;}
.y41{bottom:197.640000pt;}
.y152{bottom:199.866667pt;}
.y143{bottom:202.426667pt;}
.y8a{bottom:203.386667pt;}
.yec{bottom:206.586667pt;}
.y117{bottom:212.506667pt;}
.y30{bottom:214.266667pt;}
.y3f{bottom:214.920000pt;}
.yb1{bottom:215.226667pt;}
.y9e{bottom:217.306667pt;}
.y7b{bottom:218.106667pt;}
.y151{bottom:220.346667pt;}
.y142{bottom:223.226667pt;}
.y89{bottom:223.866667pt;}
.yeb{bottom:227.066667pt;}
.y3d{bottom:232.200000pt;}
.y116{bottom:233.626667pt;}
.y2f{bottom:234.746667pt;}
.yb0{bottom:235.706667pt;}
.y9d{bottom:237.786667pt;}
.y7a{bottom:238.586667pt;}
.y150{bottom:240.826667pt;}
.y141{bottom:244.026667pt;}
.y88{bottom:244.346667pt;}
.yea{bottom:247.546667pt;}
.y3b{bottom:249.960000pt;}
.y115{bottom:254.746667pt;}
.y2e{bottom:255.066667pt;}
.y29{bottom:255.880000pt;}
.yaf{bottom:256.186667pt;}
.y9c{bottom:258.266667pt;}
.y79{bottom:258.906667pt;}
.y14f{bottom:261.306667pt;}
.y87{bottom:264.666667pt;}
.y140{bottom:264.986667pt;}
.ye9{bottom:267.866667pt;}
.y2d{bottom:275.546667pt;}
.y114{bottom:275.866667pt;}
.yae{bottom:276.666667pt;}
.y9b{bottom:278.746667pt;}
.y78{bottom:279.386667pt;}
.y14e{bottom:281.626667pt;}
.y86{bottom:285.146667pt;}
.y13f{bottom:285.786667pt;}
.ye8{bottom:288.346667pt;}
.y2c{bottom:296.026667pt;}
.yad{bottom:296.986667pt;}
.y9a{bottom:299.066667pt;}
.y77{bottom:299.866667pt;}
.y14d{bottom:302.106667pt;}
.y85{bottom:305.626667pt;}
.y13e{bottom:306.586667pt;}
.ye7{bottom:308.826667pt;}
.y2b{bottom:316.506667pt;}
.yac{bottom:317.466667pt;}
.y113{bottom:318.106667pt;}
.y99{bottom:319.546667pt;}
.y76{bottom:320.346667pt;}
.y14c{bottom:322.586667pt;}
.y84{bottom:326.106667pt;}
.y13d{bottom:327.546667pt;}
.ye6{bottom:329.306667pt;}
.y83{bottom:336.840000pt;}
.y2a{bottom:336.986667pt;}
.yab{bottom:337.946667pt;}
.y112{bottom:339.226667pt;}
.y98{bottom:340.026667pt;}
.y75{bottom:340.826667pt;}
.y14b{bottom:343.066667pt;}
.y13c{bottom:348.346667pt;}
.ye5{bottom:349.786667pt;}
.y81{bottom:357.320000pt;}
.yaa{bottom:358.426667pt;}
.y111{bottom:360.346667pt;}
.y97{bottom:360.506667pt;}
.y74{bottom:361.306667pt;}
.y14a{bottom:363.546667pt;}
.y13b{bottom:369.146667pt;}
.ye4{bottom:370.266667pt;}
.yc1{bottom:371.240000pt;}
.ya9{bottom:378.906667pt;}
.y96{bottom:380.986667pt;}
.y110{bottom:381.466667pt;}
.y73{bottom:381.626667pt;}
.y149{bottom:384.026667pt;}
.y13a{bottom:390.106667pt;}
.ye3{bottom:390.586667pt;}
.ya8{bottom:397.026667pt;}
.y95{bottom:401.506667pt;}
.y72{bottom:402.146667pt;}
.y10f{bottom:402.786667pt;}
.y148{bottom:403.266667pt;}
.ya7{bottom:405.506667pt;}
.y139{bottom:410.946667pt;}
.ye2{bottom:411.106667pt;}
.y92{bottom:412.226667pt;}
.yc0{bottom:421.826667pt;}
.y71{bottom:422.626667pt;}
.y10e{bottom:423.906667pt;}
.ya5{bottom:425.986667pt;}
.ye1{bottom:431.586667pt;}
.y138{bottom:431.746667pt;}
.ybf{bottom:442.306667pt;}
.y70{bottom:443.106667pt;}
.y10d{bottom:445.026667pt;}
.ye0{bottom:452.066667pt;}
.y137{bottom:452.706667pt;}
.y90{bottom:453.026667pt;}
.ybe{bottom:462.786667pt;}
.y6f{bottom:463.586667pt;}
.y10c{bottom:466.146667pt;}
.ydf{bottom:472.546667pt;}
.y136{bottom:473.506667pt;}
.ybd{bottom:483.266667pt;}
.y6e{bottom:484.066667pt;}
.y10b{bottom:487.266667pt;}
.yde{bottom:493.026667pt;}
.y135{bottom:494.306667pt;}
.ybc{bottom:503.746667pt;}
.y6d{bottom:504.386667pt;}
.y10a{bottom:508.386667pt;}
.ydd{bottom:513.346667pt;}
.y134{bottom:515.266667pt;}
.ybb{bottom:524.226667pt;}
.y6c{bottom:524.866667pt;}
.y109{bottom:529.506667pt;}
.ydc{bottom:533.826667pt;}
.y133{bottom:536.066667pt;}
.yba{bottom:544.546667pt;}
.y6b{bottom:545.346667pt;}
.y108{bottom:550.626667pt;}
.ydb{bottom:554.306667pt;}
.yb9{bottom:555.266667pt;}
.y132{bottom:556.866667pt;}
.y6a{bottom:565.826667pt;}
.y107{bottom:571.746667pt;}
.yda{bottom:574.786667pt;}
.y131{bottom:577.666667pt;}
.y69{bottom:586.306667pt;}
.y106{bottom:592.866667pt;}
.yd9{bottom:595.266667pt;}
.yb7{bottom:596.226667pt;}
.y130{bottom:598.626667pt;}
.y27{bottom:603.613333pt;}
.y68{bottom:606.653333pt;}
.y25{bottom:612.733333pt;}
.y105{bottom:614.013333pt;}
.yd8{bottom:615.773333pt;}
.y12f{bottom:619.453333pt;}
.y23{bottom:626.333333pt;}
.y67{bottom:627.133333pt;}
.y104{bottom:635.133333pt;}
.yd7{bottom:636.093333pt;}
.y12e{bottom:640.253333pt;}
.y20{bottom:641.373333pt;}
.y66{bottom:647.613333pt;}
.y103{bottom:656.413333pt;}
.yd6{bottom:656.573333pt;}
.y1e{bottom:657.693333pt;}
.y12d{bottom:661.213333pt;}
.y65{bottom:668.093333pt;}
.ya4{bottom:670.333333pt;}
.y1b{bottom:671.293333pt;}
.yd5{bottom:677.053333pt;}
.y102{bottom:677.533333pt;}
.y12c{bottom:682.013333pt;}
.y64{bottom:688.573333pt;}
.yd4{bottom:697.533333pt;}
.y101{bottom:698.653333pt;}
.y12b{bottom:702.813333pt;}
.y63{bottom:709.053333pt;}
.y19{bottom:712.253333pt;}
.y16{bottom:716.733333pt;}
.yd3{bottom:718.013333pt;}
.y100{bottom:719.773333pt;}
.y12a{bottom:723.773333pt;}
.y62{bottom:729.373333pt;}
.yd2{bottom:738.333333pt;}
.yff{bottom:740.893333pt;}
.y129{bottom:744.573333pt;}
.y61{bottom:749.853333pt;}
.yd1{bottom:758.813333pt;}
.yfe{bottom:762.013333pt;}
.y128{bottom:765.373333pt;}
.y14{bottom:766.653333pt;}
.y60{bottom:770.333333pt;}
.y11{bottom:771.453333pt;}
.yd0{bottom:779.293333pt;}
.yfd{bottom:783.133333pt;}
.y127{bottom:786.333333pt;}
.y5f{bottom:790.813333pt;}
.ycf{bottom:799.773333pt;}
.yfc{bottom:804.253333pt;}
.y126{bottom:807.133333pt;}
.y5e{bottom:811.333333pt;}
.yce{bottom:820.293333pt;}
.yf{bottom:821.253333pt;}
.yc{bottom:824.773333pt;}
.yfb{bottom:825.413333pt;}
.y125{bottom:827.973333pt;}
.y5d{bottom:831.813333pt;}
.ycd{bottom:832.933333pt;}
.yfa{bottom:846.533333pt;}
.ycc{bottom:846.693333pt;}
.y124{bottom:848.933333pt;}
.y5c{bottom:852.133333pt;}
.ycb{bottom:860.293333pt;}
.yf9{bottom:867.653333pt;}
.y123{bottom:869.733333pt;}
.y5b{bottom:872.613333pt;}
.yca{bottom:873.893333pt;}
.y161{bottom:881.733333pt;}
.yc9{bottom:887.493333pt;}
.yf8{bottom:888.773333pt;}
.y122{bottom:890.533333pt;}
.y5a{bottom:893.093333pt;}
.yb{bottom:900.933333pt;}
.yc8{bottom:901.093333pt;}
.y15c{bottom:901.413333pt;}
.yf7{bottom:910.053333pt;}
.y121{bottom:911.333333pt;}
.y59{bottom:913.573333pt;}
.yc7{bottom:914.853333pt;}
.y5{bottom:915.813333pt;}
.y15b{bottom:921.253333pt;}
.y48{bottom:922.560000pt;}
.yc6{bottom:928.453333pt;}
.y160{bottom:928.613333pt;}
.yf6{bottom:931.173333pt;}
.y120{bottom:932.293333pt;}
.y58{bottom:934.053333pt;}
.y15a{bottom:940.933333pt;}
.yc5{bottom:942.053333pt;}
.y15f{bottom:950.213333pt;}
.yf5{bottom:952.293333pt;}
.y11f{bottom:953.093333pt;}
.y57{bottom:954.533333pt;}
.yc4{bottom:955.653333pt;}
.y159{bottom:960.773333pt;}
.yc3{bottom:970.053333pt;}
.y15e{bottom:971.973333pt;}
.yf4{bottom:973.413333pt;}
.y11e{bottom:973.893333pt;}
.y56{bottom:974.853333pt;}
.y158{bottom:978.533333pt;}
.y15d{bottom:993.893333pt;}
.yf3{bottom:994.533333pt;}
.y11d{bottom:994.853333pt;}
.y55{bottom:995.333333pt;}
.y157{bottom:995.813333pt;}
.yf2{bottom:1015.653333pt;}
.y54{bottom:1015.813333pt;}
.y50{bottom:1032.000000pt;}
.y4f{bottom:1054.080000pt;}
.h29{height:1.782500pt;}
.ha{height:3.506667pt;}
.h12{height:4.480000pt;}
.he{height:4.800000pt;}
.h20{height:5.906667pt;}
.hb{height:7.368437pt;}
.h1d{height:9.120000pt;}
.h13{height:11.140625pt;}
.hf{height:12.156250pt;}
.h3e{height:13.586667pt;}
.h16{height:13.600000pt;}
.h3f{height:13.746667pt;}
.h21{height:14.705625pt;}
.h1b{height:15.040000pt;}
.h2e{height:15.680000pt;}
.h18{height:16.320000pt;}
.h24{height:17.266667pt;}
.h22{height:17.746667pt;}
.h35{height:20.466667pt;}
.h11{height:21.316250pt;}
.h25{height:24.063750pt;}
.h30{height:24.798667pt;}
.h2{height:25.598667pt;}
.h23{height:25.907188pt;}
.h1e{height:29.187500pt;}
.h33{height:30.830625pt;}
.h39{height:33.857500pt;}
.h28{height:34.546667pt;}
.h27{height:35.975313pt;}
.h17{height:36.000000pt;}
.h36{height:36.304688pt;}
.h26{height:36.986875pt;}
.h40{height:39.111250pt;}
.hd{height:39.876250pt;}
.h1a{height:40.618125pt;}
.h38{height:40.786667pt;}
.h3b{height:40.946667pt;}
.h14{height:40.960000pt;}
.h3d{height:40.978667pt;}
.h15{height:43.781250pt;}
.h19{height:44.533750pt;}
.h2c{height:48.000000pt;}
.h7{height:48.406250pt;}
.h1c{height:48.451250pt;}
.hc{height:49.780000pt;}
.h2d{height:49.852500pt;}
.h10{height:49.920000pt;}
.h9{height:50.712187pt;}
.h3{height:52.134375pt;}
.h31{height:53.937500pt;}
.h2b{height:56.160000pt;}
.h2f{height:58.522500pt;}
.h5{height:62.812500pt;}
.h8{height:63.346667pt;}
.h4{height:63.843750pt;}
.h32{height:64.500000pt;}
.h2a{height:105.920000pt;}
.h6{height:110.746667pt;}
.h3c{height:184.786667pt;}
.h37{height:184.826667pt;}
.h3a{height:236.986667pt;}
.h1f{height:347.733333pt;}
.h34{height:403.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:46.390667pt;}
.w18{width:61.586667pt;}
.w16{width:63.538667pt;}
.w17{width:63.986667pt;}
.w15{width:73.106667pt;}
.w14{width:73.312000pt;}
.w4{width:90.070667pt;}
.w9{width:137.270667pt;}
.w3{width:235.693333pt;}
.wf{width:249.173333pt;}
.w13{width:264.497333pt;}
.w11{width:288.013333pt;}
.w12{width:288.017333pt;}
.w8{width:289.293333pt;}
.wd{width:296.493333pt;}
.wc{width:300.697333pt;}
.w10{width:301.613333pt;}
.w7{width:310.777333pt;}
.w2{width:368.377333pt;}
.wa{width:462.800000pt;}
.wb{width:509.920000pt;}
.w5{width:511.760000pt;}
.w6{width:600.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:3.350667pt;}
.x15{left:5.746667pt;}
.x29{left:8.800000pt;}
.x1e{left:10.066667pt;}
.x22{left:11.040000pt;}
.x1c{left:12.960000pt;}
.x20{left:14.066667pt;}
.x13{left:15.830667pt;}
.x28{left:16.800000pt;}
.x26{left:18.066667pt;}
.x25{left:22.240000pt;}
.x27{left:28.000000pt;}
.x17{left:28.946667pt;}
.x24{left:30.720000pt;}
.xb{left:34.106667pt;}
.x1{left:94.921333pt;}
.x5{left:96.032000pt;}
.x12{left:108.466667pt;}
.x18{left:127.506667pt;}
.x14{left:146.120000pt;}
.x4{left:175.706667pt;}
.x6{left:186.120000pt;}
.xc{left:196.546667pt;}
.x9{left:234.120000pt;}
.xd{left:243.293333pt;}
.xe{left:269.693333pt;}
.x1a{left:288.026667pt;}
.xf{left:303.133333pt;}
.x1b{left:360.546667pt;}
.x16{left:395.306667pt;}
.x11{left:400.426667pt;}
.x8{left:407.626667pt;}
.xa{left:411.293333pt;}
.x1d{left:433.866667pt;}
.x3{left:463.306667pt;}
.x1f{left:506.986667pt;}
.x10{left:510.213333pt;}
.x21{left:570.533333pt;}
.x19{left:583.292000pt;}
.x7{left:600.092000pt;}
.x23{left:634.533333pt;}
}




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