
    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_a4975d9d8367407252b2e74e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952000;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_a21e1c1993d357500fd58c8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_36456c6d32907c642d673a8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_1e22066f44df381c34761769.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_06324fa9e95ec731cf687d82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_23dc1fc360f44cda2b23bed1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_0655af0d841599d62b792f39.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.454000;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_c0aaff6e73a4dae6d569ba96.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_1a0ecae74c181ce0a5945bec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_a4f8b63842d97899719df4d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.429000;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_de21ae3b0c772a2b856c322e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.756000;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_34da3eaa2211d5c552dd830a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_546e363e53135e2b8d486969.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.677246;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_17f094b80aad92a10f05c0dc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.049000;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_a3ba0f1079bdd1d4fbf449f5.woff2')format("woff");}.fff{font-family:fff;line-height:0.256000;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_aa0a460d40a91edb840e849b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.779000;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_0d367bbc5395b567fbe1a719.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.258000;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_293072239456392ae2da8ae3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.705000;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_142b50fbe62e0adc23100d9e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.603000;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_aeeb2d38662d19fc410832ad.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.316000;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_ccad6af3fab7dcb922c95f7c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.999000;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_0763e3dcf34be5e805a83241.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-23.910000px;}
.v3{vertical-align:-20.922000px;}
.v1{vertical-align:-15.960000px;}
.v5{vertical-align:-9.858000px;}
.v8{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:14.826000px;}
.v7{vertical-align:16.944000px;}
.vd{vertical-align:20.694000px;}
.v6{vertical-align:21.768000px;}
.v2{vertical-align:23.016000px;}
.vc{vertical-align:29.100000px;}
.v9{vertical-align:36.432000px;}
.va{vertical-align:54.540000px;}
.ls14{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000144px;}
.ls2b{letter-spacing:0.000192px;}
.ls18{letter-spacing:0.000222px;}
.ls5c{letter-spacing:0.000233px;}
.ls9{letter-spacing:0.000288px;}
.ls10{letter-spacing:0.000300px;}
.ls68{letter-spacing:0.000310px;}
.ls27{letter-spacing:0.000361px;}
.ls2c{letter-spacing:0.000365px;}
.ls5f{letter-spacing:0.000386px;}
.ls5b{letter-spacing:0.000393px;}
.ls6b{letter-spacing:0.000397px;}
.ls2a{letter-spacing:0.000433px;}
.ls15{letter-spacing:0.000447px;}
.ls23{letter-spacing:0.000467px;}
.ls4a{letter-spacing:0.000578px;}
.ls8{letter-spacing:0.000600px;}
.ls4c{letter-spacing:0.002245px;}
.ls38{letter-spacing:0.002784px;}
.ls4d{letter-spacing:0.002880px;}
.ls2f{letter-spacing:0.003120px;}
.ls57{letter-spacing:0.003300px;}
.ls7{letter-spacing:0.003983px;}
.ls36{letter-spacing:0.006361px;}
.ls32{letter-spacing:0.006433px;}
.ls28{letter-spacing:0.012108px;}
.ls35{letter-spacing:0.588396px;}
.ls2d{letter-spacing:0.594396px;}
.ls45{letter-spacing:0.840325px;}
.ls3{letter-spacing:1.799964px;}
.ls2{letter-spacing:1.949961px;}
.ls12{letter-spacing:2.985120px;}
.ls4e{letter-spacing:2.985983px;}
.ls4b{letter-spacing:2.986608px;}
.ls24{letter-spacing:2.987751px;}
.ls50{letter-spacing:2.988096px;}
.ls21{letter-spacing:2.988396px;}
.ls2e{letter-spacing:2.990280px;}
.ls11{letter-spacing:2.991120px;}
.ls37{letter-spacing:2.991983px;}
.ls59{letter-spacing:2.992608px;}
.ls67{letter-spacing:2.993069px;}
.ls25{letter-spacing:2.993751px;}
.ls66{letter-spacing:2.994096px;}
.ls33{letter-spacing:2.994396px;}
.ls1{letter-spacing:3.119961px;}
.ls49{letter-spacing:3.186195px;}
.ls20{letter-spacing:3.540195px;}
.ls3c{letter-spacing:3.600362px;}
.ls4{letter-spacing:3.899961px;}
.ls48{letter-spacing:4.860393px;}
.ls1f{letter-spacing:5.394393px;}
.ls22{letter-spacing:5.400393px;}
.ls58{letter-spacing:6.927275px;}
.ls5e{letter-spacing:10.002467px;}
.ls69{letter-spacing:11.034294px;}
.ls39{letter-spacing:11.039296px;}
.ls6c{letter-spacing:11.040144px;}
.ls3a{letter-spacing:11.040288px;}
.ls0{letter-spacing:11.040294px;}
.ls3b{letter-spacing:11.040373px;}
.ls16{letter-spacing:13.200144px;}
.lsa{letter-spacing:13.200600px;}
.ls56{letter-spacing:13.374288px;}
.ls1a{letter-spacing:13.482144px;}
.ls54{letter-spacing:13.746144px;}
.ls44{letter-spacing:13.746467px;}
.ls43{letter-spacing:13.752222px;}
.ls41{letter-spacing:13.752380px;}
.ls42{letter-spacing:13.752467px;}
.ls1c{letter-spacing:13.794144px;}
.ls31{letter-spacing:13.794467px;}
.ls63{letter-spacing:13.794600px;}
.ls1e{letter-spacing:13.800144px;}
.ls62{letter-spacing:13.800281px;}
.ls3e{letter-spacing:13.800288px;}
.ls5a{letter-spacing:13.800313px;}
.ls55{letter-spacing:13.800332px;}
.ls3f{letter-spacing:13.800365px;}
.ls3d{letter-spacing:13.800380px;}
.ls26{letter-spacing:13.800467px;}
.ls64{letter-spacing:13.800600px;}
.ls29{letter-spacing:13.806108px;}
.ls60{letter-spacing:13.980270px;}
.ls65{letter-spacing:14.028096px;}
.ls6a{letter-spacing:14.033069px;}
.ls47{letter-spacing:14.033491px;}
.ls4f{letter-spacing:14.034096px;}
.ls30{letter-spacing:14.640275px;}
.ls19{letter-spacing:16.260396px;}
.ls1b{letter-spacing:16.470396px;}
.ls17{letter-spacing:16.707120px;}
.ls53{letter-spacing:16.728396px;}
.ls52{letter-spacing:16.734396px;}
.ls13{letter-spacing:16.785120px;}
.ls1d{letter-spacing:16.788396px;}
.ls46{letter-spacing:16.788864px;}
.lsf{letter-spacing:16.791120px;}
.ls51{letter-spacing:16.794396px;}
.ls34{letter-spacing:17.376396px;}
.ls40{letter-spacing:17.394362px;}
.ls61{letter-spacing:17.400362px;}
.lsd{letter-spacing:18.163632px;}
.lse{letter-spacing:18.169632px;}
.lsc{letter-spacing:21.831983px;}
.lsb{letter-spacing:26.688288px;}
.ls5{letter-spacing:29.990605px;}
.ls5d{letter-spacing:118.978836px;}
.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;}
}
.ws6c{word-spacing:-55.007542px;}
.ws14{word-spacing:-50.423542px;}
.ws6e{word-spacing:-40.679661px;}
.ws18{word-spacing:-40.607662px;}
.ws12{word-spacing:-36.671542px;}
.wsa{word-spacing:-33.899661px;}
.ws26{word-spacing:-33.839662px;}
.ws17{word-spacing:-31.679712px;}
.ws1b{word-spacing:-28.799712px;}
.wsb{word-spacing:-27.647693px;}
.ws30{word-spacing:-27.119661px;}
.ws13{word-spacing:-27.116941px;}
.wsc{word-spacing:-27.107699px;}
.ws11{word-spacing:-27.069733px;}
.ws3{word-spacing:-26.999700px;}
.ws42{word-spacing:-25.919712px;}
.ws79{word-spacing:-25.636954px;}
.ws81{word-spacing:-25.636660px;}
.ws77{word-spacing:-25.630954px;}
.ws76{word-spacing:-25.630660px;}
.ws7d{word-spacing:-25.629478px;}
.ws2{word-spacing:-23.039712px;}
.ws23{word-spacing:-20.234880px;}
.ws5a{word-spacing:-19.813320px;}
.ws5{word-spacing:-16.949661px;}
.ws8{word-spacing:-16.799664px;}
.wse{word-spacing:-16.703712px;}
.ws6d{word-spacing:-16.679833px;}
.ws15{word-spacing:-16.565849px;}
.ws16{word-spacing:-16.499850px;}
.ws4a{word-spacing:-16.499835px;}
.ws39{word-spacing:-16.187904px;}
.ws49{word-spacing:-15.899841px;}
.ws6b{word-spacing:-15.779842px;}
.ws37{word-spacing:-15.719843px;}
.ws1e{word-spacing:-15.599844px;}
.ws20{word-spacing:-15.539845px;}
.ws2c{word-spacing:-15.479845px;}
.ws22{word-spacing:-15.419846px;}
.ws21{word-spacing:-15.359846px;}
.ws51{word-spacing:-15.179848px;}
.ws1f{word-spacing:-15.119849px;}
.ws27{word-spacing:-15.062557px;}
.ws2f{word-spacing:-15.062484px;}
.ws71{word-spacing:-15.062431px;}
.ws34{word-spacing:-15.062386px;}
.ws73{word-spacing:-15.062285px;}
.ws72{word-spacing:-15.062267px;}
.ws74{word-spacing:-15.062125px;}
.ws6f{word-spacing:-15.061625px;}
.ws54{word-spacing:-15.061126px;}
.ws70{word-spacing:-15.061105px;}
.ws1a{word-spacing:-15.059849px;}
.ws33{word-spacing:-15.058312px;}
.ws57{word-spacing:-15.057268px;}
.ws36{word-spacing:-15.047010px;}
.ws29{word-spacing:-15.005136px;}
.ws19{word-spacing:-14.999850px;}
.ws2b{word-spacing:-14.999136px;}
.ws35{word-spacing:-14.999010px;}
.ws25{word-spacing:-14.998848px;}
.ws67{word-spacing:-14.998775px;}
.ws28{word-spacing:-14.998631px;}
.ws4{word-spacing:-14.879814px;}
.ws59{word-spacing:-14.453568px;}
.ws1d{word-spacing:-14.399856px;}
.ws1c{word-spacing:-13.967825px;}
.ws3a{word-spacing:-13.553849px;}
.ws62{word-spacing:-13.552618px;}
.ws60{word-spacing:-13.504378px;}
.ws40{word-spacing:-13.499850px;}
.ws61{word-spacing:-13.498619px;}
.ws5e{word-spacing:-13.498378px;}
.ws48{word-spacing:-12.623842px;}
.ws7a{word-spacing:-12.335846px;}
.ws1{word-spacing:-12.047849px;}
.ws32{word-spacing:-12.004770px;}
.ws80{word-spacing:-12.003600px;}
.ws10{word-spacing:-11.999850px;}
.ws78{word-spacing:-11.955734px;}
.ws75{word-spacing:-11.567855px;}
.ws7f{word-spacing:-11.565784px;}
.ws7b{word-spacing:-11.524469px;}
.ws7e{word-spacing:-11.524442px;}
.ws82{word-spacing:-11.523887px;}
.ws0{word-spacing:-11.519856px;}
.ws7c{word-spacing:-10.612118px;}
.ws68{word-spacing:-10.579464px;}
.ws6{word-spacing:-10.240649px;}
.ws9{word-spacing:-10.199850px;}
.ws56{word-spacing:-9.467130px;}
.ws52{word-spacing:-9.425130px;}
.ws55{word-spacing:-9.005130px;}
.ws2d{word-spacing:-8.999130px;}
.ws5b{word-spacing:-7.558012px;}
.ws58{word-spacing:-7.526586px;}
.ws7{word-spacing:-5.639887px;}
.ws2e{word-spacing:-3.449940px;}
.ws6a{word-spacing:-3.445464px;}
.ws2a{word-spacing:-3.444132px;}
.ws5c{word-spacing:-3.443940px;}
.ws53{word-spacing:-3.403308px;}
.ws3e{word-spacing:-2.805719px;}
.ws5d{word-spacing:-2.805118px;}
.ws43{word-spacing:-2.804344px;}
.ws41{word-spacing:-2.799719px;}
.ws4c{word-spacing:-2.799118px;}
.ws3d{word-spacing:-2.797746px;}
.ws3b{word-spacing:-2.767177px;}
.ws4b{word-spacing:-2.161306px;}
.ws65{word-spacing:-2.158771px;}
.ws47{word-spacing:-2.157552px;}
.ws38{word-spacing:-2.155306px;}
.ws66{word-spacing:-2.125046px;}
.wsd{word-spacing:-0.059999px;}
.ws3f{word-spacing:-0.053999px;}
.ws31{word-spacing:-0.047999px;}
.ws24{word-spacing:-0.041999px;}
.ws5f{word-spacing:-0.035999px;}
.wsf{word-spacing:0.000000px;}
.ws69{word-spacing:13.259867px;}
.ws46{word-spacing:181.166306px;}
.ws3c{word-spacing:181.213634px;}
.ws4d{word-spacing:187.945634px;}
.ws63{word-spacing:205.969516px;}
.ws64{word-spacing:226.975283px;}
.ws4e{word-spacing:237.373516px;}
.ws50{word-spacing:248.713390px;}
.ws45{word-spacing:257.563152px;}
.ws4f{word-spacing:258.379283px;}
.ws44{word-spacing:420.564510px;}
._9{margin-left:-6.947941px;}
._7{margin-left:-5.810600px;}
._4{margin-left:-4.211953px;}
._6{margin-left:-3.119961px;}
._2{margin-left:-2.051977px;}
._5{margin-left:-1.007987px;}
._a{width:1.001983px;}
._3{width:2.051977px;}
._d{width:3.147419px;}
._33{width:5.466144px;}
._e{width:10.556175px;}
._f{width:11.620556px;}
._b{width:12.754982px;}
._0{width:14.543818px;}
._8{width:16.175849px;}
._34{width:18.000732px;}
._32{width:20.277543px;}
._27{width:25.853723px;}
._28{width:101.734870px;}
._2a{width:113.182742px;}
._29{width:163.856451px;}
._11{width:207.193706px;}
._13{width:238.610597px;}
._10{width:273.404150px;}
._12{width:278.149228px;}
._15{width:283.482864px;}
._19{width:289.975097px;}
._1c{width:297.967008px;}
._1d{width:299.640989px;}
._22{width:303.979706px;}
._30{width:307.866720px;}
._14{width:314.917008px;}
._21{width:322.412150px;}
._2b{width:329.568720px;}
._2c{width:341.527008px;}
._2f{width:349.021008px;}
._2e{width:357.217008px;}
._31{width:363.815722px;}
._2d{width:371.832864px;}
._24{width:411.703008px;}
._23{width:418.182720px;}
._25{width:430.644864px;}
._1a{width:433.566720px;}
._26{width:457.050859px;}
._17{width:524.898576px;}
._16{width:550.826952px;}
._18{width:570.738576px;}
._20{width:576.744288px;}
._1b{width:615.571008px;}
._1f{width:640.627018px;}
._1e{width:667.410720px;}
._1{width:1194.043073px;}
._c{width:1727.509073px;}
.fc3{color:rgb(167,208,57);}
.fc2{color:rgb(210,32,39);}
.fc1{color:rgb(47,122,181);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.999400px;}
.fs11{font-size:30.111600px;}
.fse{font-size:33.724800px;}
.fs6{font-size:34.799400px;}
.fs7{font-size:35.999400px;}
.fs8{font-size:37.799400px;}
.fs10{font-size:37.940400px;}
.fs3{font-size:40.799400px;}
.fsd{font-size:41.999400px;}
.fsc{font-size:42.156000px;}
.fsa{font-size:46.371600px;}
.fs0{font-size:47.999400px;}
.fsf{font-size:53.999400px;}
.fs4{font-size:59.999400px;}
.fs9{font-size:65.999400px;}
.fsb{font-size:71.999400px;}
.fs5{font-size:75.881400px;}
.fs1{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yd0{bottom:39.301500px;}
.y7d{bottom:39.391500px;}
.yac{bottom:39.481500px;}
.yd9{bottom:39.571500px;}
.y43{bottom:40.411500px;}
.y7c{bottom:71.053500px;}
.y129{bottom:86.053500px;}
.y42{bottom:89.365500px;}
.y7b{bottom:89.803500px;}
.y128{bottom:101.053500px;}
.y41{bottom:108.115500px;}
.y7a{bottom:108.553500px;}
.y127{bottom:116.053500px;}
.y40{bottom:126.865500px;}
.y79{bottom:127.303500px;}
.y126{bottom:131.053500px;}
.y3f{bottom:145.615500px;}
.y78{bottom:146.053500px;}
.y125{bottom:161.053500px;}
.y3e{bottom:164.365500px;}
.y77{bottom:164.803500px;}
.y124{bottom:176.053500px;}
.y3d{bottom:183.115500px;}
.y76{bottom:183.553500px;}
.y123{bottom:191.053500px;}
.y3c{bottom:201.865500px;}
.y75{bottom:202.303500px;}
.y122{bottom:206.053500px;}
.y3b{bottom:220.615500px;}
.y74{bottom:221.053500px;}
.y121{bottom:236.053500px;}
.y3a{bottom:239.365500px;}
.y73{bottom:239.803500px;}
.y120{bottom:251.053500px;}
.y39{bottom:258.115500px;}
.y72{bottom:258.553500px;}
.y11f{bottom:266.053500px;}
.y38{bottom:276.865500px;}
.yfa{bottom:277.233000px;}
.y71{bottom:277.303500px;}
.y11e{bottom:281.053500px;}
.ya4{bottom:296.053500px;}
.y70{bottom:296.202000px;}
.yb7{bottom:305.956500px;}
.y11d{bottom:311.053500px;}
.yf9{bottom:313.071000px;}
.y37{bottom:314.295000px;}
.ya3{bottom:314.803500px;}
.yb6{bottom:323.560500px;}
.y11c{bottom:326.053500px;}
.yf8{bottom:331.821000px;}
.ya2{bottom:333.553500px;}
.y6f{bottom:333.633000px;}
.yb5{bottom:340.060500px;}
.y11b{bottom:341.053500px;}
.ye8{bottom:341.197500px;}
.yf7{bottom:350.571000px;}
.ya1{bottom:352.303500px;}
.y11a{bottom:356.053500px;}
.yb4{bottom:356.560500px;}
.ye7{bottom:357.697500px;}
.yf6{bottom:369.321000px;}
.ya0{bottom:371.053500px;}
.yb3{bottom:373.060500px;}
.y36{bottom:377.100000px;}
.y119{bottom:386.053500px;}
.ye4{bottom:387.426000px;}
.yf5{bottom:388.071000px;}
.yb2{bottom:389.560500px;}
.y9f{bottom:389.803500px;}
.y6e{bottom:390.373500px;}
.y35{bottom:397.350000px;}
.y118{bottom:401.052000px;}
.ye5{bottom:403.926000px;}
.yf4{bottom:406.821000px;}
.y9e{bottom:408.553500px;}
.y6d{bottom:409.123500px;}
.y117{bottom:416.052000px;}
.y34{bottom:417.600000px;}
.yaf{bottom:419.287500px;}
.ye6{bottom:420.426000px;}
.yf3{bottom:425.571000px;}
.yab{bottom:427.303500px;}
.y6c{bottom:427.873500px;}
.y116{bottom:431.052000px;}
.yb0{bottom:435.787500px;}
.y33{bottom:437.850000px;}
.yf2{bottom:439.147500px;}
.yf1{bottom:444.321000px;}
.ye3{bottom:445.789500px;}
.y9d{bottom:445.983000px;}
.y115{bottom:446.052000px;}
.ycf{bottom:446.053500px;}
.y6b{bottom:446.623500px;}
.yb8{bottom:450.063000px;}
.yb1{bottom:452.287500px;}
.y32{bottom:458.100000px;}
.y114{bottom:461.052000px;}
.yf0{bottom:464.595000px;}
.yce{bottom:464.803500px;}
.y6a{bottom:465.373500px;}
.y113{bottom:476.052000px;}
.ye2{bottom:478.159500px;}
.yae{bottom:478.287000px;}
.y31{bottom:478.350000px;}
.ye1{bottom:481.596000px;}
.yef{bottom:483.345000px;}
.y9c{bottom:483.492000px;}
.ycd{bottom:483.553500px;}
.y69{bottom:484.123500px;}
.ydf{bottom:487.798500px;}
.y112{bottom:491.052000px;}
.ye0{bottom:493.906500px;}
.yaa{bottom:494.050500px;}
.y30{bottom:498.600000px;}
.yee{bottom:502.095000px;}
.y9b{bottom:502.242000px;}
.ycc{bottom:502.303500px;}
.y68{bottom:502.873500px;}
.y111{bottom:506.052000px;}
.ya9{bottom:507.550500px;}
.yde{bottom:511.902000px;}
.y2f{bottom:518.850000px;}
.yed{bottom:520.845000px;}
.y9a{bottom:520.992000px;}
.ya8{bottom:521.050500px;}
.y110{bottom:521.052000px;}
.ycb{bottom:521.053500px;}
.y67{bottom:521.623500px;}
.ydd{bottom:530.652000px;}
.ya7{bottom:534.550500px;}
.y10f{bottom:536.052000px;}
.y2e{bottom:539.100000px;}
.yec{bottom:539.595000px;}
.y99{bottom:539.742000px;}
.yca{bottom:539.803500px;}
.y66{bottom:540.373500px;}
.y10e{bottom:551.052000px;}
.yc9{bottom:558.553500px;}
.y98{bottom:558.640500px;}
.y65{bottom:559.123500px;}
.y2d{bottom:559.350000px;}
.y10d{bottom:566.052000px;}
.yc8{bottom:577.303500px;}
.y64{bottom:577.873500px;}
.y2c{bottom:579.600000px;}
.yc7{bottom:596.053500px;}
.y97{bottom:596.149500px;}
.y63{bottom:596.623500px;}
.ydc{bottom:599.283000px;}
.y10c{bottom:599.733000px;}
.y2b{bottom:599.850000px;}
.yeb{bottom:601.225500px;}
.ydb{bottom:612.783000px;}
.yea{bottom:614.725500px;}
.yc6{bottom:614.803500px;}
.y96{bottom:614.899500px;}
.y62{bottom:615.373500px;}
.y2a{bottom:620.100000px;}
.yda{bottom:626.283000px;}
.ye9{bottom:628.225500px;}
.yd8{bottom:633.103500px;}
.yc5{bottom:633.553500px;}
.y95{bottom:633.649500px;}
.y61{bottom:634.123500px;}
.y10b{bottom:636.507000px;}
.y29{bottom:640.350000px;}
.y145{bottom:649.123500px;}
.yd7{bottom:649.603500px;}
.yc4{bottom:652.303500px;}
.y94{bottom:652.399500px;}
.y60{bottom:652.873500px;}
.y10a{bottom:655.257000px;}
.y28{bottom:660.600000px;}
.y144{bottom:664.123500px;}
.yd6{bottom:666.103500px;}
.yc3{bottom:671.053500px;}
.y93{bottom:671.149500px;}
.y5f{bottom:671.623500px;}
.y109{bottom:674.007000px;}
.y143{bottom:679.123500px;}
.y27{bottom:680.850000px;}
.yc2{bottom:689.803500px;}
.y92{bottom:689.899500px;}
.y5e{bottom:690.373500px;}
.y108{bottom:692.757000px;}
.y142{bottom:694.123500px;}
.yd4{bottom:695.832000px;}
.y26{bottom:701.100000px;}
.yc1{bottom:708.553500px;}
.y91{bottom:708.798000px;}
.y5d{bottom:709.123500px;}
.y107{bottom:711.507000px;}
.yd5{bottom:712.332000px;}
.yad{bottom:714.337500px;}
.y16{bottom:720.787500px;}
.y25{bottom:721.350000px;}
.y141{bottom:724.123500px;}
.yc0{bottom:727.303500px;}
.y5c{bottom:727.873500px;}
.y106{bottom:730.257000px;}
.y15{bottom:732.787500px;}
.yd3{bottom:738.229500px;}
.y140{bottom:739.123500px;}
.y24{bottom:741.600000px;}
.y14{bottom:744.787500px;}
.ybf{bottom:746.053500px;}
.y90{bottom:746.307000px;}
.y5b{bottom:746.623500px;}
.y105{bottom:749.007000px;}
.y13f{bottom:754.123500px;}
.y13{bottom:756.787500px;}
.y23{bottom:761.850000px;}
.ybe{bottom:764.803500px;}
.y8f{bottom:765.057000px;}
.y5a{bottom:765.373500px;}
.y104{bottom:767.757000px;}
.y12{bottom:768.787500px;}
.y13e{bottom:769.123500px;}
.y11{bottom:780.787500px;}
.y22{bottom:782.100000px;}
.ybd{bottom:783.553500px;}
.y8e{bottom:783.807000px;}
.y59{bottom:784.123500px;}
.yd2{bottom:789.951000px;}
.y10{bottom:798.765000px;}
.y13d{bottom:799.123500px;}
.ybc{bottom:802.303500px;}
.y21{bottom:802.350000px;}
.y8d{bottom:802.557000px;}
.y58{bottom:802.873500px;}
.yd1{bottom:803.451000px;}
.y103{bottom:805.188000px;}
.yf{bottom:810.765000px;}
.y13c{bottom:814.123500px;}
.y8c{bottom:821.307000px;}
.y57{bottom:821.623500px;}
.ye{bottom:822.765000px;}
.y13b{bottom:829.123500px;}
.yd{bottom:834.765000px;}
.y8b{bottom:840.057000px;}
.y56{bottom:840.373500px;}
.y102{bottom:841.962000px;}
.y13a{bottom:844.123500px;}
.yc{bottom:846.765000px;}
.ya6{bottom:855.964500px;}
.y20{bottom:856.648500px;}
.y8a{bottom:858.957000px;}
.y55{bottom:859.123500px;}
.y101{bottom:860.712000px;}
.ybb{bottom:866.976000px;}
.ya5{bottom:869.464500px;}
.y139{bottom:874.123500px;}
.y54{bottom:877.873500px;}
.y100{bottom:879.462000px;}
.yba{bottom:880.476000px;}
.y1f{bottom:882.270000px;}
.yb{bottom:882.328500px;}
.y138{bottom:889.123500px;}
.yb9{bottom:893.976000px;}
.ya{bottom:894.651000px;}
.y89{bottom:896.464500px;}
.y53{bottom:896.623500px;}
.yff{bottom:898.212000px;}
.y137{bottom:904.123500px;}
.y1e{bottom:909.384000px;}
.y9{bottom:914.152500px;}
.y88{bottom:915.214500px;}
.y52{bottom:915.373500px;}
.yfe{bottom:916.962000px;}
.y136{bottom:919.123500px;}
.y1d{bottom:923.637000px;}
.y8{bottom:926.017500px;}
.y87{bottom:933.964500px;}
.y51{bottom:934.123500px;}
.y1c{bottom:938.637000px;}
.y7{bottom:945.517500px;}
.y135{bottom:949.123500px;}
.y86{bottom:952.714500px;}
.y50{bottom:952.873500px;}
.yfd{bottom:954.393000px;}
.y1b{bottom:954.876000px;}
.y6{bottom:957.382500px;}
.y134{bottom:964.123500px;}
.y85{bottom:971.464500px;}
.y4f{bottom:971.623500px;}
.y1a{bottom:972.876000px;}
.y5{bottom:976.882500px;}
.y133{bottom:979.123500px;}
.y4{bottom:988.683000px;}
.y84{bottom:990.214500px;}
.y4e{bottom:990.373500px;}
.yfc{bottom:991.167000px;}
.y132{bottom:994.123500px;}
.y83{bottom:1008.964500px;}
.y4d{bottom:1009.123500px;}
.y19{bottom:1009.641000px;}
.y131{bottom:1024.123500px;}
.y3{bottom:1024.515000px;}
.y82{bottom:1027.714500px;}
.y4c{bottom:1027.873500px;}
.yfb{bottom:1028.598000px;}
.y130{bottom:1039.123500px;}
.y18{bottom:1041.141000px;}
.y81{bottom:1046.464500px;}
.y4b{bottom:1046.623500px;}
.y12f{bottom:1054.123500px;}
.y80{bottom:1065.214500px;}
.y4a{bottom:1065.373500px;}
.y12e{bottom:1069.123500px;}
.y17{bottom:1081.944000px;}
.y7f{bottom:1083.964500px;}
.y49{bottom:1084.123500px;}
.y12d{bottom:1099.123500px;}
.y7e{bottom:1102.864500px;}
.y48{bottom:1102.873500px;}
.y12c{bottom:1114.123500px;}
.y47{bottom:1121.623500px;}
.y12b{bottom:1129.123500px;}
.y46{bottom:1140.373500px;}
.y12a{bottom:1144.123500px;}
.y2{bottom:1151.571000px;}
.y45{bottom:1159.123500px;}
.y1{bottom:1196.496000px;}
.y44{bottom:1211.496000px;}
.ha{height:17.171714px;}
.h5{height:20.999580px;}
.h1b{height:21.379236px;}
.h9{height:26.837574px;}
.h6{height:28.967574px;}
.h4{height:33.599580px;}
.h2{height:34.079574px;}
.h12{height:34.115714px;}
.h1c{height:36.205236px;}
.h17{height:38.339574px;}
.h18{height:40.109714px;}
.h16{height:41.147543px;}
.h7{height:41.999580px;}
.hd{height:42.599574px;}
.h10{height:44.999550px;}
.h11{height:45.719543px;}
.hb{height:46.859574px;}
.h1f{height:47.138200px;}
.h8{height:47.723574px;}
.h19{height:49.875684px;}
.h15{height:49.881684px;}
.hc{height:51.119574px;}
.he{height:51.698760px;}
.hf{height:51.704760px;}
.h1d{height:60.599550px;}
.h1e{height:65.693550px;}
.h3{height:75.599160px;}
.h1a{height:75.919236px;}
.h13{height:892.920000px;}
.h14{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x13{left:39.571500px;}
.x2{left:63.780000px;}
.x12{left:67.317000px;}
.x7{left:101.268000px;}
.x1c{left:120.261000px;}
.x8{left:164.488500px;}
.x1{left:178.582500px;}
.x28{left:184.362000px;}
.x5{left:193.975500px;}
.x3{left:200.998500px;}
.x29{left:203.502000px;}
.x15{left:255.942000px;}
.x14{left:257.163000px;}
.x26{left:291.559500px;}
.x27{left:439.257000px;}
.x4{left:442.857000px;}
.x1e{left:451.492500px;}
.x1d{left:458.403000px;}
.x19{left:507.301500px;}
.x1a{left:510.726000px;}
.x18{left:511.890000px;}
.x20{left:563.476500px;}
.x1b{left:567.972000px;}
.x1f{left:570.387000px;}
.xa{left:624.102000px;}
.x9{left:636.295500px;}
.x17{left:729.082500px;}
.x16{left:732.225000px;}
.xb{left:767.419500px;}
.xc{left:773.242500px;}
.xe{left:921.450000px;}
.xd{left:924.594000px;}
.x22{left:980.254500px;}
.x21{left:989.878500px;}
.x10{left:1065.777000px;}
.x11{left:1074.817500px;}
.xf{left:1078.744500px;}
.x24{left:1092.238500px;}
.x25{left:1096.596000px;}
.x23{left:1101.861000px;}
.x6{left:1211.496000px;}
@media print{
.v4{vertical-align:-21.253333pt;}
.v3{vertical-align:-18.597333pt;}
.v1{vertical-align:-14.186667pt;}
.v5{vertical-align:-8.762667pt;}
.v8{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:13.178667pt;}
.v7{vertical-align:15.061333pt;}
.vd{vertical-align:18.394667pt;}
.v6{vertical-align:19.349333pt;}
.v2{vertical-align:20.458667pt;}
.vc{vertical-align:25.866667pt;}
.v9{vertical-align:32.384000pt;}
.va{vertical-align:48.480000pt;}
.ls14{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000128pt;}
.ls2b{letter-spacing:0.000171pt;}
.ls18{letter-spacing:0.000197pt;}
.ls5c{letter-spacing:0.000207pt;}
.ls9{letter-spacing:0.000256pt;}
.ls10{letter-spacing:0.000267pt;}
.ls68{letter-spacing:0.000276pt;}
.ls27{letter-spacing:0.000321pt;}
.ls2c{letter-spacing:0.000324pt;}
.ls5f{letter-spacing:0.000343pt;}
.ls5b{letter-spacing:0.000349pt;}
.ls6b{letter-spacing:0.000353pt;}
.ls2a{letter-spacing:0.000385pt;}
.ls15{letter-spacing:0.000397pt;}
.ls23{letter-spacing:0.000415pt;}
.ls4a{letter-spacing:0.000514pt;}
.ls8{letter-spacing:0.000533pt;}
.ls4c{letter-spacing:0.001996pt;}
.ls38{letter-spacing:0.002474pt;}
.ls4d{letter-spacing:0.002560pt;}
.ls2f{letter-spacing:0.002773pt;}
.ls57{letter-spacing:0.002933pt;}
.ls7{letter-spacing:0.003541pt;}
.ls36{letter-spacing:0.005655pt;}
.ls32{letter-spacing:0.005719pt;}
.ls28{letter-spacing:0.010763pt;}
.ls35{letter-spacing:0.523019pt;}
.ls2d{letter-spacing:0.528352pt;}
.ls45{letter-spacing:0.746956pt;}
.ls3{letter-spacing:1.599968pt;}
.ls2{letter-spacing:1.733299pt;}
.ls12{letter-spacing:2.653440pt;}
.ls4e{letter-spacing:2.654207pt;}
.ls4b{letter-spacing:2.654763pt;}
.ls24{letter-spacing:2.655779pt;}
.ls50{letter-spacing:2.656085pt;}
.ls21{letter-spacing:2.656352pt;}
.ls2e{letter-spacing:2.658027pt;}
.ls11{letter-spacing:2.658773pt;}
.ls37{letter-spacing:2.659541pt;}
.ls59{letter-spacing:2.660096pt;}
.ls67{letter-spacing:2.660506pt;}
.ls25{letter-spacing:2.661112pt;}
.ls66{letter-spacing:2.661419pt;}
.ls33{letter-spacing:2.661685pt;}
.ls1{letter-spacing:2.773299pt;}
.ls49{letter-spacing:2.832173pt;}
.ls20{letter-spacing:3.146840pt;}
.ls3c{letter-spacing:3.200322pt;}
.ls4{letter-spacing:3.466632pt;}
.ls48{letter-spacing:4.320349pt;}
.ls1f{letter-spacing:4.795016pt;}
.ls22{letter-spacing:4.800349pt;}
.ls58{letter-spacing:6.157578pt;}
.ls5e{letter-spacing:8.891081pt;}
.ls69{letter-spacing:9.808261pt;}
.ls39{letter-spacing:9.812707pt;}
.ls6c{letter-spacing:9.813461pt;}
.ls3a{letter-spacing:9.813589pt;}
.ls0{letter-spacing:9.813595pt;}
.ls3b{letter-spacing:9.813665pt;}
.ls16{letter-spacing:11.733461pt;}
.lsa{letter-spacing:11.733867pt;}
.ls56{letter-spacing:11.888256pt;}
.ls1a{letter-spacing:11.984128pt;}
.ls54{letter-spacing:12.218795pt;}
.ls44{letter-spacing:12.219081pt;}
.ls43{letter-spacing:12.224197pt;}
.ls41{letter-spacing:12.224338pt;}
.ls42{letter-spacing:12.224415pt;}
.ls1c{letter-spacing:12.261461pt;}
.ls31{letter-spacing:12.261748pt;}
.ls63{letter-spacing:12.261867pt;}
.ls1e{letter-spacing:12.266795pt;}
.ls62{letter-spacing:12.266917pt;}
.ls3e{letter-spacing:12.266923pt;}
.ls5a{letter-spacing:12.266945pt;}
.ls55{letter-spacing:12.266962pt;}
.ls3f{letter-spacing:12.266991pt;}
.ls3d{letter-spacing:12.267004pt;}
.ls26{letter-spacing:12.267081pt;}
.ls64{letter-spacing:12.267200pt;}
.ls29{letter-spacing:12.272096pt;}
.ls60{letter-spacing:12.426907pt;}
.ls65{letter-spacing:12.469419pt;}
.ls6a{letter-spacing:12.473839pt;}
.ls47{letter-spacing:12.474214pt;}
.ls4f{letter-spacing:12.474752pt;}
.ls30{letter-spacing:13.013578pt;}
.ls19{letter-spacing:14.453685pt;}
.ls1b{letter-spacing:14.640352pt;}
.ls17{letter-spacing:14.850773pt;}
.ls53{letter-spacing:14.869685pt;}
.ls52{letter-spacing:14.875019pt;}
.ls13{letter-spacing:14.920107pt;}
.ls1d{letter-spacing:14.923019pt;}
.ls46{letter-spacing:14.923435pt;}
.lsf{letter-spacing:14.925440pt;}
.ls51{letter-spacing:14.928352pt;}
.ls34{letter-spacing:15.445685pt;}
.ls40{letter-spacing:15.461655pt;}
.ls61{letter-spacing:15.466989pt;}
.lsd{letter-spacing:16.145451pt;}
.lse{letter-spacing:16.150784pt;}
.lsc{letter-spacing:19.406207pt;}
.lsb{letter-spacing:23.722923pt;}
.ls5{letter-spacing:26.658315pt;}
.ls5d{letter-spacing:105.758965pt;}
.ws6c{word-spacing:-48.895593pt;}
.ws14{word-spacing:-44.820926pt;}
.ws6e{word-spacing:-36.159699pt;}
.ws18{word-spacing:-36.095699pt;}
.ws12{word-spacing:-32.596926pt;}
.wsa{word-spacing:-30.133032pt;}
.ws26{word-spacing:-30.079699pt;}
.ws17{word-spacing:-28.159744pt;}
.ws1b{word-spacing:-25.599744pt;}
.wsb{word-spacing:-24.575727pt;}
.ws30{word-spacing:-24.106365pt;}
.ws13{word-spacing:-24.103947pt;}
.wsc{word-spacing:-24.095732pt;}
.ws11{word-spacing:-24.061985pt;}
.ws3{word-spacing:-23.999733pt;}
.ws42{word-spacing:-23.039744pt;}
.ws79{word-spacing:-22.788403pt;}
.ws81{word-spacing:-22.788142pt;}
.ws77{word-spacing:-22.783070pt;}
.ws76{word-spacing:-22.782809pt;}
.ws7d{word-spacing:-22.781758pt;}
.ws2{word-spacing:-20.479744pt;}
.ws23{word-spacing:-17.986560pt;}
.ws5a{word-spacing:-17.611840pt;}
.ws5{word-spacing:-15.066365pt;}
.ws8{word-spacing:-14.933035pt;}
.wse{word-spacing:-14.847744pt;}
.ws6d{word-spacing:-14.826518pt;}
.ws15{word-spacing:-14.725199pt;}
.ws16{word-spacing:-14.666533pt;}
.ws4a{word-spacing:-14.666520pt;}
.ws39{word-spacing:-14.389248pt;}
.ws49{word-spacing:-14.133192pt;}
.ws6b{word-spacing:-14.026526pt;}
.ws37{word-spacing:-13.973194pt;}
.ws1e{word-spacing:-13.866528pt;}
.ws20{word-spacing:-13.813195pt;}
.ws2c{word-spacing:-13.759862pt;}
.ws22{word-spacing:-13.706530pt;}
.ws21{word-spacing:-13.653197pt;}
.ws51{word-spacing:-13.493198pt;}
.ws1f{word-spacing:-13.439866pt;}
.ws27{word-spacing:-13.388940pt;}
.ws2f{word-spacing:-13.388875pt;}
.ws71{word-spacing:-13.388828pt;}
.ws34{word-spacing:-13.388787pt;}
.ws73{word-spacing:-13.388698pt;}
.ws72{word-spacing:-13.388682pt;}
.ws74{word-spacing:-13.388556pt;}
.ws6f{word-spacing:-13.388111pt;}
.ws54{word-spacing:-13.387667pt;}
.ws70{word-spacing:-13.387649pt;}
.ws1a{word-spacing:-13.386533pt;}
.ws33{word-spacing:-13.385166pt;}
.ws57{word-spacing:-13.384238pt;}
.ws36{word-spacing:-13.375120pt;}
.ws29{word-spacing:-13.337899pt;}
.ws19{word-spacing:-13.333200pt;}
.ws2b{word-spacing:-13.332565pt;}
.ws35{word-spacing:-13.332453pt;}
.ws25{word-spacing:-13.332309pt;}
.ws67{word-spacing:-13.332245pt;}
.ws28{word-spacing:-13.332116pt;}
.ws4{word-spacing:-13.226501pt;}
.ws59{word-spacing:-12.847616pt;}
.ws1d{word-spacing:-12.799872pt;}
.ws1c{word-spacing:-12.415845pt;}
.ws3a{word-spacing:-12.047866pt;}
.ws62{word-spacing:-12.046772pt;}
.ws60{word-spacing:-12.003891pt;}
.ws40{word-spacing:-11.999867pt;}
.ws61{word-spacing:-11.998772pt;}
.ws5e{word-spacing:-11.998558pt;}
.ws48{word-spacing:-11.221193pt;}
.ws7a{word-spacing:-10.965196pt;}
.ws1{word-spacing:-10.709199pt;}
.ws32{word-spacing:-10.670907pt;}
.ws80{word-spacing:-10.669867pt;}
.ws10{word-spacing:-10.666533pt;}
.ws78{word-spacing:-10.627319pt;}
.ws75{word-spacing:-10.282538pt;}
.ws7f{word-spacing:-10.280697pt;}
.ws7b{word-spacing:-10.243973pt;}
.ws7e{word-spacing:-10.243949pt;}
.ws82{word-spacing:-10.243455pt;}
.ws0{word-spacing:-10.239872pt;}
.ws7c{word-spacing:-9.432994pt;}
.ws68{word-spacing:-9.403968pt;}
.ws6{word-spacing:-9.102799pt;}
.ws9{word-spacing:-9.066533pt;}
.ws56{word-spacing:-8.415227pt;}
.ws52{word-spacing:-8.377893pt;}
.ws55{word-spacing:-8.004560pt;}
.ws2d{word-spacing:-7.999227pt;}
.ws5b{word-spacing:-6.718233pt;}
.ws58{word-spacing:-6.690299pt;}
.ws7{word-spacing:-5.013233pt;}
.ws2e{word-spacing:-3.066613pt;}
.ws6a{word-spacing:-3.062635pt;}
.ws2a{word-spacing:-3.061451pt;}
.ws5c{word-spacing:-3.061280pt;}
.ws53{word-spacing:-3.025163pt;}
.ws3e{word-spacing:-2.493972pt;}
.ws5d{word-spacing:-2.493438pt;}
.ws43{word-spacing:-2.492750pt;}
.ws41{word-spacing:-2.488639pt;}
.ws4c{word-spacing:-2.488105pt;}
.ws3d{word-spacing:-2.486885pt;}
.ws3b{word-spacing:-2.459713pt;}
.ws4b{word-spacing:-1.921161pt;}
.ws65{word-spacing:-1.918908pt;}
.ws47{word-spacing:-1.917824pt;}
.ws38{word-spacing:-1.915827pt;}
.ws66{word-spacing:-1.888930pt;}
.wsd{word-spacing:-0.053333pt;}
.ws3f{word-spacing:-0.047999pt;}
.ws31{word-spacing:-0.042666pt;}
.ws24{word-spacing:-0.037333pt;}
.ws5f{word-spacing:-0.031999pt;}
.wsf{word-spacing:0.000000pt;}
.ws69{word-spacing:11.786549pt;}
.ws46{word-spacing:161.036716pt;}
.ws3c{word-spacing:161.078786pt;}
.ws4d{word-spacing:167.062786pt;}
.ws63{word-spacing:183.084014pt;}
.ws64{word-spacing:201.755807pt;}
.ws4e{word-spacing:210.998681pt;}
.ws50{word-spacing:221.078569pt;}
.ws45{word-spacing:228.945024pt;}
.ws4f{word-spacing:229.670474pt;}
.ws44{word-spacing:373.835120pt;}
._9{margin-left:-6.175948pt;}
._7{margin-left:-5.164978pt;}
._4{margin-left:-3.743958pt;}
._6{margin-left:-2.773299pt;}
._2{margin-left:-1.823980pt;}
._5{margin-left:-0.895989pt;}
._a{width:0.890651pt;}
._3{width:1.823980pt;}
._d{width:2.797706pt;}
._33{width:4.858795pt;}
._e{width:9.383267pt;}
._f{width:10.329383pt;}
._b{width:11.337762pt;}
._0{width:12.927838pt;}
._8{width:14.378532pt;}
._34{width:16.000651pt;}
._32{width:18.024483pt;}
._27{width:22.981087pt;}
._28{width:90.430995pt;}
._2a{width:100.606882pt;}
._29{width:145.650179pt;}
._11{width:184.172183pt;}
._13{width:212.098309pt;}
._10{width:243.025911pt;}
._12{width:247.243758pt;}
._15{width:251.984768pt;}
._19{width:257.755642pt;}
._1c{width:264.859563pt;}
._1d{width:266.347546pt;}
._22{width:270.204183pt;}
._30{width:273.659307pt;}
._14{width:279.926229pt;}
._21{width:286.588578pt;}
._2b{width:292.949973pt;}
._2c{width:303.579563pt;}
._2f{width:310.240896pt;}
._2e{width:317.526229pt;}
._31{width:323.391753pt;}
._2d{width:330.518101pt;}
._24{width:365.958229pt;}
._23{width:371.717973pt;}
._25{width:382.795435pt;}
._1a{width:385.392640pt;}
._26{width:406.267430pt;}
._17{width:466.576512pt;}
._16{width:489.623957pt;}
._18{width:507.323179pt;}
._20{width:512.661589pt;}
._1b{width:547.174229pt;}
._1f{width:569.446238pt;}
._1e{width:593.253973pt;}
._1{width:1061.371621pt;}
._c{width:1535.563621pt;}
.fs2{font-size:26.666133pt;}
.fs11{font-size:26.765867pt;}
.fse{font-size:29.977600pt;}
.fs6{font-size:30.932800pt;}
.fs7{font-size:31.999467pt;}
.fs8{font-size:33.599467pt;}
.fs10{font-size:33.724800pt;}
.fs3{font-size:36.266133pt;}
.fsd{font-size:37.332800pt;}
.fsc{font-size:37.472000pt;}
.fsa{font-size:41.219200pt;}
.fs0{font-size:42.666133pt;}
.fsf{font-size:47.999467pt;}
.fs4{font-size:53.332800pt;}
.fs9{font-size:58.666133pt;}
.fsb{font-size:63.999467pt;}
.fs5{font-size:67.450133pt;}
.fs1{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:34.934667pt;}
.y7d{bottom:35.014667pt;}
.yac{bottom:35.094667pt;}
.yd9{bottom:35.174667pt;}
.y43{bottom:35.921333pt;}
.y7c{bottom:63.158667pt;}
.y129{bottom:76.492000pt;}
.y42{bottom:79.436000pt;}
.y7b{bottom:79.825333pt;}
.y128{bottom:89.825333pt;}
.y41{bottom:96.102667pt;}
.y7a{bottom:96.492000pt;}
.y127{bottom:103.158667pt;}
.y40{bottom:112.769333pt;}
.y79{bottom:113.158667pt;}
.y126{bottom:116.492000pt;}
.y3f{bottom:129.436000pt;}
.y78{bottom:129.825333pt;}
.y125{bottom:143.158667pt;}
.y3e{bottom:146.102667pt;}
.y77{bottom:146.492000pt;}
.y124{bottom:156.492000pt;}
.y3d{bottom:162.769333pt;}
.y76{bottom:163.158667pt;}
.y123{bottom:169.825333pt;}
.y3c{bottom:179.436000pt;}
.y75{bottom:179.825333pt;}
.y122{bottom:183.158667pt;}
.y3b{bottom:196.102667pt;}
.y74{bottom:196.492000pt;}
.y121{bottom:209.825333pt;}
.y3a{bottom:212.769333pt;}
.y73{bottom:213.158667pt;}
.y120{bottom:223.158667pt;}
.y39{bottom:229.436000pt;}
.y72{bottom:229.825333pt;}
.y11f{bottom:236.492000pt;}
.y38{bottom:246.102667pt;}
.yfa{bottom:246.429333pt;}
.y71{bottom:246.492000pt;}
.y11e{bottom:249.825333pt;}
.ya4{bottom:263.158667pt;}
.y70{bottom:263.290667pt;}
.yb7{bottom:271.961333pt;}
.y11d{bottom:276.492000pt;}
.yf9{bottom:278.285333pt;}
.y37{bottom:279.373333pt;}
.ya3{bottom:279.825333pt;}
.yb6{bottom:287.609333pt;}
.y11c{bottom:289.825333pt;}
.yf8{bottom:294.952000pt;}
.ya2{bottom:296.492000pt;}
.y6f{bottom:296.562667pt;}
.yb5{bottom:302.276000pt;}
.y11b{bottom:303.158667pt;}
.ye8{bottom:303.286667pt;}
.yf7{bottom:311.618667pt;}
.ya1{bottom:313.158667pt;}
.y11a{bottom:316.492000pt;}
.yb4{bottom:316.942667pt;}
.ye7{bottom:317.953333pt;}
.yf6{bottom:328.285333pt;}
.ya0{bottom:329.825333pt;}
.yb3{bottom:331.609333pt;}
.y36{bottom:335.200000pt;}
.y119{bottom:343.158667pt;}
.ye4{bottom:344.378667pt;}
.yf5{bottom:344.952000pt;}
.yb2{bottom:346.276000pt;}
.y9f{bottom:346.492000pt;}
.y6e{bottom:346.998667pt;}
.y35{bottom:353.200000pt;}
.y118{bottom:356.490667pt;}
.ye5{bottom:359.045333pt;}
.yf4{bottom:361.618667pt;}
.y9e{bottom:363.158667pt;}
.y6d{bottom:363.665333pt;}
.y117{bottom:369.824000pt;}
.y34{bottom:371.200000pt;}
.yaf{bottom:372.700000pt;}
.ye6{bottom:373.712000pt;}
.yf3{bottom:378.285333pt;}
.yab{bottom:379.825333pt;}
.y6c{bottom:380.332000pt;}
.y116{bottom:383.157333pt;}
.yb0{bottom:387.366667pt;}
.y33{bottom:389.200000pt;}
.yf2{bottom:390.353333pt;}
.yf1{bottom:394.952000pt;}
.ye3{bottom:396.257333pt;}
.y9d{bottom:396.429333pt;}
.y115{bottom:396.490667pt;}
.ycf{bottom:396.492000pt;}
.y6b{bottom:396.998667pt;}
.yb8{bottom:400.056000pt;}
.yb1{bottom:402.033333pt;}
.y32{bottom:407.200000pt;}
.y114{bottom:409.824000pt;}
.yf0{bottom:412.973333pt;}
.yce{bottom:413.158667pt;}
.y6a{bottom:413.665333pt;}
.y113{bottom:423.157333pt;}
.ye2{bottom:425.030667pt;}
.yae{bottom:425.144000pt;}
.y31{bottom:425.200000pt;}
.ye1{bottom:428.085333pt;}
.yef{bottom:429.640000pt;}
.y9c{bottom:429.770667pt;}
.ycd{bottom:429.825333pt;}
.y69{bottom:430.332000pt;}
.ydf{bottom:433.598667pt;}
.y112{bottom:436.490667pt;}
.ye0{bottom:439.028000pt;}
.yaa{bottom:439.156000pt;}
.y30{bottom:443.200000pt;}
.yee{bottom:446.306667pt;}
.y9b{bottom:446.437333pt;}
.ycc{bottom:446.492000pt;}
.y68{bottom:446.998667pt;}
.y111{bottom:449.824000pt;}
.ya9{bottom:451.156000pt;}
.yde{bottom:455.024000pt;}
.y2f{bottom:461.200000pt;}
.yed{bottom:462.973333pt;}
.y9a{bottom:463.104000pt;}
.ya8{bottom:463.156000pt;}
.y110{bottom:463.157333pt;}
.ycb{bottom:463.158667pt;}
.y67{bottom:463.665333pt;}
.ydd{bottom:471.690667pt;}
.ya7{bottom:475.156000pt;}
.y10f{bottom:476.490667pt;}
.y2e{bottom:479.200000pt;}
.yec{bottom:479.640000pt;}
.y99{bottom:479.770667pt;}
.yca{bottom:479.825333pt;}
.y66{bottom:480.332000pt;}
.y10e{bottom:489.824000pt;}
.yc9{bottom:496.492000pt;}
.y98{bottom:496.569333pt;}
.y65{bottom:496.998667pt;}
.y2d{bottom:497.200000pt;}
.y10d{bottom:503.157333pt;}
.yc8{bottom:513.158667pt;}
.y64{bottom:513.665333pt;}
.y2c{bottom:515.200000pt;}
.yc7{bottom:529.825333pt;}
.y97{bottom:529.910667pt;}
.y63{bottom:530.332000pt;}
.ydc{bottom:532.696000pt;}
.y10c{bottom:533.096000pt;}
.y2b{bottom:533.200000pt;}
.yeb{bottom:534.422667pt;}
.ydb{bottom:544.696000pt;}
.yea{bottom:546.422667pt;}
.yc6{bottom:546.492000pt;}
.y96{bottom:546.577333pt;}
.y62{bottom:546.998667pt;}
.y2a{bottom:551.200000pt;}
.yda{bottom:556.696000pt;}
.ye9{bottom:558.422667pt;}
.yd8{bottom:562.758667pt;}
.yc5{bottom:563.158667pt;}
.y95{bottom:563.244000pt;}
.y61{bottom:563.665333pt;}
.y10b{bottom:565.784000pt;}
.y29{bottom:569.200000pt;}
.y145{bottom:576.998667pt;}
.yd7{bottom:577.425333pt;}
.yc4{bottom:579.825333pt;}
.y94{bottom:579.910667pt;}
.y60{bottom:580.332000pt;}
.y10a{bottom:582.450667pt;}
.y28{bottom:587.200000pt;}
.y144{bottom:590.332000pt;}
.yd6{bottom:592.092000pt;}
.yc3{bottom:596.492000pt;}
.y93{bottom:596.577333pt;}
.y5f{bottom:596.998667pt;}
.y109{bottom:599.117333pt;}
.y143{bottom:603.665333pt;}
.y27{bottom:605.200000pt;}
.yc2{bottom:613.158667pt;}
.y92{bottom:613.244000pt;}
.y5e{bottom:613.665333pt;}
.y108{bottom:615.784000pt;}
.y142{bottom:616.998667pt;}
.yd4{bottom:618.517333pt;}
.y26{bottom:623.200000pt;}
.yc1{bottom:629.825333pt;}
.y91{bottom:630.042667pt;}
.y5d{bottom:630.332000pt;}
.y107{bottom:632.450667pt;}
.yd5{bottom:633.184000pt;}
.yad{bottom:634.966667pt;}
.y16{bottom:640.700000pt;}
.y25{bottom:641.200000pt;}
.y141{bottom:643.665333pt;}
.yc0{bottom:646.492000pt;}
.y5c{bottom:646.998667pt;}
.y106{bottom:649.117333pt;}
.y15{bottom:651.366667pt;}
.yd3{bottom:656.204000pt;}
.y140{bottom:656.998667pt;}
.y24{bottom:659.200000pt;}
.y14{bottom:662.033333pt;}
.ybf{bottom:663.158667pt;}
.y90{bottom:663.384000pt;}
.y5b{bottom:663.665333pt;}
.y105{bottom:665.784000pt;}
.y13f{bottom:670.332000pt;}
.y13{bottom:672.700000pt;}
.y23{bottom:677.200000pt;}
.ybe{bottom:679.825333pt;}
.y8f{bottom:680.050667pt;}
.y5a{bottom:680.332000pt;}
.y104{bottom:682.450667pt;}
.y12{bottom:683.366667pt;}
.y13e{bottom:683.665333pt;}
.y11{bottom:694.033333pt;}
.y22{bottom:695.200000pt;}
.ybd{bottom:696.492000pt;}
.y8e{bottom:696.717333pt;}
.y59{bottom:696.998667pt;}
.yd2{bottom:702.178667pt;}
.y10{bottom:710.013333pt;}
.y13d{bottom:710.332000pt;}
.ybc{bottom:713.158667pt;}
.y21{bottom:713.200000pt;}
.y8d{bottom:713.384000pt;}
.y58{bottom:713.665333pt;}
.yd1{bottom:714.178667pt;}
.y103{bottom:715.722667pt;}
.yf{bottom:720.680000pt;}
.y13c{bottom:723.665333pt;}
.y8c{bottom:730.050667pt;}
.y57{bottom:730.332000pt;}
.ye{bottom:731.346667pt;}
.y13b{bottom:736.998667pt;}
.yd{bottom:742.013333pt;}
.y8b{bottom:746.717333pt;}
.y56{bottom:746.998667pt;}
.y102{bottom:748.410667pt;}
.y13a{bottom:750.332000pt;}
.yc{bottom:752.680000pt;}
.ya6{bottom:760.857333pt;}
.y20{bottom:761.465333pt;}
.y8a{bottom:763.517333pt;}
.y55{bottom:763.665333pt;}
.y101{bottom:765.077333pt;}
.ybb{bottom:770.645333pt;}
.ya5{bottom:772.857333pt;}
.y139{bottom:776.998667pt;}
.y54{bottom:780.332000pt;}
.y100{bottom:781.744000pt;}
.yba{bottom:782.645333pt;}
.y1f{bottom:784.240000pt;}
.yb{bottom:784.292000pt;}
.y138{bottom:790.332000pt;}
.yb9{bottom:794.645333pt;}
.ya{bottom:795.245333pt;}
.y89{bottom:796.857333pt;}
.y53{bottom:796.998667pt;}
.yff{bottom:798.410667pt;}
.y137{bottom:803.665333pt;}
.y1e{bottom:808.341333pt;}
.y9{bottom:812.580000pt;}
.y88{bottom:813.524000pt;}
.y52{bottom:813.665333pt;}
.yfe{bottom:815.077333pt;}
.y136{bottom:816.998667pt;}
.y1d{bottom:821.010667pt;}
.y8{bottom:823.126667pt;}
.y87{bottom:830.190667pt;}
.y51{bottom:830.332000pt;}
.y1c{bottom:834.344000pt;}
.y7{bottom:840.460000pt;}
.y135{bottom:843.665333pt;}
.y86{bottom:846.857333pt;}
.y50{bottom:846.998667pt;}
.yfd{bottom:848.349333pt;}
.y1b{bottom:848.778667pt;}
.y6{bottom:851.006667pt;}
.y134{bottom:856.998667pt;}
.y85{bottom:863.524000pt;}
.y4f{bottom:863.665333pt;}
.y1a{bottom:864.778667pt;}
.y5{bottom:868.340000pt;}
.y133{bottom:870.332000pt;}
.y4{bottom:878.829333pt;}
.y84{bottom:880.190667pt;}
.y4e{bottom:880.332000pt;}
.yfc{bottom:881.037333pt;}
.y132{bottom:883.665333pt;}
.y83{bottom:896.857333pt;}
.y4d{bottom:896.998667pt;}
.y19{bottom:897.458667pt;}
.y131{bottom:910.332000pt;}
.y3{bottom:910.680000pt;}
.y82{bottom:913.524000pt;}
.y4c{bottom:913.665333pt;}
.yfb{bottom:914.309333pt;}
.y130{bottom:923.665333pt;}
.y18{bottom:925.458667pt;}
.y81{bottom:930.190667pt;}
.y4b{bottom:930.332000pt;}
.y12f{bottom:936.998667pt;}
.y80{bottom:946.857333pt;}
.y4a{bottom:946.998667pt;}
.y12e{bottom:950.332000pt;}
.y17{bottom:961.728000pt;}
.y7f{bottom:963.524000pt;}
.y49{bottom:963.665333pt;}
.y12d{bottom:976.998667pt;}
.y7e{bottom:980.324000pt;}
.y48{bottom:980.332000pt;}
.y12c{bottom:990.332000pt;}
.y47{bottom:996.998667pt;}
.y12b{bottom:1003.665333pt;}
.y46{bottom:1013.665333pt;}
.y12a{bottom:1016.998667pt;}
.y2{bottom:1023.618667pt;}
.y45{bottom:1030.332000pt;}
.y1{bottom:1063.552000pt;}
.y44{bottom:1076.885333pt;}
.ha{height:15.263746pt;}
.h5{height:18.666293pt;}
.h1b{height:19.003765pt;}
.h9{height:23.855621pt;}
.h6{height:25.748955pt;}
.h4{height:29.866293pt;}
.h2{height:30.292955pt;}
.h12{height:30.325079pt;}
.h1c{height:32.182432pt;}
.h17{height:34.079621pt;}
.h18{height:35.653079pt;}
.h16{height:36.575594pt;}
.h7{height:37.332960pt;}
.hd{height:37.866288pt;}
.h10{height:39.999600pt;}
.h11{height:40.639594pt;}
.hb{height:41.652955pt;}
.h1f{height:41.900623pt;}
.h8{height:42.420955pt;}
.h19{height:44.333941pt;}
.h15{height:44.339275pt;}
.hc{height:45.439621pt;}
.he{height:45.954453pt;}
.hf{height:45.959787pt;}
.h1d{height:53.866267pt;}
.h1e{height:58.394267pt;}
.h3{height:67.199253pt;}
.h1a{height:67.483765pt;}
.h13{height:793.706667pt;}
.h14{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x13{left:35.174667pt;}
.x2{left:56.693333pt;}
.x12{left:59.837333pt;}
.x7{left:90.016000pt;}
.x1c{left:106.898667pt;}
.x8{left:146.212000pt;}
.x1{left:158.740000pt;}
.x28{left:163.877333pt;}
.x5{left:172.422667pt;}
.x3{left:178.665333pt;}
.x29{left:180.890667pt;}
.x15{left:227.504000pt;}
.x14{left:228.589333pt;}
.x26{left:259.164000pt;}
.x27{left:390.450667pt;}
.x4{left:393.650667pt;}
.x1e{left:401.326667pt;}
.x1d{left:407.469333pt;}
.x19{left:450.934667pt;}
.x1a{left:453.978667pt;}
.x18{left:455.013333pt;}
.x20{left:500.868000pt;}
.x1b{left:504.864000pt;}
.x1f{left:507.010667pt;}
.xa{left:554.757333pt;}
.x9{left:565.596000pt;}
.x17{left:648.073333pt;}
.x16{left:650.866667pt;}
.xb{left:682.150667pt;}
.xc{left:687.326667pt;}
.xe{left:819.066667pt;}
.xd{left:821.861333pt;}
.x22{left:871.337333pt;}
.x21{left:879.892000pt;}
.x10{left:947.357333pt;}
.x11{left:955.393333pt;}
.xf{left:958.884000pt;}
.x24{left:970.878667pt;}
.x25{left:974.752000pt;}
.x23{left:979.432000pt;}
.x6{left:1076.885333pt;}
}




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