
    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_d825e50194fc1f113525a90f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_b4f85faede45060a321d4b19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_533af78bf5777d7588b1bd58.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fd7d9723528ce4eb7511ba92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_fbf39fd19a8f0c69e032de3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_7aa3827a108672faf3e5e500.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_a0ae655304f0aba30639e313.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e33f104dd3de43d8a0a411e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_fdee4441e44caaaf4b9c4830.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905000;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_df13bb3d02c58346e8048f9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d13a1db29026f33568cf5392.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.691406;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_6cc52a264f5b7841c0c04bb4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.673000;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_81911e97b45933a6fd2664ae.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0d982f7b2a7bd0987d78303e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.497000;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_d7961bb4241b7e789d0e5dec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.922000;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_34067c92546b178e9c94d179.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.854000px;}
.v6{vertical-align:-21.690000px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.868000px;}
.v7{vertical-align:15.558000px;}
.v5{vertical-align:18.042000px;}
.v4{vertical-align:21.690000px;}
.v1{vertical-align:22.854000px;}
.ls1{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.002338px;}
.lse{letter-spacing:0.003269px;}
.ls36{letter-spacing:0.003954px;}
.ls4{letter-spacing:0.004200px;}
.ls33{letter-spacing:0.004893px;}
.ls1d{letter-spacing:0.221549px;}
.ls46{letter-spacing:1.655249px;}
.ls4b{letter-spacing:1.661249px;}
.ls30{letter-spacing:2.143908px;}
.ls6{letter-spacing:2.984525px;}
.ls37{letter-spacing:2.986363px;}
.ls3a{letter-spacing:2.988532px;}
.ls40{letter-spacing:2.988615px;}
.ls43{letter-spacing:2.989140px;}
.ls3c{letter-spacing:2.990400px;}
.ls5{letter-spacing:2.990525px;}
.ls16{letter-spacing:3.156921px;}
.ls1e{letter-spacing:3.326172px;}
.ls48{letter-spacing:5.312525px;}
.ls3d{letter-spacing:6.433866px;}
.ls2d{letter-spacing:6.758108px;}
.ls1c{letter-spacing:6.764108px;}
.ls35{letter-spacing:9.962338px;}
.ls3f{letter-spacing:11.868538px;}
.ls2b{letter-spacing:14.370538px;}
.ls3e{letter-spacing:14.858525px;}
.ls20{letter-spacing:16.602538px;}
.ls26{letter-spacing:16.604400px;}
.ls1f{letter-spacing:16.605269px;}
.ls25{letter-spacing:16.829549px;}
.ls42{letter-spacing:17.296438px;}
.ls2a{letter-spacing:17.696172px;}
.ls15{letter-spacing:18.254400px;}
.ls4f{letter-spacing:18.429487px;}
.ls4e{letter-spacing:18.434145px;}
.ls14{letter-spacing:18.479549px;}
.ls39{letter-spacing:18.601559px;}
.ls38{letter-spacing:18.607002px;}
.ls4d{letter-spacing:19.096363px;}
.ls27{letter-spacing:19.278921px;}
.ls18{letter-spacing:19.384438px;}
.ls4c{letter-spacing:19.586525px;}
.ls49{letter-spacing:19.592525px;}
.ls32{letter-spacing:19.604338px;}
.ls41{letter-spacing:20.293140px;}
.ls3{letter-spacing:20.802538px;}
.ls23{letter-spacing:20.990525px;}
.ls22{letter-spacing:20.996525px;}
.ls17{letter-spacing:21.137549px;}
.ls8{letter-spacing:21.292438px;}
.ls21{letter-spacing:21.326172px;}
.ls0{letter-spacing:21.420532px;}
.ls2c{letter-spacing:21.470172px;}
.ls12{letter-spacing:21.854727px;}
.ls2{letter-spacing:21.984961px;}
.ls13{letter-spacing:22.316387px;}
.ls19{letter-spacing:22.542921px;}
.lsd{letter-spacing:22.644538px;}
.ls31{letter-spacing:22.750618px;}
.ls3b{letter-spacing:22.910525px;}
.ls24{letter-spacing:23.300525px;}
.lsf{letter-spacing:23.553199px;}
.ls45{letter-spacing:23.623140px;}
.ls1a{letter-spacing:24.074646px;}
.ls7{letter-spacing:24.284525px;}
.ls2f{letter-spacing:24.286618px;}
.ls2e{letter-spacing:24.410338px;}
.lsc{letter-spacing:24.794222px;}
.ls28{letter-spacing:24.878172px;}
.ls44{letter-spacing:24.994618px;}
.ls34{letter-spacing:25.430525px;}
.lsb{letter-spacing:25.700222px;}
.lsa{letter-spacing:28.296300px;}
.ls9{letter-spacing:28.300896px;}
.ls29{letter-spacing:28.316108px;}
.ls11{letter-spacing:28.895602px;}
.ls10{letter-spacing:31.854065px;}
.ls47{letter-spacing:32.629140px;}
.ls1b{letter-spacing:33.434108px;}
.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;}
}
.wsd2{word-spacing:-49.852850px;}
.ws41{word-spacing:-38.937826px;}
.ws42{word-spacing:-28.955301px;}
.ws53{word-spacing:-16.605662px;}
.ws40{word-spacing:-15.278643px;}
.wse1{word-spacing:-13.531962px;}
.wsac{word-spacing:-3.275703px;}
.wscd{word-spacing:-3.156152px;}
.ws3a{word-spacing:-2.618171px;}
.wsb7{word-spacing:-2.501626px;}
.ws62{word-spacing:-2.498620px;}
.ws5c{word-spacing:-2.259518px;}
.ws11{word-spacing:-2.199742px;}
.ws102{word-spacing:-2.071238px;}
.ws9f{word-spacing:-1.721537px;}
.ws3c{word-spacing:-1.601986px;}
.wsb6{word-spacing:-1.425658px;}
.ws7e{word-spacing:-1.303108px;}
.wse0{word-spacing:-1.243332px;}
.wsf7{word-spacing:-0.944454px;}
.ws61{word-spacing:-0.824903px;}
.ws31{word-spacing:-0.585801px;}
.ws3f{word-spacing:-0.526025px;}
.ws59{word-spacing:-0.466250px;}
.ws13{word-spacing:-0.346698px;}
.wsf0{word-spacing:-0.267794px;}
.ws14{word-spacing:-0.227147px;}
.ws6e{word-spacing:-0.167372px;}
.ws15{word-spacing:-0.107596px;}
.ws3{word-spacing:-0.053798px;}
.wsa1{word-spacing:-0.047820px;}
.wsbb{word-spacing:-0.041843px;}
.wsd1{word-spacing:-0.015471px;}
.ws23{word-spacing:0.000000px;}
.wsde{word-spacing:0.011955px;}
.ws30{word-spacing:0.071731px;}
.ws21{word-spacing:0.108791px;}
.wsf{word-spacing:0.131506px;}
.ws90{word-spacing:0.188294px;}
.ws36{word-spacing:0.251058px;}
.ws6a{word-spacing:0.310833px;}
.wse{word-spacing:0.370609px;}
.ws78{word-spacing:0.430384px;}
.wsa5{word-spacing:0.485376px;}
.wsd8{word-spacing:0.490160px;}
.ws10{word-spacing:0.549936px;}
.wsd4{word-spacing:0.669487px;}
.wsd3{word-spacing:0.690292px;}
.ws8f{word-spacing:0.726278px;}
.ws89{word-spacing:0.729262px;}
.ws105{word-spacing:0.780077px;}
.wsc9{word-spacing:0.789038px;}
.ws20{word-spacing:0.861962px;}
.wsb8{word-spacing:0.887674px;}
.ws35{word-spacing:0.908589px;}
.wsf3{word-spacing:1.071176px;}
.ws58{word-spacing:1.087916px;}
.ws57{word-spacing:1.096738px;}
.wsec{word-spacing:1.113018px;}
.ws6d{word-spacing:1.147692px;}
.wsb0{word-spacing:1.156666px;}
.ws8a{word-spacing:1.207467px;}
.ws100{word-spacing:1.210464px;}
.wsa2{word-spacing:1.280390px;}
.wsb3{word-spacing:1.318061px;}
.ws37{word-spacing:1.327018px;}
.ws54{word-spacing:1.386794px;}
.wsf5{word-spacing:1.446570px;}
.ws5d{word-spacing:1.534738px;}
.ws5e{word-spacing:1.538938px;}
.ws5f{word-spacing:1.566121px;}
.ws6c{word-spacing:1.625896px;}
.wsdf{word-spacing:1.639077px;}
.ws33{word-spacing:1.745448px;}
.ws7f{word-spacing:1.805223px;}
.ws85{word-spacing:1.817178px;}
.ws94{word-spacing:1.856045px;}
.ws3d{word-spacing:1.864999px;}
.wse8{word-spacing:1.866189px;}
.wsfa{word-spacing:1.924774px;}
.wse2{word-spacing:1.949874px;}
.ws2e{word-spacing:1.984550px;}
.wseb{word-spacing:2.033560px;}
.ws71{word-spacing:2.044326px;}
.wsff{word-spacing:2.071238px;}
.ws70{word-spacing:2.223652px;}
.wsc1{word-spacing:2.283428px;}
.ws107{word-spacing:2.286432px;}
.ws1c{word-spacing:2.326460px;}
.ws75{word-spacing:2.343204px;}
.wsb5{word-spacing:2.394029px;}
.ws1a{word-spacing:2.402979px;}
.ws8c{word-spacing:2.462755px;}
.wsbd{word-spacing:2.522530px;}
.wsa4{word-spacing:2.535674px;}
.wsb2{word-spacing:2.555424px;}
.wsba{word-spacing:2.575274px;}
.ws22{word-spacing:2.577516px;}
.wsd0{word-spacing:2.582306px;}
.ws8e{word-spacing:2.642082px;}
.ws51{word-spacing:2.761633px;}
.wse4{word-spacing:2.786730px;}
.wsc7{word-spacing:2.821408px;}
.ws91{word-spacing:2.932013px;}
.ws77{word-spacing:3.000735px;}
.wse9{word-spacing:3.037787px;}
.wsc{word-spacing:3.039610px;}
.wsfd{word-spacing:3.060511px;}
.ws2{word-spacing:3.093408px;}
.wsed{word-spacing:3.121473px;}
.ws1b{word-spacing:3.180062px;}
.wsb9{word-spacing:3.205158px;}
.wsae{word-spacing:3.254803px;}
.ws2f{word-spacing:3.298872px;}
.ws1{word-spacing:3.299613px;}
.wsad{word-spacing:3.308602px;}
.ws29{word-spacing:3.359389px;}
.ws97{word-spacing:3.362400px;}
.ws82{word-spacing:3.419164px;}
.ws1f{word-spacing:3.456215px;}
.wsa0{word-spacing:3.478940px;}
.wsc8{word-spacing:3.538716px;}
.wsb1{word-spacing:3.577594px;}
.wsf8{word-spacing:3.598491px;}
.ws1e{word-spacing:3.665429px;}
.ws56{word-spacing:3.708730px;}
.ws55{word-spacing:3.718042px;}
.wsa7{word-spacing:3.749115px;}
.wsdc{word-spacing:3.777818px;}
.ws3e{word-spacing:3.801728px;}
.ws25{word-spacing:3.837594px;}
.wsd5{word-spacing:3.897369px;}
.wsdb{word-spacing:4.016920px;}
.ws6b{word-spacing:4.076696px;}
.wsee{word-spacing:4.083857px;}
.wsaa{word-spacing:4.136472px;}
.ws93{word-spacing:4.169376px;}
.wsc4{word-spacing:4.196247px;}
.ws32{word-spacing:4.256023px;}
.ws50{word-spacing:4.305170px;}
.ws28{word-spacing:4.315798px;}
.ws67{word-spacing:4.375574px;}
.ws3b{word-spacing:4.435350px;}
.ws99{word-spacing:4.483200px;}
.ws7d{word-spacing:4.554901px;}
.wsf2{word-spacing:4.585971px;}
.wsf9{word-spacing:4.614676px;}
.wsa6{word-spacing:4.627814px;}
.ws80{word-spacing:4.644322px;}
.wsb4{word-spacing:4.653562px;}
.ws44{word-spacing:4.674452px;}
.ws43{word-spacing:4.697830px;}
.ws73{word-spacing:4.734228px;}
.wsdd{word-spacing:4.853779px;}
.ws104{word-spacing:4.868755px;}
.wse3{word-spacing:4.878870px;}
.wscb{word-spacing:4.913554px;}
.ws1d{word-spacing:4.920713px;}
.ws5a{word-spacing:4.948853px;}
.ws5b{word-spacing:4.973330px;}
.ws92{word-spacing:5.030150px;}
.ws103{word-spacing:5.083949px;}
.wsfb{word-spacing:5.092881px;}
.ws4f{word-spacing:5.212432px;}
.ws4e{word-spacing:5.272208px;}
.ws46{word-spacing:5.284163px;}
.ws0{word-spacing:5.379825px;}
.ws39{word-spacing:5.511310px;}
.wsce{word-spacing:5.571086px;}
.ws8{word-spacing:5.621933px;}
.wsf4{word-spacing:5.673884px;}
.wsbe{word-spacing:5.675731px;}
.ws38{word-spacing:5.690637px;}
.ws101{word-spacing:5.729530px;}
.ws5{word-spacing:5.783328px;}
.ws2d{word-spacing:5.810188px;}
.ws6f{word-spacing:5.869964px;}
.ws16{word-spacing:5.989515px;}
.ws98{word-spacing:5.998522px;}
.ws74{word-spacing:6.033897px;}
.wsa8{word-spacing:6.050469px;}
.ws69{word-spacing:6.109066px;}
.ws68{word-spacing:6.117235px;}
.ws81{word-spacing:6.121021px;}
.ws26{word-spacing:6.168842px;}
.ws34{word-spacing:6.288393px;}
.wsef{word-spacing:6.343368px;}
.ws9c{word-spacing:6.407944px;}
.ws108{word-spacing:6.482707px;}
.ws12{word-spacing:6.587271px;}
.ws84{word-spacing:6.647047px;}
.ws17{word-spacing:6.766598px;}
.wse7{word-spacing:6.845482px;}
.ws8b{word-spacing:6.886149px;}
.ws4b{word-spacing:6.937044px;}
.ws49{word-spacing:6.940853px;}
.ws4a{word-spacing:6.945925px;}
.ws60{word-spacing:7.065476px;}
.ws95{word-spacing:7.128288px;}
.ws87{word-spacing:7.304578px;}
.ws6{word-spacing:7.343482px;}
.ws83{word-spacing:7.364354px;}
.ws45{word-spacing:7.376309px;}
.ws18{word-spacing:7.424130px;}
.wsca{word-spacing:7.483905px;}
.ws19{word-spacing:7.543681px;}
.wsb{word-spacing:7.558675px;}
.wsf6{word-spacing:7.603456px;}
.ws66{word-spacing:7.663232px;}
.ws65{word-spacing:7.782783px;}
.ws63{word-spacing:7.801403px;}
.ws9e{word-spacing:7.962110px;}
.ws2a{word-spacing:8.021886px;}
.wsd6{word-spacing:8.069207px;}
.wsd7{word-spacing:8.081661px;}
.wsc5{word-spacing:8.141437px;}
.ws72{word-spacing:8.260988px;}
.ws7{word-spacing:8.365651px;}
.wscf{word-spacing:8.380539px;}
.ws7b{word-spacing:8.440315px;}
.ws106{word-spacing:8.580845px;}
.ws9b{word-spacing:8.619642px;}
.ws96{word-spacing:8.634643px;}
.wsf1{word-spacing:8.686565px;}
.ws4d{word-spacing:8.798968px;}
.ws4c{word-spacing:8.858744px;}
.wsa3{word-spacing:8.895779px;}
.wsfe{word-spacing:8.978295px;}
.ws9d{word-spacing:9.038071px;}
.ws9{word-spacing:9.065030px;}
.ws79{word-spacing:9.097846px;}
.wsea{word-spacing:9.230522px;}
.wsaf{word-spacing:9.280224px;}
.ws9a{word-spacing:9.336949px;}
.ws7c{word-spacing:9.516276px;}
.ws7a{word-spacing:9.635827px;}
.ws24{word-spacing:9.695602px;}
.wsbc{word-spacing:9.755378px;}
.ws88{word-spacing:9.767333px;}
.ws86{word-spacing:9.827109px;}
.ws27{word-spacing:10.054256px;}
.wsda{word-spacing:10.114032px;}
.wse6{word-spacing:10.151063px;}
.wscc{word-spacing:10.173807px;}
.wsd9{word-spacing:10.233583px;}
.ws8d{word-spacing:10.293358px;}
.ws109{word-spacing:10.409990px;}
.ws2b{word-spacing:10.412910px;}
.wsbf{word-spacing:10.532461px;}
.ws76{word-spacing:10.544486px;}
.wsfc{word-spacing:10.652012px;}
.ws52{word-spacing:11.249768px;}
.ws48{word-spacing:11.660048px;}
.ws47{word-spacing:11.668197px;}
.ws2c{word-spacing:11.685667px;}
.wsc3{word-spacing:11.727973px;}
.wsc2{word-spacing:11.787748px;}
.wsab{word-spacing:11.907300px;}
.wsc6{word-spacing:12.026851px;}
.wsc0{word-spacing:12.086626px;}
.ws64{word-spacing:15.565948px;}
.wsa9{word-spacing:18.398984px;}
.wsa{word-spacing:27.592038px;}
.ws4{word-spacing:29.830266px;}
.wsd{word-spacing:58.281600px;}
.wse5{word-spacing:82.915692px;}
._1{margin-left:-48.461464px;}
._2{margin-left:-45.706993px;}
._10{margin-left:-40.384666px;}
._23{margin-left:-37.644541px;}
._1b{margin-left:-34.370970px;}
._20{margin-left:-32.931605px;}
._11{margin-left:-31.002028px;}
._e{margin-left:-29.427725px;}
._9{margin-left:-27.838672px;}
._d{margin-left:-26.467646px;}
._16{margin-left:-24.448084px;}
._13{margin-left:-23.252708px;}
._b{margin-left:-21.519360px;}
._17{margin-left:-18.587490px;}
._3{margin-left:-8.091257px;}
._12{margin-left:-6.635092px;}
._a{margin-left:-5.321503px;}
._14{margin-left:-4.247447px;}
._0{margin-left:-2.668393px;}
._7{margin-left:-1.238530px;}
._6{width:1.054452px;}
._5{width:2.668393px;}
._c{width:3.938065px;}
._4{width:5.422864px;}
._1e{width:8.267336px;}
._25{width:12.599934px;}
._24{width:15.852382px;}
._26{width:17.411238px;}
._1f{width:18.440844px;}
._f{width:19.441583px;}
._8{width:20.959727px;}
._1c{width:22.313070px;}
._15{width:23.649629px;}
._1d{width:26.192669px;}
._19{width:28.364283px;}
._21{width:29.911910px;}
._28{width:31.236510px;}
._27{width:32.440435px;}
._29{width:34.753766px;}
._2a{width:35.991130px;}
._2b{width:46.740965px;}
._1a{width:68.741940px;}
._22{width:80.697600px;}
._18{width:115.343770px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:26.751024px;}
.fs6{font-size:27.163699px;}
.fs8{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y8c{bottom:45.171430px;}
.y70{bottom:47.565999px;}
.y50{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y71{bottom:196.978500px;}
.y25{bottom:205.572000px;}
.y147{bottom:209.038500px;}
.ydd{bottom:211.285500px;}
.y4f{bottom:211.549500px;}
.y24{bottom:217.527000px;}
.y146{bottom:225.477000px;}
.y6f{bottom:228.361500px;}
.y23{bottom:229.482000px;}
.y4e{bottom:230.074500px;}
.ydc{bottom:232.125000px;}
.ye7{bottom:234.904500px;}
.y145{bottom:241.338000px;}
.y22{bottom:241.437000px;}
.yac{bottom:247.414500px;}
.y4d{bottom:248.007000px;}
.ydb{bottom:250.057500px;}
.y21{bottom:253.392000px;}
.y144{bottom:257.200500px;}
.yab{bottom:265.347000px;}
.y4c{bottom:265.939500px;}
.y20{bottom:271.060500px;}
.y143{bottom:273.061500px;}
.y104{bottom:279.571500px;}
.yda{bottom:279.663000px;}
.yaa{bottom:283.279500px;}
.ye6{bottom:283.281000px;}
.y4b{bottom:283.872000px;}
.y142{bottom:289.500000px;}
.y1f{bottom:294.612000px;}
.yd9{bottom:296.101500px;}
.ya9{bottom:301.213500px;}
.y4a{bottom:301.806000px;}
.y141{bottom:305.938500px;}
.yd8{bottom:311.886000px;}
.y1e{bottom:312.546000px;}
.y103{bottom:315.256500px;}
.ya8{bottom:319.146000px;}
.y49{bottom:319.738500px;}
.y140{bottom:321.799500px;}
.yd7{bottom:328.324500px;}
.y1d{bottom:330.478500px;}
.ya7{bottom:337.078500px;}
.y48{bottom:337.671000px;}
.y13f{bottom:338.238000px;}
.yd6{bottom:344.761500px;}
.y1c{bottom:348.411000px;}
.ye5{bottom:354.109500px;}
.y13e{bottom:354.676500px;}
.ya6{bottom:355.011000px;}
.yd5{bottom:361.200000px;}
.y1b{bottom:366.343500px;}
.y47{bottom:370.522500px;}
.y13d{bottom:370.537500px;}
.y6e{bottom:370.654500px;}
.ya5{bottom:372.943500px;}
.yd4{bottom:377.638500px;}
.y1a{bottom:384.276000px;}
.y13c{bottom:386.976000px;}
.y6d{bottom:388.587000px;}
.y126{bottom:390.876000px;}
.y102{bottom:391.246500px;}
.yd3{bottom:393.423000px;}
.ya4{bottom:394.191000px;}
.y19{bottom:402.210000px;}
.y13b{bottom:403.414500px;}
.y6c{bottom:406.521000px;}
.y125{bottom:408.810000px;}
.y46{bottom:409.350000px;}
.yd2{bottom:409.861500px;}
.ya3{bottom:412.123500px;}
.y13a{bottom:419.275500px;}
.y18{bottom:420.142500px;}
.y8b{bottom:424.263000px;}
.y6b{bottom:424.453500px;}
.yd1{bottom:426.300000px;}
.y124{bottom:426.742500px;}
.ya2{bottom:430.056000px;}
.y139{bottom:435.714000px;}
.y17{bottom:438.217500px;}
.y101{bottom:439.437000px;}
.y8a{bottom:442.195500px;}
.y6a{bottom:442.386000px;}
.yd0{bottom:442.738500px;}
.y123{bottom:444.675000px;}
.ya1{bottom:447.990000px;}
.y138{bottom:452.152500px;}
.y16{bottom:456.151500px;}
.y100{bottom:457.369500px;}
.ycf{bottom:459.177000px;}
.y89{bottom:460.128000px;}
.y45{bottom:460.134000px;}
.y69{bottom:460.318500px;}
.ya0{bottom:465.922500px;}
.y137{bottom:468.013500px;}
.y15{bottom:474.084000px;}
.yff{bottom:475.302000px;}
.yce{bottom:475.614000px;}
.y122{bottom:476.922000px;}
.y88{bottom:478.060500px;}
.y44{bottom:478.068000px;}
.y68{bottom:478.251000px;}
.y9f{bottom:483.855000px;}
.y136{bottom:484.452000px;}
.y14{bottom:492.016500px;}
.ycd{bottom:492.052500px;}
.yfe{bottom:493.234500px;}
.y87{bottom:495.994500px;}
.y43{bottom:496.000500px;}
.y67{bottom:496.183500px;}
.y135{bottom:500.314500px;}
.ycc{bottom:507.837000px;}
.y13{bottom:509.949000px;}
.yfd{bottom:511.242000px;}
.y86{bottom:513.927000px;}
.y42{bottom:513.933000px;}
.y66{bottom:514.117500px;}
.y134{bottom:516.753000px;}
.y121{bottom:521.124000px;}
.ycb{bottom:524.275500px;}
.y12{bottom:527.881500px;}
.yfc{bottom:529.174500px;}
.y85{bottom:531.859500px;}
.y41{bottom:531.865500px;}
.y65{bottom:532.050000px;}
.y133{bottom:532.614000px;}
.y9e{bottom:536.292000px;}
.y120{bottom:539.056500px;}
.yca{bottom:540.714000px;}
.y11{bottom:545.814000px;}
.yfb{bottom:547.107000px;}
.y132{bottom:549.052500px;}
.y84{bottom:549.792000px;}
.y40{bottom:549.798000px;}
.y64{bottom:549.982500px;}
.y11f{bottom:556.990500px;}
.y131{bottom:564.913500px;}
.yfa{bottom:565.039500px;}
.y83{bottom:567.724500px;}
.y3f{bottom:567.730500px;}
.y63{bottom:567.915000px;}
.yc9{bottom:568.170000px;}
.ye4{bottom:572.461500px;}
.y11e{bottom:574.923000px;}
.y10{bottom:582.396000px;}
.yf9{bottom:582.973500px;}
.y82{bottom:585.658500px;}
.y3e{bottom:585.664500px;}
.y62{bottom:585.847500px;}
.yc8{bottom:586.102500px;}
.ye3{bottom:590.394000px;}
.y130{bottom:596.400000px;}
.y9d{bottom:600.684000px;}
.yf8{bottom:600.906000px;}
.y81{bottom:603.591000px;}
.y3d{bottom:603.597000px;}
.y61{bottom:603.781500px;}
.yc7{bottom:604.035000px;}
.ye2{bottom:608.328000px;}
.y9c{bottom:617.122500px;}
.yf7{bottom:618.838500px;}
.y80{bottom:621.523500px;}
.y3c{bottom:621.529500px;}
.y60{bottom:621.714000px;}
.yc6{bottom:621.969000px;}
.ye1{bottom:626.260500px;}
.y9b{bottom:633.561000px;}
.yf{bottom:633.717000px;}
.yf6{bottom:636.771000px;}
.y11d{bottom:637.822500px;}
.y7f{bottom:639.456000px;}
.y5f{bottom:639.646500px;}
.yc5{bottom:639.901500px;}
.y3b{bottom:640.054500px;}
.y12f{bottom:641.914500px;}
.ye0{bottom:644.193000px;}
.ye{bottom:650.155500px;}
.y11c{bottom:652.842000px;}
.y9a{bottom:653.313000px;}
.yf5{bottom:654.703500px;}
.y7e{bottom:657.388500px;}
.y5e{bottom:657.579000px;}
.yc4{bottom:657.834000px;}
.y3a{bottom:657.987000px;}
.y12e{bottom:659.847000px;}
.ydf{bottom:662.125500px;}
.y11b{bottom:664.797000px;}
.y99{bottom:669.751500px;}
.yf4{bottom:672.636000px;}
.y5d{bottom:675.511500px;}
.y39{bottom:675.921000px;}
.y7d{bottom:676.666500px;}
.y11a{bottom:676.752000px;}
.y12d{bottom:677.779500px;}
.yd{bottom:683.175000px;}
.yc3{bottom:685.104000px;}
.y98{bottom:686.190000px;}
.y119{bottom:688.707000px;}
.yf3{bottom:690.570000px;}
.y5c{bottom:693.444000px;}
.y38{bottom:693.853500px;}
.y7c{bottom:694.599000px;}
.y12c{bottom:695.712000px;}
.yc{bottom:699.613500px;}
.y118{bottom:700.662000px;}
.y97{bottom:702.628500px;}
.yf2{bottom:708.576000px;}
.y5b{bottom:711.378000px;}
.y37{bottom:711.786000px;}
.y7b{bottom:712.531500px;}
.y117{bottom:712.617000px;}
.y12b{bottom:713.644500px;}
.yb{bottom:716.052000px;}
.yde{bottom:717.264000px;}
.y96{bottom:719.067000px;}
.y116{bottom:724.573500px;}
.yf1{bottom:726.508500px;}
.y5a{bottom:729.310500px;}
.y36{bottom:729.718500px;}
.y12a{bottom:731.577000px;}
.ya{bottom:732.490500px;}
.y95{bottom:735.505500px;}
.y115{bottom:737.125500px;}
.yf0{bottom:744.441000px;}
.y35{bottom:747.651000px;}
.y9{bottom:748.929000px;}
.yc2{bottom:749.005500px;}
.y114{bottom:749.080500px;}
.y7a{bottom:749.142000px;}
.y129{bottom:749.511000px;}
.y94{bottom:751.942500px;}
.y59{bottom:758.203500px;}
.y113{bottom:761.035500px;}
.yef{bottom:762.375000px;}
.yc1{bottom:764.025000px;}
.y8{bottom:765.366000px;}
.y34{bottom:765.583500px;}
.y93{bottom:771.696000px;}
.y112{bottom:772.992000px;}
.yc0{bottom:775.980000px;}
.yee{bottom:780.307500px;}
.y33{bottom:783.517500px;}
.y111{bottom:786.441000px;}
.ybf{bottom:787.935000px;}
.y92{bottom:788.134500px;}
.yed{bottom:798.313500px;}
.y110{bottom:798.396000px;}
.y128{bottom:798.778500px;}
.ybe{bottom:799.890000px;}
.y79{bottom:800.697000px;}
.y32{bottom:801.450000px;}
.y58{bottom:802.042500px;}
.y91{bottom:804.573000px;}
.y10f{bottom:810.351000px;}
.ybd{bottom:811.845000px;}
.y127{bottom:815.215500px;}
.yec{bottom:816.246000px;}
.y78{bottom:818.631000px;}
.y31{bottom:819.382500px;}
.y57{bottom:819.975000px;}
.y10e{bottom:822.306000px;}
.ybc{bottom:823.801500px;}
.y7{bottom:827.721000px;}
.yeb{bottom:834.180000px;}
.y10d{bottom:834.261000px;}
.ybb{bottom:835.756500px;}
.y77{bottom:836.563500px;}
.y30{bottom:837.315000px;}
.y56{bottom:837.907500px;}
.y6{bottom:844.159500px;}
.y10c{bottom:846.216000px;}
.yba{bottom:847.711500px;}
.yea{bottom:852.112500px;}
.y90{bottom:852.526500px;}
.y76{bottom:854.496000px;}
.y2f{bottom:855.247500px;}
.y55{bottom:855.840000px;}
.y10b{bottom:858.769500px;}
.yb9{bottom:859.666500px;}
.ye9{bottom:870.045000px;}
.y8f{bottom:870.459000px;}
.y10a{bottom:870.724500px;}
.yb8{bottom:871.621500px;}
.y75{bottom:872.428500px;}
.y2e{bottom:873.180000px;}
.y54{bottom:873.774000px;}
.y5{bottom:875.479500px;}
.y109{bottom:882.679500px;}
.yb7{bottom:883.576500px;}
.y8e{bottom:888.391500px;}
.y74{bottom:890.361000px;}
.y2d{bottom:891.114000px;}
.y53{bottom:891.706500px;}
.y4{bottom:893.412000px;}
.y108{bottom:894.634500px;}
.yb6{bottom:896.130000px;}
.ye8{bottom:900.303000px;}
.y8d{bottom:906.324000px;}
.yb5{bottom:908.085000px;}
.y73{bottom:908.293500px;}
.y2c{bottom:909.046500px;}
.y52{bottom:909.639000px;}
.yb4{bottom:920.040000px;}
.y72{bottom:926.227500px;}
.y2b{bottom:926.979000px;}
.y51{bottom:927.571500px;}
.yb3{bottom:931.995000px;}
.yb2{bottom:943.950000px;}
.y2a{bottom:944.911500px;}
.y3{bottom:945.504000px;}
.yb1{bottom:955.905000px;}
.y29{bottom:963.436500px;}
.yb0{bottom:968.458500px;}
.y107{bottom:969.415500px;}
.y2{bottom:972.403500px;}
.yaf{bottom:980.413500px;}
.y28{bottom:981.370500px;}
.yae{bottom:992.368500px;}
.y106{bottom:993.325500px;}
.y1{bottom:999.303000px;}
.yad{bottom:1004.323500px;}
.y105{bottom:1005.280500px;}
.y27{bottom:1038.157500px;}
.he{height:18.247647px;}
.hb{height:18.529144px;}
.h7{height:23.850624px;}
.h8{height:31.382100px;}
.h4{height:37.336090px;}
.h14{height:37.941275px;}
.hf{height:37.947275px;}
.h3{height:40.348800px;}
.h9{height:42.082022px;}
.h2{height:44.831700px;}
.h5{height:46.704624px;}
.h6{height:50.498765px;}
.hc{height:53.072100px;}
.h10{height:53.078100px;}
.h11{height:54.878100px;}
.h13{height:59.663700px;}
.h12{height:60.389700px;}
.h1{height:60.598349px;}
.ha{height:106.366550px;}
.hd{height:156.289950px;}
.h0{height:1188.000000px;}
.w1{width:207.492278px;}
.w2{width:259.368624px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:43.639073px;}
.x8{left:202.147500px;}
.x13{left:204.306000px;}
.x6{left:205.828500px;}
.x11{left:209.328000px;}
.x4{left:212.128500px;}
.xa{left:217.090500px;}
.x9{left:224.563500px;}
.x12{left:227.551500px;}
.x2{left:228.792000px;}
.x1{left:240.079500px;}
.x7{left:244.666500px;}
.x10{left:253.638000px;}
.x5{left:258.901500px;}
.x15{left:265.462500px;}
.x14{left:273.351000px;}
.xe{left:292.917000px;}
.x18{left:298.294500px;}
.x1b{left:301.032000px;}
.xb{left:316.020000px;}
.x3{left:324.213000px;}
.xf{left:331.831500px;}
.xc{left:357.771000px;}
.x19{left:388.446000px;}
.x1a{left:486.894000px;}
.x16{left:578.235000px;}
.x17{left:598.672500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v6{vertical-align:-19.280000pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.216000pt;}
.v7{vertical-align:13.829333pt;}
.v5{vertical-align:16.037333pt;}
.v4{vertical-align:19.280000pt;}
.v1{vertical-align:20.314667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.002079pt;}
.lse{letter-spacing:0.002906pt;}
.ls36{letter-spacing:0.003514pt;}
.ls4{letter-spacing:0.003733pt;}
.ls33{letter-spacing:0.004349pt;}
.ls1d{letter-spacing:0.196932pt;}
.ls46{letter-spacing:1.471333pt;}
.ls4b{letter-spacing:1.476666pt;}
.ls30{letter-spacing:1.905696pt;}
.ls6{letter-spacing:2.652911pt;}
.ls37{letter-spacing:2.654545pt;}
.ls3a{letter-spacing:2.656473pt;}
.ls40{letter-spacing:2.656546pt;}
.ls43{letter-spacing:2.657014pt;}
.ls3c{letter-spacing:2.658133pt;}
.ls5{letter-spacing:2.658245pt;}
.ls16{letter-spacing:2.806152pt;}
.ls1e{letter-spacing:2.956597pt;}
.ls48{letter-spacing:4.722245pt;}
.ls3d{letter-spacing:5.718992pt;}
.ls2d{letter-spacing:6.007207pt;}
.ls1c{letter-spacing:6.012540pt;}
.ls35{letter-spacing:8.855412pt;}
.ls3f{letter-spacing:10.549812pt;}
.ls2b{letter-spacing:12.773812pt;}
.ls3e{letter-spacing:13.207578pt;}
.ls20{letter-spacing:14.757812pt;}
.ls26{letter-spacing:14.759467pt;}
.ls1f{letter-spacing:14.760239pt;}
.ls25{letter-spacing:14.959599pt;}
.ls42{letter-spacing:15.374612pt;}
.ls2a{letter-spacing:15.729931pt;}
.ls15{letter-spacing:16.226133pt;}
.ls4f{letter-spacing:16.381766pt;}
.ls4e{letter-spacing:16.385906pt;}
.ls14{letter-spacing:16.426265pt;}
.ls39{letter-spacing:16.534719pt;}
.ls38{letter-spacing:16.539558pt;}
.ls4d{letter-spacing:16.974545pt;}
.ls27{letter-spacing:17.136818pt;}
.ls18{letter-spacing:17.230612pt;}
.ls4c{letter-spacing:17.410245pt;}
.ls49{letter-spacing:17.415578pt;}
.ls32{letter-spacing:17.426079pt;}
.ls41{letter-spacing:18.038347pt;}
.ls3{letter-spacing:18.491145pt;}
.ls23{letter-spacing:18.658245pt;}
.ls22{letter-spacing:18.663578pt;}
.ls17{letter-spacing:18.788932pt;}
.ls8{letter-spacing:18.926612pt;}
.ls21{letter-spacing:18.956597pt;}
.ls0{letter-spacing:19.040473pt;}
.ls2c{letter-spacing:19.084597pt;}
.ls12{letter-spacing:19.426424pt;}
.ls2{letter-spacing:19.542188pt;}
.ls13{letter-spacing:19.836788pt;}
.ls19{letter-spacing:20.038152pt;}
.lsd{letter-spacing:20.128479pt;}
.ls31{letter-spacing:20.222771pt;}
.ls3b{letter-spacing:20.364911pt;}
.ls24{letter-spacing:20.711578pt;}
.lsf{letter-spacing:20.936177pt;}
.ls45{letter-spacing:20.998347pt;}
.ls1a{letter-spacing:21.399686pt;}
.ls7{letter-spacing:21.586245pt;}
.ls2f{letter-spacing:21.588105pt;}
.ls2e{letter-spacing:21.698079pt;}
.lsc{letter-spacing:22.039309pt;}
.ls28{letter-spacing:22.113931pt;}
.ls44{letter-spacing:22.217438pt;}
.ls34{letter-spacing:22.604911pt;}
.lsb{letter-spacing:22.844642pt;}
.lsa{letter-spacing:25.152267pt;}
.ls9{letter-spacing:25.156352pt;}
.ls29{letter-spacing:25.169873pt;}
.ls11{letter-spacing:25.684980pt;}
.ls10{letter-spacing:28.314724pt;}
.ls47{letter-spacing:29.003680pt;}
.ls1b{letter-spacing:29.719207pt;}
.wsd2{word-spacing:-44.313645pt;}
.ws41{word-spacing:-34.611401pt;}
.ws42{word-spacing:-25.738045pt;}
.ws53{word-spacing:-14.760588pt;}
.ws40{word-spacing:-13.581016pt;}
.wse1{word-spacing:-12.028410pt;}
.wsac{word-spacing:-2.911736pt;}
.wscd{word-spacing:-2.805468pt;}
.ws3a{word-spacing:-2.327263pt;}
.wsb7{word-spacing:-2.223667pt;}
.ws62{word-spacing:-2.220996pt;}
.ws5c{word-spacing:-2.008460pt;}
.ws11{word-spacing:-1.955326pt;}
.ws102{word-spacing:-1.841101pt;}
.ws9f{word-spacing:-1.530255pt;}
.ws3c{word-spacing:-1.423988pt;}
.wsb6{word-spacing:-1.267251pt;}
.ws7e{word-spacing:-1.158318pt;}
.wse0{word-spacing:-1.105184pt;}
.wsf7{word-spacing:-0.839515pt;}
.ws61{word-spacing:-0.733247pt;}
.ws31{word-spacing:-0.520712pt;}
.ws3f{word-spacing:-0.467578pt;}
.ws59{word-spacing:-0.414444pt;}
.ws13{word-spacing:-0.308176pt;}
.wsf0{word-spacing:-0.238039pt;}
.ws14{word-spacing:-0.201909pt;}
.ws6e{word-spacing:-0.148775pt;}
.ws15{word-spacing:-0.095641pt;}
.ws3{word-spacing:-0.047821pt;}
.wsa1{word-spacing:-0.042507pt;}
.wsbb{word-spacing:-0.037194pt;}
.wsd1{word-spacing:-0.013752pt;}
.ws23{word-spacing:0.000000pt;}
.wsde{word-spacing:0.010627pt;}
.ws30{word-spacing:0.063761pt;}
.ws21{word-spacing:0.096703pt;}
.wsf{word-spacing:0.116895pt;}
.ws90{word-spacing:0.167373pt;}
.ws36{word-spacing:0.223162pt;}
.ws6a{word-spacing:0.276296pt;}
.wse{word-spacing:0.329430pt;}
.ws78{word-spacing:0.382564pt;}
.wsa5{word-spacing:0.431446pt;}
.wsd8{word-spacing:0.435698pt;}
.ws10{word-spacing:0.488832pt;}
.wsd4{word-spacing:0.595099pt;}
.wsd3{word-spacing:0.613593pt;}
.ws8f{word-spacing:0.645581pt;}
.ws89{word-spacing:0.648233pt;}
.ws105{word-spacing:0.693402pt;}
.wsc9{word-spacing:0.701367pt;}
.ws20{word-spacing:0.766188pt;}
.wsb8{word-spacing:0.789043pt;}
.ws35{word-spacing:0.807635pt;}
.wsf3{word-spacing:0.952156pt;}
.ws58{word-spacing:0.967036pt;}
.ws57{word-spacing:0.974879pt;}
.wsec{word-spacing:0.989350pt;}
.ws6d{word-spacing:1.020170pt;}
.wsb0{word-spacing:1.028147pt;}
.ws8a{word-spacing:1.073304pt;}
.ws100{word-spacing:1.075968pt;}
.wsa2{word-spacing:1.138124pt;}
.wsb3{word-spacing:1.171610pt;}
.ws37{word-spacing:1.179572pt;}
.ws54{word-spacing:1.232706pt;}
.wsf5{word-spacing:1.285840pt;}
.ws5d{word-spacing:1.364212pt;}
.ws5e{word-spacing:1.367945pt;}
.ws5f{word-spacing:1.392107pt;}
.ws6c{word-spacing:1.445241pt;}
.wsdf{word-spacing:1.456957pt;}
.ws33{word-spacing:1.551509pt;}
.ws7f{word-spacing:1.604643pt;}
.ws85{word-spacing:1.615270pt;}
.ws94{word-spacing:1.649818pt;}
.ws3d{word-spacing:1.657777pt;}
.wse8{word-spacing:1.658835pt;}
.wsfa{word-spacing:1.710911pt;}
.wse2{word-spacing:1.733222pt;}
.ws2e{word-spacing:1.764044pt;}
.wseb{word-spacing:1.807609pt;}
.ws71{word-spacing:1.817178pt;}
.wsff{word-spacing:1.841101pt;}
.ws70{word-spacing:1.976580pt;}
.wsc1{word-spacing:2.029714pt;}
.ws107{word-spacing:2.032384pt;}
.ws1c{word-spacing:2.067964pt;}
.ws75{word-spacing:2.082848pt;}
.wsb5{word-spacing:2.128026pt;}
.ws1a{word-spacing:2.135981pt;}
.ws8c{word-spacing:2.189115pt;}
.wsbd{word-spacing:2.242249pt;}
.wsa4{word-spacing:2.253932pt;}
.wsb2{word-spacing:2.271488pt;}
.wsba{word-spacing:2.289132pt;}
.ws22{word-spacing:2.291126pt;}
.wsd0{word-spacing:2.295383pt;}
.ws8e{word-spacing:2.348517pt;}
.ws51{word-spacing:2.454785pt;}
.wse4{word-spacing:2.477094pt;}
.wsc7{word-spacing:2.507919pt;}
.ws91{word-spacing:2.606234pt;}
.ws77{word-spacing:2.667320pt;}
.wse9{word-spacing:2.700255pt;}
.wsc{word-spacing:2.701875pt;}
.wsfd{word-spacing:2.720454pt;}
.ws2{word-spacing:2.749696pt;}
.wsed{word-spacing:2.774643pt;}
.ws1b{word-spacing:2.826722pt;}
.wsb9{word-spacing:2.849030pt;}
.wsae{word-spacing:2.893158pt;}
.ws2f{word-spacing:2.932331pt;}
.ws1{word-spacing:2.932989pt;}
.wsad{word-spacing:2.940979pt;}
.ws29{word-spacing:2.986123pt;}
.ws97{word-spacing:2.988800pt;}
.ws82{word-spacing:3.039257pt;}
.ws1f{word-spacing:3.072191pt;}
.wsa0{word-spacing:3.092391pt;}
.wsc8{word-spacing:3.145525pt;}
.wsb1{word-spacing:3.180083pt;}
.wsf8{word-spacing:3.198659pt;}
.ws1e{word-spacing:3.258159pt;}
.ws56{word-spacing:3.296649pt;}
.ws55{word-spacing:3.304927pt;}
.wsa7{word-spacing:3.332547pt;}
.wsdc{word-spacing:3.358060pt;}
.ws3e{word-spacing:3.379314pt;}
.ws25{word-spacing:3.411194pt;}
.wsd5{word-spacing:3.464328pt;}
.wsdb{word-spacing:3.570596pt;}
.ws6b{word-spacing:3.623730pt;}
.wsee{word-spacing:3.630095pt;}
.wsaa{word-spacing:3.676864pt;}
.ws93{word-spacing:3.706112pt;}
.wsc4{word-spacing:3.729997pt;}
.ws32{word-spacing:3.783131pt;}
.ws50{word-spacing:3.826818pt;}
.ws28{word-spacing:3.836265pt;}
.ws67{word-spacing:3.889399pt;}
.ws3b{word-spacing:3.942533pt;}
.ws99{word-spacing:3.985067pt;}
.ws7d{word-spacing:4.048801pt;}
.wsf2{word-spacing:4.076419pt;}
.wsf9{word-spacing:4.101935pt;}
.wsa6{word-spacing:4.113612pt;}
.ws80{word-spacing:4.128287pt;}
.wsb4{word-spacing:4.136499pt;}
.ws44{word-spacing:4.155068pt;}
.ws43{word-spacing:4.175849pt;}
.ws73{word-spacing:4.208202pt;}
.wsdd{word-spacing:4.314470pt;}
.ws104{word-spacing:4.327782pt;}
.wse3{word-spacing:4.336774pt;}
.wscb{word-spacing:4.367604pt;}
.ws1d{word-spacing:4.373967pt;}
.ws5a{word-spacing:4.398981pt;}
.ws5b{word-spacing:4.420738pt;}
.ws92{word-spacing:4.471245pt;}
.ws103{word-spacing:4.519066pt;}
.wsfb{word-spacing:4.527005pt;}
.ws4f{word-spacing:4.633273pt;}
.ws4e{word-spacing:4.686407pt;}
.ws46{word-spacing:4.697034pt;}
.ws0{word-spacing:4.782067pt;}
.ws39{word-spacing:4.898943pt;}
.wsce{word-spacing:4.952076pt;}
.ws8{word-spacing:4.997274pt;}
.wsf4{word-spacing:5.043452pt;}
.wsbe{word-spacing:5.045094pt;}
.ws38{word-spacing:5.058344pt;}
.ws101{word-spacing:5.092915pt;}
.ws5{word-spacing:5.140736pt;}
.ws2d{word-spacing:5.164612pt;}
.ws6f{word-spacing:5.217746pt;}
.ws16{word-spacing:5.324013pt;}
.ws98{word-spacing:5.332019pt;}
.ws74{word-spacing:5.363464pt;}
.wsa8{word-spacing:5.378195pt;}
.ws69{word-spacing:5.430281pt;}
.ws68{word-spacing:5.437542pt;}
.ws81{word-spacing:5.440908pt;}
.ws26{word-spacing:5.483415pt;}
.ws34{word-spacing:5.589683pt;}
.wsef{word-spacing:5.638550pt;}
.ws9c{word-spacing:5.695951pt;}
.ws108{word-spacing:5.762406pt;}
.ws12{word-spacing:5.855352pt;}
.ws84{word-spacing:5.908486pt;}
.ws17{word-spacing:6.014754pt;}
.wse7{word-spacing:6.084873pt;}
.ws8b{word-spacing:6.121021pt;}
.ws4b{word-spacing:6.166261pt;}
.ws49{word-spacing:6.169647pt;}
.ws4a{word-spacing:6.174155pt;}
.ws60{word-spacing:6.280423pt;}
.ws95{word-spacing:6.336256pt;}
.ws87{word-spacing:6.492959pt;}
.ws6{word-spacing:6.527539pt;}
.ws83{word-spacing:6.546092pt;}
.ws45{word-spacing:6.556719pt;}
.ws18{word-spacing:6.599226pt;}
.wsca{word-spacing:6.652360pt;}
.ws19{word-spacing:6.705494pt;}
.wsb{word-spacing:6.718822pt;}
.wsf6{word-spacing:6.758628pt;}
.ws66{word-spacing:6.811762pt;}
.ws65{word-spacing:6.918029pt;}
.ws63{word-spacing:6.934581pt;}
.ws9e{word-spacing:7.077431pt;}
.ws2a{word-spacing:7.130565pt;}
.wsd6{word-spacing:7.172628pt;}
.wsd7{word-spacing:7.183699pt;}
.wsc5{word-spacing:7.236833pt;}
.ws72{word-spacing:7.343100pt;}
.ws7{word-spacing:7.436134pt;}
.wscf{word-spacing:7.449368pt;}
.ws7b{word-spacing:7.502502pt;}
.ws106{word-spacing:7.627418pt;}
.ws9b{word-spacing:7.661904pt;}
.ws96{word-spacing:7.675238pt;}
.wsf1{word-spacing:7.721391pt;}
.ws4d{word-spacing:7.821305pt;}
.ws4c{word-spacing:7.874439pt;}
.wsa3{word-spacing:7.907359pt;}
.wsfe{word-spacing:7.980707pt;}
.ws9d{word-spacing:8.033841pt;}
.ws9{word-spacing:8.057805pt;}
.ws79{word-spacing:8.086975pt;}
.wsea{word-spacing:8.204908pt;}
.wsaf{word-spacing:8.249088pt;}
.ws9a{word-spacing:8.299510pt;}
.ws7c{word-spacing:8.458912pt;}
.ws7a{word-spacing:8.565179pt;}
.ws24{word-spacing:8.618313pt;}
.wsbc{word-spacing:8.671447pt;}
.ws88{word-spacing:8.682074pt;}
.ws86{word-spacing:8.735208pt;}
.ws27{word-spacing:8.937116pt;}
.wsda{word-spacing:8.990250pt;}
.wse6{word-spacing:9.023167pt;}
.wscc{word-spacing:9.043384pt;}
.wsd9{word-spacing:9.096518pt;}
.ws8d{word-spacing:9.149652pt;}
.ws109{word-spacing:9.253325pt;}
.ws2b{word-spacing:9.255920pt;}
.wsbf{word-spacing:9.362187pt;}
.ws76{word-spacing:9.372877pt;}
.wsfc{word-spacing:9.468455pt;}
.ws52{word-spacing:9.999794pt;}
.ws48{word-spacing:10.364487pt;}
.ws47{word-spacing:10.371731pt;}
.ws2c{word-spacing:10.387260pt;}
.wsc3{word-spacing:10.424865pt;}
.wsc2{word-spacing:10.477999pt;}
.wsab{word-spacing:10.584266pt;}
.wsc6{word-spacing:10.690534pt;}
.wsc0{word-spacing:10.743668pt;}
.ws64{word-spacing:13.836399pt;}
.wsa9{word-spacing:16.354652pt;}
.wsa{word-spacing:24.526256pt;}
.ws4{word-spacing:26.515792pt;}
.wsd{word-spacing:51.805867pt;}
.wse5{word-spacing:73.702838pt;}
._1{margin-left:-43.076857pt;}
._2{margin-left:-40.628438pt;}
._10{margin-left:-35.897481pt;}
._23{margin-left:-33.461814pt;}
._1b{margin-left:-30.551973pt;}
._20{margin-left:-29.272538pt;}
._11{margin-left:-27.557358pt;}
._e{margin-left:-26.157978pt;}
._9{margin-left:-24.745486pt;}
._d{margin-left:-23.526797pt;}
._16{margin-left:-21.731630pt;}
._13{margin-left:-20.669074pt;}
._b{margin-left:-19.128320pt;}
._17{margin-left:-16.522213pt;}
._3{margin-left:-7.192228pt;}
._12{margin-left:-5.897859pt;}
._a{margin-left:-4.730225pt;}
._14{margin-left:-3.775508pt;}
._0{margin-left:-2.371905pt;}
._7{margin-left:-1.100915pt;}
._6{width:0.937291pt;}
._5{width:2.371905pt;}
._c{width:3.500502pt;}
._4{width:4.820323pt;}
._1e{width:7.348743pt;}
._25{width:11.199941pt;}
._24{width:14.091006pt;}
._26{width:15.476656pt;}
._1f{width:16.391861pt;}
._f{width:17.281407pt;}
._8{width:18.630868pt;}
._1c{width:19.833840pt;}
._15{width:21.021892pt;}
._1d{width:23.282373pt;}
._19{width:25.212696pt;}
._21{width:26.588365pt;}
._28{width:27.765787pt;}
._27{width:28.835942pt;}
._29{width:30.892237pt;}
._2a{width:31.992115pt;}
._2b{width:41.547524pt;}
._1a{width:61.103947pt;}
._22{width:71.731200pt;}
._18{width:102.527795pt;}
.fs7{font-size:23.778688pt;}
.fs6{font-size:24.145510pt;}
.fs8{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:40.152382pt;}
.y70{bottom:42.280888pt;}
.y50{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y71{bottom:175.092000pt;}
.y25{bottom:182.730667pt;}
.y147{bottom:185.812000pt;}
.ydd{bottom:187.809333pt;}
.y4f{bottom:188.044000pt;}
.y24{bottom:193.357333pt;}
.y146{bottom:200.424000pt;}
.y6f{bottom:202.988000pt;}
.y23{bottom:203.984000pt;}
.y4e{bottom:204.510667pt;}
.ydc{bottom:206.333333pt;}
.ye7{bottom:208.804000pt;}
.y145{bottom:214.522667pt;}
.y22{bottom:214.610667pt;}
.yac{bottom:219.924000pt;}
.y4d{bottom:220.450667pt;}
.ydb{bottom:222.273333pt;}
.y21{bottom:225.237333pt;}
.y144{bottom:228.622667pt;}
.yab{bottom:235.864000pt;}
.y4c{bottom:236.390667pt;}
.y20{bottom:240.942667pt;}
.y143{bottom:242.721333pt;}
.y104{bottom:248.508000pt;}
.yda{bottom:248.589333pt;}
.yaa{bottom:251.804000pt;}
.ye6{bottom:251.805333pt;}
.y4b{bottom:252.330667pt;}
.y142{bottom:257.333333pt;}
.y1f{bottom:261.877333pt;}
.yd9{bottom:263.201333pt;}
.ya9{bottom:267.745333pt;}
.y4a{bottom:268.272000pt;}
.y141{bottom:271.945333pt;}
.yd8{bottom:277.232000pt;}
.y1e{bottom:277.818667pt;}
.y103{bottom:280.228000pt;}
.ya8{bottom:283.685333pt;}
.y49{bottom:284.212000pt;}
.y140{bottom:286.044000pt;}
.yd7{bottom:291.844000pt;}
.y1d{bottom:293.758667pt;}
.ya7{bottom:299.625333pt;}
.y48{bottom:300.152000pt;}
.y13f{bottom:300.656000pt;}
.yd6{bottom:306.454667pt;}
.y1c{bottom:309.698667pt;}
.ye5{bottom:314.764000pt;}
.y13e{bottom:315.268000pt;}
.ya6{bottom:315.565333pt;}
.yd5{bottom:321.066667pt;}
.y1b{bottom:325.638667pt;}
.y47{bottom:329.353333pt;}
.y13d{bottom:329.366667pt;}
.y6e{bottom:329.470667pt;}
.ya5{bottom:331.505333pt;}
.yd4{bottom:335.678667pt;}
.y1a{bottom:341.578667pt;}
.y13c{bottom:343.978667pt;}
.y6d{bottom:345.410667pt;}
.y126{bottom:347.445333pt;}
.y102{bottom:347.774667pt;}
.yd3{bottom:349.709333pt;}
.ya4{bottom:350.392000pt;}
.y19{bottom:357.520000pt;}
.y13b{bottom:358.590667pt;}
.y6c{bottom:361.352000pt;}
.y125{bottom:363.386667pt;}
.y46{bottom:363.866667pt;}
.yd2{bottom:364.321333pt;}
.ya3{bottom:366.332000pt;}
.y13a{bottom:372.689333pt;}
.y18{bottom:373.460000pt;}
.y8b{bottom:377.122667pt;}
.y6b{bottom:377.292000pt;}
.yd1{bottom:378.933333pt;}
.y124{bottom:379.326667pt;}
.ya2{bottom:382.272000pt;}
.y139{bottom:387.301333pt;}
.y17{bottom:389.526667pt;}
.y101{bottom:390.610667pt;}
.y8a{bottom:393.062667pt;}
.y6a{bottom:393.232000pt;}
.yd0{bottom:393.545333pt;}
.y123{bottom:395.266667pt;}
.ya1{bottom:398.213333pt;}
.y138{bottom:401.913333pt;}
.y16{bottom:405.468000pt;}
.y100{bottom:406.550667pt;}
.ycf{bottom:408.157333pt;}
.y89{bottom:409.002667pt;}
.y45{bottom:409.008000pt;}
.y69{bottom:409.172000pt;}
.ya0{bottom:414.153333pt;}
.y137{bottom:416.012000pt;}
.y15{bottom:421.408000pt;}
.yff{bottom:422.490667pt;}
.yce{bottom:422.768000pt;}
.y122{bottom:423.930667pt;}
.y88{bottom:424.942667pt;}
.y44{bottom:424.949333pt;}
.y68{bottom:425.112000pt;}
.y9f{bottom:430.093333pt;}
.y136{bottom:430.624000pt;}
.y14{bottom:437.348000pt;}
.ycd{bottom:437.380000pt;}
.yfe{bottom:438.430667pt;}
.y87{bottom:440.884000pt;}
.y43{bottom:440.889333pt;}
.y67{bottom:441.052000pt;}
.y135{bottom:444.724000pt;}
.ycc{bottom:451.410667pt;}
.y13{bottom:453.288000pt;}
.yfd{bottom:454.437333pt;}
.y86{bottom:456.824000pt;}
.y42{bottom:456.829333pt;}
.y66{bottom:456.993333pt;}
.y134{bottom:459.336000pt;}
.y121{bottom:463.221333pt;}
.ycb{bottom:466.022667pt;}
.y12{bottom:469.228000pt;}
.yfc{bottom:470.377333pt;}
.y85{bottom:472.764000pt;}
.y41{bottom:472.769333pt;}
.y65{bottom:472.933333pt;}
.y133{bottom:473.434667pt;}
.y9e{bottom:476.704000pt;}
.y120{bottom:479.161333pt;}
.yca{bottom:480.634667pt;}
.y11{bottom:485.168000pt;}
.yfb{bottom:486.317333pt;}
.y132{bottom:488.046667pt;}
.y84{bottom:488.704000pt;}
.y40{bottom:488.709333pt;}
.y64{bottom:488.873333pt;}
.y11f{bottom:495.102667pt;}
.y131{bottom:502.145333pt;}
.yfa{bottom:502.257333pt;}
.y83{bottom:504.644000pt;}
.y3f{bottom:504.649333pt;}
.y63{bottom:504.813333pt;}
.yc9{bottom:505.040000pt;}
.ye4{bottom:508.854667pt;}
.y11e{bottom:511.042667pt;}
.y10{bottom:517.685333pt;}
.yf9{bottom:518.198667pt;}
.y82{bottom:520.585333pt;}
.y3e{bottom:520.590667pt;}
.y62{bottom:520.753333pt;}
.yc8{bottom:520.980000pt;}
.ye3{bottom:524.794667pt;}
.y130{bottom:530.133333pt;}
.y9d{bottom:533.941333pt;}
.yf8{bottom:534.138667pt;}
.y81{bottom:536.525333pt;}
.y3d{bottom:536.530667pt;}
.y61{bottom:536.694667pt;}
.yc7{bottom:536.920000pt;}
.ye2{bottom:540.736000pt;}
.y9c{bottom:548.553333pt;}
.yf7{bottom:550.078667pt;}
.y80{bottom:552.465333pt;}
.y3c{bottom:552.470667pt;}
.y60{bottom:552.634667pt;}
.yc6{bottom:552.861333pt;}
.ye1{bottom:556.676000pt;}
.y9b{bottom:563.165333pt;}
.yf{bottom:563.304000pt;}
.yf6{bottom:566.018667pt;}
.y11d{bottom:566.953333pt;}
.y7f{bottom:568.405333pt;}
.y5f{bottom:568.574667pt;}
.yc5{bottom:568.801333pt;}
.y3b{bottom:568.937333pt;}
.y12f{bottom:570.590667pt;}
.ye0{bottom:572.616000pt;}
.ye{bottom:577.916000pt;}
.y11c{bottom:580.304000pt;}
.y9a{bottom:580.722667pt;}
.yf5{bottom:581.958667pt;}
.y7e{bottom:584.345333pt;}
.y5e{bottom:584.514667pt;}
.yc4{bottom:584.741333pt;}
.y3a{bottom:584.877333pt;}
.y12e{bottom:586.530667pt;}
.ydf{bottom:588.556000pt;}
.y11b{bottom:590.930667pt;}
.y99{bottom:595.334667pt;}
.yf4{bottom:597.898667pt;}
.y5d{bottom:600.454667pt;}
.y39{bottom:600.818667pt;}
.y7d{bottom:601.481333pt;}
.y11a{bottom:601.557333pt;}
.y12d{bottom:602.470667pt;}
.yd{bottom:607.266667pt;}
.yc3{bottom:608.981333pt;}
.y98{bottom:609.946667pt;}
.y119{bottom:612.184000pt;}
.yf3{bottom:613.840000pt;}
.y5c{bottom:616.394667pt;}
.y38{bottom:616.758667pt;}
.y7c{bottom:617.421333pt;}
.y12c{bottom:618.410667pt;}
.yc{bottom:621.878667pt;}
.y118{bottom:622.810667pt;}
.y97{bottom:624.558667pt;}
.yf2{bottom:629.845333pt;}
.y5b{bottom:632.336000pt;}
.y37{bottom:632.698667pt;}
.y7b{bottom:633.361333pt;}
.y117{bottom:633.437333pt;}
.y12b{bottom:634.350667pt;}
.yb{bottom:636.490667pt;}
.yde{bottom:637.568000pt;}
.y96{bottom:639.170667pt;}
.y116{bottom:644.065333pt;}
.yf1{bottom:645.785333pt;}
.y5a{bottom:648.276000pt;}
.y36{bottom:648.638667pt;}
.y12a{bottom:650.290667pt;}
.ya{bottom:651.102667pt;}
.y95{bottom:653.782667pt;}
.y115{bottom:655.222667pt;}
.yf0{bottom:661.725333pt;}
.y35{bottom:664.578667pt;}
.y9{bottom:665.714667pt;}
.yc2{bottom:665.782667pt;}
.y114{bottom:665.849333pt;}
.y7a{bottom:665.904000pt;}
.y129{bottom:666.232000pt;}
.y94{bottom:668.393333pt;}
.y59{bottom:673.958667pt;}
.y113{bottom:676.476000pt;}
.yef{bottom:677.666667pt;}
.yc1{bottom:679.133333pt;}
.y8{bottom:680.325333pt;}
.y34{bottom:680.518667pt;}
.y93{bottom:685.952000pt;}
.y112{bottom:687.104000pt;}
.yc0{bottom:689.760000pt;}
.yee{bottom:693.606667pt;}
.y33{bottom:696.460000pt;}
.y111{bottom:699.058667pt;}
.ybf{bottom:700.386667pt;}
.y92{bottom:700.564000pt;}
.yed{bottom:709.612000pt;}
.y110{bottom:709.685333pt;}
.y128{bottom:710.025333pt;}
.ybe{bottom:711.013333pt;}
.y79{bottom:711.730667pt;}
.y32{bottom:712.400000pt;}
.y58{bottom:712.926667pt;}
.y91{bottom:715.176000pt;}
.y10f{bottom:720.312000pt;}
.ybd{bottom:721.640000pt;}
.y127{bottom:724.636000pt;}
.yec{bottom:725.552000pt;}
.y78{bottom:727.672000pt;}
.y31{bottom:728.340000pt;}
.y57{bottom:728.866667pt;}
.y10e{bottom:730.938667pt;}
.ybc{bottom:732.268000pt;}
.y7{bottom:735.752000pt;}
.yeb{bottom:741.493333pt;}
.y10d{bottom:741.565333pt;}
.ybb{bottom:742.894667pt;}
.y77{bottom:743.612000pt;}
.y30{bottom:744.280000pt;}
.y56{bottom:744.806667pt;}
.y6{bottom:750.364000pt;}
.y10c{bottom:752.192000pt;}
.yba{bottom:753.521333pt;}
.yea{bottom:757.433333pt;}
.y90{bottom:757.801333pt;}
.y76{bottom:759.552000pt;}
.y2f{bottom:760.220000pt;}
.y55{bottom:760.746667pt;}
.y10b{bottom:763.350667pt;}
.yb9{bottom:764.148000pt;}
.ye9{bottom:773.373333pt;}
.y8f{bottom:773.741333pt;}
.y10a{bottom:773.977333pt;}
.yb8{bottom:774.774667pt;}
.y75{bottom:775.492000pt;}
.y2e{bottom:776.160000pt;}
.y54{bottom:776.688000pt;}
.y5{bottom:778.204000pt;}
.y109{bottom:784.604000pt;}
.yb7{bottom:785.401333pt;}
.y8e{bottom:789.681333pt;}
.y74{bottom:791.432000pt;}
.y2d{bottom:792.101333pt;}
.y53{bottom:792.628000pt;}
.y4{bottom:794.144000pt;}
.y108{bottom:795.230667pt;}
.yb6{bottom:796.560000pt;}
.ye8{bottom:800.269333pt;}
.y8d{bottom:805.621333pt;}
.yb5{bottom:807.186667pt;}
.y73{bottom:807.372000pt;}
.y2c{bottom:808.041333pt;}
.y52{bottom:808.568000pt;}
.yb4{bottom:817.813333pt;}
.y72{bottom:823.313333pt;}
.y2b{bottom:823.981333pt;}
.y51{bottom:824.508000pt;}
.yb3{bottom:828.440000pt;}
.yb2{bottom:839.066667pt;}
.y2a{bottom:839.921333pt;}
.y3{bottom:840.448000pt;}
.yb1{bottom:849.693333pt;}
.y29{bottom:856.388000pt;}
.yb0{bottom:860.852000pt;}
.y107{bottom:861.702667pt;}
.y2{bottom:864.358667pt;}
.yaf{bottom:871.478667pt;}
.y28{bottom:872.329333pt;}
.yae{bottom:882.105333pt;}
.y106{bottom:882.956000pt;}
.y1{bottom:888.269333pt;}
.yad{bottom:892.732000pt;}
.y105{bottom:893.582667pt;}
.y27{bottom:922.806667pt;}
.he{height:16.220130pt;}
.hb{height:16.470351pt;}
.h7{height:21.200555pt;}
.h8{height:27.895200pt;}
.h4{height:33.187635pt;}
.h14{height:33.725578pt;}
.hf{height:33.730911pt;}
.h3{height:35.865600pt;}
.h9{height:37.406242pt;}
.h2{height:39.850400pt;}
.h5{height:41.515221pt;}
.h6{height:44.887791pt;}
.hc{height:47.175200pt;}
.h10{height:47.180533pt;}
.h11{height:48.780533pt;}
.h13{height:53.034400pt;}
.h12{height:53.679733pt;}
.h1{height:53.865199pt;}
.ha{height:94.548045pt;}
.hd{height:138.924400pt;}
.h0{height:1056.000000pt;}
.w1{width:184.437581pt;}
.w2{width:230.549888pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:38.790287pt;}
.x8{left:179.686667pt;}
.x13{left:181.605333pt;}
.x6{left:182.958667pt;}
.x11{left:186.069333pt;}
.x4{left:188.558667pt;}
.xa{left:192.969333pt;}
.x9{left:199.612000pt;}
.x12{left:202.268000pt;}
.x2{left:203.370667pt;}
.x1{left:213.404000pt;}
.x7{left:217.481333pt;}
.x10{left:225.456000pt;}
.x5{left:230.134667pt;}
.x15{left:235.966667pt;}
.x14{left:242.978667pt;}
.xe{left:260.370667pt;}
.x18{left:265.150667pt;}
.x1b{left:267.584000pt;}
.xb{left:280.906667pt;}
.x3{left:288.189333pt;}
.xf{left:294.961333pt;}
.xc{left:318.018667pt;}
.x19{left:345.285333pt;}
.x1a{left:432.794667pt;}
.x16{left:513.986667pt;}
.x17{left:532.153333pt;}
}




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