
    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_19da0f9dc9ed6e3fc5856f08.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_680c4b747de5a7de837fa1fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_f40a2d6433dce3d49a7be10e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.020000;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_405ca38887df03daed48f9d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_cc7e3cbcd180fb988d60a71e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.751000;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_7a6610e8e15c97d9b210c892.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a056f2e329d17c28544042b1.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_405ca38887df03daed48f9d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_59b064bb1305b5a45d0f09ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.685000;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_05a1883202d74c810aa9bb31.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;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;}
.m7{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.122951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122951,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,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);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-32.400000px;}
.v5{vertical-align:-21.600000px;}
.v7{vertical-align:-13.800000px;}
.va{vertical-align:-11.717400px;}
.vb{vertical-align:-10.350000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.006000px;}
.v9{vertical-align:20.250000px;}
.v8{vertical-align:22.950600px;}
.v6{vertical-align:27.000000px;}
.v3{vertical-align:32.400000px;}
.ls1f{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.612000px;}
.ls16{letter-spacing:-0.459000px;}
.ls15{letter-spacing:-0.357000px;}
.ls25{letter-spacing:-0.306000px;}
.ls6{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.151200px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000300px;}
.ls4{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.459000px;}
.lsc{letter-spacing:0.503400px;}
.lsd{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.535500px;}
.ls1a{letter-spacing:0.629400px;}
.ls12{letter-spacing:0.630000px;}
.lsb{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.765000px;}
.ls1b{letter-spacing:0.780000px;}
.ls19{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.900000px;}
.ls1e{letter-spacing:6.000000px;}
.ls22{letter-spacing:6.600000px;}
.ls14{letter-spacing:7.140000px;}
.ls9{letter-spacing:7.200000px;}
.lse{letter-spacing:9.600000px;}
.lsf{letter-spacing:10.020000px;}
.ls1{letter-spacing:10.800000px;}
.ls10{letter-spacing:13.440000px;}
.ls8{letter-spacing:24.318000px;}
.ls0{letter-spacing:26.796000px;}
.lsa{letter-spacing:48.240000px;}
.ls2{letter-spacing:62.697600px;}
.ls1c{letter-spacing:139.995000px;}
.ls1d{letter-spacing:212.160000px;}
.ls13{letter-spacing:315.757500px;}
.ls17{letter-spacing:632.451000px;}
.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;}
}
.wsd{word-spacing:-24.120000px;}
.ws12e{word-spacing:-20.100000px;}
.ws1{word-spacing:-16.704000px;}
.wsbd{word-spacing:-15.000000px;}
.wse{word-spacing:-14.820000px;}
.wsf{word-spacing:-14.100000px;}
.ws13c{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.176000px;}
.ws140{word-spacing:-12.444000px;}
.wsca{word-spacing:-11.985000px;}
.ws5{word-spacing:-11.844000px;}
.ws17b{word-spacing:-11.781000px;}
.ws4{word-spacing:-11.692800px;}
.wse2{word-spacing:-11.628000px;}
.wse3{word-spacing:-11.526000px;}
.ws132{word-spacing:-11.475000px;}
.ws10{word-spacing:-11.280000px;}
.ws17c{word-spacing:-11.016000px;}
.ws9{word-spacing:-10.944000px;}
.wse4{word-spacing:-10.575000px;}
.wsbc{word-spacing:-10.500000px;}
.ws1c{word-spacing:-10.374000px;}
.ws0{word-spacing:-9.870000px;}
.ws42{word-spacing:-9.600000px;}
.ws133{word-spacing:-8.925000px;}
.wsc5{word-spacing:-8.389500px;}
.ws7{word-spacing:-7.896000px;}
.wsc9{word-spacing:-7.402500px;}
.wsd9{word-spacing:-7.200000px;}
.ws9d{word-spacing:-7.080000px;}
.ws4a{word-spacing:-6.600000px;}
.wse1{word-spacing:-5.610000px;}
.ws154{word-spacing:-5.049000px;}
.wsea{word-spacing:-4.950000px;}
.wsa1{word-spacing:-4.380000px;}
.ws155{word-spacing:-4.233000px;}
.ws148{word-spacing:-3.978000px;}
.ws10b{word-spacing:-3.900000px;}
.ws136{word-spacing:-3.720000px;}
.ws7c{word-spacing:-3.480000px;}
.ws8c{word-spacing:-3.360000px;}
.ws108{word-spacing:-3.300000px;}
.ws1a0{word-spacing:-3.060000px;}
.ws104{word-spacing:-2.940000px;}
.ws73{word-spacing:-2.760000px;}
.ws115{word-spacing:-2.700000px;}
.wsa7{word-spacing:-2.640000px;}
.ws5e{word-spacing:-2.580000px;}
.ws18c{word-spacing:-2.499000px;}
.ws47{word-spacing:-2.460000px;}
.ws159{word-spacing:-2.346000px;}
.ws8a{word-spacing:-2.340000px;}
.ws138{word-spacing:-2.280000px;}
.ws176{word-spacing:-2.244000px;}
.ws4c{word-spacing:-2.220000px;}
.ws1b0{word-spacing:-2.193000px;}
.wsf8{word-spacing:-2.160000px;}
.ws102{word-spacing:-2.100000px;}
.ws1b1{word-spacing:-2.091000px;}
.ws13e{word-spacing:-2.040000px;}
.ws1a{word-spacing:-1.980000px;}
.wsfc{word-spacing:-1.920000px;}
.ws10a{word-spacing:-1.800000px;}
.ws1a7{word-spacing:-1.785000px;}
.ws175{word-spacing:-1.683000px;}
.ws125{word-spacing:-1.680000px;}
.ws80{word-spacing:-1.620000px;}
.ws74{word-spacing:-1.560000px;}
.ws14f{word-spacing:-1.530000px;}
.ws76{word-spacing:-1.500000px;}
.ws14d{word-spacing:-1.479000px;}
.ws137{word-spacing:-1.440000px;}
.ws196{word-spacing:-1.428000px;}
.wsfb{word-spacing:-1.380000px;}
.ws8b{word-spacing:-1.320000px;}
.ws194{word-spacing:-1.275000px;}
.ws199{word-spacing:-1.224000px;}
.ws89{word-spacing:-1.200000px;}
.ws19a{word-spacing:-1.173000px;}
.ws17{word-spacing:-1.140000px;}
.ws48{word-spacing:-1.020000px;}
.ws77{word-spacing:-0.960000px;}
.wsff{word-spacing:-0.900000px;}
.ws169{word-spacing:-0.867000px;}
.ws10c{word-spacing:-0.840000px;}
.ws91{word-spacing:-0.780000px;}
.ws170{word-spacing:-0.765000px;}
.ws27{word-spacing:-0.720000px;}
.ws174{word-spacing:-0.714000px;}
.ws14a{word-spacing:-0.663000px;}
.wsac{word-spacing:-0.660000px;}
.ws105{word-spacing:-0.630000px;}
.ws103{word-spacing:-0.600000px;}
.wsa2{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.432000px;}
.ws18{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.360000px;}
.ws183{word-spacing:-0.306000px;}
.wsa3{word-spacing:-0.300000px;}
.ws92{word-spacing:-0.240000px;}
.ws1b2{word-spacing:-0.204000px;}
.ws11b{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.120000px;}
.ws66{word-spacing:-0.060000px;}
.ws151{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.wsd0{word-spacing:0.060000px;}
.ws56{word-spacing:0.120000px;}
.wsc{word-spacing:0.151200px;}
.wsaa{word-spacing:0.180000px;}
.ws131{word-spacing:0.240000px;}
.wsa0{word-spacing:0.300000px;}
.ws193{word-spacing:0.306000px;}
.ws128{word-spacing:0.420000px;}
.ws5d{word-spacing:0.480000px;}
.ws14e{word-spacing:0.561000px;}
.ws3c{word-spacing:0.600000px;}
.ws153{word-spacing:0.612000px;}
.ws28{word-spacing:0.660000px;}
.ws1ae{word-spacing:0.663000px;}
.ws64{word-spacing:0.720000px;}
.ws7f{word-spacing:0.780000px;}
.wsfe{word-spacing:0.900000px;}
.ws107{word-spacing:0.960000px;}
.ws65{word-spacing:1.020000px;}
.ws1b3{word-spacing:1.122000px;}
.ws8f{word-spacing:1.140000px;}
.ws18e{word-spacing:1.224000px;}
.wsa8{word-spacing:1.260000px;}
.ws1b5{word-spacing:1.326000px;}
.ws75{word-spacing:1.380000px;}
.ws98{word-spacing:1.500000px;}
.ws190{word-spacing:1.581000px;}
.wsd1{word-spacing:1.620000px;}
.ws168{word-spacing:1.632000px;}
.ws5f{word-spacing:1.680000px;}
.ws87{word-spacing:1.740000px;}
.wsad{word-spacing:1.800000px;}
.ws22{word-spacing:1.860000px;}
.ws1a8{word-spacing:1.887000px;}
.ws4f{word-spacing:1.920000px;}
.ws45{word-spacing:1.980000px;}
.ws3d{word-spacing:2.100000px;}
.wsf1{word-spacing:2.220000px;}
.ws55{word-spacing:2.280000px;}
.wsf6{word-spacing:2.340000px;}
.ws19b{word-spacing:2.346000px;}
.ws50{word-spacing:2.400000px;}
.ws8d{word-spacing:2.460000px;}
.ws33{word-spacing:2.520000px;}
.ws198{word-spacing:2.550000px;}
.wsd7{word-spacing:2.640000px;}
.ws3e{word-spacing:2.700000px;}
.ws15a{word-spacing:2.703000px;}
.ws15f{word-spacing:2.754000px;}
.ws37{word-spacing:2.760000px;}
.ws1ac{word-spacing:2.805000px;}
.ws7a{word-spacing:2.820000px;}
.ws158{word-spacing:2.856000px;}
.ws127{word-spacing:2.880000px;}
.ws178{word-spacing:2.907000px;}
.ws39{word-spacing:2.940000px;}
.ws118{word-spacing:3.060000px;}
.ws10e{word-spacing:3.120000px;}
.ws114{word-spacing:3.180000px;}
.ws9c{word-spacing:3.240000px;}
.ws59{word-spacing:3.360000px;}
.ws146{word-spacing:3.417000px;}
.ws121{word-spacing:3.420000px;}
.ws17a{word-spacing:3.468000px;}
.ws40{word-spacing:3.600000px;}
.ws20{word-spacing:3.660000px;}
.ws78{word-spacing:3.720000px;}
.ws16a{word-spacing:3.723000px;}
.ws192{word-spacing:3.774000px;}
.ws41{word-spacing:3.780000px;}
.ws12c{word-spacing:3.840000px;}
.ws19f{word-spacing:3.927000px;}
.ws7b{word-spacing:3.960000px;}
.ws156{word-spacing:4.029000px;}
.ws187{word-spacing:4.080000px;}
.ws1a1{word-spacing:4.131000px;}
.ws130{word-spacing:4.140000px;}
.ws38{word-spacing:4.200000px;}
.ws6d{word-spacing:4.260000px;}
.wsd5{word-spacing:4.320000px;}
.ws161{word-spacing:4.335000px;}
.ws19{word-spacing:4.380000px;}
.ws14b{word-spacing:4.386000px;}
.wsa9{word-spacing:4.440000px;}
.ws13{word-spacing:4.500000px;}
.ws2f{word-spacing:4.560000px;}
.ws188{word-spacing:4.590000px;}
.ws11e{word-spacing:4.620000px;}
.ws32{word-spacing:4.680000px;}
.ws167{word-spacing:4.692000px;}
.ws12f{word-spacing:4.740000px;}
.ws189{word-spacing:4.743000px;}
.ws18a{word-spacing:4.794000px;}
.wsb9{word-spacing:4.800000px;}
.ws63{word-spacing:4.860000px;}
.ws117{word-spacing:4.920000px;}
.ws1ad{word-spacing:4.947000px;}
.wsba{word-spacing:4.980000px;}
.wsb3{word-spacing:5.040000px;}
.ws185{word-spacing:5.049000px;}
.wsdc{word-spacing:5.100000px;}
.ws90{word-spacing:5.160000px;}
.ws123{word-spacing:5.220000px;}
.ws166{word-spacing:5.253000px;}
.ws106{word-spacing:5.280000px;}
.ws1a9{word-spacing:5.304000px;}
.ws29{word-spacing:5.340000px;}
.ws26{word-spacing:5.400000px;}
.ws152{word-spacing:5.406000px;}
.ws11f{word-spacing:5.460000px;}
.ws171{word-spacing:5.508000px;}
.wsb8{word-spacing:5.520000px;}
.ws1b4{word-spacing:5.559000px;}
.ws81{word-spacing:5.580000px;}
.ws9b{word-spacing:5.640000px;}
.ws19d{word-spacing:5.661000px;}
.ws110{word-spacing:5.700000px;}
.ws18f{word-spacing:5.814000px;}
.wsfd{word-spacing:5.820000px;}
.ws141{word-spacing:5.865000px;}
.ws51{word-spacing:5.880000px;}
.wsb4{word-spacing:5.940000px;}
.ws10f{word-spacing:6.000000px;}
.ws2b{word-spacing:6.060000px;}
.ws13b{word-spacing:6.120000px;}
.ws126{word-spacing:6.180000px;}
.ws86{word-spacing:6.240000px;}
.ws18b{word-spacing:6.324000px;}
.ws165{word-spacing:6.375000px;}
.ws4b{word-spacing:6.420000px;}
.ws15b{word-spacing:6.477000px;}
.ws79{word-spacing:6.540000px;}
.ws1af{word-spacing:6.579000px;}
.ws2d{word-spacing:6.600000px;}
.ws100{word-spacing:6.660000px;}
.ws16b{word-spacing:6.681000px;}
.ws13a{word-spacing:6.720000px;}
.wsb5{word-spacing:6.780000px;}
.ws12d{word-spacing:6.840000px;}
.ws157{word-spacing:6.885000px;}
.ws10d{word-spacing:6.960000px;}
.ws3b{word-spacing:7.020000px;}
.ws113{word-spacing:7.080000px;}
.ws7e{word-spacing:7.140000px;}
.ws19e{word-spacing:7.191000px;}
.ws60{word-spacing:7.200000px;}
.ws17e{word-spacing:7.242000px;}
.ws191{word-spacing:7.293000px;}
.ws46{word-spacing:7.320000px;}
.ws14c{word-spacing:7.344000px;}
.ws8e{word-spacing:7.440000px;}
.ws149{word-spacing:7.548000px;}
.ws88{word-spacing:7.560000px;}
.ws122{word-spacing:7.680000px;}
.ws143{word-spacing:7.701000px;}
.wsab{word-spacing:7.740000px;}
.wsd3{word-spacing:7.800000px;}
.ws15c{word-spacing:7.803000px;}
.wsae{word-spacing:7.860000px;}
.ws31{word-spacing:7.920000px;}
.wsb7{word-spacing:7.980000px;}
.ws1a2{word-spacing:8.007000px;}
.ws3f{word-spacing:8.040000px;}
.ws1a6{word-spacing:8.058000px;}
.ws97{word-spacing:8.160000px;}
.wsf2{word-spacing:8.220000px;}
.ws4e{word-spacing:8.280000px;}
.ws21{word-spacing:8.340000px;}
.ws19c{word-spacing:8.517000px;}
.wsd4{word-spacing:8.520000px;}
.ws24{word-spacing:8.640000px;}
.ws54{word-spacing:8.700000px;}
.ws16f{word-spacing:8.721000px;}
.wsb0{word-spacing:8.760000px;}
.ws17d{word-spacing:8.772000px;}
.ws9a{word-spacing:8.820000px;}
.wscf{word-spacing:8.880000px;}
.wsb2{word-spacing:8.940000px;}
.ws11d{word-spacing:9.000000px;}
.ws1b{word-spacing:9.060000px;}
.ws9e{word-spacing:9.120000px;}
.ws16e{word-spacing:9.129000px;}
.ws14{word-spacing:9.180000px;}
.ws15e{word-spacing:9.333000px;}
.wsde{word-spacing:9.360000px;}
.ws12{word-spacing:9.420000px;}
.ws180{word-spacing:9.435000px;}
.wsdd{word-spacing:9.540000px;}
.ws111{word-spacing:9.600000px;}
.ws61{word-spacing:9.660000px;}
.ws160{word-spacing:9.690000px;}
.ws6f{word-spacing:9.720000px;}
.ws15d{word-spacing:9.792000px;}
.ws49{word-spacing:9.840000px;}
.ws116{word-spacing:9.960000px;}
.ws25{word-spacing:10.020000px;}
.ws177{word-spacing:10.149000px;}
.wsda{word-spacing:10.200000px;}
.wse0{word-spacing:10.260000px;}
.ws23{word-spacing:10.320000px;}
.ws1a3{word-spacing:10.353000px;}
.ws179{word-spacing:10.404000px;}
.wsdb{word-spacing:10.440000px;}
.wsd6{word-spacing:10.620000px;}
.ws147{word-spacing:10.659000px;}
.ws13f{word-spacing:10.710000px;}
.ws34{word-spacing:10.740000px;}
.ws5c{word-spacing:10.800000px;}
.ws2c{word-spacing:10.920000px;}
.ws3a{word-spacing:10.980000px;}
.ws6e{word-spacing:11.040000px;}
.ws93{word-spacing:11.100000px;}
.ws124{word-spacing:11.220000px;}
.wsdf{word-spacing:11.280000px;}
.ws120{word-spacing:11.340000px;}
.ws1aa{word-spacing:11.373000px;}
.ws11a{word-spacing:11.460000px;}
.ws135{word-spacing:11.640000px;}
.wsbb{word-spacing:11.700000px;}
.ws1e{word-spacing:11.760000px;}
.ws186{word-spacing:11.781000px;}
.ws6a{word-spacing:11.820000px;}
.ws184{word-spacing:11.832000px;}
.ws1ab{word-spacing:11.883000px;}
.ws96{word-spacing:12.000000px;}
.ws84{word-spacing:12.120000px;}
.wsa6{word-spacing:12.180000px;}
.ws35{word-spacing:12.240000px;}
.ws109{word-spacing:12.300000px;}
.ws17f{word-spacing:12.648000px;}
.ws52{word-spacing:12.660000px;}
.ws58{word-spacing:12.720000px;}
.ws16{word-spacing:12.780000px;}
.ws5b{word-spacing:13.020000px;}
.ws62{word-spacing:13.200000px;}
.ws13d{word-spacing:13.260000px;}
.ws2e{word-spacing:13.380000px;}
.ws7d{word-spacing:13.440000px;}
.wsaf{word-spacing:13.500000px;}
.ws94{word-spacing:13.620000px;}
.wsfa{word-spacing:13.680000px;}
.ws119{word-spacing:13.740000px;}
.ws16c{word-spacing:13.821000px;}
.ws195{word-spacing:14.076000px;}
.wsf5{word-spacing:14.160000px;}
.ws112{word-spacing:14.220000px;}
.ws1f{word-spacing:14.340000px;}
.ws129{word-spacing:14.400000px;}
.ws162{word-spacing:14.433000px;}
.ws139{word-spacing:14.640000px;}
.ws150{word-spacing:14.688000px;}
.wsd2{word-spacing:14.700000px;}
.wsf7{word-spacing:15.000000px;}
.ws101{word-spacing:15.300000px;}
.ws85{word-spacing:15.480000px;}
.ws142{word-spacing:15.963000px;}
.wsf4{word-spacing:16.020000px;}
.ws16d{word-spacing:16.167000px;}
.wsf9{word-spacing:16.200000px;}
.wsf3{word-spacing:16.260000px;}
.ws82{word-spacing:16.320000px;}
.ws182{word-spacing:16.728000px;}
.ws11c{word-spacing:16.740000px;}
.ws99{word-spacing:16.800000px;}
.ws83{word-spacing:17.040000px;}
.ws197{word-spacing:17.136000px;}
.ws6b{word-spacing:17.220000px;}
.ws69{word-spacing:17.340000px;}
.ws1d{word-spacing:17.580000px;}
.ws9f{word-spacing:17.760000px;}
.wsa5{word-spacing:18.000000px;}
.ws12b{word-spacing:18.300000px;}
.ws44{word-spacing:19.440000px;}
.ws53{word-spacing:19.560000px;}
.ws4d{word-spacing:19.680000px;}
.ws173{word-spacing:19.737000px;}
.ws1a5{word-spacing:20.145000px;}
.wsa4{word-spacing:20.400000px;}
.wsb6{word-spacing:20.580000px;}
.ws172{word-spacing:20.604000px;}
.wsb1{word-spacing:20.880000px;}
.ws1a4{word-spacing:21.063000px;}
.ws36{word-spacing:21.120000px;}
.ws6c{word-spacing:21.360000px;}
.ws95{word-spacing:22.380000px;}
.ws70{word-spacing:23.460000px;}
.ws5a{word-spacing:23.940000px;}
.ws71{word-spacing:24.540000px;}
.wsd8{word-spacing:24.720000px;}
.ws1b6{word-spacing:25.551000px;}
.ws164{word-spacing:27.030000px;}
.ws2a{word-spacing:27.060000px;}
.ws57{word-spacing:28.200000px;}
.ws163{word-spacing:28.254000px;}
.ws12a{word-spacing:29.640000px;}
.ws67{word-spacing:31.260000px;}
.ws11{word-spacing:32.130000px;}
.ws43{word-spacing:32.340000px;}
.ws68{word-spacing:32.640000px;}
.ws72{word-spacing:34.080000px;}
.ws134{word-spacing:37.620000px;}
.ws18d{word-spacing:37.893000px;}
.ws181{word-spacing:45.390000px;}
.ws145{word-spacing:46.155000px;}
.ws144{word-spacing:48.195000px;}
.ws2{word-spacing:51.154200px;}
.ws3{word-spacing:51.154800px;}
.ws6{word-spacing:51.155400px;}
.wsec{word-spacing:69.462000px;}
.wseb{word-spacing:84.150000px;}
.wsee{word-spacing:141.627000px;}
.wsf0{word-spacing:143.208000px;}
.wscb{word-spacing:146.268000px;}
.wscd{word-spacing:160.650000px;}
.wsef{word-spacing:248.523000px;}
.wscc{word-spacing:265.217700px;}
.wsce{word-spacing:281.715600px;}
.wse9{word-spacing:293.199000px;}
.wse8{word-spacing:338.385000px;}
.wsed{word-spacing:381.633000px;}
.wse6{word-spacing:385.407000px;}
.wsc7{word-spacing:400.707000px;}
.wsc3{word-spacing:410.907000px;}
.wsbf{word-spacing:413.457000px;}
.wsc0{word-spacing:422.484000px;}
.wse7{word-spacing:426.309000px;}
.wsc1{word-spacing:455.481000px;}
.wsbe{word-spacing:461.703000px;}
.wsc4{word-spacing:471.138000px;}
.wsc8{word-spacing:476.289000px;}
.wsc6{word-spacing:490.314000px;}
.wsc2{word-spacing:499.137000px;}
.wse5{word-spacing:866.538000px;}
._43{margin-left:-2565.402000px;}
._7b{margin-left:-49.878000px;}
._1d{margin-left:-46.380000px;}
._1f{margin-left:-42.360000px;}
._7a{margin-left:-40.239000px;}
._7d{margin-left:-37.567200px;}
._14{margin-left:-35.328000px;}
._1e{margin-left:-33.540000px;}
._61{margin-left:-31.560000px;}
._26{margin-left:-30.480000px;}
._2a{margin-left:-28.800000px;}
._f{margin-left:-26.940000px;}
._1b{margin-left:-25.200000px;}
._20{margin-left:-23.820000px;}
._1a{margin-left:-22.140000px;}
._24{margin-left:-20.577600px;}
._12{margin-left:-18.780000px;}
._8{margin-left:-17.094000px;}
._9{margin-left:-16.035600px;}
._18{margin-left:-14.919000px;}
._25{margin-left:-13.200000px;}
._c{margin-left:-11.760000px;}
._d{margin-left:-10.758000px;}
._22{margin-left:-9.000000px;}
._19{margin-left:-7.926000px;}
._15{margin-left:-6.660000px;}
._b{margin-left:-5.040000px;}
._3{margin-left:-3.998400px;}
._5{margin-left:-2.430000px;}
._6{margin-left:-1.090800px;}
._a{width:1.080000px;}
._2{width:2.100000px;}
._10{width:3.477600px;}
._7{width:5.389200px;}
._17{width:6.960000px;}
._76{width:10.200000px;}
._11{width:12.240000px;}
._16{width:14.094000px;}
._23{width:16.020000px;}
._27{width:17.220000px;}
._21{width:18.312000px;}
._2b{width:19.620000px;}
._29{width:25.080000px;}
._28{width:26.274000px;}
._4{width:27.720000px;}
._77{width:29.376000px;}
._7c{width:31.203000px;}
._1c{width:32.340000px;}
._79{width:34.143000px;}
._13{width:35.184000px;}
._78{width:36.432000px;}
._75{width:50.992800px;}
._2d{width:66.444000px;}
._37{width:73.746000px;}
._6b{width:81.447000px;}
._2f{width:84.549000px;}
._4c{width:85.731000px;}
._65{width:94.350000px;}
._67{width:95.931000px;}
._3e{width:97.044000px;}
._6a{width:98.277000px;}
._35{width:109.794000px;}
._4d{width:120.666000px;}
._39{width:122.289000px;}
._66{width:126.123000px;}
._68{width:129.285000px;}
._51{width:137.904000px;}
._56{width:139.689000px;}
._64{width:142.197000px;}
._41{width:147.534000px;}
._6f{width:153.612000px;}
._70{width:155.193000px;}
._71{width:156.774000px;}
._45{width:158.209800px;}
._47{width:166.005000px;}
._6e{width:168.096000px;}
._44{width:169.116000px;}
._33{width:170.952000px;}
._52{width:174.726000px;}
._4f{width:176.409000px;}
._63{width:184.971000px;}
._6c{width:188.343000px;}
._46{width:197.778000px;}
._2c{width:201.654000px;}
._53{width:213.231000px;}
._42{width:229.551000px;}
._73{width:260.508000px;}
._5e{width:274.227000px;}
._48{width:278.256000px;}
._31{width:293.607000px;}
._62{width:302.568000px;}
._50{width:305.184000px;}
._5d{width:309.111000px;}
._69{width:321.453000px;}
._5f{width:326.553000px;}
._49{width:341.445000px;}
._4e{width:350.268000px;}
._5c{width:363.273000px;}
._5a{width:365.619000px;}
._32{width:369.393000px;}
._55{width:375.615000px;}
._72{width:393.618000px;}
._60{width:402.339000px;}
._54{width:438.294000px;}
._59{width:442.221000px;}
._30{width:470.067000px;}
._6d{width:531.387000px;}
._5b{width:573.342000px;}
._36{width:608.736000px;}
._34{width:622.641300px;}
._2e{width:653.922000px;}
._3d{width:697.068000px;}
._3f{width:712.878000px;}
._3a{width:715.530000px;}
._3b{width:730.983000px;}
._40{width:737.766000px;}
._4b{width:780.909000px;}
._4a{width:790.905600px;}
._3c{width:795.192000px;}
._38{width:797.742000px;}
._0{width:933.240000px;}
._58{width:1136.993400px;}
._57{width:1173.202800px;}
._1{width:1281.294000px;}
._74{width:2433.915000px;}
._e{width:2454.705000px;}
.fc3{color:rgb(90,87,88);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:31.140000px;}
.fs11{font-size:31.500000px;}
.fs8{font-size:33.600000px;}
.fsf{font-size:35.700000px;}
.fs0{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fsd{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fsc{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs1{font-size:88.620000px;}
.fs7{font-size:93.600000px;}
.fsb{font-size:95.040000px;}
.fs2{font-size:102.480000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:24.864300px;}
.y3{bottom:38.367300px;}
.y2{bottom:38.517300px;}
.y1{bottom:39.867300px;}
.y157{bottom:68.217450px;}
.y32{bottom:69.979500px;}
.ye4{bottom:69.989400px;}
.ye3{bottom:69.990300px;}
.ye2{bottom:69.992700px;}
.yd4{bottom:69.993000px;}
.y48{bottom:69.993300px;}
.yd3{bottom:70.425750px;}
.y11b{bottom:73.729050px;}
.yda{bottom:77.490450px;}
.ydc{bottom:77.495100px;}
.ydf{bottom:78.958200px;}
.ye1{bottom:78.982200px;}
.y31{bottom:84.984000px;}
.y156{bottom:85.468200px;}
.yd2{bottom:86.175750px;}
.ydb{bottom:89.492850px;}
.y47{bottom:89.493300px;}
.y11a{bottom:90.979800px;}
.ye0{bottom:90.992700px;}
.y30{bottom:99.988500px;}
.y155{bottom:102.718950px;}
.y119{bottom:108.230550px;}
.y46{bottom:108.993300px;}
.yd1{bottom:110.928000px;}
.y2f{bottom:114.993000px;}
.y154{bottom:119.969700px;}
.y118{bottom:125.481300px;}
.y45{bottom:128.493300px;}
.yd0{bottom:132.643350px;}
.y153{bottom:137.220450px;}
.y117{bottom:142.732050px;}
.y34{bottom:145.143000px;}
.y44{bottom:147.993300px;}
.ycf{bottom:154.353450px;}
.y152{bottom:154.471200px;}
.y116{bottom:159.982800px;}
.y43{bottom:167.493300px;}
.y33{bottom:167.643000px;}
.y151{bottom:171.721950px;}
.y115{bottom:177.233550px;}
.ycc{bottom:178.922100px;}
.yce{bottom:178.922700px;}
.y18c{bottom:179.488050px;}
.y9d{bottom:185.493300px;}
.y42{bottom:186.993300px;}
.y150{bottom:188.972700px;}
.y114{bottom:194.484300px;}
.y18b{bottom:196.738800px;}
.y107{bottom:202.861950px;}
.y1bd{bottom:204.847950px;}
.y14f{bottom:206.223450px;}
.y41{bottom:206.493300px;}
.ycd{bottom:207.087450px;}
.y113{bottom:211.735050px;}
.y18a{bottom:213.989550px;}
.y106{bottom:220.864950px;}
.y14e{bottom:223.474200px;}
.y1bc{bottom:224.347950px;}
.y40{bottom:225.993300px;}
.y112{bottom:228.985800px;}
.y189{bottom:231.240300px;}
.yd6{bottom:232.504950px;}
.yd5{bottom:232.507050px;}
.yde{bottom:234.992700px;}
.ydd{bottom:234.993150px;}
.ycb{bottom:235.777950px;}
.y14d{bottom:240.724950px;}
.y1bb{bottom:243.847950px;}
.y3f{bottom:245.493300px;}
.y111{bottom:246.236550px;}
.y188{bottom:248.491050px;}
.y14c{bottom:257.975700px;}
.y1ba{bottom:263.347950px;}
.y110{bottom:263.487300px;}
.y3e{bottom:264.993300px;}
.y187{bottom:265.741800px;}
.y14b{bottom:275.226450px;}
.y10f{bottom:280.738050px;}
.y1b9{bottom:282.847950px;}
.y186{bottom:282.992550px;}
.y3d{bottom:284.493300px;}
.yca{bottom:285.213300px;}
.y14a{bottom:292.477200px;}
.y10e{bottom:297.988800px;}
.y2e{bottom:298.356450px;}
.y185{bottom:300.243300px;}
.yc9{bottom:300.963300px;}
.y3c{bottom:303.993300px;}
.y149{bottom:309.709200px;}
.y10d{bottom:315.239550px;}
.yc8{bottom:316.713300px;}
.y184{bottom:317.494050px;}
.y2d{bottom:319.356450px;}
.y3b{bottom:323.493300px;}
.y148{bottom:326.959950px;}
.yc7{bottom:332.463300px;}
.y10c{bottom:332.490300px;}
.y183{bottom:334.744800px;}
.y2c{bottom:340.356450px;}
.y3a{bottom:342.993300px;}
.y147{bottom:344.210700px;}
.y10b{bottom:349.741050px;}
.y1b8{bottom:351.957300px;}
.y182{bottom:351.995550px;}
.yc6{bottom:356.313000px;}
.y2b{bottom:361.356450px;}
.y146{bottom:361.461450px;}
.y39{bottom:362.493300px;}
.y10a{bottom:366.991800px;}
.y1b7{bottom:369.208050px;}
.y181{bottom:369.246300px;}
.yc5{bottom:376.228500px;}
.y145{bottom:378.712200px;}
.y49{bottom:381.993300px;}
.y2a{bottom:382.356450px;}
.y109{bottom:384.242550px;}
.y1b6{bottom:386.458800px;}
.y180{bottom:386.497050px;}
.y144{bottom:395.962950px;}
.yc4{bottom:396.144000px;}
.y38{bottom:399.993300px;}
.y37{bottom:401.493300px;}
.y29{bottom:403.356450px;}
.y1b5{bottom:403.709550px;}
.y17f{bottom:403.747800px;}
.y105{bottom:406.406550px;}
.y143{bottom:413.213700px;}
.yc3{bottom:416.058600px;}
.y1b4{bottom:420.960300px;}
.y96{bottom:420.993300px;}
.y17e{bottom:420.998550px;}
.y104{bottom:422.156550px;}
.y28{bottom:424.356450px;}
.y142{bottom:430.464450px;}
.yc2{bottom:435.974100px;}
.y103{bottom:437.906550px;}
.y1b3{bottom:438.211050px;}
.y17d{bottom:438.249300px;}
.y27{bottom:439.956450px;}
.y9c{bottom:440.493300px;}
.y141{bottom:447.715200px;}
.y1b2{bottom:455.461800px;}
.y17c{bottom:455.500050px;}
.yc1{bottom:455.889600px;}
.y102{bottom:455.906550px;}
.y95{bottom:458.493300px;}
.y94{bottom:459.993300px;}
.y26{bottom:461.856450px;}
.y140{bottom:464.965950px;}
.yd7{bottom:469.272450px;}
.y101{bottom:471.656550px;}
.y1b1{bottom:472.712550px;}
.y17b{bottom:472.750800px;}
.yc0{bottom:475.805100px;}
.y25{bottom:477.456450px;}
.y9b{bottom:479.493300px;}
.y13f{bottom:482.216700px;}
.y72{bottom:484.563300px;}
.y100{bottom:487.406550px;}
.y1b0{bottom:489.963300px;}
.y17a{bottom:490.001550px;}
.ybf{bottom:495.720600px;}
.y9a{bottom:498.993300px;}
.y24{bottom:499.356450px;}
.y13e{bottom:499.467450px;}
.y71{bottom:505.563300px;}
.y1af{bottom:507.214050px;}
.y179{bottom:507.252300px;}
.yff{bottom:512.158800px;}
.ybe{bottom:515.636100px;}
.y13d{bottom:516.718200px;}
.ya1{bottom:516.993300px;}
.y93{bottom:518.493300px;}
.y23{bottom:520.356450px;}
.y1ae{bottom:524.464800px;}
.y178{bottom:524.503050px;}
.yfe{bottom:533.872050px;}
.y13c{bottom:533.968950px;}
.ybd{bottom:535.551600px;}
.y92{bottom:537.993300px;}
.y22{bottom:541.356450px;}
.y70{bottom:541.563300px;}
.y1ad{bottom:541.715550px;}
.y177{bottom:541.753800px;}
.y13b{bottom:551.219700px;}
.ybc{bottom:555.467100px;}
.yfd{bottom:555.592650px;}
.y21{bottom:556.956450px;}
.y91{bottom:557.493300px;}
.y1ac{bottom:558.966300px;}
.y176{bottom:559.004550px;}
.y6f{bottom:564.063300px;}
.y13a{bottom:568.470450px;}
.ybb{bottom:575.382600px;}
.y1ab{bottom:576.217050px;}
.y175{bottom:576.255300px;}
.y90{bottom:576.993300px;}
.yfc{bottom:577.305900px;}
.y20{bottom:578.856450px;}
.y139{bottom:585.721200px;}
.y6e{bottom:586.563300px;}
.y1aa{bottom:593.467800px;}
.y174{bottom:593.506050px;}
.y9f{bottom:594.993300px;}
.yba{bottom:595.298100px;}
.y8f{bottom:596.493300px;}
.yfb{bottom:599.019150px;}
.y1f{bottom:599.856450px;}
.y138{bottom:602.971950px;}
.y6d{bottom:609.063300px;}
.y1a9{bottom:610.718550px;}
.y173{bottom:610.756800px;}
.yb9{bottom:615.213600px;}
.y1e{bottom:615.456450px;}
.y8e{bottom:615.993300px;}
.y137{bottom:620.222700px;}
.yfa{bottom:620.739000px;}
.y1a8{bottom:627.969300px;}
.y172{bottom:628.007550px;}
.y6c{bottom:631.563300px;}
.yb8{bottom:635.129100px;}
.y8d{bottom:635.493300px;}
.y1d{bottom:637.356450px;}
.y136{bottom:637.473450px;}
.yf9{bottom:642.452250px;}
.y1a7{bottom:645.220050px;}
.y171{bottom:645.258300px;}
.y1c{bottom:652.956450px;}
.y6b{bottom:654.063300px;}
.y135{bottom:654.724200px;}
.y8c{bottom:654.993300px;}
.yb7{bottom:655.044450px;}
.y1a6{bottom:662.470800px;}
.y170{bottom:662.509050px;}
.yf8{bottom:664.165500px;}
.y134{bottom:671.974950px;}
.y108{bottom:672.993300px;}
.y8b{bottom:674.493300px;}
.y1b{bottom:674.856450px;}
.yb6{bottom:674.959950px;}
.y6a{bottom:676.563300px;}
.y1a5{bottom:679.721550px;}
.y16f{bottom:679.759800px;}
.yf7{bottom:685.883250px;}
.y133{bottom:689.225700px;}
.y8a{bottom:693.993300px;}
.yb5{bottom:694.875450px;}
.y1a4{bottom:696.972300px;}
.y16e{bottom:697.010550px;}
.y69{bottom:699.063300px;}
.y1a{bottom:703.206450px;}
.y19{bottom:705.456450px;}
.yd8{bottom:706.039950px;}
.y132{bottom:706.476450px;}
.yf6{bottom:710.822250px;}
.y89{bottom:713.493300px;}
.y1a3{bottom:714.223050px;}
.y16d{bottom:714.261300px;}
.yb4{bottom:714.790950px;}
.y68{bottom:721.563300px;}
.y131{bottom:723.727200px;}
.y18{bottom:730.206450px;}
.y1a2{bottom:731.473800px;}
.y16c{bottom:731.512050px;}
.y17{bottom:732.456450px;}
.y88{bottom:732.993300px;}
.yb3{bottom:734.706450px;}
.yf5{bottom:738.987000px;}
.y130{bottom:740.949300px;}
.y67{bottom:744.063300px;}
.y1a1{bottom:748.724550px;}
.y16b{bottom:748.762800px;}
.y87{bottom:752.493300px;}
.yb2{bottom:754.621950px;}
.y16{bottom:757.206450px;}
.y12f{bottom:758.200050px;}
.y15{bottom:759.456450px;}
.y1a0{bottom:765.975300px;}
.y16a{bottom:766.013550px;}
.y66{bottom:766.563300px;}
.yf4{bottom:767.152350px;}
.y86{bottom:771.993300px;}
.yb1{bottom:774.537450px;}
.y12e{bottom:775.450800px;}
.y19f{bottom:783.226050px;}
.y169{bottom:783.264300px;}
.y14{bottom:784.206450px;}
.y13{bottom:786.456450px;}
.y65{bottom:789.063300px;}
.y85{bottom:791.493300px;}
.y12d{bottom:792.701550px;}
.yf3{bottom:792.844950px;}
.yb0{bottom:794.452950px;}
.y19e{bottom:800.476800px;}
.y168{bottom:800.515050px;}
.y12c{bottom:809.952300px;}
.y84{bottom:810.993300px;}
.y12{bottom:811.206450px;}
.y64{bottom:811.563300px;}
.y11{bottom:813.456450px;}
.yaf{bottom:814.368450px;}
.yf2{bottom:814.558200px;}
.y19d{bottom:817.727550px;}
.y167{bottom:817.765800px;}
.y12b{bottom:827.203050px;}
.y83{bottom:830.493300px;}
.y63{bottom:834.063300px;}
.yae{bottom:834.283950px;}
.y19c{bottom:834.978300px;}
.y166{bottom:835.016550px;}
.yf1{bottom:836.278050px;}
.y10{bottom:838.206450px;}
.yf{bottom:840.456450px;}
.y12a{bottom:844.453800px;}
.y82{bottom:849.993300px;}
.y19b{bottom:852.229050px;}
.y165{bottom:852.267300px;}
.yad{bottom:854.199450px;}
.y62{bottom:856.563300px;}
.yf0{bottom:857.991300px;}
.y129{bottom:861.704550px;}
.y57{bottom:863.349300px;}
.ye{bottom:865.206450px;}
.yd{bottom:867.456450px;}
.y19a{bottom:869.479800px;}
.y81{bottom:869.493300px;}
.y164{bottom:869.518050px;}
.yac{bottom:874.114950px;}
.y128{bottom:878.955300px;}
.y61{bottom:879.063300px;}
.yef{bottom:879.704550px;}
.y56{bottom:879.849300px;}
.y199{bottom:886.730550px;}
.y163{bottom:886.768800px;}
.ya0{bottom:887.493300px;}
.y80{bottom:888.993300px;}
.yc{bottom:892.206450px;}
.yab{bottom:894.030450px;}
.yb{bottom:894.456450px;}
.y127{bottom:896.206050px;}
.y55{bottom:896.349300px;}
.yee{bottom:901.424250px;}
.y60{bottom:901.563300px;}
.y198{bottom:903.981300px;}
.y162{bottom:904.019550px;}
.y7f{bottom:908.493300px;}
.y54{bottom:912.849300px;}
.y126{bottom:913.456800px;}
.yaa{bottom:913.945950px;}
.y197{bottom:921.232050px;}
.y161{bottom:921.270300px;}
.yed{bottom:923.137500px;}
.y5f{bottom:924.063300px;}
.y7e{bottom:927.993300px;}
.y53{bottom:929.349300px;}
.y125{bottom:930.707550px;}
.ya9{bottom:933.861450px;}
.y196{bottom:938.482800px;}
.y160{bottom:938.521050px;}
.yd9{bottom:942.807450px;}
.yec{bottom:944.850750px;}
.y52{bottom:945.849300px;}
.y5e{bottom:946.563300px;}
.y7d{bottom:947.493300px;}
.y124{bottom:947.958300px;}
.ya{bottom:952.950450px;}
.ya8{bottom:953.776950px;}
.y195{bottom:955.733550px;}
.y15f{bottom:955.771800px;}
.y51{bottom:962.349300px;}
.y123{bottom:965.209050px;}
.y99{bottom:965.493300px;}
.yeb{bottom:966.567450px;}
.y7c{bottom:966.993300px;}
.y5d{bottom:969.063300px;}
.y194{bottom:972.984300px;}
.y15e{bottom:973.022550px;}
.ya7{bottom:973.692450px;}
.y122{bottom:982.459800px;}
.y7b{bottom:986.493300px;}
.y9{bottom:987.456450px;}
.y193{bottom:990.235050px;}
.y15d{bottom:990.273300px;}
.yea{bottom:991.506450px;}
.y5c{bottom:991.563300px;}
.ya6{bottom:993.607950px;}
.y50{bottom:995.349300px;}
.y121{bottom:999.710550px;}
.y9e{bottom:1005.993300px;}
.y192{bottom:1007.485800px;}
.y15c{bottom:1007.524050px;}
.y4f{bottom:1011.849300px;}
.ya5{bottom:1013.523450px;}
.y5b{bottom:1014.063300px;}
.y120{bottom:1016.961300px;}
.ye9{bottom:1019.671200px;}
.ye7{bottom:1019.671950px;}
.y191{bottom:1024.736550px;}
.y15b{bottom:1024.774800px;}
.y98{bottom:1025.493300px;}
.y7a{bottom:1025.499300px;}
.y4e{bottom:1028.349300px;}
.y11f{bottom:1034.212050px;}
.y5a{bottom:1036.563300px;}
.ye8{bottom:1036.921950px;}
.ya4{bottom:1037.187450px;}
.y190{bottom:1041.987300px;}
.y15a{bottom:1042.025550px;}
.y78{bottom:1043.493300px;}
.y4d{bottom:1044.849300px;}
.y77{bottom:1044.987300px;}
.y79{bottom:1044.993300px;}
.y11e{bottom:1051.462800px;}
.y8{bottom:1057.956450px;}
.y59{bottom:1059.063300px;}
.y18f{bottom:1059.238050px;}
.y159{bottom:1059.276300px;}
.y4c{bottom:1061.349300px;}
.y97{bottom:1064.493300px;}
.ye6{bottom:1065.087300px;}
.ya3{bottom:1065.874950px;}
.y11d{bottom:1068.713550px;}
.y18e{bottom:1076.488800px;}
.y158{bottom:1076.527050px;}
.y4b{bottom:1077.849300px;}
.y58{bottom:1081.563300px;}
.y76{bottom:1082.493300px;}
.ya2{bottom:1083.877950px;}
.y75{bottom:1083.993300px;}
.y11c{bottom:1085.964300px;}
.y18d{bottom:1093.739550px;}
.ye5{bottom:1093.777800px;}
.y4a{bottom:1094.349300px;}
.y7{bottom:1098.398550px;}
.y6{bottom:1114.301550px;}
.y5{bottom:1120.301550px;}
.y36{bottom:1127.842800px;}
.y35{bottom:1130.917800px;}
.y74{bottom:1130.943300px;}
.y73{bottom:1150.065000px;}
.hb{height:27.753600px;}
.h18{height:30.562207px;}
.hd{height:32.970000px;}
.h2{height:34.692000px;}
.hf{height:34.794000px;}
.h1c{height:37.170000px;}
.h14{height:37.680000px;}
.h4{height:38.976000px;}
.hc{height:39.648000px;}
.h19{height:40.035000px;}
.h16{height:42.126000px;}
.h1f{height:42.138600px;}
.h23{height:42.201000px;}
.h22{height:42.240600px;}
.h6{height:42.390000px;}
.h1d{height:46.269000px;}
.h15{height:47.100000px;}
.h12{height:49.560000px;}
.h21{height:50.974500px;}
.h20{height:50.975100px;}
.h1e{height:52.438200px;}
.h1a{height:52.438800px;}
.h1b{height:52.441800px;}
.ha{height:56.520000px;}
.h10{height:59.472000px;}
.h13{height:61.692000px;}
.he{height:65.940000px;}
.h8{height:71.964000px;}
.h3{height:73.200120px;}
.h9{height:77.313600px;}
.h11{height:78.503040px;}
.h5{height:84.648480px;}
.h7{height:84.780000px;}
.h17{height:1173.540000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:67.181700px;}
.x5{left:68.456700px;}
.x45{left:74.460000px;}
.x47{left:77.852700px;}
.x46{left:86.457750px;}
.x40{left:87.955500px;}
.x65{left:89.456700px;}
.x36{left:95.456550px;}
.x37{left:102.062550px;}
.x3e{left:107.534250px;}
.x34{left:108.691950px;}
.x35{left:111.306900px;}
.x3f{left:112.340250px;}
.x67{left:113.889450px;}
.x68{left:116.504400px;}
.x4a{left:135.027900px;}
.x4b{left:163.192650px;}
.x48{left:173.755950px;}
.x6{left:176.909400px;}
.x7{left:180.273450px;}
.x20{left:201.547500px;}
.x63{left:203.259600px;}
.x21{left:206.299500px;}
.x66{left:221.302050px;}
.x8{left:224.673450px;}
.x4c{left:227.099250px;}
.x9{left:229.425450px;}
.x44{left:235.594500px;}
.x4d{left:248.812500px;}
.x31{left:255.246000px;}
.x26{left:259.028250px;}
.x27{left:263.780250px;}
.x14{left:271.340250px;}
.xe{left:274.659150px;}
.x15{left:276.092100px;}
.xf{left:279.411150px;}
.x4e{left:292.245450px;}
.x39{left:304.735500px;}
.x2c{left:306.141750px;}
.x1a{left:310.453500px;}
.x4f{left:313.958700px;}
.x1b{left:315.205500px;}
.x50{left:335.671950px;}
.x51{left:357.391650px;}
.x52{left:379.104900px;}
.x53{left:404.797650px;}
.x22{left:409.319250px;}
.x23{left:414.071100px;}
.x28{left:416.106750px;}
.x32{left:419.066850px;}
.x29{left:420.858600px;}
.x33{left:423.818850px;}
.x54{left:432.963000px;}
.x16{left:459.588450px;}
.x55{left:461.127750px;}
.x17{left:464.340450px;}
.x38{left:479.775000px;}
.x56{left:486.066750px;}
.x10{left:487.846350px;}
.x11{left:492.598350px;}
.x43{left:493.881300px;}
.x49{left:496.203450px;}
.x41{left:499.353150px;}
.x42{left:504.159150px;}
.x57{left:507.784350px;}
.x2d{left:510.912450px;}
.x2e{left:515.664450px;}
.xa{left:518.382600px;}
.xb{left:523.134600px;}
.x58{left:529.497600px;}
.x1c{left:538.940700px;}
.x1d{left:543.692700px;}
.x59{left:551.210850px;}
.x5a{left:572.930700px;}
.x18{left:593.171850px;}
.x5b{left:594.643950px;}
.x19{left:597.977850px;}
.x2a{left:601.725900px;}
.x2b{left:606.477750px;}
.x4{left:613.149900px;}
.x5c{left:616.357200px;}
.x24{left:621.156750px;}
.x25{left:625.962750px;}
.x5d{left:638.076900px;}
.x5e{left:659.790150px;}
.x64{left:679.382400px;}
.x5f{left:684.542400px;}
.x2f{left:688.843350px;}
.x30{left:693.649350px;}
.x60{left:700.292400px;}
.x1e{left:703.771200px;}
.x1f{left:708.577050px;}
.x61{left:716.042400px;}
.x12{left:728.591700px;}
.x13{left:733.397700px;}
.x62{left:749.792400px;}
.x69{left:751.314000px;}
.x3b{left:756.511350px;}
.x6a{left:776.629500px;}
.x2{left:779.972250px;}
.x3c{left:781.827000px;}
.x3{left:783.336300px;}
.x3d{left:784.441950px;}
.xc{left:815.087250px;}
.xd{left:819.893250px;}
.x3a{left:870.120000px;}
@media print{
.v4{vertical-align:-28.800000pt;}
.v5{vertical-align:-19.200000pt;}
.v7{vertical-align:-12.266667pt;}
.va{vertical-align:-10.415467pt;}
.vb{vertical-align:-9.200000pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.338667pt;}
.v9{vertical-align:18.000000pt;}
.v8{vertical-align:20.400533pt;}
.v6{vertical-align:24.000000pt;}
.v3{vertical-align:28.800000pt;}
.ls1f{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls16{letter-spacing:-0.408000pt;}
.ls15{letter-spacing:-0.317333pt;}
.ls25{letter-spacing:-0.272000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.134400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000267pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.408000pt;}
.lsc{letter-spacing:0.447467pt;}
.lsd{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.476000pt;}
.ls1a{letter-spacing:0.559467pt;}
.ls12{letter-spacing:0.560000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.680000pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls19{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:5.333333pt;}
.ls22{letter-spacing:5.866667pt;}
.ls14{letter-spacing:6.346667pt;}
.ls9{letter-spacing:6.400000pt;}
.lse{letter-spacing:8.533333pt;}
.lsf{letter-spacing:8.906667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls10{letter-spacing:11.946667pt;}
.ls8{letter-spacing:21.616000pt;}
.ls0{letter-spacing:23.818667pt;}
.lsa{letter-spacing:42.880000pt;}
.ls2{letter-spacing:55.731200pt;}
.ls1c{letter-spacing:124.440000pt;}
.ls1d{letter-spacing:188.586667pt;}
.ls13{letter-spacing:280.673333pt;}
.ls17{letter-spacing:562.178667pt;}
.wsd{word-spacing:-21.440000pt;}
.ws12e{word-spacing:-17.866667pt;}
.ws1{word-spacing:-14.848000pt;}
.wsbd{word-spacing:-13.333333pt;}
.wse{word-spacing:-13.173333pt;}
.wsf{word-spacing:-12.533333pt;}
.ws13c{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.712000pt;}
.ws140{word-spacing:-11.061333pt;}
.wsca{word-spacing:-10.653333pt;}
.ws5{word-spacing:-10.528000pt;}
.ws17b{word-spacing:-10.472000pt;}
.ws4{word-spacing:-10.393600pt;}
.wse2{word-spacing:-10.336000pt;}
.wse3{word-spacing:-10.245333pt;}
.ws132{word-spacing:-10.200000pt;}
.ws10{word-spacing:-10.026667pt;}
.ws17c{word-spacing:-9.792000pt;}
.ws9{word-spacing:-9.728000pt;}
.wse4{word-spacing:-9.400000pt;}
.wsbc{word-spacing:-9.333333pt;}
.ws1c{word-spacing:-9.221333pt;}
.ws0{word-spacing:-8.773333pt;}
.ws42{word-spacing:-8.533333pt;}
.ws133{word-spacing:-7.933333pt;}
.wsc5{word-spacing:-7.457333pt;}
.ws7{word-spacing:-7.018667pt;}
.wsc9{word-spacing:-6.580000pt;}
.wsd9{word-spacing:-6.400000pt;}
.ws9d{word-spacing:-6.293333pt;}
.ws4a{word-spacing:-5.866667pt;}
.wse1{word-spacing:-4.986667pt;}
.ws154{word-spacing:-4.488000pt;}
.wsea{word-spacing:-4.400000pt;}
.wsa1{word-spacing:-3.893333pt;}
.ws155{word-spacing:-3.762667pt;}
.ws148{word-spacing:-3.536000pt;}
.ws10b{word-spacing:-3.466667pt;}
.ws136{word-spacing:-3.306667pt;}
.ws7c{word-spacing:-3.093333pt;}
.ws8c{word-spacing:-2.986667pt;}
.ws108{word-spacing:-2.933333pt;}
.ws1a0{word-spacing:-2.720000pt;}
.ws104{word-spacing:-2.613333pt;}
.ws73{word-spacing:-2.453333pt;}
.ws115{word-spacing:-2.400000pt;}
.wsa7{word-spacing:-2.346667pt;}
.ws5e{word-spacing:-2.293333pt;}
.ws18c{word-spacing:-2.221333pt;}
.ws47{word-spacing:-2.186667pt;}
.ws159{word-spacing:-2.085333pt;}
.ws8a{word-spacing:-2.080000pt;}
.ws138{word-spacing:-2.026667pt;}
.ws176{word-spacing:-1.994667pt;}
.ws4c{word-spacing:-1.973333pt;}
.ws1b0{word-spacing:-1.949333pt;}
.wsf8{word-spacing:-1.920000pt;}
.ws102{word-spacing:-1.866667pt;}
.ws1b1{word-spacing:-1.858667pt;}
.ws13e{word-spacing:-1.813333pt;}
.ws1a{word-spacing:-1.760000pt;}
.wsfc{word-spacing:-1.706667pt;}
.ws10a{word-spacing:-1.600000pt;}
.ws1a7{word-spacing:-1.586667pt;}
.ws175{word-spacing:-1.496000pt;}
.ws125{word-spacing:-1.493333pt;}
.ws80{word-spacing:-1.440000pt;}
.ws74{word-spacing:-1.386667pt;}
.ws14f{word-spacing:-1.360000pt;}
.ws76{word-spacing:-1.333333pt;}
.ws14d{word-spacing:-1.314667pt;}
.ws137{word-spacing:-1.280000pt;}
.ws196{word-spacing:-1.269333pt;}
.wsfb{word-spacing:-1.226667pt;}
.ws8b{word-spacing:-1.173333pt;}
.ws194{word-spacing:-1.133333pt;}
.ws199{word-spacing:-1.088000pt;}
.ws89{word-spacing:-1.066667pt;}
.ws19a{word-spacing:-1.042667pt;}
.ws17{word-spacing:-1.013333pt;}
.ws48{word-spacing:-0.906667pt;}
.ws77{word-spacing:-0.853333pt;}
.wsff{word-spacing:-0.800000pt;}
.ws169{word-spacing:-0.770667pt;}
.ws10c{word-spacing:-0.746667pt;}
.ws91{word-spacing:-0.693333pt;}
.ws170{word-spacing:-0.680000pt;}
.ws27{word-spacing:-0.640000pt;}
.ws174{word-spacing:-0.634667pt;}
.ws14a{word-spacing:-0.589333pt;}
.wsac{word-spacing:-0.586667pt;}
.ws105{word-spacing:-0.560000pt;}
.ws103{word-spacing:-0.533333pt;}
.wsa2{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.384000pt;}
.ws18{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.320000pt;}
.ws183{word-spacing:-0.272000pt;}
.wsa3{word-spacing:-0.266667pt;}
.ws92{word-spacing:-0.213333pt;}
.ws1b2{word-spacing:-0.181333pt;}
.ws11b{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.106667pt;}
.ws66{word-spacing:-0.053333pt;}
.ws151{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.wsd0{word-spacing:0.053333pt;}
.ws56{word-spacing:0.106667pt;}
.wsc{word-spacing:0.134400pt;}
.wsaa{word-spacing:0.160000pt;}
.ws131{word-spacing:0.213333pt;}
.wsa0{word-spacing:0.266667pt;}
.ws193{word-spacing:0.272000pt;}
.ws128{word-spacing:0.373333pt;}
.ws5d{word-spacing:0.426667pt;}
.ws14e{word-spacing:0.498667pt;}
.ws3c{word-spacing:0.533333pt;}
.ws153{word-spacing:0.544000pt;}
.ws28{word-spacing:0.586667pt;}
.ws1ae{word-spacing:0.589333pt;}
.ws64{word-spacing:0.640000pt;}
.ws7f{word-spacing:0.693333pt;}
.wsfe{word-spacing:0.800000pt;}
.ws107{word-spacing:0.853333pt;}
.ws65{word-spacing:0.906667pt;}
.ws1b3{word-spacing:0.997333pt;}
.ws8f{word-spacing:1.013333pt;}
.ws18e{word-spacing:1.088000pt;}
.wsa8{word-spacing:1.120000pt;}
.ws1b5{word-spacing:1.178667pt;}
.ws75{word-spacing:1.226667pt;}
.ws98{word-spacing:1.333333pt;}
.ws190{word-spacing:1.405333pt;}
.wsd1{word-spacing:1.440000pt;}
.ws168{word-spacing:1.450667pt;}
.ws5f{word-spacing:1.493333pt;}
.ws87{word-spacing:1.546667pt;}
.wsad{word-spacing:1.600000pt;}
.ws22{word-spacing:1.653333pt;}
.ws1a8{word-spacing:1.677333pt;}
.ws4f{word-spacing:1.706667pt;}
.ws45{word-spacing:1.760000pt;}
.ws3d{word-spacing:1.866667pt;}
.wsf1{word-spacing:1.973333pt;}
.ws55{word-spacing:2.026667pt;}
.wsf6{word-spacing:2.080000pt;}
.ws19b{word-spacing:2.085333pt;}
.ws50{word-spacing:2.133333pt;}
.ws8d{word-spacing:2.186667pt;}
.ws33{word-spacing:2.240000pt;}
.ws198{word-spacing:2.266667pt;}
.wsd7{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.400000pt;}
.ws15a{word-spacing:2.402667pt;}
.ws15f{word-spacing:2.448000pt;}
.ws37{word-spacing:2.453333pt;}
.ws1ac{word-spacing:2.493333pt;}
.ws7a{word-spacing:2.506667pt;}
.ws158{word-spacing:2.538667pt;}
.ws127{word-spacing:2.560000pt;}
.ws178{word-spacing:2.584000pt;}
.ws39{word-spacing:2.613333pt;}
.ws118{word-spacing:2.720000pt;}
.ws10e{word-spacing:2.773333pt;}
.ws114{word-spacing:2.826667pt;}
.ws9c{word-spacing:2.880000pt;}
.ws59{word-spacing:2.986667pt;}
.ws146{word-spacing:3.037333pt;}
.ws121{word-spacing:3.040000pt;}
.ws17a{word-spacing:3.082667pt;}
.ws40{word-spacing:3.200000pt;}
.ws20{word-spacing:3.253333pt;}
.ws78{word-spacing:3.306667pt;}
.ws16a{word-spacing:3.309333pt;}
.ws192{word-spacing:3.354667pt;}
.ws41{word-spacing:3.360000pt;}
.ws12c{word-spacing:3.413333pt;}
.ws19f{word-spacing:3.490667pt;}
.ws7b{word-spacing:3.520000pt;}
.ws156{word-spacing:3.581333pt;}
.ws187{word-spacing:3.626667pt;}
.ws1a1{word-spacing:3.672000pt;}
.ws130{word-spacing:3.680000pt;}
.ws38{word-spacing:3.733333pt;}
.ws6d{word-spacing:3.786667pt;}
.wsd5{word-spacing:3.840000pt;}
.ws161{word-spacing:3.853333pt;}
.ws19{word-spacing:3.893333pt;}
.ws14b{word-spacing:3.898667pt;}
.wsa9{word-spacing:3.946667pt;}
.ws13{word-spacing:4.000000pt;}
.ws2f{word-spacing:4.053333pt;}
.ws188{word-spacing:4.080000pt;}
.ws11e{word-spacing:4.106667pt;}
.ws32{word-spacing:4.160000pt;}
.ws167{word-spacing:4.170667pt;}
.ws12f{word-spacing:4.213333pt;}
.ws189{word-spacing:4.216000pt;}
.ws18a{word-spacing:4.261333pt;}
.wsb9{word-spacing:4.266667pt;}
.ws63{word-spacing:4.320000pt;}
.ws117{word-spacing:4.373333pt;}
.ws1ad{word-spacing:4.397333pt;}
.wsba{word-spacing:4.426667pt;}
.wsb3{word-spacing:4.480000pt;}
.ws185{word-spacing:4.488000pt;}
.wsdc{word-spacing:4.533333pt;}
.ws90{word-spacing:4.586667pt;}
.ws123{word-spacing:4.640000pt;}
.ws166{word-spacing:4.669333pt;}
.ws106{word-spacing:4.693333pt;}
.ws1a9{word-spacing:4.714667pt;}
.ws29{word-spacing:4.746667pt;}
.ws26{word-spacing:4.800000pt;}
.ws152{word-spacing:4.805333pt;}
.ws11f{word-spacing:4.853333pt;}
.ws171{word-spacing:4.896000pt;}
.wsb8{word-spacing:4.906667pt;}
.ws1b4{word-spacing:4.941333pt;}
.ws81{word-spacing:4.960000pt;}
.ws9b{word-spacing:5.013333pt;}
.ws19d{word-spacing:5.032000pt;}
.ws110{word-spacing:5.066667pt;}
.ws18f{word-spacing:5.168000pt;}
.wsfd{word-spacing:5.173333pt;}
.ws141{word-spacing:5.213333pt;}
.ws51{word-spacing:5.226667pt;}
.wsb4{word-spacing:5.280000pt;}
.ws10f{word-spacing:5.333333pt;}
.ws2b{word-spacing:5.386667pt;}
.ws13b{word-spacing:5.440000pt;}
.ws126{word-spacing:5.493333pt;}
.ws86{word-spacing:5.546667pt;}
.ws18b{word-spacing:5.621333pt;}
.ws165{word-spacing:5.666667pt;}
.ws4b{word-spacing:5.706667pt;}
.ws15b{word-spacing:5.757333pt;}
.ws79{word-spacing:5.813333pt;}
.ws1af{word-spacing:5.848000pt;}
.ws2d{word-spacing:5.866667pt;}
.ws100{word-spacing:5.920000pt;}
.ws16b{word-spacing:5.938667pt;}
.ws13a{word-spacing:5.973333pt;}
.wsb5{word-spacing:6.026667pt;}
.ws12d{word-spacing:6.080000pt;}
.ws157{word-spacing:6.120000pt;}
.ws10d{word-spacing:6.186667pt;}
.ws3b{word-spacing:6.240000pt;}
.ws113{word-spacing:6.293333pt;}
.ws7e{word-spacing:6.346667pt;}
.ws19e{word-spacing:6.392000pt;}
.ws60{word-spacing:6.400000pt;}
.ws17e{word-spacing:6.437333pt;}
.ws191{word-spacing:6.482667pt;}
.ws46{word-spacing:6.506667pt;}
.ws14c{word-spacing:6.528000pt;}
.ws8e{word-spacing:6.613333pt;}
.ws149{word-spacing:6.709333pt;}
.ws88{word-spacing:6.720000pt;}
.ws122{word-spacing:6.826667pt;}
.ws143{word-spacing:6.845333pt;}
.wsab{word-spacing:6.880000pt;}
.wsd3{word-spacing:6.933333pt;}
.ws15c{word-spacing:6.936000pt;}
.wsae{word-spacing:6.986667pt;}
.ws31{word-spacing:7.040000pt;}
.wsb7{word-spacing:7.093333pt;}
.ws1a2{word-spacing:7.117333pt;}
.ws3f{word-spacing:7.146667pt;}
.ws1a6{word-spacing:7.162667pt;}
.ws97{word-spacing:7.253333pt;}
.wsf2{word-spacing:7.306667pt;}
.ws4e{word-spacing:7.360000pt;}
.ws21{word-spacing:7.413333pt;}
.ws19c{word-spacing:7.570667pt;}
.wsd4{word-spacing:7.573333pt;}
.ws24{word-spacing:7.680000pt;}
.ws54{word-spacing:7.733333pt;}
.ws16f{word-spacing:7.752000pt;}
.wsb0{word-spacing:7.786667pt;}
.ws17d{word-spacing:7.797333pt;}
.ws9a{word-spacing:7.840000pt;}
.wscf{word-spacing:7.893333pt;}
.wsb2{word-spacing:7.946667pt;}
.ws11d{word-spacing:8.000000pt;}
.ws1b{word-spacing:8.053333pt;}
.ws9e{word-spacing:8.106667pt;}
.ws16e{word-spacing:8.114667pt;}
.ws14{word-spacing:8.160000pt;}
.ws15e{word-spacing:8.296000pt;}
.wsde{word-spacing:8.320000pt;}
.ws12{word-spacing:8.373333pt;}
.ws180{word-spacing:8.386667pt;}
.wsdd{word-spacing:8.480000pt;}
.ws111{word-spacing:8.533333pt;}
.ws61{word-spacing:8.586667pt;}
.ws160{word-spacing:8.613333pt;}
.ws6f{word-spacing:8.640000pt;}
.ws15d{word-spacing:8.704000pt;}
.ws49{word-spacing:8.746667pt;}
.ws116{word-spacing:8.853333pt;}
.ws25{word-spacing:8.906667pt;}
.ws177{word-spacing:9.021333pt;}
.wsda{word-spacing:9.066667pt;}
.wse0{word-spacing:9.120000pt;}
.ws23{word-spacing:9.173333pt;}
.ws1a3{word-spacing:9.202667pt;}
.ws179{word-spacing:9.248000pt;}
.wsdb{word-spacing:9.280000pt;}
.wsd6{word-spacing:9.440000pt;}
.ws147{word-spacing:9.474667pt;}
.ws13f{word-spacing:9.520000pt;}
.ws34{word-spacing:9.546667pt;}
.ws5c{word-spacing:9.600000pt;}
.ws2c{word-spacing:9.706667pt;}
.ws3a{word-spacing:9.760000pt;}
.ws6e{word-spacing:9.813333pt;}
.ws93{word-spacing:9.866667pt;}
.ws124{word-spacing:9.973333pt;}
.wsdf{word-spacing:10.026667pt;}
.ws120{word-spacing:10.080000pt;}
.ws1aa{word-spacing:10.109333pt;}
.ws11a{word-spacing:10.186667pt;}
.ws135{word-spacing:10.346667pt;}
.wsbb{word-spacing:10.400000pt;}
.ws1e{word-spacing:10.453333pt;}
.ws186{word-spacing:10.472000pt;}
.ws6a{word-spacing:10.506667pt;}
.ws184{word-spacing:10.517333pt;}
.ws1ab{word-spacing:10.562667pt;}
.ws96{word-spacing:10.666667pt;}
.ws84{word-spacing:10.773333pt;}
.wsa6{word-spacing:10.826667pt;}
.ws35{word-spacing:10.880000pt;}
.ws109{word-spacing:10.933333pt;}
.ws17f{word-spacing:11.242667pt;}
.ws52{word-spacing:11.253333pt;}
.ws58{word-spacing:11.306667pt;}
.ws16{word-spacing:11.360000pt;}
.ws5b{word-spacing:11.573333pt;}
.ws62{word-spacing:11.733333pt;}
.ws13d{word-spacing:11.786667pt;}
.ws2e{word-spacing:11.893333pt;}
.ws7d{word-spacing:11.946667pt;}
.wsaf{word-spacing:12.000000pt;}
.ws94{word-spacing:12.106667pt;}
.wsfa{word-spacing:12.160000pt;}
.ws119{word-spacing:12.213333pt;}
.ws16c{word-spacing:12.285333pt;}
.ws195{word-spacing:12.512000pt;}
.wsf5{word-spacing:12.586667pt;}
.ws112{word-spacing:12.640000pt;}
.ws1f{word-spacing:12.746667pt;}
.ws129{word-spacing:12.800000pt;}
.ws162{word-spacing:12.829333pt;}
.ws139{word-spacing:13.013333pt;}
.ws150{word-spacing:13.056000pt;}
.wsd2{word-spacing:13.066667pt;}
.wsf7{word-spacing:13.333333pt;}
.ws101{word-spacing:13.600000pt;}
.ws85{word-spacing:13.760000pt;}
.ws142{word-spacing:14.189333pt;}
.wsf4{word-spacing:14.240000pt;}
.ws16d{word-spacing:14.370667pt;}
.wsf9{word-spacing:14.400000pt;}
.wsf3{word-spacing:14.453333pt;}
.ws82{word-spacing:14.506667pt;}
.ws182{word-spacing:14.869333pt;}
.ws11c{word-spacing:14.880000pt;}
.ws99{word-spacing:14.933333pt;}
.ws83{word-spacing:15.146667pt;}
.ws197{word-spacing:15.232000pt;}
.ws6b{word-spacing:15.306667pt;}
.ws69{word-spacing:15.413333pt;}
.ws1d{word-spacing:15.626667pt;}
.ws9f{word-spacing:15.786667pt;}
.wsa5{word-spacing:16.000000pt;}
.ws12b{word-spacing:16.266667pt;}
.ws44{word-spacing:17.280000pt;}
.ws53{word-spacing:17.386667pt;}
.ws4d{word-spacing:17.493333pt;}
.ws173{word-spacing:17.544000pt;}
.ws1a5{word-spacing:17.906667pt;}
.wsa4{word-spacing:18.133333pt;}
.wsb6{word-spacing:18.293333pt;}
.ws172{word-spacing:18.314667pt;}
.wsb1{word-spacing:18.560000pt;}
.ws1a4{word-spacing:18.722667pt;}
.ws36{word-spacing:18.773333pt;}
.ws6c{word-spacing:18.986667pt;}
.ws95{word-spacing:19.893333pt;}
.ws70{word-spacing:20.853333pt;}
.ws5a{word-spacing:21.280000pt;}
.ws71{word-spacing:21.813333pt;}
.wsd8{word-spacing:21.973333pt;}
.ws1b6{word-spacing:22.712000pt;}
.ws164{word-spacing:24.026667pt;}
.ws2a{word-spacing:24.053333pt;}
.ws57{word-spacing:25.066667pt;}
.ws163{word-spacing:25.114667pt;}
.ws12a{word-spacing:26.346667pt;}
.ws67{word-spacing:27.786667pt;}
.ws11{word-spacing:28.560000pt;}
.ws43{word-spacing:28.746667pt;}
.ws68{word-spacing:29.013333pt;}
.ws72{word-spacing:30.293333pt;}
.ws134{word-spacing:33.440000pt;}
.ws18d{word-spacing:33.682667pt;}
.ws181{word-spacing:40.346667pt;}
.ws145{word-spacing:41.026667pt;}
.ws144{word-spacing:42.840000pt;}
.ws2{word-spacing:45.470400pt;}
.ws3{word-spacing:45.470933pt;}
.ws6{word-spacing:45.471467pt;}
.wsec{word-spacing:61.744000pt;}
.wseb{word-spacing:74.800000pt;}
.wsee{word-spacing:125.890667pt;}
.wsf0{word-spacing:127.296000pt;}
.wscb{word-spacing:130.016000pt;}
.wscd{word-spacing:142.800000pt;}
.wsef{word-spacing:220.909333pt;}
.wscc{word-spacing:235.749067pt;}
.wsce{word-spacing:250.413867pt;}
.wse9{word-spacing:260.621333pt;}
.wse8{word-spacing:300.786667pt;}
.wsed{word-spacing:339.229333pt;}
.wse6{word-spacing:342.584000pt;}
.wsc7{word-spacing:356.184000pt;}
.wsc3{word-spacing:365.250667pt;}
.wsbf{word-spacing:367.517333pt;}
.wsc0{word-spacing:375.541333pt;}
.wse7{word-spacing:378.941333pt;}
.wsc1{word-spacing:404.872000pt;}
.wsbe{word-spacing:410.402667pt;}
.wsc4{word-spacing:418.789333pt;}
.wsc8{word-spacing:423.368000pt;}
.wsc6{word-spacing:435.834667pt;}
.wsc2{word-spacing:443.677333pt;}
.wse5{word-spacing:770.256000pt;}
._43{margin-left:-2280.357333pt;}
._7b{margin-left:-44.336000pt;}
._1d{margin-left:-41.226667pt;}
._1f{margin-left:-37.653333pt;}
._7a{margin-left:-35.768000pt;}
._7d{margin-left:-33.393067pt;}
._14{margin-left:-31.402667pt;}
._1e{margin-left:-29.813333pt;}
._61{margin-left:-28.053333pt;}
._26{margin-left:-27.093333pt;}
._2a{margin-left:-25.600000pt;}
._f{margin-left:-23.946667pt;}
._1b{margin-left:-22.400000pt;}
._20{margin-left:-21.173333pt;}
._1a{margin-left:-19.680000pt;}
._24{margin-left:-18.291200pt;}
._12{margin-left:-16.693333pt;}
._8{margin-left:-15.194667pt;}
._9{margin-left:-14.253867pt;}
._18{margin-left:-13.261333pt;}
._25{margin-left:-11.733333pt;}
._c{margin-left:-10.453333pt;}
._d{margin-left:-9.562667pt;}
._22{margin-left:-8.000000pt;}
._19{margin-left:-7.045333pt;}
._15{margin-left:-5.920000pt;}
._b{margin-left:-4.480000pt;}
._3{margin-left:-3.554133pt;}
._5{margin-left:-2.160000pt;}
._6{margin-left:-0.969600pt;}
._a{width:0.960000pt;}
._2{width:1.866667pt;}
._10{width:3.091200pt;}
._7{width:4.790400pt;}
._17{width:6.186667pt;}
._76{width:9.066667pt;}
._11{width:10.880000pt;}
._16{width:12.528000pt;}
._23{width:14.240000pt;}
._27{width:15.306667pt;}
._21{width:16.277333pt;}
._2b{width:17.440000pt;}
._29{width:22.293333pt;}
._28{width:23.354667pt;}
._4{width:24.640000pt;}
._77{width:26.112000pt;}
._7c{width:27.736000pt;}
._1c{width:28.746667pt;}
._79{width:30.349333pt;}
._13{width:31.274667pt;}
._78{width:32.384000pt;}
._75{width:45.326933pt;}
._2d{width:59.061333pt;}
._37{width:65.552000pt;}
._6b{width:72.397333pt;}
._2f{width:75.154667pt;}
._4c{width:76.205333pt;}
._65{width:83.866667pt;}
._67{width:85.272000pt;}
._3e{width:86.261333pt;}
._6a{width:87.357333pt;}
._35{width:97.594667pt;}
._4d{width:107.258667pt;}
._39{width:108.701333pt;}
._66{width:112.109333pt;}
._68{width:114.920000pt;}
._51{width:122.581333pt;}
._56{width:124.168000pt;}
._64{width:126.397333pt;}
._41{width:131.141333pt;}
._6f{width:136.544000pt;}
._70{width:137.949333pt;}
._71{width:139.354667pt;}
._45{width:140.630933pt;}
._47{width:147.560000pt;}
._6e{width:149.418667pt;}
._44{width:150.325333pt;}
._33{width:151.957333pt;}
._52{width:155.312000pt;}
._4f{width:156.808000pt;}
._63{width:164.418667pt;}
._6c{width:167.416000pt;}
._46{width:175.802667pt;}
._2c{width:179.248000pt;}
._53{width:189.538667pt;}
._42{width:204.045333pt;}
._73{width:231.562667pt;}
._5e{width:243.757333pt;}
._48{width:247.338667pt;}
._31{width:260.984000pt;}
._62{width:268.949333pt;}
._50{width:271.274667pt;}
._5d{width:274.765333pt;}
._69{width:285.736000pt;}
._5f{width:290.269333pt;}
._49{width:303.506667pt;}
._4e{width:311.349333pt;}
._5c{width:322.909333pt;}
._5a{width:324.994667pt;}
._32{width:328.349333pt;}
._55{width:333.880000pt;}
._72{width:349.882667pt;}
._60{width:357.634667pt;}
._54{width:389.594667pt;}
._59{width:393.085333pt;}
._30{width:417.837333pt;}
._6d{width:472.344000pt;}
._5b{width:509.637333pt;}
._36{width:541.098667pt;}
._34{width:553.458933pt;}
._2e{width:581.264000pt;}
._3d{width:619.616000pt;}
._3f{width:633.669333pt;}
._3a{width:636.026667pt;}
._3b{width:649.762667pt;}
._40{width:655.792000pt;}
._4b{width:694.141333pt;}
._4a{width:703.027200pt;}
._3c{width:706.837333pt;}
._38{width:709.104000pt;}
._0{width:829.546667pt;}
._58{width:1010.660800pt;}
._57{width:1042.846933pt;}
._1{width:1138.928000pt;}
._74{width:2163.480000pt;}
._e{width:2181.960000pt;}
.fse{font-size:27.680000pt;}
.fs11{font-size:28.000000pt;}
.fs8{font-size:29.866667pt;}
.fsf{font-size:31.733333pt;}
.fs0{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fsd{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fsc{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs1{font-size:78.773333pt;}
.fs7{font-size:83.200000pt;}
.fsb{font-size:84.480000pt;}
.fs2{font-size:91.093333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:22.101600pt;}
.y3{bottom:34.104267pt;}
.y2{bottom:34.237600pt;}
.y1{bottom:35.437600pt;}
.y157{bottom:60.637733pt;}
.y32{bottom:62.204000pt;}
.ye4{bottom:62.212800pt;}
.ye3{bottom:62.213600pt;}
.ye2{bottom:62.215733pt;}
.yd4{bottom:62.216000pt;}
.y48{bottom:62.216267pt;}
.yd3{bottom:62.600667pt;}
.y11b{bottom:65.536933pt;}
.yda{bottom:68.880400pt;}
.ydc{bottom:68.884533pt;}
.ydf{bottom:70.185067pt;}
.ye1{bottom:70.206400pt;}
.y31{bottom:75.541333pt;}
.y156{bottom:75.971733pt;}
.yd2{bottom:76.600667pt;}
.ydb{bottom:79.549200pt;}
.y47{bottom:79.549600pt;}
.y11a{bottom:80.870933pt;}
.ye0{bottom:80.882400pt;}
.y30{bottom:88.878667pt;}
.y155{bottom:91.305733pt;}
.y119{bottom:96.204933pt;}
.y46{bottom:96.882933pt;}
.yd1{bottom:98.602667pt;}
.y2f{bottom:102.216000pt;}
.y154{bottom:106.639733pt;}
.y118{bottom:111.538933pt;}
.y45{bottom:114.216267pt;}
.yd0{bottom:117.905200pt;}
.y153{bottom:121.973733pt;}
.y117{bottom:126.872933pt;}
.y34{bottom:129.016000pt;}
.y44{bottom:131.549600pt;}
.ycf{bottom:137.203067pt;}
.y152{bottom:137.307733pt;}
.y116{bottom:142.206933pt;}
.y43{bottom:148.882933pt;}
.y33{bottom:149.016000pt;}
.y151{bottom:152.641733pt;}
.y115{bottom:157.540933pt;}
.ycc{bottom:159.041867pt;}
.yce{bottom:159.042400pt;}
.y18c{bottom:159.544933pt;}
.y9d{bottom:164.882933pt;}
.y42{bottom:166.216267pt;}
.y150{bottom:167.975733pt;}
.y114{bottom:172.874933pt;}
.y18b{bottom:174.878933pt;}
.y107{bottom:180.321733pt;}
.y1bd{bottom:182.087067pt;}
.y14f{bottom:183.309733pt;}
.y41{bottom:183.549600pt;}
.ycd{bottom:184.077733pt;}
.y113{bottom:188.208933pt;}
.y18a{bottom:190.212933pt;}
.y106{bottom:196.324400pt;}
.y14e{bottom:198.643733pt;}
.y1bc{bottom:199.420400pt;}
.y40{bottom:200.882933pt;}
.y112{bottom:203.542933pt;}
.y189{bottom:205.546933pt;}
.yd6{bottom:206.671067pt;}
.yd5{bottom:206.672933pt;}
.yde{bottom:208.882400pt;}
.ydd{bottom:208.882800pt;}
.ycb{bottom:209.580400pt;}
.y14d{bottom:213.977733pt;}
.y1bb{bottom:216.753733pt;}
.y3f{bottom:218.216267pt;}
.y111{bottom:218.876933pt;}
.y188{bottom:220.880933pt;}
.y14c{bottom:229.311733pt;}
.y1ba{bottom:234.087067pt;}
.y110{bottom:234.210933pt;}
.y3e{bottom:235.549600pt;}
.y187{bottom:236.214933pt;}
.y14b{bottom:244.645733pt;}
.y10f{bottom:249.544933pt;}
.y1b9{bottom:251.420400pt;}
.y186{bottom:251.548933pt;}
.y3d{bottom:252.882933pt;}
.yca{bottom:253.522933pt;}
.y14a{bottom:259.979733pt;}
.y10e{bottom:264.878933pt;}
.y2e{bottom:265.205733pt;}
.y185{bottom:266.882933pt;}
.yc9{bottom:267.522933pt;}
.y3c{bottom:270.216267pt;}
.y149{bottom:275.297067pt;}
.y10d{bottom:280.212933pt;}
.yc8{bottom:281.522933pt;}
.y184{bottom:282.216933pt;}
.y2d{bottom:283.872400pt;}
.y3b{bottom:287.549600pt;}
.y148{bottom:290.631067pt;}
.yc7{bottom:295.522933pt;}
.y10c{bottom:295.546933pt;}
.y183{bottom:297.550933pt;}
.y2c{bottom:302.539067pt;}
.y3a{bottom:304.882933pt;}
.y147{bottom:305.965067pt;}
.y10b{bottom:310.880933pt;}
.y1b8{bottom:312.850933pt;}
.y182{bottom:312.884933pt;}
.yc6{bottom:316.722667pt;}
.y2b{bottom:321.205733pt;}
.y146{bottom:321.299067pt;}
.y39{bottom:322.216267pt;}
.y10a{bottom:326.214933pt;}
.y1b7{bottom:328.184933pt;}
.y181{bottom:328.218933pt;}
.yc5{bottom:334.425333pt;}
.y145{bottom:336.633067pt;}
.y49{bottom:339.549600pt;}
.y2a{bottom:339.872400pt;}
.y109{bottom:341.548933pt;}
.y1b6{bottom:343.518933pt;}
.y180{bottom:343.552933pt;}
.y144{bottom:351.967067pt;}
.yc4{bottom:352.128000pt;}
.y38{bottom:355.549600pt;}
.y37{bottom:356.882933pt;}
.y29{bottom:358.539067pt;}
.y1b5{bottom:358.852933pt;}
.y17f{bottom:358.886933pt;}
.y105{bottom:361.250267pt;}
.y143{bottom:367.301067pt;}
.yc3{bottom:369.829867pt;}
.y1b4{bottom:374.186933pt;}
.y96{bottom:374.216267pt;}
.y17e{bottom:374.220933pt;}
.y104{bottom:375.250267pt;}
.y28{bottom:377.205733pt;}
.y142{bottom:382.635067pt;}
.yc2{bottom:387.532533pt;}
.y103{bottom:389.250267pt;}
.y1b3{bottom:389.520933pt;}
.y17d{bottom:389.554933pt;}
.y27{bottom:391.072400pt;}
.y9c{bottom:391.549600pt;}
.y141{bottom:397.969067pt;}
.y1b2{bottom:404.854933pt;}
.y17c{bottom:404.888933pt;}
.yc1{bottom:405.235200pt;}
.y102{bottom:405.250267pt;}
.y95{bottom:407.549600pt;}
.y94{bottom:408.882933pt;}
.y26{bottom:410.539067pt;}
.y140{bottom:413.303067pt;}
.yd7{bottom:417.131067pt;}
.y101{bottom:419.250267pt;}
.y1b1{bottom:420.188933pt;}
.y17b{bottom:420.222933pt;}
.yc0{bottom:422.937867pt;}
.y25{bottom:424.405733pt;}
.y9b{bottom:426.216267pt;}
.y13f{bottom:428.637067pt;}
.y72{bottom:430.722933pt;}
.y100{bottom:433.250267pt;}
.y1b0{bottom:435.522933pt;}
.y17a{bottom:435.556933pt;}
.ybf{bottom:440.640533pt;}
.y9a{bottom:443.549600pt;}
.y24{bottom:443.872400pt;}
.y13e{bottom:443.971067pt;}
.y71{bottom:449.389600pt;}
.y1af{bottom:450.856933pt;}
.y179{bottom:450.890933pt;}
.yff{bottom:455.252267pt;}
.ybe{bottom:458.343200pt;}
.y13d{bottom:459.305067pt;}
.ya1{bottom:459.549600pt;}
.y93{bottom:460.882933pt;}
.y23{bottom:462.539067pt;}
.y1ae{bottom:466.190933pt;}
.y178{bottom:466.224933pt;}
.yfe{bottom:474.552933pt;}
.y13c{bottom:474.639067pt;}
.ybd{bottom:476.045867pt;}
.y92{bottom:478.216267pt;}
.y22{bottom:481.205733pt;}
.y70{bottom:481.389600pt;}
.y1ad{bottom:481.524933pt;}
.y177{bottom:481.558933pt;}
.y13b{bottom:489.973067pt;}
.ybc{bottom:493.748533pt;}
.yfd{bottom:493.860133pt;}
.y21{bottom:495.072400pt;}
.y91{bottom:495.549600pt;}
.y1ac{bottom:496.858933pt;}
.y176{bottom:496.892933pt;}
.y6f{bottom:501.389600pt;}
.y13a{bottom:505.307067pt;}
.ybb{bottom:511.451200pt;}
.y1ab{bottom:512.192933pt;}
.y175{bottom:512.226933pt;}
.y90{bottom:512.882933pt;}
.yfc{bottom:513.160800pt;}
.y20{bottom:514.539067pt;}
.y139{bottom:520.641067pt;}
.y6e{bottom:521.389600pt;}
.y1aa{bottom:527.526933pt;}
.y174{bottom:527.560933pt;}
.y9f{bottom:528.882933pt;}
.yba{bottom:529.153867pt;}
.y8f{bottom:530.216267pt;}
.yfb{bottom:532.461467pt;}
.y1f{bottom:533.205733pt;}
.y138{bottom:535.975067pt;}
.y6d{bottom:541.389600pt;}
.y1a9{bottom:542.860933pt;}
.y173{bottom:542.894933pt;}
.yb9{bottom:546.856533pt;}
.y1e{bottom:547.072400pt;}
.y8e{bottom:547.549600pt;}
.y137{bottom:551.309067pt;}
.yfa{bottom:551.768000pt;}
.y1a8{bottom:558.194933pt;}
.y172{bottom:558.228933pt;}
.y6c{bottom:561.389600pt;}
.yb8{bottom:564.559200pt;}
.y8d{bottom:564.882933pt;}
.y1d{bottom:566.539067pt;}
.y136{bottom:566.643067pt;}
.yf9{bottom:571.068667pt;}
.y1a7{bottom:573.528933pt;}
.y171{bottom:573.562933pt;}
.y1c{bottom:580.405733pt;}
.y6b{bottom:581.389600pt;}
.y135{bottom:581.977067pt;}
.y8c{bottom:582.216267pt;}
.yb7{bottom:582.261733pt;}
.y1a6{bottom:588.862933pt;}
.y170{bottom:588.896933pt;}
.yf8{bottom:590.369333pt;}
.y134{bottom:597.311067pt;}
.y108{bottom:598.216267pt;}
.y8b{bottom:599.549600pt;}
.y1b{bottom:599.872400pt;}
.yb6{bottom:599.964400pt;}
.y6a{bottom:601.389600pt;}
.y1a5{bottom:604.196933pt;}
.y16f{bottom:604.230933pt;}
.yf7{bottom:609.674000pt;}
.y133{bottom:612.645067pt;}
.y8a{bottom:616.882933pt;}
.yb5{bottom:617.667067pt;}
.y1a4{bottom:619.530933pt;}
.y16e{bottom:619.564933pt;}
.y69{bottom:621.389600pt;}
.y1a{bottom:625.072400pt;}
.y19{bottom:627.072400pt;}
.yd8{bottom:627.591067pt;}
.y132{bottom:627.979067pt;}
.yf6{bottom:631.842000pt;}
.y89{bottom:634.216267pt;}
.y1a3{bottom:634.864933pt;}
.y16d{bottom:634.898933pt;}
.yb4{bottom:635.369733pt;}
.y68{bottom:641.389600pt;}
.y131{bottom:643.313067pt;}
.y18{bottom:649.072400pt;}
.y1a2{bottom:650.198933pt;}
.y16c{bottom:650.232933pt;}
.y17{bottom:651.072400pt;}
.y88{bottom:651.549600pt;}
.yb3{bottom:653.072400pt;}
.yf5{bottom:656.877333pt;}
.y130{bottom:658.621600pt;}
.y67{bottom:661.389600pt;}
.y1a1{bottom:665.532933pt;}
.y16b{bottom:665.566933pt;}
.y87{bottom:668.882933pt;}
.yb2{bottom:670.775067pt;}
.y16{bottom:673.072400pt;}
.y12f{bottom:673.955600pt;}
.y15{bottom:675.072400pt;}
.y1a0{bottom:680.866933pt;}
.y16a{bottom:680.900933pt;}
.y66{bottom:681.389600pt;}
.yf4{bottom:681.913200pt;}
.y86{bottom:686.216267pt;}
.yb1{bottom:688.477733pt;}
.y12e{bottom:689.289600pt;}
.y19f{bottom:696.200933pt;}
.y169{bottom:696.234933pt;}
.y14{bottom:697.072400pt;}
.y13{bottom:699.072400pt;}
.y65{bottom:701.389600pt;}
.y85{bottom:703.549600pt;}
.y12d{bottom:704.623600pt;}
.yf3{bottom:704.751067pt;}
.yb0{bottom:706.180400pt;}
.y19e{bottom:711.534933pt;}
.y168{bottom:711.568933pt;}
.y12c{bottom:719.957600pt;}
.y84{bottom:720.882933pt;}
.y12{bottom:721.072400pt;}
.y64{bottom:721.389600pt;}
.y11{bottom:723.072400pt;}
.yaf{bottom:723.883067pt;}
.yf2{bottom:724.051733pt;}
.y19d{bottom:726.868933pt;}
.y167{bottom:726.902933pt;}
.y12b{bottom:735.291600pt;}
.y83{bottom:738.216267pt;}
.y63{bottom:741.389600pt;}
.yae{bottom:741.585733pt;}
.y19c{bottom:742.202933pt;}
.y166{bottom:742.236933pt;}
.yf1{bottom:743.358267pt;}
.y10{bottom:745.072400pt;}
.yf{bottom:747.072400pt;}
.y12a{bottom:750.625600pt;}
.y82{bottom:755.549600pt;}
.y19b{bottom:757.536933pt;}
.y165{bottom:757.570933pt;}
.yad{bottom:759.288400pt;}
.y62{bottom:761.389600pt;}
.yf0{bottom:762.658933pt;}
.y129{bottom:765.959600pt;}
.y57{bottom:767.421600pt;}
.ye{bottom:769.072400pt;}
.yd{bottom:771.072400pt;}
.y19a{bottom:772.870933pt;}
.y81{bottom:772.882933pt;}
.y164{bottom:772.904933pt;}
.yac{bottom:776.991067pt;}
.y128{bottom:781.293600pt;}
.y61{bottom:781.389600pt;}
.yef{bottom:781.959600pt;}
.y56{bottom:782.088267pt;}
.y199{bottom:788.204933pt;}
.y163{bottom:788.238933pt;}
.ya0{bottom:788.882933pt;}
.y80{bottom:790.216267pt;}
.yc{bottom:793.072400pt;}
.yab{bottom:794.693733pt;}
.yb{bottom:795.072400pt;}
.y127{bottom:796.627600pt;}
.y55{bottom:796.754933pt;}
.yee{bottom:801.266000pt;}
.y60{bottom:801.389600pt;}
.y198{bottom:803.538933pt;}
.y162{bottom:803.572933pt;}
.y7f{bottom:807.549600pt;}
.y54{bottom:811.421600pt;}
.y126{bottom:811.961600pt;}
.yaa{bottom:812.396400pt;}
.y197{bottom:818.872933pt;}
.y161{bottom:818.906933pt;}
.yed{bottom:820.566667pt;}
.y5f{bottom:821.389600pt;}
.y7e{bottom:824.882933pt;}
.y53{bottom:826.088267pt;}
.y125{bottom:827.295600pt;}
.ya9{bottom:830.099067pt;}
.y196{bottom:834.206933pt;}
.y160{bottom:834.240933pt;}
.yd9{bottom:838.051067pt;}
.yec{bottom:839.867333pt;}
.y52{bottom:840.754933pt;}
.y5e{bottom:841.389600pt;}
.y7d{bottom:842.216267pt;}
.y124{bottom:842.629600pt;}
.ya{bottom:847.067067pt;}
.ya8{bottom:847.801733pt;}
.y195{bottom:849.540933pt;}
.y15f{bottom:849.574933pt;}
.y51{bottom:855.421600pt;}
.y123{bottom:857.963600pt;}
.y99{bottom:858.216267pt;}
.yeb{bottom:859.171067pt;}
.y7c{bottom:859.549600pt;}
.y5d{bottom:861.389600pt;}
.y194{bottom:864.874933pt;}
.y15e{bottom:864.908933pt;}
.ya7{bottom:865.504400pt;}
.y122{bottom:873.297600pt;}
.y7b{bottom:876.882933pt;}
.y9{bottom:877.739067pt;}
.y193{bottom:880.208933pt;}
.y15d{bottom:880.242933pt;}
.yea{bottom:881.339067pt;}
.y5c{bottom:881.389600pt;}
.ya6{bottom:883.207067pt;}
.y50{bottom:884.754933pt;}
.y121{bottom:888.631600pt;}
.y9e{bottom:894.216267pt;}
.y192{bottom:895.542933pt;}
.y15c{bottom:895.576933pt;}
.y4f{bottom:899.421600pt;}
.ya5{bottom:900.909733pt;}
.y5b{bottom:901.389600pt;}
.y120{bottom:903.965600pt;}
.ye9{bottom:906.374400pt;}
.ye7{bottom:906.375067pt;}
.y191{bottom:910.876933pt;}
.y15b{bottom:910.910933pt;}
.y98{bottom:911.549600pt;}
.y7a{bottom:911.554933pt;}
.y4e{bottom:914.088267pt;}
.y11f{bottom:919.299600pt;}
.y5a{bottom:921.389600pt;}
.ye8{bottom:921.708400pt;}
.ya4{bottom:921.944400pt;}
.y190{bottom:926.210933pt;}
.y15a{bottom:926.244933pt;}
.y78{bottom:927.549600pt;}
.y4d{bottom:928.754933pt;}
.y77{bottom:928.877600pt;}
.y79{bottom:928.882933pt;}
.y11e{bottom:934.633600pt;}
.y8{bottom:940.405733pt;}
.y59{bottom:941.389600pt;}
.y18f{bottom:941.544933pt;}
.y159{bottom:941.578933pt;}
.y4c{bottom:943.421600pt;}
.y97{bottom:946.216267pt;}
.ye6{bottom:946.744267pt;}
.ya3{bottom:947.444400pt;}
.y11d{bottom:949.967600pt;}
.y18e{bottom:956.878933pt;}
.y158{bottom:956.912933pt;}
.y4b{bottom:958.088267pt;}
.y58{bottom:961.389600pt;}
.y76{bottom:962.216267pt;}
.ya2{bottom:963.447067pt;}
.y75{bottom:963.549600pt;}
.y11c{bottom:965.301600pt;}
.y18d{bottom:972.212933pt;}
.ye5{bottom:972.246933pt;}
.y4a{bottom:972.754933pt;}
.y7{bottom:976.354267pt;}
.y6{bottom:990.490267pt;}
.y5{bottom:995.823600pt;}
.y36{bottom:1002.526933pt;}
.y35{bottom:1005.260267pt;}
.y74{bottom:1005.282933pt;}
.y73{bottom:1022.280000pt;}
.hb{height:24.669867pt;}
.h18{height:27.166406pt;}
.hd{height:29.306667pt;}
.h2{height:30.837333pt;}
.hf{height:30.928000pt;}
.h1c{height:33.040000pt;}
.h14{height:33.493333pt;}
.h4{height:34.645333pt;}
.hc{height:35.242667pt;}
.h19{height:35.586667pt;}
.h16{height:37.445333pt;}
.h1f{height:37.456533pt;}
.h23{height:37.512000pt;}
.h22{height:37.547200pt;}
.h6{height:37.680000pt;}
.h1d{height:41.128000pt;}
.h15{height:41.866667pt;}
.h12{height:44.053333pt;}
.h21{height:45.310667pt;}
.h20{height:45.311200pt;}
.h1e{height:46.611733pt;}
.h1a{height:46.612267pt;}
.h1b{height:46.614933pt;}
.ha{height:50.240000pt;}
.h10{height:52.864000pt;}
.h13{height:54.837333pt;}
.he{height:58.613333pt;}
.h8{height:63.968000pt;}
.h3{height:65.066773pt;}
.h9{height:68.723200pt;}
.h11{height:69.780480pt;}
.h5{height:75.243093pt;}
.h7{height:75.360000pt;}
.h17{height:1043.146667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.717067pt;}
.x5{left:60.850400pt;}
.x45{left:66.186667pt;}
.x47{left:69.202400pt;}
.x46{left:76.851333pt;}
.x40{left:78.182667pt;}
.x65{left:79.517067pt;}
.x36{left:84.850267pt;}
.x37{left:90.722267pt;}
.x3e{left:95.586000pt;}
.x34{left:96.615067pt;}
.x35{left:98.939467pt;}
.x3f{left:99.858000pt;}
.x67{left:101.235067pt;}
.x68{left:103.559467pt;}
.x4a{left:120.024800pt;}
.x4b{left:145.060133pt;}
.x48{left:154.449733pt;}
.x6{left:157.252800pt;}
.x7{left:160.243067pt;}
.x20{left:179.153333pt;}
.x63{left:180.675200pt;}
.x21{left:183.377333pt;}
.x66{left:196.712933pt;}
.x8{left:199.709733pt;}
.x4c{left:201.866000pt;}
.x9{left:203.933733pt;}
.x44{left:209.417333pt;}
.x4d{left:221.166667pt;}
.x31{left:226.885333pt;}
.x26{left:230.247333pt;}
.x27{left:234.471333pt;}
.x14{left:241.191333pt;}
.xe{left:244.141467pt;}
.x15{left:245.415200pt;}
.xf{left:248.365467pt;}
.x4e{left:259.773733pt;}
.x39{left:270.876000pt;}
.x2c{left:272.126000pt;}
.x1a{left:275.958667pt;}
.x4f{left:279.074400pt;}
.x1b{left:280.182667pt;}
.x50{left:298.375067pt;}
.x51{left:317.681467pt;}
.x52{left:336.982133pt;}
.x53{left:359.820133pt;}
.x22{left:363.839333pt;}
.x23{left:368.063200pt;}
.x28{left:369.872667pt;}
.x32{left:372.503867pt;}
.x29{left:374.096533pt;}
.x33{left:376.727867pt;}
.x54{left:384.856000pt;}
.x16{left:408.523067pt;}
.x55{left:409.891333pt;}
.x17{left:412.747067pt;}
.x38{left:426.466667pt;}
.x56{left:432.059333pt;}
.x10{left:433.641200pt;}
.x11{left:437.865200pt;}
.x43{left:439.005600pt;}
.x49{left:441.069733pt;}
.x41{left:443.869467pt;}
.x42{left:448.141467pt;}
.x57{left:451.363867pt;}
.x2d{left:454.144400pt;}
.x2e{left:458.368400pt;}
.xa{left:460.784533pt;}
.xb{left:465.008533pt;}
.x58{left:470.664533pt;}
.x1c{left:479.058400pt;}
.x1d{left:483.282400pt;}
.x59{left:489.965200pt;}
.x5a{left:509.271733pt;}
.x18{left:527.263867pt;}
.x5b{left:528.572400pt;}
.x19{left:531.535867pt;}
.x2a{left:534.867467pt;}
.x2b{left:539.091333pt;}
.x4{left:545.022133pt;}
.x5c{left:547.873067pt;}
.x24{left:552.139333pt;}
.x25{left:556.411333pt;}
.x5d{left:567.179467pt;}
.x5e{left:586.480133pt;}
.x64{left:603.895467pt;}
.x5f{left:608.482133pt;}
.x2f{left:612.305200pt;}
.x30{left:616.577200pt;}
.x60{left:622.482133pt;}
.x1e{left:625.574400pt;}
.x1f{left:629.846267pt;}
.x61{left:636.482133pt;}
.x12{left:647.637067pt;}
.x13{left:651.909067pt;}
.x62{left:666.482133pt;}
.x69{left:667.834667pt;}
.x3b{left:672.454533pt;}
.x6a{left:690.337333pt;}
.x2{left:693.308667pt;}
.x3c{left:694.957333pt;}
.x3{left:696.298933pt;}
.x3d{left:697.281733pt;}
.xc{left:724.522000pt;}
.xd{left:728.794000pt;}
.x3a{left:773.440000pt;}
}




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