
    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_2f7543dcf75a701a107914f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_91f0e5fafe034961c6c0db1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_48633a3fbe63f9491d2b5119.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.759870;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_d852578c75b9cfa21b0022d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_54224819a28c81e1bd001763.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_815efd8cfc3974204439313c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_18ad673afd3a417db5837984.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_344db24627b35dde9b8b302b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_d03ea48ecb3ead900325f40c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_b4246a120959cf2a0dbd9983.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_1ab081f3d50f6e2379f74ab2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760345;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_f8a7cd11f20986d65123ee25.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963379;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_a93b2c076c72d39395513bdb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976607;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_b59114462ae2e7e7fcdee271.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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_bd2f816347681b76ac2f36f1.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_4b1770b5e091e2c4ffa4f11e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0a1b4b70766e673b5a0005bf.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_35bb7450f6ad7ab277810360.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls30{letter-spacing:-7.884000px;}
.ls3b{letter-spacing:-3.888000px;}
.ls29{letter-spacing:-3.240000px;}
.ls22{letter-spacing:-2.349278px;}
.lsf{letter-spacing:-2.307327px;}
.ls1d{letter-spacing:-2.265376px;}
.ls26{letter-spacing:-2.229437px;}
.ls11{letter-spacing:-2.223424px;}
.ls25{letter-spacing:-2.182990px;}
.ls10{letter-spacing:-2.181473px;}
.ls1c{letter-spacing:-2.097570px;}
.ls14{letter-spacing:-2.013667px;}
.ls16{letter-spacing:-1.971716px;}
.ls20{letter-spacing:-1.929764px;}
.ls24{letter-spacing:-1.887813px;}
.ls23{letter-spacing:-1.845862px;}
.ls13{letter-spacing:-1.803910px;}
.ls12{letter-spacing:-1.761959px;}
.ls1e{letter-spacing:-1.720007px;}
.ls18{letter-spacing:-1.678056px;}
.ls15{letter-spacing:-1.636105px;}
.ls17{letter-spacing:-1.594153px;}
.ls1b{letter-spacing:-1.552202px;}
.ls1a{letter-spacing:-1.510250px;}
.ls19{letter-spacing:-1.468299px;}
.ls21{letter-spacing:-1.342445px;}
.ls5{letter-spacing:-1.224000px;}
.lsc{letter-spacing:-1.200000px;}
.ls1f{letter-spacing:-1.174639px;}
.ls3c{letter-spacing:-1.140000px;}
.ls35{letter-spacing:-1.080000px;}
.ls3a{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.816000px;}
.ls6{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.691200px;}
.lsb{letter-spacing:-0.672000px;}
.ls2f{letter-spacing:-0.648000px;}
.ls36{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.461736px;}
.ls2d{letter-spacing:-0.420000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.408000px;}
.lsd{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.570000px;}
.ls1{letter-spacing:0.600000px;}
.ls31{letter-spacing:0.939600px;}
.lsa{letter-spacing:1.200000px;}
.ls2a{letter-spacing:2.727000px;}
.ls39{letter-spacing:3.840000px;}
.lse{letter-spacing:4.080000px;}
.ls38{letter-spacing:7.536000px;}
.ls33{letter-spacing:8.550000px;}
.ls2e{letter-spacing:11.323800px;}
.ls28{letter-spacing:11.885400px;}
.ls37{letter-spacing:12.540000px;}
.ls2b{letter-spacing:14.100000px;}
.ls27{letter-spacing:17.760000px;}
.ls32{letter-spacing:30.294000px;}
.ls0{letter-spacing:41.927964px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.wsa9{word-spacing:-16.434000px;}
.ws129{word-spacing:-15.540000px;}
.ws113{word-spacing:-15.420000px;}
.ws7{word-spacing:-15.300000px;}
.ws30{word-spacing:-15.060000px;}
.ws4{word-spacing:-14.940000px;}
.ws154{word-spacing:-14.880000px;}
.wsaa{word-spacing:-14.820000px;}
.ws2f{word-spacing:-14.700000px;}
.ws17b{word-spacing:-14.100000px;}
.ws155{word-spacing:-14.040000px;}
.ws156{word-spacing:-13.800000px;}
.ws68{word-spacing:-13.680000px;}
.ws136{word-spacing:-13.620000px;}
.ws16a{word-spacing:-13.560000px;}
.ws69{word-spacing:-13.500000px;}
.wsed{word-spacing:-13.446000px;}
.ws185{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws19f{word-spacing:-12.852000px;}
.ws12a{word-spacing:-12.798000px;}
.ws165{word-spacing:-12.582000px;}
.ws8{word-spacing:-12.366000px;}
.ws186{word-spacing:-12.312000px;}
.wsa{word-spacing:-12.150000px;}
.wsc6{word-spacing:-11.611650px;}
.wsb{word-spacing:-10.992000px;}
.ws2d{word-spacing:-10.800000px;}
.wsbb{word-spacing:-10.487850px;}
.wsec{word-spacing:-10.206000px;}
.ws3{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws166{word-spacing:-9.558000px;}
.wsc5{word-spacing:-9.382213px;}
.wsc1{word-spacing:-8.977600px;}
.wsc2{word-spacing:-8.935648px;}
.wsc0{word-spacing:-8.851745px;}
.wsbe{word-spacing:-8.725891px;}
.wsbd{word-spacing:-8.683940px;}
.ws50{word-spacing:-8.675040px;}
.wsc4{word-spacing:-8.558086px;}
.wsbf{word-spacing:-8.516134px;}
.wsc3{word-spacing:-8.474183px;}
.wsbc{word-spacing:-8.306377px;}
.wsba{word-spacing:-8.264426px;}
.ws152{word-spacing:-7.020000px;}
.ws102{word-spacing:-6.360000px;}
.ws16{word-spacing:-5.616000px;}
.ws12b{word-spacing:-5.562000px;}
.wsf{word-spacing:-5.412000px;}
.ws12c{word-spacing:-5.100000px;}
.ws12d{word-spacing:-5.040000px;}
.ws12f{word-spacing:-4.980000px;}
.wsad{word-spacing:-4.860000px;}
.ws128{word-spacing:-4.680000px;}
.ws127{word-spacing:-4.440000px;}
.ws164{word-spacing:-4.380000px;}
.ws192{word-spacing:-4.104000px;}
.ws149{word-spacing:-3.960000px;}
.ws2b{word-spacing:-3.840000px;}
.wsae{word-spacing:-3.540000px;}
.ws11f{word-spacing:-3.480000px;}
.ws11e{word-spacing:-3.420000px;}
.ws13c{word-spacing:-3.240000px;}
.wsb2{word-spacing:-3.180000px;}
.ws116{word-spacing:-3.060000px;}
.wsf2{word-spacing:-3.000000px;}
.wsf1{word-spacing:-2.940000px;}
.ws167{word-spacing:-2.916000px;}
.ws14f{word-spacing:-2.880000px;}
.ws168{word-spacing:-2.862000px;}
.ws35{word-spacing:-2.820000px;}
.ws142{word-spacing:-2.808000px;}
.wsb3{word-spacing:-2.760000px;}
.ws1a{word-spacing:-2.700000px;}
.ws1e{word-spacing:-2.538000px;}
.ws7e{word-spacing:-2.520000px;}
.ws1f{word-spacing:-2.484000px;}
.ws117{word-spacing:-2.460000px;}
.ws14a{word-spacing:-2.400000px;}
.ws198{word-spacing:-2.322000px;}
.ws184{word-spacing:-2.280000px;}
.ws58{word-spacing:-2.220000px;}
.ws19e{word-spacing:-2.214000px;}
.wse8{word-spacing:-2.181473px;}
.wsf3{word-spacing:-2.160000px;}
.ws84{word-spacing:-2.100000px;}
.ws22{word-spacing:-1.998000px;}
.wse1{word-spacing:-1.971716px;}
.ws172{word-spacing:-1.920000px;}
.wsfb{word-spacing:-1.800000px;}
.wsd4{word-spacing:-1.761959px;}
.ws61{word-spacing:-1.740000px;}
.wse5{word-spacing:-1.720007px;}
.ws157{word-spacing:-1.680000px;}
.wse3{word-spacing:-1.678056px;}
.wsda{word-spacing:-1.636105px;}
.ws17e{word-spacing:-1.620000px;}
.wsd7{word-spacing:-1.594153px;}
.ws182{word-spacing:-1.560000px;}
.ws21{word-spacing:-1.512000px;}
.ws1a0{word-spacing:-1.458000px;}
.ws26{word-spacing:-1.404000px;}
.ws111{word-spacing:-1.380000px;}
.ws42{word-spacing:-1.260000px;}
.ws57{word-spacing:-1.200000px;}
.ws34{word-spacing:-1.140000px;}
.wsfc{word-spacing:-1.080000px;}
.ws19b{word-spacing:-1.026000px;}
.ws176{word-spacing:-1.020000px;}
.ws23{word-spacing:-0.972000px;}
.ws100{word-spacing:-0.960000px;}
.ws188{word-spacing:-0.918000px;}
.wsac{word-spacing:-0.900000px;}
.ws13{word-spacing:-0.810000px;}
.ws14b{word-spacing:-0.660000px;}
.ws2c{word-spacing:-0.600000px;}
.ws11b{word-spacing:-0.540000px;}
.ws0{word-spacing:-0.510000px;}
.ws1a3{word-spacing:-0.486000px;}
.ws8c{word-spacing:-0.432000px;}
.ws36{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.306000px;}
.ws10{word-spacing:-0.216000px;}
.ws37{word-spacing:-0.120000px;}
.ws82{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.054000px;}
.ws2e{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.ws169{word-spacing:0.054000px;}
.ws5f{word-spacing:0.060000px;}
.wse{word-spacing:0.102000px;}
.ws62{word-spacing:0.120000px;}
.ws15b{word-spacing:0.180000px;}
.ws10b{word-spacing:0.240000px;}
.ws14e{word-spacing:0.300000px;}
.ws171{word-spacing:0.360000px;}
.ws3f{word-spacing:0.420000px;}
.ws18{word-spacing:0.432000px;}
.ws11d{word-spacing:0.480000px;}
.ws17{word-spacing:0.540000px;}
.ws13e{word-spacing:0.600000px;}
.ws135{word-spacing:0.648000px;}
.ws137{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.ws83{word-spacing:0.720000px;}
.ws10a{word-spacing:0.780000px;}
.ws158{word-spacing:0.840000px;}
.ws4e{word-spacing:0.900000px;}
.ws141{word-spacing:0.918000px;}
.wsf5{word-spacing:0.960000px;}
.ws140{word-spacing:0.972000px;}
.ws148{word-spacing:1.020000px;}
.ws1a4{word-spacing:1.026000px;}
.ws7d{word-spacing:1.080000px;}
.ws3e{word-spacing:1.140000px;}
.wse4{word-spacing:1.174639px;}
.ws45{word-spacing:1.200000px;}
.ws8a{word-spacing:1.260000px;}
.ws67{word-spacing:1.320000px;}
.ws38{word-spacing:1.440000px;}
.wsdb{word-spacing:1.468299px;}
.ws131{word-spacing:1.500000px;}
.wsdc{word-spacing:1.510250px;}
.wsdd{word-spacing:1.552202px;}
.wsb4{word-spacing:1.560000px;}
.ws189{word-spacing:1.566000px;}
.wsd8{word-spacing:1.594153px;}
.wsf7{word-spacing:1.620000px;}
.wsd6{word-spacing:1.636105px;}
.ws1b{word-spacing:1.674000px;}
.wsd9{word-spacing:1.678056px;}
.ws65{word-spacing:1.680000px;}
.wse2{word-spacing:1.720007px;}
.wsd2{word-spacing:1.761959px;}
.ws5e{word-spacing:1.800000px;}
.wsd3{word-spacing:1.803910px;}
.ws183{word-spacing:1.860000px;}
.wse9{word-spacing:1.887813px;}
.ws17d{word-spacing:1.920000px;}
.wse7{word-spacing:1.929764px;}
.ws24{word-spacing:1.944000px;}
.wsde{word-spacing:1.971716px;}
.ws25{word-spacing:1.998000px;}
.wsd5{word-spacing:2.013667px;}
.ws17f{word-spacing:2.040000px;}
.wsdf{word-spacing:2.097570px;}
.ws32{word-spacing:2.100000px;}
.ws20{word-spacing:2.106000px;}
.ws125{word-spacing:2.160000px;}
.wsd0{word-spacing:2.181473px;}
.wsea{word-spacing:2.182990px;}
.wsf6{word-spacing:2.220000px;}
.wsd1{word-spacing:2.223424px;}
.wseb{word-spacing:2.229437px;}
.wse0{word-spacing:2.265376px;}
.ws13d{word-spacing:2.280000px;}
.wscf{word-spacing:2.307327px;}
.wsff{word-spacing:2.340000px;}
.wse6{word-spacing:2.349278px;}
.ws18a{word-spacing:2.376000px;}
.ws159{word-spacing:2.400000px;}
.ws16c{word-spacing:2.460000px;}
.ws16d{word-spacing:2.520000px;}
.ws10e{word-spacing:2.580000px;}
.ws193{word-spacing:2.592000px;}
.ws15e{word-spacing:2.640000px;}
.ws19{word-spacing:2.700000px;}
.ws112{word-spacing:2.754000px;}
.ws5c{word-spacing:2.760000px;}
.ws1a9{word-spacing:2.808000px;}
.ws1a5{word-spacing:2.862000px;}
.wsb0{word-spacing:2.880000px;}
.ws48{word-spacing:2.940000px;}
.ws1c{word-spacing:2.970000px;}
.ws53{word-spacing:3.060000px;}
.ws101{word-spacing:3.120000px;}
.ws8b{word-spacing:3.180000px;}
.ws59{word-spacing:3.240000px;}
.ws18b{word-spacing:3.294000px;}
.ws124{word-spacing:3.360000px;}
.ws14d{word-spacing:3.420000px;}
.ws28{word-spacing:3.510000px;}
.ws105{word-spacing:3.540000px;}
.ws27{word-spacing:3.564000px;}
.ws1d{word-spacing:3.672000px;}
.ws47{word-spacing:3.720000px;}
.ws109{word-spacing:3.780000px;}
.wsaf{word-spacing:3.840000px;}
.ws49{word-spacing:3.900000px;}
.ws147{word-spacing:3.960000px;}
.ws130{word-spacing:4.020000px;}
.ws16b{word-spacing:4.080000px;}
.ws86{word-spacing:4.140000px;}
.ws88{word-spacing:4.200000px;}
.ws39{word-spacing:4.260000px;}
.ws13b{word-spacing:4.380000px;}
.ws123{word-spacing:4.440000px;}
.ws18c{word-spacing:4.482000px;}
.ws4b{word-spacing:4.500000px;}
.ws3d{word-spacing:4.560000px;}
.ws11a{word-spacing:4.620000px;}
.ws180{word-spacing:4.680000px;}
.ws103{word-spacing:4.740000px;}
.ws161{word-spacing:4.800000px;}
.ws7a{word-spacing:4.860000px;}
.wsf4{word-spacing:4.920000px;}
.wscc{word-spacing:4.968000px;}
.ws56{word-spacing:4.980000px;}
.ws13f{word-spacing:5.040000px;}
.ws14{word-spacing:5.184000px;}
.ws15{word-spacing:5.238000px;}
.ws14c{word-spacing:5.280000px;}
.wsab{word-spacing:5.340000px;}
.ws80{word-spacing:5.400000px;}
.ws7f{word-spacing:5.460000px;}
.wsca{word-spacing:5.580000px;}
.ws17a{word-spacing:5.640000px;}
.ws19a{word-spacing:5.670000px;}
.ws87{word-spacing:5.700000px;}
.ws199{word-spacing:5.724000px;}
.ws11c{word-spacing:5.820000px;}
.ws33{word-spacing:5.880000px;}
.ws31{word-spacing:6.000000px;}
.ws5b{word-spacing:6.180000px;}
.ws3c{word-spacing:6.240000px;}
.ws66{word-spacing:6.420000px;}
.ws60{word-spacing:6.480000px;}
.ws197{word-spacing:6.642000px;}
.ws17c{word-spacing:6.660000px;}
.ws138{word-spacing:6.720000px;}
.ws139{word-spacing:6.780000px;}
.ws89{word-spacing:6.840000px;}
.wsb1{word-spacing:6.900000px;}
.wsc9{word-spacing:6.960000px;}
.ws46{word-spacing:7.080000px;}
.ws190{word-spacing:7.128000px;}
.ws85{word-spacing:7.200000px;}
.wscd{word-spacing:7.236000px;}
.ws13a{word-spacing:7.260000px;}
.wsce{word-spacing:7.290000px;}
.ws4a{word-spacing:7.320000px;}
.ws162{word-spacing:7.440000px;}
.ws163{word-spacing:7.500000px;}
.ws15f{word-spacing:7.560000px;}
.ws3b{word-spacing:7.620000px;}
.ws160{word-spacing:7.680000px;}
.ws79{word-spacing:7.740000px;}
.wsc8{word-spacing:7.800000px;}
.ws15a{word-spacing:7.920000px;}
.wsb8{word-spacing:8.040000px;}
.ws104{word-spacing:8.100000px;}
.ws107{word-spacing:8.160000px;}
.ws106{word-spacing:8.220000px;}
.ws4f{word-spacing:8.280000px;}
.ws122{word-spacing:8.340000px;}
.ws174{word-spacing:8.400000px;}
.ws179{word-spacing:8.520000px;}
.ws18f{word-spacing:8.586000px;}
.ws12e{word-spacing:8.880000px;}
.ws195{word-spacing:8.964000px;}
.ws15d{word-spacing:9.000000px;}
.wsb9{word-spacing:9.300000px;}
.ws146{word-spacing:9.360000px;}
.ws1a8{word-spacing:9.396000px;}
.ws110{word-spacing:9.420000px;}
.ws181{word-spacing:9.540000px;}
.ws151{word-spacing:9.660000px;}
.ws150{word-spacing:9.720000px;}
.ws1a1{word-spacing:9.774000px;}
.ws5d{word-spacing:9.780000px;}
.wscb{word-spacing:10.020000px;}
.ws54{word-spacing:10.080000px;}
.ws10f{word-spacing:10.380000px;}
.ws64{word-spacing:10.440000px;}
.ws19c{word-spacing:10.584000px;}
.ws1a2{word-spacing:10.638000px;}
.ws4d{word-spacing:10.860000px;}
.ws63{word-spacing:10.920000px;}
.ws18e{word-spacing:11.070000px;}
.ws40{word-spacing:11.220000px;}
.ws18d{word-spacing:11.340000px;}
.ws7b{word-spacing:11.400000px;}
.ws29{word-spacing:11.460000px;}
.wsf9{word-spacing:11.718000px;}
.ws177{word-spacing:11.820000px;}
.wsfa{word-spacing:11.826000px;}
.ws133{word-spacing:11.880000px;}
.wsf8{word-spacing:11.934000px;}
.ws178{word-spacing:11.940000px;}
.ws134{word-spacing:11.988000px;}
.ws132{word-spacing:12.042000px;}
.ws2a{word-spacing:12.060000px;}
.ws175{word-spacing:12.240000px;}
.ws19d{word-spacing:12.258000px;}
.ws15c{word-spacing:12.600000px;}
.ws5a{word-spacing:12.720000px;}
.ws194{word-spacing:12.744000px;}
.ws126{word-spacing:12.780000px;}
.ws196{word-spacing:12.906000px;}
.ws55{word-spacing:13.020000px;}
.ws173{word-spacing:13.380000px;}
.ws170{word-spacing:13.980000px;}
.ws120{word-spacing:14.040000px;}
.ws121{word-spacing:14.160000px;}
.ws81{word-spacing:14.700000px;}
.ws145{word-spacing:14.940000px;}
.wsfe{word-spacing:15.300000px;}
.wsfd{word-spacing:15.420000px;}
.ws153{word-spacing:15.498000px;}
.ws41{word-spacing:15.840000px;}
.wsf0{word-spacing:15.900000px;}
.ws187{word-spacing:16.038000px;}
.wsc7{word-spacing:16.140000px;}
.ws191{word-spacing:16.686000px;}
.wsb6{word-spacing:17.040000px;}
.wsb7{word-spacing:17.100000px;}
.ws10d{word-spacing:17.760000px;}
.wsef{word-spacing:17.820000px;}
.ws10c{word-spacing:17.880000px;}
.wsee{word-spacing:17.940000px;}
.ws3a{word-spacing:18.300000px;}
.ws108{word-spacing:18.840000px;}
.ws1a6{word-spacing:18.900000px;}
.ws16f{word-spacing:20.580000px;}
.ws16e{word-spacing:20.760000px;}
.ws7c{word-spacing:21.420000px;}
.ws12{word-spacing:21.816000px;}
.ws43{word-spacing:22.800000px;}
.ws44{word-spacing:22.980000px;}
.ws4c{word-spacing:23.940000px;}
.ws1a7{word-spacing:24.516000px;}
.ws115{word-spacing:27.480000px;}
.ws114{word-spacing:27.780000px;}
.wsb5{word-spacing:28.920000px;}
.ws144{word-spacing:30.300000px;}
.ws143{word-spacing:30.480000px;}
.ws1{word-spacing:33.321279px;}
.ws119{word-spacing:46.080000px;}
.ws118{word-spacing:46.500000px;}
.ws52{word-spacing:122.064000px;}
.ws51{word-spacing:277.156800px;}
.wsa8{word-spacing:277.344000px;}
.ws99{word-spacing:281.472000px;}
.ws9d{word-spacing:285.312000px;}
.ws70{word-spacing:287.424000px;}
.ws8e{word-spacing:287.616000px;}
.wsa5{word-spacing:290.352000px;}
.ws90{word-spacing:291.552000px;}
.ws78{word-spacing:293.808000px;}
.ws95{word-spacing:359.136000px;}
.ws74{word-spacing:363.312000px;}
.ws6e{word-spacing:365.376000px;}
.ws9c{word-spacing:366.048000px;}
.ws97{word-spacing:368.304000px;}
.ws9a{word-spacing:368.400000px;}
.ws9f{word-spacing:368.736000px;}
.ws76{word-spacing:370.032000px;}
.ws72{word-spacing:370.560000px;}
.ws9e{word-spacing:370.800000px;}
.wsa1{word-spacing:370.992000px;}
.ws75{word-spacing:371.712000px;}
.wsa7{word-spacing:371.904000px;}
.ws6c{word-spacing:373.569600px;}
.ws6f{word-spacing:397.800000px;}
.ws6b{word-spacing:407.851200px;}
.ws96{word-spacing:420.240000px;}
.ws6d{word-spacing:433.920000px;}
.ws9b{word-spacing:450.816000px;}
.wsa4{word-spacing:458.832000px;}
.ws71{word-spacing:478.896000px;}
.ws8f{word-spacing:482.832000px;}
.wsa6{word-spacing:485.424000px;}
.wsa3{word-spacing:495.888000px;}
.ws93{word-spacing:497.798400px;}
.ws94{word-spacing:504.000000px;}
.ws6a{word-spacing:511.161600px;}
.wsa2{word-spacing:512.400000px;}
.ws8d{word-spacing:520.886400px;}
.ws91{word-spacing:532.752000px;}
.ws73{word-spacing:532.992000px;}
.ws92{word-spacing:534.657600px;}
.ws98{word-spacing:545.520000px;}
.wsa0{word-spacing:546.028800px;}
.ws77{word-spacing:553.104000px;}
._8{margin-left:-11.211000px;}
._65{margin-left:-8.991000px;}
._6b{margin-left:-7.884000px;}
._e{margin-left:-6.847200px;}
._5{margin-left:-5.110200px;}
._2{margin-left:-3.978000px;}
._1{margin-left:-2.284800px;}
._0{margin-left:-1.173000px;}
._3{width:1.428000px;}
._4{width:3.233400px;}
._7{width:4.644000px;}
._a{width:6.612000px;}
._61{width:8.520000px;}
._63{width:9.747600px;}
._b{width:11.634000px;}
._d{width:13.018800px;}
._c{width:16.398000px;}
._66{width:17.446800px;}
._1f{width:19.098600px;}
._1e{width:20.764200px;}
._9{width:23.196000px;}
._64{width:25.224000px;}
._6a{width:27.301800px;}
._62{width:29.100000px;}
._69{width:30.910200px;}
._6{width:36.369600px;}
._67{width:42.258600px;}
._68{width:44.109000px;}
._11{width:56.736000px;}
._1a{width:73.440000px;}
._14{width:88.176000px;}
._15{width:92.736000px;}
._1d{width:98.256000px;}
._19{width:112.464000px;}
._1b{width:115.584000px;}
._12{width:119.376000px;}
._1c{width:125.952000px;}
._18{width:140.208000px;}
._13{width:144.117000px;}
._10{width:145.344000px;}
._17{width:160.032000px;}
._16{width:192.936000px;}
._f{width:200.976000px;}
._50{width:262.944000px;}
._5b{width:393.382800px;}
._58{width:426.597000px;}
._48{width:431.328000px;}
._42{width:432.576000px;}
._5d{width:439.194000px;}
._22{width:444.796800px;}
._44{width:455.109000px;}
._39{width:468.720000px;}
._31{width:481.968000px;}
._2f{width:493.632000px;}
._36{width:496.620000px;}
._4a{width:514.245000px;}
._56{width:550.224000px;}
._2b{width:554.928000px;}
._28{width:580.320000px;}
._3b{width:582.588000px;}
._20{width:636.816000px;}
._21{width:641.376000px;}
._4f{width:700.492800px;}
._3f{width:718.609800px;}
._24{width:728.476800px;}
._2a{width:752.332800px;}
._4c{width:765.292800px;}
._51{width:780.508800px;}
._43{width:783.388800px;}
._2c{width:792.316800px;}
._3c{width:795.100800px;}
._3e{width:801.868800px;}
._41{width:807.580800px;}
._57{width:809.625600px;}
._25{width:812.620800px;}
._26{width:821.740800px;}
._40{width:834.001800px;}
._2e{width:844.348800px;}
._55{width:848.697600px;}
._49{width:862.108800px;}
._52{width:864.652800px;}
._3a{width:871.777800px;}
._29{width:881.452800px;}
._33{width:882.700800px;}
._47{width:884.860800px;}
._5f{width:888.748800px;}
._5c{width:890.812800px;}
._23{width:893.932800px;}
._5e{width:897.196800px;}
._59{width:906.940800px;}
._38{width:918.748800px;}
._27{width:922.972800px;}
._4e{width:926.188800px;}
._2d{width:932.572800px;}
._60{width:934.198200px;}
._4b{width:935.260800px;}
._37{width:936.508800px;}
._35{width:938.716800px;}
._3d{width:940.849800px;}
._4d{width:945.801600px;}
._34{width:947.308800px;}
._45{width:956.572800px;}
._53{width:960.808800px;}
._5a{width:966.508800px;}
._30{width:979.276800px;}
._46{width:993.436800px;}
._54{width:1022.152800px;}
._32{width:1060.828800px;}
.fc5{color:transparent;}
.fc4{color:rgb(16,15,13);}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fsb{font-size:37.456800px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:41.951400px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fsc{font-size:46.446600px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:0.031650px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.040050px;}
.y1d1{bottom:112.790850px;}
.y1a1{bottom:112.994700px;}
.yea{bottom:113.078700px;}
.y16c{bottom:113.078850px;}
.yf{bottom:117.205050px;}
.y2c{bottom:117.212550px;}
.y175{bottom:120.491850px;}
.yd5{bottom:124.210800px;}
.ya3{bottom:124.916400px;}
.y16f{bottom:130.862550px;}
.ye{bottom:131.601450px;}
.y1d0{bottom:133.796850px;}
.y1a0{bottom:134.000700px;}
.ye9{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.y2b{bottom:138.212550px;}
.y17c{bottom:139.529400px;}
.y174{bottom:140.296350px;}
.y75{bottom:142.319100px;}
.yd4{bottom:144.694800px;}
.ya2{bottom:145.604400px;}
.yd{bottom:145.997850px;}
.y16e{bottom:150.667050px;}
.y1cf{bottom:154.802850px;}
.y19f{bottom:155.006700px;}
.ye8{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y2a{bottom:159.212550px;}
.y173{bottom:160.100850px;}
.yc{bottom:160.397850px;}
.yd3{bottom:165.178800px;}
.y74{bottom:165.779100px;}
.y178{bottom:165.820200px;}
.ya1{bottom:166.292400px;}
.y16d{bottom:170.471550px;}
.y1ce{bottom:175.808850px;}
.y19e{bottom:176.012700px;}
.ye7{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.y177{bottom:185.624700px;}
.yd2{bottom:185.662800px;}
.ya0{bottom:186.980400px;}
.y73{bottom:189.239100px;}
.y29{bottom:195.404250px;}
.y1cd{bottom:196.814850px;}
.y19d{bottom:197.018700px;}
.ye6{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y17b{bottom:202.937100px;}
.y38{bottom:203.447400px;}
.y176{bottom:205.429200px;}
.yd1{bottom:206.146800px;}
.y9f{bottom:207.668400px;}
.y72{bottom:212.699100px;}
.y1cc{bottom:217.820850px;}
.y19c{bottom:218.024700px;}
.ye5{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.y37{bottom:221.442900px;}
.yd0{bottom:226.630800px;}
.y9e{bottom:228.356400px;}
.y17a{bottom:232.441050px;}
.y71{bottom:236.159100px;}
.y1cb{bottom:238.826850px;}
.y19b{bottom:239.030700px;}
.ye4{bottom:239.078700px;}
.y16b{bottom:239.078850px;}
.y36{bottom:239.438400px;}
.ycf{bottom:247.114800px;}
.y9d{bottom:249.044400px;}
.y65{bottom:252.513600px;}
.y35{bottom:257.433900px;}
.y1ca{bottom:259.832850px;}
.y19a{bottom:260.036700px;}
.ye3{bottom:260.078700px;}
.y16a{bottom:260.078850px;}
.y28{bottom:267.427950px;}
.yce{bottom:267.598800px;}
.y70{bottom:268.341750px;}
.y9c{bottom:269.732400px;}
.y34{bottom:275.429400px;}
.y1c9{bottom:280.838850px;}
.y199{bottom:281.042700px;}
.ye2{bottom:281.078700px;}
.y169{bottom:281.078850px;}
.y64{bottom:284.811000px;}
.ycd{bottom:288.082800px;}
.y9b{bottom:290.420400px;}
.y33{bottom:293.424900px;}
.y1c8{bottom:301.844850px;}
.y198{bottom:302.048700px;}
.ye1{bottom:302.078700px;}
.y168{bottom:302.078850px;}
.y27{bottom:308.393250px;}
.ycc{bottom:308.566800px;}
.y9a{bottom:311.108400px;}
.y32{bottom:311.420400px;}
.y1c7{bottom:322.850850px;}
.y197{bottom:323.054700px;}
.ye0{bottom:323.078700px;}
.y6f{bottom:323.078850px;}
.y26{bottom:328.197750px;}
.ycb{bottom:329.050800px;}
.y31{bottom:329.415900px;}
.y99{bottom:331.796400px;}
.y179{bottom:337.441050px;}
.y1c6{bottom:343.856850px;}
.y196{bottom:344.060700px;}
.ydf{bottom:344.078700px;}
.y63{bottom:344.078850px;}
.y25{bottom:348.002250px;}
.yef{bottom:348.712050px;}
.yca{bottom:349.534800px;}
.y98{bottom:352.484400px;}
.y30{bottom:364.421400px;}
.y1c5{bottom:364.862850px;}
.y195{bottom:365.066700px;}
.yde{bottom:365.078700px;}
.y62{bottom:365.078850px;}
.y24{bottom:367.806750px;}
.yee{bottom:368.516550px;}
.yc9{bottom:370.018800px;}
.y97{bottom:373.172400px;}
.y2f{bottom:382.421400px;}
.y1c4{bottom:385.868850px;}
.y194{bottom:386.072700px;}
.ydd{bottom:386.078700px;}
.y61{bottom:386.078850px;}
.y23{bottom:387.611250px;}
.yed{bottom:388.321050px;}
.yc8{bottom:390.502800px;}
.y96{bottom:393.860400px;}
.y2e{bottom:400.421400px;}
.y1c3{bottom:406.874850px;}
.ydc{bottom:407.078700px;}
.y60{bottom:407.078850px;}
.y22{bottom:407.415750px;}
.yec{bottom:408.125550px;}
.yc7{bottom:410.986800px;}
.y95{bottom:414.548400px;}
.y2d{bottom:418.421400px;}
.y21{bottom:427.220250px;}
.y1c2{bottom:427.880850px;}
.yeb{bottom:427.930050px;}
.y164{bottom:428.078700px;}
.y5f{bottom:428.078850px;}
.yc6{bottom:431.470800px;}
.y94{bottom:435.332400px;}
.y193{bottom:442.440900px;}
.y20{bottom:447.024750px;}
.y1c1{bottom:448.886850px;}
.ydb{bottom:449.078700px;}
.y5e{bottom:449.078850px;}
.yc5{bottom:451.954800px;}
.yf0{bottom:460.263000px;}
.y93{bottom:465.814350px;}
.y1f{bottom:466.829250px;}
.y1c0{bottom:469.892850px;}
.yda{bottom:470.078700px;}
.y5d{bottom:470.078850px;}
.yc4{bottom:472.438800px;}
.y115{bottom:484.640694px;}
.y1e{bottom:486.633750px;}
.y160{bottom:489.478336px;}
.y1bf{bottom:490.898850px;}
.yd9{bottom:491.078700px;}
.y5c{bottom:491.078850px;}
.yc3{bottom:492.922800px;}
.y117{bottom:494.069272px;}
.y140{bottom:494.946074px;}
.y104{bottom:503.476873px;}
.y1d{bottom:506.438250px;}
.y1be{bottom:511.904850px;}
.y92{bottom:512.078700px;}
.y5b{bottom:512.078850px;}
.y109{bottom:512.915938px;}
.yc2{bottom:513.406800px;}
.y192{bottom:517.529250px;}
.y167{bottom:519.161400px;}
.y12b{bottom:522.307225px;}
.y1c{bottom:526.242750px;}
.y15d{bottom:531.279170px;}
.yf5{bottom:531.736474px;}
.y14f{bottom:532.468424px;}
.y1bd{bottom:532.910850px;}
.y91{bottom:533.078700px;}
.y5a{bottom:533.078850px;}
.yc1{bottom:533.890800px;}
.y166{bottom:538.965900px;}
.y126{bottom:541.212157px;}
.y1b{bottom:546.047250px;}
.yd8{bottom:547.440900px;}
.y6e{bottom:547.441050px;}
.y102{bottom:550.598783px;}
.y1bc{bottom:553.916850px;}
.y191{bottom:554.072700px;}
.y90{bottom:554.078700px;}
.y59{bottom:554.078850px;}
.y159{bottom:554.361923px;}
.yc0{bottom:554.374800px;}
.y165{bottom:558.770400px;}
.y12f{bottom:560.000558px;}
.y15b{bottom:561.431894px;}
.y1a{bottom:565.851750px;}
.yf9{bottom:569.440295px;}
.ybf{bottom:574.858800px;}
.y1bb{bottom:574.922850px;}
.y190{bottom:575.072700px;}
.y8f{bottom:575.078700px;}
.y58{bottom:575.078850px;}
.y129{bottom:578.868201px;}
.y19{bottom:585.656250px;}
.y14c{bottom:586.977432px;}
.y110{bottom:588.313092px;}
.ybe{bottom:595.342800px;}
.y1ba{bottom:595.928850px;}
.y18f{bottom:596.072700px;}
.y8e{bottom:596.078700px;}
.y57{bottom:596.078850px;}
.y103{bottom:597.731181px;}
.y13f{bottom:598.551583px;}
.y172{bottom:605.277600px;}
.y18{bottom:605.460750px;}
.y114{bottom:607.170246px;}
.y155{bottom:607.915783px;}
.ybd{bottom:615.826800px;}
.y12c{bottom:616.561533px;}
.y1b9{bottom:616.934850px;}
.y18e{bottom:617.072700px;}
.y8d{bottom:617.078700px;}
.y56{bottom:617.078850px;}
.y171{bottom:625.082100px;}
.y17{bottom:625.265250px;}
.y107{bottom:626.016912px;}
.y111{bottom:635.445490px;}
.ybc{bottom:636.310800px;}
.y1b8{bottom:637.940850px;}
.y18d{bottom:638.072700px;}
.y8c{bottom:638.078700px;}
.y55{bottom:638.078850px;}
.y151{bottom:642.469681px;}
.y10f{bottom:644.863579px;}
.y170{bottom:644.886600px;}
.y16{bottom:645.069750px;}
.y137{bottom:648.799880px;}
.yf7{bottom:654.266026px;}
.y127{bottom:655.867950px;}
.ybb{bottom:656.794800px;}
.y147{bottom:656.825000px;}
.y1b7{bottom:658.946850px;}
.y18c{bottom:659.072700px;}
.y8b{bottom:659.078700px;}
.y54{bottom:659.078850px;}
.y101{bottom:663.710245px;}
.y15{bottom:664.874250px;}
.y163{bottom:668.117824px;}
.y14a{bottom:669.934880px;}
.y105{bottom:673.138822px;}
.yba{bottom:677.278800px;}
.y1b6{bottom:679.952850px;}
.y18b{bottom:680.072700px;}
.y8a{bottom:680.078700px;}
.y53{bottom:680.078850px;}
.y157{bottom:681.640130px;}
.yfd{bottom:682.556912px;}
.y14{bottom:684.678750px;}
.y11b{bottom:692.006465px;}
.y154{bottom:693.045725px;}
.yb9{bottom:697.762800px;}
.y1b5{bottom:700.958850px;}
.y18a{bottom:701.072700px;}
.y89{bottom:701.078700px;}
.y52{bottom:701.078850px;}
.y118{bottom:701.435042px;}
.y13{bottom:704.483250px;}
.y11a{bottom:710.863619px;}
.y149{bottom:712.251700px;}
.yb8{bottom:718.246800px;}
.yf6{bottom:720.245090px;}
.y146{bottom:721.072776px;}
.y1b4{bottom:721.964850px;}
.y88{bottom:722.078700px;}
.y51{bottom:722.078850px;}
.y12{bottom:724.287750px;}
.y12e{bottom:729.662508px;}
.y15c{bottom:730.820908px;}
.yb7{bottom:738.730800px;}
.yfa{bottom:739.102245px;}
.y150{bottom:740.475398px;}
.y1b3{bottom:742.970850px;}
.y87{bottom:743.078700px;}
.y50{bottom:743.078850px;}
.y189{bottom:748.529250px;}
.y128{bottom:748.530150px;}
.y145{bottom:749.268382px;}
.y11{bottom:755.385150px;}
.y10d{bottom:757.975041px;}
.yb6{bottom:759.214800px;}
.y1b2{bottom:763.976850px;}
.y86{bottom:764.078700px;}
.y4f{bottom:764.078850px;}
.yf8{bottom:767.377488px;}
.y13b{bottom:770.824771px;}
.y11f{bottom:776.842683px;}
.y143{bottom:778.053933px;}
.yb5{bottom:779.698800px;}
.y1b1{bottom:784.982850px;}
.y188{bottom:785.048700px;}
.y85{bottom:785.078700px;}
.y4e{bottom:785.078850px;}
.y116{bottom:786.260773px;}
.y132{bottom:795.641572px;}
.y13e{bottom:796.304759px;}
.yb4{bottom:800.182800px;}
.y131{bottom:805.070149px;}
.y1b0{bottom:805.988850px;}
.y187{bottom:806.054700px;}
.y84{bottom:806.078700px;}
.y4d{bottom:806.078850px;}
.y15f{bottom:810.482400px;}
.yfc{bottom:814.515040px;}
.y15a{bottom:815.388998px;}
.yb3{bottom:820.666800px;}
.y133{bottom:823.916816px;}
.y1af{bottom:826.994850px;}
.y186{bottom:827.060700px;}
.y83{bottom:827.078700px;}
.y4c{bottom:827.078850px;}
.y12d{bottom:833.345393px;}
.y162{bottom:833.358497px;}
.yb{bottom:834.666900px;}
.yb2{bottom:841.150800px;}
.y6d{bottom:841.441050px;}
.y119{bottom:842.821748px;}
.y1ae{bottom:848.000850px;}
.y185{bottom:848.066700px;}
.y82{bottom:848.078700px;}
.y4b{bottom:848.078850px;}
.y121{bottom:852.250325px;}
.ya{bottom:852.666900px;}
.y15e{bottom:860.608720px;}
.y130{bottom:861.620637px;}
.yb1{bottom:861.634800px;}
.y153{bottom:862.659480px;}
.y1ad{bottom:869.006850px;}
.y184{bottom:869.072700px;}
.y81{bottom:869.078700px;}
.y4a{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y11c{bottom:871.096991px;}
.y108{bottom:880.515081px;}
.y138{bottom:881.331695px;}
.yb0{bottom:882.118800px;}
.y8{bottom:888.666900px;}
.y122{bottom:889.954146px;}
.y1ac{bottom:890.012850px;}
.y80{bottom:890.078700px;}
.y49{bottom:890.078850px;}
.y152{bottom:896.679619px;}
.y135{bottom:899.324457px;}
.y161{bottom:899.338650px;}
.yaf{bottom:902.602800px;}
.y7{bottom:906.666900px;}
.y10b{bottom:908.790324px;}
.y1ab{bottom:911.018850px;}
.y7f{bottom:911.078700px;}
.y48{bottom:911.078850px;}
.y183{bottom:916.529250px;}
.yf3{bottom:918.192771px;}
.y14e{bottom:921.270008px;}
.yae{bottom:923.086800px;}
.y6{bottom:924.666900px;}
.yff{bottom:927.626503px;}
.y13c{bottom:928.592812px;}
.y1aa{bottom:932.024850px;}
.y7e{bottom:932.078700px;}
.y47{bottom:932.078850px;}
.y12a{bottom:937.038766px;}
.yad{bottom:943.570800px;}
.y106{bottom:946.483657px;}
.y1a9{bottom:953.030850px;}
.y182{bottom:953.054850px;}
.y7d{bottom:953.078700px;}
.y46{bottom:953.078850px;}
.y120{bottom:955.933210px;}
.y136{bottom:959.578950px;}
.y5{bottom:959.674800px;}
.yac{bottom:964.054800px;}
.y100{bottom:965.330323px;}
.y1a8{bottom:974.036850px;}
.y181{bottom:974.060850px;}
.y7c{bottom:974.078700px;}
.y45{bottom:974.078850px;}
.y123{bottom:974.790364px;}
.y4{bottom:979.474800px;}
.y124{bottom:984.218941px;}
.yab{bottom:984.538800px;}
.y158{bottom:984.693734px;}
.y125{bottom:993.647518px;}
.y1a7{bottom:995.042850px;}
.y180{bottom:995.066850px;}
.y7b{bottom:995.078700px;}
.y44{bottom:995.078850px;}
.y144{bottom:998.131361px;}
.y6c{bottom:999.578850px;}
.y112{bottom:1003.044632px;}
.y142{bottom:1003.665604px;}
.yaa{bottom:1005.022800px;}
.yf4{bottom:1012.447079px;}
.y1a6{bottom:1016.048850px;}
.y17f{bottom:1016.072850px;}
.y7a{bottom:1016.078700px;}
.y43{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y6b{bottom:1020.578850px;}
.y10a{bottom:1021.901786px;}
.ya9{bottom:1025.506800px;}
.yfb{bottom:1031.293746px;}
.y148{bottom:1031.308722px;}
.y14b{bottom:1034.127346px;}
.y1a5{bottom:1037.054850px;}
.y79{bottom:1037.078700px;}
.y42{bottom:1037.078850px;}
.y11e{bottom:1040.758941px;}
.ya8{bottom:1045.990800px;}
.y2{bottom:1049.282550px;}
.yf2{bottom:1050.150900px;}
.y13a{bottom:1051.853777px;}
.y1a4{bottom:1058.060850px;}
.y78{bottom:1058.078700px;}
.y41{bottom:1058.078850px;}
.y11d{bottom:1059.605607px;}
.y17e{bottom:1063.529250px;}
.ya7{bottom:1066.474800px;}
.y139{bottom:1067.716732px;}
.y10c{bottom:1069.023696px;}
.y141{bottom:1078.438741px;}
.y113{bottom:1078.452274px;}
.y1a3{bottom:1079.066850px;}
.y77{bottom:1079.078700px;}
.y40{bottom:1079.078850px;}
.y13d{bottom:1084.825125px;}
.ya6{bottom:1086.958800px;}
.yfe{bottom:1087.859875px;}
.yd7{bottom:1092.029250px;}
.y10e{bottom:1097.298940px;}
.y14d{bottom:1099.002524px;}
.y156{bottom:1099.723567px;}
.y1a2{bottom:1100.072850px;}
.y3f{bottom:1100.078850px;}
.y134{bottom:1106.690227px;}
.ya5{bottom:1107.442800px;}
.y10{bottom:1109.815500px;}
.y76{bottom:1112.695800px;}
.y3e{bottom:1121.078850px;}
.yd6{bottom:1124.326650px;}
.y17d{bottom:1125.451800px;}
.ya4{bottom:1128.226800px;}
.y3a{bottom:1159.189500px;}
.y39{bottom:1178.689500px;}
.y3d{bottom:1178.692050px;}
.h19{height:26.025892px;}
.h16{height:28.431906px;}
.h18{height:28.452523px;}
.h17{height:29.148849px;}
.h1a{height:31.478457px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h14{height:37.875000px;}
.h12{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h1b{height:43.899000px;}
.h9{height:47.343750px;}
.hc{height:48.750000px;}
.h11{height:50.176758px;}
.h10{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h3{height:81.231445px;}
.h15{height:666.354000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.071650px;}
.xc{left:108.285450px;}
.x11{left:112.251600px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x10{left:126.207600px;}
.x13{left:193.516350px;}
.x44{left:221.991779px;}
.x24{left:241.727104px;}
.x2e{left:244.401506px;}
.x28{left:260.752064px;}
.x4{left:300.189000px;}
.x3f{left:301.372103px;}
.xb{left:317.199000px;}
.x18{left:319.514985px;}
.x4a{left:348.970331px;}
.x50{left:351.985604px;}
.x14{left:361.866600px;}
.x4d{left:363.203915px;}
.x40{left:369.702670px;}
.x47{left:371.172850px;}
.x52{left:373.598177px;}
.x56{left:374.628239px;}
.x43{left:377.587327px;}
.x4e{left:383.411859px;}
.x26{left:386.165774px;}
.x39{left:388.724912px;}
.x5b{left:390.949179px;}
.x2b{left:392.804583px;}
.x3{left:396.050700px;}
.x2c{left:399.401441px;}
.x31{left:402.359015px;}
.x1f{left:403.701459px;}
.x49{left:406.485248px;}
.x1a{left:407.707315px;}
.x5a{left:411.999901px;}
.xf{left:413.604000px;}
.x33{left:416.821760px;}
.x53{left:420.259986px;}
.xd{left:423.144000px;}
.x55{left:426.430994px;}
.x54{left:430.860260px;}
.x2f{left:433.424026px;}
.x1e{left:440.356495px;}
.x37{left:443.807100px;}
.x1b{left:446.554312px;}
.x3b{left:447.687605px;}
.x19{left:448.966517px;}
.x1c{left:450.854330px;}
.x23{left:453.067769px;}
.x38{left:455.616419px;}
.x30{left:463.629034px;}
.x46{left:466.079017px;}
.x3c{left:477.242366px;}
.x4c{left:491.193801px;}
.xe{left:494.754000px;}
.x35{left:497.945280px;}
.x12{left:504.759600px;}
.x41{left:506.869472px;}
.x45{left:508.199188px;}
.x4b{left:513.939443px;}
.x21{left:521.951968px;}
.x3a{left:523.546224px;}
.x16{left:525.496359px;}
.x42{left:532.930040px;}
.x3e{left:536.563350px;}
.x51{left:542.453432px;}
.x4f{left:545.122229px;}
.x48{left:554.065040px;}
.x15{left:556.320150px;}
.x32{left:557.778464px;}
.x3d{left:559.299304px;}
.x2a{left:561.585553px;}
.x17{left:563.042862px;}
.x20{left:568.339729px;}
.x1d{left:574.097056px;}
.x22{left:577.558549px;}
.x2d{left:579.771485px;}
.x34{left:583.012231px;}
.x27{left:584.648335px;}
.x25{left:591.077388px;}
.x59{left:632.124150px;}
.x9{left:646.539900px;}
.x29{left:650.837157px;}
.x36{left:654.224732px;}
.x8{left:680.127900px;}
.x58{left:733.528347px;}
.x57{left:735.026250px;}
.x1{left:807.081450px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls30{letter-spacing:-7.008000pt;}
.ls3b{letter-spacing:-3.456000pt;}
.ls29{letter-spacing:-2.880000pt;}
.ls22{letter-spacing:-2.088247pt;}
.lsf{letter-spacing:-2.050957pt;}
.ls1d{letter-spacing:-2.013667pt;}
.ls26{letter-spacing:-1.981722pt;}
.ls11{letter-spacing:-1.976377pt;}
.ls25{letter-spacing:-1.940436pt;}
.ls10{letter-spacing:-1.939087pt;}
.ls1c{letter-spacing:-1.864507pt;}
.ls14{letter-spacing:-1.789926pt;}
.ls16{letter-spacing:-1.752636pt;}
.ls20{letter-spacing:-1.715346pt;}
.ls24{letter-spacing:-1.678056pt;}
.ls23{letter-spacing:-1.640766pt;}
.ls13{letter-spacing:-1.603476pt;}
.ls12{letter-spacing:-1.566186pt;}
.ls1e{letter-spacing:-1.528895pt;}
.ls18{letter-spacing:-1.491605pt;}
.ls15{letter-spacing:-1.454315pt;}
.ls17{letter-spacing:-1.417025pt;}
.ls1b{letter-spacing:-1.379735pt;}
.ls1a{letter-spacing:-1.342445pt;}
.ls19{letter-spacing:-1.305155pt;}
.ls21{letter-spacing:-1.193284pt;}
.ls5{letter-spacing:-1.088000pt;}
.lsc{letter-spacing:-1.066667pt;}
.ls1f{letter-spacing:-1.044124pt;}
.ls3c{letter-spacing:-1.013333pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls3a{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.725333pt;}
.ls6{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsb{letter-spacing:-0.597333pt;}
.ls2f{letter-spacing:-0.576000pt;}
.ls36{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.410432pt;}
.ls2d{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.362667pt;}
.lsd{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.506667pt;}
.ls1{letter-spacing:0.533333pt;}
.ls31{letter-spacing:0.835200pt;}
.lsa{letter-spacing:1.066667pt;}
.ls2a{letter-spacing:2.424000pt;}
.ls39{letter-spacing:3.413333pt;}
.lse{letter-spacing:3.626667pt;}
.ls38{letter-spacing:6.698667pt;}
.ls33{letter-spacing:7.600000pt;}
.ls2e{letter-spacing:10.065600pt;}
.ls28{letter-spacing:10.564800pt;}
.ls37{letter-spacing:11.146667pt;}
.ls2b{letter-spacing:12.533333pt;}
.ls27{letter-spacing:15.786667pt;}
.ls32{letter-spacing:26.928000pt;}
.ls0{letter-spacing:37.269301pt;}
.ws6{word-spacing:-15.936000pt;}
.wsa9{word-spacing:-14.608000pt;}
.ws129{word-spacing:-13.813333pt;}
.ws113{word-spacing:-13.706667pt;}
.ws7{word-spacing:-13.600000pt;}
.ws30{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.280000pt;}
.ws154{word-spacing:-13.226667pt;}
.wsaa{word-spacing:-13.173333pt;}
.ws2f{word-spacing:-13.066667pt;}
.ws17b{word-spacing:-12.533333pt;}
.ws155{word-spacing:-12.480000pt;}
.ws156{word-spacing:-12.266667pt;}
.ws68{word-spacing:-12.160000pt;}
.ws136{word-spacing:-12.106667pt;}
.ws16a{word-spacing:-12.053333pt;}
.ws69{word-spacing:-12.000000pt;}
.wsed{word-spacing:-11.952000pt;}
.ws185{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws19f{word-spacing:-11.424000pt;}
.ws12a{word-spacing:-11.376000pt;}
.ws165{word-spacing:-11.184000pt;}
.ws8{word-spacing:-10.992000pt;}
.ws186{word-spacing:-10.944000pt;}
.wsa{word-spacing:-10.800000pt;}
.wsc6{word-spacing:-10.321467pt;}
.wsb{word-spacing:-9.770667pt;}
.ws2d{word-spacing:-9.600000pt;}
.wsbb{word-spacing:-9.322533pt;}
.wsec{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws166{word-spacing:-8.496000pt;}
.wsc5{word-spacing:-8.339745pt;}
.wsc1{word-spacing:-7.980089pt;}
.wsc2{word-spacing:-7.942798pt;}
.wsc0{word-spacing:-7.868218pt;}
.wsbe{word-spacing:-7.756348pt;}
.wsbd{word-spacing:-7.719058pt;}
.ws50{word-spacing:-7.711147pt;}
.wsc4{word-spacing:-7.607187pt;}
.wsbf{word-spacing:-7.569897pt;}
.wsc3{word-spacing:-7.532607pt;}
.wsbc{word-spacing:-7.383446pt;}
.wsba{word-spacing:-7.346156pt;}
.ws152{word-spacing:-6.240000pt;}
.ws102{word-spacing:-5.653333pt;}
.ws16{word-spacing:-4.992000pt;}
.ws12b{word-spacing:-4.944000pt;}
.wsf{word-spacing:-4.810667pt;}
.ws12c{word-spacing:-4.533333pt;}
.ws12d{word-spacing:-4.480000pt;}
.ws12f{word-spacing:-4.426667pt;}
.wsad{word-spacing:-4.320000pt;}
.ws128{word-spacing:-4.160000pt;}
.ws127{word-spacing:-3.946667pt;}
.ws164{word-spacing:-3.893333pt;}
.ws192{word-spacing:-3.648000pt;}
.ws149{word-spacing:-3.520000pt;}
.ws2b{word-spacing:-3.413333pt;}
.wsae{word-spacing:-3.146667pt;}
.ws11f{word-spacing:-3.093333pt;}
.ws11e{word-spacing:-3.040000pt;}
.ws13c{word-spacing:-2.880000pt;}
.wsb2{word-spacing:-2.826667pt;}
.ws116{word-spacing:-2.720000pt;}
.wsf2{word-spacing:-2.666667pt;}
.wsf1{word-spacing:-2.613333pt;}
.ws167{word-spacing:-2.592000pt;}
.ws14f{word-spacing:-2.560000pt;}
.ws168{word-spacing:-2.544000pt;}
.ws35{word-spacing:-2.506667pt;}
.ws142{word-spacing:-2.496000pt;}
.wsb3{word-spacing:-2.453333pt;}
.ws1a{word-spacing:-2.400000pt;}
.ws1e{word-spacing:-2.256000pt;}
.ws7e{word-spacing:-2.240000pt;}
.ws1f{word-spacing:-2.208000pt;}
.ws117{word-spacing:-2.186667pt;}
.ws14a{word-spacing:-2.133333pt;}
.ws198{word-spacing:-2.064000pt;}
.ws184{word-spacing:-2.026667pt;}
.ws58{word-spacing:-1.973333pt;}
.ws19e{word-spacing:-1.968000pt;}
.wse8{word-spacing:-1.939087pt;}
.wsf3{word-spacing:-1.920000pt;}
.ws84{word-spacing:-1.866667pt;}
.ws22{word-spacing:-1.776000pt;}
.wse1{word-spacing:-1.752636pt;}
.ws172{word-spacing:-1.706667pt;}
.wsfb{word-spacing:-1.600000pt;}
.wsd4{word-spacing:-1.566186pt;}
.ws61{word-spacing:-1.546667pt;}
.wse5{word-spacing:-1.528895pt;}
.ws157{word-spacing:-1.493333pt;}
.wse3{word-spacing:-1.491605pt;}
.wsda{word-spacing:-1.454315pt;}
.ws17e{word-spacing:-1.440000pt;}
.wsd7{word-spacing:-1.417025pt;}
.ws182{word-spacing:-1.386667pt;}
.ws21{word-spacing:-1.344000pt;}
.ws1a0{word-spacing:-1.296000pt;}
.ws26{word-spacing:-1.248000pt;}
.ws111{word-spacing:-1.226667pt;}
.ws42{word-spacing:-1.120000pt;}
.ws57{word-spacing:-1.066667pt;}
.ws34{word-spacing:-1.013333pt;}
.wsfc{word-spacing:-0.960000pt;}
.ws19b{word-spacing:-0.912000pt;}
.ws176{word-spacing:-0.906667pt;}
.ws23{word-spacing:-0.864000pt;}
.ws100{word-spacing:-0.853333pt;}
.ws188{word-spacing:-0.816000pt;}
.wsac{word-spacing:-0.800000pt;}
.ws13{word-spacing:-0.720000pt;}
.ws14b{word-spacing:-0.586667pt;}
.ws2c{word-spacing:-0.533333pt;}
.ws11b{word-spacing:-0.480000pt;}
.ws0{word-spacing:-0.453333pt;}
.ws1a3{word-spacing:-0.432000pt;}
.ws8c{word-spacing:-0.384000pt;}
.ws36{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.272000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws37{word-spacing:-0.106667pt;}
.ws82{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.048000pt;}
.ws2e{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.ws169{word-spacing:0.048000pt;}
.ws5f{word-spacing:0.053333pt;}
.wse{word-spacing:0.090667pt;}
.ws62{word-spacing:0.106667pt;}
.ws15b{word-spacing:0.160000pt;}
.ws10b{word-spacing:0.213333pt;}
.ws14e{word-spacing:0.266667pt;}
.ws171{word-spacing:0.320000pt;}
.ws3f{word-spacing:0.373333pt;}
.ws18{word-spacing:0.384000pt;}
.ws11d{word-spacing:0.426667pt;}
.ws17{word-spacing:0.480000pt;}
.ws13e{word-spacing:0.533333pt;}
.ws135{word-spacing:0.576000pt;}
.ws137{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.ws83{word-spacing:0.640000pt;}
.ws10a{word-spacing:0.693333pt;}
.ws158{word-spacing:0.746667pt;}
.ws4e{word-spacing:0.800000pt;}
.ws141{word-spacing:0.816000pt;}
.wsf5{word-spacing:0.853333pt;}
.ws140{word-spacing:0.864000pt;}
.ws148{word-spacing:0.906667pt;}
.ws1a4{word-spacing:0.912000pt;}
.ws7d{word-spacing:0.960000pt;}
.ws3e{word-spacing:1.013333pt;}
.wse4{word-spacing:1.044124pt;}
.ws45{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.120000pt;}
.ws67{word-spacing:1.173333pt;}
.ws38{word-spacing:1.280000pt;}
.wsdb{word-spacing:1.305155pt;}
.ws131{word-spacing:1.333333pt;}
.wsdc{word-spacing:1.342445pt;}
.wsdd{word-spacing:1.379735pt;}
.wsb4{word-spacing:1.386667pt;}
.ws189{word-spacing:1.392000pt;}
.wsd8{word-spacing:1.417025pt;}
.wsf7{word-spacing:1.440000pt;}
.wsd6{word-spacing:1.454315pt;}
.ws1b{word-spacing:1.488000pt;}
.wsd9{word-spacing:1.491605pt;}
.ws65{word-spacing:1.493333pt;}
.wse2{word-spacing:1.528895pt;}
.wsd2{word-spacing:1.566186pt;}
.ws5e{word-spacing:1.600000pt;}
.wsd3{word-spacing:1.603476pt;}
.ws183{word-spacing:1.653333pt;}
.wse9{word-spacing:1.678056pt;}
.ws17d{word-spacing:1.706667pt;}
.wse7{word-spacing:1.715346pt;}
.ws24{word-spacing:1.728000pt;}
.wsde{word-spacing:1.752636pt;}
.ws25{word-spacing:1.776000pt;}
.wsd5{word-spacing:1.789926pt;}
.ws17f{word-spacing:1.813333pt;}
.wsdf{word-spacing:1.864507pt;}
.ws32{word-spacing:1.866667pt;}
.ws20{word-spacing:1.872000pt;}
.ws125{word-spacing:1.920000pt;}
.wsd0{word-spacing:1.939087pt;}
.wsea{word-spacing:1.940436pt;}
.wsf6{word-spacing:1.973333pt;}
.wsd1{word-spacing:1.976377pt;}
.wseb{word-spacing:1.981722pt;}
.wse0{word-spacing:2.013667pt;}
.ws13d{word-spacing:2.026667pt;}
.wscf{word-spacing:2.050957pt;}
.wsff{word-spacing:2.080000pt;}
.wse6{word-spacing:2.088247pt;}
.ws18a{word-spacing:2.112000pt;}
.ws159{word-spacing:2.133333pt;}
.ws16c{word-spacing:2.186667pt;}
.ws16d{word-spacing:2.240000pt;}
.ws10e{word-spacing:2.293333pt;}
.ws193{word-spacing:2.304000pt;}
.ws15e{word-spacing:2.346667pt;}
.ws19{word-spacing:2.400000pt;}
.ws112{word-spacing:2.448000pt;}
.ws5c{word-spacing:2.453333pt;}
.ws1a9{word-spacing:2.496000pt;}
.ws1a5{word-spacing:2.544000pt;}
.wsb0{word-spacing:2.560000pt;}
.ws48{word-spacing:2.613333pt;}
.ws1c{word-spacing:2.640000pt;}
.ws53{word-spacing:2.720000pt;}
.ws101{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.826667pt;}
.ws59{word-spacing:2.880000pt;}
.ws18b{word-spacing:2.928000pt;}
.ws124{word-spacing:2.986667pt;}
.ws14d{word-spacing:3.040000pt;}
.ws28{word-spacing:3.120000pt;}
.ws105{word-spacing:3.146667pt;}
.ws27{word-spacing:3.168000pt;}
.ws1d{word-spacing:3.264000pt;}
.ws47{word-spacing:3.306667pt;}
.ws109{word-spacing:3.360000pt;}
.wsaf{word-spacing:3.413333pt;}
.ws49{word-spacing:3.466667pt;}
.ws147{word-spacing:3.520000pt;}
.ws130{word-spacing:3.573333pt;}
.ws16b{word-spacing:3.626667pt;}
.ws86{word-spacing:3.680000pt;}
.ws88{word-spacing:3.733333pt;}
.ws39{word-spacing:3.786667pt;}
.ws13b{word-spacing:3.893333pt;}
.ws123{word-spacing:3.946667pt;}
.ws18c{word-spacing:3.984000pt;}
.ws4b{word-spacing:4.000000pt;}
.ws3d{word-spacing:4.053333pt;}
.ws11a{word-spacing:4.106667pt;}
.ws180{word-spacing:4.160000pt;}
.ws103{word-spacing:4.213333pt;}
.ws161{word-spacing:4.266667pt;}
.ws7a{word-spacing:4.320000pt;}
.wsf4{word-spacing:4.373333pt;}
.wscc{word-spacing:4.416000pt;}
.ws56{word-spacing:4.426667pt;}
.ws13f{word-spacing:4.480000pt;}
.ws14{word-spacing:4.608000pt;}
.ws15{word-spacing:4.656000pt;}
.ws14c{word-spacing:4.693333pt;}
.wsab{word-spacing:4.746667pt;}
.ws80{word-spacing:4.800000pt;}
.ws7f{word-spacing:4.853333pt;}
.wsca{word-spacing:4.960000pt;}
.ws17a{word-spacing:5.013333pt;}
.ws19a{word-spacing:5.040000pt;}
.ws87{word-spacing:5.066667pt;}
.ws199{word-spacing:5.088000pt;}
.ws11c{word-spacing:5.173333pt;}
.ws33{word-spacing:5.226667pt;}
.ws31{word-spacing:5.333333pt;}
.ws5b{word-spacing:5.493333pt;}
.ws3c{word-spacing:5.546667pt;}
.ws66{word-spacing:5.706667pt;}
.ws60{word-spacing:5.760000pt;}
.ws197{word-spacing:5.904000pt;}
.ws17c{word-spacing:5.920000pt;}
.ws138{word-spacing:5.973333pt;}
.ws139{word-spacing:6.026667pt;}
.ws89{word-spacing:6.080000pt;}
.wsb1{word-spacing:6.133333pt;}
.wsc9{word-spacing:6.186667pt;}
.ws46{word-spacing:6.293333pt;}
.ws190{word-spacing:6.336000pt;}
.ws85{word-spacing:6.400000pt;}
.wscd{word-spacing:6.432000pt;}
.ws13a{word-spacing:6.453333pt;}
.wsce{word-spacing:6.480000pt;}
.ws4a{word-spacing:6.506667pt;}
.ws162{word-spacing:6.613333pt;}
.ws163{word-spacing:6.666667pt;}
.ws15f{word-spacing:6.720000pt;}
.ws3b{word-spacing:6.773333pt;}
.ws160{word-spacing:6.826667pt;}
.ws79{word-spacing:6.880000pt;}
.wsc8{word-spacing:6.933333pt;}
.ws15a{word-spacing:7.040000pt;}
.wsb8{word-spacing:7.146667pt;}
.ws104{word-spacing:7.200000pt;}
.ws107{word-spacing:7.253333pt;}
.ws106{word-spacing:7.306667pt;}
.ws4f{word-spacing:7.360000pt;}
.ws122{word-spacing:7.413333pt;}
.ws174{word-spacing:7.466667pt;}
.ws179{word-spacing:7.573333pt;}
.ws18f{word-spacing:7.632000pt;}
.ws12e{word-spacing:7.893333pt;}
.ws195{word-spacing:7.968000pt;}
.ws15d{word-spacing:8.000000pt;}
.wsb9{word-spacing:8.266667pt;}
.ws146{word-spacing:8.320000pt;}
.ws1a8{word-spacing:8.352000pt;}
.ws110{word-spacing:8.373333pt;}
.ws181{word-spacing:8.480000pt;}
.ws151{word-spacing:8.586667pt;}
.ws150{word-spacing:8.640000pt;}
.ws1a1{word-spacing:8.688000pt;}
.ws5d{word-spacing:8.693333pt;}
.wscb{word-spacing:8.906667pt;}
.ws54{word-spacing:8.960000pt;}
.ws10f{word-spacing:9.226667pt;}
.ws64{word-spacing:9.280000pt;}
.ws19c{word-spacing:9.408000pt;}
.ws1a2{word-spacing:9.456000pt;}
.ws4d{word-spacing:9.653333pt;}
.ws63{word-spacing:9.706667pt;}
.ws18e{word-spacing:9.840000pt;}
.ws40{word-spacing:9.973333pt;}
.ws18d{word-spacing:10.080000pt;}
.ws7b{word-spacing:10.133333pt;}
.ws29{word-spacing:10.186667pt;}
.wsf9{word-spacing:10.416000pt;}
.ws177{word-spacing:10.506667pt;}
.wsfa{word-spacing:10.512000pt;}
.ws133{word-spacing:10.560000pt;}
.wsf8{word-spacing:10.608000pt;}
.ws178{word-spacing:10.613333pt;}
.ws134{word-spacing:10.656000pt;}
.ws132{word-spacing:10.704000pt;}
.ws2a{word-spacing:10.720000pt;}
.ws175{word-spacing:10.880000pt;}
.ws19d{word-spacing:10.896000pt;}
.ws15c{word-spacing:11.200000pt;}
.ws5a{word-spacing:11.306667pt;}
.ws194{word-spacing:11.328000pt;}
.ws126{word-spacing:11.360000pt;}
.ws196{word-spacing:11.472000pt;}
.ws55{word-spacing:11.573333pt;}
.ws173{word-spacing:11.893333pt;}
.ws170{word-spacing:12.426667pt;}
.ws120{word-spacing:12.480000pt;}
.ws121{word-spacing:12.586667pt;}
.ws81{word-spacing:13.066667pt;}
.ws145{word-spacing:13.280000pt;}
.wsfe{word-spacing:13.600000pt;}
.wsfd{word-spacing:13.706667pt;}
.ws153{word-spacing:13.776000pt;}
.ws41{word-spacing:14.080000pt;}
.wsf0{word-spacing:14.133333pt;}
.ws187{word-spacing:14.256000pt;}
.wsc7{word-spacing:14.346667pt;}
.ws191{word-spacing:14.832000pt;}
.wsb6{word-spacing:15.146667pt;}
.wsb7{word-spacing:15.200000pt;}
.ws10d{word-spacing:15.786667pt;}
.wsef{word-spacing:15.840000pt;}
.ws10c{word-spacing:15.893333pt;}
.wsee{word-spacing:15.946667pt;}
.ws3a{word-spacing:16.266667pt;}
.ws108{word-spacing:16.746667pt;}
.ws1a6{word-spacing:16.800000pt;}
.ws16f{word-spacing:18.293333pt;}
.ws16e{word-spacing:18.453333pt;}
.ws7c{word-spacing:19.040000pt;}
.ws12{word-spacing:19.392000pt;}
.ws43{word-spacing:20.266667pt;}
.ws44{word-spacing:20.426667pt;}
.ws4c{word-spacing:21.280000pt;}
.ws1a7{word-spacing:21.792000pt;}
.ws115{word-spacing:24.426667pt;}
.ws114{word-spacing:24.693333pt;}
.wsb5{word-spacing:25.706667pt;}
.ws144{word-spacing:26.933333pt;}
.ws143{word-spacing:27.093333pt;}
.ws1{word-spacing:29.618915pt;}
.ws119{word-spacing:40.960000pt;}
.ws118{word-spacing:41.333333pt;}
.ws52{word-spacing:108.501333pt;}
.ws51{word-spacing:246.361600pt;}
.wsa8{word-spacing:246.528000pt;}
.ws99{word-spacing:250.197333pt;}
.ws9d{word-spacing:253.610667pt;}
.ws70{word-spacing:255.488000pt;}
.ws8e{word-spacing:255.658667pt;}
.wsa5{word-spacing:258.090667pt;}
.ws90{word-spacing:259.157333pt;}
.ws78{word-spacing:261.162667pt;}
.ws95{word-spacing:319.232000pt;}
.ws74{word-spacing:322.944000pt;}
.ws6e{word-spacing:324.778667pt;}
.ws9c{word-spacing:325.376000pt;}
.ws97{word-spacing:327.381333pt;}
.ws9a{word-spacing:327.466667pt;}
.ws9f{word-spacing:327.765333pt;}
.ws76{word-spacing:328.917333pt;}
.ws72{word-spacing:329.386667pt;}
.ws9e{word-spacing:329.600000pt;}
.wsa1{word-spacing:329.770667pt;}
.ws75{word-spacing:330.410667pt;}
.wsa7{word-spacing:330.581333pt;}
.ws6c{word-spacing:332.061867pt;}
.ws6f{word-spacing:353.600000pt;}
.ws6b{word-spacing:362.534400pt;}
.ws96{word-spacing:373.546667pt;}
.ws6d{word-spacing:385.706667pt;}
.ws9b{word-spacing:400.725333pt;}
.wsa4{word-spacing:407.850667pt;}
.ws71{word-spacing:425.685333pt;}
.ws8f{word-spacing:429.184000pt;}
.wsa6{word-spacing:431.488000pt;}
.wsa3{word-spacing:440.789333pt;}
.ws93{word-spacing:442.487467pt;}
.ws94{word-spacing:448.000000pt;}
.ws6a{word-spacing:454.365867pt;}
.wsa2{word-spacing:455.466667pt;}
.ws8d{word-spacing:463.010133pt;}
.ws91{word-spacing:473.557333pt;}
.ws73{word-spacing:473.770667pt;}
.ws92{word-spacing:475.251200pt;}
.ws98{word-spacing:484.906667pt;}
.wsa0{word-spacing:485.358933pt;}
.ws77{word-spacing:491.648000pt;}
._8{margin-left:-9.965333pt;}
._65{margin-left:-7.992000pt;}
._6b{margin-left:-7.008000pt;}
._e{margin-left:-6.086400pt;}
._5{margin-left:-4.542400pt;}
._2{margin-left:-3.536000pt;}
._1{margin-left:-2.030933pt;}
._0{margin-left:-1.042667pt;}
._3{width:1.269333pt;}
._4{width:2.874133pt;}
._7{width:4.128000pt;}
._a{width:5.877333pt;}
._61{width:7.573333pt;}
._63{width:8.664533pt;}
._b{width:10.341333pt;}
._d{width:11.572267pt;}
._c{width:14.576000pt;}
._66{width:15.508267pt;}
._1f{width:16.976533pt;}
._1e{width:18.457067pt;}
._9{width:20.618667pt;}
._64{width:22.421333pt;}
._6a{width:24.268267pt;}
._62{width:25.866667pt;}
._69{width:27.475733pt;}
._6{width:32.328533pt;}
._67{width:37.563200pt;}
._68{width:39.208000pt;}
._11{width:50.432000pt;}
._1a{width:65.280000pt;}
._14{width:78.378667pt;}
._15{width:82.432000pt;}
._1d{width:87.338667pt;}
._19{width:99.968000pt;}
._1b{width:102.741333pt;}
._12{width:106.112000pt;}
._1c{width:111.957333pt;}
._18{width:124.629333pt;}
._13{width:128.104000pt;}
._10{width:129.194667pt;}
._17{width:142.250667pt;}
._16{width:171.498667pt;}
._f{width:178.645333pt;}
._50{width:233.728000pt;}
._5b{width:349.673600pt;}
._58{width:379.197333pt;}
._48{width:383.402667pt;}
._42{width:384.512000pt;}
._5d{width:390.394667pt;}
._22{width:395.374933pt;}
._44{width:404.541333pt;}
._39{width:416.640000pt;}
._31{width:428.416000pt;}
._2f{width:438.784000pt;}
._36{width:441.440000pt;}
._4a{width:457.106667pt;}
._56{width:489.088000pt;}
._2b{width:493.269333pt;}
._28{width:515.840000pt;}
._3b{width:517.856000pt;}
._20{width:566.058667pt;}
._21{width:570.112000pt;}
._4f{width:622.660267pt;}
._3f{width:638.764267pt;}
._24{width:647.534933pt;}
._2a{width:668.740267pt;}
._4c{width:680.260267pt;}
._51{width:693.785600pt;}
._43{width:696.345600pt;}
._2c{width:704.281600pt;}
._3c{width:706.756267pt;}
._3e{width:712.772267pt;}
._41{width:717.849600pt;}
._57{width:719.667200pt;}
._25{width:722.329600pt;}
._26{width:730.436267pt;}
._40{width:741.334933pt;}
._2e{width:750.532267pt;}
._55{width:754.397867pt;}
._49{width:766.318933pt;}
._52{width:768.580267pt;}
._3a{width:774.913600pt;}
._29{width:783.513600pt;}
._33{width:784.622933pt;}
._47{width:786.542933pt;}
._5f{width:789.998933pt;}
._5c{width:791.833600pt;}
._23{width:794.606933pt;}
._5e{width:797.508267pt;}
._59{width:806.169600pt;}
._38{width:816.665600pt;}
._27{width:820.420267pt;}
._4e{width:823.278933pt;}
._2d{width:828.953600pt;}
._60{width:830.398400pt;}
._4b{width:831.342933pt;}
._37{width:832.452267pt;}
._35{width:834.414933pt;}
._3d{width:836.310933pt;}
._4d{width:840.712533pt;}
._34{width:842.052267pt;}
._45{width:850.286933pt;}
._53{width:854.052267pt;}
._5a{width:859.118933pt;}
._30{width:870.468267pt;}
._46{width:883.054933pt;}
._54{width:908.580267pt;}
._32{width:942.958933pt;}
.fs9{font-size:31.093333pt;}
.fsb{font-size:33.294933pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:37.290133pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fsc{font-size:41.285867pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:0.028133pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.702267pt;}
.y1d1{bottom:100.258533pt;}
.y1a1{bottom:100.439733pt;}
.yea{bottom:100.514400pt;}
.y16c{bottom:100.514533pt;}
.yf{bottom:104.182267pt;}
.y2c{bottom:104.188933pt;}
.y175{bottom:107.103867pt;}
.yd5{bottom:110.409600pt;}
.ya3{bottom:111.036800pt;}
.y16f{bottom:116.322267pt;}
.ye{bottom:116.979067pt;}
.y1d0{bottom:118.930533pt;}
.y1a0{bottom:119.111733pt;}
.ye9{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.y2b{bottom:122.855600pt;}
.y17c{bottom:124.026133pt;}
.y174{bottom:124.707867pt;}
.y75{bottom:126.505867pt;}
.yd4{bottom:128.617600pt;}
.ya2{bottom:129.426133pt;}
.yd{bottom:129.775867pt;}
.y16e{bottom:133.926267pt;}
.y1cf{bottom:137.602533pt;}
.y19f{bottom:137.783733pt;}
.ye8{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y2a{bottom:141.522267pt;}
.y173{bottom:142.311867pt;}
.yc{bottom:142.575867pt;}
.yd3{bottom:146.825600pt;}
.y74{bottom:147.359200pt;}
.y178{bottom:147.395733pt;}
.ya1{bottom:147.815467pt;}
.y16d{bottom:151.530267pt;}
.y1ce{bottom:156.274533pt;}
.y19e{bottom:156.455733pt;}
.ye7{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.y177{bottom:164.999733pt;}
.yd2{bottom:165.033600pt;}
.ya0{bottom:166.204800pt;}
.y73{bottom:168.212533pt;}
.y29{bottom:173.692667pt;}
.y1cd{bottom:174.946533pt;}
.y19d{bottom:175.127733pt;}
.ye6{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y17b{bottom:180.388533pt;}
.y38{bottom:180.842133pt;}
.y176{bottom:182.603733pt;}
.yd1{bottom:183.241600pt;}
.y9f{bottom:184.594133pt;}
.y72{bottom:189.065867pt;}
.y1cc{bottom:193.618533pt;}
.y19c{bottom:193.799733pt;}
.ye5{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.y37{bottom:196.838133pt;}
.yd0{bottom:201.449600pt;}
.y9e{bottom:202.983467pt;}
.y17a{bottom:206.614267pt;}
.y71{bottom:209.919200pt;}
.y1cb{bottom:212.290533pt;}
.y19b{bottom:212.471733pt;}
.ye4{bottom:212.514400pt;}
.y16b{bottom:212.514533pt;}
.y36{bottom:212.834133pt;}
.ycf{bottom:219.657600pt;}
.y9d{bottom:221.372800pt;}
.y65{bottom:224.456533pt;}
.y35{bottom:228.830133pt;}
.y1ca{bottom:230.962533pt;}
.y19a{bottom:231.143733pt;}
.ye3{bottom:231.181067pt;}
.y16a{bottom:231.181200pt;}
.y28{bottom:237.713733pt;}
.yce{bottom:237.865600pt;}
.y70{bottom:238.526000pt;}
.y9c{bottom:239.762133pt;}
.y34{bottom:244.826133pt;}
.y1c9{bottom:249.634533pt;}
.y199{bottom:249.815733pt;}
.ye2{bottom:249.847733pt;}
.y169{bottom:249.847867pt;}
.y64{bottom:253.165333pt;}
.ycd{bottom:256.073600pt;}
.y9b{bottom:258.151467pt;}
.y33{bottom:260.822133pt;}
.y1c8{bottom:268.306533pt;}
.y198{bottom:268.487733pt;}
.ye1{bottom:268.514400pt;}
.y168{bottom:268.514533pt;}
.y27{bottom:274.127333pt;}
.ycc{bottom:274.281600pt;}
.y9a{bottom:276.540800pt;}
.y32{bottom:276.818133pt;}
.y1c7{bottom:286.978533pt;}
.y197{bottom:287.159733pt;}
.ye0{bottom:287.181067pt;}
.y6f{bottom:287.181200pt;}
.y26{bottom:291.731333pt;}
.ycb{bottom:292.489600pt;}
.y31{bottom:292.814133pt;}
.y99{bottom:294.930133pt;}
.y179{bottom:299.947600pt;}
.y1c6{bottom:305.650533pt;}
.y196{bottom:305.831733pt;}
.ydf{bottom:305.847733pt;}
.y63{bottom:305.847867pt;}
.y25{bottom:309.335333pt;}
.yef{bottom:309.966267pt;}
.yca{bottom:310.697600pt;}
.y98{bottom:313.319467pt;}
.y30{bottom:323.930133pt;}
.y1c5{bottom:324.322533pt;}
.y195{bottom:324.503733pt;}
.yde{bottom:324.514400pt;}
.y62{bottom:324.514533pt;}
.y24{bottom:326.939333pt;}
.yee{bottom:327.570267pt;}
.yc9{bottom:328.905600pt;}
.y97{bottom:331.708800pt;}
.y2f{bottom:339.930133pt;}
.y1c4{bottom:342.994533pt;}
.y194{bottom:343.175733pt;}
.ydd{bottom:343.181067pt;}
.y61{bottom:343.181200pt;}
.y23{bottom:344.543333pt;}
.yed{bottom:345.174267pt;}
.yc8{bottom:347.113600pt;}
.y96{bottom:350.098133pt;}
.y2e{bottom:355.930133pt;}
.y1c3{bottom:361.666533pt;}
.ydc{bottom:361.847733pt;}
.y60{bottom:361.847867pt;}
.y22{bottom:362.147333pt;}
.yec{bottom:362.778267pt;}
.yc7{bottom:365.321600pt;}
.y95{bottom:368.487467pt;}
.y2d{bottom:371.930133pt;}
.y21{bottom:379.751333pt;}
.y1c2{bottom:380.338533pt;}
.yeb{bottom:380.382267pt;}
.y164{bottom:380.514400pt;}
.y5f{bottom:380.514533pt;}
.yc6{bottom:383.529600pt;}
.y94{bottom:386.962133pt;}
.y193{bottom:393.280800pt;}
.y20{bottom:397.355333pt;}
.y1c1{bottom:399.010533pt;}
.ydb{bottom:399.181067pt;}
.y5e{bottom:399.181200pt;}
.yc5{bottom:401.737600pt;}
.yf0{bottom:409.122667pt;}
.y93{bottom:414.057200pt;}
.y1f{bottom:414.959333pt;}
.y1c0{bottom:417.682533pt;}
.yda{bottom:417.847733pt;}
.y5d{bottom:417.847867pt;}
.yc4{bottom:419.945600pt;}
.y115{bottom:430.791728pt;}
.y1e{bottom:432.563333pt;}
.y160{bottom:435.091854pt;}
.y1bf{bottom:436.354533pt;}
.yd9{bottom:436.514400pt;}
.y5c{bottom:436.514533pt;}
.yc3{bottom:438.153600pt;}
.y117{bottom:439.172686pt;}
.y140{bottom:439.952066pt;}
.y104{bottom:447.534998pt;}
.y1d{bottom:450.167333pt;}
.y1be{bottom:455.026533pt;}
.y92{bottom:455.181067pt;}
.y5b{bottom:455.181200pt;}
.y109{bottom:455.925278pt;}
.yc2{bottom:456.361600pt;}
.y192{bottom:460.026000pt;}
.y167{bottom:461.476800pt;}
.y12b{bottom:464.273089pt;}
.y1c{bottom:467.771333pt;}
.y15d{bottom:472.248151pt;}
.yf5{bottom:472.654644pt;}
.y14f{bottom:473.305266pt;}
.y1bd{bottom:473.698533pt;}
.y91{bottom:473.847733pt;}
.y5a{bottom:473.847867pt;}
.yc1{bottom:474.569600pt;}
.y166{bottom:479.080800pt;}
.y126{bottom:481.077473pt;}
.y1b{bottom:485.375333pt;}
.yd8{bottom:486.614133pt;}
.y6e{bottom:486.614267pt;}
.y102{bottom:489.421141pt;}
.y1bc{bottom:492.370533pt;}
.y191{bottom:492.509067pt;}
.y90{bottom:492.514400pt;}
.y59{bottom:492.514533pt;}
.y159{bottom:492.766154pt;}
.yc0{bottom:492.777600pt;}
.y165{bottom:496.684800pt;}
.y12f{bottom:497.778274pt;}
.y15b{bottom:499.050573pt;}
.y1a{bottom:502.979333pt;}
.yf9{bottom:506.169151pt;}
.ybf{bottom:510.985600pt;}
.y1bb{bottom:511.042533pt;}
.y190{bottom:511.175733pt;}
.y8f{bottom:511.181067pt;}
.y58{bottom:511.181200pt;}
.y129{bottom:514.549512pt;}
.y19{bottom:520.583333pt;}
.y14c{bottom:521.757717pt;}
.y110{bottom:522.944970pt;}
.ybe{bottom:529.193600pt;}
.y1ba{bottom:529.714533pt;}
.y18f{bottom:529.842400pt;}
.y8e{bottom:529.847733pt;}
.y57{bottom:529.847867pt;}
.y103{bottom:531.316605pt;}
.y13f{bottom:532.045852pt;}
.y172{bottom:538.024533pt;}
.y18{bottom:538.187333pt;}
.y114{bottom:539.706885pt;}
.y155{bottom:540.369585pt;}
.ybd{bottom:547.401600pt;}
.y12c{bottom:548.054696pt;}
.y1b9{bottom:548.386533pt;}
.y18e{bottom:548.509067pt;}
.y8d{bottom:548.514400pt;}
.y56{bottom:548.514533pt;}
.y171{bottom:555.628533pt;}
.y17{bottom:555.791333pt;}
.y107{bottom:556.459478pt;}
.y111{bottom:564.840435pt;}
.ybc{bottom:565.609600pt;}
.y1b8{bottom:567.058533pt;}
.y18d{bottom:567.175733pt;}
.y8c{bottom:567.181067pt;}
.y55{bottom:567.181200pt;}
.y151{bottom:571.084161pt;}
.y10f{bottom:573.212070pt;}
.y170{bottom:573.232533pt;}
.y16{bottom:573.395333pt;}
.y137{bottom:576.711005pt;}
.yf7{bottom:581.569801pt;}
.y127{bottom:582.993733pt;}
.ybb{bottom:583.817600pt;}
.y147{bottom:583.844444pt;}
.y1b7{bottom:585.730533pt;}
.y18c{bottom:585.842400pt;}
.y8b{bottom:585.847733pt;}
.y54{bottom:585.847867pt;}
.y101{bottom:589.964663pt;}
.y15{bottom:590.999333pt;}
.y163{bottom:593.882510pt;}
.y14a{bottom:595.497671pt;}
.y105{bottom:598.345620pt;}
.yba{bottom:602.025600pt;}
.y1b6{bottom:604.402533pt;}
.y18b{bottom:604.509067pt;}
.y8a{bottom:604.514400pt;}
.y53{bottom:604.514533pt;}
.y157{bottom:605.902338pt;}
.yfd{bottom:606.717255pt;}
.y14{bottom:608.603333pt;}
.y11b{bottom:615.116857pt;}
.y154{bottom:616.040645pt;}
.yb9{bottom:620.233600pt;}
.y1b5{bottom:623.074533pt;}
.y18a{bottom:623.175733pt;}
.y89{bottom:623.181067pt;}
.y52{bottom:623.181200pt;}
.y118{bottom:623.497815pt;}
.y13{bottom:626.207333pt;}
.y11a{bottom:631.878772pt;}
.y149{bottom:633.112622pt;}
.yb8{bottom:638.441600pt;}
.yf6{bottom:640.217858pt;}
.y146{bottom:640.953579pt;}
.y1b4{bottom:641.746533pt;}
.y88{bottom:641.847733pt;}
.y51{bottom:641.847867pt;}
.y12{bottom:643.811333pt;}
.y12e{bottom:648.588896pt;}
.y15c{bottom:649.618585pt;}
.yb7{bottom:656.649600pt;}
.yfa{bottom:656.979773pt;}
.y150{bottom:658.200354pt;}
.y1b3{bottom:660.418533pt;}
.y87{bottom:660.514400pt;}
.y50{bottom:660.514533pt;}
.y189{bottom:665.359333pt;}
.y128{bottom:665.360133pt;}
.y145{bottom:666.016340pt;}
.y11{bottom:671.453467pt;}
.y10d{bottom:673.755592pt;}
.yb6{bottom:674.857600pt;}
.y1b2{bottom:679.090533pt;}
.y86{bottom:679.181067pt;}
.y4f{bottom:679.181200pt;}
.yf8{bottom:682.113323pt;}
.y13b{bottom:685.177574pt;}
.y11f{bottom:690.526830pt;}
.y143{bottom:691.603496pt;}
.yb5{bottom:693.065600pt;}
.y1b1{bottom:697.762533pt;}
.y188{bottom:697.821067pt;}
.y85{bottom:697.847733pt;}
.y4e{bottom:697.847867pt;}
.y116{bottom:698.898465pt;}
.y132{bottom:707.236953pt;}
.y13e{bottom:707.826452pt;}
.yb4{bottom:711.273600pt;}
.y131{bottom:715.617911pt;}
.y1b0{bottom:716.434533pt;}
.y187{bottom:716.493067pt;}
.y84{bottom:716.514400pt;}
.y4d{bottom:716.514533pt;}
.y15f{bottom:720.428800pt;}
.yfc{bottom:724.013369pt;}
.y15a{bottom:724.790221pt;}
.yb3{bottom:729.481600pt;}
.y133{bottom:732.370503pt;}
.y1af{bottom:735.106533pt;}
.y186{bottom:735.165067pt;}
.y83{bottom:735.181067pt;}
.y4c{bottom:735.181200pt;}
.y12d{bottom:740.751460pt;}
.y162{bottom:740.763108pt;}
.yb{bottom:741.926133pt;}
.yb2{bottom:747.689600pt;}
.y6d{bottom:747.947600pt;}
.y119{bottom:749.174887pt;}
.y1ae{bottom:753.778533pt;}
.y185{bottom:753.837067pt;}
.y82{bottom:753.847733pt;}
.y4b{bottom:753.847867pt;}
.y121{bottom:757.555844pt;}
.ya{bottom:757.926133pt;}
.y15e{bottom:764.985529pt;}
.y130{bottom:765.885010pt;}
.yb1{bottom:765.897600pt;}
.y153{bottom:766.808427pt;}
.y1ad{bottom:772.450533pt;}
.y184{bottom:772.509067pt;}
.y81{bottom:772.514400pt;}
.y4a{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y11c{bottom:774.308437pt;}
.y108{bottom:782.680072pt;}
.y138{bottom:783.405951pt;}
.yb0{bottom:784.105600pt;}
.y8{bottom:789.926133pt;}
.y122{bottom:791.070352pt;}
.y1ac{bottom:791.122533pt;}
.y80{bottom:791.181067pt;}
.y49{bottom:791.181200pt;}
.y152{bottom:797.048550pt;}
.y135{bottom:799.399518pt;}
.y161{bottom:799.412133pt;}
.yaf{bottom:802.313600pt;}
.y7{bottom:805.926133pt;}
.y10b{bottom:807.813621pt;}
.y1ab{bottom:809.794533pt;}
.y7f{bottom:809.847733pt;}
.y48{bottom:809.847867pt;}
.y183{bottom:814.692667pt;}
.yf3{bottom:816.171352pt;}
.y14e{bottom:818.906674pt;}
.yae{bottom:820.521600pt;}
.y6{bottom:821.926133pt;}
.yff{bottom:824.556891pt;}
.y13c{bottom:825.415833pt;}
.y1aa{bottom:828.466533pt;}
.y7e{bottom:828.514400pt;}
.y47{bottom:828.514533pt;}
.y12a{bottom:832.923347pt;}
.yad{bottom:838.729600pt;}
.y106{bottom:841.318806pt;}
.y1a9{bottom:847.138533pt;}
.y182{bottom:847.159867pt;}
.y7d{bottom:847.181067pt;}
.y46{bottom:847.181200pt;}
.y120{bottom:849.718409pt;}
.y136{bottom:852.959067pt;}
.y5{bottom:853.044267pt;}
.yac{bottom:856.937600pt;}
.y100{bottom:858.071399pt;}
.y1a8{bottom:865.810533pt;}
.y181{bottom:865.831867pt;}
.y7c{bottom:865.847733pt;}
.y45{bottom:865.847867pt;}
.y123{bottom:866.480324pt;}
.y4{bottom:870.644267pt;}
.y124{bottom:874.861281pt;}
.yab{bottom:875.145600pt;}
.y158{bottom:875.283319pt;}
.y125{bottom:883.242239pt;}
.y1a7{bottom:884.482533pt;}
.y180{bottom:884.503867pt;}
.y7b{bottom:884.514400pt;}
.y44{bottom:884.514533pt;}
.y144{bottom:887.227877pt;}
.y6c{bottom:888.514533pt;}
.y112{bottom:891.595229pt;}
.y142{bottom:892.147203pt;}
.yaa{bottom:893.353600pt;}
.yf4{bottom:899.952959pt;}
.y1a6{bottom:903.154533pt;}
.y17f{bottom:903.175867pt;}
.y7a{bottom:903.181067pt;}
.y43{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y6b{bottom:907.181200pt;}
.y10a{bottom:908.357143pt;}
.ya9{bottom:911.561600pt;}
.yfb{bottom:916.705552pt;}
.y148{bottom:916.718864pt;}
.y14b{bottom:919.224308pt;}
.y1a5{bottom:921.826533pt;}
.y79{bottom:921.847733pt;}
.y42{bottom:921.847867pt;}
.y11e{bottom:925.119058pt;}
.ya8{bottom:929.769600pt;}
.y2{bottom:932.695600pt;}
.yf2{bottom:933.467467pt;}
.y13a{bottom:934.981135pt;}
.y1a4{bottom:940.498533pt;}
.y78{bottom:940.514400pt;}
.y41{bottom:940.514533pt;}
.y11d{bottom:941.871651pt;}
.y17e{bottom:945.359333pt;}
.ya7{bottom:947.977600pt;}
.y139{bottom:949.081539pt;}
.y10c{bottom:950.243286pt;}
.y141{bottom:958.612214pt;}
.y113{bottom:958.624243pt;}
.y1a3{bottom:959.170533pt;}
.y77{bottom:959.181067pt;}
.y40{bottom:959.181200pt;}
.y13d{bottom:964.289000pt;}
.ya6{bottom:966.185600pt;}
.yfe{bottom:966.986556pt;}
.yd7{bottom:970.692667pt;}
.y10e{bottom:975.376836pt;}
.y14d{bottom:976.891132pt;}
.y156{bottom:977.532060pt;}
.y1a2{bottom:977.842533pt;}
.y3f{bottom:977.847867pt;}
.y134{bottom:983.724647pt;}
.ya5{bottom:984.393600pt;}
.y10{bottom:986.502667pt;}
.y76{bottom:989.062933pt;}
.y3e{bottom:996.514533pt;}
.yd6{bottom:999.401467pt;}
.y17d{bottom:1000.401600pt;}
.ya4{bottom:1002.868267pt;}
.y3a{bottom:1030.390667pt;}
.y39{bottom:1047.724000pt;}
.y3d{bottom:1047.726267pt;}
.h19{height:23.134126pt;}
.h16{height:25.272805pt;}
.h18{height:25.291132pt;}
.h17{height:25.910088pt;}
.h1a{height:27.980851pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h14{height:33.666667pt;}
.h12{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h1b{height:39.021333pt;}
.h9{height:42.083333pt;}
.hc{height:43.333333pt;}
.h11{height:44.601562pt;}
.h10{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h3{height:72.205729pt;}
.h15{height:592.314667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.174800pt;}
.xc{left:96.253733pt;}
.x11{left:99.779200pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x10{left:112.184533pt;}
.x13{left:172.014533pt;}
.x44{left:197.326026pt;}
.x24{left:214.868537pt;}
.x2e{left:217.245783pt;}
.x28{left:231.779612pt;}
.x4{left:266.834667pt;}
.x3f{left:267.886314pt;}
.xb{left:281.954667pt;}
.x18{left:284.013320pt;}
.x4a{left:310.195850pt;}
.x50{left:312.876092pt;}
.x14{left:321.659200pt;}
.x4d{left:322.847925pt;}
.x40{left:328.624596pt;}
.x47{left:329.931422pt;}
.x52{left:332.087269pt;}
.x56{left:333.002879pt;}
.x43{left:335.633179pt;}
.x4e{left:340.810541pt;}
.x26{left:343.258466pt;}
.x39{left:345.533255pt;}
.x5b{left:347.510381pt;}
.x2b{left:349.159630pt;}
.x3{left:352.045067pt;}
.x2c{left:355.023503pt;}
.x31{left:357.652457pt;}
.x1f{left:358.845742pt;}
.x49{left:361.320220pt;}
.x1a{left:362.406503pt;}
.x5a{left:366.222134pt;}
.xf{left:367.648000pt;}
.x33{left:370.508231pt;}
.x53{left:373.564432pt;}
.xd{left:376.128000pt;}
.x55{left:379.049772pt;}
.x54{left:382.986898pt;}
.x2f{left:385.265801pt;}
.x1e{left:391.427996pt;}
.x37{left:394.495200pt;}
.x1b{left:396.937166pt;}
.x3b{left:397.944537pt;}
.x19{left:399.081349pt;}
.x1c{left:400.759405pt;}
.x23{left:402.726906pt;}
.x38{left:404.992373pt;}
.x30{left:412.114697pt;}
.x46{left:414.292459pt;}
.x3c{left:424.215436pt;}
.x4c{left:436.616712pt;}
.xe{left:439.781333pt;}
.x35{left:442.618026pt;}
.x12{left:448.675200pt;}
.x41{left:450.550642pt;}
.x45{left:451.732612pt;}
.x4b{left:456.835060pt;}
.x21{left:463.957305pt;}
.x3a{left:465.374421pt;}
.x16{left:467.107875pt;}
.x42{left:473.715591pt;}
.x3e{left:476.945200pt;}
.x51{left:482.180828pt;}
.x4f{left:484.553092pt;}
.x48{left:492.502258pt;}
.x15{left:494.506800pt;}
.x32{left:495.803079pt;}
.x3d{left:497.154937pt;}
.x2a{left:499.187159pt;}
.x17{left:500.482544pt;}
.x20{left:505.190870pt;}
.x1d{left:510.308494pt;}
.x22{left:513.385377pt;}
.x2d{left:515.352431pt;}
.x34{left:518.233094pt;}
.x27{left:519.687409pt;}
.x25{left:525.402122pt;}
.x59{left:561.888133pt;}
.x9{left:574.702133pt;}
.x29{left:578.521917pt;}
.x36{left:581.533095pt;}
.x8{left:604.558133pt;}
.x58{left:652.025197pt;}
.x57{left:653.356667pt;}
.x1{left:717.405733pt;}
}




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