
    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_e92f2f1e1adbd7ab1a200269.woff')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_93356dc4e9140a118e4ddd30.woff')format("woff");}.ff2{font-family:ff2;line-height:1.223000;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_b5f313fbb3846787035774fe.woff')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_310076396f967972557e1a58.woff')format("woff");}.ff4{font-family:ff4;line-height:1.239000;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_b8b8884bc9101e01e8c02e5c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.146000;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_3fafd1c7397a11ac61f37d45.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_329a8b8ba42e788b6870ee47.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_aaa8a3de7904b46cc0600f10.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.400513px;}
.v1{vertical-align:24.000000px;}
.v3{vertical-align:36.674730px;}
.ls69{letter-spacing:-3.366000px;}
.ls67{letter-spacing:-0.969000px;}
.ls68{letter-spacing:-0.663000px;}
.ls66{letter-spacing:-0.480000px;}
.lsac{letter-spacing:-0.459000px;}
.ls21{letter-spacing:-0.420000px;}
.lsab{letter-spacing:-0.408000px;}
.ls42{letter-spacing:-0.360000px;}
.lsad{letter-spacing:-0.357000px;}
.lsa3{letter-spacing:-0.306000px;}
.ls23{letter-spacing:-0.300000px;}
.ls8e{letter-spacing:-0.255000px;}
.ls52{letter-spacing:-0.240000px;}
.ls8b{letter-spacing:-0.204000px;}
.ls25{letter-spacing:-0.180000px;}
.lsa2{letter-spacing:-0.153000px;}
.ls24{letter-spacing:-0.120000px;}
.ls8d{letter-spacing:-0.102000px;}
.ls51{letter-spacing:-0.060000px;}
.ls8c{letter-spacing:-0.051000px;}
.ls1f{letter-spacing:0.000000px;}
.ls62{letter-spacing:0.000037px;}
.ls46{letter-spacing:0.000044px;}
.ls61{letter-spacing:0.003567px;}
.ls64{letter-spacing:0.022165px;}
.ls2b{letter-spacing:0.030000px;}
.ls94{letter-spacing:0.051000px;}
.ls3c{letter-spacing:0.060000px;}
.ls6e{letter-spacing:0.090000px;}
.ls7c{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls5e{letter-spacing:0.143371px;}
.lsaa{letter-spacing:0.153000px;}
.ls1d{letter-spacing:0.178791px;}
.ls3a{letter-spacing:0.180000px;}
.ls99{letter-spacing:0.204000px;}
.ls6b{letter-spacing:0.210022px;}
.ls0{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.251968px;}
.ls1e{letter-spacing:0.255000px;}
.ls81{letter-spacing:0.264000px;}
.lsa6{letter-spacing:0.280500px;}
.ls89{letter-spacing:0.288000px;}
.ls6a{letter-spacing:0.293989px;}
.ls1{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.305989px;}
.ls93{letter-spacing:0.306000px;}
.ls1c{letter-spacing:0.330000px;}
.ls56{letter-spacing:0.337189px;}
.ls95{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.371969px;}
.ls80{letter-spacing:0.408000px;}
.ls2d{letter-spacing:0.420000px;}
.ls4f{letter-spacing:0.450000px;}
.ls88{letter-spacing:0.459000px;}
.ls5a{letter-spacing:0.475891px;}
.ls3f{letter-spacing:0.480000px;}
.ls7d{letter-spacing:0.510000px;}
.ls55{letter-spacing:0.529792px;}
.ls38{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.557373px;}
.ls7a{letter-spacing:0.561000px;}
.ls53{letter-spacing:0.570000px;}
.ls35{letter-spacing:0.600000px;}
.ls9b{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.630000px;}
.lsf{letter-spacing:0.660000px;}
.ls90{letter-spacing:0.663000px;}
.lsa8{letter-spacing:0.688500px;}
.ls75{letter-spacing:0.714000px;}
.ls3{letter-spacing:0.720000px;}
.ls7e{letter-spacing:0.739500px;}
.ls59{letter-spacing:0.742158px;}
.ls82{letter-spacing:0.765000px;}
.ls13{letter-spacing:0.780000px;}
.lsa0{letter-spacing:0.790500px;}
.ls8f{letter-spacing:0.816000px;}
.ls45{letter-spacing:0.821455px;}
.ls8{letter-spacing:0.840000px;}
.ls5f{letter-spacing:0.859809px;}
.ls7f{letter-spacing:0.867000px;}
.ls4e{letter-spacing:0.870000px;}
.lsa7{letter-spacing:0.892500px;}
.lse{letter-spacing:0.900000px;}
.ls73{letter-spacing:0.918000px;}
.ls58{letter-spacing:0.930000px;}
.ls2e{letter-spacing:0.960000px;}
.ls83{letter-spacing:0.969000px;}
.ls29{letter-spacing:0.972000px;}
.lsc{letter-spacing:0.990000px;}
.ls7b{letter-spacing:0.994500px;}
.ls17{letter-spacing:1.020000px;}
.ls86{letter-spacing:1.071000px;}
.ls3d{letter-spacing:1.080000px;}
.ls92{letter-spacing:1.122000px;}
.lsd{letter-spacing:1.140000px;}
.ls5c{letter-spacing:1.158508px;}
.ls74{letter-spacing:1.173000px;}
.lsb{letter-spacing:1.175974px;}
.ls39{letter-spacing:1.200000px;}
.ls91{letter-spacing:1.224000px;}
.ls54{letter-spacing:1.230000px;}
.ls5d{letter-spacing:1.230101px;}
.ls1a{letter-spacing:1.235993px;}
.ls11{letter-spacing:1.260000px;}
.ls41{letter-spacing:1.266000px;}
.ls84{letter-spacing:1.275000px;}
.ls2a{letter-spacing:1.320000px;}
.lsa4{letter-spacing:1.326000px;}
.ls87{letter-spacing:1.377000px;}
.lsa{letter-spacing:1.380000px;}
.ls1b{letter-spacing:1.410000px;}
.ls9c{letter-spacing:1.428000px;}
.ls15{letter-spacing:1.440000px;}
.ls6c{letter-spacing:1.470000px;}
.ls96{letter-spacing:1.479000px;}
.ls19{letter-spacing:1.500000px;}
.ls77{letter-spacing:1.530000px;}
.ls32{letter-spacing:1.560000px;}
.ls9a{letter-spacing:1.581000px;}
.ls10{letter-spacing:1.620000px;}
.ls8a{letter-spacing:1.632000px;}
.ls18{letter-spacing:1.680000px;}
.ls85{letter-spacing:1.683000px;}
.ls5b{letter-spacing:1.701035px;}
.ls4c{letter-spacing:1.710000px;}
.lsa1{letter-spacing:1.734000px;}
.ls44{letter-spacing:1.740000px;}
.ls6f{letter-spacing:1.770000px;}
.ls26{letter-spacing:1.800000px;}
.ls49{letter-spacing:1.830000px;}
.ls97{letter-spacing:1.836000px;}
.ls3e{letter-spacing:1.860000px;}
.ls12{letter-spacing:1.865973px;}
.ls78{letter-spacing:1.887000px;}
.ls22{letter-spacing:1.920000px;}
.ls76{letter-spacing:1.938000px;}
.ls4b{letter-spacing:1.980000px;}
.ls9e{letter-spacing:1.989000px;}
.ls27{letter-spacing:2.040000px;}
.ls98{letter-spacing:2.091000px;}
.ls48{letter-spacing:2.100000px;}
.ls16{letter-spacing:2.106000px;}
.ls6d{letter-spacing:2.130000px;}
.ls47{letter-spacing:2.160000px;}
.ls34{letter-spacing:2.220000px;}
.lsa9{letter-spacing:2.244000px;}
.ls3b{letter-spacing:2.280000px;}
.ls9d{letter-spacing:2.295000px;}
.ls40{letter-spacing:2.340000px;}
.lsa5{letter-spacing:2.346000px;}
.ls33{letter-spacing:2.400000px;}
.ls79{letter-spacing:2.448000px;}
.ls31{letter-spacing:2.460000px;}
.ls57{letter-spacing:2.520000px;}
.ls72{letter-spacing:2.601000px;}
.ls37{letter-spacing:2.640000px;}
.ls7{letter-spacing:2.760000px;}
.ls2c{letter-spacing:2.820000px;}
.ls9f{letter-spacing:2.856000px;}
.ls30{letter-spacing:2.880000px;}
.ls4a{letter-spacing:2.940000px;}
.ls43{letter-spacing:3.120000px;}
.ls36{letter-spacing:3.180000px;}
.ls70{letter-spacing:3.238500px;}
.ls2f{letter-spacing:3.360000px;}
.ls50{letter-spacing:3.420000px;}
.ls4d{letter-spacing:3.840000px;}
.ls20{letter-spacing:3.990000px;}
.ls71{letter-spacing:4.233000px;}
.ls14{letter-spacing:5.280000px;}
.ls63{letter-spacing:154.428000px;}
.ls65{letter-spacing:222.716990px;}
.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;}
}
.ws2b{word-spacing:-17.640000px;}
.ws89{word-spacing:-16.920000px;}
.wsc1{word-spacing:-16.560000px;}
.ws9c{word-spacing:-16.140000px;}
.ws8a{word-spacing:-15.360000px;}
.ws58{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.000000px;}
.wsc6{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.544000px;}
.wsc4{word-spacing:-13.209000px;}
.wsc5{word-spacing:-13.005000px;}
.wsa0{word-spacing:-12.750000px;}
.ws59{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws9e{word-spacing:-11.781000px;}
.ws5{word-spacing:-11.520000px;}
.wsc2{word-spacing:-10.710000px;}
.ws1{word-spacing:-9.996000px;}
.wsc3{word-spacing:-9.741000px;}
.ws0{word-spacing:-9.408000px;}
.wsa4{word-spacing:-9.384000px;}
.ws8{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.wsa9{word-spacing:-7.500000px;}
.wsac{word-spacing:-6.375000px;}
.wsa{word-spacing:-3.990000px;}
.ws35{word-spacing:-2.820000px;}
.ws44{word-spacing:-2.460000px;}
.ws6a{word-spacing:-1.920000px;}
.ws82{word-spacing:-1.740000px;}
.wsaa{word-spacing:-1.680000px;}
.ws40{word-spacing:-1.620000px;}
.ws31{word-spacing:-1.560000px;}
.wsc{word-spacing:-1.500000px;}
.ws12{word-spacing:-1.380000px;}
.ws11f{word-spacing:-1.377000px;}
.ws126{word-spacing:-1.326000px;}
.ws41{word-spacing:-1.320000px;}
.wsd0{word-spacing:-1.275000px;}
.wse{word-spacing:-1.260000px;}
.wsb1{word-spacing:-1.200000px;}
.wse9{word-spacing:-1.173000px;}
.ws11{word-spacing:-1.140000px;}
.ws99{word-spacing:-1.080000px;}
.ws52{word-spacing:-1.020000px;}
.wse7{word-spacing:-0.969000px;}
.ws3b{word-spacing:-0.960000px;}
.wsf5{word-spacing:-0.918000px;}
.ws26{word-spacing:-0.900000px;}
.ws38{word-spacing:-0.840000px;}
.ws10e{word-spacing:-0.816000px;}
.ws5c{word-spacing:-0.780000px;}
.ws13{word-spacing:-0.720000px;}
.ws128{word-spacing:-0.663000px;}
.ws9b{word-spacing:-0.660000px;}
.ws2a{word-spacing:-0.612000px;}
.ws49{word-spacing:-0.600000px;}
.wsef{word-spacing:-0.561000px;}
.wsb3{word-spacing:-0.540000px;}
.ws100{word-spacing:-0.459000px;}
.ws17{word-spacing:-0.420000px;}
.wsd{word-spacing:-0.360000px;}
.ws116{word-spacing:-0.357000px;}
.ws1c{word-spacing:-0.300000px;}
.wsdb{word-spacing:-0.264000px;}
.wsee{word-spacing:-0.255000px;}
.wsb{word-spacing:-0.240000px;}
.ws113{word-spacing:-0.204000px;}
.ws70{word-spacing:-0.180000px;}
.wsec{word-spacing:-0.153000px;}
.ws6f{word-spacing:-0.120000px;}
.ws32{word-spacing:-0.060000px;}
.wse8{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.ws132{word-spacing:0.051000px;}
.ws7a{word-spacing:0.060000px;}
.ws130{word-spacing:0.102000px;}
.ws6d{word-spacing:0.180000px;}
.ws115{word-spacing:0.255000px;}
.ws3a{word-spacing:0.300000px;}
.wsf0{word-spacing:0.408000px;}
.wsf4{word-spacing:0.459000px;}
.wsae{word-spacing:0.480000px;}
.wsf9{word-spacing:0.510000px;}
.ws129{word-spacing:0.561000px;}
.ws36{word-spacing:0.600000px;}
.wse6{word-spacing:0.612000px;}
.ws68{word-spacing:0.660000px;}
.wsad{word-spacing:0.663000px;}
.ws101{word-spacing:0.714000px;}
.ws108{word-spacing:0.765000px;}
.ws64{word-spacing:0.780000px;}
.ws114{word-spacing:0.816000px;}
.ws4e{word-spacing:0.900000px;}
.wsbc{word-spacing:0.960000px;}
.ws10a{word-spacing:0.969000px;}
.ws83{word-spacing:1.020000px;}
.ws33{word-spacing:1.080000px;}
.wsc7{word-spacing:1.140000px;}
.wsf{word-spacing:1.200000px;}
.ws133{word-spacing:1.224000px;}
.ws62{word-spacing:1.260000px;}
.wsd7{word-spacing:1.275000px;}
.wsb9{word-spacing:1.320000px;}
.ws124{word-spacing:1.326000px;}
.wsf1{word-spacing:1.428000px;}
.ws120{word-spacing:1.479000px;}
.ws10{word-spacing:1.500000px;}
.ws12a{word-spacing:1.530000px;}
.ws2d{word-spacing:1.560000px;}
.ws109{word-spacing:1.581000px;}
.ws5b{word-spacing:1.620000px;}
.wscf{word-spacing:1.632000px;}
.wsb5{word-spacing:1.680000px;}
.wsea{word-spacing:1.683000px;}
.wsfa{word-spacing:1.734000px;}
.wsab{word-spacing:1.740000px;}
.wsd9{word-spacing:1.785000px;}
.ws4b{word-spacing:1.800000px;}
.ws103{word-spacing:1.836000px;}
.ws5f{word-spacing:1.860000px;}
.ws75{word-spacing:1.920000px;}
.ws10d{word-spacing:1.938000px;}
.ws16{word-spacing:1.980000px;}
.ws37{word-spacing:2.040000px;}
.wsfb{word-spacing:2.091000px;}
.ws25{word-spacing:2.100000px;}
.wsed{word-spacing:2.142000px;}
.ws53{word-spacing:2.160000px;}
.ws27{word-spacing:2.220000px;}
.wsbe{word-spacing:2.280000px;}
.wsde{word-spacing:2.295000px;}
.ws1b{word-spacing:2.340000px;}
.wsf7{word-spacing:2.346000px;}
.wsda{word-spacing:2.397000px;}
.ws95{word-spacing:2.400000px;}
.ws3c{word-spacing:2.460000px;}
.wsc0{word-spacing:2.520000px;}
.wsfc{word-spacing:2.550000px;}
.ws63{word-spacing:2.580000px;}
.wsd6{word-spacing:2.601000px;}
.ws54{word-spacing:2.640000px;}
.ws102{word-spacing:2.652000px;}
.ws19{word-spacing:2.700000px;}
.ws21{word-spacing:2.760000px;}
.ws125{word-spacing:2.805000px;}
.wsb6{word-spacing:2.820000px;}
.ws12b{word-spacing:2.856000px;}
.ws7d{word-spacing:2.880000px;}
.wse2{word-spacing:2.907000px;}
.ws8b{word-spacing:2.940000px;}
.ws91{word-spacing:3.000000px;}
.wsd8{word-spacing:3.009000px;}
.ws93{word-spacing:3.060000px;}
.ws8e{word-spacing:3.120000px;}
.ws8f{word-spacing:3.180000px;}
.wsdf{word-spacing:3.213000px;}
.ws65{word-spacing:3.240000px;}
.ws106{word-spacing:3.264000px;}
.ws30{word-spacing:3.300000px;}
.ws10f{word-spacing:3.315000px;}
.wsbb{word-spacing:3.360000px;}
.wse5{word-spacing:3.417000px;}
.ws81{word-spacing:3.420000px;}
.wsdc{word-spacing:3.468000px;}
.ws22{word-spacing:3.480000px;}
.ws105{word-spacing:3.519000px;}
.ws1a{word-spacing:3.540000px;}
.ws118{word-spacing:3.570000px;}
.wsf3{word-spacing:3.621000px;}
.ws50{word-spacing:3.660000px;}
.ws11b{word-spacing:3.672000px;}
.wsf8{word-spacing:3.825000px;}
.ws5e{word-spacing:3.840000px;}
.wse3{word-spacing:3.876000px;}
.ws84{word-spacing:3.900000px;}
.ws2e{word-spacing:3.960000px;}
.wsce{word-spacing:3.978000px;}
.ws5a{word-spacing:4.020000px;}
.ws85{word-spacing:4.029000px;}
.ws4d{word-spacing:4.080000px;}
.wsb2{word-spacing:4.140000px;}
.wsf2{word-spacing:4.182000px;}
.ws1e{word-spacing:4.200000px;}
.ws107{word-spacing:4.335000px;}
.ws6c{word-spacing:4.380000px;}
.ws2f{word-spacing:4.440000px;}
.ws39{word-spacing:4.500000px;}
.wsdd{word-spacing:4.539000px;}
.ws47{word-spacing:4.560000px;}
.ws61{word-spacing:4.620000px;}
.ws7e{word-spacing:4.740000px;}
.ws119{word-spacing:4.743000px;}
.ws18{word-spacing:4.800000px;}
.wsf6{word-spacing:4.896000px;}
.wse0{word-spacing:4.947000px;}
.ws77{word-spacing:4.980000px;}
.ws20{word-spacing:5.040000px;}
.wse4{word-spacing:5.049000px;}
.ws51{word-spacing:5.100000px;}
.ws10b{word-spacing:5.151000px;}
.ws24{word-spacing:5.160000px;}
.ws90{word-spacing:5.220000px;}
.wsa5{word-spacing:5.280000px;}
.ws12e{word-spacing:5.304000px;}
.ws4f{word-spacing:5.340000px;}
.ws78{word-spacing:5.400000px;}
.wsfd{word-spacing:5.457000px;}
.ws45{word-spacing:5.460000px;}
.wsa7{word-spacing:5.520000px;}
.ws66{word-spacing:5.580000px;}
.wsb0{word-spacing:5.640000px;}
.ws57{word-spacing:5.712000px;}
.wsd2{word-spacing:5.763000px;}
.wsd3{word-spacing:5.814000px;}
.ws3f{word-spacing:5.820000px;}
.ws104{word-spacing:5.865000px;}
.ws1d{word-spacing:5.880000px;}
.ws98{word-spacing:6.000000px;}
.ws11c{word-spacing:6.018000px;}
.wsa6{word-spacing:6.060000px;}
.ws11e{word-spacing:6.069000px;}
.ws23{word-spacing:6.120000px;}
.ws12c{word-spacing:6.171000px;}
.ws6e{word-spacing:6.300000px;}
.wseb{word-spacing:6.324000px;}
.ws76{word-spacing:6.360000px;}
.ws12f{word-spacing:6.375000px;}
.wse1{word-spacing:6.426000px;}
.wsaf{word-spacing:6.480000px;}
.wsc9{word-spacing:6.540000px;}
.ws28{word-spacing:6.600000px;}
.wsbf{word-spacing:6.780000px;}
.ws88{word-spacing:6.783000px;}
.ws117{word-spacing:6.834000px;}
.wsc8{word-spacing:6.900000px;}
.ws67{word-spacing:7.020000px;}
.ws9a{word-spacing:7.140000px;}
.wsfe{word-spacing:7.191000px;}
.ws15{word-spacing:7.200000px;}
.ws11a{word-spacing:7.242000px;}
.ws55{word-spacing:7.260000px;}
.ws96{word-spacing:7.380000px;}
.ws11d{word-spacing:7.446000px;}
.ws73{word-spacing:7.500000px;}
.wsb4{word-spacing:7.620000px;}
.wsd1{word-spacing:7.701000px;}
.ws8d{word-spacing:7.740000px;}
.ws127{word-spacing:7.803000px;}
.wsd4{word-spacing:7.854000px;}
.ws10c{word-spacing:7.905000px;}
.ws2c{word-spacing:7.980000px;}
.ws131{word-spacing:8.007000px;}
.wsca{word-spacing:8.040000px;}
.ws3d{word-spacing:8.100000px;}
.ws111{word-spacing:8.160000px;}
.ws7c{word-spacing:8.400000px;}
.ws122{word-spacing:8.415000px;}
.wsff{word-spacing:8.466000px;}
.ws123{word-spacing:8.568000px;}
.wsbd{word-spacing:8.580000px;}
.wsb8{word-spacing:8.640000px;}
.ws48{word-spacing:8.880000px;}
.ws6b{word-spacing:9.000000px;}
.ws7f{word-spacing:9.060000px;}
.ws71{word-spacing:9.180000px;}
.ws12d{word-spacing:9.231000px;}
.ws56{word-spacing:9.240000px;}
.ws60{word-spacing:9.300000px;}
.ws97{word-spacing:9.360000px;}
.ws69{word-spacing:9.420000px;}
.ws92{word-spacing:9.480000px;}
.ws110{word-spacing:9.537000px;}
.ws79{word-spacing:9.540000px;}
.ws7b{word-spacing:9.600000px;}
.ws46{word-spacing:9.660000px;}
.ws121{word-spacing:9.690000px;}
.ws5d{word-spacing:9.960000px;}
.ws43{word-spacing:10.080000px;}
.wsba{word-spacing:10.140000px;}
.wsd5{word-spacing:10.251000px;}
.wsb7{word-spacing:10.260000px;}
.ws72{word-spacing:10.302000px;}
.ws80{word-spacing:10.380000px;}
.wsa8{word-spacing:10.440000px;}
.ws94{word-spacing:10.500000px;}
.ws87{word-spacing:10.608000px;}
.ws4c{word-spacing:10.800000px;}
.wscd{word-spacing:11.169000px;}
.ws14{word-spacing:11.580000px;}
.ws34{word-spacing:11.940000px;}
.ws42{word-spacing:12.060000px;}
.ws112{word-spacing:12.291000px;}
.ws8c{word-spacing:12.720000px;}
.ws74{word-spacing:13.200000px;}
.ws134{word-spacing:13.515000px;}
.ws4a{word-spacing:13.620000px;}
.ws86{word-spacing:14.433000px;}
.ws3e{word-spacing:14.460000px;}
.wscb{word-spacing:14.688000px;}
.ws135{word-spacing:17.595000px;}
.wscc{word-spacing:19.176000px;}
.ws1f{word-spacing:24.120000px;}
.ws29{word-spacing:72.267000px;}
.wsa1{word-spacing:94.350000px;}
.wsa3{word-spacing:162.639000px;}
.wsa2{word-spacing:279.837000px;}
.ws9f{word-spacing:416.466000px;}
.ws9d{word-spacing:696.252000px;}
._32{margin-left:-27.897000px;}
._33{margin-left:-24.786000px;}
._2f{margin-left:-23.307000px;}
._2e{margin-left:-21.777000px;}
._34{margin-left:-20.757000px;}
._2d{margin-left:-19.686000px;}
._e{margin-left:-18.504000px;}
._6{margin-left:-16.575000px;}
._f{margin-left:-14.268042px;}
._10{margin-left:-13.020014px;}
._2b{margin-left:-11.271000px;}
._12{margin-left:-8.724000px;}
._22{margin-left:-7.369500px;}
._3{margin-left:-6.288000px;}
._11{margin-left:-5.076016px;}
._2{margin-left:-3.924000px;}
._5{margin-left:-2.640000px;}
._0{margin-left:-1.632000px;}
._1{width:1.224000px;}
._b{width:2.250000px;}
._a{width:3.360000px;}
._29{width:4.539000px;}
._21{width:5.700000px;}
._4{width:6.888000px;}
._24{width:8.160000px;}
._d{width:9.534000px;}
._13{width:13.200000px;}
._23{width:14.280000px;}
._c{width:16.614000px;}
._7{width:18.360000px;}
._25{width:19.533000px;}
._31{width:20.685000px;}
._28{width:22.383000px;}
._2a{width:24.264000px;}
._30{width:25.347000px;}
._2c{width:26.418000px;}
._27{width:28.869000px;}
._26{width:30.396000px;}
._8{width:54.621000px;}
._18{width:107.403000px;}
._17{width:147.441000px;}
._1c{width:176.000993px;}
._14{width:187.370966px;}
._1f{width:207.213000px;}
._1b{width:215.729991px;}
._20{width:219.657000px;}
._19{width:227.334000px;}
._16{width:252.858000px;}
._1d{width:266.679000px;}
._1a{width:355.010981px;}
._1e{width:466.191000px;}
._15{width:734.399971px;}
._9{width:2461.055983px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y35{bottom:112.944300px;}
.y9c{bottom:113.041804px;}
.y58{bottom:113.554779px;}
.y99{bottom:113.815799px;}
.y113{bottom:114.735260px;}
.yb7{bottom:114.735294px;}
.y11e{bottom:114.735306px;}
.ycb{bottom:114.874947px;}
.y193{bottom:116.614823px;}
.y2d{bottom:122.461349px;}
.y34{bottom:127.938300px;}
.y9b{bottom:128.035804px;}
.y9e{bottom:128.048554px;}
.y98{bottom:128.809799px;}
.y151{bottom:129.144305px;}
.y192{bottom:131.608823px;}
.y1d4{bottom:132.004073px;}
.y57{bottom:132.304779px;}
.yf9{bottom:132.823952px;}
.y112{bottom:133.485260px;}
.yb6{bottom:133.485294px;}
.y11d{bottom:133.485306px;}
.yca{bottom:133.624947px;}
.y2c{bottom:141.211349px;}
.y9a{bottom:143.029804px;}
.y9d{bottom:143.042554px;}
.y150{bottom:144.138305px;}
.y191{bottom:146.602823px;}
.y1d3{bottom:146.998073px;}
.y33{bottom:148.032303px;}
.y56{bottom:151.054779px;}
.yf8{bottom:151.573952px;}
.y111{bottom:152.235260px;}
.yb5{bottom:152.235294px;}
.y11c{bottom:152.235306px;}
.yc9{bottom:152.374947px;}
.y14f{bottom:159.132305px;}
.y2b{bottom:159.961349px;}
.y190{bottom:161.596823px;}
.y1d2{bottom:161.992073px;}
.y55{bottom:169.804779px;}
.yf7{bottom:170.323952px;}
.y32{bottom:170.579556px;}
.y110{bottom:170.985260px;}
.y11b{bottom:170.985306px;}
.yc8{bottom:171.124947px;}
.y18f{bottom:176.590823px;}
.y1d1{bottom:176.986073px;}
.y2a{bottom:178.711349px;}
.y31{bottom:188.032794px;}
.y54{bottom:188.554779px;}
.yf6{bottom:189.073952px;}
.y10f{bottom:189.735260px;}
.yb4{bottom:189.735294px;}
.y11a{bottom:189.735306px;}
.yc7{bottom:189.874947px;}
.y18e{bottom:191.584823px;}
.y1d0{bottom:191.980073px;}
.y14e{bottom:192.882294px;}
.y29{bottom:197.461349px;}
.y18d{bottom:206.578823px;}
.y1cf{bottom:206.974073px;}
.y53{bottom:207.304779px;}
.y30{bottom:208.126808px;}
.y10e{bottom:208.485260px;}
.y119{bottom:208.485306px;}
.y28{bottom:216.211349px;}
.y18c{bottom:221.572823px;}
.y1ce{bottom:221.968073px;}
.y52{bottom:226.054779px;}
.yf5{bottom:226.573952px;}
.y10d{bottom:227.235260px;}
.y118{bottom:227.235306px;}
.yc6{bottom:227.374947px;}
.y2f{bottom:233.127300px;}
.y27{bottom:234.961349px;}
.y18b{bottom:236.566823px;}
.y1cd{bottom:236.962073px;}
.y51{bottom:244.804779px;}
.yb3{bottom:245.985260px;}
.y117{bottom:245.985306px;}
.y2e{bottom:248.121300px;}
.y18a{bottom:251.560823px;}
.y20c{bottom:251.815857px;}
.y1cc{bottom:251.956073px;}
.y26{bottom:253.711349px;}
.y14d{bottom:254.943293px;}
.y50{bottom:263.554779px;}
.yf4{bottom:264.073952px;}
.yb2{bottom:264.735260px;}
.y116{bottom:264.735306px;}
.yc5{bottom:264.874786px;}
.ye5{bottom:264.874947px;}
.y189{bottom:266.554823px;}
.y20b{bottom:266.809857px;}
.y1cb{bottom:266.950073px;}
.y14c{bottom:269.937293px;}
.y25{bottom:272.461349px;}
.y188{bottom:281.548823px;}
.y1ca{bottom:281.944073px;}
.y4f{bottom:282.304779px;}
.yf3{bottom:282.823952px;}
.yb1{bottom:283.485260px;}
.y115{bottom:283.485306px;}
.yc4{bottom:283.624786px;}
.y14b{bottom:284.931293px;}
.y24{bottom:291.211349px;}
.y187{bottom:296.542823px;}
.y20a{bottom:296.899856px;}
.y1c9{bottom:296.938073px;}
.y14a{bottom:299.925293px;}
.y4e{bottom:301.054779px;}
.yf2{bottom:301.573952px;}
.yb0{bottom:302.235260px;}
.yc3{bottom:302.374786px;}
.y22{bottom:309.961349px;}
.y186{bottom:311.536823px;}
.y209{bottom:311.893856px;}
.y1c8{bottom:311.932073px;}
.y149{bottom:314.919293px;}
.y4d{bottom:319.804779px;}
.yf1{bottom:320.323952px;}
.yaf{bottom:320.985260px;}
.y114{bottom:320.985306px;}
.yc2{bottom:321.124786px;}
.y185{bottom:326.530823px;}
.y208{bottom:326.887856px;}
.y1c7{bottom:326.926073px;}
.y21{bottom:328.711349px;}
.y148{bottom:329.913293px;}
.y4c{bottom:338.554779px;}
.yae{bottom:339.735260px;}
.yc1{bottom:339.874786px;}
.y184{bottom:341.524823px;}
.y207{bottom:341.881856px;}
.y1c6{bottom:341.920073px;}
.y147{bottom:344.907293px;}
.y20{bottom:347.461349px;}
.y183{bottom:356.518823px;}
.y206{bottom:356.875856px;}
.y1c5{bottom:356.914073px;}
.y4b{bottom:357.304779px;}
.yf0{bottom:357.823792px;}
.yad{bottom:358.485260px;}
.yc0{bottom:358.624786px;}
.y146{bottom:359.901293px;}
.y1f{bottom:366.211349px;}
.y182{bottom:371.512823px;}
.y205{bottom:371.869856px;}
.y1c4{bottom:371.908073px;}
.y145{bottom:374.895293px;}
.y4a{bottom:376.054779px;}
.yac{bottom:377.235260px;}
.ybf{bottom:377.374786px;}
.y1e{bottom:384.961349px;}
.y181{bottom:386.506823px;}
.y204{bottom:386.863856px;}
.y1c3{bottom:386.902073px;}
.y144{bottom:389.889293px;}
.y49{bottom:394.804779px;}
.yef{bottom:395.323792px;}
.yab{bottom:395.985260px;}
.ybe{bottom:396.124786px;}
.y180{bottom:401.500823px;}
.y203{bottom:401.857856px;}
.y1c2{bottom:401.896073px;}
.y1d{bottom:403.711349px;}
.y143{bottom:404.883293px;}
.y48{bottom:413.554779px;}
.yee{bottom:414.073792px;}
.yaa{bottom:414.735260px;}
.ybd{bottom:414.874786px;}
.y17f{bottom:416.494823px;}
.y202{bottom:416.851856px;}
.y1c1{bottom:416.890073px;}
.y142{bottom:419.877293px;}
.y1c{bottom:422.461349px;}
.y17e{bottom:431.488823px;}
.y201{bottom:431.845856px;}
.y1c0{bottom:431.884073px;}
.y47{bottom:432.304779px;}
.yed{bottom:432.823792px;}
.ya9{bottom:433.485260px;}
.ybc{bottom:433.624786px;}
.y141{bottom:434.871293px;}
.y1b{bottom:441.211349px;}
.y17d{bottom:446.482823px;}
.y200{bottom:446.839856px;}
.y1bf{bottom:446.878073px;}
.y46{bottom:451.054779px;}
.yec{bottom:451.573792px;}
.ya8{bottom:452.235260px;}
.ye4{bottom:452.374786px;}
.y1a{bottom:459.961349px;}
.y17c{bottom:461.476823px;}
.y1ff{bottom:461.833856px;}
.y1be{bottom:461.872073px;}
.y45{bottom:469.804779px;}
.yeb{bottom:470.329947px;}
.y97{bottom:470.985168px;}
.ya7{bottom:470.985260px;}
.y77{bottom:470.985306px;}
.ybb{bottom:471.124786px;}
.y140{bottom:472.356293px;}
.y17b{bottom:476.470823px;}
.y1fe{bottom:476.827856px;}
.y1bd{bottom:476.866073px;}
.y19{bottom:478.711349px;}
.y13f{bottom:487.350293px;}
.y44{bottom:488.554779px;}
.yea{bottom:489.079947px;}
.y96{bottom:489.735168px;}
.ya6{bottom:489.735260px;}
.y76{bottom:489.735306px;}
.ye3{bottom:489.874786px;}
.y17a{bottom:491.464823px;}
.y1fd{bottom:491.821856px;}
.y1bc{bottom:491.860073px;}
.y23{bottom:497.461349px;}
.y13e{bottom:502.344293px;}
.y179{bottom:506.458823px;}
.y1fc{bottom:506.815856px;}
.y1bb{bottom:506.854073px;}
.y43{bottom:507.304779px;}
.ye9{bottom:507.829947px;}
.y95{bottom:508.485168px;}
.ya5{bottom:508.485260px;}
.yba{bottom:508.620294px;}
.ye2{bottom:508.624786px;}
.y18{bottom:516.211349px;}
.y13d{bottom:517.338293px;}
.y178{bottom:521.452823px;}
.y1fb{bottom:521.809856px;}
.y1ba{bottom:521.848073px;}
.y42{bottom:526.054779px;}
.ye8{bottom:526.579947px;}
.y94{bottom:527.235168px;}
.ya4{bottom:527.235260px;}
.y75{bottom:527.235306px;}
.yb9{bottom:527.370294px;}
.ye1{bottom:527.374786px;}
.y177{bottom:536.446823px;}
.y1fa{bottom:536.803856px;}
.y1b9{bottom:536.842073px;}
.y41{bottom:544.804779px;}
.ye7{bottom:545.329947px;}
.y93{bottom:545.985168px;}
.ya3{bottom:545.985260px;}
.yb8{bottom:546.120294px;}
.ye0{bottom:546.124786px;}
.y13c{bottom:547.339043px;}
.y176{bottom:551.440823px;}
.y1f9{bottom:551.797856px;}
.y1b8{bottom:551.836073px;}
.y13b{bottom:562.333043px;}
.y40{bottom:563.554779px;}
.y92{bottom:564.735168px;}
.ya2{bottom:564.735260px;}
.y74{bottom:564.735306px;}
.ydf{bottom:564.874786px;}
.y175{bottom:566.434823px;}
.y1f8{bottom:566.791856px;}
.y1b7{bottom:566.830073px;}
.y17{bottom:572.461395px;}
.y13a{bottom:577.327043px;}
.y174{bottom:581.428823px;}
.y1f7{bottom:581.785856px;}
.y1b6{bottom:581.824073px;}
.y3f{bottom:582.304779px;}
.ye6{bottom:582.829947px;}
.y91{bottom:583.485168px;}
.ya1{bottom:583.485260px;}
.yde{bottom:583.624786px;}
.y173{bottom:596.422823px;}
.y1f6{bottom:596.779856px;}
.y1b5{bottom:596.818073px;}
.ycc{bottom:599.830811px;}
.y3e{bottom:601.054779px;}
.y90{bottom:602.235168px;}
.ya0{bottom:602.235260px;}
.ydd{bottom:602.374786px;}
.y139{bottom:607.327793px;}
.y16{bottom:609.961395px;}
.y172{bottom:611.416823px;}
.y1f5{bottom:611.773856px;}
.y1b4{bottom:611.812073px;}
.y3d{bottom:619.804779px;}
.y8f{bottom:620.985168px;}
.y9f{bottom:620.985260px;}
.ydc{bottom:621.124786px;}
.y138{bottom:622.321793px;}
.y171{bottom:626.410823px;}
.y1f4{bottom:626.767856px;}
.y1b3{bottom:626.806073px;}
.y15{bottom:628.711395px;}
.y3c{bottom:638.554779px;}
.y8e{bottom:639.735168px;}
.y73{bottom:639.735260px;}
.ydb{bottom:639.874786px;}
.y105{bottom:640.497727px;}
.y170{bottom:641.404823px;}
.y1f3{bottom:641.761856px;}
.y1b2{bottom:641.800073px;}
.y14{bottom:647.461395px;}
.y137{bottom:652.321793px;}
.y16f{bottom:656.398823px;}
.y1f2{bottom:656.755856px;}
.y1b1{bottom:656.794073px;}
.y3b{bottom:657.304779px;}
.y8d{bottom:658.485168px;}
.y72{bottom:658.485260px;}
.yda{bottom:658.624786px;}
.y13{bottom:666.211395px;}
.y10c{bottom:668.437522px;}
.y16e{bottom:671.392823px;}
.y1f1{bottom:671.749856px;}
.y1b0{bottom:671.788073px;}
.y3a{bottom:676.054779px;}
.y8c{bottom:677.235168px;}
.y71{bottom:677.235260px;}
.yd9{bottom:677.374786px;}
.y12{bottom:684.961395px;}
.y136{bottom:686.182838px;}
.y16d{bottom:686.386823px;}
.y1f0{bottom:686.743856px;}
.y1af{bottom:686.782073px;}
.y10b{bottom:687.231022px;}
.y39{bottom:694.804779px;}
.y8b{bottom:695.985168px;}
.y70{bottom:695.985260px;}
.y135{bottom:701.176838px;}
.y16c{bottom:701.380823px;}
.y1ef{bottom:701.737856px;}
.y1ae{bottom:701.776073px;}
.y11{bottom:703.711395px;}
.y10a{bottom:705.948022px;}
.y38{bottom:713.554779px;}
.y8a{bottom:714.735168px;}
.y6f{bottom:714.735260px;}
.yd8{bottom:714.874786px;}
.y16b{bottom:716.374823px;}
.y1ee{bottom:716.731856px;}
.y1ad{bottom:716.770073px;}
.y10{bottom:722.461395px;}
.y109{bottom:724.665022px;}
.y134{bottom:731.177588px;}
.y16a{bottom:731.368823px;}
.y1ed{bottom:731.725856px;}
.y1ac{bottom:731.764073px;}
.y37{bottom:732.304779px;}
.y89{bottom:733.485168px;}
.y6e{bottom:733.485260px;}
.y108{bottom:739.659022px;}
.yf{bottom:741.211395px;}
.y133{bottom:746.171588px;}
.y169{bottom:746.362823px;}
.y1ec{bottom:746.719856px;}
.y1ab{bottom:746.758073px;}
.y88{bottom:752.235168px;}
.y6d{bottom:752.235260px;}
.yd7{bottom:752.374969px;}
.ye{bottom:759.961395px;}
.y132{bottom:761.165588px;}
.y168{bottom:761.356823px;}
.y1eb{bottom:761.713856px;}
.y1aa{bottom:761.752073px;}
.y107{bottom:767.747272px;}
.y87{bottom:770.985168px;}
.y6c{bottom:770.985260px;}
.yd6{bottom:771.124969px;}
.y131{bottom:776.159588px;}
.y167{bottom:776.350823px;}
.y1ea{bottom:776.707856px;}
.y1a9{bottom:776.746073px;}
.yd{bottom:778.711395px;}
.y106{bottom:782.741272px;}
.y86{bottom:789.735168px;}
.y6b{bottom:789.735260px;}
.yd5{bottom:789.874969px;}
.y5a{bottom:791.296833px;}
.y166{bottom:791.344823px;}
.y1e9{bottom:791.701856px;}
.y1a8{bottom:791.740073px;}
.yc{bottom:797.461395px;}
.y130{bottom:806.160338px;}
.y59{bottom:806.290833px;}
.y165{bottom:806.338823px;}
.y1e8{bottom:806.695856px;}
.y1a7{bottom:806.734073px;}
.y104{bottom:808.236727px;}
.y85{bottom:808.485168px;}
.y6a{bottom:808.485260px;}
.yd4{bottom:808.624969px;}
.yb{bottom:816.211395px;}
.y12f{bottom:821.154338px;}
.y164{bottom:821.332823px;}
.y1e7{bottom:821.689856px;}
.y1a6{bottom:821.728073px;}
.y84{bottom:827.235168px;}
.y69{bottom:827.235260px;}
.yd3{bottom:827.374969px;}
.ya{bottom:834.961395px;}
.y12e{bottom:836.148338px;}
.y163{bottom:836.326823px;}
.y1e6{bottom:836.683856px;}
.y1a5{bottom:836.722073px;}
.y83{bottom:845.985168px;}
.y68{bottom:845.985260px;}
.yd2{bottom:846.124969px;}
.y12d{bottom:851.142338px;}
.y162{bottom:851.320823px;}
.y1e5{bottom:851.677856px;}
.y1a4{bottom:851.716073px;}
.yff{bottom:862.057777px;}
.y82{bottom:864.735168px;}
.y67{bottom:864.735260px;}
.y12c{bottom:866.136338px;}
.y161{bottom:866.314823px;}
.y1e4{bottom:866.671856px;}
.y1a3{bottom:866.710073px;}
.y9{bottom:879.144153px;}
.y12b{bottom:881.130338px;}
.y160{bottom:881.308823px;}
.y1e3{bottom:881.665856px;}
.y1a2{bottom:881.704073px;}
.y81{bottom:883.485168px;}
.y66{bottom:883.485260px;}
.yd1{bottom:883.624969px;}
.y103{bottom:889.925977px;}
.y8{bottom:894.138153px;}
.y12a{bottom:896.124338px;}
.y15f{bottom:896.302823px;}
.y1e2{bottom:896.659856px;}
.y1a1{bottom:896.698073px;}
.y80{bottom:902.235168px;}
.y65{bottom:902.235260px;}
.y102{bottom:908.719477px;}
.y129{bottom:911.118338px;}
.y15e{bottom:911.296823px;}
.y1e1{bottom:911.653856px;}
.y1a0{bottom:911.692073px;}
.y7f{bottom:920.985168px;}
.y64{bottom:920.985260px;}
.yd0{bottom:921.124969px;}
.y15d{bottom:926.290823px;}
.y1e0{bottom:926.647856px;}
.y19f{bottom:926.686073px;}
.y7{bottom:936.738190px;}
.y101{bottom:936.807727px;}
.y7e{bottom:939.735168px;}
.y63{bottom:939.735260px;}
.ycf{bottom:939.874969px;}
.y128{bottom:941.119088px;}
.y15c{bottom:941.284823px;}
.y1df{bottom:941.641856px;}
.y19e{bottom:941.680073px;}
.y100{bottom:951.801727px;}
.y127{bottom:956.113088px;}
.y15b{bottom:956.278823px;}
.y1de{bottom:956.635856px;}
.y19d{bottom:956.674073px;}
.y7d{bottom:958.485168px;}
.y62{bottom:958.485260px;}
.yce{bottom:958.624969px;}
.y126{bottom:971.107088px;}
.y15a{bottom:971.272823px;}
.y1dd{bottom:971.629856px;}
.y19c{bottom:971.668073px;}
.y7c{bottom:977.235168px;}
.y61{bottom:977.235260px;}
.yfe{bottom:977.292277px;}
.ycd{bottom:977.374969px;}
.y6{bottom:981.424622px;}
.y125{bottom:986.101088px;}
.y159{bottom:986.266823px;}
.y1dc{bottom:986.623856px;}
.y19b{bottom:986.662073px;}
.y7b{bottom:995.985168px;}
.y60{bottom:995.985260px;}
.y124{bottom:1001.095088px;}
.y158{bottom:1001.260823px;}
.y1db{bottom:1001.617856px;}
.y19a{bottom:1001.656073px;}
.y5{bottom:1008.424622px;}
.y5f{bottom:1014.735260px;}
.y123{bottom:1016.089088px;}
.y157{bottom:1016.254823px;}
.y1da{bottom:1016.611856px;}
.y199{bottom:1016.650073px;}
.y122{bottom:1031.083088px;}
.y156{bottom:1031.248823px;}
.y1d9{bottom:1031.605856px;}
.y198{bottom:1031.644073px;}
.y7a{bottom:1033.485168px;}
.y5e{bottom:1033.485260px;}
.yfd{bottom:1041.195277px;}
.y155{bottom:1046.242823px;}
.y1d8{bottom:1046.599856px;}
.y197{bottom:1046.638073px;}
.y5d{bottom:1052.235260px;}
.yfc{bottom:1056.189277px;}
.y121{bottom:1061.083838px;}
.y154{bottom:1061.236823px;}
.y1d7{bottom:1061.593856px;}
.y196{bottom:1061.632073px;}
.y5c{bottom:1070.985260px;}
.y79{bottom:1070.985306px;}
.yfb{bottom:1075.108844px;}
.y120{bottom:1076.077838px;}
.y4{bottom:1076.132080px;}
.y153{bottom:1076.230823px;}
.y1d6{bottom:1076.587856px;}
.y195{bottom:1076.626073px;}
.y5b{bottom:1089.735260px;}
.y78{bottom:1089.735306px;}
.yfa{bottom:1090.102844px;}
.y11f{bottom:1091.071838px;}
.y152{bottom:1091.224823px;}
.y1d5{bottom:1091.581856px;}
.y194{bottom:1091.620073px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y36{bottom:1127.482361px;}
.hb{height:33.129599px;}
.h2{height:42.048000px;}
.h3{height:44.676000px;}
.ha{height:47.328000px;}
.he{height:53.160000px;}
.h12{height:53.529379px;}
.h11{height:53.530112px;}
.h4{height:55.461000px;}
.h8{height:55.680000px;}
.hc{height:59.004000px;}
.h7{height:59.340000px;}
.hf{height:62.951380px;}
.hd{height:62.976000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h10{height:84.002730px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x7{left:93.560394px;}
.x6{left:97.796100px;}
.xe{left:102.048152px;}
.x8{left:267.886652px;}
.x4{left:459.215389px;}
.xb{left:468.206835px;}
.x5{left:476.225395px;}
.xd{left:484.725290px;}
.x9{left:491.865895px;}
.xc{left:594.890834px;}
.x1{left:728.220612px;}
.xa{left:758.481441px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.133789pt;}
.v1{vertical-align:21.333333pt;}
.v3{vertical-align:32.599760pt;}
.ls69{letter-spacing:-2.992000pt;}
.ls67{letter-spacing:-0.861333pt;}
.ls68{letter-spacing:-0.589333pt;}
.ls66{letter-spacing:-0.426667pt;}
.lsac{letter-spacing:-0.408000pt;}
.ls21{letter-spacing:-0.373333pt;}
.lsab{letter-spacing:-0.362667pt;}
.ls42{letter-spacing:-0.320000pt;}
.lsad{letter-spacing:-0.317333pt;}
.lsa3{letter-spacing:-0.272000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls8e{letter-spacing:-0.226667pt;}
.ls52{letter-spacing:-0.213333pt;}
.ls8b{letter-spacing:-0.181333pt;}
.ls25{letter-spacing:-0.160000pt;}
.lsa2{letter-spacing:-0.136000pt;}
.ls24{letter-spacing:-0.106667pt;}
.ls8d{letter-spacing:-0.090667pt;}
.ls51{letter-spacing:-0.053333pt;}
.ls8c{letter-spacing:-0.045333pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls62{letter-spacing:0.000033pt;}
.ls46{letter-spacing:0.000039pt;}
.ls61{letter-spacing:0.003171pt;}
.ls64{letter-spacing:0.019702pt;}
.ls2b{letter-spacing:0.026667pt;}
.ls94{letter-spacing:0.045333pt;}
.ls3c{letter-spacing:0.053333pt;}
.ls6e{letter-spacing:0.080000pt;}
.ls7c{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls5e{letter-spacing:0.127441pt;}
.lsaa{letter-spacing:0.136000pt;}
.ls1d{letter-spacing:0.158926pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls99{letter-spacing:0.181333pt;}
.ls6b{letter-spacing:0.186686pt;}
.ls0{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.223971pt;}
.ls1e{letter-spacing:0.226667pt;}
.ls81{letter-spacing:0.234667pt;}
.lsa6{letter-spacing:0.249333pt;}
.ls89{letter-spacing:0.256000pt;}
.ls6a{letter-spacing:0.261324pt;}
.ls1{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.271990pt;}
.ls93{letter-spacing:0.272000pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls56{letter-spacing:0.299723pt;}
.ls95{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.330639pt;}
.ls80{letter-spacing:0.362667pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls4f{letter-spacing:0.400000pt;}
.ls88{letter-spacing:0.408000pt;}
.ls5a{letter-spacing:0.423014pt;}
.ls3f{letter-spacing:0.426667pt;}
.ls7d{letter-spacing:0.453333pt;}
.ls55{letter-spacing:0.470926pt;}
.ls38{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.495443pt;}
.ls7a{letter-spacing:0.498667pt;}
.ls53{letter-spacing:0.506667pt;}
.ls35{letter-spacing:0.533333pt;}
.ls9b{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.560000pt;}
.lsf{letter-spacing:0.586667pt;}
.ls90{letter-spacing:0.589333pt;}
.lsa8{letter-spacing:0.612000pt;}
.ls75{letter-spacing:0.634667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls7e{letter-spacing:0.657333pt;}
.ls59{letter-spacing:0.659696pt;}
.ls82{letter-spacing:0.680000pt;}
.ls13{letter-spacing:0.693333pt;}
.lsa0{letter-spacing:0.702667pt;}
.ls8f{letter-spacing:0.725333pt;}
.ls45{letter-spacing:0.730182pt;}
.ls8{letter-spacing:0.746667pt;}
.ls5f{letter-spacing:0.764275pt;}
.ls7f{letter-spacing:0.770667pt;}
.ls4e{letter-spacing:0.773333pt;}
.lsa7{letter-spacing:0.793333pt;}
.lse{letter-spacing:0.800000pt;}
.ls73{letter-spacing:0.816000pt;}
.ls58{letter-spacing:0.826667pt;}
.ls2e{letter-spacing:0.853333pt;}
.ls83{letter-spacing:0.861333pt;}
.ls29{letter-spacing:0.864000pt;}
.lsc{letter-spacing:0.880000pt;}
.ls7b{letter-spacing:0.884000pt;}
.ls17{letter-spacing:0.906667pt;}
.ls86{letter-spacing:0.952000pt;}
.ls3d{letter-spacing:0.960000pt;}
.ls92{letter-spacing:0.997333pt;}
.lsd{letter-spacing:1.013333pt;}
.ls5c{letter-spacing:1.029785pt;}
.ls74{letter-spacing:1.042667pt;}
.lsb{letter-spacing:1.045310pt;}
.ls39{letter-spacing:1.066667pt;}
.ls91{letter-spacing:1.088000pt;}
.ls54{letter-spacing:1.093333pt;}
.ls5d{letter-spacing:1.093423pt;}
.ls1a{letter-spacing:1.098660pt;}
.ls11{letter-spacing:1.120000pt;}
.ls41{letter-spacing:1.125333pt;}
.ls84{letter-spacing:1.133333pt;}
.ls2a{letter-spacing:1.173333pt;}
.lsa4{letter-spacing:1.178667pt;}
.ls87{letter-spacing:1.224000pt;}
.lsa{letter-spacing:1.226667pt;}
.ls1b{letter-spacing:1.253333pt;}
.ls9c{letter-spacing:1.269333pt;}
.ls15{letter-spacing:1.280000pt;}
.ls6c{letter-spacing:1.306667pt;}
.ls96{letter-spacing:1.314667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls77{letter-spacing:1.360000pt;}
.ls32{letter-spacing:1.386667pt;}
.ls9a{letter-spacing:1.405333pt;}
.ls10{letter-spacing:1.440000pt;}
.ls8a{letter-spacing:1.450667pt;}
.ls18{letter-spacing:1.493333pt;}
.ls85{letter-spacing:1.496000pt;}
.ls5b{letter-spacing:1.512031pt;}
.ls4c{letter-spacing:1.520000pt;}
.lsa1{letter-spacing:1.541333pt;}
.ls44{letter-spacing:1.546667pt;}
.ls6f{letter-spacing:1.573333pt;}
.ls26{letter-spacing:1.600000pt;}
.ls49{letter-spacing:1.626667pt;}
.ls97{letter-spacing:1.632000pt;}
.ls3e{letter-spacing:1.653333pt;}
.ls12{letter-spacing:1.658643pt;}
.ls78{letter-spacing:1.677333pt;}
.ls22{letter-spacing:1.706667pt;}
.ls76{letter-spacing:1.722667pt;}
.ls4b{letter-spacing:1.760000pt;}
.ls9e{letter-spacing:1.768000pt;}
.ls27{letter-spacing:1.813333pt;}
.ls98{letter-spacing:1.858667pt;}
.ls48{letter-spacing:1.866667pt;}
.ls16{letter-spacing:1.872000pt;}
.ls6d{letter-spacing:1.893333pt;}
.ls47{letter-spacing:1.920000pt;}
.ls34{letter-spacing:1.973333pt;}
.lsa9{letter-spacing:1.994667pt;}
.ls3b{letter-spacing:2.026667pt;}
.ls9d{letter-spacing:2.040000pt;}
.ls40{letter-spacing:2.080000pt;}
.lsa5{letter-spacing:2.085333pt;}
.ls33{letter-spacing:2.133333pt;}
.ls79{letter-spacing:2.176000pt;}
.ls31{letter-spacing:2.186667pt;}
.ls57{letter-spacing:2.240000pt;}
.ls72{letter-spacing:2.312000pt;}
.ls37{letter-spacing:2.346667pt;}
.ls7{letter-spacing:2.453333pt;}
.ls2c{letter-spacing:2.506667pt;}
.ls9f{letter-spacing:2.538667pt;}
.ls30{letter-spacing:2.560000pt;}
.ls4a{letter-spacing:2.613333pt;}
.ls43{letter-spacing:2.773333pt;}
.ls36{letter-spacing:2.826667pt;}
.ls70{letter-spacing:2.878667pt;}
.ls2f{letter-spacing:2.986667pt;}
.ls50{letter-spacing:3.040000pt;}
.ls4d{letter-spacing:3.413333pt;}
.ls20{letter-spacing:3.546667pt;}
.ls71{letter-spacing:3.762667pt;}
.ls14{letter-spacing:4.693333pt;}
.ls63{letter-spacing:137.269333pt;}
.ls65{letter-spacing:197.970658pt;}
.ws2b{word-spacing:-15.680000pt;}
.ws89{word-spacing:-15.040000pt;}
.wsc1{word-spacing:-14.720000pt;}
.ws9c{word-spacing:-14.346667pt;}
.ws8a{word-spacing:-13.653333pt;}
.ws58{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.333333pt;}
.wsc6{word-spacing:-13.184000pt;}
.ws6{word-spacing:-12.928000pt;}
.wsc4{word-spacing:-11.741333pt;}
.wsc5{word-spacing:-11.560000pt;}
.wsa0{word-spacing:-11.333333pt;}
.ws59{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws9e{word-spacing:-10.472000pt;}
.ws5{word-spacing:-10.240000pt;}
.wsc2{word-spacing:-9.520000pt;}
.ws1{word-spacing:-8.885333pt;}
.wsc3{word-spacing:-8.658667pt;}
.ws0{word-spacing:-8.362667pt;}
.wsa4{word-spacing:-8.341333pt;}
.ws8{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.wsa9{word-spacing:-6.666667pt;}
.wsac{word-spacing:-5.666667pt;}
.wsa{word-spacing:-3.546667pt;}
.ws35{word-spacing:-2.506667pt;}
.ws44{word-spacing:-2.186667pt;}
.ws6a{word-spacing:-1.706667pt;}
.ws82{word-spacing:-1.546667pt;}
.wsaa{word-spacing:-1.493333pt;}
.ws40{word-spacing:-1.440000pt;}
.ws31{word-spacing:-1.386667pt;}
.wsc{word-spacing:-1.333333pt;}
.ws12{word-spacing:-1.226667pt;}
.ws11f{word-spacing:-1.224000pt;}
.ws126{word-spacing:-1.178667pt;}
.ws41{word-spacing:-1.173333pt;}
.wsd0{word-spacing:-1.133333pt;}
.wse{word-spacing:-1.120000pt;}
.wsb1{word-spacing:-1.066667pt;}
.wse9{word-spacing:-1.042667pt;}
.ws11{word-spacing:-1.013333pt;}
.ws99{word-spacing:-0.960000pt;}
.ws52{word-spacing:-0.906667pt;}
.wse7{word-spacing:-0.861333pt;}
.ws3b{word-spacing:-0.853333pt;}
.wsf5{word-spacing:-0.816000pt;}
.ws26{word-spacing:-0.800000pt;}
.ws38{word-spacing:-0.746667pt;}
.ws10e{word-spacing:-0.725333pt;}
.ws5c{word-spacing:-0.693333pt;}
.ws13{word-spacing:-0.640000pt;}
.ws128{word-spacing:-0.589333pt;}
.ws9b{word-spacing:-0.586667pt;}
.ws2a{word-spacing:-0.544000pt;}
.ws49{word-spacing:-0.533333pt;}
.wsef{word-spacing:-0.498667pt;}
.wsb3{word-spacing:-0.480000pt;}
.ws100{word-spacing:-0.408000pt;}
.ws17{word-spacing:-0.373333pt;}
.wsd{word-spacing:-0.320000pt;}
.ws116{word-spacing:-0.317333pt;}
.ws1c{word-spacing:-0.266667pt;}
.wsdb{word-spacing:-0.234667pt;}
.wsee{word-spacing:-0.226667pt;}
.wsb{word-spacing:-0.213333pt;}
.ws113{word-spacing:-0.181333pt;}
.ws70{word-spacing:-0.160000pt;}
.wsec{word-spacing:-0.136000pt;}
.ws6f{word-spacing:-0.106667pt;}
.ws32{word-spacing:-0.053333pt;}
.wse8{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.ws132{word-spacing:0.045333pt;}
.ws7a{word-spacing:0.053333pt;}
.ws130{word-spacing:0.090667pt;}
.ws6d{word-spacing:0.160000pt;}
.ws115{word-spacing:0.226667pt;}
.ws3a{word-spacing:0.266667pt;}
.wsf0{word-spacing:0.362667pt;}
.wsf4{word-spacing:0.408000pt;}
.wsae{word-spacing:0.426667pt;}
.wsf9{word-spacing:0.453333pt;}
.ws129{word-spacing:0.498667pt;}
.ws36{word-spacing:0.533333pt;}
.wse6{word-spacing:0.544000pt;}
.ws68{word-spacing:0.586667pt;}
.wsad{word-spacing:0.589333pt;}
.ws101{word-spacing:0.634667pt;}
.ws108{word-spacing:0.680000pt;}
.ws64{word-spacing:0.693333pt;}
.ws114{word-spacing:0.725333pt;}
.ws4e{word-spacing:0.800000pt;}
.wsbc{word-spacing:0.853333pt;}
.ws10a{word-spacing:0.861333pt;}
.ws83{word-spacing:0.906667pt;}
.ws33{word-spacing:0.960000pt;}
.wsc7{word-spacing:1.013333pt;}
.wsf{word-spacing:1.066667pt;}
.ws133{word-spacing:1.088000pt;}
.ws62{word-spacing:1.120000pt;}
.wsd7{word-spacing:1.133333pt;}
.wsb9{word-spacing:1.173333pt;}
.ws124{word-spacing:1.178667pt;}
.wsf1{word-spacing:1.269333pt;}
.ws120{word-spacing:1.314667pt;}
.ws10{word-spacing:1.333333pt;}
.ws12a{word-spacing:1.360000pt;}
.ws2d{word-spacing:1.386667pt;}
.ws109{word-spacing:1.405333pt;}
.ws5b{word-spacing:1.440000pt;}
.wscf{word-spacing:1.450667pt;}
.wsb5{word-spacing:1.493333pt;}
.wsea{word-spacing:1.496000pt;}
.wsfa{word-spacing:1.541333pt;}
.wsab{word-spacing:1.546667pt;}
.wsd9{word-spacing:1.586667pt;}
.ws4b{word-spacing:1.600000pt;}
.ws103{word-spacing:1.632000pt;}
.ws5f{word-spacing:1.653333pt;}
.ws75{word-spacing:1.706667pt;}
.ws10d{word-spacing:1.722667pt;}
.ws16{word-spacing:1.760000pt;}
.ws37{word-spacing:1.813333pt;}
.wsfb{word-spacing:1.858667pt;}
.ws25{word-spacing:1.866667pt;}
.wsed{word-spacing:1.904000pt;}
.ws53{word-spacing:1.920000pt;}
.ws27{word-spacing:1.973333pt;}
.wsbe{word-spacing:2.026667pt;}
.wsde{word-spacing:2.040000pt;}
.ws1b{word-spacing:2.080000pt;}
.wsf7{word-spacing:2.085333pt;}
.wsda{word-spacing:2.130667pt;}
.ws95{word-spacing:2.133333pt;}
.ws3c{word-spacing:2.186667pt;}
.wsc0{word-spacing:2.240000pt;}
.wsfc{word-spacing:2.266667pt;}
.ws63{word-spacing:2.293333pt;}
.wsd6{word-spacing:2.312000pt;}
.ws54{word-spacing:2.346667pt;}
.ws102{word-spacing:2.357333pt;}
.ws19{word-spacing:2.400000pt;}
.ws21{word-spacing:2.453333pt;}
.ws125{word-spacing:2.493333pt;}
.wsb6{word-spacing:2.506667pt;}
.ws12b{word-spacing:2.538667pt;}
.ws7d{word-spacing:2.560000pt;}
.wse2{word-spacing:2.584000pt;}
.ws8b{word-spacing:2.613333pt;}
.ws91{word-spacing:2.666667pt;}
.wsd8{word-spacing:2.674667pt;}
.ws93{word-spacing:2.720000pt;}
.ws8e{word-spacing:2.773333pt;}
.ws8f{word-spacing:2.826667pt;}
.wsdf{word-spacing:2.856000pt;}
.ws65{word-spacing:2.880000pt;}
.ws106{word-spacing:2.901333pt;}
.ws30{word-spacing:2.933333pt;}
.ws10f{word-spacing:2.946667pt;}
.wsbb{word-spacing:2.986667pt;}
.wse5{word-spacing:3.037333pt;}
.ws81{word-spacing:3.040000pt;}
.wsdc{word-spacing:3.082667pt;}
.ws22{word-spacing:3.093333pt;}
.ws105{word-spacing:3.128000pt;}
.ws1a{word-spacing:3.146667pt;}
.ws118{word-spacing:3.173333pt;}
.wsf3{word-spacing:3.218667pt;}
.ws50{word-spacing:3.253333pt;}
.ws11b{word-spacing:3.264000pt;}
.wsf8{word-spacing:3.400000pt;}
.ws5e{word-spacing:3.413333pt;}
.wse3{word-spacing:3.445333pt;}
.ws84{word-spacing:3.466667pt;}
.ws2e{word-spacing:3.520000pt;}
.wsce{word-spacing:3.536000pt;}
.ws5a{word-spacing:3.573333pt;}
.ws85{word-spacing:3.581333pt;}
.ws4d{word-spacing:3.626667pt;}
.wsb2{word-spacing:3.680000pt;}
.wsf2{word-spacing:3.717333pt;}
.ws1e{word-spacing:3.733333pt;}
.ws107{word-spacing:3.853333pt;}
.ws6c{word-spacing:3.893333pt;}
.ws2f{word-spacing:3.946667pt;}
.ws39{word-spacing:4.000000pt;}
.wsdd{word-spacing:4.034667pt;}
.ws47{word-spacing:4.053333pt;}
.ws61{word-spacing:4.106667pt;}
.ws7e{word-spacing:4.213333pt;}
.ws119{word-spacing:4.216000pt;}
.ws18{word-spacing:4.266667pt;}
.wsf6{word-spacing:4.352000pt;}
.wse0{word-spacing:4.397333pt;}
.ws77{word-spacing:4.426667pt;}
.ws20{word-spacing:4.480000pt;}
.wse4{word-spacing:4.488000pt;}
.ws51{word-spacing:4.533333pt;}
.ws10b{word-spacing:4.578667pt;}
.ws24{word-spacing:4.586667pt;}
.ws90{word-spacing:4.640000pt;}
.wsa5{word-spacing:4.693333pt;}
.ws12e{word-spacing:4.714667pt;}
.ws4f{word-spacing:4.746667pt;}
.ws78{word-spacing:4.800000pt;}
.wsfd{word-spacing:4.850667pt;}
.ws45{word-spacing:4.853333pt;}
.wsa7{word-spacing:4.906667pt;}
.ws66{word-spacing:4.960000pt;}
.wsb0{word-spacing:5.013333pt;}
.ws57{word-spacing:5.077333pt;}
.wsd2{word-spacing:5.122667pt;}
.wsd3{word-spacing:5.168000pt;}
.ws3f{word-spacing:5.173333pt;}
.ws104{word-spacing:5.213333pt;}
.ws1d{word-spacing:5.226667pt;}
.ws98{word-spacing:5.333333pt;}
.ws11c{word-spacing:5.349333pt;}
.wsa6{word-spacing:5.386667pt;}
.ws11e{word-spacing:5.394667pt;}
.ws23{word-spacing:5.440000pt;}
.ws12c{word-spacing:5.485333pt;}
.ws6e{word-spacing:5.600000pt;}
.wseb{word-spacing:5.621333pt;}
.ws76{word-spacing:5.653333pt;}
.ws12f{word-spacing:5.666667pt;}
.wse1{word-spacing:5.712000pt;}
.wsaf{word-spacing:5.760000pt;}
.wsc9{word-spacing:5.813333pt;}
.ws28{word-spacing:5.866667pt;}
.wsbf{word-spacing:6.026667pt;}
.ws88{word-spacing:6.029333pt;}
.ws117{word-spacing:6.074667pt;}
.wsc8{word-spacing:6.133333pt;}
.ws67{word-spacing:6.240000pt;}
.ws9a{word-spacing:6.346667pt;}
.wsfe{word-spacing:6.392000pt;}
.ws15{word-spacing:6.400000pt;}
.ws11a{word-spacing:6.437333pt;}
.ws55{word-spacing:6.453333pt;}
.ws96{word-spacing:6.560000pt;}
.ws11d{word-spacing:6.618667pt;}
.ws73{word-spacing:6.666667pt;}
.wsb4{word-spacing:6.773333pt;}
.wsd1{word-spacing:6.845333pt;}
.ws8d{word-spacing:6.880000pt;}
.ws127{word-spacing:6.936000pt;}
.wsd4{word-spacing:6.981333pt;}
.ws10c{word-spacing:7.026667pt;}
.ws2c{word-spacing:7.093333pt;}
.ws131{word-spacing:7.117333pt;}
.wsca{word-spacing:7.146667pt;}
.ws3d{word-spacing:7.200000pt;}
.ws111{word-spacing:7.253333pt;}
.ws7c{word-spacing:7.466667pt;}
.ws122{word-spacing:7.480000pt;}
.wsff{word-spacing:7.525333pt;}
.ws123{word-spacing:7.616000pt;}
.wsbd{word-spacing:7.626667pt;}
.wsb8{word-spacing:7.680000pt;}
.ws48{word-spacing:7.893333pt;}
.ws6b{word-spacing:8.000000pt;}
.ws7f{word-spacing:8.053333pt;}
.ws71{word-spacing:8.160000pt;}
.ws12d{word-spacing:8.205333pt;}
.ws56{word-spacing:8.213333pt;}
.ws60{word-spacing:8.266667pt;}
.ws97{word-spacing:8.320000pt;}
.ws69{word-spacing:8.373333pt;}
.ws92{word-spacing:8.426667pt;}
.ws110{word-spacing:8.477333pt;}
.ws79{word-spacing:8.480000pt;}
.ws7b{word-spacing:8.533333pt;}
.ws46{word-spacing:8.586667pt;}
.ws121{word-spacing:8.613333pt;}
.ws5d{word-spacing:8.853333pt;}
.ws43{word-spacing:8.960000pt;}
.wsba{word-spacing:9.013333pt;}
.wsd5{word-spacing:9.112000pt;}
.wsb7{word-spacing:9.120000pt;}
.ws72{word-spacing:9.157333pt;}
.ws80{word-spacing:9.226667pt;}
.wsa8{word-spacing:9.280000pt;}
.ws94{word-spacing:9.333333pt;}
.ws87{word-spacing:9.429333pt;}
.ws4c{word-spacing:9.600000pt;}
.wscd{word-spacing:9.928000pt;}
.ws14{word-spacing:10.293333pt;}
.ws34{word-spacing:10.613333pt;}
.ws42{word-spacing:10.720000pt;}
.ws112{word-spacing:10.925333pt;}
.ws8c{word-spacing:11.306667pt;}
.ws74{word-spacing:11.733333pt;}
.ws134{word-spacing:12.013333pt;}
.ws4a{word-spacing:12.106667pt;}
.ws86{word-spacing:12.829333pt;}
.ws3e{word-spacing:12.853333pt;}
.wscb{word-spacing:13.056000pt;}
.ws135{word-spacing:15.640000pt;}
.wscc{word-spacing:17.045333pt;}
.ws1f{word-spacing:21.440000pt;}
.ws29{word-spacing:64.237333pt;}
.wsa1{word-spacing:83.866667pt;}
.wsa3{word-spacing:144.568000pt;}
.wsa2{word-spacing:248.744000pt;}
.ws9f{word-spacing:370.192000pt;}
.ws9d{word-spacing:618.890667pt;}
._32{margin-left:-24.797333pt;}
._33{margin-left:-22.032000pt;}
._2f{margin-left:-20.717333pt;}
._2e{margin-left:-19.357333pt;}
._34{margin-left:-18.450667pt;}
._2d{margin-left:-17.498667pt;}
._e{margin-left:-16.448000pt;}
._6{margin-left:-14.733333pt;}
._f{margin-left:-12.682704pt;}
._10{margin-left:-11.573346pt;}
._2b{margin-left:-10.018667pt;}
._12{margin-left:-7.754666pt;}
._22{margin-left:-6.550667pt;}
._3{margin-left:-5.589333pt;}
._11{margin-left:-4.512014pt;}
._2{margin-left:-3.488000pt;}
._5{margin-left:-2.346667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.088000pt;}
._b{width:2.000000pt;}
._a{width:2.986667pt;}
._29{width:4.034667pt;}
._21{width:5.066667pt;}
._4{width:6.122667pt;}
._24{width:7.253333pt;}
._d{width:8.474666pt;}
._13{width:11.733333pt;}
._23{width:12.693333pt;}
._c{width:14.768000pt;}
._7{width:16.320000pt;}
._25{width:17.362667pt;}
._31{width:18.386667pt;}
._28{width:19.896000pt;}
._2a{width:21.568000pt;}
._30{width:22.530667pt;}
._2c{width:23.482667pt;}
._27{width:25.661334pt;}
._26{width:27.018667pt;}
._8{width:48.552000pt;}
._18{width:95.469333pt;}
._17{width:131.058667pt;}
._1c{width:156.445327pt;}
._14{width:166.551970pt;}
._1f{width:184.189333pt;}
._1b{width:191.759992pt;}
._20{width:195.250667pt;}
._19{width:202.074667pt;}
._16{width:224.762667pt;}
._1d{width:237.048000pt;}
._1a{width:315.565316pt;}
._1e{width:414.392000pt;}
._15{width:652.799974pt;}
._9{width:2187.605318pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y35{bottom:100.394933pt;}
.y9c{bottom:100.481604pt;}
.y58{bottom:100.937581pt;}
.y99{bottom:101.169599pt;}
.y113{bottom:101.986898pt;}
.yb7{bottom:101.986928pt;}
.y11e{bottom:101.986938pt;}
.ycb{bottom:102.111064pt;}
.y193{bottom:103.657620pt;}
.y2d{bottom:108.854533pt;}
.y34{bottom:113.722933pt;}
.y9b{bottom:113.809604pt;}
.y9e{bottom:113.820937pt;}
.y98{bottom:114.497599pt;}
.y151{bottom:114.794938pt;}
.y192{bottom:116.985620pt;}
.y1d4{bottom:117.336954pt;}
.y57{bottom:117.604248pt;}
.yf9{bottom:118.065735pt;}
.y112{bottom:118.653564pt;}
.yb6{bottom:118.653595pt;}
.y11d{bottom:118.653605pt;}
.yca{bottom:118.777730pt;}
.y2c{bottom:125.521200pt;}
.y9a{bottom:127.137604pt;}
.y9d{bottom:127.148937pt;}
.y150{bottom:128.122938pt;}
.y191{bottom:130.313620pt;}
.y1d3{bottom:130.664954pt;}
.y33{bottom:131.584269pt;}
.y56{bottom:134.270915pt;}
.yf8{bottom:134.732402pt;}
.y111{bottom:135.320231pt;}
.yb5{bottom:135.320262pt;}
.y11c{bottom:135.320272pt;}
.yc9{bottom:135.444397pt;}
.y14f{bottom:141.450938pt;}
.y2b{bottom:142.187866pt;}
.y190{bottom:143.641620pt;}
.y1d2{bottom:143.992954pt;}
.y55{bottom:150.937581pt;}
.yf7{bottom:151.399068pt;}
.y32{bottom:151.626272pt;}
.y110{bottom:151.986898pt;}
.y11b{bottom:151.986938pt;}
.yc8{bottom:152.111064pt;}
.y18f{bottom:156.969620pt;}
.y1d1{bottom:157.320954pt;}
.y2a{bottom:158.854533pt;}
.y31{bottom:167.140262pt;}
.y54{bottom:167.604248pt;}
.yf6{bottom:168.065735pt;}
.y10f{bottom:168.653564pt;}
.yb4{bottom:168.653595pt;}
.y11a{bottom:168.653605pt;}
.yc7{bottom:168.777730pt;}
.y18e{bottom:170.297620pt;}
.y1d0{bottom:170.648954pt;}
.y14e{bottom:171.450928pt;}
.y29{bottom:175.521200pt;}
.y18d{bottom:183.625620pt;}
.y1cf{bottom:183.976954pt;}
.y53{bottom:184.270915pt;}
.y30{bottom:185.001607pt;}
.y10e{bottom:185.320231pt;}
.y119{bottom:185.320272pt;}
.y28{bottom:192.187866pt;}
.y18c{bottom:196.953620pt;}
.y1ce{bottom:197.304954pt;}
.y52{bottom:200.937581pt;}
.yf5{bottom:201.399068pt;}
.y10d{bottom:201.986898pt;}
.y118{bottom:201.986938pt;}
.yc6{bottom:202.111064pt;}
.y2f{bottom:207.224266pt;}
.y27{bottom:208.854533pt;}
.y18b{bottom:210.281620pt;}
.y1cd{bottom:210.632954pt;}
.y51{bottom:217.604248pt;}
.yb3{bottom:218.653564pt;}
.y117{bottom:218.653605pt;}
.y2e{bottom:220.552266pt;}
.y18a{bottom:223.609620pt;}
.y20c{bottom:223.836317pt;}
.y1cc{bottom:223.960954pt;}
.y26{bottom:225.521200pt;}
.y14d{bottom:226.616260pt;}
.y50{bottom:234.270915pt;}
.yf4{bottom:234.732402pt;}
.yb2{bottom:235.320231pt;}
.y116{bottom:235.320272pt;}
.yc5{bottom:235.444255pt;}
.ye5{bottom:235.444397pt;}
.y189{bottom:236.937620pt;}
.y20b{bottom:237.164317pt;}
.y1cb{bottom:237.288954pt;}
.y14c{bottom:239.944260pt;}
.y25{bottom:242.187866pt;}
.y188{bottom:250.265620pt;}
.y1ca{bottom:250.616954pt;}
.y4f{bottom:250.937581pt;}
.yf3{bottom:251.399068pt;}
.yb1{bottom:251.986898pt;}
.y115{bottom:251.986938pt;}
.yc4{bottom:252.110921pt;}
.y14b{bottom:253.272260pt;}
.y24{bottom:258.854533pt;}
.y187{bottom:263.593620pt;}
.y20a{bottom:263.910983pt;}
.y1c9{bottom:263.944954pt;}
.y14a{bottom:266.600260pt;}
.y4e{bottom:267.604248pt;}
.yf2{bottom:268.065735pt;}
.yb0{bottom:268.653564pt;}
.yc3{bottom:268.777588pt;}
.y22{bottom:275.521200pt;}
.y186{bottom:276.921620pt;}
.y209{bottom:277.238983pt;}
.y1c8{bottom:277.272954pt;}
.y149{bottom:279.928260pt;}
.y4d{bottom:284.270915pt;}
.yf1{bottom:284.732402pt;}
.yaf{bottom:285.320231pt;}
.y114{bottom:285.320272pt;}
.yc2{bottom:285.444255pt;}
.y185{bottom:290.249620pt;}
.y208{bottom:290.566983pt;}
.y1c7{bottom:290.600954pt;}
.y21{bottom:292.187866pt;}
.y148{bottom:293.256260pt;}
.y4c{bottom:300.937581pt;}
.yae{bottom:301.986898pt;}
.yc1{bottom:302.110921pt;}
.y184{bottom:303.577620pt;}
.y207{bottom:303.894983pt;}
.y1c6{bottom:303.928954pt;}
.y147{bottom:306.584260pt;}
.y20{bottom:308.854533pt;}
.y183{bottom:316.905620pt;}
.y206{bottom:317.222983pt;}
.y1c5{bottom:317.256954pt;}
.y4b{bottom:317.604248pt;}
.yf0{bottom:318.065592pt;}
.yad{bottom:318.653564pt;}
.yc0{bottom:318.777588pt;}
.y146{bottom:319.912260pt;}
.y1f{bottom:325.521200pt;}
.y182{bottom:330.233620pt;}
.y205{bottom:330.550983pt;}
.y1c4{bottom:330.584954pt;}
.y145{bottom:333.240260pt;}
.y4a{bottom:334.270915pt;}
.yac{bottom:335.320231pt;}
.ybf{bottom:335.444255pt;}
.y1e{bottom:342.187866pt;}
.y181{bottom:343.561620pt;}
.y204{bottom:343.878983pt;}
.y1c3{bottom:343.912954pt;}
.y144{bottom:346.568260pt;}
.y49{bottom:350.937581pt;}
.yef{bottom:351.398926pt;}
.yab{bottom:351.986898pt;}
.ybe{bottom:352.110921pt;}
.y180{bottom:356.889620pt;}
.y203{bottom:357.206983pt;}
.y1c2{bottom:357.240954pt;}
.y1d{bottom:358.854533pt;}
.y143{bottom:359.896260pt;}
.y48{bottom:367.604248pt;}
.yee{bottom:368.065592pt;}
.yaa{bottom:368.653564pt;}
.ybd{bottom:368.777588pt;}
.y17f{bottom:370.217620pt;}
.y202{bottom:370.534983pt;}
.y1c1{bottom:370.568954pt;}
.y142{bottom:373.224260pt;}
.y1c{bottom:375.521200pt;}
.y17e{bottom:383.545620pt;}
.y201{bottom:383.862983pt;}
.y1c0{bottom:383.896954pt;}
.y47{bottom:384.270915pt;}
.yed{bottom:384.732259pt;}
.ya9{bottom:385.320231pt;}
.ybc{bottom:385.444255pt;}
.y141{bottom:386.552260pt;}
.y1b{bottom:392.187866pt;}
.y17d{bottom:396.873620pt;}
.y200{bottom:397.190983pt;}
.y1bf{bottom:397.224954pt;}
.y46{bottom:400.937581pt;}
.yec{bottom:401.398926pt;}
.ya8{bottom:401.986898pt;}
.ye4{bottom:402.110921pt;}
.y1a{bottom:408.854533pt;}
.y17c{bottom:410.201620pt;}
.y1ff{bottom:410.518983pt;}
.y1be{bottom:410.552954pt;}
.y45{bottom:417.604248pt;}
.yeb{bottom:418.071064pt;}
.y97{bottom:418.653483pt;}
.ya7{bottom:418.653564pt;}
.y77{bottom:418.653605pt;}
.ybb{bottom:418.777588pt;}
.y140{bottom:419.872260pt;}
.y17b{bottom:423.529620pt;}
.y1fe{bottom:423.846983pt;}
.y1bd{bottom:423.880954pt;}
.y19{bottom:425.521200pt;}
.y13f{bottom:433.200260pt;}
.y44{bottom:434.270915pt;}
.yea{bottom:434.737730pt;}
.y96{bottom:435.320150pt;}
.ya6{bottom:435.320231pt;}
.y76{bottom:435.320272pt;}
.ye3{bottom:435.444255pt;}
.y17a{bottom:436.857620pt;}
.y1fd{bottom:437.174983pt;}
.y1bc{bottom:437.208954pt;}
.y23{bottom:442.187866pt;}
.y13e{bottom:446.528260pt;}
.y179{bottom:450.185620pt;}
.y1fc{bottom:450.502983pt;}
.y1bb{bottom:450.536954pt;}
.y43{bottom:450.937581pt;}
.ye9{bottom:451.404397pt;}
.y95{bottom:451.986816pt;}
.ya5{bottom:451.986898pt;}
.yba{bottom:452.106928pt;}
.ye2{bottom:452.110921pt;}
.y18{bottom:458.854533pt;}
.y13d{bottom:459.856260pt;}
.y178{bottom:463.513620pt;}
.y1fb{bottom:463.830983pt;}
.y1ba{bottom:463.864954pt;}
.y42{bottom:467.604248pt;}
.ye8{bottom:468.071064pt;}
.y94{bottom:468.653483pt;}
.ya4{bottom:468.653564pt;}
.y75{bottom:468.653605pt;}
.yb9{bottom:468.773595pt;}
.ye1{bottom:468.777588pt;}
.y177{bottom:476.841620pt;}
.y1fa{bottom:477.158983pt;}
.y1b9{bottom:477.192954pt;}
.y41{bottom:484.270915pt;}
.ye7{bottom:484.737730pt;}
.y93{bottom:485.320150pt;}
.ya3{bottom:485.320231pt;}
.yb8{bottom:485.440262pt;}
.ye0{bottom:485.444255pt;}
.y13c{bottom:486.523593pt;}
.y176{bottom:490.169620pt;}
.y1f9{bottom:490.486983pt;}
.y1b8{bottom:490.520954pt;}
.y13b{bottom:499.851593pt;}
.y40{bottom:500.937581pt;}
.y92{bottom:501.986816pt;}
.ya2{bottom:501.986898pt;}
.y74{bottom:501.986938pt;}
.ydf{bottom:502.110921pt;}
.y175{bottom:503.497620pt;}
.y1f8{bottom:503.814983pt;}
.y1b7{bottom:503.848954pt;}
.y17{bottom:508.854574pt;}
.y13a{bottom:513.179593pt;}
.y174{bottom:516.825620pt;}
.y1f7{bottom:517.142983pt;}
.y1b6{bottom:517.176954pt;}
.y3f{bottom:517.604248pt;}
.ye6{bottom:518.071064pt;}
.y91{bottom:518.653483pt;}
.ya1{bottom:518.653564pt;}
.yde{bottom:518.777588pt;}
.y173{bottom:530.153620pt;}
.y1f6{bottom:530.470983pt;}
.y1b5{bottom:530.504954pt;}
.ycc{bottom:533.182943pt;}
.y3e{bottom:534.270915pt;}
.y90{bottom:535.320150pt;}
.ya0{bottom:535.320231pt;}
.ydd{bottom:535.444255pt;}
.y139{bottom:539.846927pt;}
.y16{bottom:542.187907pt;}
.y172{bottom:543.481620pt;}
.y1f5{bottom:543.798983pt;}
.y1b4{bottom:543.832954pt;}
.y3d{bottom:550.937581pt;}
.y8f{bottom:551.986816pt;}
.y9f{bottom:551.986898pt;}
.ydc{bottom:552.110921pt;}
.y138{bottom:553.174927pt;}
.y171{bottom:556.809620pt;}
.y1f4{bottom:557.126983pt;}
.y1b3{bottom:557.160954pt;}
.y15{bottom:558.854574pt;}
.y3c{bottom:567.604248pt;}
.y8e{bottom:568.653483pt;}
.y73{bottom:568.653564pt;}
.ydb{bottom:568.777588pt;}
.y105{bottom:569.331313pt;}
.y170{bottom:570.137620pt;}
.y1f3{bottom:570.454983pt;}
.y1b2{bottom:570.488954pt;}
.y14{bottom:575.521240pt;}
.y137{bottom:579.841593pt;}
.y16f{bottom:583.465620pt;}
.y1f2{bottom:583.782983pt;}
.y1b1{bottom:583.816954pt;}
.y3b{bottom:584.270915pt;}
.y8d{bottom:585.320150pt;}
.y72{bottom:585.320231pt;}
.yda{bottom:585.444255pt;}
.y13{bottom:592.187907pt;}
.y10c{bottom:594.166686pt;}
.y16e{bottom:596.793620pt;}
.y1f1{bottom:597.110983pt;}
.y1b0{bottom:597.144954pt;}
.y3a{bottom:600.937581pt;}
.y8c{bottom:601.986816pt;}
.y71{bottom:601.986898pt;}
.yd9{bottom:602.110921pt;}
.y12{bottom:608.854574pt;}
.y136{bottom:609.940301pt;}
.y16d{bottom:610.121620pt;}
.y1f0{bottom:610.438983pt;}
.y1af{bottom:610.472954pt;}
.y10b{bottom:610.872020pt;}
.y39{bottom:617.604248pt;}
.y8b{bottom:618.653483pt;}
.y70{bottom:618.653564pt;}
.y135{bottom:623.268301pt;}
.y16c{bottom:623.449620pt;}
.y1ef{bottom:623.766983pt;}
.y1ae{bottom:623.800954pt;}
.y11{bottom:625.521240pt;}
.y10a{bottom:627.509353pt;}
.y38{bottom:634.270915pt;}
.y8a{bottom:635.320150pt;}
.y6f{bottom:635.320231pt;}
.yd8{bottom:635.444255pt;}
.y16b{bottom:636.777620pt;}
.y1ee{bottom:637.094983pt;}
.y1ad{bottom:637.128954pt;}
.y10{bottom:642.187907pt;}
.y109{bottom:644.146686pt;}
.y134{bottom:649.935634pt;}
.y16a{bottom:650.105620pt;}
.y1ed{bottom:650.422983pt;}
.y1ac{bottom:650.456954pt;}
.y37{bottom:650.937581pt;}
.y89{bottom:651.986816pt;}
.y6e{bottom:651.986898pt;}
.y108{bottom:657.474686pt;}
.yf{bottom:658.854574pt;}
.y133{bottom:663.263634pt;}
.y169{bottom:663.433620pt;}
.y1ec{bottom:663.750983pt;}
.y1ab{bottom:663.784954pt;}
.y88{bottom:668.653483pt;}
.y6d{bottom:668.653564pt;}
.yd7{bottom:668.777751pt;}
.ye{bottom:675.521240pt;}
.y132{bottom:676.591634pt;}
.y168{bottom:676.761620pt;}
.y1eb{bottom:677.078983pt;}
.y1aa{bottom:677.112954pt;}
.y107{bottom:682.442020pt;}
.y87{bottom:685.320150pt;}
.y6c{bottom:685.320231pt;}
.yd6{bottom:685.444417pt;}
.y131{bottom:689.919634pt;}
.y167{bottom:690.089620pt;}
.y1ea{bottom:690.406983pt;}
.y1a9{bottom:690.440954pt;}
.yd{bottom:692.187907pt;}
.y106{bottom:695.770020pt;}
.y86{bottom:701.986816pt;}
.y6b{bottom:701.986898pt;}
.yd5{bottom:702.111084pt;}
.y5a{bottom:703.374962pt;}
.y166{bottom:703.417620pt;}
.y1e9{bottom:703.734983pt;}
.y1a8{bottom:703.768954pt;}
.yc{bottom:708.854574pt;}
.y130{bottom:716.586967pt;}
.y59{bottom:716.702962pt;}
.y165{bottom:716.745620pt;}
.y1e8{bottom:717.062983pt;}
.y1a7{bottom:717.096954pt;}
.y104{bottom:718.432646pt;}
.y85{bottom:718.653483pt;}
.y6a{bottom:718.653564pt;}
.yd4{bottom:718.777751pt;}
.yb{bottom:725.521240pt;}
.y12f{bottom:729.914967pt;}
.y164{bottom:730.073620pt;}
.y1e7{bottom:730.390983pt;}
.y1a6{bottom:730.424954pt;}
.y84{bottom:735.320150pt;}
.y69{bottom:735.320231pt;}
.yd3{bottom:735.444417pt;}
.ya{bottom:742.187907pt;}
.y12e{bottom:743.242967pt;}
.y163{bottom:743.401620pt;}
.y1e6{bottom:743.718983pt;}
.y1a5{bottom:743.752954pt;}
.y83{bottom:751.986816pt;}
.y68{bottom:751.986898pt;}
.yd2{bottom:752.111084pt;}
.y12d{bottom:756.570967pt;}
.y162{bottom:756.729620pt;}
.y1e5{bottom:757.046983pt;}
.y1a4{bottom:757.080954pt;}
.yff{bottom:766.273579pt;}
.y82{bottom:768.653483pt;}
.y67{bottom:768.653564pt;}
.y12c{bottom:769.898967pt;}
.y161{bottom:770.057620pt;}
.y1e4{bottom:770.374983pt;}
.y1a3{bottom:770.408954pt;}
.y9{bottom:781.461469pt;}
.y12b{bottom:783.226967pt;}
.y160{bottom:783.385620pt;}
.y1e3{bottom:783.702983pt;}
.y1a2{bottom:783.736954pt;}
.y81{bottom:785.320150pt;}
.y66{bottom:785.320231pt;}
.yd1{bottom:785.444417pt;}
.y103{bottom:791.045313pt;}
.y8{bottom:794.789469pt;}
.y12a{bottom:796.554967pt;}
.y15f{bottom:796.713620pt;}
.y1e2{bottom:797.030983pt;}
.y1a1{bottom:797.064954pt;}
.y80{bottom:801.986816pt;}
.y65{bottom:801.986898pt;}
.y102{bottom:807.750646pt;}
.y129{bottom:809.882967pt;}
.y15e{bottom:810.041620pt;}
.y1e1{bottom:810.358983pt;}
.y1a0{bottom:810.392954pt;}
.y7f{bottom:818.653483pt;}
.y64{bottom:818.653564pt;}
.yd0{bottom:818.777751pt;}
.y15d{bottom:823.369620pt;}
.y1e0{bottom:823.686983pt;}
.y19f{bottom:823.720954pt;}
.y7{bottom:832.656169pt;}
.y101{bottom:832.717980pt;}
.y7e{bottom:835.320150pt;}
.y63{bottom:835.320231pt;}
.ycf{bottom:835.444417pt;}
.y128{bottom:836.550301pt;}
.y15c{bottom:836.697620pt;}
.y1df{bottom:837.014983pt;}
.y19e{bottom:837.048954pt;}
.y100{bottom:846.045980pt;}
.y127{bottom:849.878301pt;}
.y15b{bottom:850.025620pt;}
.y1de{bottom:850.342983pt;}
.y19d{bottom:850.376954pt;}
.y7d{bottom:851.986816pt;}
.y62{bottom:851.986898pt;}
.yce{bottom:852.111084pt;}
.y126{bottom:863.206301pt;}
.y15a{bottom:863.353620pt;}
.y1dd{bottom:863.670983pt;}
.y19c{bottom:863.704954pt;}
.y7c{bottom:868.653483pt;}
.y61{bottom:868.653564pt;}
.yfe{bottom:868.704246pt;}
.ycd{bottom:868.777751pt;}
.y6{bottom:872.377441pt;}
.y125{bottom:876.534301pt;}
.y159{bottom:876.681620pt;}
.y1dc{bottom:876.998983pt;}
.y19b{bottom:877.032954pt;}
.y7b{bottom:885.320150pt;}
.y60{bottom:885.320231pt;}
.y124{bottom:889.862301pt;}
.y158{bottom:890.009620pt;}
.y1db{bottom:890.326983pt;}
.y19a{bottom:890.360954pt;}
.y5{bottom:896.377441pt;}
.y5f{bottom:901.986898pt;}
.y123{bottom:903.190301pt;}
.y157{bottom:903.337620pt;}
.y1da{bottom:903.654983pt;}
.y199{bottom:903.688954pt;}
.y122{bottom:916.518301pt;}
.y156{bottom:916.665620pt;}
.y1d9{bottom:916.982983pt;}
.y198{bottom:917.016954pt;}
.y7a{bottom:918.653483pt;}
.y5e{bottom:918.653564pt;}
.yfd{bottom:925.506913pt;}
.y155{bottom:929.993620pt;}
.y1d8{bottom:930.310983pt;}
.y197{bottom:930.344954pt;}
.y5d{bottom:935.320231pt;}
.yfc{bottom:938.834913pt;}
.y121{bottom:943.185634pt;}
.y154{bottom:943.321620pt;}
.y1d7{bottom:943.638983pt;}
.y196{bottom:943.672954pt;}
.y5c{bottom:951.986898pt;}
.y79{bottom:951.986938pt;}
.yfb{bottom:955.652306pt;}
.y120{bottom:956.513634pt;}
.y4{bottom:956.561849pt;}
.y153{bottom:956.649620pt;}
.y1d6{bottom:956.966983pt;}
.y195{bottom:957.000954pt;}
.y5b{bottom:968.653564pt;}
.y78{bottom:968.653605pt;}
.yfa{bottom:968.980306pt;}
.y11f{bottom:969.841634pt;}
.y152{bottom:969.977620pt;}
.y1d5{bottom:970.294983pt;}
.y194{bottom:970.328954pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y36{bottom:1002.206543pt;}
.hb{height:29.448532pt;}
.h2{height:37.376000pt;}
.h3{height:39.712000pt;}
.ha{height:42.069333pt;}
.he{height:47.253333pt;}
.h12{height:47.581670pt;}
.h11{height:47.582321pt;}
.h4{height:49.298667pt;}
.h8{height:49.493333pt;}
.hc{height:52.448000pt;}
.h7{height:52.746667pt;}
.hf{height:55.956782pt;}
.hd{height:55.978667pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h10{height:74.669094pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x7{left:83.164795pt;}
.x6{left:86.929867pt;}
.xe{left:90.709469pt;}
.x8{left:238.121469pt;}
.x4{left:408.191457pt;}
.xb{left:416.183854pt;}
.x5{left:423.311462pt;}
.xd{left:430.866924pt;}
.x9{left:437.214129pt;}
.xc{left:528.791852pt;}
.x1{left:647.307210pt;}
.xa{left:674.205725pt;}
}




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