
    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_1c8ba6e864d34dc01b7c3ffb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_16d1baf92c8b03516ec4f516.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.872559;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_eb5ca12c77f1b1d14a91151a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.992000;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_6a2afd37ce6dddb99b353fa5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_491f61926c469989d3f24988.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_f537c6f419461f33f63a313e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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_2ea9c25753f8fdf8c769584b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.713867;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_a5b8c73474d1acff63d4b39a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_2da9c748ce3be63e449a0b56.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_23dd8463ae27ad660883ca25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_adc26f904d079c1af28cac70.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.807129;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_ca1c49d077bcc82ad50e84dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895508;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_ac4477cbfc8c8b08cb43d684.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.780000;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_4ca1bd786d5a960acca5e48a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_fef407f8dc6261e767d35ac7.woff2')format("woff");}.fff{font-family:fff;line-height:1.250000;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_686aa91bb5ab0c893b0f4691.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.873535;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_bdcd6ea962236e606ebacdda.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_af63287ae280810b317dc178.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.746094;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_49e2d60b48c6435e4a413eff.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.973633;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_291145731a220e1d47e2eac9.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.759766;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.243712,-0.055716,0.055693,0.243718,0,0);-ms-transform:matrix(0.243712,-0.055716,0.055693,0.243718,0,0);-webkit-transform:matrix(0.243712,-0.055716,0.055693,0.243718,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);}
.v7{vertical-align:-61.046501px;}
.v4{vertical-align:-9.455797px;}
.v5{vertical-align:-1.102377px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.799988px;}
.v6{vertical-align:14.385024px;}
.v8{vertical-align:50.473243px;}
.v1{vertical-align:103.893356px;}
.v2{vertical-align:223.508898px;}
.ls1e{letter-spacing:-8.522640px;}
.ls13{letter-spacing:-6.486480px;}
.ls1b{letter-spacing:-1.937520px;}
.ls1d{letter-spacing:-1.532160px;}
.ls17{letter-spacing:-1.347840px;}
.ls14{letter-spacing:-1.263600px;}
.ls16{letter-spacing:-1.095120px;}
.ls11{letter-spacing:-0.842400px;}
.ls19{letter-spacing:-0.589680px;}
.ls18{letter-spacing:-0.421200px;}
.lsd{letter-spacing:-0.336960px;}
.ls12{letter-spacing:-0.287280px;}
.ls1c{letter-spacing:-0.252720px;}
.ls1f{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.168480px;}
.lsa{letter-spacing:-0.167760px;}
.lsf{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.003540px;}
.ls23{letter-spacing:0.059880px;}
.ls10{letter-spacing:0.084240px;}
.ls30{letter-spacing:0.097959px;}
.ls0{letter-spacing:0.168480px;}
.ls15{letter-spacing:0.252720px;}
.lsc{letter-spacing:0.287280px;}
.lsb{letter-spacing:0.335520px;}
.ls7{letter-spacing:0.336960px;}
.ls8{letter-spacing:0.421200px;}
.ls1a{letter-spacing:0.673920px;}
.ls9{letter-spacing:17.774640px;}
.ls1{letter-spacing:18.869760px;}
.ls6{letter-spacing:19.206720px;}
.ls2{letter-spacing:22.997520px;}
.ls4{letter-spacing:24.261120px;}
.ls5{letter-spacing:24.850800px;}
.ls3{letter-spacing:35.633520px;}
.ls22{letter-spacing:75.984176px;}
.ls20{letter-spacing:87.978282px;}
.ls29{letter-spacing:107.987546px;}
.ls26{letter-spacing:143.962335px;}
.ls2e{letter-spacing:143.962347px;}
.ls2d{letter-spacing:143.981310px;}
.ls27{letter-spacing:143.987057px;}
.ls28{letter-spacing:143.987457px;}
.ls2b{letter-spacing:143.999585px;}
.ls2c{letter-spacing:143.999645px;}
.ls2a{letter-spacing:144.000017px;}
.ls25{letter-spacing:144.015458px;}
.ls21{letter-spacing:179.180150px;}
.ls24{letter-spacing:904.350786px;}
.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;}
}
.ws74{word-spacing:-52.863868px;}
.ws6e{word-spacing:-45.311888px;}
.ws6b{word-spacing:-33.983916px;}
.ws6f{word-spacing:-30.207926px;}
.ws69{word-spacing:-28.319930px;}
.ws77{word-spacing:-27.663931px;}
.ws78{word-spacing:-27.119933px;}
.ws6d{word-spacing:-26.431934px;}
.ws70{word-spacing:-24.543940px;}
.ws71{word-spacing:-22.655944px;}
.ws76{word-spacing:-22.159945px;}
.ws1{word-spacing:-21.929040px;}
.ws50{word-spacing:-21.641760px;}
.ws51{word-spacing:-21.354480px;}
.ws67{word-spacing:-20.767949px;}
.ws4{word-spacing:-19.122480px;}
.ws2{word-spacing:-19.038240px;}
.ws68{word-spacing:-18.879953px;}
.ws24{word-spacing:-18.869760px;}
.ws3{word-spacing:-18.701280px;}
.ws3e{word-spacing:-17.943120px;}
.ws46{word-spacing:-17.774640px;}
.ws1a{word-spacing:-17.690400px;}
.ws73{word-spacing:-16.991958px;}
.ws75{word-spacing:-15.103963px;}
.ws7a{word-spacing:-13.295967px;}
.ws7b{word-spacing:-11.079972px;}
.ws79{word-spacing:-10.847973px;}
.ws60{word-spacing:-1.432080px;}
.ws41{word-spacing:-1.347840px;}
.ws5f{word-spacing:-1.179360px;}
.ws62{word-spacing:-1.053360px;}
.ws5b{word-spacing:-0.673920px;}
.ws4a{word-spacing:-0.589680px;}
.ws6a{word-spacing:-0.575999px;}
.ws40{word-spacing:-0.463320px;}
.ws5d{word-spacing:-0.336960px;}
.ws56{word-spacing:-0.287280px;}
.ws57{word-spacing:-0.168480px;}
.ws55{word-spacing:-0.167760px;}
.ws49{word-spacing:-0.143208px;}
.ws58{word-spacing:0.000000px;}
.ws45{word-spacing:0.050544px;}
.ws53{word-spacing:0.126360px;}
.ws43{word-spacing:0.168480px;}
.ws44{word-spacing:0.202176px;}
.ws63{word-spacing:0.252720px;}
.ws5a{word-spacing:0.336960px;}
.ws42{word-spacing:0.345384px;}
.ws5{word-spacing:0.584136px;}
.ws65{word-spacing:0.589680px;}
.ws52{word-spacing:0.673920px;}
.ws5c{word-spacing:0.758160px;}
.ws61{word-spacing:0.842400px;}
.ws47{word-spacing:0.892944px;}
.ws3f{word-spacing:0.901368px;}
.ws64{word-spacing:0.926640px;}
.ws6{word-spacing:0.967176px;}
.ws5e{word-spacing:1.263600px;}
.ws48{word-spacing:1.305720px;}
.ws66{word-spacing:1.404000px;}
.ws59{word-spacing:1.432080px;}
.ws4c{word-spacing:1.453680px;}
.ws0{word-spacing:1.493064px;}
.ws54{word-spacing:1.642680px;}
.ws4b{word-spacing:1.979640px;}
.ws4d{word-spacing:2.864160px;}
.ws18{word-spacing:3.032640px;}
.ws12{word-spacing:3.201120px;}
.wse{word-spacing:3.538080px;}
.ws19{word-spacing:3.554928px;}
.ws36{word-spacing:3.790800px;}
.ws8{word-spacing:3.976128px;}
.ws15{word-spacing:4.228848px;}
.wsc{word-spacing:4.279392px;}
.wsf{word-spacing:4.388904px;}
.ws11{word-spacing:4.397328px;}
.wsd{word-spacing:4.414176px;}
.ws38{word-spacing:4.464720px;}
.ws16{word-spacing:4.523688px;}
.ws7{word-spacing:4.532112px;}
.ws14{word-spacing:4.548960px;}
.ws2f{word-spacing:5.088096px;}
.ws2d{word-spacing:5.138640px;}
.ws32{word-spacing:5.408208px;}
.ws3c{word-spacing:5.492448px;}
.ws10{word-spacing:5.585112px;}
.ws9{word-spacing:5.601960px;}
.ws13{word-spacing:5.610384px;}
.ws3b{word-spacing:5.829408px;}
.ws30{word-spacing:5.846256px;}
.ws3a{word-spacing:5.930496px;}
.ws39{word-spacing:5.955768px;}
.ws31{word-spacing:5.964192px;}
.ws17{word-spacing:6.056856px;}
.ws2b{word-spacing:6.132672px;}
.wsb{word-spacing:6.318000px;}
.ws3d{word-spacing:6.621264px;}
.ws2e{word-spacing:6.781320px;}
.ws33{word-spacing:7.084584px;}
.ws35{word-spacing:7.750080px;}
.ws2c{word-spacing:7.800624px;}
.ws37{word-spacing:8.693568px;}
.ws1c{word-spacing:15.870816px;}
.ws27{word-spacing:16.106688px;}
.ws1d{word-spacing:16.426800px;}
.ws1b{word-spacing:16.603704px;}
.ws22{word-spacing:16.738488px;}
.ws25{word-spacing:16.746912px;}
.ws2a{word-spacing:17.142840px;}
.ws1e{word-spacing:17.193384px;}
.wsa{word-spacing:17.201808px;}
.ws28{word-spacing:17.387136px;}
.ws26{word-spacing:17.403984px;}
.ws21{word-spacing:17.471376px;}
.ws29{word-spacing:17.521920px;}
.ws20{word-spacing:18.583344px;}
.ws34{word-spacing:18.633888px;}
.ws1f{word-spacing:19.181448px;}
.ws23{word-spacing:19.316232px;}
.ws72{word-spacing:475.605164px;}
.ws4e{word-spacing:653.533272px;}
.ws6c{word-spacing:1133.651416px;}
.ws4f{word-spacing:1352.006712px;}
._f{margin-left:-1257.002501px;}
._1f{margin-left:-15.112435px;}
._1{margin-left:-13.756320px;}
._e{margin-left:-11.199972px;}
._10{margin-left:-9.631976px;}
._c{margin-left:-7.991980px;}
._4{margin-left:-6.391512px;}
._18{margin-left:-5.207987px;}
._3{margin-left:-4.151880px;}
._d{margin-left:-2.845269px;}
._0{margin-left:-1.694376px;}
._2{width:1.440504px;}
._5{width:2.837736px;}
._6{width:3.992976px;}
._9{width:5.071248px;}
._8{width:7.160400px;}
._b{width:8.677224px;}
._a{width:20.582136px;}
._7{width:22.978296px;}
._1d{width:31.549198px;}
._1b{width:35.327913px;}
._1c{width:128.832642px;}
._15{width:143.987457px;}
._14{width:378.443639px;}
._11{width:390.582519px;}
._17{width:431.546365px;}
._16{width:490.394200px;}
._19{width:609.564823px;}
._12{width:632.117623px;}
._1a{width:684.926259px;}
._13{width:1023.708325px;}
._20{width:1816.479859px;}
._1e{width:2363.595253px;}
.fc12{color:rgb(127,127,127);}
.fc11{color:rgb(165,165,165);}
.fc10{color:rgb(55,70,75);}
.fcf{color:rgb(0,102,122);}
.fce{color:rgb(47,111,167);}
.fcd{color:rgb(238,116,0);}
.fc0{color:rgb(0,75,156);}
.fc4{color:rgb(2,156,188);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(38,38,38);}
.fc5{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(163,199,23);}
.fc6{color:rgb(255,145,45);}
.fc3{color:rgb(0,156,188);}
.fcc{color:rgb(244,121,32);}
.fc7{color:rgb(10,186,240);}
.fc9{color:rgb(255,0,0);}
.fca{color:rgb(251,188,67);}
.fs3{font-size:36.000000px;}
.fs1a{font-size:39.999900px;}
.fs19{font-size:47.999882px;}
.fsf{font-size:63.999844px;}
.fs7{font-size:71.999822px;}
.fs18{font-size:76.799810px;}
.fs15{font-size:79.759801px;}
.fs9{font-size:79.999801px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:87.999785px;}
.fse{font-size:89.599771px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:95.999763px;}
.fs14{font-size:103.999747px;}
.fsb{font-size:111.999720px;}
.fs10{font-size:119.999704px;}
.fsc{font-size:127.999688px;}
.fs4{font-size:135.999660px;}
.fs12{font-size:143.999645px;}
.fsa{font-size:159.999601px;}
.fs0{font-size:167.760000px;}
.fs16{font-size:167.999585px;}
.fsd{font-size:191.999526px;}
.fs6{font-size:215.999467px;}
.fs17{font-size:223.999439px;}
.fs13{font-size:391.999049px;}
.fs11{font-size:575.998573px;}
.y0{bottom:0.000000px;}
.y9b{bottom:9.963999px;}
.y143{bottom:12.147994px;}
.y114{bottom:12.637413px;}
.y91{bottom:16.326234px;}
.y50{bottom:18.375334px;}
.y140{bottom:18.584658px;}
.y85{bottom:18.767940px;}
.y3f{bottom:19.202909px;}
.y47{bottom:19.202999px;}
.y142{bottom:24.147964px;}
.y49{bottom:25.810940px;}
.y126{bottom:28.974683px;}
.y113{bottom:29.137372px;}
.y12c{bottom:29.727951px;}
.y70{bottom:30.504479px;}
.y2c{bottom:31.202879px;}
.y19{bottom:31.202969px;}
.yb5{bottom:31.650301px;}
.y141{bottom:36.147935px;}
.y16{bottom:36.581860px;}
.y6c{bottom:40.379754px;}
.y9c{bottom:41.853741px;}
.y125{bottom:42.474649px;}
.y4b{bottom:44.348673px;}
.y12b{bottom:46.227910px;}
.yc2{bottom:46.464594px;}
.y56{bottom:50.096880px;}
.y38{bottom:50.890296px;}
.ye1{bottom:51.845021px;}
.y13f{bottom:56.984578px;}
.y124{bottom:57.054613px;}
.yf8{bottom:58.193215px;}
.ycb{bottom:59.506267px;}
.y4f{bottom:61.575227px;}
.ye2{bottom:63.244993px;}
.y5b{bottom:64.024081px;}
.y26{bottom:66.707719px;}
.y44{bottom:68.390361px;}
.y7f{bottom:68.459775px;}
.y6b{bottom:71.579677px;}
.ya9{bottom:72.525470px;}
.y15{bottom:73.493766px;}
.y37{bottom:75.370228px;}
.y88{bottom:76.341045px;}
.y127{bottom:76.486405px;}
.yd3{bottom:77.084559px;}
.y112{bottom:78.483245px;}
.y5c{bottom:78.972531px;}
.yb4{bottom:79.952747px;}
.yc1{bottom:87.864507px;}
.y157{bottom:90.923840px;}
.ye0{bottom:98.884890px;}
.y5a{bottom:100.023989px;}
.y36{bottom:100.378166px;}
.y13e{bottom:103.384489px;}
.y4e{bottom:104.775129px;}
.yca{bottom:112.306137px;}
.yf7{bottom:113.033110px;}
.y14{bottom:113.237400px;}
.y111{bottom:114.483157px;}
.y156{bottom:117.323775px;}
.y43{bottom:117.430231px;}
.yd2{bottom:121.244450px;}
.yb3{bottom:122.481077px;}
.y10{bottom:123.147630px;}
.y7e{bottom:126.059663px;}
.yc0{bottom:129.264405px;}
.y8a{bottom:131.400595px;}
.y155{bottom:143.723709px;}
.y90{bottom:144.374228px;}
.ydf{bottom:145.924744px;}
.y4d{bottom:147.975029px;}
.y3e{bottom:148.560558px;}
.y110{bottom:150.483068px;}
.y153{bottom:151.569755px;}
.yf6{bottom:152.033014px;}
.y13d{bottom:163.784345px;}
.yb2{bottom:165.009422px;}
.yd1{bottom:165.404341px;}
.yf{bottom:166.341690px;}
.y154{bottom:170.123644px;}
.ybf{bottom:170.664318px;}
.ye9{bottom:176.657793px;}
.y3d{bottom:182.160473px;}
.y8f{bottom:182.774118px;}
.y103{bottom:183.479047px;}
.y7d{bottom:183.659566px;}
.y52{bottom:185.470715px;}
.y10f{bottom:186.482979px;}
.y42{bottom:188.923129px;}
.yf5{bottom:191.032918px;}
.ye{bottom:191.550510px;}
.yde{bottom:192.964613px;}
.y152{bottom:192.969653px;}
.y6a{bottom:199.609493px;}
.y134{bottom:201.784246px;}
.yc5{bottom:207.524582px;}
.yb1{bottom:207.537752px;}
.yd0{bottom:209.564232px;}
.ybe{bottom:212.064216px;}
.ya8{bottom:213.500792px;}
.yd{bottom:216.759330px;}
.y40{bottom:218.563836px;}
.y102{bottom:219.478958px;}
.y8e{bottom:221.174011px;}
.y10e{bottom:222.482890px;}
.y86{bottom:227.328036px;}
.yb6{bottom:229.739263px;}
.yf4{bottom:230.032821px;}
.y18{bottom:234.018477px;}
.ydd{bottom:240.004452px;}
.y35{bottom:240.723160px;}
.y7c{bottom:241.259424px;}
.yc{bottom:241.968150px;}
.y119{bottom:243.916067px;}
.y3c{bottom:245.649616px;}
.y133{bottom:248.184157px;}
.yb0{bottom:250.066082px;}
.yc4{bottom:251.684473px;}
.y63{bottom:252.592901px;}
.ybd{bottom:253.464129px;}
.y101{bottom:255.478870px;}
.y4c{bottom:256.736253px;}
.ya7{bottom:257.660653px;}
.y10d{bottom:258.482801px;}
.y8d{bottom:259.573913px;}
.y13c{bottom:264.584126px;}
.yf3{bottom:269.032725px;}
.y118{bottom:272.415997px;}
.y151{bottom:275.769448px;}
.ycf{bottom:275.964103px;}
.y34{bottom:276.083068px;}
.yb{bottom:281.388150px;}
.yea{bottom:284.881071px;}
.y132{bottom:286.584047px;}
.ydc{bottom:287.044351px;}
.y74{bottom:289.777536px;}
.y100{bottom:291.478781px;}
.yaf{bottom:292.594412px;}
.y76{bottom:293.221623px;}
.y11d{bottom:293.972159px;}
.y10c{bottom:294.482712px;}
.y55{bottom:296.353148px;}
.y7b{bottom:298.859266px;}
.y117{bottom:300.915926px;}
.ya6{bottom:301.820544px;}
.y5e{bottom:302.460443px;}
.y62{bottom:302.992769px;}
.y6f{bottom:303.014346px;}
.y6e{bottom:306.014339px;}
.y59{bottom:307.760939px;}
.yf2{bottom:308.032599px;}
.y72{bottom:309.637466px;}
.y13b{bottom:310.983977px;}
.y33{bottom:311.442981px;}
.y9a{bottom:311.669295px;}
.y17{bottom:315.018275px;}
.y150{bottom:317.169331px;}
.ybc{bottom:317.943959px;}
.y11b{bottom:318.598978px;}
.yff{bottom:327.478692px;}
.y10b{bottom:330.482623px;}
.y11e{bottom:332.695553px;}
.ydb{bottom:334.084235px;}
.ya{bottom:334.606410px;}
.y5d{bottom:334.860363px;}
.yae{bottom:335.122757px;}
.y3b{bottom:336.233627px;}
.y84{bottom:339.089923px;}
.y1c{bottom:342.359339px;}
.y87{bottom:342.587883px;}
.y71{bottom:343.237380px;}
.y58{bottom:343.760847px;}
.y25{bottom:344.279337px;}
.y51{bottom:344.697887px;}
.ya5{bottom:345.980405px;}
.y32{bottom:346.802898px;}
.y11a{bottom:347.098907px;}
.y99{bottom:347.669206px;}
.y131{bottom:348.983878px;}
.yc9{bottom:351.708726px;}
.y61{bottom:353.392641px;}
.y7a{bottom:356.459109px;}
.y13a{bottom:357.383842px;}
.yf1{bottom:359.032473px;}
.y67{bottom:359.616888px;}
.y9{bottom:359.815230px;}
.yfe{bottom:363.478603px;}
.y10a{bottom:366.482535px;}
.y83{bottom:367.889846px;}
.y1b{bottom:368.759274px;}
.yce{bottom:369.923811px;}
.ya0{bottom:373.149778px;}
.y6d{bottom:374.009111px;}
.yad{bottom:377.651087px;}
.yda{bottom:381.124118px;}
.y98{bottom:383.669117px;}
.y31{bottom:383.794802px;}
.y8{bottom:385.024050px;}
.y123{bottom:385.712142px;}
.y2b{bottom:388.438880px;}
.ybb{bottom:390.103756px;}
.ya4{bottom:390.140281px;}
.y3a{bottom:396.413959px;}
.y82{bottom:396.689772px;}
.yf0{bottom:398.032377px;}
.yfd{bottom:399.478514px;}
.y14f{bottom:399.969097px;}
.y139{bottom:402.343726px;}
.y109{bottom:402.482446px;}
.y60{bottom:403.792516px;}
.yc8{bottom:404.508581px;}
.y7{bottom:410.232870px;}
.y79{bottom:414.058967px;}
.ycd{bottom:414.083687px;}
.ye8{bottom:417.639098px;}
.y97{bottom:419.669028px;}
.yac{bottom:420.179417px;}
.y81{bottom:425.489704px;}
.y130{bottom:425.783658px;}
.yd9{bottom:428.164002px;}
.y122{bottom:429.872003px;}
.y138{bottom:433.543649px;}
.yba{bottom:434.263632px;}
.y6{bottom:435.441690px;}
.yfc{bottom:435.478425px;}
.y69{bottom:436.004963px;}
.y68{bottom:436.405042px;}
.yef{bottom:437.032280px;}
.y108{bottom:438.482357px;}
.y14e{bottom:441.368987px;}
.ye7{bottom:441.639048px;}
.y2a{bottom:451.158706px;}
.y148{bottom:451.252425px;}
.y80{bottom:454.289633px;}
.y96{bottom:455.668939px;}
.y12a{bottom:455.783592px;}
.yc7{bottom:457.308450px;}
.y5{bottom:460.650510px;}
.y9f{bottom:463.389540px;}
.y12f{bottom:464.183557px;}
.ye6{bottom:468.038981px;}
.yfb{bottom:471.478336px;}
.y121{bottom:474.031879px;}
.y137{bottom:474.183544px;}
.y11c{bottom:474.450933px;}
.y107{bottom:474.482268px;}
.yd8{bottom:475.203894px;}
.y147{bottom:475.252366px;}
.y30{bottom:477.536726px;}
.ycc{bottom:480.483519px;}
.y14d{bottom:482.768872px;}
.y4{bottom:485.859330px;}
.yee{bottom:488.032155px;}
.y95{bottom:491.668851px;}
.y53{bottom:496.217973px;}
.y1e{bottom:499.819876px;}
.y24{bottom:500.103540px;}
.ya3{bottom:503.819997px;}
.yb9{bottom:506.423459px;}
.yfa{bottom:507.478248px;}
.y73{bottom:508.361409px;}
.y75{bottom:508.753043px;}
.yc6{bottom:510.108320px;}
.y1a{bottom:510.141515px;}
.y106{bottom:510.482179px;}
.y12e{bottom:510.583444px;}
.y3{bottom:511.068150px;}
.y29{bottom:513.878546px;}
.yd4{bottom:515.489107px;}
.y129{bottom:518.183424px;}
.y120{bottom:518.191770px;}
.y136{bottom:520.583424px;}
.yd7{bottom:522.243770px;}
.y2f{bottom:523.840614px;}
.y146{bottom:524.132236px;}
.y14c{bottom:524.168768px;}
.y1d{bottom:526.219810px;}
.y46{bottom:526.316322px;}
.y23{bottom:526.503475px;}
.yed{bottom:527.032058px;}
.y94{bottom:527.668762px;}
.ya2{bottom:527.819937px;}
.y116{bottom:528.606304px;}
.y41{bottom:536.270627px;}
.y66{bottom:539.019444px;}
.y54{bottom:542.609310px;}
.y89{bottom:544.104281px;}
.ye5{bottom:546.038781px;}
.y105{bottom:547.142089px;}
.yb8{bottom:550.583341px;}
.y9e{bottom:551.709313px;}
.y2{bottom:554.988150px;}
.y115{bottom:557.106234px;}
.y2e{bottom:562.144512px;}
.y57{bottom:562.486626px;}
.y145{bottom:562.532129px;}
.y93{bottom:563.668668px;}
.y14b{bottom:565.568660px;}
.y48{bottom:568.918570px;}
.y5f{bottom:569.053921px;}
.yd6{bottom:569.283647px;}
.y12d{bottom:570.983289px;}
.ye4{bottom:572.438718px;}
.y28{bottom:576.598389px;}
.ya1{bottom:576.699816px;}
.yc3{bottom:577.283619px;}
.yec{bottom:578.031932px;}
.y128{bottom:578.583274px;}
.y135{bottom:580.983265px;}
.yf9{bottom:587.638053px;}
.y104{bottom:587.641992px;}
.y144{bottom:600.932031px;}
.y8b{bottom:607.732030px;}
.y45{bottom:607.761937px;}
.y2d{bottom:608.448395px;}
.y65{bottom:608.811677px;}
.y78{bottom:608.938473px;}
.y11f{bottom:609.111536px;}
.y13{bottom:610.752180px;}
.yaa{bottom:614.097356px;}
.y4a{bottom:614.935468px;}
.yd5{bottom:616.323526px;}
.yb7{bottom:616.983176px;}
.yeb{bottom:617.031839px;}
.yab{bottom:620.663162px;}
.y92{bottom:627.668506px;}
.y12{bottom:635.961000px;}
.y22{bottom:656.843058px;}
.y20{bottom:658.479392px;}
.y11{bottom:676.881000px;}
.y9d{bottom:680.990563px;}
.y14a{bottom:682.593404px;}
.y1f{bottom:682.959329px;}
.y21{bottom:683.242993px;}
.ye3{bottom:684.998428px;}
.y27{bottom:692.792436px;}
.y64{bottom:704.792406px;}
.y8c{bottom:716.625325px;}
.y39{bottom:717.721152px;}
.y77{bottom:717.921322px;}
.y149{bottom:719.647595px;}
.y1{bottom:739.848150px;}
.h6{height:25.839844px;}
.h2d{height:29.140552px;}
.h2b{height:34.453040px;}
.h2f{height:34.968664px;}
.h2c{height:37.439908px;}
.h23{height:49.919878px;}
.h1f{height:52.452996px;}
.hb{height:56.159861px;}
.h25{height:58.281105px;}
.h24{height:59.903852px;}
.h3{height:60.465234px;}
.h5{height:60.547914px;}
.h1a{height:62.212645px;}
.hd{height:62.399844px;}
.h20{height:64.066250px;}
.h4{height:66.583125px;}
.hc{height:68.639832px;}
.h2{height:68.733984px;}
.h21{height:69.890453px;}
.h9{height:74.879815px;}
.h1c{height:77.874805px;}
.h1d{height:78.706666px;}
.h19{height:81.119803px;}
.h2a{height:83.437294px;}
.h27{height:83.999790px;}
.h26{height:85.148224px;}
.h10{height:87.359781px;}
.h18{height:90.719719px;}
.h2e{height:93.249773px;}
.h11{height:93.599769px;}
.h29{height:94.562264px;}
.h28{height:97.312263px;}
.h17{height:99.839757px;}
.h8{height:106.079735px;}
.h30{height:106.633105px;}
.h13{height:112.319723px;}
.h1{height:120.413672px;}
.he{height:124.799689px;}
.h1e{height:131.039677px;}
.h1b{height:135.999660px;}
.hf{height:149.759630px;}
.ha{height:168.479584px;}
.h22{height:174.719563px;}
.h14{height:191.253137px;}
.h15{height:281.366505px;}
.h16{height:317.108667px;}
.h12{height:455.342622px;}
.h7{height:809.997975px;}
.h0{height:810.000000px;}
.w1{width:1439.996446px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6a{left:13.425164px;}
.x6d{left:23.051124px;}
.x6e{left:25.933005px;}
.x35{left:34.417237px;}
.x5a{left:49.244140px;}
.x87{left:50.397513px;}
.x93{left:52.243967px;}
.x88{left:57.779386px;}
.x18{left:62.820160px;}
.x22{left:65.157240px;}
.x8c{left:67.157314px;}
.x1f{left:69.890063px;}
.x1{left:71.438250px;}
.x29{left:74.251624px;}
.x79{left:79.696036px;}
.x36{left:81.036529px;}
.x7b{left:82.117558px;}
.x3{left:88.169550px;}
.x90{left:89.350486px;}
.x2a{left:95.007636px;}
.x48{left:96.983886px;}
.x56{left:100.589813px;}
.x19{left:103.345120px;}
.x1b{left:106.365390px;}
.x2{left:122.909550px;}
.x4{left:125.066670px;}
.x76{left:127.249771px;}
.x1d{left:129.318581px;}
.x1e{left:131.722484px;}
.x8d{left:137.157141px;}
.x77{left:144.019329px;}
.x7c{left:154.117378px;}
.x1c{left:157.499611px;}
.x20{left:206.819805px;}
.x4d{left:208.119166px;}
.x30{left:209.542793px;}
.x5{left:235.126230px;}
.x71{left:241.239560px;}
.x4e{left:247.521118px;}
.x5b{left:251.585994px;}
.x57{left:274.917091px;}
.x5c{left:276.681979px;}
.x4f{left:282.520877px;}
.x6{left:284.996310px;}
.x4b{left:295.358160px;}
.x84{left:331.530682px;}
.x83{left:358.001452px;}
.x41{left:362.330670px;}
.x58{left:425.440050px;}
.x78{left:432.550122px;}
.x64{left:442.764413px;}
.x39{left:459.237352px;}
.x31{left:477.993620px;}
.x33{left:498.140668px;}
.x66{left:506.624530px;}
.x8{left:522.363570px;}
.x68{left:523.364908px;}
.x26{left:526.498701px;}
.x86{left:532.691570px;}
.x40{left:535.207949px;}
.x67{left:538.565826px;}
.x24{left:539.573178px;}
.x42{left:549.096739px;}
.x85{left:576.472712px;}
.x2b{left:579.936219px;}
.x8b{left:581.065506px;}
.x44{left:596.934310px;}
.x3a{left:605.288691px;}
.x7{left:609.130770px;}
.x23{left:612.301339px;}
.x4c{left:616.097550px;}
.x25{left:622.091815px;}
.x46{left:631.802641px;}
.x47{left:647.444052px;}
.x49{left:649.705057px;}
.x92{left:651.014143px;}
.x45{left:677.431235px;}
.x43{left:688.233746px;}
.x82{left:711.312617px;}
.x80{left:713.733357px;}
.x74{left:734.935153px;}
.x81{left:766.635898px;}
.x89{left:772.120124px;}
.x65{left:778.331639px;}
.x75{left:785.431122px;}
.x8e{left:809.068828px;}
.x3f{left:853.653706px;}
.x8a{left:860.340397px;}
.x7e{left:864.214392px;}
.x3b{left:884.724239px;}
.x3e{left:894.903569px;}
.x37{left:897.391370px;}
.x70{left:898.891878px;}
.x6f{left:902.560822px;}
.x7d{left:906.064664px;}
.x4a{left:916.757438px;}
.x94{left:919.831030px;}
.x72{left:920.912068px;}
.x50{left:925.767439px;}
.xe{left:933.370263px;}
.x51{left:937.767410px;}
.x7a{left:948.371609px;}
.x73{left:955.061149px;}
.xf{left:957.410202px;}
.x91{left:964.214180px;}
.x59{left:983.588563px;}
.x3d{left:988.067453px;}
.x32{left:990.928094px;}
.x3c{left:1006.787390px;}
.x17{left:1010.116497px;}
.xc{left:1027.490198px;}
.x38{left:1043.442710px;}
.xd{left:1047.419029px;}
.x11{left:1050.616964px;}
.x10{left:1055.189829px;}
.x69{left:1079.953685px;}
.x55{left:1097.457180px;}
.x6b{left:1100.532734px;}
.x7f{left:1110.938208px;}
.x54{left:1112.778893px;}
.x2c{left:1118.172690px;}
.xb{left:1123.571082px;}
.x6c{left:1128.555812px;}
.x8f{left:1167.796378px;}
.x28{left:1198.733892px;}
.x2d{left:1207.148421px;}
.x12{left:1210.349317px;}
.x53{left:1226.129740px;}
.x13{left:1228.431418px;}
.x16{left:1231.864554px;}
.x60{left:1238.256511px;}
.xa{left:1239.929790px;}
.x61{left:1261.008476px;}
.x62{left:1264.212481px;}
.x5f{left:1272.948469px;}
.x5e{left:1277.592457px;}
.x9{left:1300.090050px;}
.x14{left:1316.863731px;}
.x15{left:1318.303600px;}
.x52{left:1332.980950px;}
.x34{left:1365.308075px;}
.x63{left:1368.951550px;}
.x2f{left:1379.708070px;}
.x5d{left:1385.129347px;}
.x21{left:1404.929383px;}
.x27{left:1407.929375px;}
.x1a{left:1415.696416px;}
.x2e{left:1416.929353px;}
@media print{
.v7{vertical-align:-54.263557pt;}
.v4{vertical-align:-8.405153pt;}
.v5{vertical-align:-0.979891pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.266656pt;}
.v6{vertical-align:12.786688pt;}
.v8{vertical-align:44.865105pt;}
.v1{vertical-align:92.349649pt;}
.v2{vertical-align:198.674576pt;}
.ls1e{letter-spacing:-7.575680pt;}
.ls13{letter-spacing:-5.765760pt;}
.ls1b{letter-spacing:-1.722240pt;}
.ls1d{letter-spacing:-1.361920pt;}
.ls17{letter-spacing:-1.198080pt;}
.ls14{letter-spacing:-1.123200pt;}
.ls16{letter-spacing:-0.973440pt;}
.ls11{letter-spacing:-0.748800pt;}
.ls19{letter-spacing:-0.524160pt;}
.ls18{letter-spacing:-0.374400pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls12{letter-spacing:-0.255360pt;}
.ls1c{letter-spacing:-0.224640pt;}
.ls1f{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.149760pt;}
.lsa{letter-spacing:-0.149120pt;}
.lsf{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.003147pt;}
.ls23{letter-spacing:0.053227pt;}
.ls10{letter-spacing:0.074880pt;}
.ls30{letter-spacing:0.087074pt;}
.ls0{letter-spacing:0.149760pt;}
.ls15{letter-spacing:0.224640pt;}
.lsc{letter-spacing:0.255360pt;}
.lsb{letter-spacing:0.298240pt;}
.ls7{letter-spacing:0.299520pt;}
.ls8{letter-spacing:0.374400pt;}
.ls1a{letter-spacing:0.599040pt;}
.ls9{letter-spacing:15.799680pt;}
.ls1{letter-spacing:16.773120pt;}
.ls6{letter-spacing:17.072640pt;}
.ls2{letter-spacing:20.442240pt;}
.ls4{letter-spacing:21.565440pt;}
.ls5{letter-spacing:22.089600pt;}
.ls3{letter-spacing:31.674240pt;}
.ls22{letter-spacing:67.541490pt;}
.ls20{letter-spacing:78.202918pt;}
.ls29{letter-spacing:95.988930pt;}
.ls26{letter-spacing:127.966520pt;}
.ls2e{letter-spacing:127.966531pt;}
.ls2d{letter-spacing:127.983387pt;}
.ls27{letter-spacing:127.988495pt;}
.ls28{letter-spacing:127.988851pt;}
.ls2b{letter-spacing:127.999631pt;}
.ls2c{letter-spacing:127.999684pt;}
.ls2a{letter-spacing:128.000015pt;}
.ls25{letter-spacing:128.013740pt;}
.ls21{letter-spacing:159.271244pt;}
.ls24{letter-spacing:803.867366pt;}
.ws74{word-spacing:-46.990105pt;}
.ws6e{word-spacing:-40.277234pt;}
.ws6b{word-spacing:-30.207925pt;}
.ws6f{word-spacing:-26.851490pt;}
.ws69{word-spacing:-25.173271pt;}
.ws77{word-spacing:-24.590161pt;}
.ws78{word-spacing:-24.106607pt;}
.ws6d{word-spacing:-23.495052pt;}
.ws70{word-spacing:-21.816836pt;}
.ws71{word-spacing:-20.138617pt;}
.ws76{word-spacing:-19.697729pt;}
.ws1{word-spacing:-19.492480pt;}
.ws50{word-spacing:-19.237120pt;}
.ws51{word-spacing:-18.981760pt;}
.ws67{word-spacing:-18.460399pt;}
.ws4{word-spacing:-16.997760pt;}
.ws2{word-spacing:-16.922880pt;}
.ws68{word-spacing:-16.782180pt;}
.ws24{word-spacing:-16.773120pt;}
.ws3{word-spacing:-16.623360pt;}
.ws3e{word-spacing:-15.949440pt;}
.ws46{word-spacing:-15.799680pt;}
.ws1a{word-spacing:-15.724800pt;}
.ws73{word-spacing:-15.103963pt;}
.ws75{word-spacing:-13.425745pt;}
.ws7a{word-spacing:-11.818637pt;}
.ws7b{word-spacing:-9.848864pt;}
.ws79{word-spacing:-9.642643pt;}
.ws60{word-spacing:-1.272960pt;}
.ws41{word-spacing:-1.198080pt;}
.ws5f{word-spacing:-1.048320pt;}
.ws62{word-spacing:-0.936320pt;}
.ws5b{word-spacing:-0.599040pt;}
.ws4a{word-spacing:-0.524160pt;}
.ws6a{word-spacing:-0.511999pt;}
.ws40{word-spacing:-0.411840pt;}
.ws5d{word-spacing:-0.299520pt;}
.ws56{word-spacing:-0.255360pt;}
.ws57{word-spacing:-0.149760pt;}
.ws55{word-spacing:-0.149120pt;}
.ws49{word-spacing:-0.127296pt;}
.ws58{word-spacing:0.000000pt;}
.ws45{word-spacing:0.044928pt;}
.ws53{word-spacing:0.112320pt;}
.ws43{word-spacing:0.149760pt;}
.ws44{word-spacing:0.179712pt;}
.ws63{word-spacing:0.224640pt;}
.ws5a{word-spacing:0.299520pt;}
.ws42{word-spacing:0.307008pt;}
.ws5{word-spacing:0.519232pt;}
.ws65{word-spacing:0.524160pt;}
.ws52{word-spacing:0.599040pt;}
.ws5c{word-spacing:0.673920pt;}
.ws61{word-spacing:0.748800pt;}
.ws47{word-spacing:0.793728pt;}
.ws3f{word-spacing:0.801216pt;}
.ws64{word-spacing:0.823680pt;}
.ws6{word-spacing:0.859712pt;}
.ws5e{word-spacing:1.123200pt;}
.ws48{word-spacing:1.160640pt;}
.ws66{word-spacing:1.248000pt;}
.ws59{word-spacing:1.272960pt;}
.ws4c{word-spacing:1.292160pt;}
.ws0{word-spacing:1.327168pt;}
.ws54{word-spacing:1.460160pt;}
.ws4b{word-spacing:1.759680pt;}
.ws4d{word-spacing:2.545920pt;}
.ws18{word-spacing:2.695680pt;}
.ws12{word-spacing:2.845440pt;}
.wse{word-spacing:3.144960pt;}
.ws19{word-spacing:3.159936pt;}
.ws36{word-spacing:3.369600pt;}
.ws8{word-spacing:3.534336pt;}
.ws15{word-spacing:3.758976pt;}
.wsc{word-spacing:3.803904pt;}
.wsf{word-spacing:3.901248pt;}
.ws11{word-spacing:3.908736pt;}
.wsd{word-spacing:3.923712pt;}
.ws38{word-spacing:3.968640pt;}
.ws16{word-spacing:4.021056pt;}
.ws7{word-spacing:4.028544pt;}
.ws14{word-spacing:4.043520pt;}
.ws2f{word-spacing:4.522752pt;}
.ws2d{word-spacing:4.567680pt;}
.ws32{word-spacing:4.807296pt;}
.ws3c{word-spacing:4.882176pt;}
.ws10{word-spacing:4.964544pt;}
.ws9{word-spacing:4.979520pt;}
.ws13{word-spacing:4.987008pt;}
.ws3b{word-spacing:5.181696pt;}
.ws30{word-spacing:5.196672pt;}
.ws3a{word-spacing:5.271552pt;}
.ws39{word-spacing:5.294016pt;}
.ws31{word-spacing:5.301504pt;}
.ws17{word-spacing:5.383872pt;}
.ws2b{word-spacing:5.451264pt;}
.wsb{word-spacing:5.616000pt;}
.ws3d{word-spacing:5.885568pt;}
.ws2e{word-spacing:6.027840pt;}
.ws33{word-spacing:6.297408pt;}
.ws35{word-spacing:6.888960pt;}
.ws2c{word-spacing:6.933888pt;}
.ws37{word-spacing:7.727616pt;}
.ws1c{word-spacing:14.107392pt;}
.ws27{word-spacing:14.317056pt;}
.ws1d{word-spacing:14.601600pt;}
.ws1b{word-spacing:14.758848pt;}
.ws22{word-spacing:14.878656pt;}
.ws25{word-spacing:14.886144pt;}
.ws2a{word-spacing:15.238080pt;}
.ws1e{word-spacing:15.283008pt;}
.wsa{word-spacing:15.290496pt;}
.ws28{word-spacing:15.455232pt;}
.ws26{word-spacing:15.470208pt;}
.ws21{word-spacing:15.530112pt;}
.ws29{word-spacing:15.575040pt;}
.ws20{word-spacing:16.518528pt;}
.ws34{word-spacing:16.563456pt;}
.ws1f{word-spacing:17.050176pt;}
.ws23{word-spacing:17.169984pt;}
.ws72{word-spacing:422.760146pt;}
.ws4e{word-spacing:580.918464pt;}
.ws6c{word-spacing:1007.690148pt;}
.ws4f{word-spacing:1201.783744pt;}
._f{margin-left:-1117.335557pt;}
._1f{margin-left:-13.433275pt;}
._1{margin-left:-12.227840pt;}
._e{margin-left:-9.955531pt;}
._10{margin-left:-8.561756pt;}
._c{margin-left:-7.103982pt;}
._4{margin-left:-5.681344pt;}
._18{margin-left:-4.629322pt;}
._3{margin-left:-3.690560pt;}
._d{margin-left:-2.529128pt;}
._0{margin-left:-1.506112pt;}
._2{width:1.280448pt;}
._5{width:2.522432pt;}
._6{width:3.549312pt;}
._9{width:4.507776pt;}
._8{width:6.364800pt;}
._b{width:7.713088pt;}
._a{width:18.295232pt;}
._7{width:20.425152pt;}
._1d{width:28.043732pt;}
._1b{width:31.402589pt;}
._1c{width:114.517904pt;}
._15{width:127.988851pt;}
._14{width:336.394345pt;}
._11{width:347.184462pt;}
._17{width:383.596769pt;}
._16{width:435.905956pt;}
._19{width:541.835398pt;}
._12{width:561.882332pt;}
._1a{width:608.823341pt;}
._13{width:909.962956pt;}
._20{width:1614.648764pt;}
._1e{width:2100.973558pt;}
.fs3{font-size:32.000000pt;}
.fs1a{font-size:35.555467pt;}
.fs19{font-size:42.666561pt;}
.fsf{font-size:56.888750pt;}
.fs7{font-size:63.999842pt;}
.fs18{font-size:68.266498pt;}
.fs15{font-size:70.897601pt;}
.fs9{font-size:71.110934pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:78.222031pt;}
.fse{font-size:79.644241pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:85.333123pt;}
.fs14{font-size:92.444220pt;}
.fsb{font-size:99.555306pt;}
.fs10{font-size:106.666403pt;}
.fsc{font-size:113.777501pt;}
.fs4{font-size:120.888587pt;}
.fs12{font-size:127.999684pt;}
.fsa{font-size:142.221868pt;}
.fs0{font-size:149.120000pt;}
.fs16{font-size:149.332965pt;}
.fsd{font-size:170.666245pt;}
.fs6{font-size:191.999526pt;}
.fs17{font-size:199.110613pt;}
.fs13{font-size:348.443599pt;}
.fs11{font-size:511.998732pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:8.856888pt;}
.y143{bottom:10.798217pt;}
.y114{bottom:11.233256pt;}
.y91{bottom:14.512208pt;}
.y50{bottom:16.333630pt;}
.y140{bottom:16.519696pt;}
.y85{bottom:16.682613pt;}
.y3f{bottom:17.069252pt;}
.y47{bottom:17.069332pt;}
.y142{bottom:21.464857pt;}
.y49{bottom:22.943058pt;}
.y126{bottom:25.755273pt;}
.y113{bottom:25.899886pt;}
.y12c{bottom:26.424845pt;}
.y70{bottom:27.115093pt;}
.y2c{bottom:27.735893pt;}
.y19{bottom:27.735973pt;}
.yb5{bottom:28.133601pt;}
.y141{bottom:32.131498pt;}
.y16{bottom:32.517209pt;}
.y6c{bottom:35.893115pt;}
.y9c{bottom:37.203325pt;}
.y125{bottom:37.755244pt;}
.y4b{bottom:39.421042pt;}
.y12b{bottom:41.091476pt;}
.yc2{bottom:41.301862pt;}
.y56{bottom:44.530560pt;}
.y38{bottom:45.235819pt;}
.ye1{bottom:46.084463pt;}
.y13f{bottom:50.652959pt;}
.y124{bottom:50.715212pt;}
.yf8{bottom:51.727303pt;}
.ycb{bottom:52.894460pt;}
.y4f{bottom:54.733535pt;}
.ye2{bottom:56.217772pt;}
.y5b{bottom:56.910294pt;}
.y26{bottom:59.295751pt;}
.y44{bottom:60.791432pt;}
.y7f{bottom:60.853133pt;}
.y6b{bottom:63.626380pt;}
.ya9{bottom:64.467085pt;}
.y15{bottom:65.327792pt;}
.y37{bottom:66.995758pt;}
.y88{bottom:67.858707pt;}
.y127{bottom:67.987916pt;}
.yd3{bottom:68.519608pt;}
.y112{bottom:69.762885pt;}
.y5c{bottom:70.197805pt;}
.yb4{bottom:71.069108pt;}
.yc1{bottom:78.101784pt;}
.y157{bottom:80.821191pt;}
.ye0{bottom:87.897680pt;}
.y5a{bottom:88.910212pt;}
.y36{bottom:89.225037pt;}
.y13e{bottom:91.897323pt;}
.y4e{bottom:93.133448pt;}
.yca{bottom:99.827677pt;}
.yf7{bottom:100.473876pt;}
.y14{bottom:100.655467pt;}
.y111{bottom:101.762806pt;}
.y156{bottom:104.287800pt;}
.y43{bottom:104.382427pt;}
.yd2{bottom:107.772844pt;}
.yb3{bottom:108.872068pt;}
.y10{bottom:109.464560pt;}
.y7e{bottom:112.053034pt;}
.yc0{bottom:114.901693pt;}
.y8a{bottom:116.800529pt;}
.y155{bottom:127.754408pt;}
.y90{bottom:128.332647pt;}
.ydf{bottom:129.710883pt;}
.y4d{bottom:131.533359pt;}
.y3e{bottom:132.053830pt;}
.y110{bottom:133.762727pt;}
.y153{bottom:134.728671pt;}
.yf6{bottom:135.140457pt;}
.y13d{bottom:145.586084pt;}
.yb2{bottom:146.675042pt;}
.yd1{bottom:147.026081pt;}
.yf{bottom:147.859280pt;}
.y154{bottom:151.221017pt;}
.ybf{bottom:151.701616pt;}
.ye9{bottom:157.029149pt;}
.y3d{bottom:161.920420pt;}
.y8f{bottom:162.465883pt;}
.y103{bottom:163.092486pt;}
.y7d{bottom:163.252947pt;}
.y52{bottom:164.862858pt;}
.y10f{bottom:165.762648pt;}
.y42{bottom:167.931671pt;}
.yf5{bottom:169.807038pt;}
.ye{bottom:170.267120pt;}
.yde{bottom:171.524100pt;}
.y152{bottom:171.528580pt;}
.y6a{bottom:177.430660pt;}
.y134{bottom:179.363774pt;}
.yc5{bottom:184.466295pt;}
.yb1{bottom:184.478002pt;}
.yd0{bottom:186.279317pt;}
.ybe{bottom:188.501525pt;}
.ya8{bottom:189.778482pt;}
.yd{bottom:192.674960pt;}
.y40{bottom:194.278965pt;}
.y102{bottom:195.092407pt;}
.y8e{bottom:196.599121pt;}
.y10e{bottom:197.762569pt;}
.y86{bottom:202.069365pt;}
.yb6{bottom:204.212678pt;}
.yf4{bottom:204.473619pt;}
.y18{bottom:208.016424pt;}
.ydd{bottom:213.337290pt;}
.y35{bottom:213.976142pt;}
.y7c{bottom:214.452821pt;}
.yc{bottom:215.082800pt;}
.y119{bottom:216.814282pt;}
.y3c{bottom:218.355214pt;}
.y133{bottom:220.608139pt;}
.yb0{bottom:222.280962pt;}
.yc4{bottom:223.719531pt;}
.y63{bottom:224.527023pt;}
.ybd{bottom:225.301448pt;}
.y101{bottom:227.092328pt;}
.y4c{bottom:228.210003pt;}
.ya7{bottom:229.031692pt;}
.y10d{bottom:229.762490pt;}
.y8d{bottom:230.732368pt;}
.y13c{bottom:235.185890pt;}
.yf3{bottom:239.140200pt;}
.y118{bottom:242.147553pt;}
.y151{bottom:245.128399pt;}
.ycf{bottom:245.301425pt;}
.y34{bottom:245.407171pt;}
.yb{bottom:250.122800pt;}
.yea{bottom:253.227619pt;}
.y132{bottom:254.741375pt;}
.ydc{bottom:255.150534pt;}
.y74{bottom:257.580032pt;}
.y100{bottom:259.092250pt;}
.yaf{bottom:260.083922pt;}
.y76{bottom:260.641443pt;}
.y11d{bottom:261.308585pt;}
.y10c{bottom:261.762411pt;}
.y55{bottom:263.425020pt;}
.y7b{bottom:265.652681pt;}
.y117{bottom:267.480823pt;}
.ya6{bottom:268.284928pt;}
.y5e{bottom:268.853727pt;}
.y62{bottom:269.326906pt;}
.y6f{bottom:269.346086pt;}
.y6e{bottom:272.012746pt;}
.y59{bottom:273.565279pt;}
.yf2{bottom:273.806755pt;}
.y72{bottom:275.233303pt;}
.y13b{bottom:276.430201pt;}
.y33{bottom:276.838206pt;}
.y9a{bottom:277.039373pt;}
.y17{bottom:280.016245pt;}
.y150{bottom:281.928294pt;}
.ybc{bottom:282.616853pt;}
.y11b{bottom:283.199091pt;}
.yff{bottom:291.092171pt;}
.y10b{bottom:293.762332pt;}
.y11e{bottom:295.729380pt;}
.ydb{bottom:296.963764pt;}
.ya{bottom:297.427920pt;}
.y5d{bottom:297.653656pt;}
.yae{bottom:297.886895pt;}
.y3b{bottom:298.874335pt;}
.y84{bottom:301.413265pt;}
.y1c{bottom:304.319413pt;}
.y87{bottom:304.522563pt;}
.y71{bottom:305.099893pt;}
.y58{bottom:305.565197pt;}
.y25{bottom:306.026078pt;}
.y51{bottom:306.398122pt;}
.ya5{bottom:307.538138pt;}
.y32{bottom:308.269243pt;}
.y11a{bottom:308.532362pt;}
.y99{bottom:309.039294pt;}
.y131{bottom:310.207891pt;}
.yc9{bottom:312.629979pt;}
.y61{bottom:314.126792pt;}
.y7a{bottom:316.852542pt;}
.y13a{bottom:317.674526pt;}
.yf1{bottom:319.139976pt;}
.y67{bottom:319.659456pt;}
.y9{bottom:319.835760pt;}
.yfe{bottom:323.092092pt;}
.y10a{bottom:325.762253pt;}
.y83{bottom:327.013197pt;}
.y1b{bottom:327.786021pt;}
.yce{bottom:328.821165pt;}
.ya0{bottom:331.688692pt;}
.y6d{bottom:332.452543pt;}
.yad{bottom:335.689855pt;}
.yda{bottom:338.776994pt;}
.y98{bottom:341.039215pt;}
.y31{bottom:341.150935pt;}
.y8{bottom:342.243600pt;}
.y123{bottom:342.855237pt;}
.y2b{bottom:345.279005pt;}
.ybb{bottom:346.758894pt;}
.ya4{bottom:346.791361pt;}
.y3a{bottom:352.367963pt;}
.y82{bottom:352.613131pt;}
.yf0{bottom:353.806557pt;}
.yfd{bottom:355.092013pt;}
.y14f{bottom:355.528086pt;}
.y139{bottom:357.638868pt;}
.y109{bottom:357.762174pt;}
.y60{bottom:358.926680pt;}
.yc8{bottom:359.563183pt;}
.y7{bottom:364.651440pt;}
.y79{bottom:368.052415pt;}
.ycd{bottom:368.074389pt;}
.ye8{bottom:371.234754pt;}
.y97{bottom:373.039136pt;}
.yac{bottom:373.492815pt;}
.y81{bottom:378.213070pt;}
.y130{bottom:378.474363pt;}
.yd9{bottom:380.590224pt;}
.y122{bottom:382.108447pt;}
.y138{bottom:385.372133pt;}
.yba{bottom:386.012118pt;}
.y6{bottom:387.059280pt;}
.yfc{bottom:387.091934pt;}
.y69{bottom:387.559967pt;}
.y68{bottom:387.915593pt;}
.yef{bottom:388.473138pt;}
.y108{bottom:389.762095pt;}
.y14e{bottom:392.327989pt;}
.ye7{bottom:392.568043pt;}
.y2a{bottom:401.029961pt;}
.y148{bottom:401.113267pt;}
.y80{bottom:403.813007pt;}
.y96{bottom:405.039057pt;}
.y12a{bottom:405.140970pt;}
.yc7{bottom:406.496400pt;}
.y5{bottom:409.467120pt;}
.y9f{bottom:411.901814pt;}
.y12f{bottom:412.607607pt;}
.ye6{bottom:416.034650pt;}
.yfb{bottom:419.091855pt;}
.y121{bottom:421.361670pt;}
.y137{bottom:421.496483pt;}
.y11c{bottom:421.734163pt;}
.y107{bottom:421.762016pt;}
.yd8{bottom:422.403461pt;}
.y147{bottom:422.446548pt;}
.y30{bottom:424.477089pt;}
.ycc{bottom:427.096462pt;}
.y14d{bottom:429.127886pt;}
.y4{bottom:431.874960pt;}
.yee{bottom:433.806360pt;}
.y95{bottom:437.038978pt;}
.y53{bottom:441.082643pt;}
.y1e{bottom:444.284334pt;}
.y24{bottom:444.536480pt;}
.ya3{bottom:447.839997pt;}
.yb9{bottom:450.154186pt;}
.yfa{bottom:451.091776pt;}
.y73{bottom:451.876808pt;}
.y75{bottom:452.224928pt;}
.yc6{bottom:453.429618pt;}
.y1a{bottom:453.459124pt;}
.y106{bottom:453.761937pt;}
.y12e{bottom:453.851950pt;}
.y3{bottom:454.282800pt;}
.y29{bottom:456.780930pt;}
.yd4{bottom:458.212539pt;}
.y129{bottom:460.607488pt;}
.y120{bottom:460.614907pt;}
.y136{bottom:462.740822pt;}
.yd7{bottom:464.216685pt;}
.y2f{bottom:465.636101pt;}
.y146{bottom:465.895320pt;}
.y14c{bottom:465.927794pt;}
.y1d{bottom:467.750943pt;}
.y46{bottom:467.836730pt;}
.y23{bottom:468.003089pt;}
.yed{bottom:468.472941pt;}
.y94{bottom:469.038899pt;}
.ya2{bottom:469.173278pt;}
.y116{bottom:469.872271pt;}
.y41{bottom:476.685002pt;}
.y66{bottom:479.128394pt;}
.y54{bottom:482.319387pt;}
.y89{bottom:483.648250pt;}
.ye5{bottom:485.367806pt;}
.y105{bottom:486.348523pt;}
.yb8{bottom:489.407414pt;}
.y9e{bottom:490.408279pt;}
.y2{bottom:493.322800pt;}
.y115{bottom:495.205541pt;}
.y2e{bottom:499.684010pt;}
.y57{bottom:499.988112pt;}
.y145{bottom:500.028559pt;}
.y93{bottom:501.038816pt;}
.y14b{bottom:502.727698pt;}
.y48{bottom:505.705396pt;}
.y5f{bottom:505.825707pt;}
.yd6{bottom:506.029908pt;}
.y12d{bottom:507.540702pt;}
.ye4{bottom:508.834416pt;}
.y28{bottom:512.531901pt;}
.ya1{bottom:512.622058pt;}
.yc3{bottom:513.140995pt;}
.yec{bottom:513.806162pt;}
.y128{bottom:514.296244pt;}
.y135{bottom:516.429569pt;}
.yf9{bottom:522.344936pt;}
.y104{bottom:522.348437pt;}
.y144{bottom:534.161805pt;}
.y8b{bottom:540.206249pt;}
.y45{bottom:540.232833pt;}
.y2d{bottom:540.843018pt;}
.y65{bottom:541.165935pt;}
.y78{bottom:541.278642pt;}
.y11f{bottom:541.432477pt;}
.y13{bottom:542.890827pt;}
.yaa{bottom:545.864316pt;}
.y4a{bottom:546.609305pt;}
.yd5{bottom:547.843134pt;}
.yb7{bottom:548.429490pt;}
.yeb{bottom:548.472746pt;}
.yab{bottom:551.700589pt;}
.y92{bottom:557.927561pt;}
.y12{bottom:565.298667pt;}
.y22{bottom:583.860496pt;}
.y20{bottom:585.315015pt;}
.y11{bottom:601.672000pt;}
.y9d{bottom:605.324945pt;}
.y14a{bottom:606.749693pt;}
.y1f{bottom:607.074959pt;}
.y21{bottom:607.327105pt;}
.ye3{bottom:608.887491pt;}
.y27{bottom:615.815498pt;}
.y64{bottom:626.482139pt;}
.y8c{bottom:637.000289pt;}
.y39{bottom:637.974358pt;}
.y77{bottom:638.152286pt;}
.y149{bottom:639.686752pt;}
.y1{bottom:657.642800pt;}
.h6{height:22.968750pt;}
.h2d{height:25.902713pt;}
.h2b{height:30.624924pt;}
.h2f{height:31.083257pt;}
.h2c{height:33.279918pt;}
.h23{height:44.373225pt;}
.h1f{height:46.624885pt;}
.hb{height:49.919877pt;}
.h25{height:51.805426pt;}
.h24{height:53.247869pt;}
.h3{height:53.746875pt;}
.h5{height:53.820368pt;}
.h1a{height:55.300129pt;}
.hd{height:55.466528pt;}
.h20{height:56.947777pt;}
.h4{height:59.185000pt;}
.hc{height:61.013184pt;}
.h2{height:61.096875pt;}
.h21{height:62.124847pt;}
.h9{height:66.559836pt;}
.h1c{height:69.222049pt;}
.h1d{height:69.961481pt;}
.h19{height:72.106491pt;}
.h2a{height:74.166484pt;}
.h27{height:74.666480pt;}
.h26{height:75.687311pt;}
.h10{height:77.653139pt;}
.h18{height:80.639750pt;}
.h2e{height:82.888687pt;}
.h11{height:83.199795pt;}
.h29{height:84.055346pt;}
.h28{height:86.499789pt;}
.h17{height:88.746450pt;}
.h8{height:94.293098pt;}
.h30{height:94.784982pt;}
.h13{height:99.839754pt;}
.h1{height:107.034375pt;}
.he{height:110.933057pt;}
.h1e{height:116.479713pt;}
.h1b{height:120.888587pt;}
.hf{height:133.119671pt;}
.ha{height:149.759630pt;}
.h22{height:155.306278pt;}
.h14{height:170.002788pt;}
.h15{height:250.103560pt;}
.h16{height:281.874371pt;}
.h12{height:404.748997pt;}
.h7{height:719.998200pt;}
.h0{height:720.000000pt;}
.w1{width:1279.996841pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6a{left:11.933479pt;}
.x6d{left:20.489888pt;}
.x6e{left:23.051560pt;}
.x35{left:30.593099pt;}
.x5a{left:43.772569pt;}
.x87{left:44.797789pt;}
.x93{left:46.439081pt;}
.x88{left:51.359455pt;}
.x18{left:55.840142pt;}
.x22{left:57.917546pt;}
.x8c{left:59.695390pt;}
.x1f{left:62.124500pt;}
.x1{left:63.500667pt;}
.x29{left:66.001444pt;}
.x79{left:70.840921pt;}
.x36{left:72.032470pt;}
.x7b{left:72.993385pt;}
.x3{left:78.372933pt;}
.x90{left:79.422655pt;}
.x2a{left:84.451232pt;}
.x48{left:86.207898pt;}
.x56{left:89.413167pt;}
.x19{left:91.862329pt;}
.x1b{left:94.547013pt;}
.x2{left:109.252933pt;}
.x4{left:111.170373pt;}
.x76{left:113.110908pt;}
.x1d{left:114.949850pt;}
.x1e{left:117.086652pt;}
.x8d{left:121.917459pt;}
.x77{left:128.017181pt;}
.x7c{left:136.993225pt;}
.x1c{left:139.999654pt;}
.x20{left:183.839826pt;}
.x4d{left:184.994815pt;}
.x30{left:186.260260pt;}
.x5{left:209.001093pt;}
.x71{left:214.435164pt;}
.x4e{left:220.018772pt;}
.x5b{left:223.631995pt;}
.x57{left:244.370748pt;}
.x5c{left:245.939537pt;}
.x4f{left:251.129668pt;}
.x6{left:253.330053pt;}
.x4b{left:262.540587pt;}
.x84{left:294.693939pt;}
.x83{left:318.223513pt;}
.x41{left:322.071706pt;}
.x58{left:378.168933pt;}
.x78{left:384.488998pt;}
.x64{left:393.568367pt;}
.x39{left:408.210979pt;}
.x31{left:424.883218pt;}
.x33{left:442.791705pt;}
.x66{left:450.332915pt;}
.x8{left:464.323173pt;}
.x68{left:465.213252pt;}
.x26{left:467.998845pt;}
.x86{left:473.503618pt;}
.x40{left:475.740399pt;}
.x67{left:478.725179pt;}
.x24{left:479.620603pt;}
.x42{left:488.085990pt;}
.x85{left:512.420189pt;}
.x2b{left:515.498861pt;}
.x8b{left:516.502672pt;}
.x44{left:530.608276pt;}
.x3a{left:538.034392pt;}
.x7{left:541.449573pt;}
.x23{left:544.267857pt;}
.x4c{left:547.642266pt;}
.x25{left:552.970502pt;}
.x46{left:561.602347pt;}
.x47{left:575.505824pt;}
.x49{left:577.515606pt;}
.x92{left:578.679238pt;}
.x45{left:602.161098pt;}
.x43{left:611.763330pt;}
.x82{left:632.277882pt;}
.x80{left:634.429650pt;}
.x74{left:653.275692pt;}
.x81{left:681.454132pt;}
.x89{left:686.328999pt;}
.x65{left:691.850346pt;}
.x75{left:698.160997pt;}
.x8e{left:719.172292pt;}
.x3f{left:758.803294pt;}
.x8a{left:764.747019pt;}
.x7e{left:768.190571pt;}
.x3b{left:786.421546pt;}
.x3e{left:795.469839pt;}
.x37{left:797.681218pt;}
.x70{left:799.015003pt;}
.x6f{left:802.276287pt;}
.x7d{left:805.390812pt;}
.x4a{left:814.895500pt;}
.x94{left:817.627582pt;}
.x72{left:818.588505pt;}
.x50{left:822.904390pt;}
.xe{left:829.662456pt;}
.x51{left:833.571031pt;}
.x7a{left:842.996986pt;}
.x73{left:848.943243pt;}
.xf{left:851.031290pt;}
.x91{left:857.079271pt;}
.x59{left:874.300945pt;}
.x3d{left:878.282180pt;}
.x32{left:880.824973pt;}
.x3c{left:894.922125pt;}
.x17{left:897.881331pt;}
.xc{left:913.324621pt;}
.x38{left:927.504631pt;}
.xd{left:931.039137pt;}
.x11{left:933.881746pt;}
.x10{left:937.946514pt;}
.x69{left:959.958831pt;}
.x55{left:975.517493pt;}
.x6b{left:978.251319pt;}
.x7f{left:987.500630pt;}
.x54{left:989.136793pt;}
.x2c{left:993.931280pt;}
.xb{left:998.729850pt;}
.x6c{left:1003.160722pt;}
.x8f{left:1038.041225pt;}
.x28{left:1065.541237pt;}
.x2d{left:1073.020818pt;}
.x12{left:1075.866059pt;}
.x53{left:1089.893102pt;}
.x13{left:1091.939038pt;}
.x16{left:1094.990715pt;}
.x60{left:1100.672454pt;}
.xa{left:1102.159813pt;}
.x61{left:1120.896423pt;}
.x62{left:1123.744428pt;}
.x5f{left:1131.509750pt;}
.x5e{left:1135.637740pt;}
.x9{left:1155.635600pt;}
.x14{left:1170.545539pt;}
.x15{left:1171.825423pt;}
.x52{left:1184.871956pt;}
.x34{left:1213.607178pt;}
.x63{left:1216.845822pt;}
.x2f{left:1226.407173pt;}
.x5d{left:1231.226087pt;}
.x21{left:1248.826118pt;}
.x27{left:1251.492778pt;}
.x1a{left:1258.396814pt;}
.x2e{left:1259.492758pt;}
}




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