
    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_a8335d1020c85ca2d775ad6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_6fbd21010703c000a5e07f00.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_cedee95ea29b420a238fc876.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_8e6eb08752d96cf5dc5a72dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_db6f08ea0fbf78245a108603.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_fb3c45397adfce32dabbcc09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.725000;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_5b0a0964ca5f2ea1779651f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3ea8834cc8f8138195418b4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_825dfd6058da48f603f59d53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752000;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_d2254b116e837ebdc129de8f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c7f54f636abc396e3e2f5db2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4fc074f2895fa57c867907d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853000;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_0c0be43d5ba2b964fb86cbd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v4{vertical-align:-9.864000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.530000px;}
.v3{vertical-align:23.874000px;}
.v1{vertical-align:26.040000px;}
.ls9{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000768px;}
.ls6{letter-spacing:0.001242px;}
.ls19{letter-spacing:0.001440px;}
.ls46{letter-spacing:0.001518px;}
.ls25{letter-spacing:0.001815px;}
.ls2f{letter-spacing:0.002592px;}
.ls16{letter-spacing:0.003197px;}
.ls42{letter-spacing:0.004318px;}
.ls28{letter-spacing:0.004368px;}
.ls1b{letter-spacing:0.106646px;}
.ls45{letter-spacing:0.118708px;}
.ls4a{letter-spacing:0.183030px;}
.ls3b{letter-spacing:1.632181px;}
.ls12{letter-spacing:2.985900px;}
.ls0{letter-spacing:2.987028px;}
.ls13{letter-spacing:2.989506px;}
.ls14{letter-spacing:2.991900px;}
.ls49{letter-spacing:4.215490px;}
.ls15{letter-spacing:4.287875px;}
.ls47{letter-spacing:6.931753px;}
.ls1f{letter-spacing:10.885932px;}
.ls21{letter-spacing:10.999932px;}
.ls2{letter-spacing:11.951028px;}
.lsd{letter-spacing:11.957184px;}
.ls18{letter-spacing:11.959248px;}
.ls3d{letter-spacing:11.967119px;}
.ls35{letter-spacing:12.053184px;}
.ls22{letter-spacing:12.295886px;}
.ls2a{letter-spacing:12.337248px;}
.ls1d{letter-spacing:12.375034px;}
.ls38{letter-spacing:12.755184px;}
.ls17{letter-spacing:12.974678px;}
.ls29{letter-spacing:13.358678px;}
.ls1c{letter-spacing:13.747178px;}
.ls11{letter-spacing:13.781184px;}
.ls1e{letter-spacing:13.858244px;}
.ls3a{letter-spacing:13.871184px;}
.ls39{letter-spacing:13.877184px;}
.lsc{letter-spacing:13.901184px;}
.lsf{letter-spacing:13.913184px;}
.lsa{letter-spacing:13.955184px;}
.ls20{letter-spacing:13.972244px;}
.ls3f{letter-spacing:14.082348px;}
.ls3e{letter-spacing:14.087184px;}
.ls24{letter-spacing:14.676348px;}
.ls40{letter-spacing:14.724348px;}
.ls8{letter-spacing:14.753184px;}
.lse{letter-spacing:14.765184px;}
.ls2c{letter-spacing:14.797248px;}
.ls36{letter-spacing:14.801184px;}
.ls31{letter-spacing:14.826348px;}
.ls48{letter-spacing:14.939856px;}
.ls44{letter-spacing:14.945856px;}
.ls37{letter-spacing:15.053184px;}
.ls34{letter-spacing:15.125184px;}
.ls4b{letter-spacing:15.173856px;}
.ls10{letter-spacing:15.323184px;}
.ls2b{letter-spacing:15.812678px;}
.ls23{letter-spacing:15.927383px;}
.ls7{letter-spacing:16.019184px;}
.ls2e{letter-spacing:16.051248px;}
.ls30{letter-spacing:16.077383px;}
.ls4d{letter-spacing:16.121856px;}
.ls3{letter-spacing:16.313184px;}
.ls5{letter-spacing:16.319184px;}
.ls4{letter-spacing:16.325184px;}
.ls27{letter-spacing:16.524348px;}
.ls33{letter-spacing:16.542348px;}
.ls3c{letter-spacing:16.691184px;}
.lsb{letter-spacing:17.021184px;}
.ls26{letter-spacing:17.775383px;}
.ls32{letter-spacing:17.787383px;}
.ls43{letter-spacing:18.011856px;}
.ls1{letter-spacing:19.481028px;}
.ls4c{letter-spacing:19.648745px;}
.ls41{letter-spacing:23.913300px;}
.ls1a{letter-spacing:173.437958px;}
.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;}
}
.wsb{word-spacing:-16.498176px;}
.ws23{word-spacing:-15.123282px;}
.wsce{word-spacing:-13.748388px;}
.ws6{word-spacing:-12.373632px;}
.wsbf{word-spacing:-11.955120px;}
.ws96{word-spacing:-10.998738px;}
.ws8{word-spacing:-10.759680px;}
.ws94{word-spacing:-9.564120px;}
.wsb3{word-spacing:-3.221917px;}
.ws22{word-spacing:-3.168494px;}
.ws21{word-spacing:-3.156163px;}
.wsb1{word-spacing:-3.090410px;}
.ws9c{word-spacing:-3.024656px;}
.wsb0{word-spacing:-3.006494px;}
.ws7c{word-spacing:-2.958903px;}
.ws98{word-spacing:-2.827396px;}
.wsb7{word-spacing:-2.761643px;}
.ws55{word-spacing:-2.695889px;}
.ws49{word-spacing:-2.630136px;}
.ws47{word-spacing:-2.610699px;}
.ws48{word-spacing:-2.593051px;}
.ws43{word-spacing:-2.588720px;}
.ws44{word-spacing:-2.586494px;}
.ws46{word-spacing:-2.582856px;}
.ws45{word-spacing:-2.564383px;}
.ws87{word-spacing:-2.498629px;}
.wsad{word-spacing:-2.450482px;}
.ws66{word-spacing:-2.432876px;}
.ws74{word-spacing:-2.367122px;}
.wsa1{word-spacing:-2.313331px;}
.wsb2{word-spacing:-2.301369px;}
.ws7f{word-spacing:-2.235616px;}
.ws4a{word-spacing:-2.169862px;}
.ws4b{word-spacing:-2.130494px;}
.ws9d{word-spacing:-2.104109px;}
.ws29{word-spacing:-2.038355px;}
.ws7e{word-spacing:-1.972602px;}
.ws5b{word-spacing:-1.906849px;}
.ws2c{word-spacing:-1.841095px;}
.ws53{word-spacing:-1.782494px;}
.ws52{word-spacing:-1.775342px;}
.ws6e{word-spacing:-1.709588px;}
.ws6f{word-spacing:-1.643835px;}
.wsd2{word-spacing:-1.613941px;}
.ws5d{word-spacing:-1.578082px;}
.ws78{word-spacing:-1.512328px;}
.ws111{word-spacing:-1.494390px;}
.wsb8{word-spacing:-1.446575px;}
.ws71{word-spacing:-1.380821px;}
.ws65{word-spacing:-1.340482px;}
.ws64{word-spacing:-1.334856px;}
.ws5e{word-spacing:-1.315068px;}
.ws5f{word-spacing:-1.310482px;}
.ws60{word-spacing:-1.308630px;}
.ws4c{word-spacing:-1.249315px;}
.ws51{word-spacing:-1.218494px;}
.ws3c{word-spacing:-1.183561px;}
.ws3b{word-spacing:-1.178577px;}
.ws3d{word-spacing:-1.172577px;}
.ws3e{word-spacing:-1.166856px;}
.ws1f{word-spacing:-1.146494px;}
.ws20{word-spacing:-1.117808px;}
.wsaf{word-spacing:-1.092494px;}
.ws17{word-spacing:-1.062494px;}
.ws16{word-spacing:-1.052054px;}
.ws88{word-spacing:-1.022170px;}
.ws33{word-spacing:-0.998482px;}
.ws34{word-spacing:-0.986301px;}
.ws75{word-spacing:-0.920548px;}
.ws70{word-spacing:-0.854794px;}
.ws5a{word-spacing:-0.789041px;}
.ws38{word-spacing:-0.764811px;}
.ws37{word-spacing:-0.752482px;}
.ws39{word-spacing:-0.750630px;}
.ws6a{word-spacing:-0.744494px;}
.ws3a{word-spacing:-0.723287px;}
.ws35{word-spacing:-0.591781px;}
.ws14{word-spacing:-0.536577px;}
.ws12{word-spacing:-0.534494px;}
.ws11{word-spacing:-0.526027px;}
.ws13{word-spacing:-0.522945px;}
.ws41{word-spacing:-0.460274px;}
.ws2d{word-spacing:-0.394520px;}
.ws4e{word-spacing:-0.384494px;}
.ws2e{word-spacing:-0.328767px;}
.ws50{word-spacing:-0.264494px;}
.ws4f{word-spacing:-0.263014px;}
.ws7a{word-spacing:-0.197260px;}
.ws86{word-spacing:-0.131507px;}
.ws95{word-spacing:-0.095641px;}
.wsc{word-spacing:-0.083686px;}
.ws1b{word-spacing:-0.065753px;}
.wsc9{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.ws93{word-spacing:-0.006144px;}
.ws8b{word-spacing:-0.005731px;}
.ws26{word-spacing:-0.004439px;}
.ws91{word-spacing:-0.001766px;}
.ws32{word-spacing:-0.001027px;}
.ws5{word-spacing:0.000000px;}
.ws67{word-spacing:0.065753px;}
.ws5c{word-spacing:0.197260px;}
.ws9a{word-spacing:0.263014px;}
.ws9e{word-spacing:0.268992px;}
.ws117{word-spacing:0.298878px;}
.ws6b{word-spacing:0.328767px;}
.wsae{word-spacing:0.384557px;}
.wsac{word-spacing:0.394520px;}
.ws73{word-spacing:0.460274px;}
.ws7d{word-spacing:0.526027px;}
.ws107{word-spacing:0.537980px;}
.ws72{word-spacing:0.591781px;}
.wsd3{word-spacing:0.597756px;}
.wsd{word-spacing:0.649753px;}
.ws10{word-spacing:0.653370px;}
.wse{word-spacing:0.657534px;}
.wsf{word-spacing:0.677055px;}
.ws15{word-spacing:0.789041px;}
.ws2b{word-spacing:0.854794px;}
.wse0{word-spacing:0.896634px;}
.ws2a{word-spacing:0.920548px;}
.wsa2{word-spacing:0.968371px;}
.ws40{word-spacing:0.986301px;}
.ws18{word-spacing:1.052054px;}
.ws54{word-spacing:1.117808px;}
.ws28{word-spacing:1.183561px;}
.wsbe{word-spacing:1.189544px;}
.ws113{word-spacing:1.189703px;}
.ws101{word-spacing:1.189948px;}
.wsf2{word-spacing:1.189966px;}
.wsd4{word-spacing:1.191434px;}
.wsd9{word-spacing:1.192103px;}
.wsc5{word-spacing:1.192156px;}
.ws112{word-spacing:1.192705px;}
.ws103{word-spacing:1.193363px;}
.wsc0{word-spacing:1.195512px;}
.wsec{word-spacing:1.196496px;}
.ws104{word-spacing:1.196658px;}
.ws115{word-spacing:1.196803px;}
.wsf5{word-spacing:1.196918px;}
.ws42{word-spacing:1.249315px;}
.ws59{word-spacing:1.315068px;}
.ws108{word-spacing:1.374839px;}
.ws63{word-spacing:1.425423px;}
.wsf6{word-spacing:1.426117px;}
.wsf8{word-spacing:1.428456px;}
.wsd0{word-spacing:1.432224px;}
.wsc8{word-spacing:1.432282px;}
.wsf7{word-spacing:1.434614px;}
.wsf3{word-spacing:1.438224px;}
.ws61{word-spacing:1.446575px;}
.ws62{word-spacing:1.451055px;}
.ws99{word-spacing:1.512328px;}
.ws1c{word-spacing:1.578082px;}
.ws27{word-spacing:1.643835px;}
.wse4{word-spacing:1.673717px;}
.ws30{word-spacing:1.709588px;}
.wsde{word-spacing:1.733492px;}
.wsc2{word-spacing:1.793268px;}
.ws81{word-spacing:1.815230px;}
.wsc4{word-spacing:1.825006px;}
.wsc3{word-spacing:1.827674px;}
.ws82{word-spacing:1.841095px;}
.ws3f{word-spacing:1.906849px;}
.wseb{word-spacing:1.912819px;}
.wsfa{word-spacing:1.936204px;}
.wsf0{word-spacing:1.972595px;}
.ws6d{word-spacing:1.972602px;}
.ws10a{word-spacing:2.012310px;}
.wsd8{word-spacing:2.032370px;}
.ws6c{word-spacing:2.038355px;}
.ws105{word-spacing:2.092146px;}
.ws7b{word-spacing:2.104109px;}
.wsd7{word-spacing:2.151922px;}
.ws36{word-spacing:2.169862px;}
.ws114{word-spacing:2.211697px;}
.wsf9{word-spacing:2.268655px;}
.wsed{word-spacing:2.269147px;}
.ws76{word-spacing:2.301369px;}
.ws77{word-spacing:2.367122px;}
.wsdc{word-spacing:2.378496px;}
.wsda{word-spacing:2.381026px;}
.wsdb{word-spacing:2.381863px;}
.wsc7{word-spacing:2.391024px;}
.ws100{word-spacing:2.393863px;}
.wsff{word-spacing:2.400292px;}
.ws1d{word-spacing:2.432876px;}
.wsa7{word-spacing:2.474726px;}
.ws2f{word-spacing:2.498629px;}
.wsc1{word-spacing:2.510575px;}
.ws83{word-spacing:2.630136px;}
.ws79{word-spacing:2.695889px;}
.wsa6{word-spacing:2.743718px;}
.wse5{word-spacing:2.749678px;}
.ws57{word-spacing:2.761643px;}
.ws85{word-spacing:2.827396px;}
.wsa8{word-spacing:2.851315px;}
.ws80{word-spacing:2.893150px;}
.ws1a{word-spacing:2.958903px;}
.ws9f{word-spacing:3.012710px;}
.ws19{word-spacing:3.024656px;}
.wsdf{word-spacing:3.048556px;}
.ws106{word-spacing:3.108331px;}
.ws116{word-spacing:3.227882px;}
.ws110{word-spacing:3.268156px;}
.wse3{word-spacing:3.287658px;}
.ws4d{word-spacing:3.287670px;}
.wsfd{word-spacing:3.347434px;}
.ws68{word-spacing:3.406217px;}
.wsd6{word-spacing:3.407209px;}
.ws69{word-spacing:3.419177px;}
.wsa0{word-spacing:3.443098px;}
.ws109{word-spacing:3.526760px;}
.wsaa{word-spacing:3.658291px;}
.wsa9{word-spacing:3.673814px;}
.wsb5{word-spacing:3.747944px;}
.wsc6{word-spacing:3.765863px;}
.ws118{word-spacing:3.885414px;}
.wse1{word-spacing:3.945190px;}
.ws10b{word-spacing:4.064741px;}
.wsbd{word-spacing:4.124516px;}
.wscd{word-spacing:4.244068px;}
.wse2{word-spacing:4.244580px;}
.wsbc{word-spacing:4.339724px;}
.wsb6{word-spacing:4.405478px;}
.wscf{word-spacing:4.483170px;}
.wsba{word-spacing:4.536985px;}
.wsd5{word-spacing:4.542946px;}
.ws56{word-spacing:4.602738px;}
.wscc{word-spacing:4.722272px;}
.wsfe{word-spacing:4.901599px;}
.ws84{word-spacing:4.931505px;}
.wsdd{word-spacing:4.961375px;}
.ws1e{word-spacing:5.063012px;}
.wsf4{word-spacing:5.320028px;}
.wsb4{word-spacing:5.457532px;}
.wsca{word-spacing:5.738458px;}
.ws10c{word-spacing:5.917784px;}
.ws10d{word-spacing:5.936624px;}
.ws97{word-spacing:6.049313px;}
.ws9b{word-spacing:6.115066px;}
.wsd1{word-spacing:6.156887px;}
.ws89{word-spacing:6.563405px;}
.wsbb{word-spacing:6.575340px;}
.wsab{word-spacing:6.671002px;}
.wsfb{word-spacing:6.814418px;}
.wsfc{word-spacing:6.838204px;}
.wsa4{word-spacing:7.047590px;}
.wsa3{word-spacing:7.058784px;}
.ws8a{word-spacing:7.531776px;}
.ws102{word-spacing:7.950155px;}
.ws10f{word-spacing:8.356793px;}
.ws10e{word-spacing:8.368584px;}
.wscb{word-spacing:8.966340px;}
.wse6{word-spacing:9.324994px;}
.wse7{word-spacing:9.694853px;}
.wse9{word-spacing:9.722496px;}
.wse8{word-spacing:9.743423px;}
.wsee{word-spacing:9.803198px;}
.wsef{word-spacing:10.030224px;}
.wsea{word-spacing:10.795147px;}
.wsa5{word-spacing:10.921075px;}
.ws31{word-spacing:11.590456px;}
.wsf1{word-spacing:12.014896px;}
.ws1{word-spacing:13.395802px;}
.ws7{word-spacing:14.896646px;}
.ws4{word-spacing:14.902157px;}
.wsb9{word-spacing:19.869542px;}
.ws3{word-spacing:22.361395px;}
.ws58{word-spacing:23.181077px;}
.ws24{word-spacing:23.850470px;}
.wsa{word-spacing:26.159071px;}
.ws25{word-spacing:27.439536px;}
.ws0{word-spacing:28.333805px;}
.ws2{word-spacing:32.820672px;}
.ws8d{word-spacing:97.381286px;}
.ws8e{word-spacing:122.550672px;}
.ws8c{word-spacing:136.271347px;}
.ws90{word-spacing:142.793136px;}
.ws92{word-spacing:331.371821px;}
.ws8f{word-spacing:672.531821px;}
._6{margin-left:-7.680077px;}
._c{margin-left:-6.575340px;}
._e{margin-left:-5.277727px;}
._9{margin-left:-3.443098px;}
._2{margin-left:-2.151936px;}
._0{margin-left:-1.075968px;}
._1{width:1.183565px;}
._4{width:2.642104px;}
._a{width:3.739910px;}
._7{width:5.119354px;}
._8{width:6.201331px;}
._12{width:8.147182px;}
._24{width:10.915064px;}
._f{width:12.236820px;}
._14{width:13.240347px;}
._b{width:15.124849px;}
._10{width:16.179528px;}
._d{width:17.209465px;}
._28{width:18.488766px;}
._26{width:19.598153px;}
._15{width:20.605094px;}
._27{width:22.570730px;}
._13{width:23.851300px;}
._3{width:26.899200px;}
._5{width:29.457520px;}
._23{width:92.025888px;}
._22{width:96.189456px;}
._1f{width:134.924304px;}
._1c{width:155.166768px;}
._19{width:188.654459px;}
._21{width:210.866554px;}
._1d{width:214.425659px;}
._1e{width:218.457611px;}
._18{width:234.063811px;}
._1b{width:239.757456px;}
._17{width:310.608787px;}
._20{width:355.466873px;}
._16{width:521.091302px;}
._1a{width:629.600698px;}
._25{width:1852.642579px;}
._11{width:1882.558579px;}
.fc4{color:rgb(0,139,191);}
.fc3{color:rgb(0,166,252);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(51,51,51);}
.fs3{font-size:41.842800px;}
.fs8{font-size:45.429600px;}
.fs9{font-size:47.820600px;}
.fs7{font-size:49.972200px;}
.fs0{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs5{font-size:65.753400px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:83.686200px;}
.fs1{font-size:131.506800px;}
.y0{bottom:0.000000px;}
.y39{bottom:41.272500px;}
.y63{bottom:53.850000px;}
.y38{bottom:54.721500px;}
.yea{bottom:124.006500px;}
.y9e{bottom:125.259000px;}
.y11{bottom:125.481000px;}
.y71{bottom:126.505500px;}
.y13a{bottom:127.701000px;}
.y62{bottom:132.483000px;}
.y163{bottom:133.380000px;}
.y37{bottom:139.825500px;}
.ya5{bottom:141.180000px;}
.y10e{bottom:145.974000px;}
.ye9{bottom:146.206500px;}
.y139{bottom:146.680500px;}
.y9d{bottom:147.675000px;}
.y70{bottom:148.921500px;}
.y162{bottom:152.806500px;}
.y61{bottom:154.899000px;}
.y10{bottom:156.864000px;}
.yaa{bottom:157.230000px;}
.ya4{bottom:157.618500px;}
.y36{bottom:162.241500px;}
.y10d{bottom:165.402000px;}
.y138{bottom:165.658500px;}
.ye8{bottom:168.406500px;}
.y9c{bottom:170.091000px;}
.y6f{bottom:171.337500px;}
.y161{bottom:172.234500px;}
.yf{bottom:173.302500px;}
.ya9{bottom:173.668500px;}
.ya3{bottom:174.057000px;}
.y60{bottom:177.315000px;}
.y35{bottom:184.657500px;}
.y137{bottom:187.626000px;}
.y10c{bottom:187.818000px;}
.ya8{bottom:190.107000px;}
.ya2{bottom:190.495500px;}
.y9b{bottom:192.507000px;}
.y6e{bottom:193.753500px;}
.y160{bottom:194.649000px;}
.y5f{bottom:199.731000px;}
.ye{bottom:200.202000px;}
.y187{bottom:201.225000px;}
.ya7{bottom:206.544000px;}
.y136{bottom:206.605500px;}
.ya1{bottom:206.934000px;}
.y34{bottom:207.073500px;}
.y10b{bottom:207.244500px;}
.ye7{bottom:211.762500px;}
.y15f{bottom:213.628500px;}
.y9a{bottom:214.923000px;}
.y6d{bottom:216.169500px;}
.yd{bottom:216.639000px;}
.y186{bottom:220.651500px;}
.y5e{bottom:222.147000px;}
.ya6{bottom:222.982500px;}
.ya0{bottom:223.372500px;}
.y135{bottom:225.583500px;}
.y33{bottom:229.489500px;}
.y10a{bottom:229.660500px;}
.y15e{bottom:232.608000px;}
.y99{bottom:237.339000px;}
.y6c{bottom:238.585500px;}
.y9f{bottom:239.809500px;}
.y185{bottom:240.079500px;}
.yc{bottom:243.538500px;}
.y5d{bottom:244.563000px;}
.y109{bottom:249.088500px;}
.y32{bottom:251.905500px;}
.ye6{bottom:252.454500px;}
.y15d{bottom:254.575500px;}
.y98{bottom:259.755000px;}
.y6b{bottom:261.001500px;}
.y184{bottom:262.495500px;}
.y134{bottom:266.530500px;}
.y5c{bottom:266.979000px;}
.y108{bottom:268.515000px;}
.yb{bottom:268.944000px;}
.y15c{bottom:273.553500px;}
.y31{bottom:274.321500px;}
.ye5{bottom:274.654500px;}
.y183{bottom:281.922000px;}
.y97{bottom:282.171000px;}
.y6a{bottom:283.417500px;}
.ya{bottom:285.382500px;}
.y133{bottom:285.508500px;}
.y5b{bottom:289.395000px;}
.y107{bottom:290.931000px;}
.y15b{bottom:295.521000px;}
.y30{bottom:296.737500px;}
.ye4{bottom:298.078500px;}
.y182{bottom:301.350000px;}
.y9{bottom:301.821000px;}
.y132{bottom:304.488000px;}
.y96{bottom:304.587000px;}
.y69{bottom:305.833500px;}
.y106{bottom:310.357500px;}
.yc3{bottom:311.809500px;}
.y5a{bottom:311.811000px;}
.y15a{bottom:314.500500px;}
.y2f{bottom:319.153500px;}
.y181{bottom:323.766000px;}
.y131{bottom:326.455500px;}
.y95{bottom:327.003000px;}
.y8{bottom:327.225000px;}
.y72{bottom:328.248000px;}
.y68{bottom:328.249500px;}
.y105{bottom:331.047000px;}
.y159{bottom:333.478500px;}
.yc2{bottom:334.225500px;}
.y59{bottom:334.227000px;}
.ye3{bottom:335.167500px;}
.y2e{bottom:341.569500px;}
.y7{bottom:342.169500px;}
.y180{bottom:343.192500px;}
.y130{bottom:345.435000px;}
.y94{bottom:349.419000px;}
.y67{bottom:350.664000px;}
.y158{bottom:355.447500px;}
.yc1{bottom:356.641500px;}
.y58{bottom:356.643000px;}
.ye2{bottom:357.367500px;}
.y2d{bottom:365.479500px;}
.y17f{bottom:365.608500px;}
.y6{bottom:366.079500px;}
.y12f{bottom:367.402500px;}
.y93{bottom:371.835000px;}
.y66{bottom:373.080000px;}
.y157{bottom:374.425500px;}
.yc0{bottom:379.057500px;}
.y57{bottom:379.059000px;}
.ye1{bottom:379.567500px;}
.y5{bottom:381.024000px;}
.y17e{bottom:385.036500px;}
.y12e{bottom:386.380500px;}
.y104{bottom:391.383000px;}
.y92{bottom:394.251000px;}
.y65{bottom:395.496000px;}
.y156{bottom:396.393000px;}
.y4{bottom:397.461000px;}
.ybf{bottom:401.473500px;}
.ye0{bottom:401.767500px;}
.y56{bottom:402.969000px;}
.y12d{bottom:405.360000px;}
.y17d{bottom:407.451000px;}
.y103{bottom:413.613000px;}
.y2c{bottom:413.943000px;}
.y155{bottom:415.372500px;}
.y91{bottom:416.667000px;}
.y64{bottom:417.912000px;}
.y3{bottom:421.372500px;}
.ybe{bottom:423.889500px;}
.ydf{bottom:423.967500px;}
.y17c{bottom:426.879000px;}
.y12c{bottom:427.327500px;}
.y2b{bottom:431.875500px;}
.y154{bottom:434.350500px;}
.y102{bottom:435.841500px;}
.y2{bottom:437.811000px;}
.y90{bottom:439.083000px;}
.y55{bottom:440.328000px;}
.yde{bottom:446.166000px;}
.ybd{bottom:446.305500px;}
.y2a{bottom:451.303500px;}
.y1{bottom:454.248000px;}
.y153{bottom:456.318000px;}
.y8f{bottom:461.499000px;}
.y54{bottom:462.744000px;}
.y12b{bottom:465.285000px;}
.ydd{bottom:468.366000px;}
.ybc{bottom:468.721500px;}
.y101{bottom:471.520500px;}
.y152{bottom:475.297500px;}
.y8e{bottom:483.915000px;}
.y53{bottom:485.160000px;}
.y12a{bottom:487.252500px;}
.y17b{bottom:488.149500px;}
.ydc{bottom:490.566000px;}
.ybb{bottom:491.137500px;}
.y100{bottom:493.750500px;}
.y151{bottom:497.265000px;}
.y129{bottom:506.232000px;}
.y8d{bottom:506.331000px;}
.y52{bottom:507.576000px;}
.ydb{bottom:512.766000px;}
.yba{bottom:513.553500px;}
.yff{bottom:515.979000px;}
.y150{bottom:516.244500px;}
.y29{bottom:520.896000px;}
.y128{bottom:528.199500px;}
.y8c{bottom:528.745500px;}
.y51{bottom:529.992000px;}
.yda{bottom:534.966000px;}
.yb9{bottom:535.969500px;}
.yfe{bottom:538.209000px;}
.y14f{bottom:538.212000px;}
.y28{bottom:541.818000px;}
.y127{bottom:547.177500px;}
.y17a{bottom:549.420000px;}
.y50{bottom:552.408000px;}
.y8b{bottom:552.657000px;}
.yd9{bottom:557.164500px;}
.y14e{bottom:557.190000px;}
.yb8{bottom:558.385500px;}
.yfd{bottom:560.437500px;}
.y27{bottom:562.740000px;}
.y126{bottom:566.157000px;}
.y179{bottom:568.846500px;}
.y4f{bottom:574.824000px;}
.y14d{bottom:576.169500px;}
.yd8{bottom:579.364500px;}
.yb7{bottom:580.801500px;}
.yfc{bottom:582.667500px;}
.y26{bottom:583.662000px;}
.y125{bottom:585.135000px;}
.y8a{bottom:587.242500px;}
.y178{bottom:591.262500px;}
.y4e{bottom:597.240000px;}
.y14c{bottom:598.137000px;}
.y89{bottom:599.944500px;}
.yd7{bottom:601.564500px;}
.yb6{bottom:603.217500px;}
.y124{bottom:604.114500px;}
.y25{bottom:604.582500px;}
.yfb{bottom:604.896000px;}
.y177{bottom:613.678500px;}
.y88{bottom:615.636000px;}
.y14b{bottom:617.115000px;}
.y4d{bottom:619.656000px;}
.yd6{bottom:623.764500px;}
.y24{bottom:625.504500px;}
.yb5{bottom:625.633500px;}
.y123{bottom:626.082000px;}
.y14a{bottom:636.094500px;}
.y87{bottom:640.210500px;}
.yfa{bottom:640.575000px;}
.y4c{bottom:642.072000px;}
.y122{bottom:645.061500px;}
.yd5{bottom:645.964500px;}
.y23{bottom:646.426500px;}
.yb4{bottom:648.049500px;}
.y176{bottom:655.521000px;}
.y149{bottom:658.062000px;}
.y86{bottom:659.637000px;}
.y121{bottom:664.039500px;}
.y4b{bottom:664.488000px;}
.yf9{bottom:665.793000px;}
.y22{bottom:667.347000px;}
.yd4{bottom:668.164500px;}
.yb3{bottom:670.465500px;}
.y175{bottom:677.937000px;}
.y85{bottom:679.065000px;}
.y148{bottom:680.029500px;}
.y120{bottom:686.007000px;}
.y4a{bottom:686.904000px;}
.yf8{bottom:688.023000px;}
.y21{bottom:688.269000px;}
.yd3{bottom:690.363000px;}
.yb2{bottom:692.881500px;}
.y174{bottom:697.365000px;}
.y84{bottom:698.491500px;}
.y147{bottom:699.009000px;}
.y11f{bottom:704.986500px;}
.y20{bottom:709.191000px;}
.y49{bottom:709.320000px;}
.yd2{bottom:712.563000px;}
.yf7{bottom:713.241000px;}
.yb1{bottom:715.297500px;}
.y83{bottom:717.919500px;}
.y173{bottom:719.781000px;}
.y146{bottom:720.976500px;}
.y11e{bottom:723.964500px;}
.y1f{bottom:730.111500px;}
.y48{bottom:731.736000px;}
.yd1{bottom:734.763000px;}
.yf6{bottom:735.469500px;}
.y82{bottom:737.346000px;}
.yb0{bottom:737.713500px;}
.y172{bottom:739.207500px;}
.y145{bottom:739.954500px;}
.y11d{bottom:745.932000px;}
.y1e{bottom:751.033500px;}
.y47{bottom:754.152000px;}
.y81{bottom:756.772500px;}
.yd0{bottom:756.963000px;}
.y171{bottom:758.635500px;}
.yaf{bottom:760.129500px;}
.yf5{bottom:760.687500px;}
.y144{bottom:761.922000px;}
.y11c{bottom:764.911500px;}
.y1d{bottom:771.955500px;}
.y80{bottom:776.200500px;}
.y46{bottom:776.568000px;}
.ycf{bottom:779.163000px;}
.y143{bottom:780.901500px;}
.y170{bottom:781.051500px;}
.yae{bottom:782.545500px;}
.yf4{bottom:782.917500px;}
.y11b{bottom:786.879000px;}
.y1c{bottom:792.877500px;}
.y7f{bottom:795.627000px;}
.y45{bottom:798.984000px;}
.y16f{bottom:800.478000px;}
.yce{bottom:801.361500px;}
.y142{bottom:802.869000px;}
.yad{bottom:804.961500px;}
.yf3{bottom:805.146000px;}
.y11a{bottom:805.858500px;}
.y1b{bottom:813.798000px;}
.y7e{bottom:815.055000px;}
.y44{bottom:821.400000px;}
.y141{bottom:821.848500px;}
.y16e{bottom:822.894000px;}
.ycd{bottom:823.561500px;}
.y119{bottom:824.836500px;}
.yac{bottom:827.377500px;}
.y7d{bottom:834.481500px;}
.yf2{bottom:840.825000px;}
.y140{bottom:840.826500px;}
.y1a{bottom:841.872000px;}
.y16d{bottom:842.320500px;}
.y43{bottom:843.816000px;}
.ycc{bottom:845.761500px;}
.y118{bottom:846.804000px;}
.yab{bottom:851.287500px;}
.y7c{bottom:853.909500px;}
.y16c{bottom:861.748500px;}
.y13f{bottom:862.794000px;}
.yf1{bottom:863.055000px;}
.y117{bottom:865.783500px;}
.y42{bottom:866.232000px;}
.ycb{bottom:867.961500px;}
.y7b{bottom:873.336000px;}
.y13e{bottom:881.773500px;}
.y16b{bottom:884.164500px;}
.y116{bottom:887.751000px;}
.y41{bottom:888.648000px;}
.yca{bottom:890.161500px;}
.y7a{bottom:892.762500px;}
.y19{bottom:898.375500px;}
.yf0{bottom:898.734000px;}
.y16a{bottom:903.591000px;}
.y13d{bottom:903.741000px;}
.y115{bottom:906.729000px;}
.y40{bottom:911.064000px;}
.y79{bottom:912.190500px;}
.yc9{bottom:912.360000px;}
.y18{bottom:919.398000px;}
.yef{bottom:920.962500px;}
.y13c{bottom:922.719000px;}
.y169{bottom:923.019000px;}
.y114{bottom:928.696500px;}
.y17{bottom:930.655500px;}
.y78{bottom:931.617000px;}
.y3f{bottom:933.478500px;}
.yc8{bottom:934.560000px;}
.yee{bottom:943.192500px;}
.y13b{bottom:944.686500px;}
.y168{bottom:945.435000px;}
.y113{bottom:947.676000px;}
.y16{bottom:951.676500px;}
.y77{bottom:954.168000px;}
.y3e{bottom:955.894500px;}
.yc7{bottom:956.760000px;}
.y167{bottom:964.861500px;}
.yed{bottom:965.421000px;}
.y112{bottom:966.655500px;}
.y76{bottom:970.606500px;}
.y15{bottom:973.395000px;}
.y3d{bottom:978.310500px;}
.yc6{bottom:978.960000px;}
.y111{bottom:985.633500px;}
.y166{bottom:987.277500px;}
.y14{bottom:992.821500px;}
.y3c{bottom:1000.726500px;}
.yec{bottom:1001.100000px;}
.yc5{bottom:1001.160000px;}
.y75{bottom:1003.132500px;}
.y165{bottom:1006.704000px;}
.y110{bottom:1007.601000px;}
.y74{bottom:1019.571000px;}
.y3b{bottom:1023.142500px;}
.yeb{bottom:1023.330000px;}
.yc4{bottom:1023.360000px;}
.y164{bottom:1026.132000px;}
.y10f{bottom:1026.580500px;}
.y13{bottom:1034.392500px;}
.y73{bottom:1036.009500px;}
.y3a{bottom:1045.558500px;}
.y12{bottom:1070.557500px;}
.h6{height:29.708388px;}
.ha{height:31.005515px;}
.hf{height:33.952626px;}
.h10{height:34.287370px;}
.hd{height:38.196864px;}
.h2{height:38.573453px;}
.h1{height:39.864614px;}
.h13{height:42.440676px;}
.h12{height:42.800676px;}
.h9{height:42.859105px;}
.he{height:46.015457px;}
.hb{height:46.684914px;}
.h8{height:47.145188px;}
.h4{height:51.431270px;}
.hc{height:53.007793px;}
.h11{height:53.152819px;}
.h5{height:55.748388px;}
.h7{height:62.011474px;}
.h3{height:93.369828px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:50.127000px;}
.x1{left:55.614000px;}
.x3{left:58.602000px;}
.x2{left:79.194000px;}
.xa{left:269.415000px;}
.x4{left:276.976500px;}
.xe{left:278.172000px;}
.xf{left:280.204500px;}
.x23{left:287.182500px;}
.x37{left:289.723500px;}
.x22{left:291.666000px;}
.x1a{left:294.067500px;}
.xd{left:295.140000px;}
.x28{left:296.403000px;}
.x2d{left:301.920000px;}
.x5{left:307.402500px;}
.x3f{left:310.270500px;}
.x2b{left:311.541000px;}
.x2e{left:322.725000px;}
.x18{left:335.310000px;}
.x38{left:349.797000px;}
.x9{left:358.689000px;}
.x4d{left:363.694500px;}
.x2f{left:369.655500px;}
.x4a{left:372.571500px;}
.x3d{left:378.429000px;}
.x34{left:396.867000px;}
.x47{left:403.116000px;}
.x40{left:407.794500px;}
.x24{left:410.119500px;}
.x30{left:412.756500px;}
.x35{left:418.554000px;}
.x48{left:426.145500px;}
.x4b{left:436.068000px;}
.x19{left:439.480500px;}
.x29{left:441.220500px;}
.xc{left:453.112500px;}
.x3b{left:454.807500px;}
.x31{left:457.206000px;}
.x27{left:463.173000px;}
.x3a{left:482.917500px;}
.x39{left:485.935500px;}
.x15{left:496.771500px;}
.x4e{left:501.385500px;}
.x49{left:517.944000px;}
.x4c{left:532.783500px;}
.x16{left:535.960500px;}
.x10{left:537.783000px;}
.x41{left:545.830500px;}
.x36{left:554.259000px;}
.x6{left:566.185500px;}
.x11{left:572.380500px;}
.x3c{left:578.539500px;}
.x32{left:579.621000px;}
.xb{left:589.219500px;}
.x12{left:599.331000px;}
.x3e{left:615.351000px;}
.x7{left:619.345500px;}
.x1e{left:637.020000px;}
.x13{left:638.520000px;}
.x14{left:647.680500px;}
.x33{left:655.857000px;}
.x1f{left:657.823500px;}
.x8{left:668.104500px;}
.x20{left:683.085000px;}
.x25{left:692.049000px;}
.x17{left:697.920000px;}
.x45{left:710.167500px;}
.x2a{left:724.902000px;}
.x43{left:736.263000px;}
.x21{left:739.797000px;}
.x2c{left:756.076500px;}
.x44{left:771.456000px;}
.x42{left:775.044000px;}
.x26{left:781.039500px;}
.x1d{left:792.795000px;}
.x1b{left:820.563000px;}
.x46{left:830.241000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v4{vertical-align:-8.768000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.360000pt;}
.v3{vertical-align:21.221333pt;}
.v1{vertical-align:23.146667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000683pt;}
.ls6{letter-spacing:0.001104pt;}
.ls19{letter-spacing:0.001280pt;}
.ls46{letter-spacing:0.001349pt;}
.ls25{letter-spacing:0.001613pt;}
.ls2f{letter-spacing:0.002304pt;}
.ls16{letter-spacing:0.002842pt;}
.ls42{letter-spacing:0.003838pt;}
.ls28{letter-spacing:0.003883pt;}
.ls1b{letter-spacing:0.094797pt;}
.ls45{letter-spacing:0.105518pt;}
.ls4a{letter-spacing:0.162693pt;}
.ls3b{letter-spacing:1.450828pt;}
.ls12{letter-spacing:2.654133pt;}
.ls0{letter-spacing:2.655136pt;}
.ls13{letter-spacing:2.657339pt;}
.ls14{letter-spacing:2.659467pt;}
.ls49{letter-spacing:3.747102pt;}
.ls15{letter-spacing:3.811445pt;}
.ls47{letter-spacing:6.161558pt;}
.ls1f{letter-spacing:9.676384pt;}
.ls21{letter-spacing:9.777717pt;}
.ls2{letter-spacing:10.623136pt;}
.lsd{letter-spacing:10.628608pt;}
.ls18{letter-spacing:10.630443pt;}
.ls3d{letter-spacing:10.637439pt;}
.ls35{letter-spacing:10.713941pt;}
.ls22{letter-spacing:10.929676pt;}
.ls2a{letter-spacing:10.966443pt;}
.ls1d{letter-spacing:11.000030pt;}
.ls38{letter-spacing:11.337941pt;}
.ls17{letter-spacing:11.533047pt;}
.ls29{letter-spacing:11.874381pt;}
.ls1c{letter-spacing:12.219714pt;}
.ls11{letter-spacing:12.249941pt;}
.ls1e{letter-spacing:12.318439pt;}
.ls3a{letter-spacing:12.329941pt;}
.ls39{letter-spacing:12.335275pt;}
.lsc{letter-spacing:12.356608pt;}
.lsf{letter-spacing:12.367275pt;}
.lsa{letter-spacing:12.404608pt;}
.ls20{letter-spacing:12.419773pt;}
.ls3f{letter-spacing:12.517643pt;}
.ls3e{letter-spacing:12.521941pt;}
.ls24{letter-spacing:13.045643pt;}
.ls40{letter-spacing:13.088309pt;}
.ls8{letter-spacing:13.113941pt;}
.lse{letter-spacing:13.124608pt;}
.ls2c{letter-spacing:13.153109pt;}
.ls36{letter-spacing:13.156608pt;}
.ls31{letter-spacing:13.178976pt;}
.ls48{letter-spacing:13.279872pt;}
.ls44{letter-spacing:13.285205pt;}
.ls37{letter-spacing:13.380608pt;}
.ls34{letter-spacing:13.444608pt;}
.ls4b{letter-spacing:13.487872pt;}
.ls10{letter-spacing:13.620608pt;}
.ls2b{letter-spacing:14.055714pt;}
.ls23{letter-spacing:14.157674pt;}
.ls7{letter-spacing:14.239275pt;}
.ls2e{letter-spacing:14.267776pt;}
.ls30{letter-spacing:14.291007pt;}
.ls4d{letter-spacing:14.330539pt;}
.ls3{letter-spacing:14.500608pt;}
.ls5{letter-spacing:14.505941pt;}
.ls4{letter-spacing:14.511275pt;}
.ls27{letter-spacing:14.688309pt;}
.ls33{letter-spacing:14.704309pt;}
.ls3c{letter-spacing:14.836608pt;}
.lsb{letter-spacing:15.129941pt;}
.ls26{letter-spacing:15.800341pt;}
.ls32{letter-spacing:15.811007pt;}
.ls43{letter-spacing:16.010539pt;}
.ls1{letter-spacing:17.316469pt;}
.ls4c{letter-spacing:17.465551pt;}
.ls41{letter-spacing:21.256267pt;}
.ls1a{letter-spacing:154.167074pt;}
.wsb{word-spacing:-14.665045pt;}
.ws23{word-spacing:-13.442917pt;}
.wsce{word-spacing:-12.220789pt;}
.ws6{word-spacing:-10.998784pt;}
.wsbf{word-spacing:-10.626773pt;}
.ws96{word-spacing:-9.776656pt;}
.ws8{word-spacing:-9.564160pt;}
.ws94{word-spacing:-8.501440pt;}
.wsb3{word-spacing:-2.863926pt;}
.ws22{word-spacing:-2.816439pt;}
.ws21{word-spacing:-2.805478pt;}
.wsb1{word-spacing:-2.747031pt;}
.ws9c{word-spacing:-2.688583pt;}
.wsb0{word-spacing:-2.672439pt;}
.ws7c{word-spacing:-2.630136pt;}
.ws98{word-spacing:-2.513241pt;}
.wsb7{word-spacing:-2.454794pt;}
.ws55{word-spacing:-2.396346pt;}
.ws49{word-spacing:-2.337899pt;}
.ws47{word-spacing:-2.320621pt;}
.ws48{word-spacing:-2.304934pt;}
.ws43{word-spacing:-2.301085pt;}
.ws44{word-spacing:-2.299106pt;}
.ws46{word-spacing:-2.295872pt;}
.ws45{word-spacing:-2.279451pt;}
.ws87{word-spacing:-2.221004pt;}
.wsad{word-spacing:-2.178206pt;}
.ws66{word-spacing:-2.162556pt;}
.ws74{word-spacing:-2.104109pt;}
.wsa1{word-spacing:-2.056294pt;}
.wsb2{word-spacing:-2.045661pt;}
.ws7f{word-spacing:-1.987214pt;}
.ws4a{word-spacing:-1.928766pt;}
.ws4b{word-spacing:-1.893772pt;}
.ws9d{word-spacing:-1.870319pt;}
.ws29{word-spacing:-1.811871pt;}
.ws7e{word-spacing:-1.753424pt;}
.ws5b{word-spacing:-1.694977pt;}
.ws2c{word-spacing:-1.636529pt;}
.ws53{word-spacing:-1.584439pt;}
.ws52{word-spacing:-1.578082pt;}
.ws6e{word-spacing:-1.519634pt;}
.ws6f{word-spacing:-1.461187pt;}
.wsd2{word-spacing:-1.434614pt;}
.ws5d{word-spacing:-1.402739pt;}
.ws78{word-spacing:-1.344292pt;}
.ws111{word-spacing:-1.328347pt;}
.wsb8{word-spacing:-1.285844pt;}
.ws71{word-spacing:-1.227397pt;}
.ws65{word-spacing:-1.191539pt;}
.ws64{word-spacing:-1.186539pt;}
.ws5e{word-spacing:-1.168949pt;}
.ws5f{word-spacing:-1.164873pt;}
.ws60{word-spacing:-1.163227pt;}
.ws4c{word-spacing:-1.110502pt;}
.ws51{word-spacing:-1.083106pt;}
.ws3c{word-spacing:-1.052054pt;}
.ws3b{word-spacing:-1.047624pt;}
.ws3d{word-spacing:-1.042291pt;}
.ws3e{word-spacing:-1.037205pt;}
.ws1f{word-spacing:-1.019106pt;}
.ws20{word-spacing:-0.993607pt;}
.wsaf{word-spacing:-0.971106pt;}
.ws17{word-spacing:-0.944439pt;}
.ws16{word-spacing:-0.935159pt;}
.ws88{word-spacing:-0.908595pt;}
.ws33{word-spacing:-0.887539pt;}
.ws34{word-spacing:-0.876712pt;}
.ws75{word-spacing:-0.818265pt;}
.ws70{word-spacing:-0.759817pt;}
.ws5a{word-spacing:-0.701370pt;}
.ws38{word-spacing:-0.679832pt;}
.ws37{word-spacing:-0.668873pt;}
.ws39{word-spacing:-0.667227pt;}
.ws6a{word-spacing:-0.661772pt;}
.ws3a{word-spacing:-0.642922pt;}
.ws35{word-spacing:-0.526027pt;}
.ws14{word-spacing:-0.476957pt;}
.ws12{word-spacing:-0.475106pt;}
.ws11{word-spacing:-0.467580pt;}
.ws13{word-spacing:-0.464840pt;}
.ws41{word-spacing:-0.409132pt;}
.ws2d{word-spacing:-0.350685pt;}
.ws4e{word-spacing:-0.341772pt;}
.ws2e{word-spacing:-0.292237pt;}
.ws50{word-spacing:-0.235106pt;}
.ws4f{word-spacing:-0.233790pt;}
.ws7a{word-spacing:-0.175342pt;}
.ws86{word-spacing:-0.116895pt;}
.ws95{word-spacing:-0.085014pt;}
.wsc{word-spacing:-0.074388pt;}
.ws1b{word-spacing:-0.058447pt;}
.wsc9{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047821pt;}
.ws93{word-spacing:-0.005461pt;}
.ws8b{word-spacing:-0.005094pt;}
.ws26{word-spacing:-0.003946pt;}
.ws91{word-spacing:-0.001570pt;}
.ws32{word-spacing:-0.000913pt;}
.ws5{word-spacing:0.000000pt;}
.ws67{word-spacing:0.058447pt;}
.ws5c{word-spacing:0.175342pt;}
.ws9a{word-spacing:0.233790pt;}
.ws9e{word-spacing:0.239104pt;}
.ws117{word-spacing:0.265669pt;}
.ws6b{word-spacing:0.292237pt;}
.wsae{word-spacing:0.341829pt;}
.wsac{word-spacing:0.350685pt;}
.ws73{word-spacing:0.409132pt;}
.ws7d{word-spacing:0.467580pt;}
.ws107{word-spacing:0.478205pt;}
.ws72{word-spacing:0.526027pt;}
.wsd3{word-spacing:0.531339pt;}
.wsd{word-spacing:0.577558pt;}
.ws10{word-spacing:0.580773pt;}
.wse{word-spacing:0.584475pt;}
.wsf{word-spacing:0.601827pt;}
.ws15{word-spacing:0.701370pt;}
.ws2b{word-spacing:0.759817pt;}
.wse0{word-spacing:0.797008pt;}
.ws2a{word-spacing:0.818265pt;}
.wsa2{word-spacing:0.860774pt;}
.ws40{word-spacing:0.876712pt;}
.ws18{word-spacing:0.935159pt;}
.ws54{word-spacing:0.993607pt;}
.ws28{word-spacing:1.052054pt;}
.wsbe{word-spacing:1.057373pt;}
.ws113{word-spacing:1.057514pt;}
.ws101{word-spacing:1.057731pt;}
.wsf2{word-spacing:1.057747pt;}
.wsd4{word-spacing:1.059053pt;}
.wsd9{word-spacing:1.059647pt;}
.wsc5{word-spacing:1.059694pt;}
.ws112{word-spacing:1.060182pt;}
.ws103{word-spacing:1.060767pt;}
.wsc0{word-spacing:1.062677pt;}
.wsec{word-spacing:1.063552pt;}
.ws104{word-spacing:1.063696pt;}
.ws115{word-spacing:1.063825pt;}
.wsf5{word-spacing:1.063927pt;}
.ws42{word-spacing:1.110502pt;}
.ws59{word-spacing:1.168949pt;}
.ws108{word-spacing:1.222079pt;}
.ws63{word-spacing:1.267043pt;}
.wsf6{word-spacing:1.267660pt;}
.wsf8{word-spacing:1.269739pt;}
.wsd0{word-spacing:1.273088pt;}
.wsc8{word-spacing:1.273139pt;}
.wsf7{word-spacing:1.275213pt;}
.wsf3{word-spacing:1.278421pt;}
.ws61{word-spacing:1.285844pt;}
.ws62{word-spacing:1.289827pt;}
.ws99{word-spacing:1.344292pt;}
.ws1c{word-spacing:1.402739pt;}
.ws27{word-spacing:1.461187pt;}
.wse4{word-spacing:1.487748pt;}
.ws30{word-spacing:1.519634pt;}
.wsde{word-spacing:1.540882pt;}
.wsc2{word-spacing:1.594016pt;}
.ws81{word-spacing:1.613538pt;}
.wsc4{word-spacing:1.622227pt;}
.wsc3{word-spacing:1.624599pt;}
.ws82{word-spacing:1.636529pt;}
.ws3f{word-spacing:1.694977pt;}
.wseb{word-spacing:1.700284pt;}
.wsfa{word-spacing:1.721070pt;}
.wsf0{word-spacing:1.753418pt;}
.ws6d{word-spacing:1.753424pt;}
.ws10a{word-spacing:1.788720pt;}
.wsd8{word-spacing:1.806551pt;}
.ws6c{word-spacing:1.811871pt;}
.ws105{word-spacing:1.859685pt;}
.ws7b{word-spacing:1.870319pt;}
.wsd7{word-spacing:1.912819pt;}
.ws36{word-spacing:1.928766pt;}
.ws114{word-spacing:1.965953pt;}
.wsf9{word-spacing:2.016582pt;}
.wsed{word-spacing:2.017020pt;}
.ws76{word-spacing:2.045661pt;}
.ws77{word-spacing:2.104109pt;}
.wsdc{word-spacing:2.114219pt;}
.wsda{word-spacing:2.116467pt;}
.wsdb{word-spacing:2.117212pt;}
.wsc7{word-spacing:2.125355pt;}
.ws100{word-spacing:2.127878pt;}
.wsff{word-spacing:2.133593pt;}
.ws1d{word-spacing:2.162556pt;}
.wsa7{word-spacing:2.199757pt;}
.ws2f{word-spacing:2.221004pt;}
.wsc1{word-spacing:2.231622pt;}
.ws83{word-spacing:2.337899pt;}
.ws79{word-spacing:2.396346pt;}
.wsa6{word-spacing:2.438861pt;}
.wse5{word-spacing:2.444158pt;}
.ws57{word-spacing:2.454794pt;}
.ws85{word-spacing:2.513241pt;}
.wsa8{word-spacing:2.534502pt;}
.ws80{word-spacing:2.571689pt;}
.ws1a{word-spacing:2.630136pt;}
.ws9f{word-spacing:2.677965pt;}
.ws19{word-spacing:2.688583pt;}
.wsdf{word-spacing:2.709827pt;}
.ws106{word-spacing:2.762961pt;}
.ws116{word-spacing:2.869229pt;}
.ws110{word-spacing:2.905027pt;}
.wse3{word-spacing:2.922363pt;}
.ws4d{word-spacing:2.922373pt;}
.wsfd{word-spacing:2.975497pt;}
.ws68{word-spacing:3.027749pt;}
.wsd6{word-spacing:3.028630pt;}
.ws69{word-spacing:3.039268pt;}
.wsa0{word-spacing:3.060531pt;}
.ws109{word-spacing:3.134898pt;}
.wsaa{word-spacing:3.251814pt;}
.wsa9{word-spacing:3.265613pt;}
.wsb5{word-spacing:3.331506pt;}
.wsc6{word-spacing:3.347434pt;}
.ws118{word-spacing:3.453701pt;}
.wse1{word-spacing:3.506835pt;}
.ws10b{word-spacing:3.613103pt;}
.wsbd{word-spacing:3.666237pt;}
.wscd{word-spacing:3.772505pt;}
.wse2{word-spacing:3.772960pt;}
.wsbc{word-spacing:3.857533pt;}
.wsb6{word-spacing:3.915980pt;}
.wscf{word-spacing:3.985040pt;}
.wsba{word-spacing:4.032875pt;}
.wsd5{word-spacing:4.038174pt;}
.ws56{word-spacing:4.091323pt;}
.wscc{word-spacing:4.197575pt;}
.wsfe{word-spacing:4.356977pt;}
.ws84{word-spacing:4.383560pt;}
.wsdd{word-spacing:4.410111pt;}
.ws1e{word-spacing:4.500455pt;}
.wsf4{word-spacing:4.728914pt;}
.wsb4{word-spacing:4.851140pt;}
.wsca{word-spacing:5.100851pt;}
.ws10c{word-spacing:5.260253pt;}
.ws10d{word-spacing:5.276999pt;}
.ws97{word-spacing:5.377167pt;}
.ws9b{word-spacing:5.435614pt;}
.wsd1{word-spacing:5.472788pt;}
.ws89{word-spacing:5.834138pt;}
.wsbb{word-spacing:5.844747pt;}
.wsab{word-spacing:5.929779pt;}
.wsfb{word-spacing:6.057261pt;}
.wsfc{word-spacing:6.078403pt;}
.wsa4{word-spacing:6.264525pt;}
.wsa3{word-spacing:6.274475pt;}
.ws8a{word-spacing:6.694912pt;}
.ws102{word-spacing:7.066804pt;}
.ws10f{word-spacing:7.428260pt;}
.ws10e{word-spacing:7.438741pt;}
.wscb{word-spacing:7.970080pt;}
.wse6{word-spacing:8.288883pt;}
.wse7{word-spacing:8.617647pt;}
.wse9{word-spacing:8.642219pt;}
.wse8{word-spacing:8.660820pt;}
.wsee{word-spacing:8.713954pt;}
.wsef{word-spacing:8.915755pt;}
.wsea{word-spacing:9.595686pt;}
.wsa5{word-spacing:9.707622pt;}
.ws31{word-spacing:10.302627pt;}
.wsf1{word-spacing:10.679907pt;}
.ws1{word-spacing:11.907379pt;}
.ws7{word-spacing:13.241463pt;}
.ws4{word-spacing:13.246362pt;}
.wsb9{word-spacing:17.661815pt;}
.ws3{word-spacing:19.876796pt;}
.ws58{word-spacing:20.605402pt;}
.ws24{word-spacing:21.200418pt;}
.wsa{word-spacing:23.252508pt;}
.ws25{word-spacing:24.390699pt;}
.ws0{word-spacing:25.185604pt;}
.ws2{word-spacing:29.173931pt;}
.ws8d{word-spacing:86.561143pt;}
.ws8e{word-spacing:108.933931pt;}
.ws8c{word-spacing:121.130086pt;}
.ws90{word-spacing:126.927232pt;}
.ws92{word-spacing:294.552730pt;}
.ws8f{word-spacing:597.806063pt;}
._6{margin-left:-6.826735pt;}
._c{margin-left:-5.844747pt;}
._e{margin-left:-4.691313pt;}
._9{margin-left:-3.060531pt;}
._2{margin-left:-1.912832pt;}
._0{margin-left:-0.956416pt;}
._1{width:1.052058pt;}
._4{width:2.348537pt;}
._a{width:3.324365pt;}
._7{width:4.550537pt;}
._8{width:5.512294pt;}
._12{width:7.241939pt;}
._24{width:9.702279pt;}
._f{width:10.877173pt;}
._14{width:11.769197pt;}
._b{width:13.444310pt;}
._10{width:14.381803pt;}
._d{width:15.297302pt;}
._28{width:16.434459pt;}
._26{width:17.420580pt;}
._15{width:18.315639pt;}
._27{width:20.062871pt;}
._13{width:21.201156pt;}
._3{width:23.910400pt;}
._5{width:26.184462pt;}
._23{width:81.800789pt;}
._22{width:85.501739pt;}
._1f{width:119.932715pt;}
._1c{width:137.926016pt;}
._19{width:167.692853pt;}
._21{width:187.436937pt;}
._1d{width:190.600586pt;}
._1e{width:194.184543pt;}
._18{width:208.056721pt;}
._1b{width:213.117739pt;}
._17{width:276.096700pt;}
._20{width:315.970554pt;}
._16{width:463.192269pt;}
._1a{width:559.645065pt;}
._25{width:1646.793404pt;}
._11{width:1673.385404pt;}
.fs3{font-size:37.193600pt;}
.fs8{font-size:40.381867pt;}
.fs9{font-size:42.507200pt;}
.fs7{font-size:44.419733pt;}
.fs0{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs5{font-size:58.447467pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:74.387733pt;}
.fs1{font-size:116.894933pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:36.686667pt;}
.y63{bottom:47.866667pt;}
.y38{bottom:48.641333pt;}
.yea{bottom:110.228000pt;}
.y9e{bottom:111.341333pt;}
.y11{bottom:111.538667pt;}
.y71{bottom:112.449333pt;}
.y13a{bottom:113.512000pt;}
.y62{bottom:117.762667pt;}
.y163{bottom:118.560000pt;}
.y37{bottom:124.289333pt;}
.ya5{bottom:125.493333pt;}
.y10e{bottom:129.754667pt;}
.ye9{bottom:129.961333pt;}
.y139{bottom:130.382667pt;}
.y9d{bottom:131.266667pt;}
.y70{bottom:132.374667pt;}
.y162{bottom:135.828000pt;}
.y61{bottom:137.688000pt;}
.y10{bottom:139.434667pt;}
.yaa{bottom:139.760000pt;}
.ya4{bottom:140.105333pt;}
.y36{bottom:144.214667pt;}
.y10d{bottom:147.024000pt;}
.y138{bottom:147.252000pt;}
.ye8{bottom:149.694667pt;}
.y9c{bottom:151.192000pt;}
.y6f{bottom:152.300000pt;}
.y161{bottom:153.097333pt;}
.yf{bottom:154.046667pt;}
.ya9{bottom:154.372000pt;}
.ya3{bottom:154.717333pt;}
.y60{bottom:157.613333pt;}
.y35{bottom:164.140000pt;}
.y137{bottom:166.778667pt;}
.y10c{bottom:166.949333pt;}
.ya8{bottom:168.984000pt;}
.ya2{bottom:169.329333pt;}
.y9b{bottom:171.117333pt;}
.y6e{bottom:172.225333pt;}
.y160{bottom:173.021333pt;}
.y5f{bottom:177.538667pt;}
.ye{bottom:177.957333pt;}
.y187{bottom:178.866667pt;}
.ya7{bottom:183.594667pt;}
.y136{bottom:183.649333pt;}
.ya1{bottom:183.941333pt;}
.y34{bottom:184.065333pt;}
.y10b{bottom:184.217333pt;}
.ye7{bottom:188.233333pt;}
.y15f{bottom:189.892000pt;}
.y9a{bottom:191.042667pt;}
.y6d{bottom:192.150667pt;}
.yd{bottom:192.568000pt;}
.y186{bottom:196.134667pt;}
.y5e{bottom:197.464000pt;}
.ya6{bottom:198.206667pt;}
.ya0{bottom:198.553333pt;}
.y135{bottom:200.518667pt;}
.y33{bottom:203.990667pt;}
.y10a{bottom:204.142667pt;}
.y15e{bottom:206.762667pt;}
.y99{bottom:210.968000pt;}
.y6c{bottom:212.076000pt;}
.y9f{bottom:213.164000pt;}
.y185{bottom:213.404000pt;}
.yc{bottom:216.478667pt;}
.y5d{bottom:217.389333pt;}
.y109{bottom:221.412000pt;}
.y32{bottom:223.916000pt;}
.ye6{bottom:224.404000pt;}
.y15d{bottom:226.289333pt;}
.y98{bottom:230.893333pt;}
.y6b{bottom:232.001333pt;}
.y184{bottom:233.329333pt;}
.y134{bottom:236.916000pt;}
.y5c{bottom:237.314667pt;}
.y108{bottom:238.680000pt;}
.yb{bottom:239.061333pt;}
.y15c{bottom:243.158667pt;}
.y31{bottom:243.841333pt;}
.ye5{bottom:244.137333pt;}
.y183{bottom:250.597333pt;}
.y97{bottom:250.818667pt;}
.y6a{bottom:251.926667pt;}
.ya{bottom:253.673333pt;}
.y133{bottom:253.785333pt;}
.y5b{bottom:257.240000pt;}
.y107{bottom:258.605333pt;}
.y15b{bottom:262.685333pt;}
.y30{bottom:263.766667pt;}
.ye4{bottom:264.958667pt;}
.y182{bottom:267.866667pt;}
.y9{bottom:268.285333pt;}
.y132{bottom:270.656000pt;}
.y96{bottom:270.744000pt;}
.y69{bottom:271.852000pt;}
.y106{bottom:275.873333pt;}
.yc3{bottom:277.164000pt;}
.y5a{bottom:277.165333pt;}
.y15a{bottom:279.556000pt;}
.y2f{bottom:283.692000pt;}
.y181{bottom:287.792000pt;}
.y131{bottom:290.182667pt;}
.y95{bottom:290.669333pt;}
.y8{bottom:290.866667pt;}
.y72{bottom:291.776000pt;}
.y68{bottom:291.777333pt;}
.y105{bottom:294.264000pt;}
.y159{bottom:296.425333pt;}
.yc2{bottom:297.089333pt;}
.y59{bottom:297.090667pt;}
.ye3{bottom:297.926667pt;}
.y2e{bottom:303.617333pt;}
.y7{bottom:304.150667pt;}
.y180{bottom:305.060000pt;}
.y130{bottom:307.053333pt;}
.y94{bottom:310.594667pt;}
.y67{bottom:311.701333pt;}
.y158{bottom:315.953333pt;}
.yc1{bottom:317.014667pt;}
.y58{bottom:317.016000pt;}
.ye2{bottom:317.660000pt;}
.y2d{bottom:324.870667pt;}
.y17f{bottom:324.985333pt;}
.y6{bottom:325.404000pt;}
.y12f{bottom:326.580000pt;}
.y93{bottom:330.520000pt;}
.y66{bottom:331.626667pt;}
.y157{bottom:332.822667pt;}
.yc0{bottom:336.940000pt;}
.y57{bottom:336.941333pt;}
.ye1{bottom:337.393333pt;}
.y5{bottom:338.688000pt;}
.y17e{bottom:342.254667pt;}
.y12e{bottom:343.449333pt;}
.y104{bottom:347.896000pt;}
.y92{bottom:350.445333pt;}
.y65{bottom:351.552000pt;}
.y156{bottom:352.349333pt;}
.y4{bottom:353.298667pt;}
.ybf{bottom:356.865333pt;}
.ye0{bottom:357.126667pt;}
.y56{bottom:358.194667pt;}
.y12d{bottom:360.320000pt;}
.y17d{bottom:362.178667pt;}
.y103{bottom:367.656000pt;}
.y2c{bottom:367.949333pt;}
.y155{bottom:369.220000pt;}
.y91{bottom:370.370667pt;}
.y64{bottom:371.477333pt;}
.y3{bottom:374.553333pt;}
.ybe{bottom:376.790667pt;}
.ydf{bottom:376.860000pt;}
.y17c{bottom:379.448000pt;}
.y12c{bottom:379.846667pt;}
.y2b{bottom:383.889333pt;}
.y154{bottom:386.089333pt;}
.y102{bottom:387.414667pt;}
.y2{bottom:389.165333pt;}
.y90{bottom:390.296000pt;}
.y55{bottom:391.402667pt;}
.yde{bottom:396.592000pt;}
.ybd{bottom:396.716000pt;}
.y2a{bottom:401.158667pt;}
.y1{bottom:403.776000pt;}
.y153{bottom:405.616000pt;}
.y8f{bottom:410.221333pt;}
.y54{bottom:411.328000pt;}
.y12b{bottom:413.586667pt;}
.ydd{bottom:416.325333pt;}
.ybc{bottom:416.641333pt;}
.y101{bottom:419.129333pt;}
.y152{bottom:422.486667pt;}
.y8e{bottom:430.146667pt;}
.y53{bottom:431.253333pt;}
.y12a{bottom:433.113333pt;}
.y17b{bottom:433.910667pt;}
.ydc{bottom:436.058667pt;}
.ybb{bottom:436.566667pt;}
.y100{bottom:438.889333pt;}
.y151{bottom:442.013333pt;}
.y129{bottom:449.984000pt;}
.y8d{bottom:450.072000pt;}
.y52{bottom:451.178667pt;}
.ydb{bottom:455.792000pt;}
.yba{bottom:456.492000pt;}
.yff{bottom:458.648000pt;}
.y150{bottom:458.884000pt;}
.y29{bottom:463.018667pt;}
.y128{bottom:469.510667pt;}
.y8c{bottom:469.996000pt;}
.y51{bottom:471.104000pt;}
.yda{bottom:475.525333pt;}
.yb9{bottom:476.417333pt;}
.yfe{bottom:478.408000pt;}
.y14f{bottom:478.410667pt;}
.y28{bottom:481.616000pt;}
.y127{bottom:486.380000pt;}
.y17a{bottom:488.373333pt;}
.y50{bottom:491.029333pt;}
.y8b{bottom:491.250667pt;}
.yd9{bottom:495.257333pt;}
.y14e{bottom:495.280000pt;}
.yb8{bottom:496.342667pt;}
.yfd{bottom:498.166667pt;}
.y27{bottom:500.213333pt;}
.y126{bottom:503.250667pt;}
.y179{bottom:505.641333pt;}
.y4f{bottom:510.954667pt;}
.y14d{bottom:512.150667pt;}
.yd8{bottom:514.990667pt;}
.yb7{bottom:516.268000pt;}
.yfc{bottom:517.926667pt;}
.y26{bottom:518.810667pt;}
.y125{bottom:520.120000pt;}
.y8a{bottom:521.993333pt;}
.y178{bottom:525.566667pt;}
.y4e{bottom:530.880000pt;}
.y14c{bottom:531.677333pt;}
.y89{bottom:533.284000pt;}
.yd7{bottom:534.724000pt;}
.yb6{bottom:536.193333pt;}
.y124{bottom:536.990667pt;}
.y25{bottom:537.406667pt;}
.yfb{bottom:537.685333pt;}
.y177{bottom:545.492000pt;}
.y88{bottom:547.232000pt;}
.y14b{bottom:548.546667pt;}
.y4d{bottom:550.805333pt;}
.yd6{bottom:554.457333pt;}
.y24{bottom:556.004000pt;}
.yb5{bottom:556.118667pt;}
.y123{bottom:556.517333pt;}
.y14a{bottom:565.417333pt;}
.y87{bottom:569.076000pt;}
.yfa{bottom:569.400000pt;}
.y4c{bottom:570.730667pt;}
.y122{bottom:573.388000pt;}
.yd5{bottom:574.190667pt;}
.y23{bottom:574.601333pt;}
.yb4{bottom:576.044000pt;}
.y176{bottom:582.685333pt;}
.y149{bottom:584.944000pt;}
.y86{bottom:586.344000pt;}
.y121{bottom:590.257333pt;}
.y4b{bottom:590.656000pt;}
.yf9{bottom:591.816000pt;}
.y22{bottom:593.197333pt;}
.yd4{bottom:593.924000pt;}
.yb3{bottom:595.969333pt;}
.y175{bottom:602.610667pt;}
.y85{bottom:603.613333pt;}
.y148{bottom:604.470667pt;}
.y120{bottom:609.784000pt;}
.y4a{bottom:610.581333pt;}
.yf8{bottom:611.576000pt;}
.y21{bottom:611.794667pt;}
.yd3{bottom:613.656000pt;}
.yb2{bottom:615.894667pt;}
.y174{bottom:619.880000pt;}
.y84{bottom:620.881333pt;}
.y147{bottom:621.341333pt;}
.y11f{bottom:626.654667pt;}
.y20{bottom:630.392000pt;}
.y49{bottom:630.506667pt;}
.yd2{bottom:633.389333pt;}
.yf7{bottom:633.992000pt;}
.yb1{bottom:635.820000pt;}
.y83{bottom:638.150667pt;}
.y173{bottom:639.805333pt;}
.y146{bottom:640.868000pt;}
.y11e{bottom:643.524000pt;}
.y1f{bottom:648.988000pt;}
.y48{bottom:650.432000pt;}
.yd1{bottom:653.122667pt;}
.yf6{bottom:653.750667pt;}
.y82{bottom:655.418667pt;}
.yb0{bottom:655.745333pt;}
.y172{bottom:657.073333pt;}
.y145{bottom:657.737333pt;}
.y11d{bottom:663.050667pt;}
.y1e{bottom:667.585333pt;}
.y47{bottom:670.357333pt;}
.y81{bottom:672.686667pt;}
.yd0{bottom:672.856000pt;}
.y171{bottom:674.342667pt;}
.yaf{bottom:675.670667pt;}
.yf5{bottom:676.166667pt;}
.y144{bottom:677.264000pt;}
.y11c{bottom:679.921333pt;}
.y1d{bottom:686.182667pt;}
.y80{bottom:689.956000pt;}
.y46{bottom:690.282667pt;}
.ycf{bottom:692.589333pt;}
.y143{bottom:694.134667pt;}
.y170{bottom:694.268000pt;}
.yae{bottom:695.596000pt;}
.yf4{bottom:695.926667pt;}
.y11b{bottom:699.448000pt;}
.y1c{bottom:704.780000pt;}
.y7f{bottom:707.224000pt;}
.y45{bottom:710.208000pt;}
.y16f{bottom:711.536000pt;}
.yce{bottom:712.321333pt;}
.y142{bottom:713.661333pt;}
.yad{bottom:715.521333pt;}
.yf3{bottom:715.685333pt;}
.y11a{bottom:716.318667pt;}
.y1b{bottom:723.376000pt;}
.y7e{bottom:724.493333pt;}
.y44{bottom:730.133333pt;}
.y141{bottom:730.532000pt;}
.y16e{bottom:731.461333pt;}
.ycd{bottom:732.054667pt;}
.y119{bottom:733.188000pt;}
.yac{bottom:735.446667pt;}
.y7d{bottom:741.761333pt;}
.yf2{bottom:747.400000pt;}
.y140{bottom:747.401333pt;}
.y1a{bottom:748.330667pt;}
.y16d{bottom:748.729333pt;}
.y43{bottom:750.058667pt;}
.ycc{bottom:751.788000pt;}
.y118{bottom:752.714667pt;}
.yab{bottom:756.700000pt;}
.y7c{bottom:759.030667pt;}
.y16c{bottom:765.998667pt;}
.y13f{bottom:766.928000pt;}
.yf1{bottom:767.160000pt;}
.y117{bottom:769.585333pt;}
.y42{bottom:769.984000pt;}
.ycb{bottom:771.521333pt;}
.y7b{bottom:776.298667pt;}
.y13e{bottom:783.798667pt;}
.y16b{bottom:785.924000pt;}
.y116{bottom:789.112000pt;}
.y41{bottom:789.909333pt;}
.yca{bottom:791.254667pt;}
.y7a{bottom:793.566667pt;}
.y19{bottom:798.556000pt;}
.yf0{bottom:798.874667pt;}
.y16a{bottom:803.192000pt;}
.y13d{bottom:803.325333pt;}
.y115{bottom:805.981333pt;}
.y40{bottom:809.834667pt;}
.y79{bottom:810.836000pt;}
.yc9{bottom:810.986667pt;}
.y18{bottom:817.242667pt;}
.yef{bottom:818.633333pt;}
.y13c{bottom:820.194667pt;}
.y169{bottom:820.461333pt;}
.y114{bottom:825.508000pt;}
.y17{bottom:827.249333pt;}
.y78{bottom:828.104000pt;}
.y3f{bottom:829.758667pt;}
.yc8{bottom:830.720000pt;}
.yee{bottom:838.393333pt;}
.y13b{bottom:839.721333pt;}
.y168{bottom:840.386667pt;}
.y113{bottom:842.378667pt;}
.y16{bottom:845.934667pt;}
.y77{bottom:848.149333pt;}
.y3e{bottom:849.684000pt;}
.yc7{bottom:850.453333pt;}
.y167{bottom:857.654667pt;}
.yed{bottom:858.152000pt;}
.y112{bottom:859.249333pt;}
.y76{bottom:862.761333pt;}
.y15{bottom:865.240000pt;}
.y3d{bottom:869.609333pt;}
.yc6{bottom:870.186667pt;}
.y111{bottom:876.118667pt;}
.y166{bottom:877.580000pt;}
.y14{bottom:882.508000pt;}
.y3c{bottom:889.534667pt;}
.yec{bottom:889.866667pt;}
.yc5{bottom:889.920000pt;}
.y75{bottom:891.673333pt;}
.y165{bottom:894.848000pt;}
.y110{bottom:895.645333pt;}
.y74{bottom:906.285333pt;}
.y3b{bottom:909.460000pt;}
.yeb{bottom:909.626667pt;}
.yc4{bottom:909.653333pt;}
.y164{bottom:912.117333pt;}
.y10f{bottom:912.516000pt;}
.y13{bottom:919.460000pt;}
.y73{bottom:920.897333pt;}
.y3a{bottom:929.385333pt;}
.y12{bottom:951.606667pt;}
.h6{height:26.407456pt;}
.ha{height:27.560458pt;}
.hf{height:30.180112pt;}
.h10{height:30.477662pt;}
.hd{height:33.952768pt;}
.h2{height:34.287514pt;}
.h1{height:35.435213pt;}
.h13{height:37.725045pt;}
.h12{height:38.045045pt;}
.h9{height:38.096982pt;}
.he{height:40.902628pt;}
.hb{height:41.497701pt;}
.h8{height:41.906834pt;}
.h4{height:45.716685pt;}
.hc{height:47.118038pt;}
.h11{height:47.246950pt;}
.h5{height:49.554123pt;}
.h7{height:55.121310pt;}
.h3{height:82.995403pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:44.557333pt;}
.x1{left:49.434667pt;}
.x3{left:52.090667pt;}
.x2{left:70.394667pt;}
.xa{left:239.480000pt;}
.x4{left:246.201333pt;}
.xe{left:247.264000pt;}
.xf{left:249.070667pt;}
.x23{left:255.273333pt;}
.x37{left:257.532000pt;}
.x22{left:259.258667pt;}
.x1a{left:261.393333pt;}
.xd{left:262.346667pt;}
.x28{left:263.469333pt;}
.x2d{left:268.373333pt;}
.x5{left:273.246667pt;}
.x3f{left:275.796000pt;}
.x2b{left:276.925333pt;}
.x2e{left:286.866667pt;}
.x18{left:298.053333pt;}
.x38{left:310.930667pt;}
.x9{left:318.834667pt;}
.x4d{left:323.284000pt;}
.x2f{left:328.582667pt;}
.x4a{left:331.174667pt;}
.x3d{left:336.381333pt;}
.x34{left:352.770667pt;}
.x47{left:358.325333pt;}
.x40{left:362.484000pt;}
.x24{left:364.550667pt;}
.x30{left:366.894667pt;}
.x35{left:372.048000pt;}
.x48{left:378.796000pt;}
.x4b{left:387.616000pt;}
.x19{left:390.649333pt;}
.x29{left:392.196000pt;}
.xc{left:402.766667pt;}
.x3b{left:404.273333pt;}
.x31{left:406.405333pt;}
.x27{left:411.709333pt;}
.x3a{left:429.260000pt;}
.x39{left:431.942667pt;}
.x15{left:441.574667pt;}
.x4e{left:445.676000pt;}
.x49{left:460.394667pt;}
.x4c{left:473.585333pt;}
.x16{left:476.409333pt;}
.x10{left:478.029333pt;}
.x41{left:485.182667pt;}
.x36{left:492.674667pt;}
.x6{left:503.276000pt;}
.x11{left:508.782667pt;}
.x3c{left:514.257333pt;}
.x32{left:515.218667pt;}
.xb{left:523.750667pt;}
.x12{left:532.738667pt;}
.x3e{left:546.978667pt;}
.x7{left:550.529333pt;}
.x1e{left:566.240000pt;}
.x13{left:567.573333pt;}
.x14{left:575.716000pt;}
.x33{left:582.984000pt;}
.x1f{left:584.732000pt;}
.x8{left:593.870667pt;}
.x20{left:607.186667pt;}
.x25{left:615.154667pt;}
.x17{left:620.373333pt;}
.x45{left:631.260000pt;}
.x2a{left:644.357333pt;}
.x43{left:654.456000pt;}
.x21{left:657.597333pt;}
.x2c{left:672.068000pt;}
.x44{left:685.738667pt;}
.x42{left:688.928000pt;}
.x26{left:694.257333pt;}
.x1d{left:704.706667pt;}
.x1b{left:729.389333pt;}
.x46{left:737.992000pt;}
}




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