
    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_91f7194d9e49338cddc66683.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_198de76b27cd817569aa46b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_1e26e9ad3ed6312f3c442be6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_54045496fb4f20ce2c8b258d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_719fa584ff79820aaf198fdf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_48c9d4ed204b68b6d783cbfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_7c5f5a9642958a3f4a60f660.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_22ff18cb32ae440425c9bcf1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956543;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_f3c54400d8212aab965cab92.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_3e4f71672d6383d559ef3b69.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5fa25701156f94f0a39b5d30.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.m11{transform:matrix(0.239422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239422,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241449,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246483,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248946,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251585,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254338,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.255048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255048,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.255382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255382,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.255956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255956,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256420,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.257138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257138,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.258414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258414,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.258488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258488,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259936,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.260432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260432,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261478,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261871,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262219,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.266717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266717,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.276262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276262,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-86.047464px;}
.va{vertical-align:-84.538943px;}
.v7{vertical-align:-82.862147px;}
.v8{vertical-align:-46.004134px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:7.314668px;}
.v2{vertical-align:21.584396px;}
.vf{vertical-align:30.779099px;}
.vd{vertical-align:59.100051px;}
.v10{vertical-align:61.014599px;}
.v5{vertical-align:62.036736px;}
.v9{vertical-align:63.296693px;}
.v1{vertical-align:64.463068px;}
.vb{vertical-align:80.021369px;}
.v6{vertical-align:82.862147px;}
.vc{vertical-align:86.641188px;}
.ls31{letter-spacing:-2.939979px;}
.ls40{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.671299px;}
.ls8{letter-spacing:-0.612000px;}
.ls2d{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.305400px;}
.ls15{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.025920px;}
.ls6{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls37{letter-spacing:0.048000px;}
.ls25{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.109200px;}
.ls2f{letter-spacing:0.111600px;}
.lse{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.192000px;}
.ls2e{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.262080px;}
.ls19{letter-spacing:0.269400px;}
.ls21{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.432000px;}
.ls35{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.860613px;}
.ls33{letter-spacing:0.862066px;}
.ls41{letter-spacing:0.871411px;}
.ls30{letter-spacing:1.040753px;}
.ls1e{letter-spacing:1.043565px;}
.ls22{letter-spacing:1.048488px;}
.ls3b{letter-spacing:1.161364px;}
.ls18{letter-spacing:1.209834px;}
.ls3c{letter-spacing:1.293294px;}
.ls23{letter-spacing:1.319744px;}
.ls38{letter-spacing:1.440000px;}
.ls24{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.856073px;}
.ls11{letter-spacing:2.880000px;}
.ls2c{letter-spacing:3.600000px;}
.lsd{letter-spacing:5.040000px;}
.ls28{letter-spacing:7.920000px;}
.ls3{letter-spacing:8.640000px;}
.ls44{letter-spacing:34.841280px;}
.ls13{letter-spacing:48.615533px;}
.lsc{letter-spacing:66.420000px;}
.ls43{letter-spacing:67.961280px;}
.ls39{letter-spacing:107.060676px;}
.ls27{letter-spacing:113.216334px;}
.lsf{letter-spacing:134.247070px;}
.ls12{letter-spacing:136.991451px;}
.ls36{letter-spacing:150.457927px;}
.ls2a{letter-spacing:157.968683px;}
.ls1b{letter-spacing:164.201599px;}
.ls29{letter-spacing:164.461122px;}
.ls26{letter-spacing:167.123853px;}
.ls3a{letter-spacing:257.482983px;}
.ls34{letter-spacing:322.599307px;}
.ls10{letter-spacing:346.280956px;}
.ls1c{letter-spacing:389.348126px;}
.ls2b{letter-spacing:389.575171px;}
.ls42{letter-spacing:859.836000px;}
.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;}
}
.ws9{word-spacing:-84.060000px;}
.wsc{word-spacing:-47.977632px;}
.ws10{word-spacing:-46.651234px;}
.ws21{word-spacing:-46.307054px;}
.ws18{word-spacing:-45.799539px;}
.ws30{word-spacing:-45.255879px;}
.wsa{word-spacing:-22.891303px;}
.wsb{word-spacing:-21.176438px;}
.ws38{word-spacing:-21.152183px;}
.ws28{word-spacing:-20.997406px;}
.ws1c{word-spacing:-20.925362px;}
.ws2d{word-spacing:-20.890090px;}
.ws34{word-spacing:-20.680847px;}
.ws1{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.448640px;}
.ws0{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.000000px;}
.ws3a{word-spacing:-16.560000px;}
.ws25{word-spacing:-15.767172px;}
.ws39{word-spacing:-15.123950px;}
.ws1d{word-spacing:-14.961771px;}
.ws2e{word-spacing:-14.936551px;}
.ws19{word-spacing:-14.907848px;}
.ws35{word-spacing:-14.762451px;}
.ws15{word-spacing:-14.330669px;}
.ws7{word-spacing:-12.329400px;}
.ws1e{word-spacing:-12.171600px;}
.ws22{word-spacing:-12.121534px;}
.ws5{word-spacing:-1.271505px;}
.ws11{word-spacing:-1.109182px;}
.ws26{word-spacing:-0.088245px;}
.wsf{word-spacing:-0.087391px;}
.ws29{word-spacing:-0.085904px;}
.ws13{word-spacing:-0.084818px;}
.ws31{word-spacing:-0.081997px;}
.ws14{word-spacing:-0.081995px;}
.ws1f{word-spacing:-0.081813px;}
.ws16{word-spacing:-0.080304px;}
.wsd{word-spacing:-0.056127px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:147.320832px;}
.ws2f{word-spacing:153.806679px;}
.ws33{word-spacing:177.767011px;}
.ws6{word-spacing:185.476291px;}
.ws12{word-spacing:198.723206px;}
.ws1b{word-spacing:202.048818px;}
.ws20{word-spacing:204.574104px;}
.wse{word-spacing:210.880804px;}
.ws17{word-spacing:216.211967px;}
.ws24{word-spacing:225.336183px;}
.ws2a{word-spacing:264.861119px;}
.ws27{word-spacing:282.445422px;}
.ws37{word-spacing:323.084166px;}
.ws32{word-spacing:323.717881px;}
.ws1a{word-spacing:349.908126px;}
.ws2c{word-spacing:353.181969px;}
.ws23{word-spacing:373.200120px;}
.ws36{word-spacing:472.548539px;}
.ws2b{word-spacing:500.540213px;}
._40{margin-left:-642.299642px;}
._48{margin-left:-615.969555px;}
._39{margin-left:-515.083190px;}
._30{margin-left:-491.796981px;}
._45{margin-left:-463.884061px;}
._2e{margin-left:-426.163044px;}
._35{margin-left:-410.578067px;}
._41{margin-left:-406.681386px;}
._49{margin-left:-399.197981px;}
._27{margin-left:-370.420150px;}
._25{margin-left:-354.346182px;}
._15{margin-left:-327.050517px;}
._13{margin-left:-310.853679px;}
._3a{margin-left:-295.640677px;}
._3c{margin-left:-293.187888px;}
._1a{margin-left:-291.240479px;}
._4b{margin-left:-284.730902px;}
._2f{margin-left:-272.892357px;}
._42{margin-left:-271.605434px;}
._31{margin-left:-255.464996px;}
._4a{margin-left:-253.327224px;}
._46{margin-left:-252.272104px;}
._21{margin-left:-250.812760px;}
._37{margin-left:-248.561750px;}
._47{margin-left:-247.347319px;}
._1d{margin-left:-225.804058px;}
._2d{margin-left:-218.846326px;}
._34{margin-left:-215.744497px;}
._1f{margin-left:-214.278583px;}
._20{margin-left:-212.867718px;}
._24{margin-left:-207.492268px;}
._23{margin-left:-199.641788px;}
._36{margin-left:-198.310008px;}
._44{margin-left:-196.798098px;}
._43{margin-left:-193.670432px;}
._14{margin-left:-192.655480px;}
._26{margin-left:-189.169169px;}
._19{margin-left:-183.638039px;}
._33{margin-left:-182.605959px;}
._3f{margin-left:-173.212797px;}
._1e{margin-left:-156.174708px;}
._3d{margin-left:-115.010673px;}
._3b{margin-left:-95.477744px;}
._3e{margin-left:-93.933374px;}
._2a{margin-left:-92.529626px;}
._2b{margin-left:-89.384912px;}
._2c{margin-left:-87.279782px;}
._38{margin-left:-64.045825px;}
._4c{margin-left:-6.768698px;}
._12{margin-left:-2.209920px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.270400px;}
._9{width:4.239360px;}
._b{width:5.829120px;}
._7{width:7.153920px;}
._8{width:8.242560px;}
._a{width:9.797280px;}
._d{width:10.929600px;}
._11{width:11.946240px;}
._10{width:12.954240px;}
._32{width:14.328000px;}
._c{width:15.557760px;}
._f{width:16.680000px;}
._4e{width:18.362880px;}
._4f{width:19.484160px;}
._17{width:20.736000px;}
._18{width:21.744000px;}
._22{width:23.153280px;}
._1b{width:29.520000px;}
._4d{width:30.824640px;}
._28{width:43.200000px;}
._e{width:65.643840px;}
._1c{width:83.037600px;}
._16{width:84.110400px;}
._29{width:85.161600px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._50{width:846.300000px;}
._2{width:854.940000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs20{font-size:54.463565px;}
.fs11{font-size:56.127326px;}
.fs19{font-size:57.322675px;}
.fs21{font-size:58.455748px;}
.fs17{font-size:58.585395px;}
.fs30{font-size:58.587274px;}
.fs2e{font-size:58.878462px;}
.fs32{font-size:59.049805px;}
.fsd{font-size:59.486247px;}
.fs1c{font-size:59.631392px;}
.fs2b{font-size:59.746205px;}
.fs4{font-size:59.760000px;}
.fs1e{font-size:59.847084px;}
.fs27{font-size:59.972376px;}
.fs24{font-size:60.246055px;}
.fs34{font-size:60.495798px;}
.fs15{font-size:60.562875px;}
.fs13{font-size:60.693836px;}
.fs29{font-size:61.378559px;}
.fs7{font-size:61.671422px;}
.fsa{font-size:63.068687px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs1a{font-size:80.304325px;}
.fs22{font-size:81.813413px;}
.fs18{font-size:81.994865px;}
.fs31{font-size:81.997494px;}
.fs2d{font-size:82.433295px;}
.fs33{font-size:82.723388px;}
.fse{font-size:83.284229px;}
.fs1b{font-size:83.423569px;}
.fs2c{font-size:83.560358px;}
.fs1f{font-size:83.701446px;}
.fs26{font-size:83.989624px;}
.fs3{font-size:84.240000px;}
.fs23{font-size:84.348004px;}
.fs35{font-size:84.608731px;}
.fs16{font-size:84.818258px;}
.fs14{font-size:84.974925px;}
.fs2a{font-size:85.904117px;}
.fs8{font-size:86.343603px;}
.fs10{font-size:87.390950px;}
.fsb{font-size:88.244574px;}
.fs2f{font-size:105.982381px;}
.fsc{font-size:107.076406px;}
.fs1d{font-size:107.215745px;}
.fs28{font-size:108.006872px;}
.fs25{font-size:108.444074px;}
.fs12{font-size:109.250089px;}
.fs6{font-size:111.009764px;}
.fsf{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.ya6{bottom:3.540905px;}
.yd3{bottom:3.619542px;}
.y9f{bottom:3.627570px;}
.y105{bottom:3.627686px;}
.y6a{bottom:3.914650px;}
.y10c{bottom:4.108483px;}
.yf6{bottom:4.121703px;}
.yb0{bottom:4.128662px;}
.y74{bottom:4.320000px;}
.yf1{bottom:4.374126px;}
.yaa{bottom:4.426198px;}
.y138{bottom:4.500000px;}
.yd9{bottom:4.518601px;}
.y6f{bottom:4.532444px;}
.ye7{bottom:4.710157px;}
.ycd{bottom:5.247872px;}
.y9c{bottom:6.772699px;}
.y111{bottom:7.169547px;}
.y7c{bottom:7.183664px;}
.y100{bottom:7.360095px;}
.y112{bottom:7.526300px;}
.y90{bottom:7.623160px;}
.y60{bottom:7.709229px;}
.ya7{bottom:8.551573px;}
.yd4{bottom:8.741489px;}
.ya0{bottom:8.760876px;}
.y106{bottom:8.761157px;}
.y6b{bottom:9.439008px;}
.yce{bottom:10.531353px;}
.yf2{bottom:10.648660px;}
.y9d{bottom:12.056035px;}
.yf5{bottom:13.175182px;}
.yde{bottom:13.268013px;}
.y10b{bottom:14.031322px;}
.yf7{bottom:14.161566px;}
.yaf{bottom:14.185477px;}
.y13a{bottom:14.940000px;}
.yee{bottom:15.712315px;}
.y110{bottom:17.336105px;}
.yac{bottom:20.041628px;}
.ycc{bottom:20.069410px;}
.yda{bottom:20.297617px;}
.ye9{bottom:20.962035px;}
.y9{bottom:21.240000px;}
.yab{bottom:21.847233px;}
.y6e{bottom:21.918354px;}
.y7e{bottom:24.156091px;}
.y101{bottom:24.533171px;}
.y70{bottom:25.247981px;}
.y8f{bottom:25.362157px;}
.yd8{bottom:25.570469px;}
.y5f{bottom:25.696928px;}
.yff{bottom:27.897737px;}
.yeb{bottom:28.656809px;}
.y91{bottom:28.757896px;}
.y61{bottom:29.221095px;}
.y7a{bottom:29.627180px;}
.ya{bottom:31.140000px;}
.yec{bottom:34.266140px;}
.y7d{bottom:41.091139px;}
.y8{bottom:41.940000px;}
.y71{bottom:45.253323px;}
.yed{bottom:46.202547px;}
.y7b{bottom:46.525612px;}
.y92{bottom:49.135291px;}
.ye8{bottom:49.618844px;}
.y62{bottom:49.926706px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.yea{bottom:69.789441px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y6d{bottom:136.365000px;}
.ya3{bottom:142.416000px;}
.y38{bottom:144.396000px;}
.y118{bottom:145.656000px;}
.ye2{bottom:149.640000px;}
.ye1{bottom:158.610000px;}
.y72{bottom:161.850000px;}
.ya2{bottom:163.110000px;}
.y37{bottom:163.470000px;}
.y117{bottom:166.350000px;}
.y9e{bottom:179.340000px;}
.y36{bottom:182.370000px;}
.y116{bottom:187.050000px;}
.ye0{bottom:187.770000px;}
.ya1{bottom:188.310000px;}
.y6c{bottom:200.550000px;}
.y35{bottom:201.270000px;}
.y115{bottom:203.430000px;}
.ydf{bottom:208.470000px;}
.y69{bottom:212.865000px;}
.y9b{bottom:213.015000px;}
.y34{bottom:220.350000px;}
.ydd{bottom:220.740000px;}
.y68{bottom:221.790000px;}
.y9a{bottom:225.030000px;}
.y33{bottom:239.250000px;}
.ydc{bottom:240.150000px;}
.y67{bottom:248.790000px;}
.y99{bottom:255.090000px;}
.y32{bottom:258.330000px;}
.ydb{bottom:268.950000px;}
.y66{bottom:269.490000px;}
.y98{bottom:275.790000px;}
.yd7{bottom:276.915000px;}
.y31{bottom:277.230000px;}
.y65{bottom:290.190000px;}
.y30{bottom:295.950000px;}
.y97{bottom:296.490000px;}
.yd6{bottom:302.430000px;}
.y64{bottom:309.810000px;}
.y2f{bottom:313.410000px;}
.y96{bottom:317.190000px;}
.y5e{bottom:322.140000px;}
.y2e{bottom:332.490000px;}
.y95{bottom:333.390000px;}
.yd5{bottom:345.450000px;}
.y63{bottom:350.490000px;}
.y2d{bottom:351.390000px;}
.yd2{bottom:361.740000px;}
.y13c{bottom:365.070000px;}
.y2c{bottom:370.470000px;}
.yd1{bottom:370.650000px;}
.y13b{bottom:385.815000px;}
.y2b{bottom:389.415000px;}
.y5d{bottom:391.575000px;}
.yd0{bottom:399.855000px;}
.y139{bottom:402.015000px;}
.y2a{bottom:408.315000px;}
.ycf{bottom:420.555000px;}
.y137{bottom:422.715000px;}
.y29{bottom:427.395000px;}
.y5c{bottom:429.015000px;}
.ycb{bottom:436.740000px;}
.yca{bottom:438.240000px;}
.y28{bottom:446.295000px;}
.yc9{bottom:447.195000px;}
.y136{bottom:447.915000px;}
.y5b{bottom:449.715000px;}
.y27{bottom:465.375000px;}
.y135{bottom:468.075000px;}
.y5a{bottom:470.415000px;}
.yc8{bottom:478.875000px;}
.y26{bottom:484.275000px;}
.y134{bottom:487.155000px;}
.y59{bottom:490.755000px;}
.yc7{bottom:495.240000px;}
.y25{bottom:502.995000px;}
.yc6{bottom:504.255000px;}
.y133{bottom:506.055000px;}
.y58{bottom:511.815000px;}
.y24{bottom:521.175000px;}
.y132{bottom:525.135000px;}
.yc5{bottom:531.255000px;}
.y57{bottom:532.515000px;}
.y23{bottom:543.675000px;}
.y131{bottom:544.035000px;}
.yc4{bottom:551.955000px;}
.y56{bottom:553.215000px;}
.y130{bottom:562.935000px;}
.y114{bottom:565.095000px;}
.y22{bottom:566.175000px;}
.yc3{bottom:572.655000px;}
.y55{bottom:573.915000px;}
.y12f{bottom:582.015000px;}
.y113{bottom:585.075000px;}
.y21{bottom:587.955000px;}
.yc2{bottom:593.175000px;}
.y54{bottom:594.615000px;}
.y10f{bottom:595.515000px;}
.y12e{bottom:600.915000px;}
.y20{bottom:610.995000px;}
.yc1{bottom:613.875000px;}
.y53{bottom:615.315000px;}
.y10e{bottom:618.015000px;}
.y12d{bottom:619.995000px;}
.yc0{bottom:630.240000px;}
.y94{bottom:631.515000px;}
.y1f{bottom:633.345000px;}
.y52{bottom:636.045000px;}
.y12c{bottom:638.925000px;}
.ybf{bottom:639.285000px;}
.y10d{bottom:646.485000px;}
.y8e{bottom:647.715000px;}
.y1e{bottom:655.845000px;}
.y51{bottom:656.745000px;}
.y10a{bottom:657.465000px;}
.y12b{bottom:658.005000px;}
.ybe{bottom:666.285000px;}
.y93{bottom:676.185000px;}
.y109{bottom:676.905000px;}
.y50{bottom:677.265000px;}
.y1d{bottom:677.625000px;}
.ybd{bottom:686.985000px;}
.y12a{bottom:695.805000px;}
.y4f{bottom:697.965000px;}
.y1c{bottom:700.305000px;}
.y108{bottom:704.445000px;}
.ybc{bottom:707.685000px;}
.y129{bottom:714.885000px;}
.y8d{bottom:717.405000px;}
.y4e{bottom:718.665000px;}
.y1b{bottom:721.365000px;}
.y107{bottom:725.145000px;}
.ybb{bottom:728.385000px;}
.y128{bottom:733.785000px;}
.y8c{bottom:738.105000px;}
.y4d{bottom:739.365000px;}
.y103{bottom:741.315000px;}
.y1a{bottom:743.865000px;}
.y104{bottom:744.390000px;}
.yba{bottom:744.540000px;}
.y127{bottom:752.865000px;}
.y102{bottom:753.405000px;}
.yb9{bottom:753.585000px;}
.y8b{bottom:758.805000px;}
.y4c{bottom:760.065000px;}
.y19{bottom:765.645000px;}
.y126{bottom:771.765000px;}
.yfe{bottom:779.115000px;}
.y8a{bottom:779.505000px;}
.yb8{bottom:780.585000px;}
.y4b{bottom:780.765000px;}
.y18{bottom:788.685000px;}
.y125{bottom:790.665000px;}
.y89{bottom:800.205000px;}
.yb7{bottom:801.285000px;}
.y4a{bottom:801.465000px;}
.yfd{bottom:807.585000px;}
.y124{bottom:809.745000px;}
.y17{bottom:811.005000px;}
.y88{bottom:820.905000px;}
.yb6{bottom:821.985000px;}
.y49{bottom:822.165000px;}
.y123{bottom:829.185000px;}
.y16{bottom:833.505000px;}
.y87{bottom:841.605000px;}
.yb5{bottom:842.685000px;}
.y48{bottom:842.865000px;}
.yfc{bottom:846.825000px;}
.y15{bottom:855.285000px;}
.y86{bottom:862.305000px;}
.yb4{bottom:863.385000px;}
.y47{bottom:863.565000px;}
.yfb{bottom:867.525000px;}
.y122{bottom:870.585000px;}
.y14{bottom:877.245000px;}
.y85{bottom:883.005000px;}
.yb3{bottom:884.085000px;}
.y46{bottom:884.310000px;}
.yfa{bottom:888.270000px;}
.y121{bottom:891.330000px;}
.y13{bottom:897.270000px;}
.y84{bottom:903.750000px;}
.yb2{bottom:904.830000px;}
.y45{bottom:905.010000px;}
.yf9{bottom:908.790000px;}
.y120{bottom:912.030000px;}
.y12{bottom:921.390000px;}
.y83{bottom:924.450000px;}
.yb1{bottom:925.530000px;}
.y44{bottom:925.710000px;}
.yf8{bottom:929.490000px;}
.y11f{bottom:932.730000px;}
.yae{bottom:938.790000px;}
.y73{bottom:941.910000px;}
.yf4{bottom:942.765000px;}
.y82{bottom:945.150000px;}
.y11{bottom:945.510000px;}
.y43{bottom:946.410000px;}
.y11e{bottom:953.430000px;}
.yad{bottom:958.290000px;}
.yf3{bottom:962.250000px;}
.y81{bottom:965.850000px;}
.y42{bottom:967.110000px;}
.y10{bottom:969.090000px;}
.y11d{bottom:974.130000px;}
.ya9{bottom:979.665000px;}
.yf0{bottom:985.740000px;}
.y80{bottom:986.550000px;}
.y41{bottom:987.450000px;}
.yf{bottom:990.330000px;}
.y11c{bottom:994.470000px;}
.yef{bottom:996.270000px;}
.y79{bottom:1002.840000px;}
.ya8{bottom:1005.270000px;}
.y40{bottom:1008.150000px;}
.ye{bottom:1014.630000px;}
.y11b{bottom:1015.530000px;}
.ye6{bottom:1017.840000px;}
.y3f{bottom:1027.050000px;}
.y7f{bottom:1031.370000px;}
.y11a{bottom:1036.230000px;}
.yd{bottom:1038.750000px;}
.ye5{bottom:1038.930000px;}
.ya5{bottom:1041.540000px;}
.y3e{bottom:1046.130000px;}
.ya4{bottom:1050.630000px;}
.y119{bottom:1056.930000px;}
.yc{bottom:1062.150000px;}
.y3d{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y78{bottom:1077.630000px;}
.y3c{bottom:1083.930000px;}
.y77{bottom:1098.330000px;}
.y3b{bottom:1103.010000px;}
.ye4{bottom:1103.640000px;}
.ye3{bottom:1112.730000px;}
.y76{bottom:1119.030000px;}
.y3a{bottom:1121.910000px;}
.y75{bottom:1139.760000px;}
.y39{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h76{height:20.685000px;}
.h19{height:31.499852px;}
.h35{height:31.501182px;}
.h45{height:33.600438px;}
.h32{height:33.674959px;}
.h69{height:33.676039px;}
.h5b{height:36.750126px;}
.h2f{height:37.798746px;}
.h77{height:41.385000px;}
.h6c{height:42.824524px;}
.h66{height:43.612611px;}
.h1e{height:44.062811px;}
.h3c{height:44.170323px;}
.h56{height:44.422898px;}
.h4c{height:44.625618px;}
.h5e{height:44.774998px;}
.h3f{height:44.850599px;}
.h2b{height:44.957299px;}
.h3{height:45.184219px;}
.h15{height:45.681420px;}
.h70{height:46.798857px;}
.h44{height:48.825735px;}
.h12{height:52.998047px;}
.h43{height:53.453011px;}
.h27{height:55.058495px;}
.hf{height:56.213437px;}
.h36{height:56.259071px;}
.h46{height:57.342577px;}
.h33{height:57.469755px;}
.h6a{height:57.471599px;}
.h68{height:57.785990px;}
.h6d{height:57.925321px;}
.h6f{height:57.954154px;}
.h20{height:58.353452px;}
.h3e{height:58.524950px;}
.h5f{height:58.608460px;}
.he{height:58.621992px;}
.h61{height:58.637633px;}
.h40{height:58.707418px;}
.h42{height:58.736640px;}
.h53{height:58.830324px;}
.h59{height:58.859608px;}
.h4e{height:59.128208px;}
.h71{height:59.343778px;}
.h73{height:59.373317px;}
.h30{height:59.409579px;}
.h2d{height:59.538045px;}
.h5c{height:60.209729px;}
.h17{height:60.497015px;}
.h1c{height:60.975435px;}
.h67{height:61.060209px;}
.h74{height:61.101562px;}
.h1f{height:61.690516px;}
.h3d{height:61.793727px;}
.h1a{height:61.867672px;}
.h50{height:61.898467px;}
.h22{height:62.085000px;}
.h57{height:62.213018px;}
.h4d{height:62.478478px;}
.h2c{height:62.942852px;}
.h48{height:63.225724px;}
.h62{height:63.227113px;}
.h16{height:63.956663px;}
.h11{height:64.546875px;}
.h26{height:64.732457px;}
.h10{height:64.978594px;}
.h4{height:65.010937px;}
.h29{height:65.176567px;}
.h13{height:66.226356px;}
.hb{height:66.757500px;}
.h75{height:68.084282px;}
.h24{height:70.198062px;}
.hd{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h38{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h65{height:78.503551px;}
.h37{height:78.775092px;}
.h6{height:78.870000px;}
.h1d{height:79.313920px;}
.h3b{height:79.417131px;}
.h55{height:80.003137px;}
.h47{height:80.255443px;}
.h34{height:80.433439px;}
.h6b{height:80.436019px;}
.h2a{height:80.924016px;}
.h14{height:82.227447px;}
.h52{height:82.390212px;}
.h5a{height:82.431223px;}
.h31{height:83.203066px;}
.h5d{height:84.268247px;}
.h9{height:84.898125px;}
.h51{height:85.501756px;}
.h28{height:85.726767px;}
.h25{height:85.769439px;}
.h1b{height:86.564136px;}
.h4b{height:87.641651px;}
.h58{height:89.638707px;}
.h4f{height:103.038751px;}
.h54{height:117.941994px;}
.h4a{height:118.198842px;}
.h64{height:119.300922px;}
.h3a{height:120.957554px;}
.h63{height:136.828843px;}
.h39{height:138.517202px;}
.h6e{height:141.489612px;}
.h60{height:143.024521px;}
.h41{height:143.266012px;}
.h72{height:143.390770px;}
.h49{height:145.739979px;}
.h21{height:164.560398px;}
.h2e{height:167.895693px;}
.h18{height:170.746829px;}
.h23{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:27.524327px;}
.wb{width:38.700014px;}
.w15{width:42.824463px;}
.wf{width:55.949634px;}
.w10{width:56.024153px;}
.w8{width:56.194500px;}
.wc{width:59.024347px;}
.w11{width:63.150959px;}
.w4{width:82.470000px;}
.w7{width:115.202878px;}
.w5{width:124.200555px;}
.wa{width:141.599560px;}
.w18{width:144.677327px;}
.w17{width:146.695106px;}
.we{width:155.851808px;}
.w12{width:161.994353px;}
.w13{width:163.042840px;}
.wd{width:168.063751px;}
.w3{width:180.735000px;}
.w19{width:184.501723px;}
.w14{width:189.531901px;}
.w16{width:196.724691px;}
.w9{width:206.774527px;}
.w1a{width:337.753500px;}
.w1b{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:4.416580px;}
.x3{left:7.918500px;}
.x37{left:12.608258px;}
.x27{left:19.610576px;}
.x72{left:22.768701px;}
.x2c{left:25.216550px;}
.x35{left:27.993882px;}
.x22{left:30.994866px;}
.x67{left:32.062619px;}
.x5b{left:34.901820px;}
.x55{left:36.894467px;}
.x2a{left:41.679588px;}
.x32{left:43.197495px;}
.x2d{left:45.893913px;}
.x2b{left:46.902457px;}
.x20{left:49.243798px;}
.x24{left:50.462816px;}
.x23{left:55.228345px;}
.x21{left:56.447364px;}
.x3a{left:60.150430px;}
.x3e{left:61.302150px;}
.x3d{left:65.979812px;}
.x3b{left:67.130057px;}
.x59{left:70.354019px;}
.x6f{left:74.771538px;}
.x2{left:77.041500px;}
.x5a{left:79.317546px;}
.x3c{left:81.629040px;}
.x48{left:82.717612px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x64{left:88.717544px;}
.x4a{left:90.550685px;}
.x4d{left:94.037550px;}
.x31{left:95.968967px;}
.x5e{left:97.595392px;}
.x49{left:99.297441px;}
.x9{left:100.836000px;}
.x70{left:103.440000px;}
.x33{left:104.922755px;}
.x68{left:106.579292px;}
.xa{left:111.456000px;}
.x36{left:113.803139px;}
.xd{left:118.116000px;}
.x65{left:121.186422px;}
.x43{left:123.696000px;}
.x75{left:125.267117px;}
.x1d{left:127.476000px;}
.x34{left:129.152062px;}
.x6b{left:131.270905px;}
.x6e{left:132.676753px;}
.x1e{left:141.156000px;}
.x4c{left:143.086543px;}
.x66{left:146.001564px;}
.x5d{left:147.360697px;}
.x58{left:148.426839px;}
.x47{left:150.570238px;}
.x63{left:156.394515px;}
.x15{left:160.050000px;}
.x46{left:161.565000px;}
.x74{left:169.970131px;}
.x5{left:172.650000px;}
.x30{left:181.996938px;}
.x12{left:187.050000px;}
.x71{left:195.510000px;}
.x18{left:202.350000px;}
.x6d{left:212.340000px;}
.x1b{left:220.350000px;}
.x53{left:261.240000px;}
.x73{left:306.255000px;}
.xb{left:317.775000px;}
.x5c{left:323.535000px;}
.x5f{left:324.615000px;}
.x4b{left:329.655000px;}
.x76{left:346.035000px;}
.x6a{left:348.015000px;}
.xe{left:349.275000px;}
.x69{left:351.075000px;}
.x2f{left:356.865000px;}
.x6c{left:358.275000px;}
.x39{left:391.440000px;}
.x4e{left:394.290000px;}
.x1f{left:395.940000px;}
.x60{left:400.440000px;}
.x78{left:414.795000px;}
.x61{left:421.815000px;}
.x16{left:439.095000px;}
.x14{left:443.415000px;}
.x10{left:444.855000px;}
.xc{left:446.505000px;}
.x4f{left:450.285000px;}
.xf{left:467.745000px;}
.x62{left:477.825000px;}
.x1a{left:480.165000px;}
.x2e{left:511.125000px;}
.x25{left:520.125000px;}
.x3f{left:533.085000px;}
.x44{left:541.365000px;}
.x4{left:552.900000px;}
.x17{left:555.585000px;}
.x26{left:558.465000px;}
.x38{left:563.685000px;}
.x11{left:569.265000px;}
.x29{left:586.005000px;}
.x45{left:600.405000px;}
.x13{left:617.145000px;}
.x52{left:642.930000px;}
.x19{left:655.170000px;}
.x50{left:683.940000px;}
.x77{left:705.210000px;}
.x1c{left:709.890000px;}
.x40{left:730.590000px;}
.x6{left:733.650000px;}
.x51{left:739.950000px;}
.x54{left:744.765000px;}
.x41{left:759.315000px;}
.x56{left:764.715000px;}
.x42{left:798.090000px;}
.x57{left:803.490000px;}
.x8{left:808.020000px;}
@media print{
.v3{vertical-align:-76.486635pt;}
.va{vertical-align:-75.145727pt;}
.v7{vertical-align:-73.655242pt;}
.v8{vertical-align:-40.892564pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:6.501927pt;}
.v2{vertical-align:19.186130pt;}
.vf{vertical-align:27.359199pt;}
.vd{vertical-align:52.533378pt;}
.v10{vertical-align:54.235199pt;}
.v5{vertical-align:55.143765pt;}
.v9{vertical-align:56.263727pt;}
.v1{vertical-align:57.300505pt;}
.vb{vertical-align:71.130105pt;}
.v6{vertical-align:73.655242pt;}
.vc{vertical-align:77.014390pt;}
.ls31{letter-spacing:-2.613315pt;}
.ls40{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.596710pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls2d{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls37{letter-spacing:0.042667pt;}
.ls25{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.097067pt;}
.ls2f{letter-spacing:0.099200pt;}
.lse{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.170667pt;}
.ls2e{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.232960pt;}
.ls19{letter-spacing:0.239467pt;}
.ls21{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.384000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.764990pt;}
.ls33{letter-spacing:0.766281pt;}
.ls41{letter-spacing:0.774587pt;}
.ls30{letter-spacing:0.925113pt;}
.ls1e{letter-spacing:0.927613pt;}
.ls22{letter-spacing:0.931989pt;}
.ls3b{letter-spacing:1.032324pt;}
.ls18{letter-spacing:1.075408pt;}
.ls3c{letter-spacing:1.149595pt;}
.ls23{letter-spacing:1.173106pt;}
.ls38{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.538732pt;}
.ls11{letter-spacing:2.560000pt;}
.ls2c{letter-spacing:3.200000pt;}
.lsd{letter-spacing:4.480000pt;}
.ls28{letter-spacing:7.040000pt;}
.ls3{letter-spacing:7.680000pt;}
.ls44{letter-spacing:30.970027pt;}
.ls13{letter-spacing:43.213807pt;}
.lsc{letter-spacing:59.040000pt;}
.ls43{letter-spacing:60.410027pt;}
.ls39{letter-spacing:95.165045pt;}
.ls27{letter-spacing:100.636741pt;}
.lsf{letter-spacing:119.330729pt;}
.ls12{letter-spacing:121.770178pt;}
.ls36{letter-spacing:133.740380pt;}
.ls2a{letter-spacing:140.416607pt;}
.ls1b{letter-spacing:145.956977pt;}
.ls29{letter-spacing:146.187664pt;}
.ls26{letter-spacing:148.554536pt;}
.ls3a{letter-spacing:228.873762pt;}
.ls34{letter-spacing:286.754939pt;}
.ls10{letter-spacing:307.805294pt;}
.ls1c{letter-spacing:346.087223pt;}
.ls2b{letter-spacing:346.289041pt;}
.ls42{letter-spacing:764.298667pt;}
.ws9{word-spacing:-74.720000pt;}
.wsc{word-spacing:-42.646784pt;}
.ws10{word-spacing:-41.467763pt;}
.ws21{word-spacing:-41.161826pt;}
.ws18{word-spacing:-40.710701pt;}
.ws30{word-spacing:-40.227448pt;}
.wsa{word-spacing:-20.347825pt;}
.wsb{word-spacing:-18.823501pt;}
.ws38{word-spacing:-18.801940pt;}
.ws28{word-spacing:-18.664361pt;}
.ws1c{word-spacing:-18.600321pt;}
.ws2d{word-spacing:-18.568969pt;}
.ws34{word-spacing:-18.382975pt;}
.ws1{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.287680pt;}
.ws0{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3a{word-spacing:-14.720000pt;}
.ws25{word-spacing:-14.015264pt;}
.ws39{word-spacing:-13.443511pt;}
.ws1d{word-spacing:-13.299352pt;}
.ws2e{word-spacing:-13.276934pt;}
.ws19{word-spacing:-13.251420pt;}
.ws35{word-spacing:-13.122179pt;}
.ws15{word-spacing:-12.738372pt;}
.ws7{word-spacing:-10.959467pt;}
.ws1e{word-spacing:-10.819200pt;}
.ws22{word-spacing:-10.774697pt;}
.ws5{word-spacing:-1.130227pt;}
.ws11{word-spacing:-0.985939pt;}
.ws26{word-spacing:-0.078440pt;}
.wsf{word-spacing:-0.077681pt;}
.ws29{word-spacing:-0.076359pt;}
.ws13{word-spacing:-0.075394pt;}
.ws31{word-spacing:-0.072887pt;}
.ws14{word-spacing:-0.072884pt;}
.ws1f{word-spacing:-0.072723pt;}
.ws16{word-spacing:-0.071382pt;}
.wsd{word-spacing:-0.049891pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:130.951850pt;}
.ws2f{word-spacing:136.717048pt;}
.ws33{word-spacing:158.015121pt;}
.ws6{word-spacing:164.867814pt;}
.ws12{word-spacing:176.642849pt;}
.ws1b{word-spacing:179.598949pt;}
.ws20{word-spacing:181.843648pt;}
.wse{word-spacing:187.449603pt;}
.ws17{word-spacing:192.188415pt;}
.ws24{word-spacing:200.298830pt;}
.ws2a{word-spacing:235.432105pt;}
.ws27{word-spacing:251.062597pt;}
.ws37{word-spacing:287.185926pt;}
.ws32{word-spacing:287.749227pt;}
.ws1a{word-spacing:311.029445pt;}
.ws2c{word-spacing:313.939528pt;}
.ws23{word-spacing:331.733440pt;}
.ws36{word-spacing:420.043146pt;}
.ws2b{word-spacing:444.924634pt;}
._40{margin-left:-570.933015pt;}
._48{margin-left:-547.528493pt;}
._39{margin-left:-457.851724pt;}
._30{margin-left:-437.152872pt;}
._45{margin-left:-412.341388pt;}
._2e{margin-left:-378.811595pt;}
._35{margin-left:-364.958282pt;}
._41{margin-left:-361.494565pt;}
._49{margin-left:-354.842649pt;}
._27{margin-left:-329.262355pt;}
._25{margin-left:-314.974384pt;}
._15{margin-left:-290.711571pt;}
._13{margin-left:-276.314381pt;}
._3a{margin-left:-262.791713pt;}
._3c{margin-left:-260.611456pt;}
._1a{margin-left:-258.880426pt;}
._4b{margin-left:-253.094135pt;}
._2f{margin-left:-242.570984pt;}
._42{margin-left:-241.427052pt;}
._31{margin-left:-227.079996pt;}
._4a{margin-left:-225.179755pt;}
._46{margin-left:-224.241870pt;}
._21{margin-left:-222.944676pt;}
._37{margin-left:-220.943778pt;}
._47{margin-left:-219.864284pt;}
._1d{margin-left:-200.714718pt;}
._2d{margin-left:-194.530068pt;}
._34{margin-left:-191.772886pt;}
._1f{margin-left:-190.469851pt;}
._20{margin-left:-189.215749pt;}
._24{margin-left:-184.437572pt;}
._23{margin-left:-177.459367pt;}
._36{margin-left:-176.275563pt;}
._44{margin-left:-174.931643pt;}
._43{margin-left:-172.151495pt;}
._14{margin-left:-171.249316pt;}
._26{margin-left:-168.150372pt;}
._19{margin-left:-163.233812pt;}
._33{margin-left:-162.316408pt;}
._3f{margin-left:-153.966930pt;}
._1e{margin-left:-138.821962pt;}
._3d{margin-left:-102.231710pt;}
._3b{margin-left:-84.869106pt;}
._3e{margin-left:-83.496332pt;}
._2a{margin-left:-82.248557pt;}
._2b{margin-left:-79.453255pt;}
._2c{margin-left:-77.582028pt;}
._38{margin-left:-56.929622pt;}
._4c{margin-left:-6.016621pt;}
._12{margin-left:-1.964373pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.018133pt;}
._9{width:3.768320pt;}
._b{width:5.181440pt;}
._7{width:6.359040pt;}
._8{width:7.326720pt;}
._a{width:8.708693pt;}
._d{width:9.715200pt;}
._11{width:10.618880pt;}
._10{width:11.514880pt;}
._32{width:12.736000pt;}
._c{width:13.829120pt;}
._f{width:14.826667pt;}
._4e{width:16.322560pt;}
._4f{width:17.319253pt;}
._17{width:18.432000pt;}
._18{width:19.328000pt;}
._22{width:20.580693pt;}
._1b{width:26.240000pt;}
._4d{width:27.399680pt;}
._28{width:38.400000pt;}
._e{width:58.350080pt;}
._1c{width:73.811200pt;}
._16{width:74.764800pt;}
._29{width:75.699200pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._50{width:752.266667pt;}
._2{width:759.946667pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs20{font-size:48.412058pt;}
.fs11{font-size:49.890957pt;}
.fs19{font-size:50.953489pt;}
.fs21{font-size:51.960665pt;}
.fs17{font-size:52.075907pt;}
.fs30{font-size:52.077577pt;}
.fs2e{font-size:52.336411pt;}
.fs32{font-size:52.488715pt;}
.fsd{font-size:52.876664pt;}
.fs1c{font-size:53.005682pt;}
.fs2b{font-size:53.107738pt;}
.fs4{font-size:53.120000pt;}
.fs1e{font-size:53.197408pt;}
.fs27{font-size:53.308779pt;}
.fs24{font-size:53.552049pt;}
.fs34{font-size:53.774043pt;}
.fs15{font-size:53.833667pt;}
.fs13{font-size:53.950076pt;}
.fs29{font-size:54.558719pt;}
.fs7{font-size:54.819042pt;}
.fsa{font-size:56.061055pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs1a{font-size:71.381622pt;}
.fs22{font-size:72.723034pt;}
.fs18{font-size:72.884324pt;}
.fs31{font-size:72.886662pt;}
.fs2d{font-size:73.274040pt;}
.fs33{font-size:73.531900pt;}
.fse{font-size:74.030426pt;}
.fs1b{font-size:74.154283pt;}
.fs2c{font-size:74.275874pt;}
.fs1f{font-size:74.401286pt;}
.fs26{font-size:74.657444pt;}
.fs3{font-size:74.880000pt;}
.fs23{font-size:74.976004pt;}
.fs35{font-size:75.207761pt;}
.fs16{font-size:75.394007pt;}
.fs14{font-size:75.533266pt;}
.fs2a{font-size:76.359215pt;}
.fs8{font-size:76.749869pt;}
.fs10{font-size:77.680845pt;}
.fsb{font-size:78.439622pt;}
.fs2f{font-size:94.206561pt;}
.fsc{font-size:95.179027pt;}
.fs1d{font-size:95.302884pt;}
.fs28{font-size:96.006108pt;}
.fs25{font-size:96.394733pt;}
.fs12{font-size:97.111191pt;}
.fs6{font-size:98.675346pt;}
.fsf{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.ya6{bottom:3.147471pt;}
.yd3{bottom:3.217371pt;}
.y9f{bottom:3.224507pt;}
.y105{bottom:3.224610pt;}
.y6a{bottom:3.479688pt;}
.y10c{bottom:3.651985pt;}
.yf6{bottom:3.663736pt;}
.yb0{bottom:3.669922pt;}
.y74{bottom:3.840000pt;}
.yf1{bottom:3.888112pt;}
.yaa{bottom:3.934398pt;}
.y138{bottom:4.000000pt;}
.yd9{bottom:4.016534pt;}
.y6f{bottom:4.028840pt;}
.ye7{bottom:4.186806pt;}
.ycd{bottom:4.664775pt;}
.y9c{bottom:6.020177pt;}
.y111{bottom:6.372931pt;}
.y7c{bottom:6.385479pt;}
.y100{bottom:6.542307pt;}
.y112{bottom:6.690044pt;}
.y90{bottom:6.776142pt;}
.y60{bottom:6.852648pt;}
.ya7{bottom:7.601398pt;}
.yd4{bottom:7.770212pt;}
.ya0{bottom:7.787445pt;}
.y106{bottom:7.787695pt;}
.y6b{bottom:8.390230pt;}
.yce{bottom:9.361203pt;}
.yf2{bottom:9.465475pt;}
.y9d{bottom:10.716476pt;}
.yf5{bottom:11.711273pt;}
.yde{bottom:11.793789pt;}
.y10b{bottom:12.472286pt;}
.yf7{bottom:12.588059pt;}
.yaf{bottom:12.609313pt;}
.y13a{bottom:13.280000pt;}
.yee{bottom:13.966502pt;}
.y110{bottom:15.409871pt;}
.yac{bottom:17.814781pt;}
.ycc{bottom:17.839476pt;}
.yda{bottom:18.042326pt;}
.ye9{bottom:18.632920pt;}
.y9{bottom:18.880000pt;}
.yab{bottom:19.419763pt;}
.y6e{bottom:19.482981pt;}
.y7e{bottom:21.472081pt;}
.y101{bottom:21.807263pt;}
.y70{bottom:22.442650pt;}
.y8f{bottom:22.544139pt;}
.yd8{bottom:22.729306pt;}
.y5f{bottom:22.841713pt;}
.yff{bottom:24.797988pt;}
.yeb{bottom:25.472719pt;}
.y91{bottom:25.562574pt;}
.y61{bottom:25.974307pt;}
.y7a{bottom:26.335271pt;}
.ya{bottom:27.680000pt;}
.yec{bottom:30.458791pt;}
.y7d{bottom:36.525457pt;}
.y8{bottom:37.280000pt;}
.y71{bottom:40.225176pt;}
.yed{bottom:41.068930pt;}
.y7b{bottom:41.356099pt;}
.y92{bottom:43.675815pt;}
.ye8{bottom:44.105639pt;}
.y62{bottom:44.379294pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.yea{bottom:62.035059pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y6d{bottom:121.213333pt;}
.ya3{bottom:126.592000pt;}
.y38{bottom:128.352000pt;}
.y118{bottom:129.472000pt;}
.ye2{bottom:133.013333pt;}
.ye1{bottom:140.986667pt;}
.y72{bottom:143.866667pt;}
.ya2{bottom:144.986667pt;}
.y37{bottom:145.306667pt;}
.y117{bottom:147.866667pt;}
.y9e{bottom:159.413333pt;}
.y36{bottom:162.106667pt;}
.y116{bottom:166.266667pt;}
.ye0{bottom:166.906667pt;}
.ya1{bottom:167.386667pt;}
.y6c{bottom:178.266667pt;}
.y35{bottom:178.906667pt;}
.y115{bottom:180.826667pt;}
.ydf{bottom:185.306667pt;}
.y69{bottom:189.213333pt;}
.y9b{bottom:189.346667pt;}
.y34{bottom:195.866667pt;}
.ydd{bottom:196.213333pt;}
.y68{bottom:197.146667pt;}
.y9a{bottom:200.026667pt;}
.y33{bottom:212.666667pt;}
.ydc{bottom:213.466667pt;}
.y67{bottom:221.146667pt;}
.y99{bottom:226.746667pt;}
.y32{bottom:229.626667pt;}
.ydb{bottom:239.066667pt;}
.y66{bottom:239.546667pt;}
.y98{bottom:245.146667pt;}
.yd7{bottom:246.146667pt;}
.y31{bottom:246.426667pt;}
.y65{bottom:257.946667pt;}
.y30{bottom:263.066667pt;}
.y97{bottom:263.546667pt;}
.yd6{bottom:268.826667pt;}
.y64{bottom:275.386667pt;}
.y2f{bottom:278.586667pt;}
.y96{bottom:281.946667pt;}
.y5e{bottom:286.346667pt;}
.y2e{bottom:295.546667pt;}
.y95{bottom:296.346667pt;}
.yd5{bottom:307.066667pt;}
.y63{bottom:311.546667pt;}
.y2d{bottom:312.346667pt;}
.yd2{bottom:321.546667pt;}
.y13c{bottom:324.506667pt;}
.y2c{bottom:329.306667pt;}
.yd1{bottom:329.466667pt;}
.y13b{bottom:342.946667pt;}
.y2b{bottom:346.146667pt;}
.y5d{bottom:348.066667pt;}
.yd0{bottom:355.426667pt;}
.y139{bottom:357.346667pt;}
.y2a{bottom:362.946667pt;}
.ycf{bottom:373.826667pt;}
.y137{bottom:375.746667pt;}
.y29{bottom:379.906667pt;}
.y5c{bottom:381.346667pt;}
.ycb{bottom:388.213333pt;}
.yca{bottom:389.546667pt;}
.y28{bottom:396.706667pt;}
.yc9{bottom:397.506667pt;}
.y136{bottom:398.146667pt;}
.y5b{bottom:399.746667pt;}
.y27{bottom:413.666667pt;}
.y135{bottom:416.066667pt;}
.y5a{bottom:418.146667pt;}
.yc8{bottom:425.666667pt;}
.y26{bottom:430.466667pt;}
.y134{bottom:433.026667pt;}
.y59{bottom:436.226667pt;}
.yc7{bottom:440.213333pt;}
.y25{bottom:447.106667pt;}
.yc6{bottom:448.226667pt;}
.y133{bottom:449.826667pt;}
.y58{bottom:454.946667pt;}
.y24{bottom:463.266667pt;}
.y132{bottom:466.786667pt;}
.yc5{bottom:472.226667pt;}
.y57{bottom:473.346667pt;}
.y23{bottom:483.266667pt;}
.y131{bottom:483.586667pt;}
.yc4{bottom:490.626667pt;}
.y56{bottom:491.746667pt;}
.y130{bottom:500.386667pt;}
.y114{bottom:502.306667pt;}
.y22{bottom:503.266667pt;}
.yc3{bottom:509.026667pt;}
.y55{bottom:510.146667pt;}
.y12f{bottom:517.346667pt;}
.y113{bottom:520.066667pt;}
.y21{bottom:522.626667pt;}
.yc2{bottom:527.266667pt;}
.y54{bottom:528.546667pt;}
.y10f{bottom:529.346667pt;}
.y12e{bottom:534.146667pt;}
.y20{bottom:543.106667pt;}
.yc1{bottom:545.666667pt;}
.y53{bottom:546.946667pt;}
.y10e{bottom:549.346667pt;}
.y12d{bottom:551.106667pt;}
.yc0{bottom:560.213333pt;}
.y94{bottom:561.346667pt;}
.y1f{bottom:562.973333pt;}
.y52{bottom:565.373333pt;}
.y12c{bottom:567.933333pt;}
.ybf{bottom:568.253333pt;}
.y10d{bottom:574.653333pt;}
.y8e{bottom:575.746667pt;}
.y1e{bottom:582.973333pt;}
.y51{bottom:583.773333pt;}
.y10a{bottom:584.413333pt;}
.y12b{bottom:584.893333pt;}
.ybe{bottom:592.253333pt;}
.y93{bottom:601.053333pt;}
.y109{bottom:601.693333pt;}
.y50{bottom:602.013333pt;}
.y1d{bottom:602.333333pt;}
.ybd{bottom:610.653333pt;}
.y12a{bottom:618.493333pt;}
.y4f{bottom:620.413333pt;}
.y1c{bottom:622.493333pt;}
.y108{bottom:626.173333pt;}
.ybc{bottom:629.053333pt;}
.y129{bottom:635.453333pt;}
.y8d{bottom:637.693333pt;}
.y4e{bottom:638.813333pt;}
.y1b{bottom:641.213333pt;}
.y107{bottom:644.573333pt;}
.ybb{bottom:647.453333pt;}
.y128{bottom:652.253333pt;}
.y8c{bottom:656.093333pt;}
.y4d{bottom:657.213333pt;}
.y103{bottom:658.946667pt;}
.y1a{bottom:661.213333pt;}
.y104{bottom:661.680000pt;}
.yba{bottom:661.813333pt;}
.y127{bottom:669.213333pt;}
.y102{bottom:669.693333pt;}
.yb9{bottom:669.853333pt;}
.y8b{bottom:674.493333pt;}
.y4c{bottom:675.613333pt;}
.y19{bottom:680.573333pt;}
.y126{bottom:686.013333pt;}
.yfe{bottom:692.546667pt;}
.y8a{bottom:692.893333pt;}
.yb8{bottom:693.853333pt;}
.y4b{bottom:694.013333pt;}
.y18{bottom:701.053333pt;}
.y125{bottom:702.813333pt;}
.y89{bottom:711.293333pt;}
.yb7{bottom:712.253333pt;}
.y4a{bottom:712.413333pt;}
.yfd{bottom:717.853333pt;}
.y124{bottom:719.773333pt;}
.y17{bottom:720.893333pt;}
.y88{bottom:729.693333pt;}
.yb6{bottom:730.653333pt;}
.y49{bottom:730.813333pt;}
.y123{bottom:737.053333pt;}
.y16{bottom:740.893333pt;}
.y87{bottom:748.093333pt;}
.yb5{bottom:749.053333pt;}
.y48{bottom:749.213333pt;}
.yfc{bottom:752.733333pt;}
.y15{bottom:760.253333pt;}
.y86{bottom:766.493333pt;}
.yb4{bottom:767.453333pt;}
.y47{bottom:767.613333pt;}
.yfb{bottom:771.133333pt;}
.y122{bottom:773.853333pt;}
.y14{bottom:779.773333pt;}
.y85{bottom:784.893333pt;}
.yb3{bottom:785.853333pt;}
.y46{bottom:786.053333pt;}
.yfa{bottom:789.573333pt;}
.y121{bottom:792.293333pt;}
.y13{bottom:797.573333pt;}
.y84{bottom:803.333333pt;}
.yb2{bottom:804.293333pt;}
.y45{bottom:804.453333pt;}
.yf9{bottom:807.813333pt;}
.y120{bottom:810.693333pt;}
.y12{bottom:819.013333pt;}
.y83{bottom:821.733333pt;}
.yb1{bottom:822.693333pt;}
.y44{bottom:822.853333pt;}
.yf8{bottom:826.213333pt;}
.y11f{bottom:829.093333pt;}
.yae{bottom:834.480000pt;}
.y73{bottom:837.253333pt;}
.yf4{bottom:838.013333pt;}
.y82{bottom:840.133333pt;}
.y11{bottom:840.453333pt;}
.y43{bottom:841.253333pt;}
.y11e{bottom:847.493333pt;}
.yad{bottom:851.813333pt;}
.yf3{bottom:855.333333pt;}
.y81{bottom:858.533333pt;}
.y42{bottom:859.653333pt;}
.y10{bottom:861.413333pt;}
.y11d{bottom:865.893333pt;}
.ya9{bottom:870.813333pt;}
.yf0{bottom:876.213333pt;}
.y80{bottom:876.933333pt;}
.y41{bottom:877.733333pt;}
.yf{bottom:880.293333pt;}
.y11c{bottom:883.973333pt;}
.yef{bottom:885.573333pt;}
.y79{bottom:891.413333pt;}
.ya8{bottom:893.573333pt;}
.y40{bottom:896.133333pt;}
.ye{bottom:901.893333pt;}
.y11b{bottom:902.693333pt;}
.ye6{bottom:904.746667pt;}
.y3f{bottom:912.933333pt;}
.y7f{bottom:916.773333pt;}
.y11a{bottom:921.093333pt;}
.yd{bottom:923.333333pt;}
.ye5{bottom:923.493333pt;}
.ya5{bottom:925.813333pt;}
.y3e{bottom:929.893333pt;}
.ya4{bottom:933.893333pt;}
.y119{bottom:939.493333pt;}
.yc{bottom:944.133333pt;}
.y3d{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y78{bottom:957.893333pt;}
.y3c{bottom:963.493333pt;}
.y77{bottom:976.293333pt;}
.y3b{bottom:980.453333pt;}
.ye4{bottom:981.013333pt;}
.ye3{bottom:989.093333pt;}
.y76{bottom:994.693333pt;}
.y3a{bottom:997.253333pt;}
.y75{bottom:1013.120000pt;}
.y39{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h76{height:18.386667pt;}
.h19{height:27.999868pt;}
.h35{height:28.001050pt;}
.h45{height:29.867056pt;}
.h32{height:29.933297pt;}
.h69{height:29.934257pt;}
.h5b{height:32.666778pt;}
.h2f{height:33.598885pt;}
.h77{height:36.786667pt;}
.h6c{height:38.066243pt;}
.h66{height:38.766765pt;}
.h1e{height:39.166943pt;}
.h3c{height:39.262509pt;}
.h56{height:39.487020pt;}
.h4c{height:39.667216pt;}
.h5e{height:39.799998pt;}
.h3f{height:39.867199pt;}
.h2b{height:39.962044pt;}
.h3{height:40.163750pt;}
.h15{height:40.605706pt;}
.h70{height:41.598984pt;}
.h44{height:43.400654pt;}
.h12{height:47.109375pt;}
.h43{height:47.513788pt;}
.h27{height:48.940885pt;}
.hf{height:49.967500pt;}
.h36{height:50.008063pt;}
.h46{height:50.971180pt;}
.h33{height:51.084227pt;}
.h6a{height:51.085865pt;}
.h68{height:51.365325pt;}
.h6d{height:51.489174pt;}
.h6f{height:51.514804pt;}
.h20{height:51.869735pt;}
.h3e{height:52.022178pt;}
.h5f{height:52.096409pt;}
.he{height:52.108438pt;}
.h61{height:52.122340pt;}
.h40{height:52.184371pt;}
.h42{height:52.210347pt;}
.h53{height:52.293622pt;}
.h59{height:52.319651pt;}
.h4e{height:52.558407pt;}
.h71{height:52.750025pt;}
.h73{height:52.776282pt;}
.h30{height:52.808514pt;}
.h2d{height:52.922707pt;}
.h5c{height:53.519759pt;}
.h17{height:53.775125pt;}
.h1c{height:54.200387pt;}
.h67{height:54.275741pt;}
.h74{height:54.312500pt;}
.h1f{height:54.836014pt;}
.h3d{height:54.927758pt;}
.h1a{height:54.993486pt;}
.h50{height:55.020860pt;}
.h22{height:55.186667pt;}
.h57{height:55.300460pt;}
.h4d{height:55.536425pt;}
.h2c{height:55.949202pt;}
.h48{height:56.200643pt;}
.h62{height:56.201878pt;}
.h16{height:56.850367pt;}
.h11{height:57.375000pt;}
.h26{height:57.539962pt;}
.h10{height:57.758750pt;}
.h4{height:57.787500pt;}
.h29{height:57.934726pt;}
.h13{height:58.867872pt;}
.hb{height:59.340000pt;}
.h75{height:60.519362pt;}
.h24{height:62.398278pt;}
.hd{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h38{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h65{height:69.780934pt;}
.h37{height:70.022304pt;}
.h6{height:70.106667pt;}
.h1d{height:70.501262pt;}
.h3b{height:70.593006pt;}
.h55{height:71.113900pt;}
.h47{height:71.338172pt;}
.h34{height:71.496390pt;}
.h6b{height:71.498683pt;}
.h2a{height:71.932459pt;}
.h14{height:73.091064pt;}
.h52{height:73.235744pt;}
.h5a{height:73.272198pt;}
.h31{height:73.958281pt;}
.h5d{height:74.905109pt;}
.h9{height:75.465000pt;}
.h51{height:76.001561pt;}
.h28{height:76.201571pt;}
.h25{height:76.239501pt;}
.h1b{height:76.945898pt;}
.h4b{height:77.903690pt;}
.h58{height:79.678851pt;}
.h4f{height:91.590000pt;}
.h54{height:104.837328pt;}
.h4a{height:105.065637pt;}
.h64{height:106.045264pt;}
.h3a{height:107.517826pt;}
.h63{height:121.625639pt;}
.h39{height:123.126402pt;}
.h6e{height:125.768544pt;}
.h60{height:127.132908pt;}
.h41{height:127.347566pt;}
.h72{height:127.458462pt;}
.h49{height:129.546648pt;}
.h21{height:146.275909pt;}
.h2e{height:149.240616pt;}
.h18{height:151.774959pt;}
.h23{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:24.466069pt;}
.wb{width:34.400013pt;}
.w15{width:38.066189pt;}
.wf{width:49.733008pt;}
.w10{width:49.799247pt;}
.w8{width:49.950667pt;}
.wc{width:52.466087pt;}
.w11{width:56.134186pt;}
.w4{width:73.306667pt;}
.w7{width:102.402558pt;}
.w5{width:110.400493pt;}
.wa{width:125.866276pt;}
.w18{width:128.602069pt;}
.w17{width:130.395650pt;}
.we{width:138.534940pt;}
.w12{width:143.994981pt;}
.w13{width:144.926969pt;}
.wd{width:149.390001pt;}
.w3{width:160.653333pt;}
.w19{width:164.001531pt;}
.w14{width:168.472801pt;}
.w16{width:174.866392pt;}
.w9{width:183.799580pt;}
.w1a{width:300.225333pt;}
.w1b{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:3.925849pt;}
.x3{left:7.038667pt;}
.x37{left:11.207340pt;}
.x27{left:17.431623pt;}
.x72{left:20.238845pt;}
.x2c{left:22.414711pt;}
.x35{left:24.883451pt;}
.x22{left:27.550992pt;}
.x67{left:28.500106pt;}
.x5b{left:31.023840pt;}
.x55{left:32.795082pt;}
.x2a{left:37.048523pt;}
.x32{left:38.397774pt;}
.x2d{left:40.794590pt;}
.x2b{left:41.691073pt;}
.x20{left:43.772265pt;}
.x24{left:44.855837pt;}
.x23{left:49.091862pt;}
.x21{left:50.175434pt;}
.x3a{left:53.467049pt;}
.x3e{left:54.490800pt;}
.x3d{left:58.648722pt;}
.x3b{left:59.671162pt;}
.x59{left:62.536906pt;}
.x6f{left:66.463589pt;}
.x2{left:68.481333pt;}
.x5a{left:70.504486pt;}
.x3c{left:72.559147pt;}
.x48{left:73.526766pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x64{left:78.860039pt;}
.x4a{left:80.489498pt;}
.x4d{left:83.588933pt;}
.x31{left:85.305749pt;}
.x5e{left:86.751460pt;}
.x49{left:88.264392pt;}
.x9{left:89.632000pt;}
.x70{left:91.946667pt;}
.x33{left:93.264671pt;}
.x68{left:94.737149pt;}
.xa{left:99.072000pt;}
.x36{left:101.158346pt;}
.xd{left:104.992000pt;}
.x65{left:107.721264pt;}
.x43{left:109.952000pt;}
.x75{left:111.348548pt;}
.x1d{left:113.312000pt;}
.x34{left:114.801833pt;}
.x6b{left:116.685249pt;}
.x6e{left:117.934891pt;}
.x1e{left:125.472000pt;}
.x4c{left:127.188038pt;}
.x66{left:129.779168pt;}
.x5d{left:130.987287pt;}
.x58{left:131.934968pt;}
.x47{left:133.840212pt;}
.x63{left:139.017347pt;}
.x15{left:142.266667pt;}
.x46{left:143.613333pt;}
.x74{left:151.084561pt;}
.x5{left:153.466667pt;}
.x30{left:161.775056pt;}
.x12{left:166.266667pt;}
.x71{left:173.786667pt;}
.x18{left:179.866667pt;}
.x6d{left:188.746667pt;}
.x1b{left:195.866667pt;}
.x53{left:232.213333pt;}
.x73{left:272.226667pt;}
.xb{left:282.466667pt;}
.x5c{left:287.586667pt;}
.x5f{left:288.546667pt;}
.x4b{left:293.026667pt;}
.x76{left:307.586667pt;}
.x6a{left:309.346667pt;}
.xe{left:310.466667pt;}
.x69{left:312.066667pt;}
.x2f{left:317.213333pt;}
.x6c{left:318.466667pt;}
.x39{left:347.946667pt;}
.x4e{left:350.480000pt;}
.x1f{left:351.946667pt;}
.x60{left:355.946667pt;}
.x78{left:368.706667pt;}
.x61{left:374.946667pt;}
.x16{left:390.306667pt;}
.x14{left:394.146667pt;}
.x10{left:395.426667pt;}
.xc{left:396.893333pt;}
.x4f{left:400.253333pt;}
.xf{left:415.773333pt;}
.x62{left:424.733333pt;}
.x1a{left:426.813333pt;}
.x2e{left:454.333333pt;}
.x25{left:462.333333pt;}
.x3f{left:473.853333pt;}
.x44{left:481.213333pt;}
.x4{left:491.466667pt;}
.x17{left:493.853333pt;}
.x26{left:496.413333pt;}
.x38{left:501.053333pt;}
.x11{left:506.013333pt;}
.x29{left:520.893333pt;}
.x45{left:533.693333pt;}
.x13{left:548.573333pt;}
.x52{left:571.493333pt;}
.x19{left:582.373333pt;}
.x50{left:607.946667pt;}
.x77{left:626.853333pt;}
.x1c{left:631.013333pt;}
.x40{left:649.413333pt;}
.x6{left:652.133333pt;}
.x51{left:657.733333pt;}
.x54{left:662.013333pt;}
.x41{left:674.946667pt;}
.x56{left:679.746667pt;}
.x42{left:709.413333pt;}
.x57{left:714.213333pt;}
.x8{left:718.240000pt;}
}




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