
    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_29207dd08fe6cd03cc71ea8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_664e5edb732f0c3fe7837799.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.826172;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_7ddabea517088374d0793521.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_8d703ebdbaa39cdb8d63eb28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.858398;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_96afd1aa74e7060b2ed3feea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_68c69708bee479503047680c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_2e9d970d492fedad689ad30e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d53ec4d9638f3322e02fd5e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.166000;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_9fe2680df65e51bf0902e689.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.166000;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_e60ac5fe6a90343e35f398a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_87ce005a2606d51a8e92946d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_b05143f3e2a7ae96be7f6ba7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;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_fbd01801964bd61bf94aeb32.woff2')format("woff");}.fff{font-family:fff;line-height:0.982422;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_ca9c06a5687224c87a835f80.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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_aaa8777b22b5ba2825404d64.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_a38547937e7519f0d04ac106.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.091797;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_ec9864080c5aa0534b6aa023.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.091309;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_0f93fc92af238f8dff051047.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.091797;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_2a2f52d30a68ccd827f1b163.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.982422;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_97e05fc1575d2895ea6db8c5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.030273;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_1b4b36f8cff7fda5bf7cdbcb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.731445;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_e87fb94751bb81212735b383.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.895996;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_ccf0325c379ed390d34d8db5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.001000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:40.500001px;}
.v1{vertical-align:62.999998px;}
.v3{vertical-align:64.800000px;}
.v4{vertical-align:88.260000px;}
.ls48{letter-spacing:-0.762000px;}
.ls64{letter-spacing:-0.504000px;}
.ls55{letter-spacing:-0.442200px;}
.ls34{letter-spacing:-0.396000px;}
.ls38{letter-spacing:-0.362400px;}
.ls9{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.334200px;}
.ls16{letter-spacing:-0.324600px;}
.ls5f{letter-spacing:-0.318000px;}
.ls6d{letter-spacing:-0.314400px;}
.ls66{letter-spacing:-0.306000px;}
.ls8{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.270600px;}
.ls6f{letter-spacing:-0.270000px;}
.ls37{letter-spacing:-0.256200px;}
.ls50{letter-spacing:-0.229800px;}
.ls5d{letter-spacing:-0.229200px;}
.ls17{letter-spacing:-0.223800px;}
.ls23{letter-spacing:-0.219000px;}
.ls42{letter-spacing:-0.214800px;}
.ls33{letter-spacing:-0.197400px;}
.ls4e{letter-spacing:-0.172800px;}
.ls70{letter-spacing:-0.166200px;}
.ls35{letter-spacing:-0.157200px;}
.ls53{letter-spacing:-0.148200px;}
.ls4{letter-spacing:-0.144000px;}
.ls4b{letter-spacing:-0.133800px;}
.ls1e{letter-spacing:-0.126600px;}
.ls15{letter-spacing:-0.116400px;}
.ls5e{letter-spacing:-0.098400px;}
.lsf{letter-spacing:-0.090000px;}
.ls3f{letter-spacing:-0.079200px;}
.ls11{letter-spacing:-0.068400px;}
.ls12{letter-spacing:-0.065400px;}
.ls41{letter-spacing:-0.062400px;}
.ls3c{letter-spacing:-0.040320px;}
.ls1{letter-spacing:-0.036000px;}
.ls65{letter-spacing:-0.030960px;}
.ls46{letter-spacing:-0.018720px;}
.ls3d{letter-spacing:-0.012960px;}
.ls2d{letter-spacing:-0.006480px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.004320px;}
.ls67{letter-spacing:0.008640px;}
.ls43{letter-spacing:0.014100px;}
.ls1f{letter-spacing:0.018000px;}
.ls54{letter-spacing:0.032820px;}
.ls20{letter-spacing:0.051840px;}
.ls1c{letter-spacing:0.057600px;}
.ls2a{letter-spacing:0.060600px;}
.ls44{letter-spacing:0.069000px;}
.ls31{letter-spacing:0.085200px;}
.ls6c{letter-spacing:0.090000px;}
.ls51{letter-spacing:0.099600px;}
.lse{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.109200px;}
.ls3a{letter-spacing:0.112200px;}
.ls45{letter-spacing:0.116400px;}
.ls39{letter-spacing:0.119400px;}
.ls40{letter-spacing:0.132600px;}
.ls3b{letter-spacing:0.135600px;}
.ls1a{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.155400px;}
.ls52{letter-spacing:0.169800px;}
.ls26{letter-spacing:0.186600px;}
.ls2b{letter-spacing:0.236400px;}
.ls2c{letter-spacing:0.238200px;}
.ls3e{letter-spacing:0.244800px;}
.ls2{letter-spacing:0.256200px;}
.ls47{letter-spacing:0.261600px;}
.ls6e{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.276600px;}
.lsa{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.295200px;}
.ls56{letter-spacing:0.306000px;}
.ls32{letter-spacing:0.309600px;}
.ls4c{letter-spacing:0.312000px;}
.ls13{letter-spacing:0.320400px;}
.ls30{letter-spacing:0.324000px;}
.ls4d{letter-spacing:0.328200px;}
.ls22{letter-spacing:0.334200px;}
.ls10{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.371400px;}
.ls61{letter-spacing:13.439520px;}
.ls5b{letter-spacing:14.891040px;}
.ls29{letter-spacing:22.464288px;}
.ls62{letter-spacing:35.856000px;}
.ls63{letter-spacing:41.184000px;}
.ls5c{letter-spacing:51.285888px;}
.ls5a{letter-spacing:51.351840px;}
.ls4f{letter-spacing:62.938080px;}
.ls7{letter-spacing:69.840000px;}
.ls5{letter-spacing:85.830048px;}
.ls6{letter-spacing:85.896000px;}
.ls3{letter-spacing:86.040000px;}
.ls18{letter-spacing:88.612128px;}
.ls19{letter-spacing:88.678080px;}
.lsc{letter-spacing:91.435968px;}
.lsb{letter-spacing:91.501920px;}
.ls69{letter-spacing:94.074048px;}
.ls68{letter-spacing:94.140000px;}
.lsd{letter-spacing:96.958080px;}
.ls2f{letter-spacing:99.525600px;}
.ls2e{letter-spacing:99.576000px;}
.ls4a{letter-spacing:103.809600px;}
.ls49{letter-spacing:103.860000px;}
.ls72{letter-spacing:107.986262px;}
.ls71{letter-spacing:108.000426px;}
.ls28{letter-spacing:112.614048px;}
.ls27{letter-spacing:112.680000px;}
.ls59{letter-spacing:118.075968px;}
.ls58{letter-spacing:118.141920px;}
.ls60{letter-spacing:120.780000px;}
.ls6b{letter-spacing:130.569600px;}
.ls6a{letter-spacing:130.620000px;}
.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;}
}
.ws89{word-spacing:-54.720000px;}
.ws1a{word-spacing:-29.088000px;}
.ws4{word-spacing:-28.800000px;}
.ws3d{word-spacing:-27.174240px;}
.ws3c{word-spacing:-27.167760px;}
.ws7a{word-spacing:-25.200000px;}
.ws79{word-spacing:-25.110000px;}
.ws9a{word-spacing:-24.814801px;}
.ws1{word-spacing:-24.408001px;}
.ws9{word-spacing:-23.418720px;}
.ws51{word-spacing:-23.415840px;}
.ws50{word-spacing:-23.225640px;}
.ws4f{word-spacing:-23.191440px;}
.ws63{word-spacing:-23.138784px;}
.ws80{word-spacing:-23.110560px;}
.ws45{word-spacing:-23.106240px;}
.ws42{word-spacing:-22.949040px;}
.ws99{word-spacing:-21.696001px;}
.ws35{word-spacing:-21.641760px;}
.ws38{word-spacing:-21.576360px;}
.ws85{word-spacing:-20.340000px;}
.ws82{word-spacing:-19.070784px;}
.ws8{word-spacing:-19.038240px;}
.ws94{word-spacing:-18.270000px;}
.ws25{word-spacing:-17.948280px;}
.ws2f{word-spacing:-17.665920px;}
.ws26{word-spacing:-17.614080px;}
.ws2a{word-spacing:-17.395080px;}
.ws87{word-spacing:-15.102720px;}
.ws57{word-spacing:-15.039240px;}
.ws58{word-spacing:-14.970240px;}
.ws6b{word-spacing:-14.319360px;}
.ws6a{word-spacing:-14.146560px;}
.wsc{word-spacing:-13.538304px;}
.ws33{word-spacing:-13.505760px;}
.ws7c{word-spacing:-12.672000px;}
.ws76{word-spacing:-2.696976px;}
.ws48{word-spacing:-2.495520px;}
.ws30{word-spacing:-2.315520px;}
.ws5a{word-spacing:-2.264640px;}
.ws97{word-spacing:-2.160000px;}
.ws4d{word-spacing:-2.145600px;}
.ws21{word-spacing:-2.135520px;}
.ws2e{word-spacing:-2.125440px;}
.ws54{word-spacing:-2.089728px;}
.ws59{word-spacing:-1.959840px;}
.ws43{word-spacing:-1.929600px;}
.ws4c{word-spacing:-1.859040px;}
.ws2{word-spacing:-1.797600px;}
.ws55{word-spacing:-1.794240px;}
.ws69{word-spacing:-1.779360px;}
.ws61{word-spacing:-1.726560px;}
.ws29{word-spacing:-1.722600px;}
.ws7e{word-spacing:-1.660320px;}
.ws5e{word-spacing:-1.628160px;}
.ws6e{word-spacing:-1.616928px;}
.ws53{word-spacing:-1.615248px;}
.ws6{word-spacing:-1.584000px;}
.ws77{word-spacing:-1.480416px;}
.ws5b{word-spacing:-1.454400px;}
.wsf{word-spacing:-1.440000px;}
.ws67{word-spacing:-1.370400px;}
.ws31{word-spacing:-1.356120px;}
.ws95{word-spacing:-1.286784px;}
.ws72{word-spacing:-1.227672px;}
.ws6f{word-spacing:-1.222992px;}
.ws5f{word-spacing:-1.222656px;}
.ws23{word-spacing:-1.180800px;}
.ws96{word-spacing:-1.170000px;}
.ws27{word-spacing:-1.157760px;}
.ws32{word-spacing:-1.145880px;}
.ws4b{word-spacing:-1.128960px;}
.ws18{word-spacing:-1.079280px;}
.ws73{word-spacing:-1.075968px;}
.ws68{word-spacing:-1.013400px;}
.wsd{word-spacing:-1.008000px;}
.ws60{word-spacing:-0.987264px;}
.ws81{word-spacing:-0.980352px;}
.ws44{word-spacing:-0.956160px;}
.ws7d{word-spacing:-0.955680px;}
.ws83{word-spacing:-0.907200px;}
.ws1e{word-spacing:-0.888000px;}
.ws65{word-spacing:-0.877920px;}
.ws28{word-spacing:-0.869760px;}
.ws62{word-spacing:-0.869280px;}
.ws3f{word-spacing:-0.864000px;}
.ws75{word-spacing:-0.782304px;}
.ws24{word-spacing:-0.771840px;}
.ws13{word-spacing:-0.760080px;}
.ws8b{word-spacing:-0.754560px;}
.ws4e{word-spacing:-0.751680px;}
.ws49{word-spacing:-0.751200px;}
.ws66{word-spacing:-0.734400px;}
.ws2d{word-spacing:-0.651840px;}
.ws2b{word-spacing:-0.644160px;}
.ws91{word-spacing:-0.634464px;}
.ws15{word-spacing:-0.634320px;}
.ws40{word-spacing:-0.633600px;}
.ws1f{word-spacing:-0.627840px;}
.ws3e{word-spacing:-0.576000px;}
.ws4a{word-spacing:-0.565920px;}
.ws5c{word-spacing:-0.553920px;}
.ws78{word-spacing:-0.502992px;}
.ws64{word-spacing:-0.478440px;}
.ws2c{word-spacing:-0.437760px;}
.ws16{word-spacing:-0.411840px;}
.ws14{word-spacing:-0.372240px;}
.ws52{word-spacing:-0.346680px;}
.ws3{word-spacing:-0.288000px;}
.ws37{word-spacing:-0.249120px;}
.ws74{word-spacing:-0.235968px;}
.ws84{word-spacing:-0.221760px;}
.wse{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.198000px;}
.ws39{word-spacing:-0.144000px;}
.ws56{word-spacing:-0.105120px;}
.ws1c{word-spacing:-0.080640px;}
.ws8c{word-spacing:-0.074160px;}
.ws86{word-spacing:-0.054720px;}
.ws17{word-spacing:-0.028080px;}
.ws7f{word-spacing:-0.025440px;}
.ws8f{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws5d{word-spacing:0.024960px;}
.ws41{word-spacing:0.043560px;}
.ws19{word-spacing:0.120000px;}
.ws7b{word-spacing:0.144000px;}
.ws34{word-spacing:0.164640px;}
.ws47{word-spacing:0.191880px;}
.ws92{word-spacing:0.229776px;}
.ws22{word-spacing:0.251280px;}
.ws7{word-spacing:0.288000px;}
.ws12{word-spacing:0.402120px;}
.ws46{word-spacing:0.672480px;}
.ws8d{word-spacing:0.707760px;}
.ws1d{word-spacing:0.732000px;}
.ws20{word-spacing:0.736920px;}
.ws8e{word-spacing:0.787200px;}
.ws90{word-spacing:0.864000px;}
.ws5{word-spacing:1.008000px;}
.ws6c{word-spacing:1.128000px;}
.ws71{word-spacing:1.180800px;}
.ws98{word-spacing:1.250640px;}
.ws1b{word-spacing:1.296000px;}
.ws10{word-spacing:1.366560px;}
.wsb{word-spacing:1.404000px;}
.ws11{word-spacing:2.104080px;}
.ws3a{word-spacing:2.349120px;}
.ws93{word-spacing:2.400000px;}
.ws36{word-spacing:2.481840px;}
.ws88{word-spacing:15.689280px;}
.ws8a{word-spacing:15.749280px;}
.ws6d{word-spacing:78.449400px;}
.ws3b{word-spacing:96.993000px;}
.ws70{word-spacing:1777.158720px;}
._6{margin-left:-9.989007px;}
._4{margin-left:-6.696000px;}
._9{margin-left:-5.054400px;}
._0{margin-left:-3.864000px;}
._2{margin-left:-1.932000px;}
._3{width:1.529007px;}
._1{width:2.704800px;}
._11{width:3.855948px;}
._17{width:5.824560px;}
._5{width:12.580017px;}
._e{width:13.637471px;}
._10{width:14.840532px;}
._f{width:16.440273px;}
._19{width:17.460000px;}
._15{width:18.786000px;}
._14{width:20.634240px;}
._c{width:21.660480px;}
._7{width:22.998993px;}
._8{width:24.197793px;}
._a{width:26.670993px;}
._18{width:27.726993px;}
._13{width:30.000000px;}
._12{width:31.648800px;}
._d{width:905.527713px;}
._16{width:971.969688px;}
._b{width:1069.398993px;}
.fcf{color:rgb(102,102,102);}
.fc2{color:rgb(0,151,167);}
.fcd{color:rgb(89,89,89);}
.fc1{color:rgb(89,89,89);}
.fc4{color:rgb(255,255,255);}
.fc6{color:rgb(0,0,0);}
.fc7{color:rgb(217,217,217);}
.fc8{color:rgb(0,51,204);}
.fca{color:rgb(127,127,127);}
.fc0{color:rgb(98,16,204);}
.fc5{color:rgb(0,61,124);}
.fcb{color:rgb(0,0,153);}
.fc9{color:rgb(14,62,207);}
.fce{color:rgb(124,75,140);}
.fc3{color:transparent;}
.fcc{color:rgb(0,0,255);}
.fs8{font-size:42.000000px;}
.fsf{font-size:45.360000px;}
.fs5{font-size:48.000003px;}
.fs10{font-size:54.000000px;}
.fs26{font-size:54.720000px;}
.fs1c{font-size:59.760000px;}
.fs15{font-size:59.904000px;}
.fs7{font-size:60.000000px;}
.fs1b{font-size:63.360000px;}
.fs1e{font-size:65.520000px;}
.fs24{font-size:65.664000px;}
.fsc{font-size:66.240000px;}
.fsb{font-size:66.384000px;}
.fs2a{font-size:71.280000px;}
.fs25{font-size:71.424000px;}
.fs16{font-size:72.000000px;}
.fs4{font-size:72.000006px;}
.fs29{font-size:77.760000px;}
.fs13{font-size:84.240000px;}
.fs18{font-size:84.384000px;}
.fs20{font-size:90.000000px;}
.fs21{font-size:90.144000px;}
.fs28{font-size:92.160000px;}
.fs11{font-size:95.760000px;}
.fs12{font-size:95.904000px;}
.fs2c{font-size:96.000006px;}
.fs1a{font-size:102.240000px;}
.fs19{font-size:102.384000px;}
.fsd{font-size:108.000000px;}
.fs3{font-size:108.000003px;}
.fse{font-size:108.144000px;}
.fs27{font-size:109.440000px;}
.fs2d{font-size:109.800004px;}
.fs2{font-size:112.000005px;}
.fs17{font-size:120.240000px;}
.fs2b{font-size:121.199764px;}
.fs14{font-size:126.000000px;}
.fs1f{font-size:131.760000px;}
.fs23{font-size:135.360000px;}
.fs22{font-size:135.504000px;}
.fs9{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs1d{font-size:149.760000px;}
.fs6{font-size:151.200005px;}
.fs1{font-size:180.000006px;}
.fs0{font-size:193.200009px;}
.y0{bottom:0.000000px;}
.yc{bottom:10.738938px;}
.y19{bottom:17.604000px;}
.y131{bottom:20.016000px;}
.yb{bottom:28.082245px;}
.y6{bottom:34.191659px;}
.y12{bottom:34.272000px;}
.y6b{bottom:45.432000px;}
.ybe{bottom:45.684000px;}
.y10b{bottom:46.008000px;}
.ye8{bottom:47.052000px;}
.yca{bottom:47.196000px;}
.yd7{bottom:47.844000px;}
.ye1{bottom:49.464000px;}
.y122{bottom:49.968000px;}
.y130{bottom:50.004000px;}
.y98{bottom:50.508000px;}
.y52{bottom:50.868000px;}
.y65{bottom:51.120000px;}
.y67{bottom:53.172000px;}
.y3b{bottom:53.316000px;}
.y60{bottom:53.676000px;}
.y23{bottom:57.312000px;}
.yf9{bottom:59.796000px;}
.y6a{bottom:63.432000px;}
.yc9{bottom:66.096000px;}
.y11{bottom:66.672000px;}
.y12f{bottom:68.004000px;}
.y141{bottom:74.736000px;}
.y5f{bottom:77.076000px;}
.y51{bottom:86.544000px;}
.y10{bottom:88.668000px;}
.ya{bottom:92.729976px;}
.y95{bottom:95.580000px;}
.yf8{bottom:99.036000px;}
.y5e{bottom:100.476000px;}
.y118{bottom:103.500000px;}
.y89{bottom:109.260000px;}
.y38{bottom:115.848000px;}
.y50{bottom:117.504000px;}
.ybb{bottom:118.692000px;}
.y2e{bottom:121.428000px;}
.y5d{bottom:123.876000px;}
.y94{bottom:126.180000px;}
.yae{bottom:128.700000px;}
.ya4{bottom:132.084000px;}
.y21{bottom:132.696000px;}
.yf7{bottom:138.312000px;}
.y88{bottom:139.896000px;}
.y79{bottom:144.792000px;}
.yba{bottom:145.692000px;}
.y136{bottom:147.312000px;}
.y104{bottom:147.636000px;}
.y37{bottom:151.890000px;}
.y117{bottom:153.900000px;}
.y4f{bottom:157.290000px;}
.yf6{bottom:159.195000px;}
.yad{bottom:159.300000px;}
.y2d{bottom:161.205000px;}
.y150{bottom:161.663869px;}
.y145{bottom:162.578011px;}
.ya3{bottom:162.690000px;}
.y39{bottom:172.875000px;}
.y8{bottom:174.521911px;}
.y93{bottom:174.810000px;}
.y135{bottom:176.115000px;}
.y116{bottom:179.100000px;}
.y20{bottom:179.310000px;}
.y87{bottom:179.490000px;}
.y12e{bottom:181.470000px;}
.y78{bottom:183.315000px;}
.y36{bottom:187.890000px;}
.y7{bottom:188.921912px;}
.yac{bottom:189.900000px;}
.yb9{bottom:190.695000px;}
.y103{bottom:192.270000px;}
.ya2{bottom:193.290000px;}
.y5c{bottom:196.995000px;}
.yd{bottom:197.054379px;}
.y4e{bottom:197.100000px;}
.yc8{bottom:197.640000px;}
.y14f{bottom:199.355893px;}
.y2c{bottom:200.985000px;}
.yf5{bottom:201.135000px;}
.y13a{bottom:204.555000px;}
.y134{bottom:205.095000px;}
.y92{bottom:205.410000px;}
.yd1{bottom:206.250000px;}
.y12d{bottom:208.470000px;}
.y115{bottom:208.830000px;}
.y35{bottom:214.890000px;}
.yb8{bottom:217.725000px;}
.y5{bottom:217.751005px;}
.y86{bottom:219.090000px;}
.y7d{bottom:220.065000px;}
.yf4{bottom:220.755000px;}
.y102{bottom:221.970000px;}
.yc7{bottom:222.840000px;}
.ya1{bottom:223.920000px;}
.y1f{bottom:225.975000px;}
.y8b{bottom:230.550000px;}
.yd0{bottom:231.450000px;}
.y2b{bottom:231.810000px;}
.y45{bottom:232.125000px;}
.y14e{bottom:235.355894px;}
.y4d{bottom:236.880000px;}
.y114{bottom:238.530000px;}
.yf3{bottom:240.375000px;}
.ye7{bottom:240.915000px;}
.y72{bottom:244.590000px;}
.y4{bottom:247.127006px;}
.y5b{bottom:247.755000px;}
.yc6{bottom:248.070000px;}
.y34{bottom:250.890000px;}
.y12c{bottom:253.470000px;}
.y91{bottom:254.010000px;}
.y77{bottom:257.865000px;}
.y85{bottom:258.735000px;}
.y44{bottom:260.925000px;}
.yf2{bottom:261.285000px;}
.y7c{bottom:261.465000px;}
.yb7{bottom:262.725000px;}
.yc0{bottom:263.130000px;}
.yd4{bottom:265.860000px;}
.y101{bottom:266.655000px;}
.y4c{bottom:267.840000px;}
.y113{bottom:268.230000px;}
.y14d{bottom:268.475895px;}
.ya0{bottom:269.640000px;}
.y2a{bottom:271.770000px;}
.ye6{bottom:272.625000px;}
.y13d{bottom:272.955000px;}
.ycf{bottom:274.650000px;}
.y18{bottom:276.270000px;}
.y33{bottom:277.740000px;}
.y11b{bottom:279.210000px;}
.y12b{bottom:280.515000px;}
.y90{bottom:284.610000px;}
.yab{bottom:287.130000px;}
.yb6{bottom:289.725000px;}
.ybf{bottom:290.160000px;}
.ye0{bottom:293.220000px;}
.y71{bottom:293.730000px;}
.y76{bottom:296.385000px;}
.y112{bottom:297.930000px;}
.y5a{bottom:298.515000px;}
.y43{bottom:298.725000px;}
.yc5{bottom:298.830000px;}
.yce{bottom:299.850000px;}
.y9f{bottom:300.240000px;}
.y11e{bottom:300.960000px;}
.y14c{bottom:301.595896px;}
.y13c{bottom:301.965000px;}
.y106{bottom:302.295000px;}
.y29{bottom:302.550000px;}
.y11a{bottom:302.610000px;}
.y7b{bottom:302.910000px;}
.yf1{bottom:303.225000px;}
.y17{bottom:311.010000px;}
.y100{bottom:311.475000px;}
.y32{bottom:313.740000px;}
.y8f{bottom:315.255000px;}
.y84{bottom:316.335000px;}
.y125{bottom:316.980000px;}
.yaa{bottom:317.730000px;}
.y1e{bottom:319.395000px;}
.ye5{bottom:319.425000px;}
.y132{bottom:320.865000px;}
.y11d{bottom:322.560000px;}
.yf0{bottom:322.845000px;}
.y70{bottom:323.460000px;}
.yc4{bottom:324.030000px;}
.y12a{bottom:325.515000px;}
.y4b{bottom:325.650000px;}
.y119{bottom:326.010000px;}
.y111{bottom:327.675000px;}
.y13b{bottom:330.765000px;}
.y9e{bottom:330.840000px;}
.y59{bottom:331.305000px;}
.y14b{bottom:334.715902px;}
.yb5{bottom:334.725000px;}
.y139{bottom:335.625000px;}
.y42{bottom:336.525000px;}
.y124{bottom:340.380000px;}
.y31{bottom:340.740000px;}
.yff{bottom:341.175000px;}
.ydf{bottom:341.820000px;}
.y28{bottom:342.360000px;}
.y108{bottom:342.510000px;}
.yef{bottom:342.645000px;}
.y10a{bottom:342.750000px;}
.ycd{bottom:343.080000px;}
.y11c{bottom:344.160000px;}
.y7a{bottom:344.310000px;}
.y16{bottom:345.570000px;}
.ya9{bottom:348.330000px;}
.yc3{bottom:349.230000px;}
.ye4{bottom:351.105000px;}
.y129{bottom:352.515000px;}
.y110{bottom:352.875000px;}
.y6f{bottom:354.960000px;}
.y83{bottom:355.935000px;}
.y107{bottom:359.070000px;}
.y109{bottom:359.310000px;}
.yb4{bottom:361.770000px;}
.yee{bottom:362.265000px;}
.y123{bottom:363.780000px;}
.y8e{bottom:363.855000px;}
.y4a{bottom:365.430000px;}
.y1d{bottom:366.045000px;}
.y14a{bottom:367.835910px;}
.ycc{bottom:368.280000px;}
.y75{bottom:370.950000px;}
.yde{bottom:372.420000px;}
.y41{bottom:374.370000px;}
.y9d{bottom:376.410000px;}
.y30{bottom:376.740000px;}
.y15{bottom:380.340000px;}
.y58{bottom:382.065000px;}
.y27{bottom:382.140000px;}
.y10f{bottom:382.575000px;}
.ye3{bottom:382.785000px;}
.yed{bottom:383.190000px;}
.y6e{bottom:383.760000px;}
.yfe{bottom:385.845000px;}
.y82{bottom:386.565000px;}
.yb0{bottom:393.120000px;}
.y8d{bottom:394.455000px;}
.y49{bottom:396.210000px;}
.yf{bottom:396.645000px;}
.ya8{bottom:396.975000px;}
.y128{bottom:397.545000px;}
.y62{bottom:399.600000px;}
.yc2{bottom:400.035000px;}
.y149{bottom:400.955897px;}
.y2f{bottom:403.770000px;}
.y140{bottom:404.745000px;}
.yb3{bottom:406.770000px;}
.y9c{bottom:407.010000px;}
.y74{bottom:409.470000px;}
.ycb{bottom:411.480000px;}
.y40{bottom:412.170000px;}
.y6d{bottom:412.560000px;}
.y1c{bottom:412.665000px;}
.y26{bottom:412.920000px;}
.ye2{bottom:414.510000px;}
.y57{bottom:414.825000px;}
.y14{bottom:415.080000px;}
.yfd{bottom:415.545000px;}
.y61{bottom:418.500000px;}
.y10e{bottom:419.835000px;}
.y3{bottom:420.217974px;}
.ydd{bottom:421.050000px;}
.y138{bottom:422.925000px;}
.y8c{bottom:425.085000px;}
.yec{bottom:425.130000px;}
.y81{bottom:426.165000px;}
.y48{bottom:426.990000px;}
.ya7{bottom:427.575000px;}
.y13f{bottom:433.725000px;}
.yb2{bottom:433.770000px;}
.y148{bottom:435.335901px;}
.ye{bottom:435.525000px;}
.y9b{bottom:437.610000px;}
.y127{bottom:442.545000px;}
.yeb{bottom:444.750000px;}
.y10d{bottom:445.035000px;}
.yfc{bottom:445.245000px;}
.y143{bottom:447.690000px;}
.y3e{bottom:450.510000px;}
.y25{bottom:452.880000px;}
.y121{bottom:454.245000px;}
.y3d{bottom:455.910000px;}
.y137{bottom:457.710000px;}
.ya6{bottom:458.175000px;}
.y1b{bottom:459.510000px;}
.y6c{bottom:460.620000px;}
.y99{bottom:462.240000px;}
.y13e{bottom:462.525000px;}
.y55{bottom:463.350000px;}
.yea{bottom:464.370000px;}
.y56{bottom:465.630000px;}
.y80{bottom:465.765000px;}
.y54{bottom:466.485000px;}
.y47{bottom:466.995000px;}
.y105{bottom:472.425000px;}
.ydc{bottom:474.120000px;}
.y10c{bottom:474.765000px;}
.yd5{bottom:474.840000px;}
.y64{bottom:476.925000px;}
.y3c{bottom:477.510000px;}
.y2{bottom:478.177987px;}
.y142{bottom:481.890000px;}
.y9a{bottom:483.195000px;}
.ye9{bottom:485.250000px;}
.y53{bottom:491.685000px;}
.y8a{bottom:493.770000px;}
.y63{bottom:495.825000px;}
.ydb{bottom:499.320000px;}
.y147{bottom:500.235124px;}
.y120{bottom:502.710000px;}
.ybd{bottom:503.460000px;}
.y69{bottom:507.780000px;}
.y9{bottom:508.524991px;}
.yfa{bottom:511.125000px;}
.yd9{bottom:512.070000px;}
.y96{bottom:512.790000px;}
.y1{bottom:536.137977px;}
.yd2{bottom:536.190000px;}
.yc1{bottom:536.430000px;}
.y22{bottom:537.375000px;}
.yb1{bottom:537.510000px;}
.yd3{bottom:537.585000px;}
.y146{bottom:538.395073px;}
.y11f{bottom:538.530000px;}
.y7f{bottom:539.070000px;}
.y66{bottom:539.205000px;}
.ya5{bottom:539.460000px;}
.y1a{bottom:539.895000px;}
.y133{bottom:539.970000px;}
.y46{bottom:540.255000px;}
.yaf{bottom:540.285000px;}
.yda{bottom:540.435000px;}
.y73{bottom:540.645000px;}
.y97{bottom:540.750000px;}
.yd8{bottom:540.825000px;}
.y68{bottom:540.900000px;}
.y7e{bottom:540.975000px;}
.y3a{bottom:541.410000px;}
.yfb{bottom:541.515000px;}
.yd6{bottom:542.010000px;}
.y3f{bottom:542.550000px;}
.y13{bottom:542.775000px;}
.y126{bottom:542.985000px;}
.ybc{bottom:543.990000px;}
.y24{bottom:546.090000px;}
.y144{bottom:558.000000px;}
.h9{height:30.146484px;}
.h7{height:32.648440px;}
.h5{height:34.453127px;}
.h11{height:39.644640px;}
.h8{height:43.125000px;}
.h38{height:46.864688px;}
.h3b{height:52.628906px;}
.h2c{height:55.376640px;}
.h12{height:56.320312px;}
.h23{height:59.439023px;}
.h24{height:61.189805px;}
.h18{height:61.337250px;}
.h16{height:61.575820px;}
.h20{height:63.019687px;}
.h33{height:64.875938px;}
.h35{height:65.168086px;}
.h36{height:65.311312px;}
.hd{height:65.884219px;}
.hc{height:66.027445px;}
.h21{height:66.082500px;}
.h2d{height:67.824844px;}
.h2b{height:68.335313px;}
.h43{height:69.000004px;}
.h40{height:71.200898px;}
.h19{height:71.613281px;}
.h3d{height:72.985430px;}
.h37{height:73.132875px;}
.h3a{height:75.093750px;}
.h3e{height:76.069336px;}
.h3f{height:76.191047px;}
.h4{height:77.519534px;}
.h42{height:77.625002px;}
.h3c{height:78.660000px;}
.h44{height:78.811526px;}
.h39{height:81.101250px;}
.h15{height:83.787539px;}
.h1d{height:83.930766px;}
.h34{height:86.255508px;}
.h2f{height:89.516602px;}
.h30{height:89.659828px;}
.h3{height:92.179693px;}
.h41{height:93.445018px;}
.h22{height:94.392000px;}
.h13{height:95.245664px;}
.h14{height:95.388891px;}
.h25{height:98.051133px;}
.h1f{height:101.690859px;}
.h1e{height:101.834086px;}
.h29{height:104.686172px;}
.h2a{height:104.833617px;}
.h1b{height:105.089760px;}
.hf{height:107.419922px;}
.h10{height:107.563148px;}
.h17{height:110.124000px;}
.h26{height:110.731430px;}
.h2e{height:115.158240px;}
.h6{height:116.575204px;}
.h32{height:118.304640px;}
.h31{height:118.430496px;}
.h28{height:119.594180px;}
.he{height:125.856000px;}
.h27{height:130.890240px;}
.h1a{height:136.413281px;}
.h2{height:139.562501px;}
.ha{height:147.445312px;}
.hb{height:147.592758px;}
.h1{height:148.957207px;}
.h1c{height:172.047539px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1f{left:30.095984px;}
.x3e{left:31.751984px;}
.x14{left:32.975984px;}
.x1a{left:34.379984px;}
.x7{left:35.672246px;}
.x23{left:36.935984px;}
.xd{left:38.195984px;}
.x41{left:39.347984px;}
.x15{left:40.859984px;}
.x1d{left:43.235984px;}
.xe{left:45.215984px;}
.x8{left:46.939963px;}
.x11{left:50.543984px;}
.x24{left:52.127984px;}
.x3b{left:55.187984px;}
.x48{left:57.631857px;}
.x28{left:59.003984px;}
.x2f{left:63.575984px;}
.xc{left:67.067984px;}
.x1e{left:70.271984px;}
.x2c{left:71.315984px;}
.x16{left:74.699984px;}
.x6{left:75.832049px;}
.x33{left:77.579984px;}
.xf{left:79.091984px;}
.x30{left:81.395984px;}
.x12{left:84.383984px;}
.x2e{left:95.903984px;}
.x29{left:99.539984px;}
.x2a{left:100.583984px;}
.x20{left:101.879984px;}
.x49{left:113.447400px;}
.x35{left:116.567984px;}
.x40{left:119.159984px;}
.x3c{left:122.543984px;}
.x31{left:135.719984px;}
.x2{left:151.483080px;}
.x27{left:167.369984px;}
.x1b{left:181.004984px;}
.x1{left:197.910796px;}
.x9{left:229.390770px;}
.x3{left:240.427776px;}
.x25{left:252.749984px;}
.x45{left:323.789984px;}
.x43{left:326.054984px;}
.x5{left:348.673131px;}
.x44{left:366.584984px;}
.x26{left:384.194984px;}
.x4{left:399.327101px;}
.x46{left:437.399984px;}
.x22{left:532.694984px;}
.x10{left:535.394984px;}
.x39{left:567.614984px;}
.x21{left:572.474984px;}
.x2d{left:590.504984px;}
.x38{left:591.914984px;}
.x32{left:597.164984px;}
.xb{left:626.960158px;}
.x19{left:639.509984px;}
.x36{left:645.404984px;}
.x1c{left:677.264984px;}
.x17{left:759.629984px;}
.x3a{left:762.404984px;}
.x34{left:773.609984px;}
.x18{left:793.514984px;}
.x13{left:816.509984px;}
.x3d{left:818.564984px;}
.x47{left:820.447050px;}
.x37{left:834.119984px;}
.x2b{left:878.579984px;}
.x3f{left:898.199984px;}
.x42{left:1031.114984px;}
.xa{left:1047.027099px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:36.000001pt;}
.v1{vertical-align:55.999998pt;}
.v3{vertical-align:57.600000pt;}
.v4{vertical-align:78.453333pt;}
.ls48{letter-spacing:-0.677333pt;}
.ls64{letter-spacing:-0.448000pt;}
.ls55{letter-spacing:-0.393067pt;}
.ls34{letter-spacing:-0.352000pt;}
.ls38{letter-spacing:-0.322133pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.297067pt;}
.ls16{letter-spacing:-0.288533pt;}
.ls5f{letter-spacing:-0.282667pt;}
.ls6d{letter-spacing:-0.279467pt;}
.ls66{letter-spacing:-0.272000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.240533pt;}
.ls6f{letter-spacing:-0.240000pt;}
.ls37{letter-spacing:-0.227733pt;}
.ls50{letter-spacing:-0.204267pt;}
.ls5d{letter-spacing:-0.203733pt;}
.ls17{letter-spacing:-0.198933pt;}
.ls23{letter-spacing:-0.194667pt;}
.ls42{letter-spacing:-0.190933pt;}
.ls33{letter-spacing:-0.175467pt;}
.ls4e{letter-spacing:-0.153600pt;}
.ls70{letter-spacing:-0.147733pt;}
.ls35{letter-spacing:-0.139733pt;}
.ls53{letter-spacing:-0.131733pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls4b{letter-spacing:-0.118933pt;}
.ls1e{letter-spacing:-0.112533pt;}
.ls15{letter-spacing:-0.103467pt;}
.ls5e{letter-spacing:-0.087467pt;}
.lsf{letter-spacing:-0.080000pt;}
.ls3f{letter-spacing:-0.070400pt;}
.ls11{letter-spacing:-0.060800pt;}
.ls12{letter-spacing:-0.058133pt;}
.ls41{letter-spacing:-0.055467pt;}
.ls3c{letter-spacing:-0.035840pt;}
.ls1{letter-spacing:-0.032000pt;}
.ls65{letter-spacing:-0.027520pt;}
.ls46{letter-spacing:-0.016640pt;}
.ls3d{letter-spacing:-0.011520pt;}
.ls2d{letter-spacing:-0.005760pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.003840pt;}
.ls67{letter-spacing:0.007680pt;}
.ls43{letter-spacing:0.012533pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls54{letter-spacing:0.029173pt;}
.ls20{letter-spacing:0.046080pt;}
.ls1c{letter-spacing:0.051200pt;}
.ls2a{letter-spacing:0.053867pt;}
.ls44{letter-spacing:0.061333pt;}
.ls31{letter-spacing:0.075733pt;}
.ls6c{letter-spacing:0.080000pt;}
.ls51{letter-spacing:0.088533pt;}
.lse{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.097067pt;}
.ls3a{letter-spacing:0.099733pt;}
.ls45{letter-spacing:0.103467pt;}
.ls39{letter-spacing:0.106133pt;}
.ls40{letter-spacing:0.117867pt;}
.ls3b{letter-spacing:0.120533pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.138133pt;}
.ls52{letter-spacing:0.150933pt;}
.ls26{letter-spacing:0.165867pt;}
.ls2b{letter-spacing:0.210133pt;}
.ls2c{letter-spacing:0.211733pt;}
.ls3e{letter-spacing:0.217600pt;}
.ls2{letter-spacing:0.227733pt;}
.ls47{letter-spacing:0.232533pt;}
.ls6e{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.245867pt;}
.lsa{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.262400pt;}
.ls56{letter-spacing:0.272000pt;}
.ls32{letter-spacing:0.275200pt;}
.ls4c{letter-spacing:0.277333pt;}
.ls13{letter-spacing:0.284800pt;}
.ls30{letter-spacing:0.288000pt;}
.ls4d{letter-spacing:0.291733pt;}
.ls22{letter-spacing:0.297067pt;}
.ls10{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.330133pt;}
.ls61{letter-spacing:11.946240pt;}
.ls5b{letter-spacing:13.236480pt;}
.ls29{letter-spacing:19.968256pt;}
.ls62{letter-spacing:31.872000pt;}
.ls63{letter-spacing:36.608000pt;}
.ls5c{letter-spacing:45.587456pt;}
.ls5a{letter-spacing:45.646080pt;}
.ls4f{letter-spacing:55.944960pt;}
.ls7{letter-spacing:62.080000pt;}
.ls5{letter-spacing:76.293376pt;}
.ls6{letter-spacing:76.352000pt;}
.ls3{letter-spacing:76.480000pt;}
.ls18{letter-spacing:78.766336pt;}
.ls19{letter-spacing:78.824960pt;}
.lsc{letter-spacing:81.276416pt;}
.lsb{letter-spacing:81.335040pt;}
.ls69{letter-spacing:83.621376pt;}
.ls68{letter-spacing:83.680000pt;}
.lsd{letter-spacing:86.184960pt;}
.ls2f{letter-spacing:88.467200pt;}
.ls2e{letter-spacing:88.512000pt;}
.ls4a{letter-spacing:92.275200pt;}
.ls49{letter-spacing:92.320000pt;}
.ls72{letter-spacing:95.987788pt;}
.ls71{letter-spacing:96.000379pt;}
.ls28{letter-spacing:100.101376pt;}
.ls27{letter-spacing:100.160000pt;}
.ls59{letter-spacing:104.956416pt;}
.ls58{letter-spacing:105.015040pt;}
.ls60{letter-spacing:107.360000pt;}
.ls6b{letter-spacing:116.061867pt;}
.ls6a{letter-spacing:116.106667pt;}
.ws89{word-spacing:-48.640000pt;}
.ws1a{word-spacing:-25.856000pt;}
.ws4{word-spacing:-25.600000pt;}
.ws3d{word-spacing:-24.154880pt;}
.ws3c{word-spacing:-24.149120pt;}
.ws7a{word-spacing:-22.400000pt;}
.ws79{word-spacing:-22.320000pt;}
.ws9a{word-spacing:-22.057601pt;}
.ws1{word-spacing:-21.696001pt;}
.ws9{word-spacing:-20.816640pt;}
.ws51{word-spacing:-20.814080pt;}
.ws50{word-spacing:-20.645013pt;}
.ws4f{word-spacing:-20.614613pt;}
.ws63{word-spacing:-20.567808pt;}
.ws80{word-spacing:-20.542720pt;}
.ws45{word-spacing:-20.538880pt;}
.ws42{word-spacing:-20.399147pt;}
.ws99{word-spacing:-19.285335pt;}
.ws35{word-spacing:-19.237120pt;}
.ws38{word-spacing:-19.178987pt;}
.ws85{word-spacing:-18.080000pt;}
.ws82{word-spacing:-16.951808pt;}
.ws8{word-spacing:-16.922880pt;}
.ws94{word-spacing:-16.240000pt;}
.ws25{word-spacing:-15.954027pt;}
.ws2f{word-spacing:-15.703040pt;}
.ws26{word-spacing:-15.656960pt;}
.ws2a{word-spacing:-15.462293pt;}
.ws87{word-spacing:-13.424640pt;}
.ws57{word-spacing:-13.368213pt;}
.ws58{word-spacing:-13.306880pt;}
.ws6b{word-spacing:-12.728320pt;}
.ws6a{word-spacing:-12.574720pt;}
.wsc{word-spacing:-12.034048pt;}
.ws33{word-spacing:-12.005120pt;}
.ws7c{word-spacing:-11.264000pt;}
.ws76{word-spacing:-2.397312pt;}
.ws48{word-spacing:-2.218240pt;}
.ws30{word-spacing:-2.058240pt;}
.ws5a{word-spacing:-2.013013pt;}
.ws97{word-spacing:-1.920000pt;}
.ws4d{word-spacing:-1.907200pt;}
.ws21{word-spacing:-1.898240pt;}
.ws2e{word-spacing:-1.889280pt;}
.ws54{word-spacing:-1.857536pt;}
.ws59{word-spacing:-1.742080pt;}
.ws43{word-spacing:-1.715200pt;}
.ws4c{word-spacing:-1.652480pt;}
.ws2{word-spacing:-1.597867pt;}
.ws55{word-spacing:-1.594880pt;}
.ws69{word-spacing:-1.581653pt;}
.ws61{word-spacing:-1.534720pt;}
.ws29{word-spacing:-1.531200pt;}
.ws7e{word-spacing:-1.475840pt;}
.ws5e{word-spacing:-1.447253pt;}
.ws6e{word-spacing:-1.437269pt;}
.ws53{word-spacing:-1.435776pt;}
.ws6{word-spacing:-1.408000pt;}
.ws77{word-spacing:-1.315925pt;}
.ws5b{word-spacing:-1.292800pt;}
.wsf{word-spacing:-1.280000pt;}
.ws67{word-spacing:-1.218133pt;}
.ws31{word-spacing:-1.205440pt;}
.ws95{word-spacing:-1.143808pt;}
.ws72{word-spacing:-1.091264pt;}
.ws6f{word-spacing:-1.087104pt;}
.ws5f{word-spacing:-1.086805pt;}
.ws23{word-spacing:-1.049600pt;}
.ws96{word-spacing:-1.040000pt;}
.ws27{word-spacing:-1.029120pt;}
.ws32{word-spacing:-1.018560pt;}
.ws4b{word-spacing:-1.003520pt;}
.ws18{word-spacing:-0.959360pt;}
.ws73{word-spacing:-0.956416pt;}
.ws68{word-spacing:-0.900800pt;}
.wsd{word-spacing:-0.896000pt;}
.ws60{word-spacing:-0.877568pt;}
.ws81{word-spacing:-0.871424pt;}
.ws44{word-spacing:-0.849920pt;}
.ws7d{word-spacing:-0.849493pt;}
.ws83{word-spacing:-0.806400pt;}
.ws1e{word-spacing:-0.789333pt;}
.ws65{word-spacing:-0.780373pt;}
.ws28{word-spacing:-0.773120pt;}
.ws62{word-spacing:-0.772693pt;}
.ws3f{word-spacing:-0.768000pt;}
.ws75{word-spacing:-0.695381pt;}
.ws24{word-spacing:-0.686080pt;}
.ws13{word-spacing:-0.675627pt;}
.ws8b{word-spacing:-0.670720pt;}
.ws4e{word-spacing:-0.668160pt;}
.ws49{word-spacing:-0.667733pt;}
.ws66{word-spacing:-0.652800pt;}
.ws2d{word-spacing:-0.579413pt;}
.ws2b{word-spacing:-0.572587pt;}
.ws91{word-spacing:-0.563968pt;}
.ws15{word-spacing:-0.563840pt;}
.ws40{word-spacing:-0.563200pt;}
.ws1f{word-spacing:-0.558080pt;}
.ws3e{word-spacing:-0.512000pt;}
.ws4a{word-spacing:-0.503040pt;}
.ws5c{word-spacing:-0.492373pt;}
.ws78{word-spacing:-0.447104pt;}
.ws64{word-spacing:-0.425280pt;}
.ws2c{word-spacing:-0.389120pt;}
.ws16{word-spacing:-0.366080pt;}
.ws14{word-spacing:-0.330880pt;}
.ws52{word-spacing:-0.308160pt;}
.ws3{word-spacing:-0.256000pt;}
.ws37{word-spacing:-0.221440pt;}
.ws74{word-spacing:-0.209749pt;}
.ws84{word-spacing:-0.197120pt;}
.wse{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.176000pt;}
.ws39{word-spacing:-0.128000pt;}
.ws56{word-spacing:-0.093440pt;}
.ws1c{word-spacing:-0.071680pt;}
.ws8c{word-spacing:-0.065920pt;}
.ws86{word-spacing:-0.048640pt;}
.ws17{word-spacing:-0.024960pt;}
.ws7f{word-spacing:-0.022613pt;}
.ws8f{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.022187pt;}
.ws41{word-spacing:0.038720pt;}
.ws19{word-spacing:0.106667pt;}
.ws7b{word-spacing:0.128000pt;}
.ws34{word-spacing:0.146347pt;}
.ws47{word-spacing:0.170560pt;}
.ws92{word-spacing:0.204245pt;}
.ws22{word-spacing:0.223360pt;}
.ws7{word-spacing:0.256000pt;}
.ws12{word-spacing:0.357440pt;}
.ws46{word-spacing:0.597760pt;}
.ws8d{word-spacing:0.629120pt;}
.ws1d{word-spacing:0.650667pt;}
.ws20{word-spacing:0.655040pt;}
.ws8e{word-spacing:0.699733pt;}
.ws90{word-spacing:0.768000pt;}
.ws5{word-spacing:0.896000pt;}
.ws6c{word-spacing:1.002667pt;}
.ws71{word-spacing:1.049600pt;}
.ws98{word-spacing:1.111680pt;}
.ws1b{word-spacing:1.152000pt;}
.ws10{word-spacing:1.214720pt;}
.wsb{word-spacing:1.248000pt;}
.ws11{word-spacing:1.870293pt;}
.ws3a{word-spacing:2.088107pt;}
.ws93{word-spacing:2.133333pt;}
.ws36{word-spacing:2.206080pt;}
.ws88{word-spacing:13.946027pt;}
.ws8a{word-spacing:13.999360pt;}
.ws6d{word-spacing:69.732800pt;}
.ws3b{word-spacing:86.216000pt;}
.ws70{word-spacing:1579.696640pt;}
._6{margin-left:-8.879117pt;}
._4{margin-left:-5.952000pt;}
._9{margin-left:-4.492800pt;}
._0{margin-left:-3.434667pt;}
._2{margin-left:-1.717333pt;}
._3{width:1.359117pt;}
._1{width:2.404267pt;}
._11{width:3.427510pt;}
._17{width:5.177387pt;}
._5{width:11.182238pt;}
._e{width:12.122197pt;}
._10{width:13.191584pt;}
._f{width:14.613576pt;}
._19{width:15.520000pt;}
._15{width:16.698667pt;}
._14{width:18.341547pt;}
._c{width:19.253760pt;}
._7{width:20.443549pt;}
._8{width:21.509149pt;}
._a{width:23.707549pt;}
._18{width:24.646216pt;}
._13{width:26.666667pt;}
._12{width:28.132267pt;}
._d{width:804.913523pt;}
._16{width:863.973056pt;}
._b{width:950.576883pt;}
.fs8{font-size:37.333333pt;}
.fsf{font-size:40.320000pt;}
.fs5{font-size:42.666669pt;}
.fs10{font-size:48.000000pt;}
.fs26{font-size:48.640000pt;}
.fs1c{font-size:53.120000pt;}
.fs15{font-size:53.248000pt;}
.fs7{font-size:53.333334pt;}
.fs1b{font-size:56.320000pt;}
.fs1e{font-size:58.240000pt;}
.fs24{font-size:58.368000pt;}
.fsc{font-size:58.880000pt;}
.fsb{font-size:59.008000pt;}
.fs2a{font-size:63.360000pt;}
.fs25{font-size:63.488000pt;}
.fs16{font-size:64.000000pt;}
.fs4{font-size:64.000005pt;}
.fs29{font-size:69.120000pt;}
.fs13{font-size:74.880000pt;}
.fs18{font-size:75.008000pt;}
.fs20{font-size:80.000000pt;}
.fs21{font-size:80.128000pt;}
.fs28{font-size:81.920000pt;}
.fs11{font-size:85.120000pt;}
.fs12{font-size:85.248000pt;}
.fs2c{font-size:85.333339pt;}
.fs1a{font-size:90.880000pt;}
.fs19{font-size:91.008000pt;}
.fsd{font-size:96.000000pt;}
.fs3{font-size:96.000003pt;}
.fse{font-size:96.128000pt;}
.fs27{font-size:97.280000pt;}
.fs2d{font-size:97.600003pt;}
.fs2{font-size:99.555560pt;}
.fs17{font-size:106.880000pt;}
.fs2b{font-size:107.733123pt;}
.fs14{font-size:112.000000pt;}
.fs1f{font-size:117.120000pt;}
.fs23{font-size:120.320000pt;}
.fs22{font-size:120.448000pt;}
.fs9{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs1d{font-size:133.120000pt;}
.fs6{font-size:134.400004pt;}
.fs1{font-size:160.000005pt;}
.fs0{font-size:171.733341pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:9.545723pt;}
.y19{bottom:15.648000pt;}
.y131{bottom:17.792000pt;}
.yb{bottom:24.961996pt;}
.y6{bottom:30.392586pt;}
.y12{bottom:30.464000pt;}
.y6b{bottom:40.384000pt;}
.ybe{bottom:40.608000pt;}
.y10b{bottom:40.896000pt;}
.ye8{bottom:41.824000pt;}
.yca{bottom:41.952000pt;}
.yd7{bottom:42.528000pt;}
.ye1{bottom:43.968000pt;}
.y122{bottom:44.416000pt;}
.y130{bottom:44.448000pt;}
.y98{bottom:44.896000pt;}
.y52{bottom:45.216000pt;}
.y65{bottom:45.440000pt;}
.y67{bottom:47.264000pt;}
.y3b{bottom:47.392000pt;}
.y60{bottom:47.712000pt;}
.y23{bottom:50.944000pt;}
.yf9{bottom:53.152000pt;}
.y6a{bottom:56.384000pt;}
.yc9{bottom:58.752000pt;}
.y11{bottom:59.264000pt;}
.y12f{bottom:60.448000pt;}
.y141{bottom:66.432000pt;}
.y5f{bottom:68.512000pt;}
.y51{bottom:76.928000pt;}
.y10{bottom:78.816000pt;}
.ya{bottom:82.426645pt;}
.y95{bottom:84.960000pt;}
.yf8{bottom:88.032000pt;}
.y5e{bottom:89.312000pt;}
.y118{bottom:92.000000pt;}
.y89{bottom:97.120000pt;}
.y38{bottom:102.976000pt;}
.y50{bottom:104.448000pt;}
.ybb{bottom:105.504000pt;}
.y2e{bottom:107.936000pt;}
.y5d{bottom:110.112000pt;}
.y94{bottom:112.160000pt;}
.yae{bottom:114.400000pt;}
.ya4{bottom:117.408000pt;}
.y21{bottom:117.952000pt;}
.yf7{bottom:122.944000pt;}
.y88{bottom:124.352000pt;}
.y79{bottom:128.704000pt;}
.yba{bottom:129.504000pt;}
.y136{bottom:130.944000pt;}
.y104{bottom:131.232000pt;}
.y37{bottom:135.013333pt;}
.y117{bottom:136.800000pt;}
.y4f{bottom:139.813333pt;}
.yf6{bottom:141.506667pt;}
.yad{bottom:141.600000pt;}
.y2d{bottom:143.293333pt;}
.y150{bottom:143.701217pt;}
.y145{bottom:144.513787pt;}
.ya3{bottom:144.613333pt;}
.y39{bottom:153.666667pt;}
.y8{bottom:155.130588pt;}
.y93{bottom:155.386667pt;}
.y135{bottom:156.546667pt;}
.y116{bottom:159.200000pt;}
.y20{bottom:159.386667pt;}
.y87{bottom:159.546667pt;}
.y12e{bottom:161.306667pt;}
.y78{bottom:162.946667pt;}
.y36{bottom:167.013333pt;}
.y7{bottom:167.930588pt;}
.yac{bottom:168.800000pt;}
.yb9{bottom:169.506667pt;}
.y103{bottom:170.906667pt;}
.ya2{bottom:171.813333pt;}
.y5c{bottom:175.106667pt;}
.yd{bottom:175.159448pt;}
.y4e{bottom:175.200000pt;}
.yc8{bottom:175.680000pt;}
.y14f{bottom:177.205238pt;}
.y2c{bottom:178.653333pt;}
.yf5{bottom:178.786667pt;}
.y13a{bottom:181.826667pt;}
.y134{bottom:182.306667pt;}
.y92{bottom:182.586667pt;}
.yd1{bottom:183.333333pt;}
.y12d{bottom:185.306667pt;}
.y115{bottom:185.626667pt;}
.y35{bottom:191.013333pt;}
.yb8{bottom:193.533333pt;}
.y5{bottom:193.556449pt;}
.y86{bottom:194.746667pt;}
.y7d{bottom:195.613333pt;}
.yf4{bottom:196.226667pt;}
.y102{bottom:197.306667pt;}
.yc7{bottom:198.080000pt;}
.ya1{bottom:199.040000pt;}
.y1f{bottom:200.866667pt;}
.y8b{bottom:204.933333pt;}
.yd0{bottom:205.733333pt;}
.y2b{bottom:206.053333pt;}
.y45{bottom:206.333333pt;}
.y14e{bottom:209.205239pt;}
.y4d{bottom:210.560000pt;}
.y114{bottom:212.026667pt;}
.yf3{bottom:213.666667pt;}
.ye7{bottom:214.146667pt;}
.y72{bottom:217.413333pt;}
.y4{bottom:219.668450pt;}
.y5b{bottom:220.226667pt;}
.yc6{bottom:220.506667pt;}
.y34{bottom:223.013333pt;}
.y12c{bottom:225.306667pt;}
.y91{bottom:225.786667pt;}
.y77{bottom:229.213333pt;}
.y85{bottom:229.986667pt;}
.y44{bottom:231.933333pt;}
.yf2{bottom:232.253333pt;}
.y7c{bottom:232.413333pt;}
.yb7{bottom:233.533333pt;}
.yc0{bottom:233.893333pt;}
.yd4{bottom:236.320000pt;}
.y101{bottom:237.026667pt;}
.y4c{bottom:238.080000pt;}
.y113{bottom:238.426667pt;}
.y14d{bottom:238.645240pt;}
.ya0{bottom:239.680000pt;}
.y2a{bottom:241.573333pt;}
.ye6{bottom:242.333333pt;}
.y13d{bottom:242.626667pt;}
.ycf{bottom:244.133333pt;}
.y18{bottom:245.573333pt;}
.y33{bottom:246.880000pt;}
.y11b{bottom:248.186667pt;}
.y12b{bottom:249.346667pt;}
.y90{bottom:252.986667pt;}
.yab{bottom:255.226667pt;}
.yb6{bottom:257.533333pt;}
.ybf{bottom:257.920000pt;}
.ye0{bottom:260.640000pt;}
.y71{bottom:261.093333pt;}
.y76{bottom:263.453333pt;}
.y112{bottom:264.826667pt;}
.y5a{bottom:265.346667pt;}
.y43{bottom:265.533333pt;}
.yc5{bottom:265.626667pt;}
.yce{bottom:266.533333pt;}
.y9f{bottom:266.880000pt;}
.y11e{bottom:267.520000pt;}
.y14c{bottom:268.085241pt;}
.y13c{bottom:268.413333pt;}
.y106{bottom:268.706667pt;}
.y29{bottom:268.933333pt;}
.y11a{bottom:268.986667pt;}
.y7b{bottom:269.253333pt;}
.yf1{bottom:269.533333pt;}
.y17{bottom:276.453333pt;}
.y100{bottom:276.866667pt;}
.y32{bottom:278.880000pt;}
.y8f{bottom:280.226667pt;}
.y84{bottom:281.186667pt;}
.y125{bottom:281.760000pt;}
.yaa{bottom:282.426667pt;}
.y1e{bottom:283.906667pt;}
.ye5{bottom:283.933333pt;}
.y132{bottom:285.213333pt;}
.y11d{bottom:286.720000pt;}
.yf0{bottom:286.973333pt;}
.y70{bottom:287.520000pt;}
.yc4{bottom:288.026667pt;}
.y12a{bottom:289.346667pt;}
.y4b{bottom:289.466667pt;}
.y119{bottom:289.786667pt;}
.y111{bottom:291.266667pt;}
.y13b{bottom:294.013333pt;}
.y9e{bottom:294.080000pt;}
.y59{bottom:294.493333pt;}
.y14b{bottom:297.525246pt;}
.yb5{bottom:297.533333pt;}
.y139{bottom:298.333333pt;}
.y42{bottom:299.133333pt;}
.y124{bottom:302.560000pt;}
.y31{bottom:302.880000pt;}
.yff{bottom:303.266667pt;}
.ydf{bottom:303.840000pt;}
.y28{bottom:304.320000pt;}
.y108{bottom:304.453333pt;}
.yef{bottom:304.573333pt;}
.y10a{bottom:304.666667pt;}
.ycd{bottom:304.960000pt;}
.y11c{bottom:305.920000pt;}
.y7a{bottom:306.053333pt;}
.y16{bottom:307.173333pt;}
.ya9{bottom:309.626667pt;}
.yc3{bottom:310.426667pt;}
.ye4{bottom:312.093333pt;}
.y129{bottom:313.346667pt;}
.y110{bottom:313.666667pt;}
.y6f{bottom:315.520000pt;}
.y83{bottom:316.386667pt;}
.y107{bottom:319.173333pt;}
.y109{bottom:319.386667pt;}
.yb4{bottom:321.573333pt;}
.yee{bottom:322.013333pt;}
.y123{bottom:323.360000pt;}
.y8e{bottom:323.426667pt;}
.y4a{bottom:324.826667pt;}
.y1d{bottom:325.373333pt;}
.y14a{bottom:326.965253pt;}
.ycc{bottom:327.360000pt;}
.y75{bottom:329.733333pt;}
.yde{bottom:331.040000pt;}
.y41{bottom:332.773333pt;}
.y9d{bottom:334.586667pt;}
.y30{bottom:334.880000pt;}
.y15{bottom:338.080000pt;}
.y58{bottom:339.613333pt;}
.y27{bottom:339.680000pt;}
.y10f{bottom:340.066667pt;}
.ye3{bottom:340.253333pt;}
.yed{bottom:340.613333pt;}
.y6e{bottom:341.120000pt;}
.yfe{bottom:342.973333pt;}
.y82{bottom:343.613333pt;}
.yb0{bottom:349.440000pt;}
.y8d{bottom:350.626667pt;}
.y49{bottom:352.186667pt;}
.yf{bottom:352.573333pt;}
.ya8{bottom:352.866667pt;}
.y128{bottom:353.373333pt;}
.y62{bottom:355.200000pt;}
.yc2{bottom:355.586667pt;}
.y149{bottom:356.405242pt;}
.y2f{bottom:358.906667pt;}
.y140{bottom:359.773333pt;}
.yb3{bottom:361.573333pt;}
.y9c{bottom:361.786667pt;}
.y74{bottom:363.973333pt;}
.ycb{bottom:365.760000pt;}
.y40{bottom:366.373333pt;}
.y6d{bottom:366.720000pt;}
.y1c{bottom:366.813333pt;}
.y26{bottom:367.040000pt;}
.ye2{bottom:368.453333pt;}
.y57{bottom:368.733333pt;}
.y14{bottom:368.960000pt;}
.yfd{bottom:369.373333pt;}
.y61{bottom:372.000000pt;}
.y10e{bottom:373.186667pt;}
.y3{bottom:373.527088pt;}
.ydd{bottom:374.266667pt;}
.y138{bottom:375.933333pt;}
.y8c{bottom:377.853333pt;}
.yec{bottom:377.893333pt;}
.y81{bottom:378.813333pt;}
.y48{bottom:379.546667pt;}
.ya7{bottom:380.066667pt;}
.y13f{bottom:385.533333pt;}
.yb2{bottom:385.573333pt;}
.y148{bottom:386.965245pt;}
.ye{bottom:387.133333pt;}
.y9b{bottom:388.986667pt;}
.y127{bottom:393.373333pt;}
.yeb{bottom:395.333333pt;}
.y10d{bottom:395.586667pt;}
.yfc{bottom:395.773333pt;}
.y143{bottom:397.946667pt;}
.y3e{bottom:400.453333pt;}
.y25{bottom:402.560000pt;}
.y121{bottom:403.773333pt;}
.y3d{bottom:405.253333pt;}
.y137{bottom:406.853333pt;}
.ya6{bottom:407.266667pt;}
.y1b{bottom:408.453333pt;}
.y6c{bottom:409.440000pt;}
.y99{bottom:410.880000pt;}
.y13e{bottom:411.133333pt;}
.y55{bottom:411.866667pt;}
.yea{bottom:412.773333pt;}
.y56{bottom:413.893333pt;}
.y80{bottom:414.013333pt;}
.y54{bottom:414.653333pt;}
.y47{bottom:415.106667pt;}
.y105{bottom:419.933333pt;}
.ydc{bottom:421.440000pt;}
.y10c{bottom:422.013333pt;}
.yd5{bottom:422.080000pt;}
.y64{bottom:423.933333pt;}
.y3c{bottom:424.453333pt;}
.y2{bottom:425.047099pt;}
.y142{bottom:428.346667pt;}
.y9a{bottom:429.506667pt;}
.ye9{bottom:431.333333pt;}
.y53{bottom:437.053333pt;}
.y8a{bottom:438.906667pt;}
.y63{bottom:440.733333pt;}
.ydb{bottom:443.840000pt;}
.y147{bottom:444.653444pt;}
.y120{bottom:446.853333pt;}
.ybd{bottom:447.520000pt;}
.y69{bottom:451.360000pt;}
.y9{bottom:452.022214pt;}
.yfa{bottom:454.333333pt;}
.yd9{bottom:455.173333pt;}
.y96{bottom:455.813333pt;}
.y1{bottom:476.567091pt;}
.yd2{bottom:476.613333pt;}
.yc1{bottom:476.826667pt;}
.y22{bottom:477.666667pt;}
.yb1{bottom:477.786667pt;}
.yd3{bottom:477.853333pt;}
.y146{bottom:478.573398pt;}
.y11f{bottom:478.693333pt;}
.y7f{bottom:479.173333pt;}
.y66{bottom:479.293333pt;}
.ya5{bottom:479.520000pt;}
.y1a{bottom:479.906667pt;}
.y133{bottom:479.973333pt;}
.y46{bottom:480.226667pt;}
.yaf{bottom:480.253333pt;}
.yda{bottom:480.386667pt;}
.y73{bottom:480.573333pt;}
.y97{bottom:480.666667pt;}
.yd8{bottom:480.733333pt;}
.y68{bottom:480.800000pt;}
.y7e{bottom:480.866667pt;}
.y3a{bottom:481.253333pt;}
.yfb{bottom:481.346667pt;}
.yd6{bottom:481.786667pt;}
.y3f{bottom:482.266667pt;}
.y13{bottom:482.466667pt;}
.y126{bottom:482.653333pt;}
.ybc{bottom:483.546667pt;}
.y24{bottom:485.413333pt;}
.y144{bottom:496.000000pt;}
.h9{height:26.796875pt;}
.h7{height:29.020835pt;}
.h5{height:30.625002pt;}
.h11{height:35.239680pt;}
.h8{height:38.333334pt;}
.h38{height:41.657500pt;}
.h3b{height:46.781250pt;}
.h2c{height:49.223680pt;}
.h12{height:50.062500pt;}
.h23{height:52.834688pt;}
.h24{height:54.390938pt;}
.h18{height:54.522000pt;}
.h16{height:54.734062pt;}
.h20{height:56.017500pt;}
.h33{height:57.667500pt;}
.h35{height:57.927187pt;}
.h36{height:58.054500pt;}
.hd{height:58.563750pt;}
.hc{height:58.691063pt;}
.h21{height:58.740000pt;}
.h2d{height:60.288750pt;}
.h2b{height:60.742500pt;}
.h43{height:61.333337pt;}
.h40{height:63.289687pt;}
.h19{height:63.656250pt;}
.h3d{height:64.875937pt;}
.h37{height:65.007000pt;}
.h3a{height:66.750000pt;}
.h3e{height:67.617188pt;}
.h3f{height:67.725375pt;}
.h4{height:68.906252pt;}
.h42{height:69.000002pt;}
.h3c{height:69.920000pt;}
.h44{height:70.054690pt;}
.h39{height:72.090000pt;}
.h15{height:74.477812pt;}
.h1d{height:74.605125pt;}
.h34{height:76.671562pt;}
.h2f{height:79.570312pt;}
.h30{height:79.697625pt;}
.h3{height:81.937505pt;}
.h41{height:83.062238pt;}
.h22{height:83.904000pt;}
.h13{height:84.662813pt;}
.h14{height:84.790125pt;}
.h25{height:87.156562pt;}
.h1f{height:90.391875pt;}
.h1e{height:90.519188pt;}
.h29{height:93.054375pt;}
.h2a{height:93.185437pt;}
.h1b{height:93.413120pt;}
.hf{height:95.484375pt;}
.h10{height:95.611688pt;}
.h17{height:97.888000pt;}
.h26{height:98.427937pt;}
.h2e{height:102.362880pt;}
.h6{height:103.622403pt;}
.h32{height:105.159680pt;}
.h31{height:105.271552pt;}
.h28{height:106.305937pt;}
.he{height:111.872000pt;}
.h27{height:116.346880pt;}
.h1a{height:121.256250pt;}
.h2{height:124.055556pt;}
.ha{height:131.062500pt;}
.hb{height:131.193562pt;}
.h1{height:132.406406pt;}
.h1c{height:152.931146pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:26.751986pt;}
.x3e{left:28.223986pt;}
.x14{left:29.311986pt;}
.x1a{left:30.559986pt;}
.x7{left:31.708663pt;}
.x23{left:32.831986pt;}
.xd{left:33.951986pt;}
.x41{left:34.975986pt;}
.x15{left:36.319986pt;}
.x1d{left:38.431986pt;}
.xe{left:40.191986pt;}
.x8{left:41.724411pt;}
.x11{left:44.927986pt;}
.x24{left:46.335986pt;}
.x3b{left:49.055986pt;}
.x48{left:51.228318pt;}
.x28{left:52.447986pt;}
.x2f{left:56.511986pt;}
.xc{left:59.615986pt;}
.x1e{left:62.463986pt;}
.x2c{left:63.391986pt;}
.x16{left:66.399986pt;}
.x6{left:67.406266pt;}
.x33{left:68.959986pt;}
.xf{left:70.303986pt;}
.x30{left:72.351986pt;}
.x12{left:75.007986pt;}
.x2e{left:85.247986pt;}
.x29{left:88.479986pt;}
.x2a{left:89.407986pt;}
.x20{left:90.559986pt;}
.x49{left:100.842133pt;}
.x35{left:103.615986pt;}
.x40{left:105.919986pt;}
.x3c{left:108.927986pt;}
.x31{left:120.639986pt;}
.x2{left:134.651626pt;}
.x27{left:148.773319pt;}
.x1b{left:160.893319pt;}
.x1{left:175.920708pt;}
.x9{left:203.902907pt;}
.x3{left:213.713579pt;}
.x25{left:224.666652pt;}
.x45{left:287.813319pt;}
.x43{left:289.826652pt;}
.x5{left:309.931672pt;}
.x44{left:325.853319pt;}
.x26{left:341.506652pt;}
.x4{left:354.957423pt;}
.x46{left:388.799986pt;}
.x22{left:473.506652pt;}
.x10{left:475.906652pt;}
.x39{left:504.546652pt;}
.x21{left:508.866652pt;}
.x2d{left:524.893319pt;}
.x38{left:526.146652pt;}
.x32{left:530.813319pt;}
.xb{left:557.297918pt;}
.x19{left:568.453319pt;}
.x36{left:573.693319pt;}
.x1c{left:602.013319pt;}
.x17{left:675.226652pt;}
.x3a{left:677.693319pt;}
.x34{left:687.653319pt;}
.x18{left:705.346652pt;}
.x13{left:725.786652pt;}
.x3d{left:727.613319pt;}
.x47{left:729.286266pt;}
.x37{left:741.439986pt;}
.x2b{left:780.959986pt;}
.x3f{left:798.399986pt;}
.x42{left:916.546652pt;}
.xa{left:930.690755pt;}
}




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