
    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_b7e8eedd9fd22627fbd13b7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_a4fd1c85e6593a4c7dba37f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.968262;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_d323da2fac07ec11d525996d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129883;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_4de48a4bfde10fae37e2ad0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_6f7d31868fce1a27171c2be0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_b80952563c247a68624069a1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_720a998589eb687ab1494245.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976111;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_cd0b05a04226caf9da7c48b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965352;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_c681cba66eaef033f73ac015.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.135742;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_405211d845658c2e92dc96c7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.731000;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_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.731000;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_4f6085dedb459943b4a1dfae.woff2')format("woff");}.fff{font-family:fff;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.731000;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_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.731000;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_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.731000;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_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_4f6085dedb459943b4a1dfae.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_d0ae850e053dbf316fbabd35.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.731000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_bb107041a173d7219fd3065e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-4.265340px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.lse{letter-spacing:-9.193080px;}
.lsd{letter-spacing:-8.709104px;}
.ls17{letter-spacing:-7.976966px;}
.ls13{letter-spacing:-3.209310px;}
.lsa{letter-spacing:-2.481336px;}
.ls16{letter-spacing:-2.301048px;}
.ls10{letter-spacing:-2.081772px;}
.ls15{letter-spacing:-1.925586px;}
.lsc{letter-spacing:-1.193028px;}
.ls1b{letter-spacing:-0.972000px;}
.ls14{letter-spacing:-0.962793px;}
.ls7{letter-spacing:-0.918000px;}
.lsb{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.850014px;}
.ls4{letter-spacing:-0.691200px;}
.ls9{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.283338px;}
.ls8{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.025800px;}
.ls1a{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.419760px;}
.ls19{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.150524px;}
.ls12{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws8c{word-spacing:-24.573810px;}
.wsbb{word-spacing:-23.715290px;}
.ws74{word-spacing:-22.993714px;}
.wsc9{word-spacing:-22.473569px;}
.wsc7{word-spacing:-21.323045px;}
.wsa3{word-spacing:-19.748119px;}
.ws94{word-spacing:-19.291087px;}
.ws5{word-spacing:-17.928000px;}
.wsaf{word-spacing:-17.843764px;}
.ws82{word-spacing:-16.583089px;}
.wsd3{word-spacing:-16.434000px;}
.wsad{word-spacing:-15.900000px;}
.wsa2{word-spacing:-15.420000px;}
.ws80{word-spacing:-15.390061px;}
.ws8d{word-spacing:-15.380730px;}
.ws2{word-spacing:-14.940000px;}
.ws4b{word-spacing:-14.880000px;}
.ws2a{word-spacing:-14.700000px;}
.wsae{word-spacing:-14.634454px;}
.ws2b{word-spacing:-14.460000px;}
.ws4a{word-spacing:-14.100000px;}
.ws63{word-spacing:-14.040000px;}
.wsd5{word-spacing:-13.662000px;}
.wsd4{word-spacing:-13.392000px;}
.wsc8{word-spacing:-13.346078px;}
.ws3{word-spacing:-13.230000px;}
.wse2{word-spacing:-12.420000px;}
.wse0{word-spacing:-12.258000px;}
.ws9{word-spacing:-12.150000px;}
.ws6{word-spacing:-11.772000px;}
.ws8{word-spacing:-11.232000px;}
.ws0{word-spacing:-10.896000px;}
.ws7{word-spacing:-10.854000px;}
.ws29{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.464000px;}
.ws1{word-spacing:-9.417600px;}
.ws95{word-spacing:-9.094800px;}
.ws4{word-spacing:-7.807536px;}
.wse3{word-spacing:-7.524198px;}
.wse1{word-spacing:-6.957522px;}
.wsb0{word-spacing:-4.493034px;}
.ws8e{word-spacing:-3.960000px;}
.ws4e{word-spacing:-3.660000px;}
.ws60{word-spacing:-3.060000px;}
.wsfd{word-spacing:-3.024000px;}
.ws2e{word-spacing:-2.880000px;}
.ws75{word-spacing:-2.820000px;}
.wscc{word-spacing:-2.760000px;}
.ws6f{word-spacing:-2.700000px;}
.ws37{word-spacing:-2.640000px;}
.ws49{word-spacing:-2.580000px;}
.wsea{word-spacing:-2.538000px;}
.ws6c{word-spacing:-2.520000px;}
.ws73{word-spacing:-2.400000px;}
.ws16{word-spacing:-2.376000px;}
.wsf8{word-spacing:-2.322000px;}
.wsd6{word-spacing:-2.280000px;}
.ws1b{word-spacing:-2.268000px;}
.wsaa{word-spacing:-2.220000px;}
.ws8a{word-spacing:-2.052000px;}
.ws8b{word-spacing:-1.998000px;}
.ws4f{word-spacing:-1.920000px;}
.ws51{word-spacing:-1.860000px;}
.wsf4{word-spacing:-1.782000px;}
.ws56{word-spacing:-1.680000px;}
.ws9a{word-spacing:-1.620000px;}
.wse7{word-spacing:-1.566000px;}
.ws77{word-spacing:-1.500000px;}
.wscb{word-spacing:-1.440000px;}
.ws91{word-spacing:-1.404000px;}
.wsb8{word-spacing:-1.350000px;}
.wsac{word-spacing:-1.296000px;}
.ws50{word-spacing:-1.260000px;}
.wsbc{word-spacing:-1.242000px;}
.ws42{word-spacing:-1.200000px;}
.wsda{word-spacing:-1.188000px;}
.ws6e{word-spacing:-1.140000px;}
.ws4d{word-spacing:-1.080000px;}
.wsfa{word-spacing:-1.026000px;}
.ws83{word-spacing:-0.900000px;}
.ws2d{word-spacing:-0.840000px;}
.ws2f{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.660000px;}
.wsbd{word-spacing:-0.648000px;}
.ws76{word-spacing:-0.600000px;}
.ws7c{word-spacing:-0.540000px;}
.wsee{word-spacing:-0.486000px;}
.ws52{word-spacing:-0.480000px;}
.wsec{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.ws78{word-spacing:-0.360000px;}
.wse9{word-spacing:-0.324000px;}
.wsdd{word-spacing:-0.270000px;}
.ws5b{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.162000px;}
.ws25{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws1c{word-spacing:0.054000px;}
.ws45{word-spacing:0.060000px;}
.ws8f{word-spacing:0.120000px;}
.ws27{word-spacing:0.180000px;}
.ws47{word-spacing:0.240000px;}
.ws55{word-spacing:0.300000px;}
.wsd1{word-spacing:0.324000px;}
.wsb2{word-spacing:0.360000px;}
.wseb{word-spacing:0.378000px;}
.ws39{word-spacing:0.420000px;}
.wsf6{word-spacing:0.432000px;}
.ws28{word-spacing:0.480000px;}
.wsf7{word-spacing:0.540000px;}
.ws22{word-spacing:0.600000px;}
.ws68{word-spacing:0.660000px;}
.wsd{word-spacing:0.691200px;}
.ws58{word-spacing:0.720000px;}
.ws85{word-spacing:0.780000px;}
.ws84{word-spacing:0.840000px;}
.ws81{word-spacing:0.894771px;}
.ws86{word-spacing:0.900000px;}
.wsb9{word-spacing:0.962793px;}
.wse8{word-spacing:0.972000px;}
.ws2c{word-spacing:1.020000px;}
.ws43{word-spacing:1.080000px;}
.wsca{word-spacing:1.140000px;}
.ws1d{word-spacing:1.188000px;}
.wsab{word-spacing:1.200000px;}
.wsb7{word-spacing:1.242000px;}
.wsc4{word-spacing:1.260000px;}
.wsce{word-spacing:1.320000px;}
.ws62{word-spacing:1.380000px;}
.wsa1{word-spacing:1.440000px;}
.ws18{word-spacing:1.458000px;}
.ws12{word-spacing:1.512000px;}
.ws23{word-spacing:1.620000px;}
.wsb6{word-spacing:1.680000px;}
.ws7b{word-spacing:1.740000px;}
.wsa9{word-spacing:1.800000px;}
.wsed{word-spacing:1.836000px;}
.wsb3{word-spacing:1.860000px;}
.ws48{word-spacing:1.920000px;}
.wsba{word-spacing:1.925586px;}
.ws15{word-spacing:1.998000px;}
.wsa6{word-spacing:2.040000px;}
.ws98{word-spacing:2.081772px;}
.ws17{word-spacing:2.106000px;}
.wsf1{word-spacing:2.160000px;}
.ws10{word-spacing:2.214000px;}
.ws54{word-spacing:2.220000px;}
.ws53{word-spacing:2.280000px;}
.wsd2{word-spacing:2.301048px;}
.ws70{word-spacing:2.400000px;}
.ws6b{word-spacing:2.460000px;}
.ws7f{word-spacing:2.481336px;}
.ws41{word-spacing:2.520000px;}
.ws14{word-spacing:2.538000px;}
.ws40{word-spacing:2.580000px;}
.ws6a{word-spacing:2.640000px;}
.ws32{word-spacing:2.700000px;}
.wsc2{word-spacing:2.760000px;}
.ws61{word-spacing:2.820000px;}
.ws65{word-spacing:2.880000px;}
.wsf3{word-spacing:2.916000px;}
.ws3f{word-spacing:2.940000px;}
.wsf2{word-spacing:2.970000px;}
.wsb1{word-spacing:3.000000px;}
.ws59{word-spacing:3.180000px;}
.ws5a{word-spacing:3.240000px;}
.wsdb{word-spacing:3.294000px;}
.ws4c{word-spacing:3.360000px;}
.ws89{word-spacing:3.402000px;}
.ws88{word-spacing:3.456000px;}
.ws90{word-spacing:3.540000px;}
.ws69{word-spacing:3.660000px;}
.ws33{word-spacing:3.720000px;}
.wsa7{word-spacing:3.780000px;}
.ws5c{word-spacing:3.840000px;}
.ws38{word-spacing:3.900000px;}
.ws34{word-spacing:3.960000px;}
.ws67{word-spacing:4.020000px;}
.ws1a{word-spacing:4.050000px;}
.ws19{word-spacing:4.104000px;}
.ws3e{word-spacing:4.140000px;}
.ws3d{word-spacing:4.200000px;}
.ws26{word-spacing:4.260000px;}
.ws35{word-spacing:4.320000px;}
.wse6{word-spacing:4.374000px;}
.wsa4{word-spacing:4.380000px;}
.wsd0{word-spacing:4.428000px;}
.wsa5{word-spacing:4.440000px;}
.wscf{word-spacing:4.536000px;}
.ws44{word-spacing:4.560000px;}
.ws3c{word-spacing:4.620000px;}
.ws99{word-spacing:4.740000px;}
.ws5f{word-spacing:4.860000px;}
.wsc0{word-spacing:4.980000px;}
.ws11{word-spacing:5.022000px;}
.ws3a{word-spacing:5.100000px;}
.ws5d{word-spacing:5.160000px;}
.ws93{word-spacing:5.184000px;}
.ws66{word-spacing:5.220000px;}
.ws92{word-spacing:5.238000px;}
.wse{word-spacing:5.292000px;}
.ws97{word-spacing:5.346000px;}
.ws96{word-spacing:5.454000px;}
.ws72{word-spacing:5.580000px;}
.ws71{word-spacing:5.640000px;}
.wsc5{word-spacing:5.700000px;}
.ws7e{word-spacing:5.724000px;}
.ws7d{word-spacing:5.778000px;}
.ws9c{word-spacing:5.880000px;}
.ws57{word-spacing:6.060000px;}
.wse4{word-spacing:6.102000px;}
.wsc6{word-spacing:6.120000px;}
.wsd8{word-spacing:6.156000px;}
.ws20{word-spacing:6.180000px;}
.wsa8{word-spacing:6.360000px;}
.ws79{word-spacing:6.420000px;}
.wsf9{word-spacing:6.426000px;}
.wscd{word-spacing:6.480000px;}
.wsa0{word-spacing:6.540000px;}
.wsf{word-spacing:6.588000px;}
.ws30{word-spacing:6.600000px;}
.ws5e{word-spacing:6.660000px;}
.ws6d{word-spacing:6.720000px;}
.wsbf{word-spacing:6.900000px;}
.wsd7{word-spacing:7.020000px;}
.ws46{word-spacing:7.080000px;}
.ws24{word-spacing:7.320000px;}
.wsdc{word-spacing:7.344000px;}
.wsc3{word-spacing:7.380000px;}
.ws3b{word-spacing:7.680000px;}
.ws36{word-spacing:7.920000px;}
.ws9b{word-spacing:7.980000px;}
.wsf5{word-spacing:8.046000px;}
.wsb4{word-spacing:8.100000px;}
.ws87{word-spacing:8.160000px;}
.wsdf{word-spacing:8.208000px;}
.wsb5{word-spacing:8.220000px;}
.wsde{word-spacing:8.262000px;}
.wsc1{word-spacing:8.580000px;}
.wsef{word-spacing:8.640000px;}
.wsd9{word-spacing:8.802000px;}
.ws9f{word-spacing:9.720000px;}
.ws9e{word-spacing:9.780000px;}
.ws9d{word-spacing:10.020000px;}
.ws7a{word-spacing:10.140000px;}
.wsfe{word-spacing:10.260000px;}
.wsbe{word-spacing:11.400000px;}
.wsfb{word-spacing:11.556000px;}
.wsfc{word-spacing:11.718000px;}
.wse5{word-spacing:14.040000px;}
.wsf0{word-spacing:16.200000px;}
.ws1f{word-spacing:17.820000px;}
.ws1e{word-spacing:17.928000px;}
.ws64{word-spacing:18.660000px;}
._10{margin-left:-23.621954px;}
._13{margin-left:-13.499482px;}
._8{margin-left:-10.611600px;}
._1{margin-left:-8.884200px;}
._f{margin-left:-7.575728px;}
._7{margin-left:-6.246600px;}
._d{margin-left:-4.853400px;}
._a{margin-left:-3.835800px;}
._5{margin-left:-2.651400px;}
._0{margin-left:-1.101600px;}
._4{width:1.067040px;}
._2{width:3.049800px;}
._6{width:4.387200px;}
._b{width:5.892000px;}
._c{width:6.912000px;}
._9{width:8.040000px;}
._14{width:9.067200px;}
._e{width:10.110000px;}
._12{width:11.586000px;}
._11{width:12.588000px;}
._16{width:14.565600px;}
._17{width:15.944400px;}
._18{width:17.290800px;}
._19{width:19.300200px;}
._1a{width:20.555400px;}
._1d{width:23.505000px;}
._1b{width:25.015800px;}
._1c{width:26.500200px;}
._3{width:36.624000px;}
._15{width:43.060200px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs15{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs14{font-size:46.261800px;}
.fs18{font-size:47.357400px;}
.fs0{font-size:48.000000px;}
.fs20{font-size:51.134400px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:55.140600px;}
.fs1d{font-size:56.871600px;}
.fs11{font-size:58.929600px;}
.fsd{font-size:59.651400px;}
.fs7{font-size:60.000000px;}
.fs19{font-size:64.186200px;}
.fs2{font-size:66.000000px;}
.fs12{font-size:69.392400px;}
.fs16{font-size:71.036400px;}
.fs9{font-size:72.000000px;}
.fs1e{font-size:76.701600px;}
.fsa{font-size:82.711200px;}
.fs1b{font-size:85.306800px;}
.fsf{font-size:88.395000px;}
.fs13{font-size:92.523000px;}
.fs17{font-size:94.714800px;}
.fs1{font-size:102.000000px;}
.fs1f{font-size:102.268800px;}
.fsb{font-size:110.281800px;}
.fs1c{font-size:113.742600px;}
.fs10{font-size:117.859800px;}
.fse{font-size:119.302800px;}
.fs1a{font-size:128.373000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:1.092900px;}
.yb1{bottom:3.416700px;}
.y101{bottom:5.766900px;}
.y155{bottom:6.226950px;}
.yde{bottom:7.175400px;}
.y1{bottom:68.124750px;}
.y41{bottom:71.212050px;}
.y42{bottom:75.036150px;}
.y110{bottom:106.925400px;}
.y104{bottom:107.056650px;}
.y74{bottom:113.078700px;}
.ya1{bottom:113.078850px;}
.y2c{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.ya{bottom:132.275550px;}
.y73{bottom:134.078700px;}
.ya0{bottom:134.078850px;}
.y2b{bottom:138.212550px;}
.y9{bottom:146.675550px;}
.yf4{bottom:148.280700px;}
.y72{bottom:155.078700px;}
.y9f{bottom:155.078850px;}
.y2a{bottom:159.212550px;}
.y8{bottom:161.075550px;}
.y15a{bottom:162.426600px;}
.y7{bottom:175.475550px;}
.y71{bottom:176.078700px;}
.y173{bottom:176.078850px;}
.y29{bottom:180.212550px;}
.yd8{bottom:190.440900px;}
.y9e{bottom:190.441050px;}
.y70{bottom:197.078700px;}
.y172{bottom:197.078850px;}
.y28{bottom:201.212550px;}
.y14f{bottom:211.440900px;}
.y3e{bottom:213.792600px;}
.y6f{bottom:218.078700px;}
.y171{bottom:218.078850px;}
.y27{bottom:222.212550px;}
.y3d{bottom:231.792600px;}
.yb2{bottom:235.599981px;}
.yac{bottom:238.815150px;}
.y6e{bottom:239.078700px;}
.y9d{bottom:239.078850px;}
.y26{bottom:243.212550px;}
.y3c{bottom:249.792600px;}
.y6d{bottom:260.078700px;}
.y9c{bottom:260.078850px;}
.yd5{bottom:261.791700px;}
.y25{bottom:264.212550px;}
.y3b{bottom:267.792600px;}
.y6c{bottom:281.078700px;}
.y9b{bottom:281.078850px;}
.y24{bottom:285.212550px;}
.y3a{bottom:285.792600px;}
.y6b{bottom:302.078700px;}
.y9a{bottom:302.078850px;}
.y39{bottom:303.792600px;}
.y23{bottom:306.212550px;}
.y38{bottom:321.792600px;}
.y6a{bottom:323.078700px;}
.y99{bottom:323.078850px;}
.y22{bottom:327.212550px;}
.ye5{bottom:327.855600px;}
.y37{bottom:339.792600px;}
.y69{bottom:344.078700px;}
.y98{bottom:344.078850px;}
.y21{bottom:348.212550px;}
.y36{bottom:357.792600px;}
.y68{bottom:365.078700px;}
.y97{bottom:365.078850px;}
.y35{bottom:375.792600px;}
.y148{bottom:377.223450px;}
.y170{bottom:379.441050px;}
.y20{bottom:381.952350px;}
.y67{bottom:386.078700px;}
.y96{bottom:386.078850px;}
.y34{bottom:393.792600px;}
.y66{bottom:407.078700px;}
.y95{bottom:407.078850px;}
.yf6{bottom:410.647350px;}
.y115{bottom:413.886600px;}
.y65{bottom:428.078700px;}
.y94{bottom:428.078850px;}
.yd1{bottom:428.318400px;}
.y33{bottom:428.800500px;}
.y114{bottom:433.686600px;}
.y32{bottom:446.800500px;}
.y64{bottom:449.078700px;}
.y93{bottom:449.078850px;}
.yb6{bottom:452.551650px;}
.y113{bottom:453.486600px;}
.yf7{bottom:455.259900px;}
.y10e{bottom:456.611100px;}
.y1f{bottom:458.227950px;}
.y31{bottom:464.800500px;}
.y63{bottom:470.078700px;}
.y92{bottom:470.078850px;}
.ydc{bottom:471.631500px;}
.yb5{bottom:472.351650px;}
.y112{bottom:473.286600px;}
.y13d{bottom:474.788100px;}
.y16f{bottom:475.529400px;}
.y1e{bottom:478.027950px;}
.y62{bottom:491.078700px;}
.y91{bottom:491.078850px;}
.y164{bottom:491.163600px;}
.ydb{bottom:491.431500px;}
.yb4{bottom:492.151650px;}
.y137{bottom:494.041500px;}
.y13c{bottom:494.588100px;}
.y30{bottom:499.808400px;}
.y14e{bottom:504.117300px;}
.y139{bottom:506.404500px;}
.y116{bottom:508.169700px;}
.yda{bottom:511.231500px;}
.yb3{bottom:511.951650px;}
.y61{bottom:512.078700px;}
.y90{bottom:512.078850px;}
.y13b{bottom:514.388100px;}
.ya7{bottom:515.120700px;}
.y2f{bottom:517.808400px;}
.y1d{bottom:519.087750px;}
.yb0{bottom:523.063650px;}
.y117{bottom:527.553932px;}
.yd9{bottom:531.031500px;}
.yd0{bottom:532.705500px;}
.y60{bottom:533.078700px;}
.yfb{bottom:533.078850px;}
.y13a{bottom:534.188100px;}
.ya6{bottom:534.920700px;}
.y2e{bottom:535.808400px;}
.y1c{bottom:538.887750px;}
.y118{bottom:547.210956px;}
.y8f{bottom:547.441050px;}
.y153{bottom:548.826750px;}
.yd4{bottom:551.318550px;}
.ydd{bottom:551.787000px;}
.ybb{bottom:552.738752px;}
.y2d{bottom:553.808400px;}
.y5f{bottom:554.078700px;}
.yfa{bottom:554.078850px;}
.ya5{bottom:554.720700px;}
.y147{bottom:554.943000px;}
.y1b{bottom:558.687750px;}
.y16e{bottom:559.529400px;}
.yed{bottom:561.447150px;}
.y14c{bottom:562.740150px;}
.yea{bottom:565.014000px;}
.y119{bottom:565.343558px;}
.y152{bottom:568.626750px;}
.ybc{bottom:573.154443px;}
.ya4{bottom:574.520700px;}
.y5e{bottom:575.078700px;}
.y174{bottom:575.078850px;}
.y13e{bottom:576.451650px;}
.y1a{bottom:578.487750px;}
.y14d{bottom:578.849700px;}
.yd3{bottom:583.786200px;}
.yff{bottom:584.999100px;}
.y11a{bottom:586.332445px;}
.y151{bottom:588.426750px;}
.ybd{bottom:593.555222px;}
.ya8{bottom:595.275000px;}
.y5d{bottom:596.078700px;}
.y8e{bottom:596.078850px;}
.y19{bottom:598.287750px;}
.ydf{bottom:604.626900px;}
.yfe{bottom:604.799100px;}
.y11b{bottom:606.021562px;}
.yf0{bottom:606.619200px;}
.y150{bottom:608.226750px;}
.ybe{bottom:612.539280px;}
.y5c{bottom:617.078700px;}
.y8d{bottom:617.078850px;}
.y18{bottom:618.087750px;}
.y138{bottom:620.504700px;}
.y13f{bottom:620.683226px;}
.yfd{bottom:624.599100px;}
.y11c{bottom:625.823005px;}
.yef{bottom:626.419050px;}
.y154{bottom:628.981500px;}
.ybf{bottom:634.386606px;}
.yeb{bottom:637.602900px;}
.y17{bottom:637.887750px;}
.y5b{bottom:638.078700px;}
.y8c{bottom:638.078850px;}
.y165{bottom:639.910650px;}
.yfc{bottom:644.399100px;}
.y11d{bottom:645.447935px;}
.yee{bottom:646.219050px;}
.ya3{bottom:652.440900px;}
.ye0{bottom:652.780076px;}
.yc0{bottom:653.370664px;}
.y16{bottom:657.687750px;}
.y5a{bottom:659.078700px;}
.y8b{bottom:659.078850px;}
.y156{bottom:664.754550px;}
.y11e{bottom:664.800075px;}
.y140{bottom:664.914802px;}
.y100{bottom:665.154000px;}
.yf3{bottom:666.975000px;}
.yc1{bottom:673.786355px;}
.yaa{bottom:676.826400px;}
.y15{bottom:677.487750px;}
.y166{bottom:679.629295px;}
.y59{bottom:680.078700px;}
.y8a{bottom:680.078850px;}
.y11f{bottom:683.028955px;}
.yf1{bottom:683.360400px;}
.yf8{bottom:683.774850px;}
.y16d{bottom:685.529400px;}
.yc2{bottom:695.648593px;}
.y157{bottom:696.010452px;}
.y14{bottom:697.287750px;}
.ye1{bottom:698.458192px;}
.y58{bottom:701.078700px;}
.y89{bottom:701.078850px;}
.y120{bottom:702.525514px;}
.y102{bottom:706.254450px;}
.y141{bottom:711.023127px;}
.yc3{bottom:714.617739px;}
.y13{bottom:717.087750px;}
.y57{bottom:722.078700px;}
.y88{bottom:722.078850px;}
.y121{bottom:723.851379px;}
.y158{bottom:729.145543px;}
.yc4{bottom:735.152733px;}
.y12{bottom:736.887750px;}
.y103{bottom:740.014499px;}
.y122{bottom:741.743282px;}
.y56{bottom:743.078700px;}
.y87{bottom:743.078850px;}
.ye2{bottom:744.246803px;}
.y142{bottom:755.212049px;}
.yab{bottom:755.670851px;}
.y134{bottom:755.944479px;}
.y11{bottom:756.687750px;}
.yc5{bottom:756.880755px;}
.y159{bottom:758.503081px;}
.y123{bottom:761.480538px;}
.y55{bottom:764.078700px;}
.y86{bottom:764.078850px;}
.y167{bottom:765.573438px;}
.y10{bottom:776.487750px;}
.yc6{bottom:777.281534px;}
.y124{bottom:781.073376px;}
.y54{bottom:785.078700px;}
.y85{bottom:785.078850px;}
.ye3{bottom:790.212202px;}
.yf{bottom:796.287750px;}
.y143{bottom:797.588202px;}
.yc7{bottom:797.712139px;}
.yec{bottom:797.773553px;}
.y125{bottom:802.142496px;}
.y53{bottom:806.078700px;}
.y84{bottom:806.078850px;}
.y105{bottom:807.513600px;}
.y16c{bottom:811.529250px;}
.yf2{bottom:815.258004px;}
.yf9{bottom:815.898551px;}
.ye{bottom:816.087750px;}
.yc8{bottom:818.112918px;}
.y126{bottom:821.735334px;}
.y15b{bottom:822.768450px;}
.y52{bottom:827.078700px;}
.y83{bottom:827.078850px;}
.ye4{bottom:833.768839px;}
.yc9{bottom:837.201366px;}
.y106{bottom:839.604294px;}
.y127{bottom:841.392357px;}
.y144{bottom:843.653874px;}
.yd{bottom:847.185300px;}
.y51{bottom:848.078700px;}
.y82{bottom:848.078850px;}
.y15c{bottom:854.216106px;}
.yca{bottom:857.617057px;}
.y111{bottom:858.809550px;}
.y128{bottom:861.049381px;}
.yd7{bottom:864.510473px;}
.y50{bottom:869.078700px;}
.y81{bottom:869.078850px;}
.y107{bottom:873.364343px;}
.y16b{bottom:874.529250px;}
.ycb{bottom:878.032749px;}
.y129{bottom:880.674312px;}
.y15d{bottom:883.535293px;}
.y145{bottom:887.885450px;}
.y4f{bottom:890.078700px;}
.y80{bottom:890.078850px;}
.ycc{bottom:898.329138px;}
.y12a{bottom:900.170870px;}
.y108{bottom:908.847025px;}
.yad{bottom:910.878450px;}
.y4e{bottom:911.078700px;}
.y7f{bottom:911.078850px;}
.y15e{bottom:914.752844px;}
.y12b{bottom:918.239285px;}
.ycd{bottom:918.879045px;}
.y6{bottom:926.466750px;}
.ye6{bottom:927.552450px;}
.y4d{bottom:932.078700px;}
.y7e{bottom:932.078850px;}
.y146{bottom:932.117026px;}
.y16a{bottom:937.937100px;}
.y12c{bottom:939.500964px;}
.yce{bottom:940.607067px;}
.y109{bottom:942.553796px;}
.y136{bottom:944.234696px;}
.y5{bottom:944.466750px;}
.y15f{bottom:945.989570px;}
.yf5{bottom:947.406600px;}
.y4c{bottom:953.078700px;}
.y7d{bottom:953.078850px;}
.y12d{bottom:958.965429px;}
.yd6{bottom:960.459750px;}
.ycf{bottom:961.007846px;}
.y169{bottom:967.441050px;}
.ye7{bottom:973.495751px;}
.y4b{bottom:974.078700px;}
.y7c{bottom:974.078850px;}
.y10a{bottom:976.384882px;}
.y149{bottom:976.402800px;}
.y135{bottom:976.584541px;}
.y10f{bottom:976.786950px;}
.y160{bottom:977.264648px;}
.y12e{bottom:978.847105px;}
.y4{bottom:979.474800px;}
.yd2{bottom:980.121000px;}
.y168{bottom:989.618812px;}
.yae{bottom:991.335770px;}
.y4a{bottom:995.078700px;}
.y7b{bottom:995.078850px;}
.y12f{bottom:998.455989px;}
.yb9{bottom:1000.422509px;}
.y10b{bottom:1010.180449px;}
.y161{bottom:1010.380564px;}
.y49{bottom:1016.078700px;}
.y7a{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ye8{bottom:1017.295474px;}
.y130{bottom:1017.840221px;}
.y14a{bottom:1018.778953px;}
.yba{bottom:1022.478614px;}
.y48{bottom:1037.078700px;}
.y79{bottom:1037.078850px;}
.y131{bottom:1037.577478px;}
.y162{bottom:1039.584698px;}
.y10c{bottom:1042.182347px;}
.yb7{bottom:1042.655700px;}
.y2{bottom:1049.282550px;}
.y132{bottom:1057.074036px;}
.y47{bottom:1058.078700px;}
.y78{bottom:1058.078850px;}
.yb8{bottom:1061.669584px;}
.y14b{bottom:1063.031855px;}
.ye9{bottom:1063.150380px;}
.yaf{bottom:1068.133119px;}
.y133{bottom:1068.964529px;}
.y163{bottom:1070.974828px;}
.y10d{bottom:1076.084469px;}
.y46{bottom:1079.078700px;}
.y77{bottom:1079.078850px;}
.y176{bottom:1089.903300px;}
.y45{bottom:1100.078700px;}
.y76{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.ya2{bottom:1114.821750px;}
.y44{bottom:1121.078700px;}
.y75{bottom:1121.078850px;}
.y175{bottom:1122.200850px;}
.y40{bottom:1155.615300px;}
.y3f{bottom:1175.115300px;}
.y43{bottom:1178.691750px;}
.h21{height:33.262234px;}
.h25{height:34.049971px;}
.h6{height:34.446094px;}
.h31{height:36.765634px;}
.h2{height:38.039062px;}
.h10{height:38.273438px;}
.h5{height:38.531250px;}
.h15{height:39.646091px;}
.h2d{height:40.890680px;}
.h7{height:41.053711px;}
.h1d{height:42.370382px;}
.hf{height:42.793945px;}
.h19{height:42.889357px;}
.he{height:43.057617px;}
.h16{height:43.426219px;}
.h8{height:45.615234px;}
.h27{height:46.149878px;}
.h26{height:46.727554px;}
.h9{height:48.621094px;}
.ha{height:48.937500px;}
.h11{height:50.176758px;}
.h1e{height:50.517667px;}
.h23{height:51.714499px;}
.hc{height:54.023438px;}
.hd{height:54.375000px;}
.hb{height:54.738281px;}
.h2f{height:55.838765px;}
.h4{height:59.425781px;}
.h13{height:60.213754px;}
.h2a{height:62.103350px;}
.h1b{height:64.351560px;}
.h20{height:67.356744px;}
.h24{height:68.952374px;}
.h30{height:74.451686px;}
.h3{height:77.545898px;}
.h14{height:80.615996px;}
.h2c{height:82.804613px;}
.h1c{height:85.801934px;}
.h18{height:86.852438px;}
.h29{height:93.455544px;}
.h1f{height:475.104000px;}
.h22{height:476.923500px;}
.h2e{height:513.097500px;}
.h12{height:546.802500px;}
.h2b{height:587.134500px;}
.h1a{height:590.292000px;}
.h17{height:609.372000px;}
.h28{height:648.036000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:420.417000px;}
.w5{width:425.827500px;}
.w9{width:432.013500px;}
.w3{width:439.998000px;}
.w6{width:442.768500px;}
.w2{width:512.281500px;}
.w8{width:524.674500px;}
.w4{width:548.799000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.121550px;}
.x5b{left:31.587600px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x61{left:127.880700px;}
.x2b{left:140.739450px;}
.x36{left:164.168850px;}
.x3f{left:171.180000px;}
.x13{left:176.999400px;}
.x2a{left:189.064500px;}
.x58{left:191.555400px;}
.x54{left:201.127500px;}
.xd{left:207.324000px;}
.x27{left:211.973250px;}
.x30{left:222.238200px;}
.x4d{left:227.791800px;}
.x39{left:242.080500px;}
.x25{left:243.466500px;}
.x5a{left:247.458000px;}
.x63{left:248.927029px;}
.x34{left:250.551000px;}
.x4c{left:253.255500px;}
.x15{left:256.476150px;}
.x49{left:258.965598px;}
.x31{left:269.032200px;}
.x38{left:270.885456px;}
.x16{left:277.965567px;}
.x4a{left:279.168204px;}
.x28{left:286.602750px;}
.x37{left:295.022550px;}
.x52{left:298.133473px;}
.x4{left:300.189000px;}
.x40{left:306.598350px;}
.x5c{left:310.263900px;}
.xf{left:311.897400px;}
.x5{left:317.196900px;}
.x4e{left:318.522600px;}
.x2d{left:330.162326px;}
.x11{left:333.966000px;}
.x17{left:337.691531px;}
.x29{left:343.409400px;}
.x41{left:346.409550px;}
.x3b{left:350.956800px;}
.x2c{left:353.609100px;}
.x64{left:359.032176px;}
.x18{left:361.179270px;}
.x4b{left:363.364452px;}
.x5d{left:373.063335px;}
.x1f{left:376.957065px;}
.x48{left:378.271697px;}
.x19{left:382.609035px;}
.x3a{left:383.779500px;}
.x3{left:396.050700px;}
.x1a{left:402.338736px;}
.x1e{left:404.322145px;}
.x1c{left:405.947646px;}
.x35{left:409.255650px;}
.x14{left:410.809050px;}
.x21{left:414.134800px;}
.x12{left:415.291787px;}
.x10{left:420.331200px;}
.x23{left:422.292129px;}
.x22{left:423.962368px;}
.x1b{left:425.543130px;}
.x60{left:427.604387px;}
.x4f{left:434.901600px;}
.x20{left:436.653204px;}
.x24{left:437.861145px;}
.x3d{left:443.004900px;}
.x1d{left:445.183354px;}
.x2e{left:447.793972px;}
.x26{left:460.498800px;}
.x5e{left:466.990658px;}
.x44{left:469.720985px;}
.x2f{left:477.561450px;}
.x3c{left:489.655371px;}
.x55{left:504.301350px;}
.x51{left:505.535630px;}
.x56{left:507.054750px;}
.x42{left:514.892024px;}
.x46{left:519.529477px;}
.x3e{left:533.967010px;}
.x53{left:541.897654px;}
.x57{left:546.231898px;}
.x33{left:556.200000px;}
.x43{left:560.191434px;}
.x47{left:561.812136px;}
.x50{left:576.873442px;}
.x62{left:604.669050px;}
.x45{left:608.106433px;}
.x32{left:612.913950px;}
.x5f{left:639.952766px;}
.xa{left:652.459950px;}
.x9{left:677.977500px;}
.x59{left:800.689800px;}
.x1{left:807.210300px;}
@media print{
.v4{vertical-align:-3.791413pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.lse{letter-spacing:-8.171627pt;}
.lsd{letter-spacing:-7.741426pt;}
.ls17{letter-spacing:-7.090637pt;}
.ls13{letter-spacing:-2.852720pt;}
.lsa{letter-spacing:-2.205632pt;}
.ls16{letter-spacing:-2.045376pt;}
.ls10{letter-spacing:-1.850464pt;}
.ls15{letter-spacing:-1.711632pt;}
.lsc{letter-spacing:-1.060469pt;}
.ls1b{letter-spacing:-0.864000pt;}
.ls14{letter-spacing:-0.855816pt;}
.ls7{letter-spacing:-0.816000pt;}
.lsb{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.755568pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.251856pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.022933pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.373120pt;}
.ls19{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.022688pt;}
.ls12{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ws8c{word-spacing:-21.843387pt;}
.wsbb{word-spacing:-21.080258pt;}
.ws74{word-spacing:-20.438857pt;}
.wsc9{word-spacing:-19.976506pt;}
.wsc7{word-spacing:-18.953818pt;}
.wsa3{word-spacing:-17.553884pt;}
.ws94{word-spacing:-17.147633pt;}
.ws5{word-spacing:-15.936000pt;}
.wsaf{word-spacing:-15.861123pt;}
.ws82{word-spacing:-14.740524pt;}
.wsd3{word-spacing:-14.608000pt;}
.wsad{word-spacing:-14.133333pt;}
.wsa2{word-spacing:-13.706667pt;}
.ws80{word-spacing:-13.680054pt;}
.ws8d{word-spacing:-13.671760pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4b{word-spacing:-13.226667pt;}
.ws2a{word-spacing:-13.066667pt;}
.wsae{word-spacing:-13.008403pt;}
.ws2b{word-spacing:-12.853333pt;}
.ws4a{word-spacing:-12.533333pt;}
.ws63{word-spacing:-12.480000pt;}
.wsd5{word-spacing:-12.144000pt;}
.wsd4{word-spacing:-11.904000pt;}
.wsc8{word-spacing:-11.863181pt;}
.ws3{word-spacing:-11.760000pt;}
.wse2{word-spacing:-11.040000pt;}
.wse0{word-spacing:-10.896000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws6{word-spacing:-10.464000pt;}
.ws8{word-spacing:-9.984000pt;}
.ws0{word-spacing:-9.685333pt;}
.ws7{word-spacing:-9.648000pt;}
.ws29{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.301333pt;}
.ws1{word-spacing:-8.371200pt;}
.ws95{word-spacing:-8.084267pt;}
.ws4{word-spacing:-6.940032pt;}
.wse3{word-spacing:-6.688176pt;}
.wse1{word-spacing:-6.184464pt;}
.wsb0{word-spacing:-3.993808pt;}
.ws8e{word-spacing:-3.520000pt;}
.ws4e{word-spacing:-3.253333pt;}
.ws60{word-spacing:-2.720000pt;}
.wsfd{word-spacing:-2.688000pt;}
.ws2e{word-spacing:-2.560000pt;}
.ws75{word-spacing:-2.506667pt;}
.wscc{word-spacing:-2.453333pt;}
.ws6f{word-spacing:-2.400000pt;}
.ws37{word-spacing:-2.346667pt;}
.ws49{word-spacing:-2.293333pt;}
.wsea{word-spacing:-2.256000pt;}
.ws6c{word-spacing:-2.240000pt;}
.ws73{word-spacing:-2.133333pt;}
.ws16{word-spacing:-2.112000pt;}
.wsf8{word-spacing:-2.064000pt;}
.wsd6{word-spacing:-2.026667pt;}
.ws1b{word-spacing:-2.016000pt;}
.wsaa{word-spacing:-1.973333pt;}
.ws8a{word-spacing:-1.824000pt;}
.ws8b{word-spacing:-1.776000pt;}
.ws4f{word-spacing:-1.706667pt;}
.ws51{word-spacing:-1.653333pt;}
.wsf4{word-spacing:-1.584000pt;}
.ws56{word-spacing:-1.493333pt;}
.ws9a{word-spacing:-1.440000pt;}
.wse7{word-spacing:-1.392000pt;}
.ws77{word-spacing:-1.333333pt;}
.wscb{word-spacing:-1.280000pt;}
.ws91{word-spacing:-1.248000pt;}
.wsb8{word-spacing:-1.200000pt;}
.wsac{word-spacing:-1.152000pt;}
.ws50{word-spacing:-1.120000pt;}
.wsbc{word-spacing:-1.104000pt;}
.ws42{word-spacing:-1.066667pt;}
.wsda{word-spacing:-1.056000pt;}
.ws6e{word-spacing:-1.013333pt;}
.ws4d{word-spacing:-0.960000pt;}
.wsfa{word-spacing:-0.912000pt;}
.ws83{word-spacing:-0.800000pt;}
.ws2d{word-spacing:-0.746667pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.586667pt;}
.wsbd{word-spacing:-0.576000pt;}
.ws76{word-spacing:-0.533333pt;}
.ws7c{word-spacing:-0.480000pt;}
.wsee{word-spacing:-0.432000pt;}
.ws52{word-spacing:-0.426667pt;}
.wsec{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.ws78{word-spacing:-0.320000pt;}
.wse9{word-spacing:-0.288000pt;}
.wsdd{word-spacing:-0.240000pt;}
.ws5b{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.144000pt;}
.ws25{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.048000pt;}
.ws45{word-spacing:0.053333pt;}
.ws8f{word-spacing:0.106667pt;}
.ws27{word-spacing:0.160000pt;}
.ws47{word-spacing:0.213333pt;}
.ws55{word-spacing:0.266667pt;}
.wsd1{word-spacing:0.288000pt;}
.wsb2{word-spacing:0.320000pt;}
.wseb{word-spacing:0.336000pt;}
.ws39{word-spacing:0.373333pt;}
.wsf6{word-spacing:0.384000pt;}
.ws28{word-spacing:0.426667pt;}
.wsf7{word-spacing:0.480000pt;}
.ws22{word-spacing:0.533333pt;}
.ws68{word-spacing:0.586667pt;}
.wsd{word-spacing:0.614400pt;}
.ws58{word-spacing:0.640000pt;}
.ws85{word-spacing:0.693333pt;}
.ws84{word-spacing:0.746667pt;}
.ws81{word-spacing:0.795352pt;}
.ws86{word-spacing:0.800000pt;}
.wsb9{word-spacing:0.855816pt;}
.wse8{word-spacing:0.864000pt;}
.ws2c{word-spacing:0.906667pt;}
.ws43{word-spacing:0.960000pt;}
.wsca{word-spacing:1.013333pt;}
.ws1d{word-spacing:1.056000pt;}
.wsab{word-spacing:1.066667pt;}
.wsb7{word-spacing:1.104000pt;}
.wsc4{word-spacing:1.120000pt;}
.wsce{word-spacing:1.173333pt;}
.ws62{word-spacing:1.226667pt;}
.wsa1{word-spacing:1.280000pt;}
.ws18{word-spacing:1.296000pt;}
.ws12{word-spacing:1.344000pt;}
.ws23{word-spacing:1.440000pt;}
.wsb6{word-spacing:1.493333pt;}
.ws7b{word-spacing:1.546667pt;}
.wsa9{word-spacing:1.600000pt;}
.wsed{word-spacing:1.632000pt;}
.wsb3{word-spacing:1.653333pt;}
.ws48{word-spacing:1.706667pt;}
.wsba{word-spacing:1.711632pt;}
.ws15{word-spacing:1.776000pt;}
.wsa6{word-spacing:1.813333pt;}
.ws98{word-spacing:1.850464pt;}
.ws17{word-spacing:1.872000pt;}
.wsf1{word-spacing:1.920000pt;}
.ws10{word-spacing:1.968000pt;}
.ws54{word-spacing:1.973333pt;}
.ws53{word-spacing:2.026667pt;}
.wsd2{word-spacing:2.045376pt;}
.ws70{word-spacing:2.133333pt;}
.ws6b{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.205632pt;}
.ws41{word-spacing:2.240000pt;}
.ws14{word-spacing:2.256000pt;}
.ws40{word-spacing:2.293333pt;}
.ws6a{word-spacing:2.346667pt;}
.ws32{word-spacing:2.400000pt;}
.wsc2{word-spacing:2.453333pt;}
.ws61{word-spacing:2.506667pt;}
.ws65{word-spacing:2.560000pt;}
.wsf3{word-spacing:2.592000pt;}
.ws3f{word-spacing:2.613333pt;}
.wsf2{word-spacing:2.640000pt;}
.wsb1{word-spacing:2.666667pt;}
.ws59{word-spacing:2.826667pt;}
.ws5a{word-spacing:2.880000pt;}
.wsdb{word-spacing:2.928000pt;}
.ws4c{word-spacing:2.986667pt;}
.ws89{word-spacing:3.024000pt;}
.ws88{word-spacing:3.072000pt;}
.ws90{word-spacing:3.146667pt;}
.ws69{word-spacing:3.253333pt;}
.ws33{word-spacing:3.306667pt;}
.wsa7{word-spacing:3.360000pt;}
.ws5c{word-spacing:3.413333pt;}
.ws38{word-spacing:3.466667pt;}
.ws34{word-spacing:3.520000pt;}
.ws67{word-spacing:3.573333pt;}
.ws1a{word-spacing:3.600000pt;}
.ws19{word-spacing:3.648000pt;}
.ws3e{word-spacing:3.680000pt;}
.ws3d{word-spacing:3.733333pt;}
.ws26{word-spacing:3.786667pt;}
.ws35{word-spacing:3.840000pt;}
.wse6{word-spacing:3.888000pt;}
.wsa4{word-spacing:3.893333pt;}
.wsd0{word-spacing:3.936000pt;}
.wsa5{word-spacing:3.946667pt;}
.wscf{word-spacing:4.032000pt;}
.ws44{word-spacing:4.053333pt;}
.ws3c{word-spacing:4.106667pt;}
.ws99{word-spacing:4.213333pt;}
.ws5f{word-spacing:4.320000pt;}
.wsc0{word-spacing:4.426667pt;}
.ws11{word-spacing:4.464000pt;}
.ws3a{word-spacing:4.533333pt;}
.ws5d{word-spacing:4.586667pt;}
.ws93{word-spacing:4.608000pt;}
.ws66{word-spacing:4.640000pt;}
.ws92{word-spacing:4.656000pt;}
.wse{word-spacing:4.704000pt;}
.ws97{word-spacing:4.752000pt;}
.ws96{word-spacing:4.848000pt;}
.ws72{word-spacing:4.960000pt;}
.ws71{word-spacing:5.013333pt;}
.wsc5{word-spacing:5.066667pt;}
.ws7e{word-spacing:5.088000pt;}
.ws7d{word-spacing:5.136000pt;}
.ws9c{word-spacing:5.226667pt;}
.ws57{word-spacing:5.386667pt;}
.wse4{word-spacing:5.424000pt;}
.wsc6{word-spacing:5.440000pt;}
.wsd8{word-spacing:5.472000pt;}
.ws20{word-spacing:5.493333pt;}
.wsa8{word-spacing:5.653333pt;}
.ws79{word-spacing:5.706667pt;}
.wsf9{word-spacing:5.712000pt;}
.wscd{word-spacing:5.760000pt;}
.wsa0{word-spacing:5.813333pt;}
.wsf{word-spacing:5.856000pt;}
.ws30{word-spacing:5.866667pt;}
.ws5e{word-spacing:5.920000pt;}
.ws6d{word-spacing:5.973333pt;}
.wsbf{word-spacing:6.133333pt;}
.wsd7{word-spacing:6.240000pt;}
.ws46{word-spacing:6.293333pt;}
.ws24{word-spacing:6.506667pt;}
.wsdc{word-spacing:6.528000pt;}
.wsc3{word-spacing:6.560000pt;}
.ws3b{word-spacing:6.826667pt;}
.ws36{word-spacing:7.040000pt;}
.ws9b{word-spacing:7.093333pt;}
.wsf5{word-spacing:7.152000pt;}
.wsb4{word-spacing:7.200000pt;}
.ws87{word-spacing:7.253333pt;}
.wsdf{word-spacing:7.296000pt;}
.wsb5{word-spacing:7.306667pt;}
.wsde{word-spacing:7.344000pt;}
.wsc1{word-spacing:7.626667pt;}
.wsef{word-spacing:7.680000pt;}
.wsd9{word-spacing:7.824000pt;}
.ws9f{word-spacing:8.640000pt;}
.ws9e{word-spacing:8.693333pt;}
.ws9d{word-spacing:8.906667pt;}
.ws7a{word-spacing:9.013333pt;}
.wsfe{word-spacing:9.120000pt;}
.wsbe{word-spacing:10.133333pt;}
.wsfb{word-spacing:10.272000pt;}
.wsfc{word-spacing:10.416000pt;}
.wse5{word-spacing:12.480000pt;}
.wsf0{word-spacing:14.400000pt;}
.ws1f{word-spacing:15.840000pt;}
.ws1e{word-spacing:15.936000pt;}
.ws64{word-spacing:16.586667pt;}
._10{margin-left:-20.997293pt;}
._13{margin-left:-11.999539pt;}
._8{margin-left:-9.432533pt;}
._1{margin-left:-7.897067pt;}
._f{margin-left:-6.733980pt;}
._7{margin-left:-5.552533pt;}
._d{margin-left:-4.314133pt;}
._a{margin-left:-3.409600pt;}
._5{margin-left:-2.356800pt;}
._0{margin-left:-0.979200pt;}
._4{width:0.948480pt;}
._2{width:2.710933pt;}
._6{width:3.899733pt;}
._b{width:5.237333pt;}
._c{width:6.144000pt;}
._9{width:7.146667pt;}
._14{width:8.059733pt;}
._e{width:8.986667pt;}
._12{width:10.298667pt;}
._11{width:11.189333pt;}
._16{width:12.947200pt;}
._17{width:14.172800pt;}
._18{width:15.369600pt;}
._19{width:17.155733pt;}
._1a{width:18.271467pt;}
._1d{width:20.893333pt;}
._1b{width:22.236267pt;}
._1c{width:23.555733pt;}
._3{width:32.554667pt;}
._15{width:38.275733pt;}
.fs8{font-size:27.984000pt;}
.fs15{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs14{font-size:41.121600pt;}
.fs18{font-size:42.095467pt;}
.fs0{font-size:42.666667pt;}
.fs20{font-size:45.452800pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:49.013867pt;}
.fs1d{font-size:50.552533pt;}
.fs11{font-size:52.381867pt;}
.fsd{font-size:53.023467pt;}
.fs7{font-size:53.333333pt;}
.fs19{font-size:57.054400pt;}
.fs2{font-size:58.666667pt;}
.fs12{font-size:61.682133pt;}
.fs16{font-size:63.143467pt;}
.fs9{font-size:64.000000pt;}
.fs1e{font-size:68.179200pt;}
.fsa{font-size:73.521067pt;}
.fs1b{font-size:75.828267pt;}
.fsf{font-size:78.573333pt;}
.fs13{font-size:82.242667pt;}
.fs17{font-size:84.190933pt;}
.fs1{font-size:90.666667pt;}
.fs1f{font-size:90.905600pt;}
.fsb{font-size:98.028267pt;}
.fs1c{font-size:101.104533pt;}
.fs10{font-size:104.764267pt;}
.fse{font-size:106.046933pt;}
.fs1a{font-size:114.109333pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:0.971467pt;}
.yb1{bottom:3.037067pt;}
.y101{bottom:5.126133pt;}
.y155{bottom:5.535067pt;}
.yde{bottom:6.378133pt;}
.y1{bottom:60.555333pt;}
.y41{bottom:63.299600pt;}
.y42{bottom:66.698800pt;}
.y110{bottom:95.044800pt;}
.y104{bottom:95.161467pt;}
.y74{bottom:100.514400pt;}
.ya1{bottom:100.514533pt;}
.y2c{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.ya{bottom:117.578267pt;}
.y73{bottom:119.181067pt;}
.ya0{bottom:119.181200pt;}
.y2b{bottom:122.855600pt;}
.y9{bottom:130.378267pt;}
.yf4{bottom:131.805067pt;}
.y72{bottom:137.847733pt;}
.y9f{bottom:137.847867pt;}
.y2a{bottom:141.522267pt;}
.y8{bottom:143.178267pt;}
.y15a{bottom:144.379200pt;}
.y7{bottom:155.978267pt;}
.y71{bottom:156.514400pt;}
.y173{bottom:156.514533pt;}
.y29{bottom:160.188933pt;}
.yd8{bottom:169.280800pt;}
.y9e{bottom:169.280933pt;}
.y70{bottom:175.181067pt;}
.y172{bottom:175.181200pt;}
.y28{bottom:178.855600pt;}
.y14f{bottom:187.947467pt;}
.y3e{bottom:190.037867pt;}
.y6f{bottom:193.847733pt;}
.y171{bottom:193.847867pt;}
.y27{bottom:197.522267pt;}
.y3d{bottom:206.037867pt;}
.yb2{bottom:209.422206pt;}
.yac{bottom:212.280133pt;}
.y6e{bottom:212.514400pt;}
.y9d{bottom:212.514533pt;}
.y26{bottom:216.188933pt;}
.y3c{bottom:222.037867pt;}
.y6d{bottom:231.181067pt;}
.y9c{bottom:231.181200pt;}
.yd5{bottom:232.703733pt;}
.y25{bottom:234.855600pt;}
.y3b{bottom:238.037867pt;}
.y6c{bottom:249.847733pt;}
.y9b{bottom:249.847867pt;}
.y24{bottom:253.522267pt;}
.y3a{bottom:254.037867pt;}
.y6b{bottom:268.514400pt;}
.y9a{bottom:268.514533pt;}
.y39{bottom:270.037867pt;}
.y23{bottom:272.188933pt;}
.y38{bottom:286.037867pt;}
.y6a{bottom:287.181067pt;}
.y99{bottom:287.181200pt;}
.y22{bottom:290.855600pt;}
.ye5{bottom:291.427200pt;}
.y37{bottom:302.037867pt;}
.y69{bottom:305.847733pt;}
.y98{bottom:305.847867pt;}
.y21{bottom:309.522267pt;}
.y36{bottom:318.037867pt;}
.y68{bottom:324.514400pt;}
.y97{bottom:324.514533pt;}
.y35{bottom:334.037867pt;}
.y148{bottom:335.309733pt;}
.y170{bottom:337.280933pt;}
.y20{bottom:339.513200pt;}
.y67{bottom:343.181067pt;}
.y96{bottom:343.181200pt;}
.y34{bottom:350.037867pt;}
.y66{bottom:361.847733pt;}
.y95{bottom:361.847867pt;}
.yf6{bottom:365.019867pt;}
.y115{bottom:367.899200pt;}
.y65{bottom:380.514400pt;}
.y94{bottom:380.514533pt;}
.yd1{bottom:380.727467pt;}
.y33{bottom:381.156000pt;}
.y114{bottom:385.499200pt;}
.y32{bottom:397.156000pt;}
.y64{bottom:399.181067pt;}
.y93{bottom:399.181200pt;}
.yb6{bottom:402.268133pt;}
.y113{bottom:403.099200pt;}
.yf7{bottom:404.675467pt;}
.y10e{bottom:405.876533pt;}
.y1f{bottom:407.313733pt;}
.y31{bottom:413.156000pt;}
.y63{bottom:417.847733pt;}
.y92{bottom:417.847867pt;}
.ydc{bottom:419.228000pt;}
.yb5{bottom:419.868133pt;}
.y112{bottom:420.699200pt;}
.y13d{bottom:422.033867pt;}
.y16f{bottom:422.692800pt;}
.y1e{bottom:424.913733pt;}
.y62{bottom:436.514400pt;}
.y91{bottom:436.514533pt;}
.y164{bottom:436.589867pt;}
.ydb{bottom:436.828000pt;}
.yb4{bottom:437.468133pt;}
.y137{bottom:439.148000pt;}
.y13c{bottom:439.633867pt;}
.y30{bottom:444.274133pt;}
.y14e{bottom:448.104267pt;}
.y139{bottom:450.137333pt;}
.y116{bottom:451.706400pt;}
.yda{bottom:454.428000pt;}
.yb3{bottom:455.068133pt;}
.y61{bottom:455.181067pt;}
.y90{bottom:455.181200pt;}
.y13b{bottom:457.233867pt;}
.ya7{bottom:457.885067pt;}
.y2f{bottom:460.274133pt;}
.y1d{bottom:461.411333pt;}
.yb0{bottom:464.945467pt;}
.y117{bottom:468.936829pt;}
.yd9{bottom:472.028000pt;}
.yd0{bottom:473.516000pt;}
.y60{bottom:473.847733pt;}
.yfb{bottom:473.847867pt;}
.y13a{bottom:474.833867pt;}
.ya6{bottom:475.485067pt;}
.y2e{bottom:476.274133pt;}
.y1c{bottom:479.011333pt;}
.y118{bottom:486.409739pt;}
.y8f{bottom:486.614267pt;}
.y153{bottom:487.846000pt;}
.yd4{bottom:490.060933pt;}
.ydd{bottom:490.477333pt;}
.ybb{bottom:491.323335pt;}
.y2d{bottom:492.274133pt;}
.y5f{bottom:492.514400pt;}
.yfa{bottom:492.514533pt;}
.ya5{bottom:493.085067pt;}
.y147{bottom:493.282667pt;}
.y1b{bottom:496.611333pt;}
.y16e{bottom:497.359467pt;}
.yed{bottom:499.064133pt;}
.y14c{bottom:500.213467pt;}
.yea{bottom:502.234667pt;}
.y119{bottom:502.527607pt;}
.y152{bottom:505.446000pt;}
.ybc{bottom:509.470616pt;}
.ya4{bottom:510.685067pt;}
.y5e{bottom:511.181067pt;}
.y174{bottom:511.181200pt;}
.y13e{bottom:512.401467pt;}
.y1a{bottom:514.211333pt;}
.y14d{bottom:514.533067pt;}
.yd3{bottom:518.921067pt;}
.yff{bottom:519.999200pt;}
.y11a{bottom:521.184396pt;}
.y151{bottom:523.046000pt;}
.ybd{bottom:527.604642pt;}
.ya8{bottom:529.133333pt;}
.y5d{bottom:529.847733pt;}
.y8e{bottom:529.847867pt;}
.y19{bottom:531.811333pt;}
.ydf{bottom:537.446133pt;}
.yfe{bottom:537.599200pt;}
.y11b{bottom:538.685833pt;}
.yf0{bottom:539.217067pt;}
.y150{bottom:540.646000pt;}
.ybe{bottom:544.479360pt;}
.y5c{bottom:548.514400pt;}
.y8d{bottom:548.514533pt;}
.y18{bottom:549.411333pt;}
.y138{bottom:551.559733pt;}
.y13f{bottom:551.718423pt;}
.yfd{bottom:555.199200pt;}
.y11c{bottom:556.287115pt;}
.yef{bottom:556.816933pt;}
.y154{bottom:559.094667pt;}
.ybf{bottom:563.899205pt;}
.yeb{bottom:566.758133pt;}
.y17{bottom:567.011333pt;}
.y5b{bottom:567.181067pt;}
.y8c{bottom:567.181200pt;}
.y165{bottom:568.809467pt;}
.yfc{bottom:572.799200pt;}
.y11d{bottom:573.731498pt;}
.yee{bottom:574.416933pt;}
.ya3{bottom:579.947467pt;}
.ye0{bottom:580.248957pt;}
.yc0{bottom:580.773923pt;}
.y16{bottom:584.611333pt;}
.y5a{bottom:585.847733pt;}
.y8b{bottom:585.847867pt;}
.y156{bottom:590.892933pt;}
.y11e{bottom:590.933400pt;}
.y140{bottom:591.035379pt;}
.y100{bottom:591.248000pt;}
.yf3{bottom:592.866667pt;}
.yc1{bottom:598.921205pt;}
.yaa{bottom:601.623467pt;}
.y15{bottom:602.211333pt;}
.y166{bottom:604.114929pt;}
.y59{bottom:604.514400pt;}
.y8a{bottom:604.514533pt;}
.y11f{bottom:607.136849pt;}
.yf1{bottom:607.431467pt;}
.yf8{bottom:607.799867pt;}
.y16d{bottom:609.359467pt;}
.yc2{bottom:618.354305pt;}
.y157{bottom:618.675957pt;}
.y14{bottom:619.811333pt;}
.ye1{bottom:620.851727pt;}
.y58{bottom:623.181067pt;}
.y89{bottom:623.181200pt;}
.y120{bottom:624.467123pt;}
.y102{bottom:627.781733pt;}
.y141{bottom:632.020557pt;}
.yc3{bottom:635.215768pt;}
.y13{bottom:637.411333pt;}
.y57{bottom:641.847733pt;}
.y88{bottom:641.847867pt;}
.y121{bottom:643.423448pt;}
.y158{bottom:648.129372pt;}
.yc4{bottom:653.469096pt;}
.y12{bottom:655.011333pt;}
.y103{bottom:657.790666pt;}
.y122{bottom:659.327362pt;}
.y56{bottom:660.514400pt;}
.y87{bottom:660.514533pt;}
.ye2{bottom:661.552713pt;}
.y142{bottom:671.299599pt;}
.yab{bottom:671.707423pt;}
.y134{bottom:671.950648pt;}
.y11{bottom:672.611333pt;}
.yc5{bottom:672.782894pt;}
.y159{bottom:674.224961pt;}
.y123{bottom:676.871590pt;}
.y55{bottom:679.181067pt;}
.y86{bottom:679.181200pt;}
.y167{bottom:680.509723pt;}
.y10{bottom:690.211333pt;}
.yc6{bottom:690.916919pt;}
.y124{bottom:694.287445pt;}
.y54{bottom:697.847733pt;}
.y85{bottom:697.847867pt;}
.ye3{bottom:702.410847pt;}
.yf{bottom:707.811333pt;}
.y143{bottom:708.967291pt;}
.yc7{bottom:709.077457pt;}
.yec{bottom:709.132047pt;}
.y125{bottom:713.015552pt;}
.y53{bottom:716.514400pt;}
.y84{bottom:716.514533pt;}
.y105{bottom:717.789867pt;}
.y16c{bottom:721.359333pt;}
.yf2{bottom:724.673782pt;}
.yf9{bottom:725.243156pt;}
.ye{bottom:725.411333pt;}
.yc8{bottom:727.211482pt;}
.y126{bottom:730.431408pt;}
.y15b{bottom:731.349733pt;}
.y52{bottom:735.181067pt;}
.y83{bottom:735.181200pt;}
.ye4{bottom:741.127857pt;}
.yc9{bottom:744.178992pt;}
.y106{bottom:746.314928pt;}
.y127{bottom:747.904318pt;}
.y144{bottom:749.914555pt;}
.yd{bottom:753.053600pt;}
.y51{bottom:753.847733pt;}
.y82{bottom:753.847867pt;}
.y15c{bottom:759.303205pt;}
.yca{bottom:762.326273pt;}
.y111{bottom:763.386267pt;}
.y128{bottom:765.377228pt;}
.yd7{bottom:768.453754pt;}
.y50{bottom:772.514400pt;}
.y81{bottom:772.514533pt;}
.y107{bottom:776.323860pt;}
.y16b{bottom:777.359333pt;}
.ycb{bottom:780.473555pt;}
.y129{bottom:782.821610pt;}
.y15d{bottom:785.364705pt;}
.y145{bottom:789.231511pt;}
.y4f{bottom:791.181067pt;}
.y80{bottom:791.181200pt;}
.ycc{bottom:798.514789pt;}
.y12a{bottom:800.151884pt;}
.y108{bottom:807.864022pt;}
.yad{bottom:809.669733pt;}
.y4e{bottom:809.847733pt;}
.y7f{bottom:809.847867pt;}
.y15e{bottom:813.113639pt;}
.y12b{bottom:816.212698pt;}
.ycd{bottom:816.781373pt;}
.y6{bottom:823.526000pt;}
.ye6{bottom:824.491067pt;}
.y4d{bottom:828.514400pt;}
.y7e{bottom:828.514533pt;}
.y146{bottom:828.548467pt;}
.y16a{bottom:833.721867pt;}
.y12c{bottom:835.111968pt;}
.yce{bottom:836.095171pt;}
.y109{bottom:837.825597pt;}
.y136{bottom:839.319730pt;}
.y5{bottom:839.526000pt;}
.y15f{bottom:840.879618pt;}
.yf5{bottom:842.139200pt;}
.y4c{bottom:847.181067pt;}
.y7d{bottom:847.181200pt;}
.y12d{bottom:852.413715pt;}
.yd6{bottom:853.742000pt;}
.ycf{bottom:854.229197pt;}
.y169{bottom:859.947600pt;}
.ye7{bottom:865.329557pt;}
.y4b{bottom:865.847733pt;}
.y7c{bottom:865.847867pt;}
.y10a{bottom:867.897673pt;}
.y149{bottom:867.913600pt;}
.y135{bottom:868.075148pt;}
.y10f{bottom:868.255067pt;}
.y160{bottom:868.679687pt;}
.y12e{bottom:870.086315pt;}
.y4{bottom:870.644267pt;}
.yd2{bottom:871.218667pt;}
.y168{bottom:879.661166pt;}
.yae{bottom:881.187351pt;}
.y4a{bottom:884.514400pt;}
.y7b{bottom:884.514533pt;}
.y12f{bottom:887.516434pt;}
.yb9{bottom:889.264452pt;}
.y10b{bottom:897.938177pt;}
.y161{bottom:898.116057pt;}
.y49{bottom:903.181067pt;}
.y7a{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ye8{bottom:904.262643pt;}
.y130{bottom:904.746863pt;}
.y14a{bottom:905.581291pt;}
.yba{bottom:908.869879pt;}
.y48{bottom:921.847733pt;}
.y79{bottom:921.847867pt;}
.y131{bottom:922.291091pt;}
.y162{bottom:924.075287pt;}
.y10c{bottom:926.384309pt;}
.yb7{bottom:926.805067pt;}
.y2{bottom:932.695600pt;}
.y132{bottom:939.621365pt;}
.y47{bottom:940.514400pt;}
.y78{bottom:940.514533pt;}
.yb8{bottom:943.706297pt;}
.y14b{bottom:944.917205pt;}
.ye9{bottom:945.022560pt;}
.yaf{bottom:949.451661pt;}
.y133{bottom:950.190693pt;}
.y163{bottom:951.977625pt;}
.y10d{bottom:956.519528pt;}
.y46{bottom:959.181067pt;}
.y77{bottom:959.181200pt;}
.y176{bottom:968.802933pt;}
.y45{bottom:977.847733pt;}
.y76{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.ya2{bottom:990.952667pt;}
.y44{bottom:996.514400pt;}
.y75{bottom:996.514533pt;}
.y175{bottom:997.511867pt;}
.y40{bottom:1027.213600pt;}
.y3f{bottom:1044.546933pt;}
.y43{bottom:1047.726000pt;}
.h21{height:29.566430pt;}
.h25{height:30.266641pt;}
.h6{height:30.618750pt;}
.h31{height:32.680563pt;}
.h2{height:33.812500pt;}
.h10{height:34.020833pt;}
.h5{height:34.250000pt;}
.h15{height:35.240970pt;}
.h2d{height:36.347271pt;}
.h7{height:36.492188pt;}
.h1d{height:37.662562pt;}
.hf{height:38.039062pt;}
.h19{height:38.123873pt;}
.he{height:38.273438pt;}
.h16{height:38.601084pt;}
.h8{height:40.546875pt;}
.h27{height:41.022114pt;}
.h26{height:41.535603pt;}
.h9{height:43.218750pt;}
.ha{height:43.500000pt;}
.h11{height:44.601562pt;}
.h1e{height:44.904593pt;}
.h23{height:45.968444pt;}
.hc{height:48.020833pt;}
.hd{height:48.333333pt;}
.hb{height:48.656250pt;}
.h2f{height:49.634458pt;}
.h4{height:52.822917pt;}
.h13{height:53.523337pt;}
.h2a{height:55.202978pt;}
.h1b{height:57.201387pt;}
.h20{height:59.872661pt;}
.h24{height:61.290999pt;}
.h30{height:66.179277pt;}
.h3{height:68.929688pt;}
.h14{height:71.658663pt;}
.h2c{height:73.604100pt;}
.h1c{height:76.268386pt;}
.h18{height:77.202167pt;}
.h29{height:83.071595pt;}
.h1f{height:422.314667pt;}
.h22{height:423.932000pt;}
.h2e{height:456.086667pt;}
.h12{height:486.046667pt;}
.h2b{height:521.897333pt;}
.h1a{height:524.704000pt;}
.h17{height:541.664000pt;}
.h28{height:576.032000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:373.704000pt;}
.w5{width:378.513333pt;}
.w9{width:384.012000pt;}
.w3{width:391.109333pt;}
.w6{width:393.572000pt;}
.w2{width:455.361333pt;}
.w8{width:466.377333pt;}
.w4{width:487.821333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:0.996933pt;}
.x5b{left:28.077867pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x61{left:113.671733pt;}
.x2b{left:125.101733pt;}
.x36{left:145.927867pt;}
.x3f{left:152.160000pt;}
.x13{left:157.332800pt;}
.x2a{left:168.057333pt;}
.x58{left:170.271467pt;}
.x54{left:178.780000pt;}
.xd{left:184.288000pt;}
.x27{left:188.420667pt;}
.x30{left:197.545067pt;}
.x4d{left:202.481600pt;}
.x39{left:215.182667pt;}
.x25{left:216.414667pt;}
.x5a{left:219.962667pt;}
.x63{left:221.268470pt;}
.x34{left:222.712000pt;}
.x4c{left:225.116000pt;}
.x15{left:227.978800pt;}
.x49{left:230.191642pt;}
.x31{left:239.139733pt;}
.x38{left:240.787072pt;}
.x16{left:247.080504pt;}
.x4a{left:248.149515pt;}
.x28{left:254.758000pt;}
.x37{left:262.242267pt;}
.x52{left:265.007531pt;}
.x4{left:266.834667pt;}
.x40{left:272.531867pt;}
.x5c{left:275.790133pt;}
.xf{left:277.242133pt;}
.x5{left:281.952800pt;}
.x4e{left:283.131200pt;}
.x2d{left:293.477623pt;}
.x11{left:296.858667pt;}
.x17{left:300.170250pt;}
.x29{left:305.252800pt;}
.x41{left:307.919600pt;}
.x3b{left:311.961600pt;}
.x2c{left:314.319200pt;}
.x64{left:319.139712pt;}
.x18{left:321.048240pt;}
.x4b{left:322.990624pt;}
.x5d{left:331.611853pt;}
.x1f{left:335.072947pt;}
.x48{left:336.241508pt;}
.x19{left:340.096920pt;}
.x3a{left:341.137333pt;}
.x3{left:352.045067pt;}
.x1a{left:357.634432pt;}
.x1e{left:359.397462pt;}
.x1c{left:360.842352pt;}
.x35{left:363.782800pt;}
.x14{left:365.163600pt;}
.x21{left:368.119822pt;}
.x12{left:369.148255pt;}
.x10{left:373.627733pt;}
.x23{left:375.370781pt;}
.x22{left:376.855439pt;}
.x1b{left:378.260560pt;}
.x60{left:380.092788pt;}
.x4f{left:386.579200pt;}
.x20{left:388.136181pt;}
.x24{left:389.209906pt;}
.x3d{left:393.782133pt;}
.x1d{left:395.718537pt;}
.x2e{left:398.039087pt;}
.x26{left:409.332267pt;}
.x5e{left:415.102807pt;}
.x44{left:417.529765pt;}
.x2f{left:424.499067pt;}
.x3c{left:435.249219pt;}
.x55{left:448.267867pt;}
.x51{left:449.365005pt;}
.x56{left:450.715333pt;}
.x42{left:457.681799pt;}
.x46{left:461.803979pt;}
.x3e{left:474.637342pt;}
.x53{left:481.686803pt;}
.x57{left:485.539465pt;}
.x33{left:494.400000pt;}
.x43{left:497.947942pt;}
.x47{left:499.388565pt;}
.x50{left:512.776393pt;}
.x62{left:537.483600pt;}
.x45{left:540.539051pt;}
.x32{left:544.812400pt;}
.x5f{left:568.846903pt;}
.xa{left:579.964400pt;}
.x9{left:602.646667pt;}
.x59{left:711.724267pt;}
.x1{left:717.520267pt;}
}




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