
    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_f2ec872322fe5564eab7311a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_6bb8370ca94a0a5dec14733d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_8e45ab3644d221eb7d6d7b5b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.718000;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_27855689907d3b5b6d276c71.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979000;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_e0b6c0c7783e7aef6fb0c1d6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.722000;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_709c51d5e1ed003e3cf691b3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.737305;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_ca7179d83c4347aad51b60a8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.839000;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_3f4f1c67cf6fe1ca68415f96.woff')format("woff");}.ff8{font-family:ff8;line-height:0.980000;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_a7c1dd0707bb4ff1497655d6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926000;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_3e5582a7c62cce4b617cc54c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.650000;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_a2c6cad7470f2090bf0a60a7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_6c191e53d2d873fe5f7b0f23.woff')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_2a87a175fb3a61b15c17c1ff.woff')format("woff");}.ffd{font-family:ffd;line-height:0.865000;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_1084783b5f769981cda7a036.woff')format("woff");}.ffe{font-family:ffe;line-height:0.712000;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_505745de4420849e7d0c47fa.woff')format("woff");}.fff{font-family:fff;line-height:0.391000;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_b27d63f731e0d3ba8a5ebdd0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.723000;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_02db90827a930d43d36b1f3f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.912000;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_c5da47dd8a81e8b480371a97.woff')format("woff");}.ff12{font-family:ff12;line-height:0.822000;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_45baa87f408d949462e539e2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.684015;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_87b9c4ff9bdc0e8547dfb6da.woff')format("woff");}.ff14{font-family:ff14;line-height:0.822000;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_423ca33f7d6f7af5bb0f8e27.woff')format("woff");}.ff15{font-family:ff15;line-height:0.744000;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_89dfc532c5677c633ecb0769.woff')format("woff");}.ff16{font-family:ff16;line-height:1.251000;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_dce9958736081eb44e2ea738.woff')format("woff");}.ff17{font-family:ff17;line-height:0.822000;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:ff18;src:url('chunks/assets/font_20934fe53f8e56ad0eeec9db.woff')format("woff");}.ff18{font-family:ff18;line-height:0.806000;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:ff19;src:url('chunks/assets/font_1345aed0f626421c610e4041.woff')format("woff");}.ff19{font-family:ff19;line-height:0.822000;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:ff1a;src:url('chunks/assets/font_e8e0074e2f0dbf61b52362cc.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.895000;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:ff1b;src:url('chunks/assets/font_e724b89dca655856bf72d39a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.938000;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:ff1c;src:url('chunks/assets/font_3c2696049a2dbb24e64dce86.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.722000;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);}
.v16{vertical-align:-124.768427px;}
.v1a{vertical-align:-79.120666px;}
.va{vertical-align:-74.602419px;}
.v6{vertical-align:-72.470993px;}
.v8{vertical-align:-71.405492px;}
.v12{vertical-align:-69.866731px;}
.v18{vertical-align:-61.949906px;}
.v9{vertical-align:-55.384160px;}
.v5{vertical-align:-53.801582px;}
.v19{vertical-align:-43.020082px;}
.v2{vertical-align:-40.122099px;}
.v1b{vertical-align:-33.098400px;}
.v17{vertical-align:-22.197000px;}
.vc{vertical-align:-19.890600px;}
.v4{vertical-align:-17.769000px;}
.v15{vertical-align:-14.395800px;}
.v7{vertical-align:-12.697394px;}
.v3{vertical-align:-11.644200px;}
.vb{vertical-align:-10.347600px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:24.333437px;}
.v1{vertical-align:40.122099px;}
.vd{vertical-align:52.922679px;}
.vf{vertical-align:94.199568px;}
.ve{vertical-align:103.402930px;}
.v14{vertical-align:107.268202px;}
.v13{vertical-align:114.173619px;}
.v11{vertical-align:197.602498px;}
.ls44{letter-spacing:-50.973557px;}
.ls2c{letter-spacing:-12.960267px;}
.ls2b{letter-spacing:-11.737600px;}
.ls34{letter-spacing:-10.392667px;}
.lsa{letter-spacing:-10.200534px;}
.ls20{letter-spacing:-9.897778px;}
.ls3c{letter-spacing:-9.798800px;}
.ls48{letter-spacing:-7.285056px;}
.ls3{letter-spacing:-6.800356px;}
.ls2f{letter-spacing:-5.822222px;}
.ls41{letter-spacing:-5.705778px;}
.ls30{letter-spacing:-5.589334px;}
.ls12{letter-spacing:-5.542756px;}
.ls2d{letter-spacing:-5.356445px;}
.ls0{letter-spacing:-4.750933px;}
.ls33{letter-spacing:-4.416000px;}
.ls9{letter-spacing:-4.157067px;}
.ls3d{letter-spacing:-3.992577px;}
.ls14{letter-spacing:-3.784445px;}
.ls15{letter-spacing:-2.911111px;}
.ls45{letter-spacing:-2.531851px;}
.ls21{letter-spacing:-2.503556px;}
.lsb{letter-spacing:-2.445333px;}
.ls2a{letter-spacing:-2.328889px;}
.ls13{letter-spacing:-2.298613px;}
.lsf{letter-spacing:-2.125111px;}
.ls10{letter-spacing:-2.037778px;}
.ls3f{letter-spacing:-1.982385px;}
.ls11{letter-spacing:-1.979556px;}
.lse{letter-spacing:-1.892222px;}
.ls2e{letter-spacing:-1.839822px;}
.ls8{letter-spacing:-1.809547px;}
.ls1e{letter-spacing:-1.797614px;}
.ls22{letter-spacing:-1.752489px;}
.lsc{letter-spacing:-1.746667px;}
.ls1c{letter-spacing:-1.721658px;}
.ls1{letter-spacing:-1.700089px;}
.ls1d{letter-spacing:-1.696340px;}
.ls40{letter-spacing:-1.376656px;}
.ls5{letter-spacing:-1.164444px;}
.ls2{letter-spacing:-1.133393px;}
.ls47{letter-spacing:-1.120778px;}
.lsd{letter-spacing:-1.002587px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000022px;}
.ls17{letter-spacing:0.000029px;}
.ls16{letter-spacing:0.000036px;}
.ls3b{letter-spacing:0.000043px;}
.ls18{letter-spacing:0.000582px;}
.ls31{letter-spacing:0.012000px;}
.ls3e{letter-spacing:0.727778px;}
.ls35{letter-spacing:1.630222px;}
.ls46{letter-spacing:50.689705px;}
.ls25{letter-spacing:62.103900px;}
.ls1b{letter-spacing:62.416739px;}
.ls1a{letter-spacing:62.417538px;}
.ls26{letter-spacing:68.572680px;}
.ls29{letter-spacing:68.572971px;}
.ls3a{letter-spacing:75.000731px;}
.ls39{letter-spacing:75.001331px;}
.ls24{letter-spacing:77.629438px;}
.ls1f{letter-spacing:79.264331px;}
.ls28{letter-spacing:85.715923px;}
.ls27{letter-spacing:85.716214px;}
.ls43{letter-spacing:87.911329px;}
.ls42{letter-spacing:87.911479px;}
.ls32{letter-spacing:92.162663px;}
.ls7{letter-spacing:94.006997px;}
.ls23{letter-spacing:98.811673px;}
.ls6{letter-spacing:105.408131px;}
.ls38{letter-spacing:137.589731px;}
.ls36{letter-spacing:138.631032px;}
.ls37{letter-spacing:138.631148px;}
.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;}
}
.ws25{word-spacing:-78.687336px;}
.ws20{word-spacing:-68.881549px;}
.ws4{word-spacing:-65.534935px;}
.ws23{word-spacing:-56.650224px;}
.ws3{word-spacing:-53.626162px;}
.ws7{word-spacing:-53.052091px;}
.ws10{word-spacing:-51.713562px;}
.ws6{word-spacing:-50.711557px;}
.ws5{word-spacing:-46.810668px;}
.ws21{word-spacing:-44.523699px;}
.ws2e{word-spacing:-35.224446px;}
.ws2b{word-spacing:-34.933334px;}
.ws11{word-spacing:-34.475708px;}
.wsd{word-spacing:-33.990134px;}
.wsa{word-spacing:-32.533414px;}
.ws1{word-spacing:-28.334821px;}
.ws0{word-spacing:-27.201428px;}
.ws29{word-spacing:-0.499072px;}
.ws26{word-spacing:-0.354341px;}
.ws37{word-spacing:-0.316481px;}
.ws22{word-spacing:-0.289914px;}
.ws18{word-spacing:-0.279467px;}
.ws36{word-spacing:-0.262000px;}
.ws2f{word-spacing:-0.247798px;}
.ws34{word-spacing:-0.246152px;}
.ws12{word-spacing:-0.224702px;}
.wse{word-spacing:-0.221537px;}
.ws9{word-spacing:-0.215207px;}
.wsc{word-spacing:-0.212042px;}
.ws17{word-spacing:-0.211691px;}
.ws2c{word-spacing:-0.209600px;}
.ws24{word-spacing:-0.203778px;}
.ws1a{word-spacing:-0.198421px;}
.ws35{word-spacing:-0.174768px;}
.ws31{word-spacing:-0.172082px;}
.ws13{word-spacing:-0.159538px;}
.wsf{word-spacing:-0.157291px;}
.ws8{word-spacing:-0.152797px;}
.wsb{word-spacing:-0.150550px;}
.ws2d{word-spacing:-0.145556px;}
.ws30{word-spacing:-0.122178px;}
.ws2{word-spacing:0.000000px;}
.ws1d{word-spacing:11.458134px;}
.ws1e{word-spacing:12.651689px;}
.ws15{word-spacing:49.708658px;}
.ws16{word-spacing:49.709230px;}
.ws14{word-spacing:53.304341px;}
.ws1b{word-spacing:61.823851px;}
.ws19{word-spacing:61.824025px;}
.ws1c{word-spacing:61.824433px;}
.ws1f{word-spacing:68.264393px;}
.ws39{word-spacing:70.012624px;}
.ws38{word-spacing:75.076290px;}
.ws2a{word-spacing:110.404735px;}
.ws28{word-spacing:110.405897px;}
.ws27{word-spacing:118.391114px;}
.ws32{word-spacing:123.760906px;}
.ws33{word-spacing:2654.372405px;}
._26{margin-left:-68.572971px;}
._2b{margin-left:-22.619334px;}
._3f{margin-left:-19.085827px;}
._43{margin-left:-17.596212px;}
._42{margin-left:-15.578812px;}
._2a{margin-left:-13.414400px;}
._41{margin-left:-10.851333px;}
._b{margin-left:-9.689677px;}
._29{margin-left:-8.425920px;}
._5{margin-left:-7.140374px;}
._9{margin-left:-6.120320px;}
._1{margin-left:-5.100267px;}
._6{margin-left:-4.080213px;}
._0{margin-left:-3.060160px;}
._2{margin-left:-2.040107px;}
._7{margin-left:-1.020053px;}
._a{width:1.020053px;}
._22{width:2.040107px;}
._4{width:3.059330px;}
._8{width:4.080213px;}
._3{width:5.100433px;}
._40{width:6.164278px;}
._2c{width:9.976960px;}
._24{width:11.737600px;}
._25{width:12.960267px;}
._35{width:14.004192px;}
._3d{width:17.582363px;}
._38{width:18.714650px;}
._3e{width:21.478880px;}
._3a{width:30.683112px;}
._39{width:41.075779px;}
._3b{width:43.055335px;}
._23{width:77.630020px;}
._c{width:111.231115px;}
._30{width:124.082622px;}
._34{width:172.093832px;}
._2e{width:178.910490px;}
._32{width:296.766827px;}
._20{width:362.582393px;}
._2f{width:422.851711px;}
._11{width:521.200691px;}
._d{width:528.979763px;}
._28{width:532.240207px;}
._2d{width:609.618708px;}
._33{width:622.465441px;}
._12{width:675.990878px;}
._e{width:686.080790px;}
._1b{width:702.193208px;}
._1e{width:716.349069px;}
._37{width:784.733108px;}
._21{width:809.461834px;}
._1c{width:866.224718px;}
._36{width:963.279127px;}
._15{width:970.518187px;}
._31{width:975.756150px;}
._3c{width:1009.713097px;}
._1d{width:1108.228885px;}
._18{width:1258.836678px;}
._13{width:1264.832403px;}
._f{width:1283.713870px;}
._1a{width:1430.900526px;}
._14{width:1493.202963px;}
._19{width:1500.840555px;}
._10{width:1515.487228px;}
._17{width:1949.081522px;}
._27{width:2019.332614px;}
._16{width:2188.456373px;}
._1f{width:3135.812887px;}
.fc3{color:rgb(181,26,0);}
.fc2{color:transparent;}
.fc5{color:rgb(94,94,94);}
.fc4{color:rgb(131,17,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:60.000000px;}
.fsa{font-size:100.258670px;}
.fs23{font-size:104.800003px;}
.fs43{font-size:112.077781px;}
.fs2{font-size:113.339282px;}
.fs3{font-size:116.444448px;}
.fs18{font-size:117.026670px;}
.fs3c{font-size:122.178231px;}
.fs1c{font-size:122.266670px;}
.fs20{font-size:124.013337px;}
.fs38{font-size:145.555560px;}
.fs29{font-size:150.300497px;}
.fs1a{font-size:150.550153px;}
.fs16{font-size:152.797182px;}
.fs1e{font-size:157.291239px;}
.fs22{font-size:159.538209px;}
.fs13{font-size:163.022227px;}
.fs42{font-size:168.116672px;}
.fs1{font-size:170.008894px;}
.fs3b{font-size:172.082013px;}
.fs9{font-size:174.666672px;}
.fs3e{font-size:174.768037px;}
.fs27{font-size:175.248894px;}
.fs17{font-size:175.540005px;}
.fs3a{font-size:175.936673px;}
.fs14{font-size:178.160005px;}
.fs5{font-size:180.954672px;}
.fs1b{font-size:183.400006px;}
.fs2f{font-size:183.982228px;}
.fs1f{font-size:186.020006px;}
.fsb{font-size:189.222228px;}
.fse{font-size:197.955562px;}
.fs2b{font-size:198.421339px;}
.fsd{font-size:203.777784px;}
.fs31{font-size:205.838967px;}
.fs6{font-size:207.853340px;}
.fs36{font-size:209.600006px;}
.fs28{font-size:211.690825px;}
.fs19{font-size:212.042487px;}
.fsc{font-size:212.511118px;}
.fs15{font-size:215.207272px;}
.fs37{font-size:218.333340px;}
.fs2e{font-size:219.090229px;}
.fs1d{font-size:221.536901px;}
.fs21{font-size:224.701745px;}
.fsf{font-size:229.861340px;}
.fs2c{font-size:232.888896px;}
.fs8{font-size:244.533341px;}
.fs3d{font-size:246.152152px;}
.fs39{font-size:247.798152px;}
.fs25{font-size:250.355563px;}
.fs3f{font-size:262.000008px;}
.fs26{font-size:262.873341px;}
.fs2a{font-size:279.466675px;}
.fs30{font-size:289.914013px;}
.fs11{font-size:291.111120px;}
.fs32{font-size:305.666676px;}
.fs2d{font-size:308.577787px;}
.fs12{font-size:311.780010px;}
.fs41{font-size:316.481338px;}
.fs40{font-size:349.333344px;}
.fs35{font-size:354.341155px;}
.fs10{font-size:378.444456px;}
.fs0{font-size:465.777792px;}
.fs33{font-size:489.940015px;}
.fs24{font-size:494.888904px;}
.fs34{font-size:499.072066px;}
.fs7{font-size:510.026682px;}
.ya6{bottom:-17.170110px;}
.yae{bottom:-0.000137px;}
.y0{bottom:0.000000px;}
.yaa{bottom:0.000046px;}
.yb2{bottom:0.602263px;}
.yc0{bottom:0.861638px;}
.y7f{bottom:1.014716px;}
.yb0{bottom:6.065863px;}
.yac{bottom:10.755013px;}
.yb4{bottom:10.755163px;}
.y70{bottom:13.230712px;}
.y3b{bottom:13.252607px;}
.y32{bottom:13.450392px;}
.y3d{bottom:13.779557px;}
.y46{bottom:13.846084px;}
.y34{bottom:13.985292px;}
.y4e{bottom:14.043870px;}
.y4a{bottom:14.602170px;}
.y57{bottom:14.602245px;}
.y53{bottom:14.602320px;}
.ybe{bottom:15.384488px;}
.yc2{bottom:15.384638px;}
.ya8{bottom:15.487396px;}
.ybc{bottom:15.996188px;}
.y3f{bottom:17.851307px;}
.y36{bottom:18.117792px;}
.y44{bottom:18.650584px;}
.yd{bottom:19.949700px;}
.ycd{bottom:20.566557px;}
.y96{bottom:32.432296px;}
.y80{bottom:39.111945px;}
.y60{bottom:41.247570px;}
.yc{bottom:44.792520px;}
.y1{bottom:48.000000px;}
.y93{bottom:52.393425px;}
.yee{bottom:53.760105px;}
.y2d{bottom:54.263145px;}
.y7d{bottom:68.755455px;}
.y55{bottom:83.420220px;}
.y92{bottom:83.723490px;}
.y18{bottom:91.503570px;}
.ya5{bottom:93.452115px;}
.y5e{bottom:96.453225px;}
.yed{bottom:99.711270px;}
.y56{bottom:116.817975px;}
.y7c{bottom:136.351500px;}
.yec{bottom:145.662450px;}
.y54{bottom:153.280950px;}
.ya4{bottom:154.312500px;}
.y7e{bottom:183.336750px;}
.y24{bottom:184.002450px;}
.yb{bottom:190.664400px;}
.yeb{bottom:191.613600px;}
.ya3{bottom:206.063850px;}
.y23{bottom:230.857350px;}
.yea{bottom:237.564750px;}
.y9d{bottom:240.456450px;}
.yb5{bottom:243.308700px;}
.ya{bottom:248.886600px;}
.y77{bottom:252.624463px;}
.y50{bottom:267.927450px;}
.ya2{bottom:274.518300px;}
.y5d{bottom:277.302900px;}
.y22{bottom:277.712250px;}
.ye9{bottom:283.515900px;}
.y9c{bottom:301.316850px;}
.y52{bottom:301.325250px;}
.y51{bottom:301.883700px;}
.y9{bottom:307.108800px;}
.y7a{bottom:323.931450px;}
.ye8{bottom:329.467050px;}
.y8d{bottom:333.062400px;}
.y4f{bottom:337.788300px;}
.y9b{bottom:351.078600px;}
.ycf{bottom:354.708300px;}
.y8{bottom:365.331000px;}
.y76{bottom:366.303669px;}
.ye7{bottom:375.418200px;}
.yd1{bottom:382.141800px;}
.y8c{bottom:390.513900px;}
.yca{bottom:395.429700px;}
.y9a{bottom:406.389750px;}
.y2b{bottom:414.217200px;}
.ye6{bottom:421.369350px;}
.y7{bottom:423.553200px;}
.yba{bottom:424.510950px;}
.ya1{bottom:429.316650px;}
.yce{bottom:431.864850px;}
.y4c{bottom:437.644050px;}
.y21{bottom:441.840150px;}
.yc1{bottom:457.126350px;}
.yd0{bottom:459.298350px;}
.yb3{bottom:462.188850px;}
.yaf{bottom:466.878150px;}
.y99{bottom:467.250150px;}
.ye5{bottom:467.320500px;}
.y5c{bottom:468.253350px;}
.y4d{bottom:471.600300px;}
.ybf{bottom:471.649350px;}
.yb1{bottom:472.341750px;}
.y2a{bottom:481.248450px;}
.y6{bottom:481.775550px;}
.yb9{bottom:485.987850px;}
.ya0{bottom:487.758150px;}
.y20{bottom:488.695050px;}
.y8e{bottom:495.697500px;}
.y79{bottom:501.387750px;}
.y8b{bottom:506.267700px;}
.y4b{bottom:507.504900px;}
.ye4{bottom:513.271800px;}
.ybd{bottom:518.603400px;}
.yab{bottom:520.630500px;}
.yad{bottom:531.385650px;}
.y29{bottom:543.837300px;}
.yb8{bottom:547.464900px;}
.ye3{bottom:559.222950px;}
.y8a{bottom:560.120400px;}
.y78{bottom:560.890950px;}
.ybb{bottom:579.468600px;}
.y5{bottom:598.219950px;}
.y98{bottom:600.575400px;}
.y28{bottom:601.983900px;}
.ye2{bottom:605.174100px;}
.y9f{bottom:614.239050px;}
.y65{bottom:614.752650px;}
.y89{bottom:617.571900px;}
.y48{bottom:636.161550px;}
.yc9{bottom:647.309250px;}
.ye1{bottom:651.125250px;}
.y4{bottom:656.442150px;}
.ycb{bottom:658.213800px;}
.y1f{bottom:665.087250px;}
.y5b{bottom:665.328900px;}
.y49{bottom:669.559350px;}
.y97{bottom:671.367900px;}
.y26{bottom:675.447000px;}
.ycc{bottom:685.647300px;}
.y9e{bottom:686.411400px;}
.ye0{bottom:697.076400px;}
.y47{bottom:706.022250px;}
.y1e{bottom:713.114700px;}
.ya7{bottom:718.924050px;}
.y88{bottom:733.325700px;}
.ya9{bottom:734.411400px;}
.y64{bottom:738.605850px;}
.ydf{bottom:743.027550px;}
.y14{bottom:757.787700px;}
.y87{bottom:787.178250px;}
.yde{bottom:788.978700px;}
.y3{bottom:798.883650px;}
.y6e{bottom:807.053550px;}
.y42{bottom:810.600000px;}
.y13{bottom:823.287750px;}
.y63{bottom:827.868750px;}
.ydd{bottom:834.929850px;}
.y5a{bottom:835.784700px;}
.y43{bottom:839.949450px;}
.y86{bottom:841.030950px;}
.y45{bottom:844.753950px;}
.y1d{bottom:852.432750px;}
.y6d{bottom:852.708450px;}
.y41{bottom:878.877150px;}
.ydc{bottom:880.881000px;}
.y12{bottom:882.965550px;}
.y71{bottom:884.890800px;}
.yc7{bottom:897.938850px;}
.y85{bottom:898.482450px;}
.y1c{bottom:903.965850px;}
.y2{bottom:910.670250px;}
.ydb{bottom:926.832150px;}
.yc8{bottom:926.955000px;}
.y6c{bottom:935.512800px;}
.y11{bottom:945.554400px;}
.y62{bottom:951.721950px;}
.yc6{bottom:957.347400px;}
.yda{bottom:972.783300px;}
.y39{bottom:998.487450px;}
.y6b{bottom:1007.390100px;}
.y10{bottom:1011.054450px;}
.y84{bottom:1014.236250px;}
.y91{bottom:1016.034300px;}
.yd9{bottom:1018.734450px;}
.y1b{bottom:1023.170400px;}
.y61{bottom:1023.175200px;}
.y40{bottom:1032.708000px;}
.y59{bottom:1045.466100px;}
.y38{bottom:1050.226350px;}
.yd8{bottom:1064.685600px;}
.y27{bottom:1066.639500px;}
.y83{bottom:1068.057600px;}
.y1a{bottom:1068.848550px;}
.yf{bottom:1070.732250px;}
.y90{bottom:1072.512000px;}
.y6a{bottom:1074.294750px;}
.ye{bottom:1076.129250px;}
.y3e{bottom:1080.375000px;}
.yb7{bottom:1082.940150px;}
.y3c{bottom:1084.446750px;}
.y3a{bottom:1084.973700px;}
.y74{bottom:1104.075927px;}
.yd7{bottom:1110.636900px;}
.y19{bottom:1114.526850px;}
.y37{bottom:1115.935950px;}
.y69{bottom:1119.949650px;}
.y82{bottom:1124.566650px;}
.y73{bottom:1127.625819px;}
.yb6{bottom:1130.251200px;}
.yc4{bottom:1138.696650px;}
.y6f{bottom:1152.132150px;}
.yd6{bottom:1156.588050px;}
.y81{bottom:1182.018150px;}
.yc5{bottom:1187.526450px;}
.y75{bottom:1190.475450px;}
.y68{bottom:1191.652800px;}
.yd5{bottom:1202.539200px;}
.y25{bottom:1204.649850px;}
.y17{bottom:1219.049550px;}
.yc3{bottom:1225.635150px;}
.y30{bottom:1238.613150px;}
.y58{bottom:1247.504850px;}
.yd4{bottom:1248.490350px;}
.y35{bottom:1268.495400px;}
.y33{bottom:1272.627900px;}
.y31{bottom:1273.162800px;}
.y16{bottom:1275.299100px;}
.yd3{bottom:1294.441500px;}
.y2f{bottom:1304.814750px;}
.y7b{bottom:1305.059100px;}
.yd2{bottom:1340.392650px;}
.y67{bottom:1340.773650px;}
.y15{bottom:1383.193950px;}
.y2e{bottom:1399.684650px;}
.y72{bottom:1408.060200px;}
.y66{bottom:1410.100950px;}
.y94{bottom:1410.334200px;}
.y95{bottom:1425.901950px;}
.y8f{bottom:1473.529500px;}
.y2c{bottom:1492.507500px;}
.y5f{bottom:1508.998500px;}
.h48{height:28.479570px;}
.h4b{height:29.684145px;}
.h4a{height:30.028320px;}
.h49{height:35.147760px;}
.h46{height:39.836985px;}
.h45{height:41.010585px;}
.h4f{height:42.461235px;}
.h5{height:43.037109px;}
.h2f{height:48.530130px;}
.h1d{height:49.087830px;}
.h1f{height:49.614765px;}
.h18{height:49.820490px;}
.h1a{height:50.355285px;}
.h24{height:51.285795px;}
.h28{height:52.018455px;}
.h26{height:52.576830px;}
.h20{height:53.686500px;}
.h1b{height:54.487800px;}
.h22{height:56.090385px;}
.h4e{height:56.984220px;}
.h43{height:57.365265px;}
.h4c{height:57.595905px;}
.h39{height:63.236040px;}
.h52{height:74.051880px;}
.h29{height:74.617602px;}
.hc{height:77.199176px;}
.h3c{height:84.538669px;}
.h4{height:89.662225px;}
.h16{height:104.334225px;}
.h3e{height:116.775375px;}
.h36{height:118.116590px;}
.h47{height:118.392425px;}
.h55{height:121.380237px;}
.h1c{height:128.319744px;}
.h17{height:130.234964px;}
.h3{height:130.566831px;}
.h21{height:134.065404px;}
.hb{height:134.493337px;}
.h2e{height:134.941649px;}
.h25{height:135.980624px;}
.h6{height:139.335098px;}
.h30{height:140.989202px;}
.h42{height:142.498893px;}
.hd{height:145.701116px;}
.h1e{height:145.885231px;}
.h19{height:148.062603px;}
.h33{height:149.514671px;}
.h8{height:150.070111px;}
.h23{height:152.417388px;}
.h10{height:152.425782px;}
.h27{height:154.594801px;}
.hf{height:156.908894px;}
.h2b{height:159.965560px;}
.h7{height:160.047072px;}
.he{height:163.633561px;}
.h4d{height:169.352680px;}
.h44{height:170.485129px;}
.h11{height:176.993232px;}
.h38{height:184.168539px;}
.h54{height:189.164006px;}
.h2d{height:189.794552px;}
.h50{height:191.522006px;}
.h37{height:191.842228px;}
.ha{height:191.958673px;}
.h2c{height:192.773784px;}
.h40{height:205.198406px;}
.h15{height:212.802229px;}
.h41{height:213.748340px;}
.h53{height:217.739160px;}
.h3b{height:220.691340px;}
.h13{height:224.155562px;}
.h14{height:225.105167px;}
.h34{height:239.916212px;}
.h31{height:239.916812px;}
.h3a{height:248.885411px;}
.h51{height:249.424008px;}
.h35{height:264.907696px;}
.h12{height:297.078898px;}
.h3d{height:314.541490px;}
.h2a{height:317.718676px;}
.h32{height:334.116379px;}
.h9{height:336.107584px;}
.h3f{height:343.361581px;}
.h2{height:345.467024px;}
.h1{height:1572.000000px;}
.h0{height:1620.000000px;}
.w1e{width:28.780725px;}
.w1d{width:29.469045px;}
.w22{width:37.212735px;}
.w23{width:40.224180px;}
.w1a{width:42.435435px;}
.w20{width:69.349065px;}
.w15{width:85.967895px;}
.w1b{width:103.507350px;}
.w1c{width:103.593390px;}
.w17{width:122.222670px;}
.w6{width:127.543545px;}
.w2{width:129.447180px;}
.w19{width:149.050575px;}
.w21{width:153.268950px;}
.w7{width:166.506300px;}
.w3{width:168.991500px;}
.w10{width:172.065300px;}
.w13{width:176.447100px;}
.w27{width:192.367950px;}
.w16{width:201.998850px;}
.w11{width:213.073350px;}
.w26{width:215.875350px;}
.w25{width:237.721350px;}
.w1f{width:239.022000px;}
.wa{width:239.343000px;}
.w29{width:248.517000px;}
.w12{width:274.417050px;}
.wd{width:311.605050px;}
.w8{width:314.247000px;}
.w4{width:318.937200px;}
.wf{width:355.983750px;}
.w9{width:371.339400px;}
.we{width:372.387000px;}
.w5{width:376.881750px;}
.wc{width:484.390500px;}
.wb{width:544.870050px;}
.w24{width:628.960500px;}
.w14{width:781.032000px;}
.w2a{width:808.247700px;}
.w28{width:1100.045100px;}
.w18{width:1734.705000px;}
.w1{width:2794.666500px;}
.w0{width:2880.000000px;}
.x4a{left:-8.045100px;}
.x5b{left:-4.776000px;}
.x3e{left:-3.493500px;}
.x21{left:-1.506450px;}
.x0{left:0.000000px;}
.x40{left:1.057500px;}
.x39{left:34.578465px;}
.x11{left:40.162215px;}
.x1{left:42.666660px;}
.x1b{left:44.385975px;}
.x1d{left:54.121590px;}
.x35{left:55.553475px;}
.x41{left:59.295045px;}
.x1e{left:69.466800px;}
.x12{left:71.022930px;}
.x71{left:72.557310px;}
.x37{left:82.455765px;}
.x48{left:93.122235px;}
.x2{left:96.136035px;}
.x42{left:101.253540px;}
.x14{left:105.426495px;}
.x44{left:108.293790px;}
.x45{left:111.592890px;}
.x46{left:113.862390px;}
.x15{left:116.450490px;}
.x6a{left:127.492740px;}
.x69{left:131.787090px;}
.x4e{left:147.877590px;}
.x43{left:151.697275px;}
.x62{left:158.898840px;}
.x4f{left:197.664090px;}
.x63{left:233.192790px;}
.x6d{left:256.760790px;}
.x68{left:258.854640px;}
.x65{left:276.597900px;}
.x2e{left:278.241000px;}
.x2d{left:284.178450px;}
.x29{left:297.355650px;}
.x70{left:300.376950px;}
.x6c{left:302.145600px;}
.x2b{left:320.742900px;}
.x31{left:331.675350px;}
.x24{left:417.912900px;}
.x1f{left:422.476800px;}
.x64{left:451.960468px;}
.x28{left:470.007900px;}
.x53{left:535.870050px;}
.x32{left:598.932300px;}
.x49{left:609.145950px;}
.x67{left:612.962100px;}
.x3{left:615.112140px;}
.x13{left:692.677740px;}
.x4{left:758.453490px;}
.x25{left:790.198350px;}
.x20{left:800.318700px;}
.x8{left:833.965740px;}
.xb{left:859.063290px;}
.x66{left:907.816200px;}
.x9{left:925.515540px;}
.x2c{left:926.998800px;}
.x2f{left:980.923500px;}
.x6{left:986.846190px;}
.x6e{left:1069.755694px;}
.x7{left:1129.462440px;}
.x17{left:1155.017040px;}
.x5{left:1169.712090px;}
.x2a{left:1217.035500px;}
.xa{left:1223.774940px;}
.x26{left:1302.461100px;}
.x22{left:1320.227250px;}
.x6b{left:1362.213987px;}
.x51{left:1380.448890px;}
.x4b{left:1382.049990px;}
.x38{left:1389.333540px;}
.x36{left:1399.653240px;}
.x61{left:1402.997340px;}
.x52{left:1404.994290px;}
.x4c{left:1431.657750px;}
.xd{left:1435.828800px;}
.xf{left:1439.753640px;}
.x19{left:1478.984340px;}
.x10{left:1484.292840px;}
.x30{left:1492.088850px;}
.x1a{left:1529.766840px;}
.x16{left:1556.777340px;}
.x3b{left:1574.585340px;}
.x3a{left:1585.017840px;}
.x3c{left:1617.402840px;}
.x6f{left:1633.651500px;}
.x5a{left:1736.727000px;}
.x60{left:1754.185500px;}
.x4d{left:1850.921340px;}
.x50{left:1895.591340px;}
.x27{left:1970.583000px;}
.x23{left:1998.321000px;}
.x5c{left:2061.264000px;}
.x18{left:2082.173340px;}
.x56{left:2113.390500px;}
.x54{left:2168.490000px;}
.x5d{left:2212.128000px;}
.x34{left:2266.017840px;}
.x57{left:2272.867500px;}
.xe{left:2304.818340px;}
.x3f{left:2368.857000px;}
.x3d{left:2373.408000px;}
.x55{left:2388.568500px;}
.x47{left:2404.041840px;}
.x33{left:2405.777340px;}
.x58{left:2467.960500px;}
.x5e{left:2527.416000px;}
.xc{left:2553.065340px;}
.x59{left:2579.718000px;}
.x5f{left:2648.208000px;}
.x1c{left:2705.453340px;}
@media print{
.v16{vertical-align:-110.905269pt;}
.v1a{vertical-align:-70.329481pt;}
.va{vertical-align:-66.313261pt;}
.v6{vertical-align:-64.418660pt;}
.v8{vertical-align:-63.471549pt;}
.v12{vertical-align:-62.103761pt;}
.v18{vertical-align:-55.066583pt;}
.v9{vertical-align:-49.230365pt;}
.v5{vertical-align:-47.823628pt;}
.v19{vertical-align:-38.240073pt;}
.v2{vertical-align:-35.664088pt;}
.v1b{vertical-align:-29.420800pt;}
.v17{vertical-align:-19.730667pt;}
.vc{vertical-align:-17.680533pt;}
.v4{vertical-align:-15.794667pt;}
.v15{vertical-align:-12.796267pt;}
.v7{vertical-align:-11.286572pt;}
.v3{vertical-align:-10.350400pt;}
.vb{vertical-align:-9.197867pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:21.629721pt;}
.v1{vertical-align:35.664088pt;}
.vd{vertical-align:47.042382pt;}
.vf{vertical-align:83.732949pt;}
.ve{vertical-align:91.913716pt;}
.v14{vertical-align:95.349513pt;}
.v13{vertical-align:101.487661pt;}
.v11{vertical-align:175.646665pt;}
.ls44{letter-spacing:-45.309829pt;}
.ls2c{letter-spacing:-11.520237pt;}
.ls2b{letter-spacing:-10.433423pt;}
.ls34{letter-spacing:-9.237926pt;}
.lsa{letter-spacing:-9.067141pt;}
.ls20{letter-spacing:-8.798025pt;}
.ls3c{letter-spacing:-8.710045pt;}
.ls48{letter-spacing:-6.475605pt;}
.ls3{letter-spacing:-6.044761pt;}
.ls2f{letter-spacing:-5.175309pt;}
.ls41{letter-spacing:-5.071803pt;}
.ls30{letter-spacing:-4.968296pt;}
.ls12{letter-spacing:-4.926894pt;}
.ls2d{letter-spacing:-4.761284pt;}
.ls0{letter-spacing:-4.223052pt;}
.ls33{letter-spacing:-3.925333pt;}
.ls9{letter-spacing:-3.695170pt;}
.ls3d{letter-spacing:-3.548957pt;}
.ls14{letter-spacing:-3.363951pt;}
.ls15{letter-spacing:-2.587654pt;}
.ls45{letter-spacing:-2.250534pt;}
.ls21{letter-spacing:-2.225383pt;}
.lsb{letter-spacing:-2.173630pt;}
.ls2a{letter-spacing:-2.070124pt;}
.ls13{letter-spacing:-2.043212pt;}
.lsf{letter-spacing:-1.888988pt;}
.ls10{letter-spacing:-1.811358pt;}
.ls3f{letter-spacing:-1.762120pt;}
.ls11{letter-spacing:-1.759605pt;}
.lse{letter-spacing:-1.681975pt;}
.ls2e{letter-spacing:-1.635398pt;}
.ls8{letter-spacing:-1.608486pt;}
.ls1e{letter-spacing:-1.597879pt;}
.ls22{letter-spacing:-1.557768pt;}
.lsc{letter-spacing:-1.552593pt;}
.ls1c{letter-spacing:-1.530363pt;}
.ls1{letter-spacing:-1.511190pt;}
.ls1d{letter-spacing:-1.507858pt;}
.ls40{letter-spacing:-1.223694pt;}
.ls5{letter-spacing:-1.035062pt;}
.ls2{letter-spacing:-1.007460pt;}
.ls47{letter-spacing:-0.996247pt;}
.lsd{letter-spacing:-0.891188pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000020pt;}
.ls17{letter-spacing:0.000026pt;}
.ls16{letter-spacing:0.000032pt;}
.ls3b{letter-spacing:0.000039pt;}
.ls18{letter-spacing:0.000518pt;}
.ls31{letter-spacing:0.010667pt;}
.ls3e{letter-spacing:0.646914pt;}
.ls35{letter-spacing:1.449086pt;}
.ls46{letter-spacing:45.057515pt;}
.ls25{letter-spacing:55.203466pt;}
.ls1b{letter-spacing:55.481546pt;}
.ls1a{letter-spacing:55.482256pt;}
.ls26{letter-spacing:60.953493pt;}
.ls29{letter-spacing:60.953752pt;}
.ls3a{letter-spacing:66.667317pt;}
.ls39{letter-spacing:66.667850pt;}
.ls24{letter-spacing:69.003945pt;}
.ls1f{letter-spacing:70.457183pt;}
.ls28{letter-spacing:76.191931pt;}
.ls27{letter-spacing:76.192190pt;}
.ls43{letter-spacing:78.143403pt;}
.ls42{letter-spacing:78.143537pt;}
.ls32{letter-spacing:81.922367pt;}
.ls7{letter-spacing:83.561775pt;}
.ls23{letter-spacing:87.832598pt;}
.ls6{letter-spacing:93.696117pt;}
.ls38{letter-spacing:122.301983pt;}
.ls36{letter-spacing:123.227584pt;}
.ls37{letter-spacing:123.227687pt;}
.ws25{word-spacing:-69.944298pt;}
.ws20{word-spacing:-61.228043pt;}
.ws4{word-spacing:-58.253276pt;}
.ws23{word-spacing:-50.355755pt;}
.ws3{word-spacing:-47.667699pt;}
.ws7{word-spacing:-47.157414pt;}
.ws10{word-spacing:-45.967610pt;}
.ws6{word-spacing:-45.076940pt;}
.ws5{word-spacing:-41.609483pt;}
.ws21{word-spacing:-39.576621pt;}
.ws2e{word-spacing:-31.310618pt;}
.ws2b{word-spacing:-31.051853pt;}
.ws11{word-spacing:-30.645074pt;}
.wsd{word-spacing:-30.213453pt;}
.wsa{word-spacing:-28.918591pt;}
.ws1{word-spacing:-25.186507pt;}
.ws0{word-spacing:-24.179047pt;}
.ws29{word-spacing:-0.443620pt;}
.ws26{word-spacing:-0.314970pt;}
.ws37{word-spacing:-0.281317pt;}
.ws22{word-spacing:-0.257701pt;}
.ws18{word-spacing:-0.248415pt;}
.ws36{word-spacing:-0.232889pt;}
.ws2f{word-spacing:-0.220265pt;}
.ws34{word-spacing:-0.218802pt;}
.ws12{word-spacing:-0.199735pt;}
.wse{word-spacing:-0.196922pt;}
.ws9{word-spacing:-0.191295pt;}
.wsc{word-spacing:-0.188482pt;}
.ws17{word-spacing:-0.188170pt;}
.ws2c{word-spacing:-0.186311pt;}
.ws24{word-spacing:-0.181136pt;}
.ws1a{word-spacing:-0.176375pt;}
.ws35{word-spacing:-0.155349pt;}
.ws31{word-spacing:-0.152962pt;}
.ws13{word-spacing:-0.141812pt;}
.wsf{word-spacing:-0.139814pt;}
.ws8{word-spacing:-0.135820pt;}
.wsb{word-spacing:-0.133822pt;}
.ws2d{word-spacing:-0.129383pt;}
.ws30{word-spacing:-0.108603pt;}
.ws2{word-spacing:0.000000pt;}
.ws1d{word-spacing:10.185008pt;}
.ws1e{word-spacing:11.245946pt;}
.ws15{word-spacing:44.185474pt;}
.ws16{word-spacing:44.185982pt;}
.ws14{word-spacing:47.381637pt;}
.ws1b{word-spacing:54.954534pt;}
.ws19{word-spacing:54.954689pt;}
.ws1c{word-spacing:54.955052pt;}
.ws1f{word-spacing:60.679461pt;}
.ws39{word-spacing:62.233444pt;}
.ws38{word-spacing:66.734480pt;}
.ws2a{word-spacing:98.137542pt;}
.ws28{word-spacing:98.138575pt;}
.ws27{word-spacing:105.236546pt;}
.ws32{word-spacing:110.009694pt;}
.ws33{word-spacing:2359.442138pt;}
._26{margin-left:-60.953752pt;}
._2b{margin-left:-20.106075pt;}
._3f{margin-left:-16.965180pt;}
._43{margin-left:-15.641077pt;}
._42{margin-left:-13.847833pt;}
._2a{margin-left:-11.923911pt;}
._41{margin-left:-9.645629pt;}
._b{margin-left:-8.613046pt;}
._29{margin-left:-7.489707pt;}
._5{margin-left:-6.346999pt;}
._9{margin-left:-5.440285pt;}
._1{margin-left:-4.533571pt;}
._6{margin-left:-3.626856pt;}
._0{margin-left:-2.720142pt;}
._2{margin-left:-1.813428pt;}
._7{margin-left:-0.906714pt;}
._a{width:0.906714pt;}
._22{width:1.813428pt;}
._4{width:2.719405pt;}
._8{width:3.626856pt;}
._3{width:4.533718pt;}
._40{width:5.479358pt;}
._2c{width:8.868409pt;}
._24{width:10.433423pt;}
._25{width:11.520237pt;}
._35{width:12.448170pt;}
._3d{width:15.628767pt;}
._38{width:16.635244pt;}
._3e{width:19.092338pt;}
._3a{width:27.273877pt;}
._39{width:36.511804pt;}
._3b{width:38.271409pt;}
._23{width:69.004462pt;}
._c{width:98.872103pt;}
._30{width:110.295664pt;}
._34{width:152.972295pt;}
._2e{width:159.031547pt;}
._32{width:263.792735pt;}
._20{width:322.295461pt;}
._2f{width:375.868187pt;}
._11{width:463.289504pt;}
._d{width:470.204234pt;}
._28{width:473.102407pt;}
._2d{width:541.883296pt;}
._33{width:553.302614pt;}
._12{width:600.880781pt;}
._e{width:609.849591pt;}
._1b{width:624.171741pt;}
._1e{width:636.754728pt;}
._37{width:697.540541pt;}
._21{width:719.521630pt;}
._1c{width:769.977527pt;}
._36{width:856.248113pt;}
._15{width:862.682833pt;}
._31{width:867.338800pt;}
._3c{width:897.522753pt;}
._1d{width:985.092342pt;}
._18{width:1118.965936pt;}
._13{width:1124.295469pt;}
._f{width:1141.078996pt;}
._1a{width:1271.911579pt;}
._14{width:1327.291523pt;}
._19{width:1334.080493pt;}
._10{width:1347.099759pt;}
._17{width:1732.516908pt;}
._27{width:1794.962323pt;}
._16{width:1945.294554pt;}
._1f{width:2787.389233pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:89.118818pt;}
.fs23{font-size:93.155558pt;}
.fs43{font-size:99.624694pt;}
.fs2{font-size:100.746029pt;}
.fs3{font-size:103.506176pt;}
.fs18{font-size:104.023707pt;}
.fs3c{font-size:108.602872pt;}
.fs1c{font-size:108.681485pt;}
.fs20{font-size:110.234077pt;}
.fs38{font-size:129.382720pt;}
.fs29{font-size:133.600441pt;}
.fs1a{font-size:133.822359pt;}
.fs16{font-size:135.819717pt;}
.fs1e{font-size:139.814435pt;}
.fs22{font-size:141.811742pt;}
.fs13{font-size:144.908646pt;}
.fs42{font-size:149.437042pt;}
.fs1{font-size:151.119017pt;}
.fs3b{font-size:152.961789pt;}
.fs9{font-size:155.259264pt;}
.fs3e{font-size:155.349366pt;}
.fs27{font-size:155.776795pt;}
.fs17{font-size:156.035560pt;}
.fs3a{font-size:156.388154pt;}
.fs14{font-size:158.364449pt;}
.fs5{font-size:160.848598pt;}
.fs1b{font-size:163.022227pt;}
.fs2f{font-size:163.539758pt;}
.fs1f{font-size:165.351116pt;}
.fsb{font-size:168.197536pt;}
.fse{font-size:175.960499pt;}
.fs2b{font-size:176.374524pt;}
.fsd{font-size:181.135808pt;}
.fs31{font-size:182.967971pt;}
.fs6{font-size:184.758524pt;}
.fs36{font-size:186.311117pt;}
.fs28{font-size:188.169622pt;}
.fs19{font-size:188.482211pt;}
.fsc{font-size:188.898771pt;}
.fs15{font-size:191.295353pt;}
.fs37{font-size:194.074080pt;}
.fs2e{font-size:194.746870pt;}
.fs1d{font-size:196.921690pt;}
.fs21{font-size:199.734885pt;}
.fsf{font-size:204.321191pt;}
.fs2c{font-size:207.012352pt;}
.fs8{font-size:217.362970pt;}
.fs3d{font-size:218.801912pt;}
.fs39{font-size:220.265024pt;}
.fs25{font-size:222.538278pt;}
.fs3f{font-size:232.888896pt;}
.fs26{font-size:233.665192pt;}
.fs2a{font-size:248.414822pt;}
.fs30{font-size:257.701345pt;}
.fs11{font-size:258.765440pt;}
.fs32{font-size:271.703712pt;}
.fs2d{font-size:274.291366pt;}
.fs12{font-size:277.137786pt;}
.fs41{font-size:281.316745pt;}
.fs40{font-size:310.518528pt;}
.fs35{font-size:314.969915pt;}
.fs10{font-size:336.395072pt;}
.fs0{font-size:414.024704pt;}
.fs33{font-size:435.502236pt;}
.fs24{font-size:439.901248pt;}
.fs34{font-size:443.619614pt;}
.fs7{font-size:453.357051pt;}
.ya6{bottom:-15.262320pt;}
.yae{bottom:-0.000122pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:0.000041pt;}
.yb2{bottom:0.535345pt;}
.yc0{bottom:0.765901pt;}
.y7f{bottom:0.901970pt;}
.yb0{bottom:5.391878pt;}
.yac{bottom:9.560011pt;}
.yb4{bottom:9.560145pt;}
.y70{bottom:11.760633pt;}
.y3b{bottom:11.780095pt;}
.y32{bottom:11.955904pt;}
.y3d{bottom:12.248495pt;}
.y46{bottom:12.307630pt;}
.y34{bottom:12.431371pt;}
.y4e{bottom:12.483440pt;}
.y4a{bottom:12.979706pt;}
.y57{bottom:12.979773pt;}
.y53{bottom:12.979840pt;}
.ybe{bottom:13.675101pt;}
.yc2{bottom:13.675234pt;}
.ya8{bottom:13.766574pt;}
.ybc{bottom:14.218834pt;}
.y3f{bottom:15.867828pt;}
.y36{bottom:16.104704pt;}
.y44{bottom:16.578297pt;}
.yd{bottom:17.733067pt;}
.ycd{bottom:18.281384pt;}
.y96{bottom:28.828708pt;}
.y80{bottom:34.766173pt;}
.y60{bottom:36.664507pt;}
.yc{bottom:39.815573pt;}
.y1{bottom:42.666667pt;}
.y93{bottom:46.571933pt;}
.yee{bottom:47.786760pt;}
.y2d{bottom:48.233907pt;}
.y7d{bottom:61.115960pt;}
.y55{bottom:74.151307pt;}
.y92{bottom:74.420880pt;}
.y18{bottom:81.336507pt;}
.ya5{bottom:83.068547pt;}
.y5e{bottom:85.736200pt;}
.yed{bottom:88.632240pt;}
.y56{bottom:103.838200pt;}
.y7c{bottom:121.201333pt;}
.yec{bottom:129.477733pt;}
.y54{bottom:136.249733pt;}
.ya4{bottom:137.166667pt;}
.y7e{bottom:162.966000pt;}
.y24{bottom:163.557733pt;}
.yb{bottom:169.479467pt;}
.yeb{bottom:170.323200pt;}
.ya3{bottom:183.167867pt;}
.y23{bottom:205.206533pt;}
.yea{bottom:211.168667pt;}
.y9d{bottom:213.739067pt;}
.yb5{bottom:216.274400pt;}
.ya{bottom:221.232533pt;}
.y77{bottom:224.555079pt;}
.y50{bottom:238.157733pt;}
.ya2{bottom:244.016267pt;}
.y5d{bottom:246.491467pt;}
.y22{bottom:246.855333pt;}
.ye9{bottom:252.014133pt;}
.y9c{bottom:267.837200pt;}
.y52{bottom:267.844667pt;}
.y51{bottom:268.341067pt;}
.y9{bottom:272.985600pt;}
.y7a{bottom:287.939067pt;}
.ye8{bottom:292.859600pt;}
.y8d{bottom:296.055467pt;}
.y4f{bottom:300.256267pt;}
.y9b{bottom:312.069867pt;}
.ycf{bottom:315.296267pt;}
.y8{bottom:324.738667pt;}
.y76{bottom:325.603261pt;}
.ye7{bottom:333.705067pt;}
.yd1{bottom:339.681600pt;}
.y8c{bottom:347.123467pt;}
.yca{bottom:351.493067pt;}
.y9a{bottom:361.235333pt;}
.y2b{bottom:368.193067pt;}
.ye6{bottom:374.550533pt;}
.y7{bottom:376.491733pt;}
.yba{bottom:377.343067pt;}
.ya1{bottom:381.614800pt;}
.yce{bottom:383.879867pt;}
.y4c{bottom:389.016933pt;}
.y21{bottom:392.746800pt;}
.yc1{bottom:406.334533pt;}
.yd0{bottom:408.265200pt;}
.yb3{bottom:410.834533pt;}
.yaf{bottom:415.002800pt;}
.y99{bottom:415.333467pt;}
.ye5{bottom:415.396000pt;}
.y5c{bottom:416.225200pt;}
.y4d{bottom:419.200267pt;}
.ybf{bottom:419.243867pt;}
.yb1{bottom:419.859333pt;}
.y2a{bottom:427.776400pt;}
.y6{bottom:428.244933pt;}
.yb9{bottom:431.989200pt;}
.ya0{bottom:433.562800pt;}
.y20{bottom:434.395600pt;}
.y8e{bottom:440.620000pt;}
.y79{bottom:445.678000pt;}
.y8b{bottom:450.015733pt;}
.y4b{bottom:451.115467pt;}
.ye4{bottom:456.241600pt;}
.ybd{bottom:460.980800pt;}
.yab{bottom:462.782667pt;}
.yad{bottom:472.342800pt;}
.y29{bottom:483.410933pt;}
.yb8{bottom:486.635467pt;}
.ye3{bottom:497.087067pt;}
.y8a{bottom:497.884800pt;}
.y78{bottom:498.569733pt;}
.ybb{bottom:515.083200pt;}
.y5{bottom:531.751067pt;}
.y98{bottom:533.844800pt;}
.y28{bottom:535.096800pt;}
.ye2{bottom:537.932533pt;}
.y9f{bottom:545.990267pt;}
.y65{bottom:546.446800pt;}
.y89{bottom:548.952800pt;}
.y48{bottom:565.476933pt;}
.yc9{bottom:575.386000pt;}
.ye1{bottom:578.778000pt;}
.y4{bottom:583.504133pt;}
.ycb{bottom:585.078933pt;}
.y1f{bottom:591.188667pt;}
.y5b{bottom:591.403467pt;}
.y49{bottom:595.163867pt;}
.y97{bottom:596.771467pt;}
.y26{bottom:600.397333pt;}
.ycc{bottom:609.464267pt;}
.y9e{bottom:610.143467pt;}
.ye0{bottom:619.623467pt;}
.y47{bottom:627.575333pt;}
.y1e{bottom:633.879733pt;}
.ya7{bottom:639.043600pt;}
.y88{bottom:651.845067pt;}
.ya9{bottom:652.810133pt;}
.y64{bottom:656.538533pt;}
.ydf{bottom:660.468933pt;}
.y14{bottom:673.589067pt;}
.y87{bottom:699.714000pt;}
.yde{bottom:701.314400pt;}
.y3{bottom:710.118800pt;}
.y6e{bottom:717.380933pt;}
.y42{bottom:720.533333pt;}
.y13{bottom:731.811333pt;}
.y63{bottom:735.883333pt;}
.ydd{bottom:742.159867pt;}
.y5a{bottom:742.919733pt;}
.y43{bottom:746.621733pt;}
.y86{bottom:747.583067pt;}
.y45{bottom:750.892400pt;}
.y1d{bottom:757.718000pt;}
.y6d{bottom:757.963067pt;}
.y41{bottom:781.224133pt;}
.ydc{bottom:783.005333pt;}
.y12{bottom:784.858267pt;}
.y71{bottom:786.569600pt;}
.yc7{bottom:798.167867pt;}
.y85{bottom:798.651067pt;}
.y1c{bottom:803.525200pt;}
.y2{bottom:809.484667pt;}
.ydb{bottom:823.850800pt;}
.yc8{bottom:823.960000pt;}
.y6c{bottom:831.566933pt;}
.y11{bottom:840.492800pt;}
.y62{bottom:845.975067pt;}
.yc6{bottom:850.975467pt;}
.yda{bottom:864.696267pt;}
.y39{bottom:887.544400pt;}
.y6b{bottom:895.457867pt;}
.y10{bottom:898.715067pt;}
.y84{bottom:901.543333pt;}
.y91{bottom:903.141600pt;}
.yd9{bottom:905.541733pt;}
.y1b{bottom:909.484800pt;}
.y61{bottom:909.489067pt;}
.y40{bottom:917.962667pt;}
.y59{bottom:929.303200pt;}
.y38{bottom:933.534533pt;}
.yd8{bottom:946.387200pt;}
.y27{bottom:948.124000pt;}
.y83{bottom:949.384533pt;}
.y1a{bottom:950.087600pt;}
.yf{bottom:951.762000pt;}
.y90{bottom:953.344000pt;}
.y6a{bottom:954.928667pt;}
.ye{bottom:956.559333pt;}
.y3e{bottom:960.333333pt;}
.yb7{bottom:962.613467pt;}
.y3c{bottom:963.952667pt;}
.y3a{bottom:964.421067pt;}
.y74{bottom:981.400824pt;}
.yd7{bottom:987.232800pt;}
.y19{bottom:990.690533pt;}
.y37{bottom:991.943067pt;}
.y69{bottom:995.510800pt;}
.y82{bottom:999.614800pt;}
.y73{bottom:1002.334061pt;}
.yb6{bottom:1004.667733pt;}
.yc4{bottom:1012.174800pt;}
.y6f{bottom:1024.117467pt;}
.yd6{bottom:1028.078267pt;}
.y81{bottom:1050.682800pt;}
.yc5{bottom:1055.579067pt;}
.y75{bottom:1058.200400pt;}
.y68{bottom:1059.246933pt;}
.yd5{bottom:1068.923733pt;}
.y25{bottom:1070.799867pt;}
.y17{bottom:1083.599600pt;}
.yc3{bottom:1089.453467pt;}
.y30{bottom:1100.989467pt;}
.y58{bottom:1108.893200pt;}
.yd4{bottom:1109.769200pt;}
.y35{bottom:1127.551467pt;}
.y33{bottom:1131.224800pt;}
.y31{bottom:1131.700267pt;}
.y16{bottom:1133.599200pt;}
.yd3{bottom:1150.614667pt;}
.y2f{bottom:1159.835333pt;}
.y7b{bottom:1160.052533pt;}
.yd2{bottom:1191.460133pt;}
.y67{bottom:1191.798800pt;}
.y15{bottom:1229.505733pt;}
.y2e{bottom:1244.164133pt;}
.y72{bottom:1251.609067pt;}
.y66{bottom:1253.423067pt;}
.y94{bottom:1253.630400pt;}
.y95{bottom:1267.468400pt;}
.y8f{bottom:1309.804000pt;}
.y2c{bottom:1326.673333pt;}
.y5f{bottom:1341.332000pt;}
.h48{height:25.315173pt;}
.h4b{height:26.385907pt;}
.h4a{height:26.691840pt;}
.h49{height:31.242453pt;}
.h46{height:35.410653pt;}
.h45{height:36.453853pt;}
.h4f{height:37.743320pt;}
.h5{height:38.255208pt;}
.h2f{height:43.137893pt;}
.h1d{height:43.633627pt;}
.h1f{height:44.102013pt;}
.h18{height:44.284880pt;}
.h1a{height:44.760253pt;}
.h24{height:45.587373pt;}
.h28{height:46.238627pt;}
.h26{height:46.734960pt;}
.h20{height:47.721333pt;}
.h1b{height:48.433600pt;}
.h22{height:49.858120pt;}
.h4e{height:50.652640pt;}
.h43{height:50.991347pt;}
.h4c{height:51.196360pt;}
.h39{height:56.209813pt;}
.h52{height:65.823893pt;}
.h29{height:66.326758pt;}
.hc{height:68.621490pt;}
.h3c{height:75.145484pt;}
.h4{height:79.699756pt;}
.h16{height:92.741534pt;}
.h3e{height:103.800333pt;}
.h36{height:104.992525pt;}
.h47{height:105.237711pt;}
.h55{height:107.893544pt;}
.h1c{height:114.061995pt;}
.h17{height:115.764412pt;}
.h3{height:116.059405pt;}
.h21{height:119.169248pt;}
.hb{height:119.549633pt;}
.h2e{height:119.948132pt;}
.h25{height:120.871666pt;}
.h6{height:123.853420pt;}
.h30{height:125.323735pt;}
.h42{height:126.665683pt;}
.hd{height:129.512103pt;}
.h1e{height:129.675761pt;}
.h19{height:131.611203pt;}
.h33{height:132.901930pt;}
.h8{height:133.395654pt;}
.h23{height:135.482123pt;}
.h10{height:135.489584pt;}
.h27{height:137.417601pt;}
.hf{height:139.474572pt;}
.h2b{height:142.191609pt;}
.h7{height:142.264064pt;}
.he{height:145.452054pt;}
.h4d{height:150.535716pt;}
.h44{height:151.542337pt;}
.h11{height:157.327317pt;}
.h38{height:163.705368pt;}
.h54{height:168.145783pt;}
.h2d{height:168.706269pt;}
.h50{height:170.241783pt;}
.h37{height:170.526425pt;}
.ha{height:170.629931pt;}
.h2c{height:171.354474pt;}
.h40{height:182.398583pt;}
.h15{height:189.157537pt;}
.h41{height:189.998524pt;}
.h53{height:193.545920pt;}
.h3b{height:196.170080pt;}
.h13{height:199.249389pt;}
.h14{height:200.093482pt;}
.h34{height:213.258855pt;}
.h31{height:213.259388pt;}
.h3a{height:221.231477pt;}
.h51{height:221.710229pt;}
.h35{height:235.473508pt;}
.h12{height:264.070132pt;}
.h3d{height:279.592435pt;}
.h2a{height:282.416601pt;}
.h32{height:296.992337pt;}
.h9{height:298.762297pt;}
.h3f{height:305.210294pt;}
.h2{height:307.081799pt;}
.h1{height:1397.333333pt;}
.h0{height:1440.000000pt;}
.w1e{width:25.582867pt;}
.w1d{width:26.194707pt;}
.w22{width:33.077987pt;}
.w23{width:35.754827pt;}
.w1a{width:37.720387pt;}
.w20{width:61.643613pt;}
.w15{width:76.415907pt;}
.w1b{width:92.006533pt;}
.w1c{width:92.083013pt;}
.w17{width:108.642373pt;}
.w6{width:113.372040pt;}
.w2{width:115.064160pt;}
.w19{width:132.489400pt;}
.w21{width:136.239067pt;}
.w7{width:148.005600pt;}
.w3{width:150.214667pt;}
.w10{width:152.946933pt;}
.w13{width:156.841867pt;}
.w27{width:170.993733pt;}
.w16{width:179.554533pt;}
.w11{width:189.398533pt;}
.w26{width:191.889200pt;}
.w25{width:211.307867pt;}
.w1f{width:212.464000pt;}
.wa{width:212.749333pt;}
.w29{width:220.904000pt;}
.w12{width:243.926267pt;}
.wd{width:276.982267pt;}
.w8{width:279.330667pt;}
.w4{width:283.499733pt;}
.wf{width:316.430000pt;}
.w9{width:330.079467pt;}
.we{width:331.010667pt;}
.w5{width:335.006000pt;}
.wc{width:430.569333pt;}
.wb{width:484.328933pt;}
.w24{width:559.076000pt;}
.w14{width:694.250667pt;}
.w2a{width:718.442400pt;}
.w28{width:977.817867pt;}
.w18{width:1541.960000pt;}
.w1{width:2484.148000pt;}
.w0{width:2560.000000pt;}
.x4a{left:-7.151200pt;}
.x5b{left:-4.245333pt;}
.x3e{left:-3.105333pt;}
.x21{left:-1.339067pt;}
.x0{left:0.000000pt;}
.x40{left:0.940000pt;}
.x39{left:30.736413pt;}
.x11{left:35.699747pt;}
.x1{left:37.925920pt;}
.x1b{left:39.454200pt;}
.x1d{left:48.108080pt;}
.x35{left:49.380867pt;}
.x41{left:52.706707pt;}
.x1e{left:61.748267pt;}
.x12{left:63.131493pt;}
.x71{left:64.495387pt;}
.x37{left:73.294013pt;}
.x48{left:82.775320pt;}
.x2{left:85.454253pt;}
.x42{left:90.003147pt;}
.x14{left:93.712440pt;}
.x44{left:96.261147pt;}
.x45{left:99.193680pt;}
.x46{left:101.211013pt;}
.x15{left:103.511547pt;}
.x6a{left:113.326880pt;}
.x69{left:117.144080pt;}
.x4e{left:131.446747pt;}
.x43{left:134.842022pt;}
.x62{left:141.243413pt;}
.x4f{left:175.701413pt;}
.x63{left:207.282480pt;}
.x6d{left:228.231813pt;}
.x68{left:230.093013pt;}
.x65{left:245.864800pt;}
.x2e{left:247.325333pt;}
.x2d{left:252.603067pt;}
.x29{left:264.316133pt;}
.x70{left:267.001733pt;}
.x6c{left:268.573867pt;}
.x2b{left:285.104800pt;}
.x31{left:294.822533pt;}
.x24{left:371.478133pt;}
.x1f{left:375.534933pt;}
.x64{left:401.742638pt;}
.x28{left:417.784800pt;}
.x53{left:476.328933pt;}
.x32{left:532.384267pt;}
.x49{left:541.463067pt;}
.x67{left:544.855200pt;}
.x3{left:546.766347pt;}
.x13{left:615.713547pt;}
.x4{left:674.180880pt;}
.x25{left:702.398533pt;}
.x20{left:711.394400pt;}
.x8{left:741.302880pt;}
.xb{left:763.611813pt;}
.x66{left:806.947733pt;}
.x9{left:822.680480pt;}
.x2c{left:823.998933pt;}
.x2f{left:871.932000pt;}
.x6{left:877.196613pt;}
.x6e{left:950.893950pt;}
.x7{left:1003.966613pt;}
.x17{left:1026.681813pt;}
.x5{left:1039.744080pt;}
.x2a{left:1081.809333pt;}
.xa{left:1087.799947pt;}
.x26{left:1157.743200pt;}
.x22{left:1173.535333pt;}
.x6b{left:1210.856877pt;}
.x51{left:1227.065680pt;}
.x4b{left:1228.488880pt;}
.x38{left:1234.963147pt;}
.x36{left:1244.136213pt;}
.x61{left:1247.108747pt;}
.x52{left:1248.883813pt;}
.x4c{left:1272.584667pt;}
.xd{left:1276.292267pt;}
.xf{left:1279.781013pt;}
.x19{left:1314.652747pt;}
.x10{left:1319.371413pt;}
.x30{left:1326.301200pt;}
.x1a{left:1359.792747pt;}
.x16{left:1383.802080pt;}
.x3b{left:1399.631413pt;}
.x3a{left:1408.904747pt;}
.x3c{left:1437.691413pt;}
.x6f{left:1452.134667pt;}
.x5a{left:1543.757333pt;}
.x60{left:1559.276000pt;}
.x4d{left:1645.263413pt;}
.x50{left:1684.970080pt;}
.x27{left:1751.629333pt;}
.x23{left:1776.285333pt;}
.x5c{left:1832.234667pt;}
.x18{left:1850.820747pt;}
.x56{left:1878.569333pt;}
.x54{left:1927.546667pt;}
.x5d{left:1966.336000pt;}
.x34{left:2014.238080pt;}
.x57{left:2020.326667pt;}
.xe{left:2048.727413pt;}
.x3f{left:2105.650667pt;}
.x3d{left:2109.696000pt;}
.x55{left:2123.172000pt;}
.x47{left:2136.926080pt;}
.x33{left:2138.468747pt;}
.x58{left:2193.742667pt;}
.x5e{left:2246.592000pt;}
.xc{left:2269.391413pt;}
.x59{left:2293.082667pt;}
.x5f{left:2353.962667pt;}
.x1c{left:2404.847413pt;}
}




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