
    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_8482b9d088c0a7f2522b9f13.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112000;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_4c2b8cb29705fafbf21d25ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_39b6c4cb281e74460dacacd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_6ee6101f21a27e51639b3ce7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_4d9a66915b3557a589ed0ec8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.113000;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_73a002645de480ec88411c24.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133000;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_8a3f41b691a1ecd98f7d8bdb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a1eda97bb6c9522da192ef00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677000;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_0ffa191fbe6f1efea3ea14dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_018dba9c90b3aba0a9f0455d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9204dd07b8c8028dc2fc1597.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_20f7cd4720666397ecb0d506.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bbd1d9153659cc3686aa198f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.067000;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:-17.784000px;}
.v3{vertical-align:-15.246000px;}
.v5{vertical-align:-8.550000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.952000px;}
.v4{vertical-align:20.694000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.003000px;}
.ls19{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.285000px;}
.ls7{letter-spacing:2.984688px;}
.ls0{letter-spacing:2.988000px;}
.ls18{letter-spacing:2.988300px;}
.ls6{letter-spacing:2.990688px;}
.ls8{letter-spacing:2.990868px;}
.ls10{letter-spacing:3.305760px;}
.ls1{letter-spacing:9.660000px;}
.ls1b{letter-spacing:10.206000px;}
.ls1d{letter-spacing:10.212000px;}
.ls22{letter-spacing:10.374000px;}
.ls27{letter-spacing:11.115000px;}
.ls1a{letter-spacing:11.676000px;}
.ls20{letter-spacing:12.936000px;}
.ls11{letter-spacing:12.939000px;}
.ls1e{letter-spacing:12.942000px;}
.ls1c{letter-spacing:13.202688px;}
.ls28{letter-spacing:13.965000px;}
.lsa{letter-spacing:14.592000px;}
.ls9{letter-spacing:14.649000px;}
.ls1f{letter-spacing:15.926688px;}
.ls2{letter-spacing:16.815000px;}
.ls16{letter-spacing:17.676000px;}
.ls13{letter-spacing:18.867000px;}
.ls23{letter-spacing:20.292000px;}
.ls17{letter-spacing:20.660688px;}
.ls2a{letter-spacing:21.090000px;}
.ls14{letter-spacing:21.342000px;}
.lsd{letter-spacing:21.888000px;}
.ls29{letter-spacing:22.629000px;}
.ls25{letter-spacing:25.224000px;}
.ls24{letter-spacing:25.248000px;}
.ls2b{letter-spacing:25.353000px;}
.lsb{letter-spacing:25.935000px;}
.lsc{letter-spacing:25.992000px;}
.ls21{letter-spacing:26.448000px;}
.ls15{letter-spacing:26.562000px;}
.lse{letter-spacing:28.956000px;}
.lsf{letter-spacing:29.127000px;}
.ls26{letter-spacing:31.890000px;}
.ls3{letter-spacing:731.820000px;}
.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;}
}
.ws1f{word-spacing:-62.643000px;}
.wsa9{word-spacing:-20.016000px;}
.ws27{word-spacing:-12.939000px;}
.ws115{word-spacing:-12.369000px;}
.ws2{word-spacing:-11.676000px;}
.ws171{word-spacing:-10.215000px;}
.ws26{word-spacing:-9.833504px;}
.ws37{word-spacing:-2.907000px;}
.ws9a{word-spacing:-2.793000px;}
.ws36{word-spacing:-2.736000px;}
.wsf7{word-spacing:-2.727000px;}
.ws112{word-spacing:-2.565000px;}
.wse0{word-spacing:-2.508000px;}
.ws12{word-spacing:-2.460000px;}
.ws3d{word-spacing:-2.451000px;}
.ws18e{word-spacing:-2.430000px;}
.ws198{word-spacing:-2.295000px;}
.wsfb{word-spacing:-2.280000px;}
.ws197{word-spacing:-2.115000px;}
.ws3b{word-spacing:-2.052000px;}
.ws3c{word-spacing:-1.995000px;}
.wsc6{word-spacing:-1.938000px;}
.ws1c9{word-spacing:-1.890000px;}
.ws16{word-spacing:-1.860000px;}
.ws3f{word-spacing:-1.824000px;}
.wsc7{word-spacing:-1.767000px;}
.ws34{word-spacing:-1.710000px;}
.ws1c8{word-spacing:-1.575000px;}
.ws11{word-spacing:-1.566000px;}
.ws10{word-spacing:-1.560000px;}
.ws1c4{word-spacing:-1.530000px;}
.ws41{word-spacing:-1.482000px;}
.wsca{word-spacing:-1.368000px;}
.ws1b8{word-spacing:-1.305000px;}
.ws129{word-spacing:-1.254000px;}
.ws121{word-spacing:-1.197000px;}
.ws122{word-spacing:-1.140000px;}
.ws17d{word-spacing:-1.080000px;}
.ws32{word-spacing:-0.969000px;}
.ws18b{word-spacing:-0.945000px;}
.ws15{word-spacing:-0.840000px;}
.ws46{word-spacing:-0.684000px;}
.wsdc{word-spacing:-0.627000px;}
.ws1b2{word-spacing:-0.585000px;}
.ws24{word-spacing:-0.513000px;}
.ws1ad{word-spacing:-0.495000px;}
.wse2{word-spacing:-0.456000px;}
.wsc{word-spacing:-0.420000px;}
.ws161{word-spacing:-0.405000px;}
.wse9{word-spacing:-0.399000px;}
.ws7{word-spacing:-0.378000px;}
.ws192{word-spacing:-0.360000px;}
.ws10e{word-spacing:-0.294000px;}
.wsea{word-spacing:-0.285000px;}
.ws5a{word-spacing:-0.228000px;}
.ws1cd{word-spacing:-0.225000px;}
.ws176{word-spacing:-0.180000px;}
.wsed{word-spacing:-0.174000px;}
.ws3{word-spacing:-0.168000px;}
.wsa5{word-spacing:-0.126000px;}
.ws17f{word-spacing:-0.090000px;}
.ws5d{word-spacing:-0.057000px;}
.ws167{word-spacing:-0.045000px;}
.ws61{word-spacing:-0.042000px;}
.ws5{word-spacing:-0.031500px;}
.wsa6{word-spacing:-0.018000px;}
.wsfa{word-spacing:-0.006000px;}
.ws162{word-spacing:-0.003000px;}
.ws0{word-spacing:0.000000px;}
.ws16d{word-spacing:0.045000px;}
.ws19c{word-spacing:0.090000px;}
.ws59{word-spacing:0.114000px;}
.ws5b{word-spacing:0.171000px;}
.ws1a7{word-spacing:0.270000px;}
.ws164{word-spacing:0.315000px;}
.ws19f{word-spacing:0.360000px;}
.ws19a{word-spacing:0.405000px;}
.wsba{word-spacing:0.513000px;}
.ws57{word-spacing:0.570000px;}
.ws184{word-spacing:0.630000px;}
.ws123{word-spacing:0.741000px;}
.ws18a{word-spacing:0.765000px;}
.ws166{word-spacing:0.855000px;}
.ws31{word-spacing:0.912000px;}
.ws178{word-spacing:0.945000px;}
.ws109{word-spacing:0.969000px;}
.wse5{word-spacing:1.026000px;}
.ws1ac{word-spacing:1.035000px;}
.ws124{word-spacing:1.083000px;}
.ws195{word-spacing:1.170000px;}
.wsa7{word-spacing:1.254000px;}
.ws19e{word-spacing:1.350000px;}
.ws95{word-spacing:1.425000px;}
.ws1ce{word-spacing:1.440000px;}
.ws96{word-spacing:1.482000px;}
.ws180{word-spacing:1.485000px;}
.ws14{word-spacing:1.560000px;}
.ws23{word-spacing:1.596000px;}
.ws1b1{word-spacing:1.620000px;}
.ws38{word-spacing:1.653000px;}
.ws39{word-spacing:1.710000px;}
.ws16b{word-spacing:1.755000px;}
.ws53{word-spacing:1.767000px;}
.ws35{word-spacing:1.824000px;}
.ws191{word-spacing:1.845000px;}
.ws1bd{word-spacing:1.890000px;}
.ws12a{word-spacing:1.938000px;}
.ws25{word-spacing:1.995000px;}
.ws47{word-spacing:2.052000px;}
.ws1c{word-spacing:2.109000px;}
.wsd{word-spacing:2.160000px;}
.ws1cc{word-spacing:2.205000px;}
.ws66{word-spacing:2.280000px;}
.wsb3{word-spacing:2.337000px;}
.ws183{word-spacing:2.340000px;}
.wseb{word-spacing:2.394000px;}
.wsde{word-spacing:2.451000px;}
.ws168{word-spacing:2.520000px;}
.ws5e{word-spacing:2.565000px;}
.wscb{word-spacing:2.622000px;}
.ws19b{word-spacing:2.745000px;}
.ws4f{word-spacing:2.793000px;}
.wsb{word-spacing:2.880000px;}
.ws8e{word-spacing:2.907000px;}
.ws1bb{word-spacing:2.925000px;}
.wsc5{word-spacing:2.964000px;}
.ws16e{word-spacing:3.015000px;}
.ws2d{word-spacing:3.021000px;}
.ws67{word-spacing:3.078000px;}
.wse{word-spacing:3.240000px;}
.wse7{word-spacing:3.249000px;}
.ws1a9{word-spacing:3.285000px;}
.ws194{word-spacing:3.330000px;}
.ws182{word-spacing:3.375000px;}
.ws1a{word-spacing:3.420000px;}
.ws160{word-spacing:3.465000px;}
.wsc4{word-spacing:3.477000px;}
.ws1a1{word-spacing:3.510000px;}
.ws12b{word-spacing:3.534000px;}
.ws1ba{word-spacing:3.555000px;}
.wsbf{word-spacing:3.591000px;}
.ws1cf{word-spacing:3.600000px;}
.ws1cb{word-spacing:3.645000px;}
.wsb7{word-spacing:3.648000px;}
.ws12c{word-spacing:3.705000px;}
.ws1bc{word-spacing:3.780000px;}
.wsb6{word-spacing:3.819000px;}
.ws1e{word-spacing:3.876000px;}
.wscc{word-spacing:3.990000px;}
.ws17c{word-spacing:4.005000px;}
.ws5f{word-spacing:4.047000px;}
.ws185{word-spacing:4.050000px;}
.ws17a{word-spacing:4.095000px;}
.ws60{word-spacing:4.104000px;}
.ws172{word-spacing:4.185000px;}
.wsb1{word-spacing:4.218000px;}
.ws49{word-spacing:4.275000px;}
.ws12d{word-spacing:4.332000px;}
.ws186{word-spacing:4.365000px;}
.wsa3{word-spacing:4.446000px;}
.ws1b6{word-spacing:4.455000px;}
.wsa1{word-spacing:4.458000px;}
.ws4b{word-spacing:4.503000px;}
.wscd{word-spacing:4.560000px;}
.ws1be{word-spacing:4.680000px;}
.ws1b5{word-spacing:4.725000px;}
.ws97{word-spacing:4.731000px;}
.wsad{word-spacing:4.788000px;}
.wsa8{word-spacing:4.845000px;}
.ws1a2{word-spacing:4.860000px;}
.ws1c5{word-spacing:4.950000px;}
.ws100{word-spacing:4.959000px;}
.ws63{word-spacing:5.016000px;}
.ws1b7{word-spacing:5.040000px;}
.wsd7{word-spacing:5.073000px;}
.ws173{word-spacing:5.175000px;}
.wsfd{word-spacing:5.187000px;}
.wse4{word-spacing:5.244000px;}
.ws18{word-spacing:5.280000px;}
.ws42{word-spacing:5.358000px;}
.wsc8{word-spacing:5.415000px;}
.wse3{word-spacing:5.472000px;}
.ws174{word-spacing:5.535000px;}
.ws108{word-spacing:5.586000px;}
.ws18d{word-spacing:5.625000px;}
.wsd8{word-spacing:5.643000px;}
.ws5c{word-spacing:5.700000px;}
.ws187{word-spacing:5.715000px;}
.ws156{word-spacing:5.814000px;}
.ws84{word-spacing:5.928000px;}
.ws7c{word-spacing:5.985000px;}
.ws1d{word-spacing:6.099000px;}
.ws2e{word-spacing:6.156000px;}
.ws1c1{word-spacing:6.165000px;}
.ws1af{word-spacing:6.210000px;}
.ws30{word-spacing:6.213000px;}
.ws15d{word-spacing:6.255000px;}
.ws15f{word-spacing:6.300000px;}
.ws2c{word-spacing:6.327000px;}
.ws83{word-spacing:6.384000px;}
.wsdb{word-spacing:6.441000px;}
.ws1a3{word-spacing:6.525000px;}
.ws28{word-spacing:6.555000px;}
.ws149{word-spacing:6.612000px;}
.wsf9{word-spacing:6.726000px;}
.wsc1{word-spacing:6.840000px;}
.wsbd{word-spacing:6.954000px;}
.wsa4{word-spacing:7.011000px;}
.wsc0{word-spacing:7.125000px;}
.ws16f{word-spacing:7.155000px;}
.wsee{word-spacing:7.176000px;}
.wsf0{word-spacing:7.182000px;}
.ws1a5{word-spacing:7.245000px;}
.wsbe{word-spacing:7.296000px;}
.ws17{word-spacing:7.320000px;}
.ws16c{word-spacing:7.335000px;}
.wscf{word-spacing:7.353000px;}
.ws8f{word-spacing:7.410000px;}
.ws148{word-spacing:7.524000px;}
.ws1c7{word-spacing:7.560000px;}
.ws54{word-spacing:7.581000px;}
.ws8{word-spacing:7.620000px;}
.wse8{word-spacing:7.695000px;}
.wsc2{word-spacing:7.752000px;}
.ws18f{word-spacing:7.785000px;}
.ws6b{word-spacing:7.809000px;}
.wsbc{word-spacing:7.980000px;}
.ws1a8{word-spacing:8.010000px;}
.ws45{word-spacing:8.037000px;}
.ws120{word-spacing:8.094000px;}
.ws69{word-spacing:8.151000px;}
.wsf{word-spacing:8.160000px;}
.ws73{word-spacing:8.208000px;}
.ws74{word-spacing:8.265000px;}
.wsbb{word-spacing:8.322000px;}
.ws1aa{word-spacing:8.370000px;}
.ws88{word-spacing:8.379000px;}
.ws87{word-spacing:8.400000px;}
.ws1ab{word-spacing:8.460000px;}
.ws68{word-spacing:8.493000px;}
.ws6a{word-spacing:8.550000px;}
.ws1ca{word-spacing:8.559000px;}
.ws62{word-spacing:8.607000px;}
.ws92{word-spacing:8.664000px;}
.ws175{word-spacing:8.685000px;}
.ws165{word-spacing:8.775000px;}
.ws3a{word-spacing:8.778000px;}
.ws169{word-spacing:8.865000px;}
.wsa{word-spacing:8.940000px;}
.ws20{word-spacing:8.949000px;}
.ws52{word-spacing:9.006000px;}
.wsd6{word-spacing:9.177000px;}
.ws1c0{word-spacing:9.180000px;}
.ws18c{word-spacing:9.222000px;}
.ws158{word-spacing:9.225000px;}
.ws188{word-spacing:9.270000px;}
.ws40{word-spacing:9.291000px;}
.ws10f{word-spacing:9.348000px;}
.wsf5{word-spacing:9.405000px;}
.wsd5{word-spacing:9.462000px;}
.ws152{word-spacing:9.519000px;}
.ws1b3{word-spacing:9.570000px;}
.ws75{word-spacing:9.633000px;}
.ws1ae{word-spacing:9.651000px;}
.ws127{word-spacing:9.690000px;}
.ws1d2{word-spacing:9.720000px;}
.ws10b{word-spacing:9.747000px;}
.ws110{word-spacing:9.804000px;}
.ws111{word-spacing:9.918000px;}
.wsf8{word-spacing:9.975000px;}
.wsc3{word-spacing:10.032000px;}
.ws193{word-spacing:10.074000px;}
.ws177{word-spacing:10.080000px;}
.ws199{word-spacing:10.104000px;}
.ws1a0{word-spacing:10.167000px;}
.ws16a{word-spacing:10.170000px;}
.ws163{word-spacing:10.173000px;}
.wsfc{word-spacing:10.203000px;}
.ws17e{word-spacing:10.260000px;}
.wse6{word-spacing:10.317000px;}
.ws19d{word-spacing:10.350000px;}
.wsd3{word-spacing:10.431000px;}
.ws181{word-spacing:10.437000px;}
.ws1a6{word-spacing:10.485000px;}
.wsaa{word-spacing:10.545000px;}
.ws159{word-spacing:10.575000px;}
.ws86{word-spacing:10.602000px;}
.ws13{word-spacing:10.620000px;}
.ws55{word-spacing:10.659000px;}
.ws15b{word-spacing:10.665000px;}
.ws29{word-spacing:10.716000px;}
.ws1b9{word-spacing:10.794000px;}
.ws15c{word-spacing:10.800000px;}
.ws78{word-spacing:10.830000px;}
.wsd2{word-spacing:10.887000px;}
.wsd4{word-spacing:10.944000px;}
.ws91{word-spacing:11.058000px;}
.ws1d3{word-spacing:11.070000px;}
.ws114{word-spacing:11.115000px;}
.ws179{word-spacing:11.205000px;}
.wsdd{word-spacing:11.229000px;}
.ws9d{word-spacing:11.286000px;}
.ws12e{word-spacing:11.571000px;}
.ws104{word-spacing:11.628000px;}
.ws1{word-spacing:11.634000px;}
.ws93{word-spacing:11.742000px;}
.ws81{word-spacing:11.799000px;}
.ws128{word-spacing:11.856000px;}
.wsf4{word-spacing:11.913000px;}
.ws138{word-spacing:11.970000px;}
.ws9{word-spacing:12.000000px;}
.ws113{word-spacing:12.027000px;}
.ws126{word-spacing:12.255000px;}
.ws116{word-spacing:12.261000px;}
.ws2f{word-spacing:12.302560px;}
.wsf2{word-spacing:12.312000px;}
.ws11a{word-spacing:12.426000px;}
.wsaf{word-spacing:12.483000px;}
.ws154{word-spacing:12.654000px;}
.wsdf{word-spacing:12.768000px;}
.ws4e{word-spacing:12.882000px;}
.ws3e{word-spacing:12.996000px;}
.ws14c{word-spacing:13.053000px;}
.wsc9{word-spacing:13.110000px;}
.ws80{word-spacing:13.395000px;}
.ws10c{word-spacing:13.509000px;}
.ws189{word-spacing:13.545000px;}
.ws94{word-spacing:13.566000px;}
.wsf6{word-spacing:13.623000px;}
.ws1bf{word-spacing:13.725000px;}
.ws9c{word-spacing:13.737000px;}
.ws6e{word-spacing:13.794000px;}
.ws102{word-spacing:13.851000px;}
.wsfe{word-spacing:13.965000px;}
.wsb8{word-spacing:14.022000px;}
.ws10a{word-spacing:14.079000px;}
.wsb0{word-spacing:14.193000px;}
.ws17b{word-spacing:14.277000px;}
.wsd1{word-spacing:14.364000px;}
.ws89{word-spacing:14.421000px;}
.ws103{word-spacing:14.478000px;}
.ws1d4{word-spacing:14.535000px;}
.wsab{word-spacing:14.649000px;}
.ws157{word-spacing:14.670000px;}
.ws19{word-spacing:14.700000px;}
.ws4a{word-spacing:14.763000px;}
.ws1d1{word-spacing:14.805000px;}
.ws48{word-spacing:14.820000px;}
.ws4{word-spacing:14.958000px;}
.ws21{word-spacing:14.991000px;}
.ws43{word-spacing:15.048000px;}
.ws14b{word-spacing:15.162000px;}
.ws98{word-spacing:15.219000px;}
.ws119{word-spacing:15.276000px;}
.ws11d{word-spacing:15.447000px;}
.wsb4{word-spacing:15.504000px;}
.ws1d5{word-spacing:15.525000px;}
.ws44{word-spacing:15.846000px;}
.ws4c{word-spacing:15.960000px;}
.ws107{word-spacing:16.005000px;}
.ws4d{word-spacing:16.017000px;}
.ws50{word-spacing:16.131000px;}
.ws51{word-spacing:16.188000px;}
.ws1b0{word-spacing:16.389000px;}
.ws15e{word-spacing:16.431000px;}
.ws85{word-spacing:16.530000px;}
.ws155{word-spacing:16.587000px;}
.ws22{word-spacing:16.644000px;}
.ws8d{word-spacing:16.815000px;}
.ws2a{word-spacing:16.820560px;}
.ws2b{word-spacing:16.826560px;}
.ws1a4{word-spacing:16.830000px;}
.ws125{word-spacing:16.872000px;}
.wsac{word-spacing:16.986000px;}
.ws1b{word-spacing:17.100000px;}
.ws170{word-spacing:17.304000px;}
.wsa2{word-spacing:17.328000px;}
.ws11c{word-spacing:17.385000px;}
.ws153{word-spacing:17.442000px;}
.wsce{word-spacing:17.457000px;}
.ws196{word-spacing:17.460000px;}
.ws9b{word-spacing:17.613000px;}
.ws7f{word-spacing:17.670000px;}
.wsae{word-spacing:17.691000px;}
.ws76{word-spacing:17.727000px;}
.ws1b4{word-spacing:17.910000px;}
.ws6{word-spacing:17.968500px;}
.wsb5{word-spacing:18.012000px;}
.ws99{word-spacing:18.069000px;}
.ws11b{word-spacing:18.126000px;}
.ws33{word-spacing:18.183000px;}
.ws8b{word-spacing:18.411000px;}
.wsd9{word-spacing:18.537000px;}
.ws13c{word-spacing:18.639000px;}
.ws7e{word-spacing:18.696000px;}
.wsf3{word-spacing:18.753000px;}
.ws70{word-spacing:18.810000px;}
.ws72{word-spacing:18.846000px;}
.ws71{word-spacing:18.867000px;}
.ws56{word-spacing:18.924000px;}
.wsb9{word-spacing:19.152000px;}
.ws90{word-spacing:19.494000px;}
.ws190{word-spacing:19.755000px;}
.ws6c{word-spacing:19.944000px;}
.wsef{word-spacing:20.049000px;}
.wsf1{word-spacing:20.064000px;}
.wsd0{word-spacing:20.265000px;}
.ws9f{word-spacing:20.463000px;}
.ws15a{word-spacing:20.775000px;}
.ws143{word-spacing:20.919000px;}
.ws13e{word-spacing:20.940000px;}
.ws140{word-spacing:20.976000px;}
.ws8a{word-spacing:21.204000px;}
.ws14f{word-spacing:21.318000px;}
.wsa0{word-spacing:21.375000px;}
.ws9e{word-spacing:21.384000px;}
.ws105{word-spacing:21.546000px;}
.ws11e{word-spacing:21.603000px;}
.ws8c{word-spacing:21.831000px;}
.ws10d{word-spacing:22.002000px;}
.ws79{word-spacing:22.230000px;}
.wse1{word-spacing:22.287000px;}
.ws6f{word-spacing:22.458000px;}
.ws1d0{word-spacing:22.500000px;}
.ws139{word-spacing:22.971000px;}
.ws132{word-spacing:23.085000px;}
.ws7d{word-spacing:23.313000px;}
.ws145{word-spacing:23.484000px;}
.wsb2{word-spacing:23.826000px;}
.ws12f{word-spacing:24.225000px;}
.ws13b{word-spacing:24.396000px;}
.ws146{word-spacing:25.080000px;}
.ws117{word-spacing:25.170000px;}
.ws82{word-spacing:25.857000px;}
.ws13d{word-spacing:26.049000px;}
.ws151{word-spacing:26.220000px;}
.ws58{word-spacing:26.448000px;}
.wsda{word-spacing:26.904000px;}
.ws136{word-spacing:27.360000px;}
.ws131{word-spacing:27.474000px;}
.wsec{word-spacing:27.588000px;}
.ws137{word-spacing:28.101000px;}
.ws118{word-spacing:28.185000px;}
.ws14a{word-spacing:28.329000px;}
.ws150{word-spacing:28.500000px;}
.ws130{word-spacing:28.728000px;}
.ws106{word-spacing:28.932000px;}
.ws142{word-spacing:29.697000px;}
.ws135{word-spacing:30.210000px;}
.ws14e{word-spacing:30.324000px;}
.ws13a{word-spacing:32.148000px;}
.ws64{word-spacing:32.262000px;}
.ws134{word-spacing:32.376000px;}
.ws141{word-spacing:32.946000px;}
.wsff{word-spacing:33.231000px;}
.ws77{word-spacing:33.459000px;}
.ws1c3{word-spacing:33.525000px;}
.ws13f{word-spacing:33.837000px;}
.ws133{word-spacing:33.858000px;}
.ws11f{word-spacing:34.515000px;}
.ws147{word-spacing:34.941000px;}
.ws7a{word-spacing:35.397000px;}
.ws7b{word-spacing:35.739000px;}
.ws14d{word-spacing:36.651000px;}
.ws101{word-spacing:37.392000px;}
.ws6d{word-spacing:42.180000px;}
.ws1c2{word-spacing:44.010000px;}
.ws144{word-spacing:45.942000px;}
.ws65{word-spacing:60.705000px;}
.ws1c6{word-spacing:708.468000px;}
._27{margin-left:-8.538000px;}
._3{margin-left:-6.930000px;}
._8{margin-left:-5.532000px;}
._2{margin-left:-3.864000px;}
._4{margin-left:-2.268000px;}
._7{margin-left:-1.080000px;}
._5{width:1.788000px;}
._6{width:2.988000px;}
._c{width:5.244000px;}
._2f{width:9.078000px;}
._31{width:10.884000px;}
._1{width:13.008000px;}
._2e{width:16.419000px;}
._2c{width:20.430000px;}
._28{width:22.344000px;}
._29{width:23.997000px;}
._30{width:28.434000px;}
._b{width:30.084000px;}
._26{width:32.718000px;}
._2d{width:35.361000px;}
._2a{width:38.361000px;}
._2b{width:41.556000px;}
._17{width:71.736000px;}
._1e{width:74.844000px;}
._32{width:87.993000px;}
._16{width:93.534000px;}
._0{width:95.760000px;}
._11{width:112.224000px;}
._1a{width:115.332000px;}
._10{width:134.022000px;}
._19{width:137.130000px;}
._25{width:166.656000px;}
._22{width:168.210000px;}
._24{width:188.454000px;}
._21{width:190.008000px;}
._20{width:191.562000px;}
._15{width:205.590000px;}
._1b{width:207.144000px;}
._23{width:211.806000px;}
._1f{width:213.360000px;}
._f{width:225.834000px;}
._14{width:227.388000px;}
._13{width:228.942000px;}
._1d{width:230.496000px;}
._e{width:247.632000px;}
._18{width:249.186000px;}
._12{width:250.740000px;}
._1c{width:252.294000px;}
._d{width:341.880000px;}
._33{width:671.256000px;}
._9{width:682.926000px;}
._a{width:2143.998000px;}
.fc3{color:transparent;}
.fc1{color:rgb(101,98,99);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000000px;}
.fs4{font-size:31.500000px;}
.fsb{font-size:31.920000px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:43.319400px;}
.fsc{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:47.929500px;}
.y1c4{bottom:101.503500px;}
.y1be{bottom:101.542500px;}
.ybe{bottom:102.132000px;}
.y4e{bottom:102.250500px;}
.y89{bottom:102.252000px;}
.y26{bottom:102.550500px;}
.y196{bottom:102.645000px;}
.y142{bottom:103.597500px;}
.y104{bottom:113.422500px;}
.yff{bottom:113.796000px;}
.y1c3{bottom:115.701000px;}
.y1bd{bottom:115.738500px;}
.y25{bottom:117.493500px;}
.ybd{bottom:119.167500px;}
.y4d{bottom:119.436000px;}
.y88{bottom:119.437500px;}
.y195{bottom:119.830500px;}
.y141{bottom:120.783000px;}
.y103{bottom:127.620000px;}
.y204{bottom:127.656000px;}
.yfe{bottom:127.993500px;}
.y1c2{bottom:129.898500px;}
.y1bc{bottom:129.936000px;}
.y24{bottom:132.438000px;}
.ybc{bottom:136.204500px;}
.y4c{bottom:136.621500px;}
.y87{bottom:136.623000px;}
.y194{bottom:137.016000px;}
.y140{bottom:137.968500px;}
.y102{bottom:141.816000px;}
.y203{bottom:141.853500px;}
.yfd{bottom:142.189500px;}
.y1c1{bottom:144.094500px;}
.y1bb{bottom:144.132000px;}
.y23{bottom:147.382500px;}
.ybb{bottom:153.240000px;}
.y4b{bottom:153.807000px;}
.y86{bottom:153.808500px;}
.y193{bottom:154.201500px;}
.y13f{bottom:155.154000px;}
.y101{bottom:156.013500px;}
.y202{bottom:156.049500px;}
.yfc{bottom:156.387000px;}
.y1c0{bottom:158.292000px;}
.y22{bottom:162.325500px;}
.y1ba{bottom:169.836000px;}
.y100{bottom:170.209500px;}
.y201{bottom:170.247000px;}
.yba{bottom:170.275500px;}
.yfb{bottom:170.583000px;}
.y85{bottom:170.994000px;}
.y192{bottom:171.387000px;}
.y145{bottom:171.741000px;}
.y13e{bottom:172.341000px;}
.y1bf{bottom:172.488000px;}
.y21{bottom:177.270000px;}
.y200{bottom:184.443000px;}
.yfa{bottom:184.780500px;}
.y4a{bottom:185.488500px;}
.yb9{bottom:187.312500px;}
.y84{bottom:188.179500px;}
.y191{bottom:188.572500px;}
.y13d{bottom:189.526500px;}
.y20{bottom:192.214500px;}
.y144{bottom:192.663000px;}
.y1ff{bottom:198.640500px;}
.yf9{bottom:198.976500px;}
.yb8{bottom:204.348000px;}
.y83{bottom:205.365000px;}
.y190{bottom:205.758000px;}
.y13c{bottom:206.712000px;}
.y1f{bottom:207.157500px;}
.y1fe{bottom:212.836500px;}
.y143{bottom:213.583500px;}
.y16f{bottom:219.861000px;}
.yb7{bottom:221.383500px;}
.y1e{bottom:222.102000px;}
.y82{bottom:222.550500px;}
.y18f{bottom:222.943500px;}
.y13b{bottom:223.897500px;}
.y1fd{bottom:227.034000px;}
.y49{bottom:228.292500px;}
.y1d{bottom:237.046500px;}
.yb6{bottom:238.420500px;}
.y81{bottom:239.736000px;}
.y18e{bottom:240.129000px;}
.y13a{bottom:241.083000px;}
.y1fc{bottom:241.230000px;}
.y1c{bottom:251.989500px;}
.y1fb{bottom:255.427500px;}
.yb5{bottom:255.456000px;}
.y48{bottom:255.939000px;}
.y80{bottom:256.921500px;}
.y18d{bottom:257.314500px;}
.y139{bottom:258.268500px;}
.y1b{bottom:266.934000px;}
.y16e{bottom:268.765500px;}
.y1fa{bottom:269.623500px;}
.yb4{bottom:272.493000px;}
.y7f{bottom:274.107000px;}
.y18c{bottom:274.500000px;}
.y138{bottom:275.454000px;}
.y47{bottom:276.861000px;}
.y1f9{bottom:283.821000px;}
.y16d{bottom:285.951000px;}
.y1a{bottom:287.856000px;}
.yb3{bottom:289.528500px;}
.y7e{bottom:291.292500px;}
.y18b{bottom:291.685500px;}
.y137{bottom:292.639500px;}
.y46{bottom:297.783000px;}
.y1f8{bottom:298.017000px;}
.y156{bottom:300.576000px;}
.y19{bottom:302.799000px;}
.y164{bottom:303.457500px;}
.yb2{bottom:306.564000px;}
.y7d{bottom:308.478000px;}
.y18a{bottom:308.871000px;}
.y136{bottom:309.825000px;}
.y1f7{bottom:312.214500px;}
.y155{bottom:314.773500px;}
.y163{bottom:317.653500px;}
.y18{bottom:317.743500px;}
.y45{bottom:318.703500px;}
.yb1{bottom:320.761500px;}
.y7c{bottom:325.663500px;}
.y189{bottom:326.056500px;}
.y1f6{bottom:326.410500px;}
.y135{bottom:327.010500px;}
.y16c{bottom:328.867500px;}
.y154{bottom:328.969500px;}
.y162{bottom:331.851000px;}
.yb0{bottom:337.797000px;}
.y17{bottom:338.665500px;}
.y44{bottom:339.625500px;}
.y1b9{bottom:340.159500px;}
.y1f5{bottom:340.608000px;}
.y7b{bottom:342.849000px;}
.y16b{bottom:343.063500px;}
.y153{bottom:343.167000px;}
.y188{bottom:343.242000px;}
.ye0{bottom:343.596000px;}
.y134{bottom:344.196000px;}
.y161{bottom:346.047000px;}
.yaf{bottom:351.994500px;}
.y16{bottom:353.608500px;}
.y1f4{bottom:354.804000px;}
.y16a{bottom:357.261000px;}
.y152{bottom:357.363000px;}
.y7a{bottom:360.034500px;}
.y160{bottom:360.244500px;}
.y187{bottom:360.427500px;}
.y43{bottom:360.547500px;}
.y133{bottom:361.381500px;}
.ydf{bottom:364.518000px;}
.y15{bottom:368.553000px;}
.y1f3{bottom:369.001500px;}
.yae{bottom:369.030000px;}
.y169{bottom:371.457000px;}
.y151{bottom:371.560500px;}
.y15f{bottom:374.440500px;}
.y79{bottom:377.220000px;}
.y186{bottom:377.613000px;}
.y126{bottom:378.366000px;}
.y132{bottom:378.567000px;}
.y42{bottom:381.468000px;}
.y1f2{bottom:383.197500px;}
.y14{bottom:383.496000px;}
.y168{bottom:385.654500px;}
.y150{bottom:385.756500px;}
.yad{bottom:386.065500px;}
.y15e{bottom:388.638000px;}
.y1b8{bottom:388.690500px;}
.y78{bottom:394.405500px;}
.y197{bottom:394.798500px;}
.y185{bottom:394.800000px;}
.y125{bottom:395.551500px;}
.y131{bottom:395.752500px;}
.y1f1{bottom:397.395000px;}
.y13{bottom:398.440500px;}
.y167{bottom:399.850500px;}
.y14f{bottom:399.954000px;}
.y41{bottom:402.390000px;}
.y15d{bottom:402.834000px;}
.yde{bottom:402.999000px;}
.yac{bottom:403.102500px;}
.y1b7{bottom:405.876000px;}
.y77{bottom:411.591000px;}
.y184{bottom:411.985500px;}
.y124{bottom:412.737000px;}
.y130{bottom:412.938000px;}
.y166{bottom:414.048000px;}
.y14e{bottom:414.150000px;}
.y15c{bottom:417.031500px;}
.yab{bottom:420.138000px;}
.ydd{bottom:420.184500px;}
.y1b6{bottom:423.061500px;}
.y40{bottom:423.312000px;}
.y1f0{bottom:425.788500px;}
.y165{bottom:428.244000px;}
.y14d{bottom:428.347500px;}
.y76{bottom:428.776500px;}
.y183{bottom:429.171000px;}
.y123{bottom:429.922500px;}
.y12f{bottom:430.123500px;}
.y12{bottom:430.570500px;}
.y15b{bottom:431.227500px;}
.yaa{bottom:437.173500px;}
.ydc{bottom:437.370000px;}
.y1ef{bottom:439.984500px;}
.y1b5{bottom:440.247000px;}
.y14c{bottom:442.543500px;}
.y3f{bottom:444.234000px;}
.y15a{bottom:445.425000px;}
.y11{bottom:445.513500px;}
.y75{bottom:445.962000px;}
.y182{bottom:446.356500px;}
.y122{bottom:447.108000px;}
.y12e{bottom:447.309000px;}
.ya9{bottom:451.371000px;}
.y1ee{bottom:454.182000px;}
.ydb{bottom:454.555500px;}
.y14b{bottom:456.741000px;}
.y1b4{bottom:457.432500px;}
.y159{bottom:459.621000px;}
.y10{bottom:460.458000px;}
.y74{bottom:463.147500px;}
.y121{bottom:464.293500px;}
.y12d{bottom:464.494500px;}
.y3e{bottom:465.154500px;}
.y1ed{bottom:468.378000px;}
.ya8{bottom:468.406500px;}
.y14a{bottom:470.937000px;}
.yda{bottom:471.741000px;}
.y158{bottom:473.818500px;}
.y1b3{bottom:474.618000px;}
.y73{bottom:480.333000px;}
.yf{bottom:481.380000px;}
.y120{bottom:481.479000px;}
.y12c{bottom:481.680000px;}
.y1ec{bottom:482.575500px;}
.ya7{bottom:482.604000px;}
.y149{bottom:485.134500px;}
.y3d{bottom:486.076500px;}
.y157{bottom:488.014500px;}
.yd9{bottom:488.926500px;}
.y1b2{bottom:491.803500px;}
.y181{bottom:496.008000px;}
.ye{bottom:496.323000px;}
.y1eb{bottom:496.771500px;}
.y72{bottom:497.518500px;}
.y11f{bottom:498.664500px;}
.y12b{bottom:498.865500px;}
.y148{bottom:499.330500px;}
.ya6{bottom:499.639500px;}
.y178{bottom:500.301000px;}
.yd8{bottom:506.112000px;}
.y3c{bottom:506.998500px;}
.y1b1{bottom:508.989000px;}
.y180{bottom:510.205500px;}
.y1ea{bottom:510.969000px;}
.yd{bottom:511.267500px;}
.y147{bottom:513.528000px;}
.y177{bottom:514.498500px;}
.y71{bottom:514.704000px;}
.y11e{bottom:515.850000px;}
.ya5{bottom:516.675000px;}
.yd7{bottom:523.297500px;}
.y17f{bottom:524.401500px;}
.y1e9{bottom:525.165000px;}
.y1b0{bottom:526.174500px;}
.yc{bottom:526.212000px;}
.y146{bottom:527.724000px;}
.y3b{bottom:527.919000px;}
.y176{bottom:528.694500px;}
.y70{bottom:531.891000px;}
.y11d{bottom:533.035500px;}
.ya4{bottom:533.712000px;}
.y17e{bottom:538.599000px;}
.y1e8{bottom:539.362500px;}
.yd6{bottom:540.483000px;}
.yb{bottom:541.155000px;}
.y175{bottom:542.892000px;}
.y1af{bottom:543.360000px;}
.y12a{bottom:548.518500px;}
.y3a{bottom:548.841000px;}
.y6f{bottom:549.076500px;}
.y11c{bottom:550.221000px;}
.ya3{bottom:550.747500px;}
.y17d{bottom:552.795000px;}
.y1e7{bottom:553.558500px;}
.ya{bottom:556.099500px;}
.y174{bottom:557.088000px;}
.yd5{bottom:557.668500px;}
.y1ae{bottom:560.545500px;}
.y129{bottom:562.714500px;}
.y6e{bottom:566.262000px;}
.y17c{bottom:566.992500px;}
.y11b{bottom:567.406500px;}
.y1e6{bottom:567.756000px;}
.ya2{bottom:567.784500px;}
.y39{bottom:569.763000px;}
.y9{bottom:571.044000px;}
.y173{bottom:571.285500px;}
.yd4{bottom:575.601000px;}
.y128{bottom:576.912000px;}
.y1ad{bottom:577.731000px;}
.y17b{bottom:581.188500px;}
.y1e5{bottom:581.952000px;}
.y6d{bottom:583.447500px;}
.y11a{bottom:584.592000px;}
.ya1{bottom:584.820000px;}
.y172{bottom:585.481500px;}
.y38{bottom:590.683500px;}
.y127{bottom:591.108000px;}
.y8{bottom:591.964500px;}
.y1ac{bottom:594.916500px;}
.y17a{bottom:595.386000px;}
.y1e4{bottom:596.149500px;}
.yd3{bottom:596.523000px;}
.y171{bottom:599.679000px;}
.y6c{bottom:600.633000px;}
.y119{bottom:601.779000px;}
.ya0{bottom:601.855500px;}
.y7{bottom:606.909000px;}
.y179{bottom:609.582000px;}
.y1e3{bottom:610.345500px;}
.y37{bottom:611.605500px;}
.y1ab{bottom:612.102000px;}
.y170{bottom:613.875000px;}
.yf8{bottom:616.852500px;}
.yd2{bottom:617.445000px;}
.y6b{bottom:617.818500px;}
.y9f{bottom:618.892500px;}
.y118{bottom:618.964500px;}
.y6{bottom:621.853500px;}
.y1e2{bottom:624.543000px;}
.y1aa{bottom:629.287500px;}
.y36{bottom:632.527500px;}
.yf7{bottom:634.038000px;}
.y6a{bottom:635.004000px;}
.y9e{bottom:635.928000px;}
.y117{bottom:636.150000px;}
.y5{bottom:636.796500px;}
.y1e1{bottom:638.739000px;}
.y1a9{bottom:646.473000px;}
.yf6{bottom:651.223500px;}
.y69{bottom:652.189500px;}
.y1e0{bottom:652.936500px;}
.y9d{bottom:652.963500px;}
.y116{bottom:653.335500px;}
.yd1{bottom:655.926000px;}
.y1a8{bottom:663.658500px;}
.y1df{bottom:667.132500px;}
.yf5{bottom:668.409000px;}
.y68{bottom:669.375000px;}
.y9c{bottom:670.000500px;}
.y115{bottom:670.521000px;}
.yd0{bottom:673.111500px;}
.y35{bottom:674.193000px;}
.y1a7{bottom:680.844000px;}
.y1de{bottom:681.330000px;}
.yf4{bottom:685.594500px;}
.y67{bottom:686.560500px;}
.y9b{bottom:687.036000px;}
.y114{bottom:687.706500px;}
.ycf{bottom:690.297000px;}
.y34{bottom:692.947500px;}
.y1dd{bottom:695.526000px;}
.y1a6{bottom:698.029500px;}
.yf3{bottom:702.780000px;}
.y66{bottom:703.746000px;}
.y9a{bottom:704.071500px;}
.y33{bottom:704.080500px;}
.y113{bottom:704.892000px;}
.yce{bottom:707.482500px;}
.y1dc{bottom:709.723500px;}
.y1a5{bottom:715.215000px;}
.y32{bottom:719.025000px;}
.yf2{bottom:719.965500px;}
.y65{bottom:720.931500px;}
.y99{bottom:721.108500px;}
.y112{bottom:722.077500px;}
.y1db{bottom:723.919500px;}
.ycd{bottom:724.668000px;}
.y1a4{bottom:732.400500px;}
.yf1{bottom:737.151000px;}
.y31{bottom:737.779500px;}
.y64{bottom:738.117000px;}
.y98{bottom:738.144000px;}
.y111{bottom:739.263000px;}
.ycc{bottom:741.853500px;}
.y30{bottom:748.912500px;}
.y1a3{bottom:749.586000px;}
.y1da{bottom:752.313000px;}
.yf0{bottom:754.336500px;}
.y97{bottom:755.179500px;}
.y63{bottom:755.302500px;}
.y110{bottom:756.448500px;}
.ycb{bottom:759.039000px;}
.y1d9{bottom:766.510500px;}
.y1a2{bottom:766.771500px;}
.y2f{bottom:767.668500px;}
.yef{bottom:771.522000px;}
.y96{bottom:772.216500px;}
.y62{bottom:772.488000px;}
.y10f{bottom:773.634000px;}
.yca{bottom:776.224500px;}
.y1d8{bottom:780.706500px;}
.yee{bottom:788.707500px;}
.y95{bottom:789.252000px;}
.y61{bottom:789.673500px;}
.y2e{bottom:790.755000px;}
.y10e{bottom:790.819500px;}
.yc9{bottom:793.410000px;}
.y1d7{bottom:794.904000px;}
.y1a1{bottom:798.453000px;}
.yed{bottom:805.893000px;}
.y94{bottom:806.289000px;}
.y60{bottom:806.859000px;}
.y2d{bottom:807.193500px;}
.y10d{bottom:808.005000px;}
.y1d6{bottom:809.100000px;}
.y206{bottom:809.101500px;}
.yc8{bottom:811.342500px;}
.yec{bottom:823.078500px;}
.y1d5{bottom:823.297500px;}
.y93{bottom:823.324500px;}
.y2c{bottom:823.632000px;}
.y5f{bottom:824.044500px;}
.y10c{bottom:825.190500px;}
.y1d4{bottom:837.493500px;}
.y205{bottom:837.495000px;}
.y2b{bottom:840.070500px;}
.yeb{bottom:840.264000px;}
.y5e{bottom:841.230000px;}
.y10b{bottom:842.376000px;}
.y1a0{bottom:846.984000px;}
.y92{bottom:848.953500px;}
.yc7{bottom:849.823500px;}
.y1d3{bottom:851.691000px;}
.yea{bottom:857.449500px;}
.y5d{bottom:858.415500px;}
.y10a{bottom:859.561500px;}
.y19f{bottom:864.169500px;}
.y1d2{bottom:865.888500px;}
.yc6{bottom:867.009000px;}
.y2a{bottom:874.471500px;}
.ye9{bottom:874.635000px;}
.y5c{bottom:875.601000px;}
.y91{bottom:876.520500px;}
.y109{bottom:876.747000px;}
.y1d1{bottom:880.084500px;}
.y19e{bottom:881.355000px;}
.yc5{bottom:884.194500px;}
.ye8{bottom:891.820500px;}
.y5b{bottom:892.786500px;}
.y108{bottom:893.932500px;}
.y1d0{bottom:894.282000px;}
.y19d{bottom:898.540500px;}
.yc4{bottom:901.380000px;}
.y1cf{bottom:908.478000px;}
.y29{bottom:908.842500px;}
.ye7{bottom:909.006000px;}
.y5a{bottom:909.972000px;}
.y107{bottom:911.118000px;}
.y19c{bottom:915.726000px;}
.yc3{bottom:918.565500px;}
.y1ce{bottom:922.675500px;}
.ye6{bottom:926.191500px;}
.y59{bottom:927.157500px;}
.y106{bottom:929.050500px;}
.y19b{bottom:932.911500px;}
.yc2{bottom:935.751000px;}
.y90{bottom:936.162000px;}
.y1cd{bottom:936.871500px;}
.y28{bottom:943.213500px;}
.ye5{bottom:943.377000px;}
.y58{bottom:944.343000px;}
.y1cc{bottom:951.069000px;}
.yc1{bottom:952.936500px;}
.y8f{bottom:953.347500px;}
.ye4{bottom:960.562500px;}
.y57{bottom:961.528500px;}
.y105{bottom:964.468500px;}
.y19a{bottom:964.593000px;}
.y1cb{bottom:965.265000px;}
.y8e{bottom:970.533000px;}
.yc0{bottom:970.869000px;}
.y27{bottom:977.584500px;}
.ye3{bottom:977.748000px;}
.y56{bottom:978.714000px;}
.y1ca{bottom:979.462500px;}
.y8d{bottom:987.718500px;}
.ybf{bottom:991.791000px;}
.y1c9{bottom:993.658500px;}
.ye2{bottom:994.935000px;}
.y55{bottom:995.899500px;}
.y8c{bottom:1005.651000px;}
.y1c8{bottom:1007.856000px;}
.ye1{bottom:1012.867500px;}
.y54{bottom:1013.086500px;}
.y199{bottom:1013.124000px;}
.y1c7{bottom:1022.052000px;}
.y8b{bottom:1026.573000px;}
.y53{bottom:1030.272000px;}
.y198{bottom:1030.309500px;}
.y1c6{bottom:1036.249500px;}
.y52{bottom:1047.457500px;}
.y1c5{bottom:1050.445500px;}
.y8a{bottom:1061.989500px;}
.y51{bottom:1064.643000px;}
.y4{bottom:1083.001500px;}
.y3{bottom:1094.956500px;}
.y2{bottom:1106.911500px;}
.y50{bottom:1117.117500px;}
.y1{bottom:1201.588500px;}
.h8{height:22.848000px;}
.h4{height:30.702000px;}
.h3{height:33.012000px;}
.h10{height:36.450000px;}
.h5{height:38.094000px;}
.hf{height:38.475000px;}
.h2{height:41.040000px;}
.h9{height:47.160000px;}
.hc{height:48.735000px;}
.h7{height:50.112000px;}
.ha{height:54.420000px;}
.hb{height:56.592000px;}
.he{height:57.726087px;}
.hd{height:57.732087px;}
.h6{height:99.036000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:12.051000px;}
.x1c{left:67.468500px;}
.x1e{left:75.756000px;}
.x27{left:76.810500px;}
.x1f{left:79.074000px;}
.x7{left:80.229000px;}
.x28{left:82.410000px;}
.xb{left:84.124500px;}
.x1d{left:85.290000px;}
.x20{left:89.133000px;}
.x1b{left:93.438000px;}
.x18{left:94.803000px;}
.xe{left:106.878000px;}
.x13{left:110.206500px;}
.x17{left:114.648000px;}
.x16{left:128.854500px;}
.x15{left:137.212500px;}
.x11{left:138.745500px;}
.xf{left:148.699500px;}
.x12{left:151.041000px;}
.xd{left:164.638500px;}
.xa{left:171.054000px;}
.x9{left:172.818000px;}
.x1a{left:175.716000px;}
.x8{left:178.068000px;}
.x10{left:182.341500px;}
.x5{left:189.156000px;}
.x6{left:190.311000px;}
.x19{left:196.747500px;}
.x14{left:201.766500px;}
.xc{left:213.264000px;}
.x22{left:263.995500px;}
.x21{left:266.224500px;}
.x23{left:455.499000px;}
.x26{left:464.839500px;}
.x29{left:469.977000px;}
.x25{left:472.684500px;}
.x24{left:570.316500px;}
.x4{left:675.403500px;}
.x3{left:698.188500px;}
.x2{left:713.224500px;}
@media print{
.v2{vertical-align:-15.808000pt;}
.v3{vertical-align:-13.552000pt;}
.v5{vertical-align:-7.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.290667pt;}
.v4{vertical-align:18.394667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.002667pt;}
.ls19{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.253333pt;}
.ls7{letter-spacing:2.653056pt;}
.ls0{letter-spacing:2.656000pt;}
.ls18{letter-spacing:2.656267pt;}
.ls6{letter-spacing:2.658389pt;}
.ls8{letter-spacing:2.658549pt;}
.ls10{letter-spacing:2.938453pt;}
.ls1{letter-spacing:8.586667pt;}
.ls1b{letter-spacing:9.072000pt;}
.ls1d{letter-spacing:9.077333pt;}
.ls22{letter-spacing:9.221333pt;}
.ls27{letter-spacing:9.880000pt;}
.ls1a{letter-spacing:10.378667pt;}
.ls20{letter-spacing:11.498667pt;}
.ls11{letter-spacing:11.501333pt;}
.ls1e{letter-spacing:11.504000pt;}
.ls1c{letter-spacing:11.735723pt;}
.ls28{letter-spacing:12.413333pt;}
.lsa{letter-spacing:12.970667pt;}
.ls9{letter-spacing:13.021333pt;}
.ls1f{letter-spacing:14.157056pt;}
.ls2{letter-spacing:14.946667pt;}
.ls16{letter-spacing:15.712000pt;}
.ls13{letter-spacing:16.770667pt;}
.ls23{letter-spacing:18.037333pt;}
.ls17{letter-spacing:18.365056pt;}
.ls2a{letter-spacing:18.746667pt;}
.ls14{letter-spacing:18.970667pt;}
.lsd{letter-spacing:19.456000pt;}
.ls29{letter-spacing:20.114667pt;}
.ls25{letter-spacing:22.421333pt;}
.ls24{letter-spacing:22.442667pt;}
.ls2b{letter-spacing:22.536000pt;}
.lsb{letter-spacing:23.053333pt;}
.lsc{letter-spacing:23.104000pt;}
.ls21{letter-spacing:23.509333pt;}
.ls15{letter-spacing:23.610667pt;}
.lse{letter-spacing:25.738667pt;}
.lsf{letter-spacing:25.890667pt;}
.ls26{letter-spacing:28.346667pt;}
.ls3{letter-spacing:650.506667pt;}
.ws1f{word-spacing:-55.682667pt;}
.wsa9{word-spacing:-17.792000pt;}
.ws27{word-spacing:-11.501333pt;}
.ws115{word-spacing:-10.994667pt;}
.ws2{word-spacing:-10.378667pt;}
.ws171{word-spacing:-9.080000pt;}
.ws26{word-spacing:-8.740892pt;}
.ws37{word-spacing:-2.584000pt;}
.ws9a{word-spacing:-2.482667pt;}
.ws36{word-spacing:-2.432000pt;}
.wsf7{word-spacing:-2.424000pt;}
.ws112{word-spacing:-2.280000pt;}
.wse0{word-spacing:-2.229333pt;}
.ws12{word-spacing:-2.186667pt;}
.ws3d{word-spacing:-2.178667pt;}
.ws18e{word-spacing:-2.160000pt;}
.ws198{word-spacing:-2.040000pt;}
.wsfb{word-spacing:-2.026667pt;}
.ws197{word-spacing:-1.880000pt;}
.ws3b{word-spacing:-1.824000pt;}
.ws3c{word-spacing:-1.773333pt;}
.wsc6{word-spacing:-1.722667pt;}
.ws1c9{word-spacing:-1.680000pt;}
.ws16{word-spacing:-1.653333pt;}
.ws3f{word-spacing:-1.621333pt;}
.wsc7{word-spacing:-1.570667pt;}
.ws34{word-spacing:-1.520000pt;}
.ws1c8{word-spacing:-1.400000pt;}
.ws11{word-spacing:-1.392000pt;}
.ws10{word-spacing:-1.386667pt;}
.ws1c4{word-spacing:-1.360000pt;}
.ws41{word-spacing:-1.317333pt;}
.wsca{word-spacing:-1.216000pt;}
.ws1b8{word-spacing:-1.160000pt;}
.ws129{word-spacing:-1.114667pt;}
.ws121{word-spacing:-1.064000pt;}
.ws122{word-spacing:-1.013333pt;}
.ws17d{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.861333pt;}
.ws18b{word-spacing:-0.840000pt;}
.ws15{word-spacing:-0.746667pt;}
.ws46{word-spacing:-0.608000pt;}
.wsdc{word-spacing:-0.557333pt;}
.ws1b2{word-spacing:-0.520000pt;}
.ws24{word-spacing:-0.456000pt;}
.ws1ad{word-spacing:-0.440000pt;}
.wse2{word-spacing:-0.405333pt;}
.wsc{word-spacing:-0.373333pt;}
.ws161{word-spacing:-0.360000pt;}
.wse9{word-spacing:-0.354667pt;}
.ws7{word-spacing:-0.336000pt;}
.ws192{word-spacing:-0.320000pt;}
.ws10e{word-spacing:-0.261333pt;}
.wsea{word-spacing:-0.253333pt;}
.ws5a{word-spacing:-0.202667pt;}
.ws1cd{word-spacing:-0.200000pt;}
.ws176{word-spacing:-0.160000pt;}
.wsed{word-spacing:-0.154667pt;}
.ws3{word-spacing:-0.149333pt;}
.wsa5{word-spacing:-0.112000pt;}
.ws17f{word-spacing:-0.080000pt;}
.ws5d{word-spacing:-0.050667pt;}
.ws167{word-spacing:-0.040000pt;}
.ws61{word-spacing:-0.037333pt;}
.ws5{word-spacing:-0.028000pt;}
.wsa6{word-spacing:-0.016000pt;}
.wsfa{word-spacing:-0.005333pt;}
.ws162{word-spacing:-0.002667pt;}
.ws0{word-spacing:0.000000pt;}
.ws16d{word-spacing:0.040000pt;}
.ws19c{word-spacing:0.080000pt;}
.ws59{word-spacing:0.101333pt;}
.ws5b{word-spacing:0.152000pt;}
.ws1a7{word-spacing:0.240000pt;}
.ws164{word-spacing:0.280000pt;}
.ws19f{word-spacing:0.320000pt;}
.ws19a{word-spacing:0.360000pt;}
.wsba{word-spacing:0.456000pt;}
.ws57{word-spacing:0.506667pt;}
.ws184{word-spacing:0.560000pt;}
.ws123{word-spacing:0.658667pt;}
.ws18a{word-spacing:0.680000pt;}
.ws166{word-spacing:0.760000pt;}
.ws31{word-spacing:0.810667pt;}
.ws178{word-spacing:0.840000pt;}
.ws109{word-spacing:0.861333pt;}
.wse5{word-spacing:0.912000pt;}
.ws1ac{word-spacing:0.920000pt;}
.ws124{word-spacing:0.962667pt;}
.ws195{word-spacing:1.040000pt;}
.wsa7{word-spacing:1.114667pt;}
.ws19e{word-spacing:1.200000pt;}
.ws95{word-spacing:1.266667pt;}
.ws1ce{word-spacing:1.280000pt;}
.ws96{word-spacing:1.317333pt;}
.ws180{word-spacing:1.320000pt;}
.ws14{word-spacing:1.386667pt;}
.ws23{word-spacing:1.418667pt;}
.ws1b1{word-spacing:1.440000pt;}
.ws38{word-spacing:1.469333pt;}
.ws39{word-spacing:1.520000pt;}
.ws16b{word-spacing:1.560000pt;}
.ws53{word-spacing:1.570667pt;}
.ws35{word-spacing:1.621333pt;}
.ws191{word-spacing:1.640000pt;}
.ws1bd{word-spacing:1.680000pt;}
.ws12a{word-spacing:1.722667pt;}
.ws25{word-spacing:1.773333pt;}
.ws47{word-spacing:1.824000pt;}
.ws1c{word-spacing:1.874667pt;}
.wsd{word-spacing:1.920000pt;}
.ws1cc{word-spacing:1.960000pt;}
.ws66{word-spacing:2.026667pt;}
.wsb3{word-spacing:2.077333pt;}
.ws183{word-spacing:2.080000pt;}
.wseb{word-spacing:2.128000pt;}
.wsde{word-spacing:2.178667pt;}
.ws168{word-spacing:2.240000pt;}
.ws5e{word-spacing:2.280000pt;}
.wscb{word-spacing:2.330667pt;}
.ws19b{word-spacing:2.440000pt;}
.ws4f{word-spacing:2.482667pt;}
.wsb{word-spacing:2.560000pt;}
.ws8e{word-spacing:2.584000pt;}
.ws1bb{word-spacing:2.600000pt;}
.wsc5{word-spacing:2.634667pt;}
.ws16e{word-spacing:2.680000pt;}
.ws2d{word-spacing:2.685333pt;}
.ws67{word-spacing:2.736000pt;}
.wse{word-spacing:2.880000pt;}
.wse7{word-spacing:2.888000pt;}
.ws1a9{word-spacing:2.920000pt;}
.ws194{word-spacing:2.960000pt;}
.ws182{word-spacing:3.000000pt;}
.ws1a{word-spacing:3.040000pt;}
.ws160{word-spacing:3.080000pt;}
.wsc4{word-spacing:3.090667pt;}
.ws1a1{word-spacing:3.120000pt;}
.ws12b{word-spacing:3.141333pt;}
.ws1ba{word-spacing:3.160000pt;}
.wsbf{word-spacing:3.192000pt;}
.ws1cf{word-spacing:3.200000pt;}
.ws1cb{word-spacing:3.240000pt;}
.wsb7{word-spacing:3.242667pt;}
.ws12c{word-spacing:3.293333pt;}
.ws1bc{word-spacing:3.360000pt;}
.wsb6{word-spacing:3.394667pt;}
.ws1e{word-spacing:3.445333pt;}
.wscc{word-spacing:3.546667pt;}
.ws17c{word-spacing:3.560000pt;}
.ws5f{word-spacing:3.597333pt;}
.ws185{word-spacing:3.600000pt;}
.ws17a{word-spacing:3.640000pt;}
.ws60{word-spacing:3.648000pt;}
.ws172{word-spacing:3.720000pt;}
.wsb1{word-spacing:3.749333pt;}
.ws49{word-spacing:3.800000pt;}
.ws12d{word-spacing:3.850667pt;}
.ws186{word-spacing:3.880000pt;}
.wsa3{word-spacing:3.952000pt;}
.ws1b6{word-spacing:3.960000pt;}
.wsa1{word-spacing:3.962667pt;}
.ws4b{word-spacing:4.002667pt;}
.wscd{word-spacing:4.053333pt;}
.ws1be{word-spacing:4.160000pt;}
.ws1b5{word-spacing:4.200000pt;}
.ws97{word-spacing:4.205333pt;}
.wsad{word-spacing:4.256000pt;}
.wsa8{word-spacing:4.306667pt;}
.ws1a2{word-spacing:4.320000pt;}
.ws1c5{word-spacing:4.400000pt;}
.ws100{word-spacing:4.408000pt;}
.ws63{word-spacing:4.458667pt;}
.ws1b7{word-spacing:4.480000pt;}
.wsd7{word-spacing:4.509333pt;}
.ws173{word-spacing:4.600000pt;}
.wsfd{word-spacing:4.610667pt;}
.wse4{word-spacing:4.661333pt;}
.ws18{word-spacing:4.693333pt;}
.ws42{word-spacing:4.762667pt;}
.wsc8{word-spacing:4.813333pt;}
.wse3{word-spacing:4.864000pt;}
.ws174{word-spacing:4.920000pt;}
.ws108{word-spacing:4.965333pt;}
.ws18d{word-spacing:5.000000pt;}
.wsd8{word-spacing:5.016000pt;}
.ws5c{word-spacing:5.066667pt;}
.ws187{word-spacing:5.080000pt;}
.ws156{word-spacing:5.168000pt;}
.ws84{word-spacing:5.269333pt;}
.ws7c{word-spacing:5.320000pt;}
.ws1d{word-spacing:5.421333pt;}
.ws2e{word-spacing:5.472000pt;}
.ws1c1{word-spacing:5.480000pt;}
.ws1af{word-spacing:5.520000pt;}
.ws30{word-spacing:5.522667pt;}
.ws15d{word-spacing:5.560000pt;}
.ws15f{word-spacing:5.600000pt;}
.ws2c{word-spacing:5.624000pt;}
.ws83{word-spacing:5.674667pt;}
.wsdb{word-spacing:5.725333pt;}
.ws1a3{word-spacing:5.800000pt;}
.ws28{word-spacing:5.826667pt;}
.ws149{word-spacing:5.877333pt;}
.wsf9{word-spacing:5.978667pt;}
.wsc1{word-spacing:6.080000pt;}
.wsbd{word-spacing:6.181333pt;}
.wsa4{word-spacing:6.232000pt;}
.wsc0{word-spacing:6.333333pt;}
.ws16f{word-spacing:6.360000pt;}
.wsee{word-spacing:6.378667pt;}
.wsf0{word-spacing:6.384000pt;}
.ws1a5{word-spacing:6.440000pt;}
.wsbe{word-spacing:6.485333pt;}
.ws17{word-spacing:6.506667pt;}
.ws16c{word-spacing:6.520000pt;}
.wscf{word-spacing:6.536000pt;}
.ws8f{word-spacing:6.586667pt;}
.ws148{word-spacing:6.688000pt;}
.ws1c7{word-spacing:6.720000pt;}
.ws54{word-spacing:6.738667pt;}
.ws8{word-spacing:6.773333pt;}
.wse8{word-spacing:6.840000pt;}
.wsc2{word-spacing:6.890667pt;}
.ws18f{word-spacing:6.920000pt;}
.ws6b{word-spacing:6.941333pt;}
.wsbc{word-spacing:7.093333pt;}
.ws1a8{word-spacing:7.120000pt;}
.ws45{word-spacing:7.144000pt;}
.ws120{word-spacing:7.194667pt;}
.ws69{word-spacing:7.245333pt;}
.wsf{word-spacing:7.253333pt;}
.ws73{word-spacing:7.296000pt;}
.ws74{word-spacing:7.346667pt;}
.wsbb{word-spacing:7.397333pt;}
.ws1aa{word-spacing:7.440000pt;}
.ws88{word-spacing:7.448000pt;}
.ws87{word-spacing:7.466667pt;}
.ws1ab{word-spacing:7.520000pt;}
.ws68{word-spacing:7.549333pt;}
.ws6a{word-spacing:7.600000pt;}
.ws1ca{word-spacing:7.608000pt;}
.ws62{word-spacing:7.650667pt;}
.ws92{word-spacing:7.701333pt;}
.ws175{word-spacing:7.720000pt;}
.ws165{word-spacing:7.800000pt;}
.ws3a{word-spacing:7.802667pt;}
.ws169{word-spacing:7.880000pt;}
.wsa{word-spacing:7.946667pt;}
.ws20{word-spacing:7.954667pt;}
.ws52{word-spacing:8.005333pt;}
.wsd6{word-spacing:8.157333pt;}
.ws1c0{word-spacing:8.160000pt;}
.ws18c{word-spacing:8.197333pt;}
.ws158{word-spacing:8.200000pt;}
.ws188{word-spacing:8.240000pt;}
.ws40{word-spacing:8.258667pt;}
.ws10f{word-spacing:8.309333pt;}
.wsf5{word-spacing:8.360000pt;}
.wsd5{word-spacing:8.410667pt;}
.ws152{word-spacing:8.461333pt;}
.ws1b3{word-spacing:8.506667pt;}
.ws75{word-spacing:8.562667pt;}
.ws1ae{word-spacing:8.578667pt;}
.ws127{word-spacing:8.613333pt;}
.ws1d2{word-spacing:8.640000pt;}
.ws10b{word-spacing:8.664000pt;}
.ws110{word-spacing:8.714667pt;}
.ws111{word-spacing:8.816000pt;}
.wsf8{word-spacing:8.866667pt;}
.wsc3{word-spacing:8.917333pt;}
.ws193{word-spacing:8.954667pt;}
.ws177{word-spacing:8.960000pt;}
.ws199{word-spacing:8.981333pt;}
.ws1a0{word-spacing:9.037333pt;}
.ws16a{word-spacing:9.040000pt;}
.ws163{word-spacing:9.042667pt;}
.wsfc{word-spacing:9.069333pt;}
.ws17e{word-spacing:9.120000pt;}
.wse6{word-spacing:9.170667pt;}
.ws19d{word-spacing:9.200000pt;}
.wsd3{word-spacing:9.272000pt;}
.ws181{word-spacing:9.277333pt;}
.ws1a6{word-spacing:9.320000pt;}
.wsaa{word-spacing:9.373333pt;}
.ws159{word-spacing:9.400000pt;}
.ws86{word-spacing:9.424000pt;}
.ws13{word-spacing:9.440000pt;}
.ws55{word-spacing:9.474667pt;}
.ws15b{word-spacing:9.480000pt;}
.ws29{word-spacing:9.525333pt;}
.ws1b9{word-spacing:9.594667pt;}
.ws15c{word-spacing:9.600000pt;}
.ws78{word-spacing:9.626667pt;}
.wsd2{word-spacing:9.677333pt;}
.wsd4{word-spacing:9.728000pt;}
.ws91{word-spacing:9.829333pt;}
.ws1d3{word-spacing:9.840000pt;}
.ws114{word-spacing:9.880000pt;}
.ws179{word-spacing:9.960000pt;}
.wsdd{word-spacing:9.981333pt;}
.ws9d{word-spacing:10.032000pt;}
.ws12e{word-spacing:10.285333pt;}
.ws104{word-spacing:10.336000pt;}
.ws1{word-spacing:10.341333pt;}
.ws93{word-spacing:10.437333pt;}
.ws81{word-spacing:10.488000pt;}
.ws128{word-spacing:10.538667pt;}
.wsf4{word-spacing:10.589333pt;}
.ws138{word-spacing:10.640000pt;}
.ws9{word-spacing:10.666667pt;}
.ws113{word-spacing:10.690667pt;}
.ws126{word-spacing:10.893333pt;}
.ws116{word-spacing:10.898667pt;}
.ws2f{word-spacing:10.935609pt;}
.wsf2{word-spacing:10.944000pt;}
.ws11a{word-spacing:11.045333pt;}
.wsaf{word-spacing:11.096000pt;}
.ws154{word-spacing:11.248000pt;}
.wsdf{word-spacing:11.349333pt;}
.ws4e{word-spacing:11.450667pt;}
.ws3e{word-spacing:11.552000pt;}
.ws14c{word-spacing:11.602667pt;}
.wsc9{word-spacing:11.653333pt;}
.ws80{word-spacing:11.906667pt;}
.ws10c{word-spacing:12.008000pt;}
.ws189{word-spacing:12.040000pt;}
.ws94{word-spacing:12.058667pt;}
.wsf6{word-spacing:12.109333pt;}
.ws1bf{word-spacing:12.200000pt;}
.ws9c{word-spacing:12.210667pt;}
.ws6e{word-spacing:12.261333pt;}
.ws102{word-spacing:12.312000pt;}
.wsfe{word-spacing:12.413333pt;}
.wsb8{word-spacing:12.464000pt;}
.ws10a{word-spacing:12.514667pt;}
.wsb0{word-spacing:12.616000pt;}
.ws17b{word-spacing:12.690667pt;}
.wsd1{word-spacing:12.768000pt;}
.ws89{word-spacing:12.818667pt;}
.ws103{word-spacing:12.869333pt;}
.ws1d4{word-spacing:12.920000pt;}
.wsab{word-spacing:13.021333pt;}
.ws157{word-spacing:13.040000pt;}
.ws19{word-spacing:13.066667pt;}
.ws4a{word-spacing:13.122667pt;}
.ws1d1{word-spacing:13.160000pt;}
.ws48{word-spacing:13.173333pt;}
.ws4{word-spacing:13.296000pt;}
.ws21{word-spacing:13.325333pt;}
.ws43{word-spacing:13.376000pt;}
.ws14b{word-spacing:13.477333pt;}
.ws98{word-spacing:13.528000pt;}
.ws119{word-spacing:13.578667pt;}
.ws11d{word-spacing:13.730667pt;}
.wsb4{word-spacing:13.781333pt;}
.ws1d5{word-spacing:13.800000pt;}
.ws44{word-spacing:14.085333pt;}
.ws4c{word-spacing:14.186667pt;}
.ws107{word-spacing:14.226667pt;}
.ws4d{word-spacing:14.237333pt;}
.ws50{word-spacing:14.338667pt;}
.ws51{word-spacing:14.389333pt;}
.ws1b0{word-spacing:14.568000pt;}
.ws15e{word-spacing:14.605333pt;}
.ws85{word-spacing:14.693333pt;}
.ws155{word-spacing:14.744000pt;}
.ws22{word-spacing:14.794667pt;}
.ws8d{word-spacing:14.946667pt;}
.ws2a{word-spacing:14.951609pt;}
.ws2b{word-spacing:14.956942pt;}
.ws1a4{word-spacing:14.960000pt;}
.ws125{word-spacing:14.997333pt;}
.wsac{word-spacing:15.098667pt;}
.ws1b{word-spacing:15.200000pt;}
.ws170{word-spacing:15.381333pt;}
.wsa2{word-spacing:15.402667pt;}
.ws11c{word-spacing:15.453333pt;}
.ws153{word-spacing:15.504000pt;}
.wsce{word-spacing:15.517333pt;}
.ws196{word-spacing:15.520000pt;}
.ws9b{word-spacing:15.656000pt;}
.ws7f{word-spacing:15.706667pt;}
.wsae{word-spacing:15.725333pt;}
.ws76{word-spacing:15.757333pt;}
.ws1b4{word-spacing:15.920000pt;}
.ws6{word-spacing:15.972000pt;}
.wsb5{word-spacing:16.010667pt;}
.ws99{word-spacing:16.061333pt;}
.ws11b{word-spacing:16.112000pt;}
.ws33{word-spacing:16.162667pt;}
.ws8b{word-spacing:16.365333pt;}
.wsd9{word-spacing:16.477333pt;}
.ws13c{word-spacing:16.568000pt;}
.ws7e{word-spacing:16.618667pt;}
.wsf3{word-spacing:16.669333pt;}
.ws70{word-spacing:16.720000pt;}
.ws72{word-spacing:16.752000pt;}
.ws71{word-spacing:16.770667pt;}
.ws56{word-spacing:16.821333pt;}
.wsb9{word-spacing:17.024000pt;}
.ws90{word-spacing:17.328000pt;}
.ws190{word-spacing:17.560000pt;}
.ws6c{word-spacing:17.728000pt;}
.wsef{word-spacing:17.821333pt;}
.wsf1{word-spacing:17.834667pt;}
.wsd0{word-spacing:18.013333pt;}
.ws9f{word-spacing:18.189333pt;}
.ws15a{word-spacing:18.466667pt;}
.ws143{word-spacing:18.594667pt;}
.ws13e{word-spacing:18.613333pt;}
.ws140{word-spacing:18.645333pt;}
.ws8a{word-spacing:18.848000pt;}
.ws14f{word-spacing:18.949333pt;}
.wsa0{word-spacing:19.000000pt;}
.ws9e{word-spacing:19.008000pt;}
.ws105{word-spacing:19.152000pt;}
.ws11e{word-spacing:19.202667pt;}
.ws8c{word-spacing:19.405333pt;}
.ws10d{word-spacing:19.557333pt;}
.ws79{word-spacing:19.760000pt;}
.wse1{word-spacing:19.810667pt;}
.ws6f{word-spacing:19.962667pt;}
.ws1d0{word-spacing:20.000000pt;}
.ws139{word-spacing:20.418667pt;}
.ws132{word-spacing:20.520000pt;}
.ws7d{word-spacing:20.722667pt;}
.ws145{word-spacing:20.874667pt;}
.wsb2{word-spacing:21.178667pt;}
.ws12f{word-spacing:21.533333pt;}
.ws13b{word-spacing:21.685333pt;}
.ws146{word-spacing:22.293333pt;}
.ws117{word-spacing:22.373333pt;}
.ws82{word-spacing:22.984000pt;}
.ws13d{word-spacing:23.154667pt;}
.ws151{word-spacing:23.306667pt;}
.ws58{word-spacing:23.509333pt;}
.wsda{word-spacing:23.914667pt;}
.ws136{word-spacing:24.320000pt;}
.ws131{word-spacing:24.421333pt;}
.wsec{word-spacing:24.522667pt;}
.ws137{word-spacing:24.978667pt;}
.ws118{word-spacing:25.053333pt;}
.ws14a{word-spacing:25.181333pt;}
.ws150{word-spacing:25.333333pt;}
.ws130{word-spacing:25.536000pt;}
.ws106{word-spacing:25.717333pt;}
.ws142{word-spacing:26.397333pt;}
.ws135{word-spacing:26.853333pt;}
.ws14e{word-spacing:26.954667pt;}
.ws13a{word-spacing:28.576000pt;}
.ws64{word-spacing:28.677333pt;}
.ws134{word-spacing:28.778667pt;}
.ws141{word-spacing:29.285333pt;}
.wsff{word-spacing:29.538667pt;}
.ws77{word-spacing:29.741333pt;}
.ws1c3{word-spacing:29.800000pt;}
.ws13f{word-spacing:30.077333pt;}
.ws133{word-spacing:30.096000pt;}
.ws11f{word-spacing:30.680000pt;}
.ws147{word-spacing:31.058667pt;}
.ws7a{word-spacing:31.464000pt;}
.ws7b{word-spacing:31.768000pt;}
.ws14d{word-spacing:32.578667pt;}
.ws101{word-spacing:33.237333pt;}
.ws6d{word-spacing:37.493333pt;}
.ws1c2{word-spacing:39.120000pt;}
.ws144{word-spacing:40.837333pt;}
.ws65{word-spacing:53.960000pt;}
.ws1c6{word-spacing:629.749333pt;}
._27{margin-left:-7.589333pt;}
._3{margin-left:-6.160000pt;}
._8{margin-left:-4.917333pt;}
._2{margin-left:-3.434667pt;}
._4{margin-left:-2.016000pt;}
._7{margin-left:-0.960000pt;}
._5{width:1.589333pt;}
._6{width:2.656000pt;}
._c{width:4.661333pt;}
._2f{width:8.069333pt;}
._31{width:9.674667pt;}
._1{width:11.562667pt;}
._2e{width:14.594667pt;}
._2c{width:18.160000pt;}
._28{width:19.861333pt;}
._29{width:21.330667pt;}
._30{width:25.274667pt;}
._b{width:26.741333pt;}
._26{width:29.082667pt;}
._2d{width:31.432000pt;}
._2a{width:34.098667pt;}
._2b{width:36.938667pt;}
._17{width:63.765333pt;}
._1e{width:66.528000pt;}
._32{width:78.216000pt;}
._16{width:83.141333pt;}
._0{width:85.120000pt;}
._11{width:99.754667pt;}
._1a{width:102.517333pt;}
._10{width:119.130667pt;}
._19{width:121.893333pt;}
._25{width:148.138667pt;}
._22{width:149.520000pt;}
._24{width:167.514667pt;}
._21{width:168.896000pt;}
._20{width:170.277333pt;}
._15{width:182.746667pt;}
._1b{width:184.128000pt;}
._23{width:188.272000pt;}
._1f{width:189.653333pt;}
._f{width:200.741333pt;}
._14{width:202.122667pt;}
._13{width:203.504000pt;}
._1d{width:204.885333pt;}
._e{width:220.117333pt;}
._18{width:221.498667pt;}
._12{width:222.880000pt;}
._1c{width:224.261333pt;}
._d{width:303.893333pt;}
._33{width:596.672000pt;}
._9{width:607.045333pt;}
._a{width:1905.776000pt;}
.fs6{font-size:21.333333pt;}
.fs4{font-size:28.000000pt;}
.fsb{font-size:28.373333pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:38.506133pt;}
.fsc{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:42.604000pt;}
.y1c4{bottom:90.225333pt;}
.y1be{bottom:90.260000pt;}
.ybe{bottom:90.784000pt;}
.y4e{bottom:90.889333pt;}
.y89{bottom:90.890667pt;}
.y26{bottom:91.156000pt;}
.y196{bottom:91.240000pt;}
.y142{bottom:92.086667pt;}
.y104{bottom:100.820000pt;}
.yff{bottom:101.152000pt;}
.y1c3{bottom:102.845333pt;}
.y1bd{bottom:102.878667pt;}
.y25{bottom:104.438667pt;}
.ybd{bottom:105.926667pt;}
.y4d{bottom:106.165333pt;}
.y88{bottom:106.166667pt;}
.y195{bottom:106.516000pt;}
.y141{bottom:107.362667pt;}
.y103{bottom:113.440000pt;}
.y204{bottom:113.472000pt;}
.yfe{bottom:113.772000pt;}
.y1c2{bottom:115.465333pt;}
.y1bc{bottom:115.498667pt;}
.y24{bottom:117.722667pt;}
.ybc{bottom:121.070667pt;}
.y4c{bottom:121.441333pt;}
.y87{bottom:121.442667pt;}
.y194{bottom:121.792000pt;}
.y140{bottom:122.638667pt;}
.y102{bottom:126.058667pt;}
.y203{bottom:126.092000pt;}
.yfd{bottom:126.390667pt;}
.y1c1{bottom:128.084000pt;}
.y1bb{bottom:128.117333pt;}
.y23{bottom:131.006667pt;}
.ybb{bottom:136.213333pt;}
.y4b{bottom:136.717333pt;}
.y86{bottom:136.718667pt;}
.y193{bottom:137.068000pt;}
.y13f{bottom:137.914667pt;}
.y101{bottom:138.678667pt;}
.y202{bottom:138.710667pt;}
.yfc{bottom:139.010667pt;}
.y1c0{bottom:140.704000pt;}
.y22{bottom:144.289333pt;}
.y1ba{bottom:150.965333pt;}
.y100{bottom:151.297333pt;}
.y201{bottom:151.330667pt;}
.yba{bottom:151.356000pt;}
.yfb{bottom:151.629333pt;}
.y85{bottom:151.994667pt;}
.y192{bottom:152.344000pt;}
.y145{bottom:152.658667pt;}
.y13e{bottom:153.192000pt;}
.y1bf{bottom:153.322667pt;}
.y21{bottom:157.573333pt;}
.y200{bottom:163.949333pt;}
.yfa{bottom:164.249333pt;}
.y4a{bottom:164.878667pt;}
.yb9{bottom:166.500000pt;}
.y84{bottom:167.270667pt;}
.y191{bottom:167.620000pt;}
.y13d{bottom:168.468000pt;}
.y20{bottom:170.857333pt;}
.y144{bottom:171.256000pt;}
.y1ff{bottom:176.569333pt;}
.yf9{bottom:176.868000pt;}
.yb8{bottom:181.642667pt;}
.y83{bottom:182.546667pt;}
.y190{bottom:182.896000pt;}
.y13c{bottom:183.744000pt;}
.y1f{bottom:184.140000pt;}
.y1fe{bottom:189.188000pt;}
.y143{bottom:189.852000pt;}
.y16f{bottom:195.432000pt;}
.yb7{bottom:196.785333pt;}
.y1e{bottom:197.424000pt;}
.y82{bottom:197.822667pt;}
.y18f{bottom:198.172000pt;}
.y13b{bottom:199.020000pt;}
.y1fd{bottom:201.808000pt;}
.y49{bottom:202.926667pt;}
.y1d{bottom:210.708000pt;}
.yb6{bottom:211.929333pt;}
.y81{bottom:213.098667pt;}
.y18e{bottom:213.448000pt;}
.y13a{bottom:214.296000pt;}
.y1fc{bottom:214.426667pt;}
.y1c{bottom:223.990667pt;}
.y1fb{bottom:227.046667pt;}
.yb5{bottom:227.072000pt;}
.y48{bottom:227.501333pt;}
.y80{bottom:228.374667pt;}
.y18d{bottom:228.724000pt;}
.y139{bottom:229.572000pt;}
.y1b{bottom:237.274667pt;}
.y16e{bottom:238.902667pt;}
.y1fa{bottom:239.665333pt;}
.yb4{bottom:242.216000pt;}
.y7f{bottom:243.650667pt;}
.y18c{bottom:244.000000pt;}
.y138{bottom:244.848000pt;}
.y47{bottom:246.098667pt;}
.y1f9{bottom:252.285333pt;}
.y16d{bottom:254.178667pt;}
.y1a{bottom:255.872000pt;}
.yb3{bottom:257.358667pt;}
.y7e{bottom:258.926667pt;}
.y18b{bottom:259.276000pt;}
.y137{bottom:260.124000pt;}
.y46{bottom:264.696000pt;}
.y1f8{bottom:264.904000pt;}
.y156{bottom:267.178667pt;}
.y19{bottom:269.154667pt;}
.y164{bottom:269.740000pt;}
.yb2{bottom:272.501333pt;}
.y7d{bottom:274.202667pt;}
.y18a{bottom:274.552000pt;}
.y136{bottom:275.400000pt;}
.y1f7{bottom:277.524000pt;}
.y155{bottom:279.798667pt;}
.y163{bottom:282.358667pt;}
.y18{bottom:282.438667pt;}
.y45{bottom:283.292000pt;}
.yb1{bottom:285.121333pt;}
.y7c{bottom:289.478667pt;}
.y189{bottom:289.828000pt;}
.y1f6{bottom:290.142667pt;}
.y135{bottom:290.676000pt;}
.y16c{bottom:292.326667pt;}
.y154{bottom:292.417333pt;}
.y162{bottom:294.978667pt;}
.yb0{bottom:300.264000pt;}
.y17{bottom:301.036000pt;}
.y44{bottom:301.889333pt;}
.y1b9{bottom:302.364000pt;}
.y1f5{bottom:302.762667pt;}
.y7b{bottom:304.754667pt;}
.y16b{bottom:304.945333pt;}
.y153{bottom:305.037333pt;}
.y188{bottom:305.104000pt;}
.ye0{bottom:305.418667pt;}
.y134{bottom:305.952000pt;}
.y161{bottom:307.597333pt;}
.yaf{bottom:312.884000pt;}
.y16{bottom:314.318667pt;}
.y1f4{bottom:315.381333pt;}
.y16a{bottom:317.565333pt;}
.y152{bottom:317.656000pt;}
.y7a{bottom:320.030667pt;}
.y160{bottom:320.217333pt;}
.y187{bottom:320.380000pt;}
.y43{bottom:320.486667pt;}
.y133{bottom:321.228000pt;}
.ydf{bottom:324.016000pt;}
.y15{bottom:327.602667pt;}
.y1f3{bottom:328.001333pt;}
.yae{bottom:328.026667pt;}
.y169{bottom:330.184000pt;}
.y151{bottom:330.276000pt;}
.y15f{bottom:332.836000pt;}
.y79{bottom:335.306667pt;}
.y186{bottom:335.656000pt;}
.y126{bottom:336.325333pt;}
.y132{bottom:336.504000pt;}
.y42{bottom:339.082667pt;}
.y1f2{bottom:340.620000pt;}
.y14{bottom:340.885333pt;}
.y168{bottom:342.804000pt;}
.y150{bottom:342.894667pt;}
.yad{bottom:343.169333pt;}
.y15e{bottom:345.456000pt;}
.y1b8{bottom:345.502667pt;}
.y78{bottom:350.582667pt;}
.y197{bottom:350.932000pt;}
.y185{bottom:350.933333pt;}
.y125{bottom:351.601333pt;}
.y131{bottom:351.780000pt;}
.y1f1{bottom:353.240000pt;}
.y13{bottom:354.169333pt;}
.y167{bottom:355.422667pt;}
.y14f{bottom:355.514667pt;}
.y41{bottom:357.680000pt;}
.y15d{bottom:358.074667pt;}
.yde{bottom:358.221333pt;}
.yac{bottom:358.313333pt;}
.y1b7{bottom:360.778667pt;}
.y77{bottom:365.858667pt;}
.y184{bottom:366.209333pt;}
.y124{bottom:366.877333pt;}
.y130{bottom:367.056000pt;}
.y166{bottom:368.042667pt;}
.y14e{bottom:368.133333pt;}
.y15c{bottom:370.694667pt;}
.yab{bottom:373.456000pt;}
.ydd{bottom:373.497333pt;}
.y1b6{bottom:376.054667pt;}
.y40{bottom:376.277333pt;}
.y1f0{bottom:378.478667pt;}
.y165{bottom:380.661333pt;}
.y14d{bottom:380.753333pt;}
.y76{bottom:381.134667pt;}
.y183{bottom:381.485333pt;}
.y123{bottom:382.153333pt;}
.y12f{bottom:382.332000pt;}
.y12{bottom:382.729333pt;}
.y15b{bottom:383.313333pt;}
.yaa{bottom:388.598667pt;}
.ydc{bottom:388.773333pt;}
.y1ef{bottom:391.097333pt;}
.y1b5{bottom:391.330667pt;}
.y14c{bottom:393.372000pt;}
.y3f{bottom:394.874667pt;}
.y15a{bottom:395.933333pt;}
.y11{bottom:396.012000pt;}
.y75{bottom:396.410667pt;}
.y182{bottom:396.761333pt;}
.y122{bottom:397.429333pt;}
.y12e{bottom:397.608000pt;}
.ya9{bottom:401.218667pt;}
.y1ee{bottom:403.717333pt;}
.ydb{bottom:404.049333pt;}
.y14b{bottom:405.992000pt;}
.y1b4{bottom:406.606667pt;}
.y159{bottom:408.552000pt;}
.y10{bottom:409.296000pt;}
.y74{bottom:411.686667pt;}
.y121{bottom:412.705333pt;}
.y12d{bottom:412.884000pt;}
.y3e{bottom:413.470667pt;}
.y1ed{bottom:416.336000pt;}
.ya8{bottom:416.361333pt;}
.y14a{bottom:418.610667pt;}
.yda{bottom:419.325333pt;}
.y158{bottom:421.172000pt;}
.y1b3{bottom:421.882667pt;}
.y73{bottom:426.962667pt;}
.yf{bottom:427.893333pt;}
.y120{bottom:427.981333pt;}
.y12c{bottom:428.160000pt;}
.y1ec{bottom:428.956000pt;}
.ya7{bottom:428.981333pt;}
.y149{bottom:431.230667pt;}
.y3d{bottom:432.068000pt;}
.y157{bottom:433.790667pt;}
.yd9{bottom:434.601333pt;}
.y1b2{bottom:437.158667pt;}
.y181{bottom:440.896000pt;}
.ye{bottom:441.176000pt;}
.y1eb{bottom:441.574667pt;}
.y72{bottom:442.238667pt;}
.y11f{bottom:443.257333pt;}
.y12b{bottom:443.436000pt;}
.y148{bottom:443.849333pt;}
.ya6{bottom:444.124000pt;}
.y178{bottom:444.712000pt;}
.yd8{bottom:449.877333pt;}
.y3c{bottom:450.665333pt;}
.y1b1{bottom:452.434667pt;}
.y180{bottom:453.516000pt;}
.y1ea{bottom:454.194667pt;}
.yd{bottom:454.460000pt;}
.y147{bottom:456.469333pt;}
.y177{bottom:457.332000pt;}
.y71{bottom:457.514667pt;}
.y11e{bottom:458.533333pt;}
.ya5{bottom:459.266667pt;}
.yd7{bottom:465.153333pt;}
.y17f{bottom:466.134667pt;}
.y1e9{bottom:466.813333pt;}
.y1b0{bottom:467.710667pt;}
.yc{bottom:467.744000pt;}
.y146{bottom:469.088000pt;}
.y3b{bottom:469.261333pt;}
.y176{bottom:469.950667pt;}
.y70{bottom:472.792000pt;}
.y11d{bottom:473.809333pt;}
.ya4{bottom:474.410667pt;}
.y17e{bottom:478.754667pt;}
.y1e8{bottom:479.433333pt;}
.yd6{bottom:480.429333pt;}
.yb{bottom:481.026667pt;}
.y175{bottom:482.570667pt;}
.y1af{bottom:482.986667pt;}
.y12a{bottom:487.572000pt;}
.y3a{bottom:487.858667pt;}
.y6f{bottom:488.068000pt;}
.y11c{bottom:489.085333pt;}
.ya3{bottom:489.553333pt;}
.y17d{bottom:491.373333pt;}
.y1e7{bottom:492.052000pt;}
.ya{bottom:494.310667pt;}
.y174{bottom:495.189333pt;}
.yd5{bottom:495.705333pt;}
.y1ae{bottom:498.262667pt;}
.y129{bottom:500.190667pt;}
.y6e{bottom:503.344000pt;}
.y17c{bottom:503.993333pt;}
.y11b{bottom:504.361333pt;}
.y1e6{bottom:504.672000pt;}
.ya2{bottom:504.697333pt;}
.y39{bottom:506.456000pt;}
.y9{bottom:507.594667pt;}
.y173{bottom:507.809333pt;}
.yd4{bottom:511.645333pt;}
.y128{bottom:512.810667pt;}
.y1ad{bottom:513.538667pt;}
.y17b{bottom:516.612000pt;}
.y1e5{bottom:517.290667pt;}
.y6d{bottom:518.620000pt;}
.y11a{bottom:519.637333pt;}
.ya1{bottom:519.840000pt;}
.y172{bottom:520.428000pt;}
.y38{bottom:525.052000pt;}
.y127{bottom:525.429333pt;}
.y8{bottom:526.190667pt;}
.y1ac{bottom:528.814667pt;}
.y17a{bottom:529.232000pt;}
.y1e4{bottom:529.910667pt;}
.yd3{bottom:530.242667pt;}
.y171{bottom:533.048000pt;}
.y6c{bottom:533.896000pt;}
.y119{bottom:534.914667pt;}
.ya0{bottom:534.982667pt;}
.y7{bottom:539.474667pt;}
.y179{bottom:541.850667pt;}
.y1e3{bottom:542.529333pt;}
.y37{bottom:543.649333pt;}
.y1ab{bottom:544.090667pt;}
.y170{bottom:545.666667pt;}
.yf8{bottom:548.313333pt;}
.yd2{bottom:548.840000pt;}
.y6b{bottom:549.172000pt;}
.y9f{bottom:550.126667pt;}
.y118{bottom:550.190667pt;}
.y6{bottom:552.758667pt;}
.y1e2{bottom:555.149333pt;}
.y1aa{bottom:559.366667pt;}
.y36{bottom:562.246667pt;}
.yf7{bottom:563.589333pt;}
.y6a{bottom:564.448000pt;}
.y9e{bottom:565.269333pt;}
.y117{bottom:565.466667pt;}
.y5{bottom:566.041333pt;}
.y1e1{bottom:567.768000pt;}
.y1a9{bottom:574.642667pt;}
.yf6{bottom:578.865333pt;}
.y69{bottom:579.724000pt;}
.y1e0{bottom:580.388000pt;}
.y9d{bottom:580.412000pt;}
.y116{bottom:580.742667pt;}
.yd1{bottom:583.045333pt;}
.y1a8{bottom:589.918667pt;}
.y1df{bottom:593.006667pt;}
.yf5{bottom:594.141333pt;}
.y68{bottom:595.000000pt;}
.y9c{bottom:595.556000pt;}
.y115{bottom:596.018667pt;}
.yd0{bottom:598.321333pt;}
.y35{bottom:599.282667pt;}
.y1a7{bottom:605.194667pt;}
.y1de{bottom:605.626667pt;}
.yf4{bottom:609.417333pt;}
.y67{bottom:610.276000pt;}
.y9b{bottom:610.698667pt;}
.y114{bottom:611.294667pt;}
.ycf{bottom:613.597333pt;}
.y34{bottom:615.953333pt;}
.y1dd{bottom:618.245333pt;}
.y1a6{bottom:620.470667pt;}
.yf3{bottom:624.693333pt;}
.y66{bottom:625.552000pt;}
.y9a{bottom:625.841333pt;}
.y33{bottom:625.849333pt;}
.y113{bottom:626.570667pt;}
.yce{bottom:628.873333pt;}
.y1dc{bottom:630.865333pt;}
.y1a5{bottom:635.746667pt;}
.y32{bottom:639.133333pt;}
.yf2{bottom:639.969333pt;}
.y65{bottom:640.828000pt;}
.y99{bottom:640.985333pt;}
.y112{bottom:641.846667pt;}
.y1db{bottom:643.484000pt;}
.ycd{bottom:644.149333pt;}
.y1a4{bottom:651.022667pt;}
.yf1{bottom:655.245333pt;}
.y31{bottom:655.804000pt;}
.y64{bottom:656.104000pt;}
.y98{bottom:656.128000pt;}
.y111{bottom:657.122667pt;}
.ycc{bottom:659.425333pt;}
.y30{bottom:665.700000pt;}
.y1a3{bottom:666.298667pt;}
.y1da{bottom:668.722667pt;}
.yf0{bottom:670.521333pt;}
.y97{bottom:671.270667pt;}
.y63{bottom:671.380000pt;}
.y110{bottom:672.398667pt;}
.ycb{bottom:674.701333pt;}
.y1d9{bottom:681.342667pt;}
.y1a2{bottom:681.574667pt;}
.y2f{bottom:682.372000pt;}
.yef{bottom:685.797333pt;}
.y96{bottom:686.414667pt;}
.y62{bottom:686.656000pt;}
.y10f{bottom:687.674667pt;}
.yca{bottom:689.977333pt;}
.y1d8{bottom:693.961333pt;}
.yee{bottom:701.073333pt;}
.y95{bottom:701.557333pt;}
.y61{bottom:701.932000pt;}
.y2e{bottom:702.893333pt;}
.y10e{bottom:702.950667pt;}
.yc9{bottom:705.253333pt;}
.y1d7{bottom:706.581333pt;}
.y1a1{bottom:709.736000pt;}
.yed{bottom:716.349333pt;}
.y94{bottom:716.701333pt;}
.y60{bottom:717.208000pt;}
.y2d{bottom:717.505333pt;}
.y10d{bottom:718.226667pt;}
.y1d6{bottom:719.200000pt;}
.y206{bottom:719.201333pt;}
.yc8{bottom:721.193333pt;}
.yec{bottom:731.625333pt;}
.y1d5{bottom:731.820000pt;}
.y93{bottom:731.844000pt;}
.y2c{bottom:732.117333pt;}
.y5f{bottom:732.484000pt;}
.y10c{bottom:733.502667pt;}
.y1d4{bottom:744.438667pt;}
.y205{bottom:744.440000pt;}
.y2b{bottom:746.729333pt;}
.yeb{bottom:746.901333pt;}
.y5e{bottom:747.760000pt;}
.y10b{bottom:748.778667pt;}
.y1a0{bottom:752.874667pt;}
.y92{bottom:754.625333pt;}
.yc7{bottom:755.398667pt;}
.y1d3{bottom:757.058667pt;}
.yea{bottom:762.177333pt;}
.y5d{bottom:763.036000pt;}
.y10a{bottom:764.054667pt;}
.y19f{bottom:768.150667pt;}
.y1d2{bottom:769.678667pt;}
.yc6{bottom:770.674667pt;}
.y2a{bottom:777.308000pt;}
.ye9{bottom:777.453333pt;}
.y5c{bottom:778.312000pt;}
.y91{bottom:779.129333pt;}
.y109{bottom:779.330667pt;}
.y1d1{bottom:782.297333pt;}
.y19e{bottom:783.426667pt;}
.yc5{bottom:785.950667pt;}
.ye8{bottom:792.729333pt;}
.y5b{bottom:793.588000pt;}
.y108{bottom:794.606667pt;}
.y1d0{bottom:794.917333pt;}
.y19d{bottom:798.702667pt;}
.yc4{bottom:801.226667pt;}
.y1cf{bottom:807.536000pt;}
.y29{bottom:807.860000pt;}
.ye7{bottom:808.005333pt;}
.y5a{bottom:808.864000pt;}
.y107{bottom:809.882667pt;}
.y19c{bottom:813.978667pt;}
.yc3{bottom:816.502667pt;}
.y1ce{bottom:820.156000pt;}
.ye6{bottom:823.281333pt;}
.y59{bottom:824.140000pt;}
.y106{bottom:825.822667pt;}
.y19b{bottom:829.254667pt;}
.yc2{bottom:831.778667pt;}
.y90{bottom:832.144000pt;}
.y1cd{bottom:832.774667pt;}
.y28{bottom:838.412000pt;}
.ye5{bottom:838.557333pt;}
.y58{bottom:839.416000pt;}
.y1cc{bottom:845.394667pt;}
.yc1{bottom:847.054667pt;}
.y8f{bottom:847.420000pt;}
.ye4{bottom:853.833333pt;}
.y57{bottom:854.692000pt;}
.y105{bottom:857.305333pt;}
.y19a{bottom:857.416000pt;}
.y1cb{bottom:858.013333pt;}
.y8e{bottom:862.696000pt;}
.yc0{bottom:862.994667pt;}
.y27{bottom:868.964000pt;}
.ye3{bottom:869.109333pt;}
.y56{bottom:869.968000pt;}
.y1ca{bottom:870.633333pt;}
.y8d{bottom:877.972000pt;}
.ybf{bottom:881.592000pt;}
.y1c9{bottom:883.252000pt;}
.ye2{bottom:884.386667pt;}
.y55{bottom:885.244000pt;}
.y8c{bottom:893.912000pt;}
.y1c8{bottom:895.872000pt;}
.ye1{bottom:900.326667pt;}
.y54{bottom:900.521333pt;}
.y199{bottom:900.554667pt;}
.y1c7{bottom:908.490667pt;}
.y8b{bottom:912.509333pt;}
.y53{bottom:915.797333pt;}
.y198{bottom:915.830667pt;}
.y1c6{bottom:921.110667pt;}
.y52{bottom:931.073333pt;}
.y1c5{bottom:933.729333pt;}
.y8a{bottom:943.990667pt;}
.y51{bottom:946.349333pt;}
.y4{bottom:962.668000pt;}
.y3{bottom:973.294667pt;}
.y2{bottom:983.921333pt;}
.y50{bottom:992.993333pt;}
.y1{bottom:1068.078667pt;}
.h8{height:20.309333pt;}
.h4{height:27.290667pt;}
.h3{height:29.344000pt;}
.h10{height:32.400000pt;}
.h5{height:33.861333pt;}
.hf{height:34.200000pt;}
.h2{height:36.480000pt;}
.h9{height:41.920000pt;}
.hc{height:43.320000pt;}
.h7{height:44.544000pt;}
.ha{height:48.373333pt;}
.hb{height:50.304000pt;}
.he{height:51.312077pt;}
.hd{height:51.317411pt;}
.h6{height:88.032000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:10.712000pt;}
.x1c{left:59.972000pt;}
.x1e{left:67.338667pt;}
.x27{left:68.276000pt;}
.x1f{left:70.288000pt;}
.x7{left:71.314667pt;}
.x28{left:73.253333pt;}
.xb{left:74.777333pt;}
.x1d{left:75.813333pt;}
.x20{left:79.229333pt;}
.x1b{left:83.056000pt;}
.x18{left:84.269333pt;}
.xe{left:95.002667pt;}
.x13{left:97.961333pt;}
.x17{left:101.909333pt;}
.x16{left:114.537333pt;}
.x15{left:121.966667pt;}
.x11{left:123.329333pt;}
.xf{left:132.177333pt;}
.x12{left:134.258667pt;}
.xd{left:146.345333pt;}
.xa{left:152.048000pt;}
.x9{left:153.616000pt;}
.x1a{left:156.192000pt;}
.x8{left:158.282667pt;}
.x10{left:162.081333pt;}
.x5{left:168.138667pt;}
.x6{left:169.165333pt;}
.x19{left:174.886667pt;}
.x14{left:179.348000pt;}
.xc{left:189.568000pt;}
.x22{left:234.662667pt;}
.x21{left:236.644000pt;}
.x23{left:404.888000pt;}
.x26{left:413.190667pt;}
.x29{left:417.757333pt;}
.x25{left:420.164000pt;}
.x24{left:506.948000pt;}
.x4{left:600.358667pt;}
.x3{left:620.612000pt;}
.x2{left:633.977333pt;}
}




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