
    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_84377445fafbcdefe1001ce9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_e58bede0a23097187534a9c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9b8baac9d27b053ef1ebed9a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8a7ca599158c0c50b4932587.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_5b052a9f29803b2ef21420d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_91549317e4796fedd512c29f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_5fc637f56fe1c8d51a020fe9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_b9fb1f606c52157b18861da7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.847656;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_c8f713df06822f927be6f1a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_4e9cf1b5adfa188ab90f9afa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_649c16442c89901bb02ccbe4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_43b56553d0fde73e0e94f9df.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_41100917d0e2c271c1a49d07.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.688400;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_0a45b484910eba90a5a680d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710400;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_8561c1948f66cec12988bd60.woff2')format("woff");}.fff{font-family:fff;line-height:0.886000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-55.326000px;}
.va{vertical-align:-34.242000px;}
.vd{vertical-align:-32.568000px;}
.vc{vertical-align:-29.976000px;}
.vb{vertical-align:-27.750000px;}
.v3{vertical-align:-26.028000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.508000px;}
.v8{vertical-align:10.998000px;}
.v9{vertical-align:13.248000px;}
.v6{vertical-align:21.696000px;}
.v5{vertical-align:23.754000px;}
.v2{vertical-align:26.028000px;}
.ve{vertical-align:38.964000px;}
.ls16{letter-spacing:-0.513600px;}
.ls13{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.153600px;}
.ls12{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000073px;}
.lsf{letter-spacing:0.001864px;}
.ls8{letter-spacing:0.002074px;}
.ls20{letter-spacing:0.002400px;}
.lsb{letter-spacing:0.021960px;}
.lsd{letter-spacing:0.140040px;}
.ls7{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.360000px;}
.ls1{letter-spacing:2.987700px;}
.ls2{letter-spacing:2.993700px;}
.ls31{letter-spacing:15.499200px;}
.ls27{letter-spacing:15.649200px;}
.ls34{letter-spacing:15.685200px;}
.ls2a{letter-spacing:15.877200px;}
.ls26{letter-spacing:16.021200px;}
.ls10{letter-spacing:16.362503px;}
.ls11{letter-spacing:16.572600px;}
.ls39{letter-spacing:16.903200px;}
.ls1e{letter-spacing:16.945200px;}
.ls2c{letter-spacing:17.563200px;}
.ls1a{letter-spacing:17.929200px;}
.ls0{letter-spacing:17.935200px;}
.ls4{letter-spacing:17.936400px;}
.ls1d{letter-spacing:19.348238px;}
.ls1f{letter-spacing:19.477200px;}
.ls17{letter-spacing:19.601700px;}
.ls18{letter-spacing:19.654349px;}
.ls32{letter-spacing:20.407200px;}
.ls3{letter-spacing:20.921700px;}
.ls25{letter-spacing:21.103200px;}
.ls3a{letter-spacing:22.603200px;}
.ls29{letter-spacing:23.023200px;}
.ls19{letter-spacing:23.240909px;}
.lse{letter-spacing:23.435700px;}
.ls2d{letter-spacing:24.601200px;}
.ls1c{letter-spacing:26.899200px;}
.ls22{letter-spacing:27.283200px;}
.ls36{letter-spacing:27.895200px;}
.ls24{letter-spacing:28.045200px;}
.ls2b{letter-spacing:28.087200px;}
.ls37{letter-spacing:29.773200px;}
.ls33{letter-spacing:29.923200px;}
.ls35{letter-spacing:30.697200px;}
.ls23{letter-spacing:32.017200px;}
.ls28{letter-spacing:34.543200px;}
.ls38{letter-spacing:35.419200px;}
.ls21{letter-spacing:36.289200px;}
.ls30{letter-spacing:41.514073px;}
.ls2f{letter-spacing:92.989200px;}
.ls6{letter-spacing:2400.524400px;}
.ls1b{letter-spacing:3658.184400px;}
.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;}
}
.ws66{word-spacing:-18.360000px;}
.ws65{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.932800px;}
.ws6c{word-spacing:-17.856000px;}
.ws128{word-spacing:-17.574144px;}
.ws6e{word-spacing:-16.491960px;}
.ws7b{word-spacing:-16.363650px;}
.ws71{word-spacing:-15.210000px;}
.ws101{word-spacing:-14.943900px;}
.ws70{word-spacing:-14.850000px;}
.ws4{word-spacing:-11.955150px;}
.ws6d{word-spacing:-10.530000px;}
.ws6f{word-spacing:-9.720000px;}
.ws110{word-spacing:-4.303872px;}
.wsb8{word-spacing:-4.160410px;}
.ws5e{word-spacing:-4.088678px;}
.ws36{word-spacing:-4.016947px;}
.ws16e{word-spacing:-3.945216px;}
.wse4{word-spacing:-3.873485px;}
.ws14f{word-spacing:-3.658291px;}
.ws117{word-spacing:-3.586560px;}
.ws171{word-spacing:-3.443098px;}
.ws60{word-spacing:-3.371366px;}
.ws9a{word-spacing:-3.310205px;}
.ws9b{word-spacing:-3.305674px;}
.ws62{word-spacing:-3.299635px;}
.wse5{word-spacing:-3.227904px;}
.ws85{word-spacing:-3.156173px;}
.ws5c{word-spacing:-3.012710px;}
.ws14a{word-spacing:-2.869248px;}
.ws4c{word-spacing:-2.797517px;}
.wscb{word-spacing:-2.654054px;}
.ws88{word-spacing:-2.582323px;}
.wse3{word-spacing:-2.510592px;}
.ws164{word-spacing:-2.438861px;}
.wsa0{word-spacing:-2.367130px;}
.ws1b{word-spacing:-2.295398px;}
.ws16a{word-spacing:-2.223667px;}
.wsa8{word-spacing:-2.080205px;}
.ws45{word-spacing:-2.008474px;}
.wsb0{word-spacing:-1.936742px;}
.ws76{word-spacing:-1.875552px;}
.ws78{word-spacing:-1.865011px;}
.wscf{word-spacing:-1.801440px;}
.ws107{word-spacing:-1.794163px;}
.ws74{word-spacing:-1.793280px;}
.ws64{word-spacing:-1.721549px;}
.ws14{word-spacing:-1.649818px;}
.wsc5{word-spacing:-1.578086px;}
.ws145{word-spacing:-1.506355px;}
.ws83{word-spacing:-1.434624px;}
.ws81{word-spacing:-1.374839px;}
.ws7f{word-spacing:-1.365266px;}
.ws86{word-spacing:-1.362893px;}
.ws87{word-spacing:-1.291162px;}
.ws5d{word-spacing:-1.219430px;}
.wsc7{word-spacing:-1.004237px;}
.ws63{word-spacing:-0.932506px;}
.wsca{word-spacing:-0.860774px;}
.wsd4{word-spacing:-0.789043px;}
.ws53{word-spacing:-0.717312px;}
.ws54{word-spacing:-0.645581px;}
.wse0{word-spacing:-0.573850px;}
.ws15b{word-spacing:-0.430387px;}
.ws7{word-spacing:-0.358656px;}
.wsb{word-spacing:-0.286925px;}
.ws7e{word-spacing:-0.261818px;}
.ws118{word-spacing:-0.215194px;}
.wsf9{word-spacing:-0.206327px;}
.wsfb{word-spacing:-0.179327px;}
.ws2{word-spacing:-0.071731px;}
.ws7d{word-spacing:-0.014062px;}
.ws7a{word-spacing:-0.012478px;}
.wsda{word-spacing:-0.009946px;}
.wsf8{word-spacing:-0.006034px;}
.ws103{word-spacing:-0.005777px;}
.wsf7{word-spacing:-0.005092px;}
.wsf0{word-spacing:-0.004382px;}
.wsd9{word-spacing:-0.004367px;}
.ws12c{word-spacing:-0.004128px;}
.wsd6{word-spacing:-0.003946px;}
.ws106{word-spacing:-0.003808px;}
.wsd8{word-spacing:-0.003556px;}
.ws10f{word-spacing:-0.003395px;}
.ws10b{word-spacing:-0.002864px;}
.wsfd{word-spacing:-0.002327px;}
.wsfc{word-spacing:-0.002194px;}
.wsf6{word-spacing:-0.002033px;}
.wsf3{word-spacing:-0.002008px;}
.ws102{word-spacing:-0.001562px;}
.ws10c{word-spacing:-0.001298px;}
.wsf4{word-spacing:-0.000892px;}
.ws105{word-spacing:-0.000208px;}
.ws3{word-spacing:0.000000px;}
.ws10e{word-spacing:0.000383px;}
.wsfe{word-spacing:0.000575px;}
.wsf2{word-spacing:0.000676px;}
.ws7c{word-spacing:0.001500px;}
.ws8e{word-spacing:0.071731px;}
.ws51{word-spacing:0.143462px;}
.ws72{word-spacing:0.286925px;}
.ws10{word-spacing:0.430387px;}
.wsb9{word-spacing:0.502118px;}
.ws73{word-spacing:0.573850px;}
.ws84{word-spacing:0.645581px;}
.ws11{word-spacing:0.717312px;}
.wsdd{word-spacing:0.860774px;}
.ws38{word-spacing:0.932506px;}
.ws9c{word-spacing:1.004237px;}
.wsaf{word-spacing:1.075968px;}
.ws175{word-spacing:1.147699px;}
.wsbe{word-spacing:1.219430px;}
.ws82{word-spacing:1.291162px;}
.ws56{word-spacing:1.362893px;}
.ws2e{word-spacing:1.434624px;}
.ws1c{word-spacing:1.506355px;}
.ws121{word-spacing:1.578086px;}
.wsb3{word-spacing:1.649818px;}
.ws4b{word-spacing:1.721549px;}
.wsbd{word-spacing:1.793280px;}
.ws40{word-spacing:1.865011px;}
.wsd{word-spacing:1.936742px;}
.ws93{word-spacing:2.008474px;}
.ws3e{word-spacing:2.080205px;}
.ws30{word-spacing:2.151936px;}
.ws55{word-spacing:2.223667px;}
.ws9e{word-spacing:2.295398px;}
.wsd1{word-spacing:2.357146px;}
.ws12{word-spacing:2.367130px;}
.ws19{word-spacing:2.438861px;}
.ws42{word-spacing:2.510592px;}
.ws79{word-spacing:2.582323px;}
.wsa1{word-spacing:2.654054px;}
.ws8c{word-spacing:2.725786px;}
.ws50{word-spacing:2.797517px;}
.ws52{word-spacing:2.869248px;}
.wsd3{word-spacing:2.940979px;}
.wsaa{word-spacing:3.012710px;}
.wsa3{word-spacing:3.071606px;}
.wsa2{word-spacing:3.084442px;}
.wsa5{word-spacing:3.156173px;}
.ws97{word-spacing:3.222845px;}
.ws99{word-spacing:3.227904px;}
.ws13{word-spacing:3.299635px;}
.ws17{word-spacing:3.371366px;}
.ws8d{word-spacing:3.443098px;}
.wsb7{word-spacing:3.514829px;}
.ws112{word-spacing:3.586560px;}
.wse2{word-spacing:3.658291px;}
.ws2f{word-spacing:3.730022px;}
.wsa{word-spacing:3.873485px;}
.ws4d{word-spacing:3.945216px;}
.wsbb{word-spacing:4.016947px;}
.ws14c{word-spacing:4.088678px;}
.ws89{word-spacing:4.160410px;}
.ws68{word-spacing:4.232141px;}
.ws16c{word-spacing:4.298621px;}
.ws16b{word-spacing:4.299053px;}
.ws16f{word-spacing:4.299331px;}
.ws1d{word-spacing:4.300013px;}
.ws14d{word-spacing:4.303690px;}
.ws1e{word-spacing:4.303872px;}
.ws176{word-spacing:4.304064px;}
.ws148{word-spacing:4.375603px;}
.ws1a{word-spacing:4.447334px;}
.ws123{word-spacing:4.590797px;}
.wsc1{word-spacing:4.662528px;}
.ws3b{word-spacing:4.734259px;}
.wse{word-spacing:4.805990px;}
.ws25{word-spacing:4.877722px;}
.ws2c{word-spacing:4.949453px;}
.wsbf{word-spacing:4.997242px;}
.ws8b{word-spacing:5.021184px;}
.ws27{word-spacing:5.092915px;}
.ws4e{word-spacing:5.164646px;}
.ws41{word-spacing:5.236378px;}
.ws3f{word-spacing:5.308109px;}
.ws28{word-spacing:5.379840px;}
.ws20{word-spacing:5.451571px;}
.ws44{word-spacing:5.523302px;}
.ws17f{word-spacing:5.595034px;}
.wsb2{word-spacing:5.666765px;}
.ws109{word-spacing:5.738496px;}
.ws75{word-spacing:5.810227px;}
.ws29{word-spacing:5.881958px;}
.ws4f{word-spacing:5.953690px;}
.wsad{word-spacing:6.025421px;}
.ws8f{word-spacing:6.097152px;}
.ws22{word-spacing:6.168883px;}
.wsf{word-spacing:6.240614px;}
.ws37{word-spacing:6.312346px;}
.ws35{word-spacing:6.384077px;}
.ws115{word-spacing:6.455808px;}
.wsae{word-spacing:6.527539px;}
.ws120{word-spacing:6.599270px;}
.ws113{word-spacing:6.671002px;}
.ws11c{word-spacing:6.742733px;}
.wsce{word-spacing:6.957926px;}
.ws108{word-spacing:7.029658px;}
.ws129{word-spacing:7.101389px;}
.ws39{word-spacing:7.173120px;}
.ws4a{word-spacing:7.244851px;}
.ws173{word-spacing:7.316582px;}
.ws94{word-spacing:7.388314px;}
.ws15{word-spacing:7.460045px;}
.wsa6{word-spacing:7.675238px;}
.wscc{word-spacing:7.746970px;}
.ws92{word-spacing:7.818701px;}
.ws91{word-spacing:7.890432px;}
.wsc3{word-spacing:7.962163px;}
.wsdf{word-spacing:8.105626px;}
.ws43{word-spacing:8.177357px;}
.wsc{word-spacing:8.242915px;}
.ws178{word-spacing:8.286394px;}
.ws17a{word-spacing:8.320819px;}
.ws2d{word-spacing:8.392550px;}
.ws49{word-spacing:8.464282px;}
.wsea{word-spacing:8.494502px;}
.ws23{word-spacing:8.536013px;}
.ws16{word-spacing:8.607744px;}
.wsd5{word-spacing:8.679475px;}
.ws11a{word-spacing:8.751206px;}
.ws90{word-spacing:8.822938px;}
.ws48{word-spacing:8.894669px;}
.wsb6{word-spacing:8.966400px;}
.ws5{word-spacing:8.967525px;}
.ws18{word-spacing:9.038131px;}
.wsdc{word-spacing:9.109862px;}
.ws33{word-spacing:9.253325px;}
.wse1{word-spacing:9.325056px;}
.wsc8{word-spacing:9.468518px;}
.ws139{word-spacing:9.540250px;}
.ws21{word-spacing:9.611981px;}
.ws5b{word-spacing:9.683712px;}
.wse6{word-spacing:9.755443px;}
.ws156{word-spacing:9.827174px;}
.wsdb{word-spacing:9.970637px;}
.ws2a{word-spacing:10.042368px;}
.ws34{word-spacing:10.114099px;}
.wsba{word-spacing:10.185830px;}
.ws144{word-spacing:10.257562px;}
.ws31{word-spacing:10.544486px;}
.wsec{word-spacing:10.616218px;}
.ws24{word-spacing:10.687949px;}
.ws177{word-spacing:10.759680px;}
.ws32{word-spacing:10.903142px;}
.ws11b{word-spacing:10.974874px;}
.ws3a{word-spacing:11.190067px;}
.ws96{word-spacing:11.261798px;}
.wsde{word-spacing:11.333530px;}
.ws126{word-spacing:11.476992px;}
.ws9d{word-spacing:11.548723px;}
.ws3d{word-spacing:11.692186px;}
.ws5a{word-spacing:11.763917px;}
.ws174{word-spacing:11.835648px;}
.ws167{word-spacing:11.979110px;}
.ws116{word-spacing:12.122573px;}
.ws57{word-spacing:12.194304px;}
.ws111{word-spacing:12.337766px;}
.ws46{word-spacing:12.409498px;}
.ws8{word-spacing:12.481229px;}
.ws11d{word-spacing:12.552960px;}
.ws141{word-spacing:12.624691px;}
.ws114{word-spacing:12.696422px;}
.ws26{word-spacing:12.983347px;}
.ws150{word-spacing:13.270272px;}
.ws80{word-spacing:13.509286px;}
.ws5f{word-spacing:13.772390px;}
.ws136{word-spacing:13.915853px;}
.ws17b{word-spacing:13.987584px;}
.ws13b{word-spacing:14.059315px;}
.ws119{word-spacing:14.131046px;}
.ws161{word-spacing:14.274509px;}
.ws135{word-spacing:14.489702px;}
.ws61{word-spacing:14.561434px;}
.ws12e{word-spacing:14.633165px;}
.wsfa{word-spacing:14.662351px;}
.ws131{word-spacing:14.704896px;}
.ws12f{word-spacing:14.798832px;}
.wscd{word-spacing:14.848358px;}
.wsff{word-spacing:14.879024px;}
.wsf5{word-spacing:14.882908px;}
.wsf1{word-spacing:14.884124px;}
.ws163{word-spacing:14.888832px;}
.ws14b{word-spacing:14.991821px;}
.ws169{word-spacing:15.063552px;}
.ws67{word-spacing:15.207014px;}
.ws146{word-spacing:15.464515px;}
.wsb5{word-spacing:15.565670px;}
.ws122{word-spacing:15.709133px;}
.ws1f{word-spacing:15.780864px;}
.ws77{word-spacing:15.996058px;}
.wsd0{word-spacing:16.067789px;}
.ws10d{word-spacing:16.295345px;}
.wsd7{word-spacing:16.298195px;}
.ws17e{word-spacing:16.569907px;}
.ws152{word-spacing:16.641638px;}
.ws15c{word-spacing:17.358950px;}
.ws9{word-spacing:17.430682px;}
.ws159{word-spacing:17.502413px;}
.ws59{word-spacing:17.717606px;}
.ws58{word-spacing:17.789338px;}
.ws157{word-spacing:17.855098px;}
.wsef{word-spacing:17.855395px;}
.ws12b{word-spacing:17.856710px;}
.ws162{word-spacing:17.857181px;}
.ws6{word-spacing:17.861069px;}
.ws180{word-spacing:17.861098px;}
.ws0{word-spacing:17.861395px;}
.ws134{word-spacing:17.930832px;}
.ws130{word-spacing:18.076262px;}
.ws133{word-spacing:18.363187px;}
.ws155{word-spacing:18.721843px;}
.ws3c{word-spacing:18.865306px;}
.wsee{word-spacing:18.937037px;}
.wsb4{word-spacing:19.008768px;}
.ws17d{word-spacing:19.080499px;}
.wsa9{word-spacing:19.439155px;}
.ws6b{word-spacing:19.510886px;}
.wsa7{word-spacing:19.582618px;}
.wsab{word-spacing:19.797811px;}
.wsc6{word-spacing:20.013005px;}
.wsd2{word-spacing:20.228198px;}
.wsc4{word-spacing:20.443392px;}
.ws142{word-spacing:20.730317px;}
.wsa4{word-spacing:20.945510px;}
.ws98{word-spacing:21.088973px;}
.ws9f{word-spacing:21.304166px;}
.ws13c{word-spacing:21.591091px;}
.ws181{word-spacing:21.623030px;}
.ws11e{word-spacing:21.734554px;}
.wsbc{word-spacing:21.870365px;}
.wse9{word-spacing:21.878016px;}
.ws153{word-spacing:21.949747px;}
.ws8a{word-spacing:22.021478px;}
.ws12d{word-spacing:22.157434px;}
.ws143{word-spacing:22.158634px;}
.ws14e{word-spacing:22.159402px;}
.ws13e{word-spacing:22.159565px;}
.ws13d{word-spacing:22.162310px;}
.ws15f{word-spacing:22.163942px;}
.ws10a{word-spacing:22.164941px;}
.ws47{word-spacing:22.308403px;}
.wsc0{word-spacing:22.882253px;}
.ws15d{word-spacing:23.169178px;}
.ws158{word-spacing:23.599565px;}
.wsb1{word-spacing:23.814758px;}
.ws170{word-spacing:23.958221px;}
.wse8{word-spacing:24.029952px;}
.ws137{word-spacing:24.173414px;}
.ws124{word-spacing:24.388608px;}
.ws15e{word-spacing:24.603802px;}
.ws168{word-spacing:24.675533px;}
.ws12a{word-spacing:24.890726px;}
.wsac{word-spacing:25.034189px;}
.ws95{word-spacing:25.249382px;}
.ws69{word-spacing:25.751501px;}
.wsc2{word-spacing:25.823232px;}
.ws13f{word-spacing:25.966694px;}
.ws179{word-spacing:26.148365px;}
.wseb{word-spacing:26.397082px;}
.wsc9{word-spacing:27.329587px;}
.ws166{word-spacing:27.401318px;}
.ws125{word-spacing:27.473050px;}
.ws16d{word-spacing:28.046899px;}
.ws165{word-spacing:28.072944px;}
.wsed{word-spacing:28.477286px;}
.ws13a{word-spacing:29.122867px;}
.ws127{word-spacing:29.338061px;}
.ws140{word-spacing:29.768448px;}
.ws149{word-spacing:30.127104px;}
.ws154{word-spacing:31.561728px;}
.ws17c{word-spacing:31.848653px;}
.ws132{word-spacing:32.494234px;}
.wse7{word-spacing:33.283277px;}
.ws11f{word-spacing:33.713664px;}
.ws2b{word-spacing:34.430976px;}
.ws147{word-spacing:38.232730px;}
.ws6a{word-spacing:38.734848px;}
.ws160{word-spacing:41.460634px;}
.ws182{word-spacing:41.962752px;}
.ws15a{word-spacing:42.393139px;}
.ws138{word-spacing:44.616806px;}
.ws172{word-spacing:46.051430px;}
.ws151{word-spacing:62.047488px;}
.ws100{word-spacing:171.197318px;}
.ws104{word-spacing:252.946534px;}
._29{margin-left:-35.121313px;}
._2a{margin-left:-16.416000px;}
._2b{margin-left:-14.971680px;}
._49{margin-left:-10.185830px;}
._8{margin-left:-8.392550px;}
._5{margin-left:-6.599270px;}
._2{margin-left:-4.662528px;}
._1{margin-left:-3.287658px;}
._7{margin-left:-2.151936px;}
._3{margin-left:-1.075968px;}
._24{width:1.131072px;}
._6{width:2.957984px;}
._27{width:4.824000px;}
._28{width:6.684031px;}
._36{width:14.720956px;}
._38{width:16.354714px;}
._37{width:17.633898px;}
._22{width:19.152230px;}
._68{width:20.156467px;}
._b{width:21.232435px;}
._9{width:22.236672px;}
._39{width:23.240909px;}
._d{width:24.316877px;}
._1c{width:25.321114px;}
._c{width:26.528567px;}
._1f{width:27.604535px;}
._12{width:28.835942px;}
._10{width:29.840179px;}
._15{width:31.203072px;}
._1b{width:32.207309px;}
._4{width:33.355008px;}
._1d{width:34.359245px;}
._21{width:36.582912px;}
._20{width:37.587149px;}
._14{width:38.591386px;}
._11{width:40.468374px;}
._1a{width:41.604096px;}
._17{width:43.397376px;}
._e{width:45.079696px;}
._6b{width:46.377584px;}
._13{width:47.629517px;}
._f{width:49.422797px;}
._47{width:51.000883px;}
._26{width:52.292045px;}
._48{width:53.941862px;}
._16{width:55.089562px;}
._18{width:56.308992px;}
._3a{width:57.313229px;}
._a{width:58.963046px;}
._6c{width:60.756326px;}
._6a{width:62.249520px;}
._67{width:63.553843px;}
._69{width:66.110026px;}
._25{width:68.717232px;}
._5d{width:69.794458px;}
._4b{width:74.301078px;}
._19{width:78.904320px;}
._1e{width:89.201111px;}
._5f{width:94.901104px;}
._63{width:98.123308px;}
._54{width:116.717941px;}
._52{width:125.624520px;}
._64{width:132.290932px;}
._3d{width:135.368537px;}
._3b{width:141.251027px;}
._66{width:147.666415px;}
._43{width:153.178511px;}
._4d{width:173.325434px;}
._4a{width:174.903406px;}
._40{width:180.851741px;}
._50{width:183.248184px;}
._4e{width:186.141218px;}
._45{width:206.770577px;}
._33{width:213.905633px;}
._32{width:227.389280px;}
._61{width:232.693953px;}
._34{width:285.578420px;}
._62{width:287.217635px;}
._60{width:317.274148px;}
._65{width:334.475856px;}
._3c{width:350.632226px;}
._56{width:362.419494px;}
._2d{width:461.208363px;}
._41{width:531.949534px;}
._5e{width:547.454209px;}
._2e{width:554.662280px;}
._30{width:564.145132px;}
._35{width:573.840478px;}
._2c{width:608.859523px;}
._31{width:614.698211px;}
._2f{width:627.382341px;}
._53{width:764.483492px;}
._3e{width:768.244586px;}
._3f{width:808.233401px;}
._42{width:833.699186px;}
._5b{width:835.138280px;}
._55{width:852.831844px;}
._46{width:908.577183px;}
._44{width:933.258010px;}
._0{width:1056.190090px;}
._4f{width:1099.226881px;}
._51{width:1239.699527px;}
._5c{width:1342.274442px;}
._58{width:1365.347824px;}
._5a{width:1662.970550px;}
._57{width:1737.377814px;}
._59{width:2052.767224px;}
._4c{width:2064.339884px;}
._23{width:2381.904000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(13,66,112);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fsb{font-size:41.842800px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fsa{font-size:65.454600px;}
.fs6{font-size:65.880000px;}
.fsc{font-size:70.296576px;}
.fs0{font-size:71.731200px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:107.596800px;}
.fs2{font-size:191.282400px;}
.y98{bottom:-746.116500px;}
.yb5{bottom:-708.226500px;}
.yb4{bottom:-680.506500px;}
.yb3{bottom:-660.976500px;}
.yb2{bottom:-638.476500px;}
.yb1{bottom:-615.976500px;}
.yb0{bottom:-593.476500px;}
.yaf{bottom:-570.976500px;}
.yae{bottom:-548.476500px;}
.yad{bottom:-525.976500px;}
.yac{bottom:-503.476500px;}
.yab{bottom:-480.976500px;}
.yaa{bottom:-458.476500px;}
.ya9{bottom:-435.976500px;}
.ya8{bottom:-412.396500px;}
.ya7{bottom:-379.006500px;}
.ya6{bottom:-335.506500px;}
.ya5{bottom:-310.036500px;}
.ya4{bottom:-284.476500px;}
.ya3{bottom:-259.006500px;}
.ya2{bottom:-233.536500px;}
.ya1{bottom:-207.976500px;}
.y7a{bottom:-207.096000px;}
.ya0{bottom:-182.506500px;}
.y8f{bottom:-139.416000px;}
.y9f{bottom:-139.036500px;}
.y8e{bottom:-113.946000px;}
.y9e{bottom:-113.476500px;}
.y8d{bottom:-88.386000px;}
.y9d{bottom:-88.006500px;}
.y8c{bottom:-62.916000px;}
.y9c{bottom:-62.536500px;}
.y8b{bottom:-37.446000px;}
.y9b{bottom:-36.976500px;}
.y0{bottom:0.000000px;}
.y9a{bottom:6.583500px;}
.y8a{bottom:20.610000px;}
.y84{bottom:22.230000px;}
.y7e{bottom:22.260000px;}
.y81{bottom:24.660000px;}
.y87{bottom:27.090000px;}
.y89{bottom:59.040000px;}
.y83{bottom:72.360000px;}
.y7d{bottom:77.700000px;}
.y6e{bottom:78.169500px;}
.y49{bottom:78.778500px;}
.y23{bottom:79.311000px;}
.y1e4{bottom:85.905000px;}
.yec{bottom:86.022000px;}
.y165{bottom:86.950500px;}
.y1f4{bottom:88.249500px;}
.y1c8{bottom:92.757000px;}
.y6d{bottom:103.954500px;}
.y80{bottom:104.040000px;}
.y48{bottom:104.565000px;}
.y22{bottom:105.097500px;}
.y1e3{bottom:111.691500px;}
.yeb{bottom:111.808500px;}
.yd0{bottom:111.838500px;}
.y164{bottom:112.735500px;}
.y1f3{bottom:114.034500px;}
.y1c7{bottom:118.543500px;}
.y1cb{bottom:119.661000px;}
.y6c{bottom:129.741000px;}
.y47{bottom:130.350000px;}
.y21{bottom:130.882500px;}
.y86{bottom:133.950000px;}
.y94{bottom:135.600000px;}
.y1e2{bottom:137.476500px;}
.yea{bottom:137.593500px;}
.y163{bottom:138.522000px;}
.ycf{bottom:138.601500px;}
.y1f2{bottom:139.821000px;}
.y104{bottom:145.447500px;}
.y144{bottom:147.556500px;}
.y127{bottom:153.183000px;}
.y6b{bottom:155.526000px;}
.y46{bottom:156.136500px;}
.y20{bottom:156.669000px;}
.yce{bottom:160.930500px;}
.y93{bottom:161.385000px;}
.y1c6{bottom:162.261000px;}
.y1e1{bottom:163.263000px;}
.ye9{bottom:163.380000px;}
.y162{bottom:164.307000px;}
.y1f1{bottom:165.606000px;}
.y103{bottom:171.232500px;}
.y143{bottom:173.341500px;}
.y126{bottom:178.969500px;}
.y6a{bottom:181.312500px;}
.y45{bottom:181.921500px;}
.ycd{bottom:182.697000px;}
.y18c{bottom:183.412500px;}
.y92{bottom:187.171500px;}
.y1e0{bottom:189.048000px;}
.ye8{bottom:189.165000px;}
.y161{bottom:190.093500px;}
.y1f0{bottom:191.392500px;}
.y1b8{bottom:192.127500px;}
.y102{bottom:197.019000px;}
.y142{bottom:199.128000px;}
.y18b{bottom:202.618500px;}
.ycc{bottom:204.465000px;}
.y125{bottom:204.754500px;}
.y69{bottom:207.099000px;}
.y44{bottom:207.708000px;}
.y1b7{bottom:211.333500px;}
.y91{bottom:212.956500px;}
.y1df{bottom:214.834500px;}
.ye7{bottom:214.951500px;}
.y160{bottom:215.880000px;}
.y1c5{bottom:217.002000px;}
.y1ef{bottom:217.177500px;}
.y18a{bottom:221.824500px;}
.y101{bottom:222.804000px;}
.y141{bottom:224.914500px;}
.ycb{bottom:226.231500px;}
.y1b6{bottom:230.538000px;}
.y124{bottom:230.541000px;}
.y187{bottom:231.402000px;}
.y1f{bottom:231.678000px;}
.y68{bottom:232.884000px;}
.y43{bottom:233.494500px;}
.y90{bottom:238.743000px;}
.y1c4{bottom:238.768500px;}
.y1b4{bottom:239.049000px;}
.y1de{bottom:240.619500px;}
.ye6{bottom:240.738000px;}
.y189{bottom:241.030500px;}
.y15f{bottom:241.665000px;}
.y1ee{bottom:242.964000px;}
.yca{bottom:247.998000px;}
.y100{bottom:248.590500px;}
.y1b5{bottom:249.744000px;}
.y140{bottom:250.699500px;}
.y186{bottom:252.742500px;}
.y123{bottom:256.326000px;}
.y67{bottom:258.670500px;}
.y1b3{bottom:259.209000px;}
.y42{bottom:259.279500px;}
.y184{bottom:261.696000px;}
.y188{bottom:262.371000px;}
.y1c3{bottom:262.954500px;}
.y77{bottom:265.759500px;}
.y1dd{bottom:266.406000px;}
.ye5{bottom:266.523000px;}
.y15e{bottom:267.451500px;}
.y88{bottom:268.543500px;}
.y1ed{bottom:268.750500px;}
.yc9{bottom:269.764500px;}
.yff{bottom:274.377000px;}
.y1e{bottom:275.397000px;}
.y13f{bottom:276.486000px;}
.y185{bottom:281.575500px;}
.y122{bottom:282.112500px;}
.y183{bottom:283.036500px;}
.y66{bottom:284.455500px;}
.y1c2{bottom:284.721000px;}
.y41{bottom:285.066000px;}
.y1b2{bottom:288.156000px;}
.yc8{bottom:291.531000px;}
.y1dc{bottom:292.192500px;}
.ye4{bottom:292.309500px;}
.y15d{bottom:293.236500px;}
.y1ec{bottom:294.535500px;}
.yfe{bottom:300.162000px;}
.y182{bottom:300.781500px;}
.y13e{bottom:302.271000px;}
.y1b1{bottom:307.362000px;}
.y121{bottom:307.897500px;}
.y1c1{bottom:308.905500px;}
.y65{bottom:310.242000px;}
.y40{bottom:310.851000px;}
.yc7{bottom:313.297500px;}
.y1db{bottom:317.977500px;}
.ye3{bottom:318.094500px;}
.y15c{bottom:319.023000px;}
.y1d{bottom:319.114500px;}
.y1eb{bottom:320.322000px;}
.y181{bottom:322.122000px;}
.yfd{bottom:325.948500px;}
.y1b0{bottom:326.568000px;}
.y13d{bottom:328.057500px;}
.y1c0{bottom:333.091500px;}
.y120{bottom:333.684000px;}
.y99{bottom:334.123500px;}
.yc6{bottom:335.064000px;}
.y64{bottom:336.027000px;}
.y3f{bottom:336.637500px;}
.y180{bottom:343.462500px;}
.y1da{bottom:343.764000px;}
.ye2{bottom:343.881000px;}
.y15b{bottom:344.808000px;}
.y1c{bottom:344.901000px;}
.y1af{bottom:345.774000px;}
.y1ea{bottom:346.107000px;}
.yfc{bottom:351.733500px;}
.y13c{bottom:353.842500px;}
.y1bf{bottom:354.858000px;}
.yc5{bottom:356.830500px;}
.y1ac{bottom:356.836500px;}
.y97{bottom:359.413500px;}
.y11f{bottom:359.470500px;}
.y63{bottom:361.813500px;}
.y17e{bottom:361.993500px;}
.y3e{bottom:362.422500px;}
.y17f{bottom:362.668500px;}
.y1ae{bottom:367.114500px;}
.y1d9{bottom:369.549000px;}
.ye1{bottom:369.666000px;}
.y15a{bottom:370.594500px;}
.y1e9{bottom:371.893500px;}
.y1be{bottom:376.624500px;}
.yfb{bottom:377.520000px;}
.y1ab{bottom:378.177000px;}
.yc4{bottom:378.597000px;}
.y17d{bottom:379.125000px;}
.y13b{bottom:379.629000px;}
.y85{bottom:380.953500px;}
.y96{bottom:385.153500px;}
.y11e{bottom:385.255500px;}
.y1ad{bottom:386.319000px;}
.y62{bottom:387.600000px;}
.y3d{bottom:388.209000px;}
.y1b{bottom:388.620000px;}
.y1d8{bottom:395.335500px;}
.ye0{bottom:395.452500px;}
.y159{bottom:396.381000px;}
.y1e8{bottom:397.678500px;}
.y1bd{bottom:398.391000px;}
.y17c{bottom:401.079000px;}
.yfa{bottom:403.305000px;}
.y13a{bottom:405.415500px;}
.y1aa{bottom:405.525000px;}
.yc3{bottom:409.347000px;}
.y11d{bottom:411.042000px;}
.y61{bottom:413.385000px;}
.y3c{bottom:413.995500px;}
.y1a{bottom:414.405000px;}
.y1bc{bottom:420.157500px;}
.y17b{bottom:420.285000px;}
.y1d7{bottom:421.120500px;}
.y158{bottom:422.166000px;}
.y1e7{bottom:423.465000px;}
.y1a9{bottom:424.731000px;}
.yf9{bottom:429.091500px;}
.y139{bottom:431.200500px;}
.y11c{bottom:436.827000px;}
.y60{bottom:439.171500px;}
.y17a{bottom:439.491000px;}
.y3b{bottom:439.780500px;}
.y1bb{bottom:441.924000px;}
.y1a8{bottom:443.937000px;}
.y19{bottom:446.698500px;}
.y1d6{bottom:446.907000px;}
.yc2{bottom:447.706500px;}
.y157{bottom:447.952500px;}
.y178{bottom:448.420500px;}
.y1e6{bottom:449.251500px;}
.y1a4{bottom:451.323000px;}
.y1a6{bottom:452.448000px;}
.yf8{bottom:454.878000px;}
.y138{bottom:456.987000px;}
.y1ca{bottom:457.104000px;}
.y179{bottom:458.697000px;}
.y1a7{bottom:463.143000px;}
.y5f{bottom:464.956500px;}
.y3a{bottom:465.567000px;}
.y18{bottom:465.976500px;}
.y1a3{bottom:472.663500px;}
.y1ba{bottom:472.674000px;}
.y1d5{bottom:472.693500px;}
.y1e5{bottom:475.036500px;}
.y177{bottom:476.697000px;}
.y11b{bottom:480.546000px;}
.yf7{bottom:480.663000px;}
.y1a5{bottom:482.349000px;}
.y137{bottom:482.772000px;}
.ydf{bottom:482.889000px;}
.yc1{bottom:489.066000px;}
.y5e{bottom:490.743000px;}
.y176{bottom:497.109000px;}
.y17{bottom:498.270000px;}
.y1d4{bottom:498.478500px;}
.y1c9{bottom:500.823000px;}
.y1a2{bottom:501.555000px;}
.y156{bottom:502.693500px;}
.yf6{bottom:506.449500px;}
.y136{bottom:508.558500px;}
.y39{bottom:509.284500px;}
.y1b9{bottom:511.035000px;}
.yc0{bottom:514.852500px;}
.y175{bottom:516.315000px;}
.y5d{bottom:516.528000px;}
.y16{bottom:517.549500px;}
.y1a1{bottom:520.761000px;}
.y155{bottom:523.081500px;}
.y11a{bottom:524.265000px;}
.yde{bottom:526.608000px;}
.y19c{bottom:528.622500px;}
.yf5{bottom:532.234500px;}
.y135{bottom:534.343500px;}
.y174{bottom:535.521000px;}
.y1a0{bottom:539.967000px;}
.ybf{bottom:540.639000px;}
.y5c{bottom:542.314500px;}
.y172{bottom:544.030500px;}
.y154{bottom:546.226500px;}
.y19e{bottom:548.476500px;}
.y15{bottom:549.843000px;}
.y19b{bottom:549.961500px;}
.y119{bottom:550.050000px;}
.ydd{bottom:552.394500px;}
.y173{bottom:554.727000px;}
.yf4{bottom:558.021000px;}
.y19f{bottom:559.171500px;}
.y134{bottom:560.130000px;}
.ybe{bottom:566.424000px;}
.y153{bottom:567.993000px;}
.y5b{bottom:568.101000px;}
.y14{bottom:569.121000px;}
.y171{bottom:571.183500px;}
.y19a{bottom:571.302000px;}
.y118{bottom:575.836500px;}
.ydc{bottom:578.179500px;}
.y19d{bottom:578.377500px;}
.yf3{bottom:583.806000px;}
.y133{bottom:585.916500px;}
.y152{bottom:588.381000px;}
.ybd{bottom:592.210500px;}
.y170{bottom:593.137500px;}
.y5a{bottom:593.886000px;}
.y38{bottom:594.580500px;}
.y199{bottom:597.583500px;}
.y13{bottom:601.414500px;}
.y117{bottom:601.621500px;}
.ydb{bottom:603.966000px;}
.yf2{bottom:609.592500px;}
.y151{bottom:611.526000px;}
.y132{bottom:611.701500px;}
.y16f{bottom:612.343500px;}
.y192{bottom:613.699500px;}
.y198{bottom:616.789500px;}
.ybc{bottom:617.995500px;}
.y59{bottom:619.672500px;}
.y12{bottom:620.692500px;}
.y116{bottom:627.408000px;}
.yda{bottom:629.751000px;}
.y16c{bottom:630.594000px;}
.y16e{bottom:631.549500px;}
.y191{bottom:635.040000px;}
.yf1{bottom:635.379000px;}
.y150{bottom:635.712000px;}
.y197{bottom:635.995500px;}
.y131{bottom:637.488000px;}
.y37{bottom:637.605000px;}
.y82{bottom:643.063500px;}
.ybb{bottom:643.782000px;}
.y58{bottom:645.457500px;}
.y16d{bottom:650.755500px;}
.y16b{bottom:651.933000px;}
.y11{bottom:652.986000px;}
.y115{bottom:653.194500px;}
.y196{bottom:655.201500px;}
.yd9{bottom:655.537500px;}
.y14f{bottom:656.100000px;}
.y190{bottom:656.379000px;}
.yf0{bottom:661.164000px;}
.y130{bottom:663.273000px;}
.y36{bottom:663.390000px;}
.y16a{bottom:667.212000px;}
.y57{bottom:671.244000px;}
.y10{bottom:672.264000px;}
.y194{bottom:675.867000px;}
.y195{bottom:676.542000px;}
.y18f{bottom:677.719500px;}
.y114{bottom:678.979500px;}
.y14e{bottom:679.245000px;}
.yd8{bottom:681.324000px;}
.yef{bottom:686.950500px;}
.y12f{bottom:689.059500px;}
.y35{bottom:689.176500px;}
.yba{bottom:695.236500px;}
.y193{bottom:695.748000px;}
.y56{bottom:697.029000px;}
.y169{bottom:698.149500px;}
.y18e{bottom:699.060000px;}
.y14d{bottom:703.429500px;}
.yf{bottom:704.557500px;}
.y113{bottom:704.766000px;}
.yd7{bottom:707.109000px;}
.yee{bottom:712.735500px;}
.y12e{bottom:714.844500px;}
.y34{bottom:714.963000px;}
.yb9{bottom:721.021500px;}
.y55{bottom:722.815500px;}
.ye{bottom:723.835500px;}
.y18d{bottom:723.936000px;}
.y14c{bottom:727.615500px;}
.y112{bottom:730.551000px;}
.yd6{bottom:732.895500px;}
.y168{bottom:734.718000px;}
.y12d{bottom:740.631000px;}
.y33{bottom:740.748000px;}
.yb8{bottom:746.808000px;}
.y54{bottom:748.602000px;}
.y14b{bottom:749.382000px;}
.yd{bottom:749.622000px;}
.y111{bottom:756.337500px;}
.yed{bottom:756.454500px;}
.yd5{bottom:758.680500px;}
.y167{bottom:760.504500px;}
.y12c{bottom:766.417500px;}
.y32{bottom:766.534500px;}
.y14a{bottom:771.148500px;}
.yb7{bottom:772.594500px;}
.y53{bottom:774.387000px;}
.yc{bottom:775.407000px;}
.y7f{bottom:782.023500px;}
.y110{bottom:782.122500px;}
.yd4{bottom:784.467000px;}
.y149{bottom:791.536500px;}
.y12b{bottom:792.202500px;}
.y31{bottom:792.319500px;}
.yb6{bottom:798.379500px;}
.y52{bottom:800.173500px;}
.y166{bottom:800.572500px;}
.yb{bottom:807.700500px;}
.y10f{bottom:807.909000px;}
.yd3{bottom:810.252000px;}
.y148{bottom:814.681500px;}
.y12a{bottom:817.989000px;}
.y30{bottom:818.106000px;}
.y95{bottom:825.396000px;}
.y76{bottom:825.958500px;}
.y1d3{bottom:833.695500px;}
.y147{bottom:835.071000px;}
.yd2{bottom:836.038500px;}
.y129{bottom:843.774000px;}
.y2f{bottom:843.891000px;}
.ya{bottom:844.911000px;}
.y10e{bottom:851.628000px;}
.y75{bottom:851.745000px;}
.y1d2{bottom:859.480500px;}
.yd1{bottom:861.825000px;}
.y146{bottom:867.198000px;}
.y128{bottom:869.560500px;}
.y2e{bottom:869.677500px;}
.y9{bottom:870.697500px;}
.y7b{bottom:873.144000px;}
.y74{bottom:877.530000px;}
.y1d1{bottom:885.267000px;}
.y51{bottom:887.610000px;}
.y10d{bottom:895.345500px;}
.y2d{bottom:895.464000px;}
.y79{bottom:898.434000px;}
.y73{bottom:903.316500px;}
.y145{bottom:905.559000px;}
.y1d0{bottom:911.052000px;}
.y50{bottom:913.396500px;}
.y8{bottom:914.416500px;}
.y10c{bottom:921.132000px;}
.y2c{bottom:921.249000px;}
.y78{bottom:924.174000px;}
.y72{bottom:929.103000px;}
.y1cf{bottom:936.838500px;}
.y4f{bottom:939.181500px;}
.y7{bottom:946.426500px;}
.y10b{bottom:946.918500px;}
.y2b{bottom:947.035500px;}
.y71{bottom:954.888000px;}
.y1ce{bottom:962.623500px;}
.y4e{bottom:964.968000px;}
.y10a{bottom:972.703500px;}
.y2a{bottom:972.820500px;}
.y6{bottom:978.436500px;}
.y70{bottom:980.674500px;}
.y7c{bottom:984.433500px;}
.y1cd{bottom:988.410000px;}
.y4d{bottom:990.753000px;}
.y109{bottom:998.490000px;}
.y29{bottom:998.607000px;}
.y6f{bottom:1006.459500px;}
.y4c{bottom:1016.539500px;}
.y5{bottom:1019.412000px;}
.y108{bottom:1024.275000px;}
.y28{bottom:1024.392000px;}
.y1cc{bottom:1032.129000px;}
.y4b{bottom:1042.326000px;}
.y107{bottom:1050.061500px;}
.y27{bottom:1050.178500px;}
.y4{bottom:1055.220000px;}
.y4a{bottom:1068.111000px;}
.y106{bottom:1075.846500px;}
.y3{bottom:1078.017000px;}
.y26{bottom:1093.897500px;}
.y2{bottom:1103.802000px;}
.y105{bottom:1119.565500px;}
.y25{bottom:1119.682500px;}
.y1{bottom:1161.126000px;}
.y24{bottom:1175.722500px;}
.h23{height:-642.976500px;}
.h22{height:-620.476500px;}
.h21{height:-597.976500px;}
.h20{height:-575.476500px;}
.h1f{height:-552.976500px;}
.h1e{height:-530.476500px;}
.h1d{height:-507.976500px;}
.h1c{height:-485.476500px;}
.h1b{height:-462.976500px;}
.h1a{height:-440.476500px;}
.h17{height:-417.976500px;}
.h15{height:-394.396500px;}
.h2a{height:28.787846px;}
.h9{height:32.900573px;}
.h24{height:38.158594px;}
.h2b{height:41.125613px;}
.h31{height:41.484266px;}
.h2d{height:45.032765px;}
.h27{height:45.425492px;}
.h34{height:45.949613px;}
.h36{height:46.963613px;}
.h39{height:48.364044px;}
.h5{height:49.207603px;}
.h4{height:49.351066px;}
.he{height:49.781250px;}
.h2{height:49.781453px;}
.h2c{height:50.540765px;}
.h2e{height:50.546765px;}
.h3a{height:50.929152px;}
.h33{height:52.117613px;}
.h29{height:56.648573px;}
.h28{height:56.654573px;}
.h38{height:57.706626px;}
.h35{height:57.961613px;}
.h26{height:58.928573px;}
.h25{height:59.004492px;}
.h7{height:59.215496px;}
.h8{height:59.221496px;}
.h18{height:64.657617px;}
.h32{height:65.371613px;}
.h16{height:66.394687px;}
.h19{height:68.338477px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h6{height:74.672179px;}
.h37{height:80.089613px;}
.h12{height:112.410000px;}
.h3{height:133.706398px;}
.h10{height:138.960000px;}
.hd{height:149.610000px;}
.hf{height:202.410000px;}
.h11{height:262.095000px;}
.h14{height:312.073500px;}
.h13{height:312.220500px;}
.ha{height:871.858500px;}
.h2f{height:892.914000px;}
.h30{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:161.940000px;}
.w9{width:221.400000px;}
.w8{width:225.210000px;}
.w7{width:235.309500px;}
.w6{width:381.274950px;}
.w4{width:503.250000px;}
.w5{width:616.584450px;}
.w2{width:672.548400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.wa{width:1262.835000px;}
.wb{width:1263.000000px;}
.x15{left:-52.135050px;}
.x9{left:-35.444100px;}
.x1a{left:-30.535050px;}
.xa{left:-13.844100px;}
.x16{left:-10.015050px;}
.x0{left:0.000000px;}
.x13{left:6.675900px;}
.x1d{left:8.100000px;}
.x1f{left:54.360000px;}
.x20{left:60.210000px;}
.x1b{left:66.784950px;}
.x1{left:74.409000px;}
.xc{left:75.540000px;}
.x28{left:79.107000px;}
.x29{left:83.590500px;}
.x31{left:85.273500px;}
.x5{left:86.962500px;}
.x21{left:91.530000px;}
.x7{left:95.670000px;}
.x25{left:104.424000px;}
.x8{left:110.183100px;}
.x32{left:112.351500px;}
.xb{left:114.429000px;}
.x2f{left:115.677000px;}
.x6{left:116.929500px;}
.x2e{left:120.361500px;}
.x19{left:125.910000px;}
.x14{left:138.164550px;}
.x17{left:152.014950px;}
.x24{left:164.188500px;}
.xf{left:185.790000px;}
.x2b{left:187.086000px;}
.x22{left:194.142000px;}
.x1c{left:235.009500px;}
.x2c{left:241.086000px;}
.xe{left:246.540000px;}
.x23{left:250.762500px;}
.x26{left:255.622500px;}
.xd{left:276.369000px;}
.x30{left:300.172500px;}
.x10{left:321.240000px;}
.x11{left:342.030000px;}
.x1e{left:460.219500px;}
.x12{left:469.500000px;}
.x18{left:519.439500px;}
.x27{left:547.222500px;}
.x2d{left:553.596000px;}
.x4{left:586.488000px;}
.x2{left:660.640500px;}
.x3{left:695.392500px;}
.x2a{left:826.090500px;}
@media print{
.v1{vertical-align:-49.178667pt;}
.va{vertical-align:-30.437333pt;}
.vd{vertical-align:-28.949333pt;}
.vc{vertical-align:-26.645333pt;}
.vb{vertical-align:-24.666667pt;}
.v3{vertical-align:-23.136000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.896000pt;}
.v8{vertical-align:9.776000pt;}
.v9{vertical-align:11.776000pt;}
.v6{vertical-align:19.285333pt;}
.v5{vertical-align:21.114667pt;}
.v2{vertical-align:23.136000pt;}
.ve{vertical-align:34.634667pt;}
.ls16{letter-spacing:-0.456533pt;}
.ls13{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000065pt;}
.lsf{letter-spacing:0.001657pt;}
.ls8{letter-spacing:0.001843pt;}
.ls20{letter-spacing:0.002133pt;}
.lsb{letter-spacing:0.019520pt;}
.lsd{letter-spacing:0.124480pt;}
.ls7{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1{letter-spacing:2.655733pt;}
.ls2{letter-spacing:2.661067pt;}
.ls31{letter-spacing:13.777067pt;}
.ls27{letter-spacing:13.910400pt;}
.ls34{letter-spacing:13.942400pt;}
.ls2a{letter-spacing:14.113067pt;}
.ls26{letter-spacing:14.241067pt;}
.ls10{letter-spacing:14.544447pt;}
.ls11{letter-spacing:14.731200pt;}
.ls39{letter-spacing:15.025067pt;}
.ls1e{letter-spacing:15.062400pt;}
.ls2c{letter-spacing:15.611733pt;}
.ls1a{letter-spacing:15.937067pt;}
.ls0{letter-spacing:15.942400pt;}
.ls4{letter-spacing:15.943467pt;}
.ls1d{letter-spacing:17.198434pt;}
.ls1f{letter-spacing:17.313067pt;}
.ls17{letter-spacing:17.423733pt;}
.ls18{letter-spacing:17.470532pt;}
.ls32{letter-spacing:18.139733pt;}
.ls3{letter-spacing:18.597067pt;}
.ls25{letter-spacing:18.758400pt;}
.ls3a{letter-spacing:20.091733pt;}
.ls29{letter-spacing:20.465067pt;}
.ls19{letter-spacing:20.658586pt;}
.lse{letter-spacing:20.831733pt;}
.ls2d{letter-spacing:21.867733pt;}
.ls1c{letter-spacing:23.910400pt;}
.ls22{letter-spacing:24.251733pt;}
.ls36{letter-spacing:24.795733pt;}
.ls24{letter-spacing:24.929067pt;}
.ls2b{letter-spacing:24.966400pt;}
.ls37{letter-spacing:26.465067pt;}
.ls33{letter-spacing:26.598400pt;}
.ls35{letter-spacing:27.286400pt;}
.ls23{letter-spacing:28.459733pt;}
.ls28{letter-spacing:30.705067pt;}
.ls38{letter-spacing:31.483733pt;}
.ls21{letter-spacing:32.257067pt;}
.ls30{letter-spacing:36.901398pt;}
.ls2f{letter-spacing:82.657067pt;}
.ls6{letter-spacing:2133.799467pt;}
.ls1b{letter-spacing:3251.719467pt;}
.ws66{word-spacing:-16.320000pt;}
.ws65{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.940267pt;}
.ws6c{word-spacing:-15.872000pt;}
.ws128{word-spacing:-15.621461pt;}
.ws6e{word-spacing:-14.659520pt;}
.ws7b{word-spacing:-14.545467pt;}
.ws71{word-spacing:-13.520000pt;}
.ws101{word-spacing:-13.283467pt;}
.ws70{word-spacing:-13.200000pt;}
.ws4{word-spacing:-10.626800pt;}
.ws6d{word-spacing:-9.360000pt;}
.ws6f{word-spacing:-8.640000pt;}
.ws110{word-spacing:-3.825664pt;}
.wsb8{word-spacing:-3.698142pt;}
.ws5e{word-spacing:-3.634381pt;}
.ws36{word-spacing:-3.570620pt;}
.ws16e{word-spacing:-3.506859pt;}
.wse4{word-spacing:-3.443098pt;}
.ws14f{word-spacing:-3.251814pt;}
.ws117{word-spacing:-3.188053pt;}
.ws171{word-spacing:-3.060531pt;}
.ws60{word-spacing:-2.996770pt;}
.ws9a{word-spacing:-2.942404pt;}
.ws9b{word-spacing:-2.938377pt;}
.ws62{word-spacing:-2.933009pt;}
.wse5{word-spacing:-2.869248pt;}
.ws85{word-spacing:-2.805487pt;}
.ws5c{word-spacing:-2.677965pt;}
.ws14a{word-spacing:-2.550443pt;}
.ws4c{word-spacing:-2.486682pt;}
.wscb{word-spacing:-2.359159pt;}
.ws88{word-spacing:-2.295398pt;}
.wse3{word-spacing:-2.231637pt;}
.ws164{word-spacing:-2.167876pt;}
.wsa0{word-spacing:-2.104115pt;}
.ws1b{word-spacing:-2.040354pt;}
.ws16a{word-spacing:-1.976593pt;}
.wsa8{word-spacing:-1.849071pt;}
.ws45{word-spacing:-1.785310pt;}
.wsb0{word-spacing:-1.721549pt;}
.ws76{word-spacing:-1.667157pt;}
.ws78{word-spacing:-1.657788pt;}
.wscf{word-spacing:-1.601280pt;}
.ws107{word-spacing:-1.594812pt;}
.ws74{word-spacing:-1.594027pt;}
.ws64{word-spacing:-1.530266pt;}
.ws14{word-spacing:-1.466505pt;}
.wsc5{word-spacing:-1.402743pt;}
.ws145{word-spacing:-1.338982pt;}
.ws83{word-spacing:-1.275221pt;}
.ws81{word-spacing:-1.222079pt;}
.ws7f{word-spacing:-1.213570pt;}
.ws86{word-spacing:-1.211460pt;}
.ws87{word-spacing:-1.147699pt;}
.ws5d{word-spacing:-1.083938pt;}
.wsc7{word-spacing:-0.892655pt;}
.ws63{word-spacing:-0.828894pt;}
.wsca{word-spacing:-0.765133pt;}
.wsd4{word-spacing:-0.701372pt;}
.ws53{word-spacing:-0.637611pt;}
.ws54{word-spacing:-0.573850pt;}
.wse0{word-spacing:-0.510089pt;}
.ws15b{word-spacing:-0.382566pt;}
.ws7{word-spacing:-0.318805pt;}
.wsb{word-spacing:-0.255044pt;}
.ws7e{word-spacing:-0.232727pt;}
.ws118{word-spacing:-0.191283pt;}
.wsf9{word-spacing:-0.183402pt;}
.wsfb{word-spacing:-0.159402pt;}
.ws2{word-spacing:-0.063761pt;}
.ws7d{word-spacing:-0.012500pt;}
.ws7a{word-spacing:-0.011091pt;}
.wsda{word-spacing:-0.008841pt;}
.wsf8{word-spacing:-0.005363pt;}
.ws103{word-spacing:-0.005135pt;}
.wsf7{word-spacing:-0.004526pt;}
.wsf0{word-spacing:-0.003895pt;}
.wsd9{word-spacing:-0.003882pt;}
.ws12c{word-spacing:-0.003669pt;}
.wsd6{word-spacing:-0.003508pt;}
.ws106{word-spacing:-0.003385pt;}
.wsd8{word-spacing:-0.003161pt;}
.ws10f{word-spacing:-0.003018pt;}
.ws10b{word-spacing:-0.002546pt;}
.wsfd{word-spacing:-0.002068pt;}
.wsfc{word-spacing:-0.001950pt;}
.wsf6{word-spacing:-0.001807pt;}
.wsf3{word-spacing:-0.001785pt;}
.ws102{word-spacing:-0.001389pt;}
.ws10c{word-spacing:-0.001154pt;}
.wsf4{word-spacing:-0.000793pt;}
.ws105{word-spacing:-0.000185pt;}
.ws3{word-spacing:0.000000pt;}
.ws10e{word-spacing:0.000341pt;}
.wsfe{word-spacing:0.000511pt;}
.wsf2{word-spacing:0.000601pt;}
.ws7c{word-spacing:0.001333pt;}
.ws8e{word-spacing:0.063761pt;}
.ws51{word-spacing:0.127522pt;}
.ws72{word-spacing:0.255044pt;}
.ws10{word-spacing:0.382566pt;}
.wsb9{word-spacing:0.446327pt;}
.ws73{word-spacing:0.510089pt;}
.ws84{word-spacing:0.573850pt;}
.ws11{word-spacing:0.637611pt;}
.wsdd{word-spacing:0.765133pt;}
.ws38{word-spacing:0.828894pt;}
.ws9c{word-spacing:0.892655pt;}
.wsaf{word-spacing:0.956416pt;}
.ws175{word-spacing:1.020177pt;}
.wsbe{word-spacing:1.083938pt;}
.ws82{word-spacing:1.147699pt;}
.ws56{word-spacing:1.211460pt;}
.ws2e{word-spacing:1.275221pt;}
.ws1c{word-spacing:1.338982pt;}
.ws121{word-spacing:1.402743pt;}
.wsb3{word-spacing:1.466505pt;}
.ws4b{word-spacing:1.530266pt;}
.wsbd{word-spacing:1.594027pt;}
.ws40{word-spacing:1.657788pt;}
.wsd{word-spacing:1.721549pt;}
.ws93{word-spacing:1.785310pt;}
.ws3e{word-spacing:1.849071pt;}
.ws30{word-spacing:1.912832pt;}
.ws55{word-spacing:1.976593pt;}
.ws9e{word-spacing:2.040354pt;}
.wsd1{word-spacing:2.095241pt;}
.ws12{word-spacing:2.104115pt;}
.ws19{word-spacing:2.167876pt;}
.ws42{word-spacing:2.231637pt;}
.ws79{word-spacing:2.295398pt;}
.wsa1{word-spacing:2.359159pt;}
.ws8c{word-spacing:2.422921pt;}
.ws50{word-spacing:2.486682pt;}
.ws52{word-spacing:2.550443pt;}
.wsd3{word-spacing:2.614204pt;}
.wsaa{word-spacing:2.677965pt;}
.wsa3{word-spacing:2.730317pt;}
.wsa2{word-spacing:2.741726pt;}
.wsa5{word-spacing:2.805487pt;}
.ws97{word-spacing:2.864751pt;}
.ws99{word-spacing:2.869248pt;}
.ws13{word-spacing:2.933009pt;}
.ws17{word-spacing:2.996770pt;}
.ws8d{word-spacing:3.060531pt;}
.wsb7{word-spacing:3.124292pt;}
.ws112{word-spacing:3.188053pt;}
.wse2{word-spacing:3.251814pt;}
.ws2f{word-spacing:3.315575pt;}
.wsa{word-spacing:3.443098pt;}
.ws4d{word-spacing:3.506859pt;}
.wsbb{word-spacing:3.570620pt;}
.ws14c{word-spacing:3.634381pt;}
.ws89{word-spacing:3.698142pt;}
.ws68{word-spacing:3.761903pt;}
.ws16c{word-spacing:3.820996pt;}
.ws16b{word-spacing:3.821380pt;}
.ws16f{word-spacing:3.821628pt;}
.ws1d{word-spacing:3.822234pt;}
.ws14d{word-spacing:3.825502pt;}
.ws1e{word-spacing:3.825664pt;}
.ws176{word-spacing:3.825835pt;}
.ws148{word-spacing:3.889425pt;}
.ws1a{word-spacing:3.953186pt;}
.ws123{word-spacing:4.080708pt;}
.wsc1{word-spacing:4.144469pt;}
.ws3b{word-spacing:4.208230pt;}
.wse{word-spacing:4.271991pt;}
.ws25{word-spacing:4.335753pt;}
.ws2c{word-spacing:4.399514pt;}
.wsbf{word-spacing:4.441993pt;}
.ws8b{word-spacing:4.463275pt;}
.ws27{word-spacing:4.527036pt;}
.ws4e{word-spacing:4.590797pt;}
.ws41{word-spacing:4.654558pt;}
.ws3f{word-spacing:4.718319pt;}
.ws28{word-spacing:4.782080pt;}
.ws20{word-spacing:4.845841pt;}
.ws44{word-spacing:4.909602pt;}
.ws17f{word-spacing:4.973363pt;}
.wsb2{word-spacing:5.037124pt;}
.ws109{word-spacing:5.100885pt;}
.ws75{word-spacing:5.164646pt;}
.ws29{word-spacing:5.228407pt;}
.ws4f{word-spacing:5.292169pt;}
.wsad{word-spacing:5.355930pt;}
.ws8f{word-spacing:5.419691pt;}
.ws22{word-spacing:5.483452pt;}
.wsf{word-spacing:5.547213pt;}
.ws37{word-spacing:5.610974pt;}
.ws35{word-spacing:5.674735pt;}
.ws115{word-spacing:5.738496pt;}
.wsae{word-spacing:5.802257pt;}
.ws120{word-spacing:5.866018pt;}
.ws113{word-spacing:5.929779pt;}
.ws11c{word-spacing:5.993540pt;}
.wsce{word-spacing:6.184823pt;}
.ws108{word-spacing:6.248585pt;}
.ws129{word-spacing:6.312346pt;}
.ws39{word-spacing:6.376107pt;}
.ws4a{word-spacing:6.439868pt;}
.ws173{word-spacing:6.503629pt;}
.ws94{word-spacing:6.567390pt;}
.ws15{word-spacing:6.631151pt;}
.wsa6{word-spacing:6.822434pt;}
.wscc{word-spacing:6.886195pt;}
.ws92{word-spacing:6.949956pt;}
.ws91{word-spacing:7.013717pt;}
.wsc3{word-spacing:7.077478pt;}
.wsdf{word-spacing:7.205001pt;}
.ws43{word-spacing:7.268762pt;}
.wsc{word-spacing:7.327036pt;}
.ws178{word-spacing:7.365683pt;}
.ws17a{word-spacing:7.396284pt;}
.ws2d{word-spacing:7.460045pt;}
.ws49{word-spacing:7.523806pt;}
.wsea{word-spacing:7.550669pt;}
.ws23{word-spacing:7.587567pt;}
.ws16{word-spacing:7.651328pt;}
.wsd5{word-spacing:7.715089pt;}
.ws11a{word-spacing:7.778850pt;}
.ws90{word-spacing:7.842611pt;}
.ws48{word-spacing:7.906372pt;}
.wsb6{word-spacing:7.970133pt;}
.ws5{word-spacing:7.971133pt;}
.ws18{word-spacing:8.033894pt;}
.wsdc{word-spacing:8.097655pt;}
.ws33{word-spacing:8.225178pt;}
.wse1{word-spacing:8.288939pt;}
.wsc8{word-spacing:8.416461pt;}
.ws139{word-spacing:8.480222pt;}
.ws21{word-spacing:8.543983pt;}
.ws5b{word-spacing:8.607744pt;}
.wse6{word-spacing:8.671505pt;}
.ws156{word-spacing:8.735266pt;}
.wsdb{word-spacing:8.862788pt;}
.ws2a{word-spacing:8.926549pt;}
.ws34{word-spacing:8.990310pt;}
.wsba{word-spacing:9.054071pt;}
.ws144{word-spacing:9.117833pt;}
.ws31{word-spacing:9.372877pt;}
.wsec{word-spacing:9.436638pt;}
.ws24{word-spacing:9.500399pt;}
.ws177{word-spacing:9.564160pt;}
.ws32{word-spacing:9.691682pt;}
.ws11b{word-spacing:9.755443pt;}
.ws3a{word-spacing:9.946726pt;}
.ws96{word-spacing:10.010487pt;}
.wsde{word-spacing:10.074249pt;}
.ws126{word-spacing:10.201771pt;}
.ws9d{word-spacing:10.265532pt;}
.ws3d{word-spacing:10.393054pt;}
.ws5a{word-spacing:10.456815pt;}
.ws174{word-spacing:10.520576pt;}
.ws167{word-spacing:10.648098pt;}
.ws116{word-spacing:10.775620pt;}
.ws57{word-spacing:10.839381pt;}
.ws111{word-spacing:10.966903pt;}
.ws46{word-spacing:11.030665pt;}
.ws8{word-spacing:11.094426pt;}
.ws11d{word-spacing:11.158187pt;}
.ws141{word-spacing:11.221948pt;}
.ws114{word-spacing:11.285709pt;}
.ws26{word-spacing:11.540753pt;}
.ws150{word-spacing:11.795797pt;}
.ws80{word-spacing:12.008254pt;}
.ws5f{word-spacing:12.242125pt;}
.ws136{word-spacing:12.369647pt;}
.ws17b{word-spacing:12.433408pt;}
.ws13b{word-spacing:12.497169pt;}
.ws119{word-spacing:12.560930pt;}
.ws161{word-spacing:12.688452pt;}
.ws135{word-spacing:12.879735pt;}
.ws61{word-spacing:12.943497pt;}
.ws12e{word-spacing:13.007258pt;}
.wsfa{word-spacing:13.033201pt;}
.ws131{word-spacing:13.071019pt;}
.ws12f{word-spacing:13.154517pt;}
.wscd{word-spacing:13.198541pt;}
.wsff{word-spacing:13.225799pt;}
.wsf5{word-spacing:13.229251pt;}
.wsf1{word-spacing:13.230333pt;}
.ws163{word-spacing:13.234517pt;}
.ws14b{word-spacing:13.326063pt;}
.ws169{word-spacing:13.389824pt;}
.ws67{word-spacing:13.517346pt;}
.ws146{word-spacing:13.746236pt;}
.wsb5{word-spacing:13.836151pt;}
.ws122{word-spacing:13.963674pt;}
.ws1f{word-spacing:14.027435pt;}
.ws77{word-spacing:14.218718pt;}
.wsd0{word-spacing:14.282479pt;}
.ws10d{word-spacing:14.484751pt;}
.wsd7{word-spacing:14.487285pt;}
.ws17e{word-spacing:14.728806pt;}
.ws152{word-spacing:14.792567pt;}
.ws15c{word-spacing:15.430178pt;}
.ws9{word-spacing:15.493939pt;}
.ws159{word-spacing:15.557700pt;}
.ws59{word-spacing:15.748983pt;}
.ws58{word-spacing:15.812745pt;}
.ws157{word-spacing:15.871198pt;}
.wsef{word-spacing:15.871462pt;}
.ws12b{word-spacing:15.872631pt;}
.ws162{word-spacing:15.873050pt;}
.ws6{word-spacing:15.876506pt;}
.ws180{word-spacing:15.876531pt;}
.ws0{word-spacing:15.876796pt;}
.ws134{word-spacing:15.938517pt;}
.ws130{word-spacing:16.067789pt;}
.ws133{word-spacing:16.322833pt;}
.ws155{word-spacing:16.641638pt;}
.ws3c{word-spacing:16.769161pt;}
.wsee{word-spacing:16.832922pt;}
.wsb4{word-spacing:16.896683pt;}
.ws17d{word-spacing:16.960444pt;}
.wsa9{word-spacing:17.279249pt;}
.ws6b{word-spacing:17.343010pt;}
.wsa7{word-spacing:17.406771pt;}
.wsab{word-spacing:17.598054pt;}
.wsc6{word-spacing:17.789338pt;}
.wsd2{word-spacing:17.980621pt;}
.wsc4{word-spacing:18.171904pt;}
.ws142{word-spacing:18.426948pt;}
.wsa4{word-spacing:18.618231pt;}
.ws98{word-spacing:18.745754pt;}
.ws9f{word-spacing:18.937037pt;}
.ws13c{word-spacing:19.192081pt;}
.ws181{word-spacing:19.220471pt;}
.ws11e{word-spacing:19.319603pt;}
.wsbc{word-spacing:19.440324pt;}
.wse9{word-spacing:19.447125pt;}
.ws153{word-spacing:19.510886pt;}
.ws8a{word-spacing:19.574647pt;}
.ws12d{word-spacing:19.695497pt;}
.ws143{word-spacing:19.696563pt;}
.ws14e{word-spacing:19.697246pt;}
.ws13e{word-spacing:19.697391pt;}
.ws13d{word-spacing:19.699831pt;}
.ws15f{word-spacing:19.701282pt;}
.ws10a{word-spacing:19.702170pt;}
.ws47{word-spacing:19.829692pt;}
.wsc0{word-spacing:20.339780pt;}
.ws15d{word-spacing:20.594825pt;}
.ws158{word-spacing:20.977391pt;}
.wsb1{word-spacing:21.168674pt;}
.ws170{word-spacing:21.296196pt;}
.wse8{word-spacing:21.359957pt;}
.ws137{word-spacing:21.487479pt;}
.ws124{word-spacing:21.678763pt;}
.ws15e{word-spacing:21.870046pt;}
.ws168{word-spacing:21.933807pt;}
.ws12a{word-spacing:22.125090pt;}
.wsac{word-spacing:22.252612pt;}
.ws95{word-spacing:22.443895pt;}
.ws69{word-spacing:22.890223pt;}
.wsc2{word-spacing:22.953984pt;}
.ws13f{word-spacing:23.081506pt;}
.ws179{word-spacing:23.242991pt;}
.wseb{word-spacing:23.464073pt;}
.wsc9{word-spacing:24.292966pt;}
.ws166{word-spacing:24.356727pt;}
.ws125{word-spacing:24.420489pt;}
.ws16d{word-spacing:24.930577pt;}
.ws165{word-spacing:24.953728pt;}
.wsed{word-spacing:25.313143pt;}
.ws13a{word-spacing:25.886993pt;}
.ws127{word-spacing:26.078276pt;}
.ws140{word-spacing:26.460843pt;}
.ws149{word-spacing:26.779648pt;}
.ws154{word-spacing:28.054869pt;}
.ws17c{word-spacing:28.309914pt;}
.ws132{word-spacing:28.883763pt;}
.wse7{word-spacing:29.585135pt;}
.ws11f{word-spacing:29.967701pt;}
.ws2b{word-spacing:30.605312pt;}
.ws147{word-spacing:33.984649pt;}
.ws6a{word-spacing:34.430976pt;}
.ws160{word-spacing:36.853897pt;}
.ws182{word-spacing:37.300224pt;}
.ws15a{word-spacing:37.682790pt;}
.ws138{word-spacing:39.659383pt;}
.ws172{word-spacing:40.934605pt;}
.ws151{word-spacing:55.153323pt;}
.ws100{word-spacing:152.175394pt;}
.ws104{word-spacing:224.841363pt;}
._29{margin-left:-31.218945pt;}
._2a{margin-left:-14.592000pt;}
._2b{margin-left:-13.308160pt;}
._49{margin-left:-9.054071pt;}
._8{margin-left:-7.460045pt;}
._5{margin-left:-5.866018pt;}
._2{margin-left:-4.144469pt;}
._1{margin-left:-2.922363pt;}
._7{margin-left:-1.912832pt;}
._3{margin-left:-0.956416pt;}
._24{width:1.005397pt;}
._6{width:2.629319pt;}
._27{width:4.288000pt;}
._28{width:5.941361pt;}
._36{width:13.085294pt;}
._38{width:14.537523pt;}
._37{width:15.674576pt;}
._22{width:17.024205pt;}
._68{width:17.916860pt;}
._b{width:18.873276pt;}
._9{width:19.765931pt;}
._39{width:20.658586pt;}
._d{width:21.615002pt;}
._1c{width:22.507657pt;}
._c{width:23.580948pt;}
._1f{width:24.537364pt;}
._12{width:25.631949pt;}
._10{width:26.524604pt;}
._15{width:27.736064pt;}
._1b{width:28.628719pt;}
._4{width:29.648896pt;}
._1d{width:30.541551pt;}
._21{width:32.518144pt;}
._20{width:33.410799pt;}
._14{width:34.303454pt;}
._11{width:35.971888pt;}
._1a{width:36.981419pt;}
._17{width:38.575445pt;}
._e{width:40.070841pt;}
._6b{width:41.224519pt;}
._13{width:42.337348pt;}
._f{width:43.931375pt;}
._47{width:45.334118pt;}
._26{width:46.481818pt;}
._48{width:47.948322pt;}
._16{width:48.968499pt;}
._18{width:50.052437pt;}
._3a{width:50.945092pt;}
._a{width:52.411597pt;}
._6c{width:54.005623pt;}
._6a{width:55.332907pt;}
._67{width:56.492305pt;}
._69{width:58.764467pt;}
._25{width:61.081984pt;}
._5d{width:62.039518pt;}
._4b{width:66.045403pt;}
._19{width:70.137173pt;}
._1e{width:79.289876pt;}
._5f{width:84.356537pt;}
._63{width:87.220718pt;}
._54{width:103.749281pt;}
._52{width:111.666240pt;}
._64{width:117.591940pt;}
._3d{width:120.327588pt;}
._3b{width:125.556468pt;}
._66{width:131.259036pt;}
._43{width:136.158677pt;}
._4d{width:154.067053pt;}
._4a{width:155.469694pt;}
._40{width:160.757103pt;}
._50{width:162.887275pt;}
._4e{width:165.458861pt;}
._45{width:183.796069pt;}
._33{width:190.138340pt;}
._32{width:202.123805pt;}
._61{width:206.839069pt;}
._34{width:253.847484pt;}
._62{width:255.304564pt;}
._60{width:282.021465pt;}
._65{width:297.311872pt;}
._3c{width:311.673090pt;}
._56{width:322.150661pt;}
._2d{width:409.962989pt;}
._41{width:472.844030pt;}
._5e{width:486.625963pt;}
._2e{width:493.033138pt;}
._30{width:501.462339pt;}
._35{width:510.080425pt;}
._2c{width:541.208465pt;}
._31{width:546.398410pt;}
._2f{width:557.673192pt;}
._53{width:679.540882pt;}
._3e{width:682.884077pt;}
._3f{width:718.429690pt;}
._42{width:741.065943pt;}
._5b{width:742.345138pt;}
._55{width:758.072750pt;}
._46{width:807.624163pt;}
._44{width:829.562676pt;}
._0{width:938.835635pt;}
._4f{width:977.090561pt;}
._51{width:1101.955135pt;}
._5c{width:1193.132837pt;}
._58{width:1213.642510pt;}
._5a{width:1478.196045pt;}
._57{width:1544.335835pt;}
._59{width:1824.681977pt;}
._4c{width:1834.968786pt;}
._23{width:2117.248000pt;}
.fs8{font-size:34.560000pt;}
.fsb{font-size:37.193600pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fsa{font-size:58.181867pt;}
.fs6{font-size:58.560000pt;}
.fsc{font-size:62.485845pt;}
.fs0{font-size:63.761067pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:95.641600pt;}
.fs2{font-size:170.028800pt;}
.y98{bottom:-663.214667pt;}
.yb5{bottom:-629.534667pt;}
.yb4{bottom:-604.894667pt;}
.yb3{bottom:-587.534667pt;}
.yb2{bottom:-567.534667pt;}
.yb1{bottom:-547.534667pt;}
.yb0{bottom:-527.534667pt;}
.yaf{bottom:-507.534667pt;}
.yae{bottom:-487.534667pt;}
.yad{bottom:-467.534667pt;}
.yac{bottom:-447.534667pt;}
.yab{bottom:-427.534667pt;}
.yaa{bottom:-407.534667pt;}
.ya9{bottom:-387.534667pt;}
.ya8{bottom:-366.574667pt;}
.ya7{bottom:-336.894667pt;}
.ya6{bottom:-298.228000pt;}
.ya5{bottom:-275.588000pt;}
.ya4{bottom:-252.868000pt;}
.ya3{bottom:-230.228000pt;}
.ya2{bottom:-207.588000pt;}
.ya1{bottom:-184.868000pt;}
.y7a{bottom:-184.085333pt;}
.ya0{bottom:-162.228000pt;}
.y8f{bottom:-123.925333pt;}
.y9f{bottom:-123.588000pt;}
.y8e{bottom:-101.285333pt;}
.y9e{bottom:-100.868000pt;}
.y8d{bottom:-78.565333pt;}
.y9d{bottom:-78.228000pt;}
.y8c{bottom:-55.925333pt;}
.y9c{bottom:-55.588000pt;}
.y8b{bottom:-33.285333pt;}
.y9b{bottom:-32.868000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:5.852000pt;}
.y8a{bottom:18.320000pt;}
.y84{bottom:19.760000pt;}
.y7e{bottom:19.786667pt;}
.y81{bottom:21.920000pt;}
.y87{bottom:24.080000pt;}
.y89{bottom:52.480000pt;}
.y83{bottom:64.320000pt;}
.y7d{bottom:69.066667pt;}
.y6e{bottom:69.484000pt;}
.y49{bottom:70.025333pt;}
.y23{bottom:70.498667pt;}
.y1e4{bottom:76.360000pt;}
.yec{bottom:76.464000pt;}
.y165{bottom:77.289333pt;}
.y1f4{bottom:78.444000pt;}
.y1c8{bottom:82.450667pt;}
.y6d{bottom:92.404000pt;}
.y80{bottom:92.480000pt;}
.y48{bottom:92.946667pt;}
.y22{bottom:93.420000pt;}
.y1e3{bottom:99.281333pt;}
.yeb{bottom:99.385333pt;}
.yd0{bottom:99.412000pt;}
.y164{bottom:100.209333pt;}
.y1f3{bottom:101.364000pt;}
.y1c7{bottom:105.372000pt;}
.y1cb{bottom:106.365333pt;}
.y6c{bottom:115.325333pt;}
.y47{bottom:115.866667pt;}
.y21{bottom:116.340000pt;}
.y86{bottom:119.066667pt;}
.y94{bottom:120.533333pt;}
.y1e2{bottom:122.201333pt;}
.yea{bottom:122.305333pt;}
.y163{bottom:123.130667pt;}
.ycf{bottom:123.201333pt;}
.y1f2{bottom:124.285333pt;}
.y104{bottom:129.286667pt;}
.y144{bottom:131.161333pt;}
.y127{bottom:136.162667pt;}
.y6b{bottom:138.245333pt;}
.y46{bottom:138.788000pt;}
.y20{bottom:139.261333pt;}
.yce{bottom:143.049333pt;}
.y93{bottom:143.453333pt;}
.y1c6{bottom:144.232000pt;}
.y1e1{bottom:145.122667pt;}
.ye9{bottom:145.226667pt;}
.y162{bottom:146.050667pt;}
.y1f1{bottom:147.205333pt;}
.y103{bottom:152.206667pt;}
.y143{bottom:154.081333pt;}
.y126{bottom:159.084000pt;}
.y6a{bottom:161.166667pt;}
.y45{bottom:161.708000pt;}
.ycd{bottom:162.397333pt;}
.y18c{bottom:163.033333pt;}
.y92{bottom:166.374667pt;}
.y1e0{bottom:168.042667pt;}
.ye8{bottom:168.146667pt;}
.y161{bottom:168.972000pt;}
.y1f0{bottom:170.126667pt;}
.y1b8{bottom:170.780000pt;}
.y102{bottom:175.128000pt;}
.y142{bottom:177.002667pt;}
.y18b{bottom:180.105333pt;}
.ycc{bottom:181.746667pt;}
.y125{bottom:182.004000pt;}
.y69{bottom:184.088000pt;}
.y44{bottom:184.629333pt;}
.y1b7{bottom:187.852000pt;}
.y91{bottom:189.294667pt;}
.y1df{bottom:190.964000pt;}
.ye7{bottom:191.068000pt;}
.y160{bottom:191.893333pt;}
.y1c5{bottom:192.890667pt;}
.y1ef{bottom:193.046667pt;}
.y18a{bottom:197.177333pt;}
.y101{bottom:198.048000pt;}
.y141{bottom:199.924000pt;}
.ycb{bottom:201.094667pt;}
.y1b6{bottom:204.922667pt;}
.y124{bottom:204.925333pt;}
.y187{bottom:205.690667pt;}
.y1f{bottom:205.936000pt;}
.y68{bottom:207.008000pt;}
.y43{bottom:207.550667pt;}
.y90{bottom:212.216000pt;}
.y1c4{bottom:212.238667pt;}
.y1b4{bottom:212.488000pt;}
.y1de{bottom:213.884000pt;}
.ye6{bottom:213.989333pt;}
.y189{bottom:214.249333pt;}
.y15f{bottom:214.813333pt;}
.y1ee{bottom:215.968000pt;}
.yca{bottom:220.442667pt;}
.y100{bottom:220.969333pt;}
.y1b5{bottom:221.994667pt;}
.y140{bottom:222.844000pt;}
.y186{bottom:224.660000pt;}
.y123{bottom:227.845333pt;}
.y67{bottom:229.929333pt;}
.y1b3{bottom:230.408000pt;}
.y42{bottom:230.470667pt;}
.y184{bottom:232.618667pt;}
.y188{bottom:233.218667pt;}
.y1c3{bottom:233.737333pt;}
.y77{bottom:236.230667pt;}
.y1dd{bottom:236.805333pt;}
.ye5{bottom:236.909333pt;}
.y15e{bottom:237.734667pt;}
.y88{bottom:238.705333pt;}
.y1ed{bottom:238.889333pt;}
.yc9{bottom:239.790667pt;}
.yff{bottom:243.890667pt;}
.y1e{bottom:244.797333pt;}
.y13f{bottom:245.765333pt;}
.y185{bottom:250.289333pt;}
.y122{bottom:250.766667pt;}
.y183{bottom:251.588000pt;}
.y66{bottom:252.849333pt;}
.y1c2{bottom:253.085333pt;}
.y41{bottom:253.392000pt;}
.y1b2{bottom:256.138667pt;}
.yc8{bottom:259.138667pt;}
.y1dc{bottom:259.726667pt;}
.ye4{bottom:259.830667pt;}
.y15d{bottom:260.654667pt;}
.y1ec{bottom:261.809333pt;}
.yfe{bottom:266.810667pt;}
.y182{bottom:267.361333pt;}
.y13e{bottom:268.685333pt;}
.y1b1{bottom:273.210667pt;}
.y121{bottom:273.686667pt;}
.y1c1{bottom:274.582667pt;}
.y65{bottom:275.770667pt;}
.y40{bottom:276.312000pt;}
.yc7{bottom:278.486667pt;}
.y1db{bottom:282.646667pt;}
.ye3{bottom:282.750667pt;}
.y15c{bottom:283.576000pt;}
.y1d{bottom:283.657333pt;}
.y1eb{bottom:284.730667pt;}
.y181{bottom:286.330667pt;}
.yfd{bottom:289.732000pt;}
.y1b0{bottom:290.282667pt;}
.y13d{bottom:291.606667pt;}
.y1c0{bottom:296.081333pt;}
.y120{bottom:296.608000pt;}
.y99{bottom:296.998667pt;}
.yc6{bottom:297.834667pt;}
.y64{bottom:298.690667pt;}
.y3f{bottom:299.233333pt;}
.y180{bottom:305.300000pt;}
.y1da{bottom:305.568000pt;}
.ye2{bottom:305.672000pt;}
.y15b{bottom:306.496000pt;}
.y1c{bottom:306.578667pt;}
.y1af{bottom:307.354667pt;}
.y1ea{bottom:307.650667pt;}
.yfc{bottom:312.652000pt;}
.y13c{bottom:314.526667pt;}
.y1bf{bottom:315.429333pt;}
.yc5{bottom:317.182667pt;}
.y1ac{bottom:317.188000pt;}
.y97{bottom:319.478667pt;}
.y11f{bottom:319.529333pt;}
.y63{bottom:321.612000pt;}
.y17e{bottom:321.772000pt;}
.y3e{bottom:322.153333pt;}
.y17f{bottom:322.372000pt;}
.y1ae{bottom:326.324000pt;}
.y1d9{bottom:328.488000pt;}
.ye1{bottom:328.592000pt;}
.y15a{bottom:329.417333pt;}
.y1e9{bottom:330.572000pt;}
.y1be{bottom:334.777333pt;}
.yfb{bottom:335.573333pt;}
.y1ab{bottom:336.157333pt;}
.yc4{bottom:336.530667pt;}
.y17d{bottom:337.000000pt;}
.y13b{bottom:337.448000pt;}
.y85{bottom:338.625333pt;}
.y96{bottom:342.358667pt;}
.y11e{bottom:342.449333pt;}
.y1ad{bottom:343.394667pt;}
.y62{bottom:344.533333pt;}
.y3d{bottom:345.074667pt;}
.y1b{bottom:345.440000pt;}
.y1d8{bottom:351.409333pt;}
.ye0{bottom:351.513333pt;}
.y159{bottom:352.338667pt;}
.y1e8{bottom:353.492000pt;}
.y1bd{bottom:354.125333pt;}
.y17c{bottom:356.514667pt;}
.yfa{bottom:358.493333pt;}
.y13a{bottom:360.369333pt;}
.y1aa{bottom:360.466667pt;}
.yc3{bottom:363.864000pt;}
.y11d{bottom:365.370667pt;}
.y61{bottom:367.453333pt;}
.y3c{bottom:367.996000pt;}
.y1a{bottom:368.360000pt;}
.y1bc{bottom:373.473333pt;}
.y17b{bottom:373.586667pt;}
.y1d7{bottom:374.329333pt;}
.y158{bottom:375.258667pt;}
.y1e7{bottom:376.413333pt;}
.y1a9{bottom:377.538667pt;}
.yf9{bottom:381.414667pt;}
.y139{bottom:383.289333pt;}
.y11c{bottom:388.290667pt;}
.y60{bottom:390.374667pt;}
.y17a{bottom:390.658667pt;}
.y3b{bottom:390.916000pt;}
.y1bb{bottom:392.821333pt;}
.y1a8{bottom:394.610667pt;}
.y19{bottom:397.065333pt;}
.y1d6{bottom:397.250667pt;}
.yc2{bottom:397.961333pt;}
.y157{bottom:398.180000pt;}
.y178{bottom:398.596000pt;}
.y1e6{bottom:399.334667pt;}
.y1a4{bottom:401.176000pt;}
.y1a6{bottom:402.176000pt;}
.yf8{bottom:404.336000pt;}
.y138{bottom:406.210667pt;}
.y1ca{bottom:406.314667pt;}
.y179{bottom:407.730667pt;}
.y1a7{bottom:411.682667pt;}
.y5f{bottom:413.294667pt;}
.y3a{bottom:413.837333pt;}
.y18{bottom:414.201333pt;}
.y1a3{bottom:420.145333pt;}
.y1ba{bottom:420.154667pt;}
.y1d5{bottom:420.172000pt;}
.y1e5{bottom:422.254667pt;}
.y177{bottom:423.730667pt;}
.y11b{bottom:427.152000pt;}
.yf7{bottom:427.256000pt;}
.y1a5{bottom:428.754667pt;}
.y137{bottom:429.130667pt;}
.ydf{bottom:429.234667pt;}
.yc1{bottom:434.725333pt;}
.y5e{bottom:436.216000pt;}
.y176{bottom:441.874667pt;}
.y17{bottom:442.906667pt;}
.y1d4{bottom:443.092000pt;}
.y1c9{bottom:445.176000pt;}
.y1a2{bottom:445.826667pt;}
.y156{bottom:446.838667pt;}
.yf6{bottom:450.177333pt;}
.y136{bottom:452.052000pt;}
.y39{bottom:452.697333pt;}
.y1b9{bottom:454.253333pt;}
.yc0{bottom:457.646667pt;}
.y175{bottom:458.946667pt;}
.y5d{bottom:459.136000pt;}
.y16{bottom:460.044000pt;}
.y1a1{bottom:462.898667pt;}
.y155{bottom:464.961333pt;}
.y11a{bottom:466.013333pt;}
.yde{bottom:468.096000pt;}
.y19c{bottom:469.886667pt;}
.yf5{bottom:473.097333pt;}
.y135{bottom:474.972000pt;}
.y174{bottom:476.018667pt;}
.y1a0{bottom:479.970667pt;}
.ybf{bottom:480.568000pt;}
.y5c{bottom:482.057333pt;}
.y172{bottom:483.582667pt;}
.y154{bottom:485.534667pt;}
.y19e{bottom:487.534667pt;}
.y15{bottom:488.749333pt;}
.y19b{bottom:488.854667pt;}
.y119{bottom:488.933333pt;}
.ydd{bottom:491.017333pt;}
.y173{bottom:493.090667pt;}
.yf4{bottom:496.018667pt;}
.y19f{bottom:497.041333pt;}
.y134{bottom:497.893333pt;}
.ybe{bottom:503.488000pt;}
.y153{bottom:504.882667pt;}
.y5b{bottom:504.978667pt;}
.y14{bottom:505.885333pt;}
.y171{bottom:507.718667pt;}
.y19a{bottom:507.824000pt;}
.y118{bottom:511.854667pt;}
.ydc{bottom:513.937333pt;}
.y19d{bottom:514.113333pt;}
.yf3{bottom:518.938667pt;}
.y133{bottom:520.814667pt;}
.y152{bottom:523.005333pt;}
.ybd{bottom:526.409333pt;}
.y170{bottom:527.233333pt;}
.y5a{bottom:527.898667pt;}
.y38{bottom:528.516000pt;}
.y199{bottom:531.185333pt;}
.y13{bottom:534.590667pt;}
.y117{bottom:534.774667pt;}
.ydb{bottom:536.858667pt;}
.yf2{bottom:541.860000pt;}
.y151{bottom:543.578667pt;}
.y132{bottom:543.734667pt;}
.y16f{bottom:544.305333pt;}
.y192{bottom:545.510667pt;}
.y198{bottom:548.257333pt;}
.ybc{bottom:549.329333pt;}
.y59{bottom:550.820000pt;}
.y12{bottom:551.726667pt;}
.y116{bottom:557.696000pt;}
.yda{bottom:559.778667pt;}
.y16c{bottom:560.528000pt;}
.y16e{bottom:561.377333pt;}
.y191{bottom:564.480000pt;}
.yf1{bottom:564.781333pt;}
.y150{bottom:565.077333pt;}
.y197{bottom:565.329333pt;}
.y131{bottom:566.656000pt;}
.y37{bottom:566.760000pt;}
.y82{bottom:571.612000pt;}
.ybb{bottom:572.250667pt;}
.y58{bottom:573.740000pt;}
.y16d{bottom:578.449333pt;}
.y16b{bottom:579.496000pt;}
.y11{bottom:580.432000pt;}
.y115{bottom:580.617333pt;}
.y196{bottom:582.401333pt;}
.yd9{bottom:582.700000pt;}
.y14f{bottom:583.200000pt;}
.y190{bottom:583.448000pt;}
.yf0{bottom:587.701333pt;}
.y130{bottom:589.576000pt;}
.y36{bottom:589.680000pt;}
.y16a{bottom:593.077333pt;}
.y57{bottom:596.661333pt;}
.y10{bottom:597.568000pt;}
.y194{bottom:600.770667pt;}
.y195{bottom:601.370667pt;}
.y18f{bottom:602.417333pt;}
.y114{bottom:603.537333pt;}
.y14e{bottom:603.773333pt;}
.yd8{bottom:605.621333pt;}
.yef{bottom:610.622667pt;}
.y12f{bottom:612.497333pt;}
.y35{bottom:612.601333pt;}
.yba{bottom:617.988000pt;}
.y193{bottom:618.442667pt;}
.y56{bottom:619.581333pt;}
.y169{bottom:620.577333pt;}
.y18e{bottom:621.386667pt;}
.y14d{bottom:625.270667pt;}
.yf{bottom:626.273333pt;}
.y113{bottom:626.458667pt;}
.yd7{bottom:628.541333pt;}
.yee{bottom:633.542667pt;}
.y12e{bottom:635.417333pt;}
.y34{bottom:635.522667pt;}
.yb9{bottom:640.908000pt;}
.y55{bottom:642.502667pt;}
.ye{bottom:643.409333pt;}
.y18d{bottom:643.498667pt;}
.y14c{bottom:646.769333pt;}
.y112{bottom:649.378667pt;}
.yd6{bottom:651.462667pt;}
.y168{bottom:653.082667pt;}
.y12d{bottom:658.338667pt;}
.y33{bottom:658.442667pt;}
.yb8{bottom:663.829333pt;}
.y54{bottom:665.424000pt;}
.y14b{bottom:666.117333pt;}
.yd{bottom:666.330667pt;}
.y111{bottom:672.300000pt;}
.yed{bottom:672.404000pt;}
.yd5{bottom:674.382667pt;}
.y167{bottom:676.004000pt;}
.y12c{bottom:681.260000pt;}
.y32{bottom:681.364000pt;}
.y14a{bottom:685.465333pt;}
.yb7{bottom:686.750667pt;}
.y53{bottom:688.344000pt;}
.yc{bottom:689.250667pt;}
.y7f{bottom:695.132000pt;}
.y110{bottom:695.220000pt;}
.yd4{bottom:697.304000pt;}
.y149{bottom:703.588000pt;}
.y12b{bottom:704.180000pt;}
.y31{bottom:704.284000pt;}
.yb6{bottom:709.670667pt;}
.y52{bottom:711.265333pt;}
.y166{bottom:711.620000pt;}
.yb{bottom:717.956000pt;}
.y10f{bottom:718.141333pt;}
.yd3{bottom:720.224000pt;}
.y148{bottom:724.161333pt;}
.y12a{bottom:727.101333pt;}
.y30{bottom:727.205333pt;}
.y95{bottom:733.685333pt;}
.y76{bottom:734.185333pt;}
.y1d3{bottom:741.062667pt;}
.y147{bottom:742.285333pt;}
.yd2{bottom:743.145333pt;}
.y129{bottom:750.021333pt;}
.y2f{bottom:750.125333pt;}
.ya{bottom:751.032000pt;}
.y10e{bottom:757.002667pt;}
.y75{bottom:757.106667pt;}
.y1d2{bottom:763.982667pt;}
.yd1{bottom:766.066667pt;}
.y146{bottom:770.842667pt;}
.y128{bottom:772.942667pt;}
.y2e{bottom:773.046667pt;}
.y9{bottom:773.953333pt;}
.y7b{bottom:776.128000pt;}
.y74{bottom:780.026667pt;}
.y1d1{bottom:786.904000pt;}
.y51{bottom:788.986667pt;}
.y10d{bottom:795.862667pt;}
.y2d{bottom:795.968000pt;}
.y79{bottom:798.608000pt;}
.y73{bottom:802.948000pt;}
.y145{bottom:804.941333pt;}
.y1d0{bottom:809.824000pt;}
.y50{bottom:811.908000pt;}
.y8{bottom:812.814667pt;}
.y10c{bottom:818.784000pt;}
.y2c{bottom:818.888000pt;}
.y78{bottom:821.488000pt;}
.y72{bottom:825.869333pt;}
.y1cf{bottom:832.745333pt;}
.y4f{bottom:834.828000pt;}
.y7{bottom:841.268000pt;}
.y10b{bottom:841.705333pt;}
.y2b{bottom:841.809333pt;}
.y71{bottom:848.789333pt;}
.y1ce{bottom:855.665333pt;}
.y4e{bottom:857.749333pt;}
.y10a{bottom:864.625333pt;}
.y2a{bottom:864.729333pt;}
.y6{bottom:869.721333pt;}
.y70{bottom:871.710667pt;}
.y7c{bottom:875.052000pt;}
.y1cd{bottom:878.586667pt;}
.y4d{bottom:880.669333pt;}
.y109{bottom:887.546667pt;}
.y29{bottom:887.650667pt;}
.y6f{bottom:894.630667pt;}
.y4c{bottom:903.590667pt;}
.y5{bottom:906.144000pt;}
.y108{bottom:910.466667pt;}
.y28{bottom:910.570667pt;}
.y1cc{bottom:917.448000pt;}
.y4b{bottom:926.512000pt;}
.y107{bottom:933.388000pt;}
.y27{bottom:933.492000pt;}
.y4{bottom:937.973333pt;}
.y4a{bottom:949.432000pt;}
.y106{bottom:956.308000pt;}
.y3{bottom:958.237333pt;}
.y26{bottom:972.353333pt;}
.y2{bottom:981.157333pt;}
.y105{bottom:995.169333pt;}
.y25{bottom:995.273333pt;}
.y1{bottom:1032.112000pt;}
.y24{bottom:1045.086667pt;}
.h23{height:-571.534667pt;}
.h22{height:-551.534667pt;}
.h21{height:-531.534667pt;}
.h20{height:-511.534667pt;}
.h1f{height:-491.534667pt;}
.h1e{height:-471.534667pt;}
.h1d{height:-451.534667pt;}
.h1c{height:-431.534667pt;}
.h1b{height:-411.534667pt;}
.h1a{height:-391.534667pt;}
.h17{height:-371.534667pt;}
.h15{height:-350.574667pt;}
.h2a{height:25.589197pt;}
.h9{height:29.244954pt;}
.h24{height:33.918750pt;}
.h2b{height:36.556100pt;}
.h31{height:36.874903pt;}
.h2d{height:40.029124pt;}
.h27{height:40.378215pt;}
.h34{height:40.844100pt;}
.h36{height:41.745434pt;}
.h39{height:42.990262pt;}
.h5{height:43.740092pt;}
.h4{height:43.867614pt;}
.he{height:44.250000pt;}
.h2{height:44.250180pt;}
.h2c{height:44.925124pt;}
.h2e{height:44.930458pt;}
.h3a{height:45.270357pt;}
.h33{height:46.326767pt;}
.h29{height:50.354287pt;}
.h28{height:50.359620pt;}
.h38{height:51.294779pt;}
.h35{height:51.521434pt;}
.h26{height:52.380954pt;}
.h25{height:52.448437pt;}
.h7{height:52.635997pt;}
.h8{height:52.641330pt;}
.h18{height:57.473437pt;}
.h32{height:58.108100pt;}
.h16{height:59.017500pt;}
.h19{height:60.745313pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h6{height:66.375270pt;}
.h37{height:71.190767pt;}
.h12{height:99.920000pt;}
.h3{height:118.850131pt;}
.h10{height:123.520000pt;}
.hd{height:132.986667pt;}
.hf{height:179.920000pt;}
.h11{height:232.973333pt;}
.h14{height:277.398667pt;}
.h13{height:277.529333pt;}
.ha{height:774.985333pt;}
.h2f{height:793.701333pt;}
.h30{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:143.946667pt;}
.w9{width:196.800000pt;}
.w8{width:200.186667pt;}
.w7{width:209.164000pt;}
.w6{width:338.911067pt;}
.w4{width:447.333333pt;}
.w5{width:548.075067pt;}
.w2{width:597.820800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.wa{width:1122.520000pt;}
.wb{width:1122.666667pt;}
.x15{left:-46.342267pt;}
.x9{left:-31.505867pt;}
.x1a{left:-27.142267pt;}
.xa{left:-12.305867pt;}
.x16{left:-8.902267pt;}
.x0{left:0.000000pt;}
.x13{left:5.934133pt;}
.x1d{left:7.200000pt;}
.x1f{left:48.320000pt;}
.x20{left:53.520000pt;}
.x1b{left:59.364400pt;}
.x1{left:66.141333pt;}
.xc{left:67.146667pt;}
.x28{left:70.317333pt;}
.x29{left:74.302667pt;}
.x31{left:75.798667pt;}
.x5{left:77.300000pt;}
.x21{left:81.360000pt;}
.x7{left:85.040000pt;}
.x25{left:92.821333pt;}
.x8{left:97.940533pt;}
.x32{left:99.868000pt;}
.xb{left:101.714667pt;}
.x2f{left:102.824000pt;}
.x6{left:103.937333pt;}
.x2e{left:106.988000pt;}
.x19{left:111.920000pt;}
.x14{left:122.812933pt;}
.x17{left:135.124400pt;}
.x24{left:145.945333pt;}
.xf{left:165.146667pt;}
.x2b{left:166.298667pt;}
.x22{left:172.570667pt;}
.x1c{left:208.897333pt;}
.x2c{left:214.298667pt;}
.xe{left:219.146667pt;}
.x23{left:222.900000pt;}
.x26{left:227.220000pt;}
.xd{left:245.661333pt;}
.x30{left:266.820000pt;}
.x10{left:285.546667pt;}
.x11{left:304.026667pt;}
.x1e{left:409.084000pt;}
.x12{left:417.333333pt;}
.x18{left:461.724000pt;}
.x27{left:486.420000pt;}
.x2d{left:492.085333pt;}
.x4{left:521.322667pt;}
.x2{left:587.236000pt;}
.x3{left:618.126667pt;}
.x2a{left:734.302667pt;}
}




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